Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp1228 Value *ECV = Rewriter.expandCodeFor(ExitCount); in predicateLoopExits() local
1232 if (ECV->getType() != RHS->getType()) { in predicateLoopExits()
1233 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType()); in predicateLoopExits()
1234 ECV = B.CreateZExt(ECV, WiderTy); in predicateLoopExits()
1238 Value *NewCond = B.CreateICmp(ICmpInst::ICMP_UGT, ECV, RHS); in predicateLoopExits()
H A DIndVarSimplify.cpp1981 Value *ECV = Rewriter.expandCodeFor(ExitCount); in predicateLoopExits() local
1985 if (ECV->getType() != RHS->getType()) { in predicateLoopExits()
1986 Type *WiderTy = SE->getWiderType(ECV->getType(), RHS->getType()); in predicateLoopExits()
1987 ECV = B.CreateZExt(ECV, WiderTy); in predicateLoopExits()
1992 NewCond = B.CreateICmp(Pred, ECV, RHS); in predicateLoopExits()