Searched refs:Prod (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.cpp | 579 Value *Prod = nullptr; in visitMulExpr() local 623 if (!Prod) { in visitMulExpr() 625 Prod = ExpandOpBinPowN(); in visitMulExpr() 628 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod, in visitMulExpr() 635 if (isa<Constant>(Prod)) std::swap(Prod, W); in visitMulExpr() 644 Prod = InsertBinop(Instruction::Shl, Prod, in visitMulExpr() 648 Prod = InsertBinop(Instruction::Mul, Prod, W, S->getNoWrapFlags(), in visitMulExpr() 654 return Prod; in visitMulExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCompares.cpp | 2760 APInt Prod = C * *C2; in foldICmpDivConstant() local 2765 bool ProdOV = (DivIsSigned ? Prod.sdiv(*C2) : Prod.udiv(*C2)) != C; in foldICmpDivConstant() 2783 LoBound = Prod; in foldICmpDivConstant() 2796 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20) in foldICmpDivConstant() 2799 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant() 2802 HiBound = Prod + 1; in foldICmpDivConstant() 2822 HiBound = Prod + 1; in foldICmpDivConstant() 2828 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20) in foldICmpDivConstant() 2831 HiOverflow = subWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 10154 ExprResult Prod = SemaRef.ActOnIntegerConstant(SourceLocation(), 1).get(); in checkOpenMPLoop() local 10156 Prod = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Prod.get(), in checkOpenMPLoop() 10164 SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Div, Acc.get(), Prod.get()); in checkOpenMPLoop() 10177 Prod = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Iter.get(), in checkOpenMPLoop() 10178 Prod.get()); in checkOpenMPLoop() 10180 Prod = Iter; in checkOpenMPLoop() 10181 Acc = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Sub, Acc.get(), Prod.get()); in checkOpenMPLoop()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 3805 auto Prod = MIRBuilder.buildMul(Ty, Quot, MI.getOperand(2)); in lower() local 3806 MIRBuilder.buildSub(MI.getOperand(0), MI.getOperand(1), Prod); in lower()
|