Home | History | Annotate | Download | only in ARM

Lines Matching refs:NumBytes

93                               int NumBytes, bool CanChangeCC,
105 if (NumBytes < 0 && !isHigh && CanChangeCC) {
107 NumBytes = -NumBytes;
115 if (NumBytes <= 255 && NumBytes >= 0)
117 .addImm(NumBytes).setMIFlags(MIFlags);
118 else if (NumBytes < 0 && NumBytes >= -255) {
120 .addImm(NumBytes).setMIFlags(MIFlags);
124 MRI.emitLoadConstPool(MBB, MBBI, dl, LdReg, 0, NumBytes,
170 int NumBytes, const TargetInstrInfo &TII,
173 bool isSub = NumBytes < 0;
174 unsigned Bytes = (unsigned)NumBytes;
175 if (isSub) Bytes = -NumBytes;
229 DestReg, BaseReg, NumBytes, true,
293 .addImm(((unsigned)NumBytes) & 3)
302 int NumBytes) {
303 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, TII,