Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp1075 static Value *foldOperationIntoPhiValue(BinaryOperator *I, Value *InV, in foldOperationIntoPhiValue() argument
1080 if (auto *InC = dyn_cast<Constant>(InV)) { in foldOperationIntoPhiValue()
1086 Value *Op0 = InV, *Op1 = C; in foldOperationIntoPhiValue()
1178 Value *InV = nullptr; in foldOpIntoPhi() local
1187 InV = InC->isNullValue() ? FalseVInPred : TrueVInPred; in foldOpIntoPhi()
1198 InV = Builder.CreateSelect(PN->getIncomingValue(i), TrueVInPred, in foldOpIntoPhi()
1201 NewPN->addIncoming(InV, ThisBB); in foldOpIntoPhi()
1206 Value *InV = nullptr; in foldOpIntoPhi() local
1208 InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C); in foldOpIntoPhi()
1210 InV = Builder.CreateCmp(CI->getPredicate(), PN->getIncomingValue(i), in foldOpIntoPhi()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonLoopIdiomRecognition.cpp1037 Value *InV = P->getIncomingValue(i); in promoteTo() local
1038 IntegerType *Ty = cast<IntegerType>(InV->getType()); in promoteTo()
1044 InV = IRBuilder<>(InB->getTerminator()).CreateZExt(InV, DestTy); in promoteTo()
1045 P->setIncomingValue(i, InV); in promoteTo()