Home
last modified time | relevance | path

Searched refs:setIsExact (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp159 NewShift->setIsExact(Sh0->isExact() && Sh1->isExact()); in reassociateShiftAmtsOfTwoSameDirectionShifts()
480 NewShiftOp->setIsExact(); in commonShiftTransforms()
634 InnerShift->setIsExact(false); in foldShiftedShift()
959 I.setIsExact(); in setShiftFlags()
995 I.setIsExact(Changed); in setShiftFlags()
1061 NewShr->setIsExact(true); in visitShl()
1089 NewShr->setIsExact(OldShr->isExact()); in visitShl()
1282 NewLShr->setIsExact(I.isExact()); in visitLShr()
1600 NewAShr->setIsExact(I.isExact()); in visitAShr()
1668 Lshr->setIsExact(I.isExact()); in visitAShr()
H A DInstCombineMulDivRem.cpp77 I->setIsExact(); in simplifyValueKnownNonZero()
1077 NewDiv->setIsExact(I.isExact()); in commonIDivTransforms()
1103 BO->setIsExact(I.isExact()); in commonIDivTransforms()
1194 NewDiv->setIsExact(I.isExact()); in commonIDivTransforms()
1216 NewDiv->setIsExact(I.isExact() && InnerDiv->isExact()); in commonIDivTransforms()
1402 BO->setIsExact(); in visitUDiv()
1431 Lshr->setIsExact(); in visitUDiv()
1520 BO->setIsExact(I.isExact()); in visitSDiv()
1545 I.setIsExact(); in visitSDiv()
1553 BO->setIsExact(I.isExact()); in visitSDiv()
[all …]
H A DInstCombineNegator.cpp283 NewInstr->setIsExact(I->isExact()); in visitImpl()
H A DInstCombineSimplifyDemanded.cpp800 LShr->setIsExact(cast<BinaryOperator>(I)->isExact()); in SimplifyDemandedUseBits()
1315 New->setIsExact(true); in simplifyShrShlDemandedBits()
H A DInstCombineVectorOps.cpp1873 NewI->setIsExact(BO->isExact()); in buildNew()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp334 void Instruction::setIsExact(bool b) { in setIsExact() function in Instruction
335 cast<PossiblyExactOperator>(this)->setIsExact(b); in setIsExact()
375 cast<PossiblyExactOperator>(this)->setIsExact(false); in dropPoisonGeneratingFlags()
555 setIsExact(PE->isExact()); in copyIRFlags()
585 setIsExact(isExact() && PE->isExact()); in andIRFlags()
H A DConstants.cpp3274 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
H A DCore.cpp3541 cast<Instruction>(P)->setIsExact(IsExact); in LLVMSetExact()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp721 BinOp->setIsExact(Instr->isExact()); in narrowSDivOrSRem()
840 BinOp->setIsExact(Instr->isExact()); in narrowUDivOrURem()
961 UDiv->setIsExact(SDI->isExact()); in processSDiv()
1028 BO->setIsExact(SDI->isExact()); in processAShr()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DOperator.h139 void setIsExact(bool B) { in setIsExact() function
H A DInstruction.h457 void setIsExact(bool b = true);
H A DInstrTypes.h323 BO->setIsExact(true);
329 BO->setIsExact(true);
335 BO->setIsExact(true);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp443 ResI->setIsExact(PEO->isExact()); in ReduceExpressionGraph()
/freebsd-14.2/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp258 Modifications.push_back([&Inst] { Inst.setIsExact(!Inst.isExact()); }); in mutate()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSCCPSolver.cpp190 NewInst->setIsExact(Inst.isExact()); in replaceSignedInst()
204 NewInst->setIsExact(Inst.isExact()); in replaceSignedInst()
H A DSimplifyIndVar.cpp304 UDiv->setIsExact(SDiv->isExact()); in eliminateSDiv()
815 Shr->setIsExact(true); in strengthenRightShift()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp499 Inst->setIsExact(ExactOp->isExact()); in promoteUniformOpToI32()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1064 I->setIsExact(ExactFlags.IsExact); in setFlags()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1623 I->setIsExact(); in materializeValue()
4914 cast<BinaryOperator>(I)->setIsExact(true); in parseFunctionBody()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp6506 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true); in parseInstruction()