Home | History | Annotate | Download | only in ARM

Lines Matching full:numbytes

128                               int NumBytes, bool CanChangeCC,
140 if (NumBytes < 0 && !isHigh && CanChangeCC) {
142 NumBytes = -NumBytes;
150 if (NumBytes <= 255 && NumBytes >= 0 && CanChangeCC) {
152 .addImm(NumBytes).setMIFlags(MIFlags);
153 } else if (NumBytes < 0 && NumBytes >= -255 && CanChangeCC) {
155 .addImm(NumBytes).setMIFlags(MIFlags);
159 MRI.emitLoadConstPool(MBB, MBBI, dl, LdReg, 0, NumBytes,
184 int NumBytes, const TargetInstrInfo &TII,
187 bool isSub = NumBytes < 0;
188 unsigned Bytes = (unsigned)NumBytes;
189 if (isSub) Bytes = -NumBytes;
211 // NumBytes with a reasonable number of instructions, we fall back to using a
296 DestReg, BaseReg, NumBytes, true,