|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/IR/Constants.h 1143 static Constant *getICmp(unsigned short pred, Constant *LHS, Constant *RHS,
References
lib/Analysis/InlineCost.cpp 1005 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
lib/Analysis/InstructionSimplify.cpp 2350 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
2422 return ConstantExpr::getICmp(Pred,
3449 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
lib/Analysis/ScalarEvolution.cpp 7556 Result = ConstantExpr::getICmp(predicate, Result, RHS);
8913 if (ConstantExpr::getICmp(Pred,
lib/AsmParser/LLParser.cpp 3409 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
lib/Bitcode/Reader/BitcodeReader.cpp 2724 V = ConstantExpr::getICmp(Record[3], Op0, Op1);
lib/IR/ConstantFold.cpp 1549 R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1553 R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1557 R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
2086 return ConstantExpr::getICmp(pred, Inverse, CE2Op0);
2103 return ConstantExpr::getICmp(pred, CE1Inverse, C2Inverse);
2114 return ConstantExpr::getICmp(pred, C2, C1);
lib/IR/Constants.cpp 262 return PatternMatch::match(ConstantExpr::getICmp(ICmpInst::Predicate::ICMP_EQ,
1986 return getICmp(Predicate, C1, C2, OnlyIfReduced);
lib/IR/Core.cpp 1613 return wrap(ConstantExpr::getICmp(Predicate,
lib/Transforms/IPO/LowerTypeTests.cpp 1304 ConstantExpr::getICmp(CmpInst::ICMP_NE, F,
lib/Transforms/InstCombine/InstCombineCalls.cpp 1959 assert(ConstantExpr::getICmp(ICmpInst::ICMP_UGT, WidthC, ShAmtC) ==
lib/Transforms/InstCombine/InstCombineCompares.cpp 3199 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
3203 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
lib/Transforms/InstCombine/InstCombineSelect.cpp 1286 auto *Precond1 = ConstantExpr::getICmp(ICmpInst::Predicate::ICMP_SGE, C2,
1291 auto *Precond2 = ConstantExpr::getICmp(ICmpInst::Predicate::ICMP_SLE, C2,
lib/Transforms/Utils/SimplifyCFG.cpp 5247 Constant *DefaultConst = ConstantExpr::getICmp(CmpInst->getPredicate(),
5255 Constant *CaseConst = ConstantExpr::getICmp(CmpInst->getPredicate(),
unittests/IR/ConstantsTest.cpp 273 CHECK(ConstantExpr::getICmp(CmpInst::ICMP_EQ, P0, P4), "icmp eq i32 " P0STR