Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp274 BO->setIsExact(false); in GetShiftedValue()
296 BO->setIsExact(false); in GetShiftedValue()
619 NewLShr->setIsExact(I.isExact()); in FoldShiftByConstant()
638 NewAShr->setIsExact(I.isExact()); in FoldShiftByConstant()
655 NewShr->setIsExact(true); in FoldShiftByConstant()
773 I.setIsExact(); in visitLShr()
818 I.setIsExact(); in visitAShr()
DInstCombineMulDivRem.cpp61 I->setIsExact(); in simplifyValueKnownNonZero()
817 BO->setIsExact(I.isExact()); in commonIDivTransforms()
845 BO->setIsExact(I.isExact()); in commonIDivTransforms()
956 LShr->setIsExact(); in foldUDivPow2Cst()
985 LShr->setIsExact(); in foldUDivShl()
1058 BO->setIsExact(); in visitUDiv()
1141 BO->setIsExact(I.isExact()); in visitSDiv()
1154 BO->setIsExact(I.isExact()); in visitSDiv()
1164 BO->setIsExact(I.isExact()); in visitSDiv()
DInstCombinePHI.cpp126 if (isExact) NewBinOp->setIsExact(); in FoldPHIArgBinOpIntoPHI()
494 if (isExact) BinOp->setIsExact(); in FoldPHIArgOpIntoPHI()
DInstCombineSimplifyDemanded.cpp751 NewVal->setIsExact(cast<BinaryOperator>(I)->isExact()); in SimplifyDemandedUseBits()
943 New->setIsExact(true); in SimplifyShrShlDemandedBits()
DInstCombineSelect.cpp262 BO->setIsExact(TVI_BO->isExact()); in FoldSelectIntoOp()
297 BO->setIsExact(FVI_BO->isExact()); in FoldSelectIntoOp()
DInstCombineVectorOps.cpp701 New->setIsExact(BO->isExact()); in BuildNew()
DInstructionCombining.cpp1195 NewBO->setIsExact(Inst.isExact()); in CreateBinOpAsGiven()
/external/llvm/include/llvm/IR/
DInstrTypes.h231 BO->setIsExact(true);
237 BO->setIsExact(true);
243 BO->setIsExact(true);
340 void setIsExact(bool b = true);
DOperator.h136 void setIsExact(bool B) { in setIsExact() function
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp151 SDiv->setIsExact(true); in TEST_F()
/external/llvm/lib/IR/
DInstructions.cpp1912 void BinaryOperator::setIsExact(bool b) { in setIsExact() function in BinaryOperator
1913 cast<PossiblyExactOperator>(this)->setIsExact(b); in setIsExact()
1937 setIsExact(PE->isExact()); in copyIRFlags()
1951 setIsExact(isExact() & PE->isExact()); in andIRFlags()
DConstants.cpp3032 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h988 void setIsExact(bool b) {
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp3424 cast<BinaryOperator>(I)->setIsExact(true); in ParseFunctionBody()
/external/llvm/lib/AsmParser/
DLLParser.cpp4472 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true); in ParseInstruction()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp968 FN->setIsExact(exact); in GetBinarySDNode()