Lines Matching defs:LSB
933 unsigned LSB;
2708 unsigned lsb = Bitfield.LSB;
3783 static std::unique_ptr<ARMOperand> CreateBitfield(unsigned LSB,
3788 Op->Bitfield.LSB = LSB;
4095 OS << "<bitfield " << "lsb: " << Bitfield.LSB
5606 // The bitfield descriptor is really two operands, the LSB and the width.
5620 int64_t LSB = CE->getValue();
5621 // The LSB must be in the range [0,31]
5622 if (LSB < 0 || LSB > 31)
5644 // The LSB must be in the range [1,32-lsb]
5645 if (Width < 1 || Width > 32 - LSB)
5648 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc, *this));
8042 unsigned LSB = Inst.getOperand(2).getImm();
8044 if (Widthm1 >= 32 - LSB)