/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineShifts.cpp | 159 NewShift->setIsExact(Sh0->isExact() && Sh1->isExact()); in reassociateShiftAmtsOfTwoSameDirectionShifts() 450 NewShiftOp->setIsExact(I.isExact()); in commonShiftTransforms() 490 NewShiftOp->setIsExact(); in commonShiftTransforms() 644 InnerShift->setIsExact(false); in foldShiftedShift() 783 R->setIsExact(I.isExact() && BO0->isExact()); in FoldShiftByConstant() 978 I.setIsExact(); in setShiftFlags() 1014 I.setIsExact(Changed); in setShiftFlags() 1080 NewShr->setIsExact(true); in visitShl() 1108 NewShr->setIsExact(OldShr->isExact()); in visitShl() 1367 NewLShr->setIsExact(I.isExact()); in visitLShr() [all …]
|
H A D | InstCombineMulDivRem.cpp | 77 I->setIsExact(); in simplifyValueKnownNonZero() 1214 NewDiv->setIsExact(I.isExact()); in commonIDivTransforms() 1240 BO->setIsExact(I.isExact()); in commonIDivTransforms() 1333 NewDiv->setIsExact(I.isExact()); in commonIDivTransforms() 1355 NewDiv->setIsExact(I.isExact() && InnerDiv->isExact()); in commonIDivTransforms() 1538 BO->setIsExact(); in visitUDiv() 1567 Lshr->setIsExact(); in visitUDiv() 1655 BO->setIsExact(I.isExact()); in visitSDiv() 1680 I.setIsExact(); in visitSDiv() 1688 BO->setIsExact(I.isExact()); in visitSDiv() [all …]
|
H A D | InstCombineNegator.cpp | 288 NewInstr->setIsExact(I->isExact()); in visitImpl()
|
H A D | InstCombineSimplifyDemanded.cpp | 825 LShr->setIsExact(cast<BinaryOperator>(I)->isExact()); in SimplifyDemandedUseBits() 1371 New->setIsExact(true); in simplifyShrShlDemandedBits()
|
H A D | InstCombineVectorOps.cpp | 1881 NewI->setIsExact(BO->isExact()); in buildNew()
|
H A D | InstructionCombining.cpp | 2988 cast<BinaryOperator>(NewOp)->setIsExact(); in visitGetElementPtrInst()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 377 void Instruction::setIsExact(bool b) { in setIsExact() function in Instruction 378 cast<PossiblyExactOperator>(this)->setIsExact(b); in setIsExact() 424 cast<PossiblyExactOperator>(this)->setIsExact(false); in dropPoisonGeneratingFlags() 638 setIsExact(PE->isExact()); in copyIRFlags() 676 setIsExact(isExact() && PE->isExact()); in andIRFlags()
|
H A D | Constants.cpp | 3402 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
|
H A D | Core.cpp | 3757 cast<Instruction>(P)->setIsExact(IsExact); in LLVMSetExact()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | CorrelatedValuePropagation.cpp | 785 BinOp->setIsExact(Instr->isExact()); in narrowSDivOrSRem() 905 BinOp->setIsExact(Instr->isExact()); in narrowUDivOrURem() 1022 UDiv->setIsExact(SDI->isExact()); in processSDiv() 1084 BO->setIsExact(SDI->isExact()); in processAShr()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 359 BO->setIsExact(true); 365 BO->setIsExact(true); 371 BO->setIsExact(true); 378 BO->setIsExact(true);
|
H A D | Operator.h | 162 void setIsExact(bool B) {
|
H A D | Instruction.h | 482 void setIsExact(bool b = true);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/ |
H A D | TruncInstCombine.cpp | 443 ResI->setIsExact(PEO->isExact()); in ReduceExpressionGraph()
|
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
H A D | IRMutator.cpp | 259 Modifications.push_back([&Inst] { Inst.setIsExact(!Inst.isExact()); }); in mutate()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SCCPSolver.cpp | 205 NewInst->setIsExact(Inst.isExact()); in replaceSignedInst() 219 NewInst->setIsExact(Inst.isExact()); in replaceSignedInst()
|
H A D | SimplifyIndVar.cpp | 313 UDiv->setIsExact(SDiv->isExact()); in eliminateSDiv() 840 Shr->setIsExact(true); in strengthenRightShift()
|
H A D | ScalarEvolutionExpander.cpp | 74 I->setIsExact(Exact); in apply()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUCodeGenPrepare.cpp | 501 Inst->setIsExact(ExactOp->isExact()); in promoteUniformOpToI32()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlan.h | 1159 I->setIsExact(ExactFlags.IsExact); in setFlags()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1703 I->setIsExact(); in materializeValue() 5080 cast<BinaryOperator>(I)->setIsExact(true); in parseFunctionBody()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 6929 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true); in parseInstruction()
|