Searched defs:CmpInst (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DInstrTypes.h871 // CmpInst Class
876 class CmpInst : public Instruction { class in namespace:llvm
878 /// This enumeration lists the possible predicates for CmpInst subclasses.
920 CmpInst() = delete;
923 CmpInst(Type *ty, Instruction::OtherOps op, Predicate pred,
927 CmpInst(Type *ty, Instruction::OtherOps op, Predicate pred,
942 /// @brief Create a CmpInst
943 static CmpInst *Create(OtherOps Op,
951 /// @brief Create a CmpInst
952 static CmpInst *Creat
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp198 CmpInst *Ci2 = dyn_cast<CmpInst>(SI2->getCondition());
2058 if (!isa<BinaryOperator>(Inst) && !isa<CmpInst>(Inst))
2094 if (isa<CmpInst>(Curr)) {
2108 if (!Cond || (!isa<CmpInst>(Cond) && !isa<BinaryOperator>(Cond)) ||
2203 if (NewCond->hasOneUse() && isa<CmpInst>(NewCond)) {
2204 CmpInst *CI = cast<CmpInst>(NewCond);
3858 if (CmpInst *Cmp = dyn_cast<CmpInst>(
4413 ICmpInst *CmpInst = dyn_cast<ICmpInst>(PhiUser); local
[all...]

Completed in 59 milliseconds