Home
last modified time | relevance | path

Searched refs:AddInst (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DSimplifyIndVar.cpp380 Instruction *AddInst = dyn_cast<Instruction>( in splitOverflowIntrinsic() local
385 assert((AddInst->getOpcode() == Instruction::Add && in splitOverflowIntrinsic()
386 AddInst->getOperand(0) == II->getOperand(0)) && in splitOverflowIntrinsic()
389 AddVal->replaceAllUsesWith(AddInst); in splitOverflowIntrinsic()
391 return AddInst; in splitOverflowIntrinsic()
/external/llvm/lib/Target/R600/
DAMDGPUInstructions.td635 multiclass Expand24IBitOps<Instruction MulInst, Instruction AddInst> {
638 (AddInst (MulInst $src0, $src1), $src2)
647 multiclass Expand24UBitOps<Instruction MulInst, Instruction AddInst> {
650 (AddInst (MulInst $src0, $src1), $src2)
/external/llvm/lib/Target/PowerPC/
DPPCFrameLowering.cpp973 const MCInstrDesc& AddInst = TII.get( isPPC64 ? PPC::ADD8 in emitEpilogue() local
1054 BuildMI(MBB, MBBI, dl, AddInst) in emitEpilogue()
1126 BuildMI(MBB, MBBI, dl, AddInst) in emitEpilogue()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp1510 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0)); in SimplifyAndOfICmps() local
1511 bool isNSW = AddInst->hasNoSignedWrap(); in SimplifyAndOfICmps()
1512 bool isNUW = AddInst->hasNoUnsignedWrap(); in SimplifyAndOfICmps()
1669 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0)); in SimplifyOrOfICmps() local
1670 bool isNSW = AddInst->hasNoSignedWrap(); in SimplifyOrOfICmps()
1671 bool isNUW = AddInst->hasNoUnsignedWrap(); in SimplifyOrOfICmps()