/external/llvm/lib/Transforms/Scalar/ |
D | IndVarSimplify.cpp | 140 void EliminateIVComparison(ICmpInst *ICmp, Value *IVOperand); 639 if (ICmpInst *ICmp = dyn_cast<ICmpInst>(UseInst)) { in SimplifyIVUsers() local 640 EliminateIVComparison(ICmp, IVOperand); in SimplifyIVUsers() 1181 void IndVarSimplify::EliminateIVComparison(ICmpInst *ICmp, Value *IVOperand) { in EliminateIVComparison() argument 1183 ICmpInst::Predicate Pred = ICmp->getPredicate(); in EliminateIVComparison() 1184 if (IVOperand != ICmp->getOperand(0)) { in EliminateIVComparison() 1186 assert(IVOperand == ICmp->getOperand(1) && "Can't find IVOperand"); in EliminateIVComparison() 1192 const SCEV *S = SE->getSCEV(ICmp->getOperand(IVOperIdx)); in EliminateIVComparison() 1193 const SCEV *X = SE->getSCEV(ICmp->getOperand(1 - IVOperIdx)); in EliminateIVComparison() 1196 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent()); in EliminateIVComparison() [all …]
|
D | CorrelatedValuePropagation.cpp | 192 case Instruction::ICmp: in runOnFunction()
|
D | GVN.cpp | 369 case Instruction::ICmp: in lookup_or_add()
|
/external/llvm/lib/Analysis/ |
D | CaptureTracking.cpp | 128 case Instruction::ICmp: in PointerMayBeCaptured()
|
D | ScalarEvolutionExpander.cpp | 1256 Value *ICmp = Builder.CreateICmpSGT(LHS, RHS, "tmp"); in visitSMaxExpr() local 1257 rememberInstruction(ICmp); in visitSMaxExpr() 1258 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "smax"); in visitSMaxExpr() 1280 Value *ICmp = Builder.CreateICmpUGT(LHS, RHS, "tmp"); in visitUMaxExpr() local 1281 rememberInstruction(ICmp); in visitUMaxExpr() 1282 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "umax"); in visitUMaxExpr()
|
D | ConstantFolding.cpp | 828 case Instruction::ICmp: in ConstantFoldInstOperands()
|
/external/llvm/lib/Target/MBlaze/ |
D | MBlazeISelLowering.h | 79 ICmp, enumerator
|
D | MBlazeISelLowering.cpp | 48 case MBlazeISD::ICmp : return "MBlazeISD::ICmp"; in getTargetNodeName() 579 CompareFlag = DAG.getNode(MBlazeISD::ICmp, dl, MVT::i32, LHS, RHS) in LowerSELECT_CC()
|
/external/llvm/lib/VMCore/ |
D | ConstantsContext.h | 443 if (V.opcode == Instruction::ICmp) 444 return new CompareConstantExpr(Ty, Instruction::ICmp, V.subclassdata,
|
D | Instruction.cpp | 147 case ICmp: return "icmp"; in getOpcodeName()
|
D | Constants.cpp | 746 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp; in isCompare() 897 case Instruction::ICmp: in getWithOperands() 1637 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred); in getICmp() 2150 if (getOpcode() == Instruction::ICmp) in replaceUsesOfWithOnConstant()
|
D | Instructions.cpp | 2565 if (Op == Instruction::ICmp) { in Create() 2585 if (Op == Instruction::ICmp) { in Create()
|
/external/llvm/include/llvm/ |
D | Instruction.def | 158 HANDLE_OTHER_INST(42, ICmp , ICmpInst ) // Integer comparison instruction
|
D | Instructions.h | 597 Instruction::ICmp, pred, LHS, RHS, NameStr, 618 Instruction::ICmp, pred, LHS, RHS, NameStr, 638 Instruction::ICmp, pred, LHS, RHS, NameStr) { 719 return I->getOpcode() == Instruction::ICmp;
|
D | InstrTypes.h | 820 return I->getOpcode() == Instruction::ICmp ||
|
/external/llvm/test/Transforms/SimplifyCFG/ |
D | 2006-12-08-Ptr-ICmp-Branch.ll | 4 ; ModuleID = '2006-12-08-Ptr-ICmp-Branch.ll'
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 403 case Instruction::ICmp: in equivalentAsOperands()
|
/external/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 604 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp); in LexIdentifier()
|
D | LLParser.cpp | 2137 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!"); in ParseValID() 3303 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!"); in ParseCompare()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 814 case Instruction::ICmp: in printConstant() 1187 case Instruction::ICmp: { in printInstruction()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 896 case Instruction::ICmp: in WriteConstants() 1035 case Instruction::ICmp: in WriteInstruction()
|
/external/llvm/lib/Target/CBackend/ |
D | CBackend.cpp | 823 case Instruction::ICmp: in printConstant() 850 case Instruction::ICmp: in printConstant()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1207 case Instruction::ICmp: in getConstantExprValue()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 1901 case Instruction::ICmp: in TargetSelectInstruction()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 2051 case Instruction::ICmp: in TargetSelectInstruction()
|