Searched refs:isSub (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DThumb2InstrInfo.cpp182 bool isSub = NumBytes < 0;
183 if (isSub) NumBytes = -NumBytes;
207 if (isSub) {
240 Opc = isSub ? ARM::tSUBspi : ARM::tADDspi;
248 Opc = isSub ? ARM::t2SUBri : ARM::t2ADDri;
261 Opc = isSub ? ARM::t2SUBri : ARM::t2ADDri;
265 Opc = isSub ? ARM::t2SUBri12 : ARM::t2ADDri12;
394 bool isSub = false;
420 isSub = true;
439 unsigned NewOpc = isSub
[all...]
H A DThumb1RegisterInfo.cpp101 bool isSub = false; local
107 isSub = true;
129 int Opc = (isSub) ? ARM::tSUBrr : (isHigh ? ARM::tADDhirr : ARM::tADDrr);
134 if (DestReg == ARM::SP || isSub)
174 bool isSub = NumBytes < 0; local
176 if (isSub) Bytes = -NumBytes;
190 Opc = isSub ? ARM::tSUBspi : ARM::tADDspi;
192 } else if (!isSub && BaseReg == ARM::SP) {
212 Opc = isSub ? ARM::tSUBspi : ARM::tADDspi;
217 Opc = isSub
348 bool isSub = Imm < 0; local
[all...]
H A DARMBaseInstrInfo.cpp166 bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub; local
174 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
181 get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
186 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
192 bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub; local
197 get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
202 get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
1752 bool isSub = NumBytes < 0; local
1753 if (isSub) NumBytes = -NumBytes;
1766 unsigned Opc = isSub
2372 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub; local
2388 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub; local
2416 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub; local
2429 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub; local
2481 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub; local
3106 bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub; local
[all...]
H A DARMISelLowering.cpp6656 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub; local
6658 if (isSub)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h410 bool isSub = Opc == sub;
411 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ;
444 bool isSub = Opc == sub;
445 return ((int)isSub << 8) | Offset | (IdxMode << 9);
493 bool isSub = Opc == sub;
494 return ((int)isSub << 8) | Offset;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86FrameLowering.cpp150 bool isSub = NumBytes < 0; local
151 uint64_t Offset = isSub ? -NumBytes : NumBytes;
156 Opc = isSub
167 unsigned Reg = isSub
171 Opc = isSub
175 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
176 if (isSub)
187 StackPtr, false, isSub ? -ThisVal : ThisVal);
195 if (isSub)
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombine.h357 bool isSub, Instruction &I);
H A DInstCombineAndOrXor.cpp335 /// where isSub determines whether the operator is a sub. If we can fold one of
345 ConstantInt *Mask, bool isSub,
385 if (isSub)
344 FoldLogicalPlusAnd(Value *LHS, Value *RHS, ConstantInt *Mask, bool isSub, Instruction &I) argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp914 bool isSub = OffImm < 0;
918 if (isSub)

Completed in 138 milliseconds