Home
last modified time | relevance | path

Searched refs:ECV (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp1155 Value *ECV = Rewriter.expandCodeFor(ExitCount); in predicateLoopExits() local
1159 if (ECV->getType() != RHS->getType()) { in predicateLoopExits()
1160 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType()); in predicateLoopExits()
1161 ECV = B.CreateZExt(ECV, WiderTy); in predicateLoopExits()
1165 Value *NewCond = B.CreateICmp(ICmpInst::ICMP_UGT, ECV, RHS); in predicateLoopExits()
H A DIndVarSimplify.cpp1697 Value *ECV = Rewriter.expandCodeFor(ExitCount); in predicateLoopExits() local
1701 if (ECV->getType() != RHS->getType()) { in predicateLoopExits()
1702 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType()); in predicateLoopExits()
1703 ECV = B.CreateZExt(ECV, WiderTy); in predicateLoopExits()
1708 NewCond = B.CreateICmp(Pred, ECV, RHS); in predicateLoopExits()