Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp267 BO->setIsExact(false); in GetShiftedValue()
289 BO->setIsExact(false); in GetShiftedValue()
601 NewLShr->setIsExact(I.isExact()); in FoldShiftByConstant()
620 NewAShr->setIsExact(I.isExact()); in FoldShiftByConstant()
637 NewShr->setIsExact(true); in FoldShiftByConstant()
747 I.setIsExact(); in visitLShr()
793 I.setIsExact(); in visitAShr()
DInstCombinePHI.cpp125 if (isExact) NewBinOp->setIsExact(); in FoldPHIArgBinOpIntoPHI()
494 if (isExact) BinOp->setIsExact(); in FoldPHIArgOpIntoPHI()
DInstCombineMulDivRem.cpp57 I->setIsExact(); in simplifyValueKnownNonZero()
771 if (I.isExact()) LShr->setIsExact(); in foldUDivPow2Cst()
799 if (I.isExact()) LShr->setIsExact(); in foldUDivShl()
DInstCombineSelect.cpp238 BO->setIsExact(TVI_BO->isExact()); in FoldSelectIntoOp()
273 BO->setIsExact(FVI_BO->isExact()); in FoldSelectIntoOp()
DInstCombineSimplifyDemanded.cpp708 NewVal->setIsExact(cast<BinaryOperator>(I)->isExact()); in SimplifyDemandedUseBits()
895 New->setIsExact(true); in SimplifyShrShlDemandedBits()
DInstCombineVectorOps.cpp607 New->setIsExact(BO->isExact()); in BuildNew()
/external/llvm/include/llvm/IR/
DInstrTypes.h235 BO->setIsExact(true);
241 BO->setIsExact(true);
247 BO->setIsExact(true);
350 void setIsExact(bool b = true);
DOperator.h140 void setIsExact(bool B) { in setIsExact() function
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp145 SDiv->setIsExact(true); in TEST_F()
/external/llvm/lib/IR/
DInstructions.cpp2005 void BinaryOperator::setIsExact(bool b) { in setIsExact() function in BinaryOperator
2006 cast<PossiblyExactOperator>(this)->setIsExact(b); in setIsExact()
DConstants.cpp2797 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2242 cast<BinaryOperator>(I)->setIsExact(true); in ParseFunctionBody()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp2395 VecOp->setIsExact(BinOp->isExact()); in vectorizeBlockInLoop()
/external/llvm/lib/AsmParser/
DLLParser.cpp3284 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true); in ParseInstruction()