Lines Matching defs:LSB
933 unsigned LSB;
2709 unsigned lsb = Bitfield.LSB;
3784 static std::unique_ptr<ARMOperand> CreateBitfield(unsigned LSB,
3789 Op->Bitfield.LSB = LSB;
4100 OS << "<bitfield " << "lsb: " << Bitfield.LSB
5634 // The bitfield descriptor is really two operands, the LSB and the width.
5648 int64_t LSB = CE->getValue();
5649 // The LSB must be in the range [0,31]
5650 if (LSB < 0 || LSB > 31)
5672 // The LSB must be in the range [1,32-lsb]
5673 if (Width < 1 || Width > 32 - LSB)
5676 Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, EndLoc, *this));
8071 unsigned LSB = Inst.getOperand(2).getImm();
8073 if (Widthm1 >= 32 - LSB)