Lines Matching refs:LSB
422 unsigned LSB;
1589 unsigned lsb = Bitfield.LSB;
2305 static ARMOperand *CreateBitfield(unsigned LSB, unsigned Width,
2308 Op->Bitfield.LSB = LSB;
2547 OS << "<bitfield " << "lsb: " << Bitfield.LSB
3901 // The bitfield descriptor is really two operands, the LSB and the width.
3921 int64_t LSB = CE->getValue();
3922 // The LSB must be in the range [0,31]
3923 if (LSB < 0 || LSB > 31) {
3955 // The LSB must be in the range [1,32-lsb]
3956 if (Width < 1 || Width > 32 - LSB) {
3961 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc));