Home | History | Annotate | Download | only in ARM

Lines Matching full:numbytes

125     const DebugLoc &dl, unsigned DestReg, unsigned BaseReg, int NumBytes,
136 if (NumBytes < 0 && !isHigh && CanChangeCC) {
138 NumBytes = -NumBytes;
146 if (NumBytes <= 255 && NumBytes >= 0 && CanChangeCC) {
148 .addImm(NumBytes)
150 } else if (NumBytes < 0 && NumBytes >= -255 && CanChangeCC) {
152 .addImm(NumBytes)
158 MRI.emitLoadConstPool(MBB, MBBI, dl, LdReg, 0, NumBytes, ARMCC::AL, 0,
181 unsigned BaseReg, int NumBytes,
185 bool isSub = NumBytes < 0;
186 unsigned Bytes = (unsigned)NumBytes;
187 if (isSub) Bytes = -NumBytes;
209 // NumBytes with a reasonable number of instructions, we fall back to using a
294 DestReg, BaseReg, NumBytes, true,