Home
last modified time | relevance | path

Searched refs:willReturn (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSink.cpp46 Inst->mayThrow() || !Inst->willReturn()) in isSafeToMove()
H A DLoopFuse.cpp1198 if (I.mayThrow() || !I.willReturn()) { in collectMovablePreheaderInsts()
H A DDeadStoreElimination.cpp1141 return CB->use_empty() && CB->willReturn() && CB->doesNotThrow() && in isRemovable()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp1124 return mayWriteToMemory() || mayThrow() || !willReturn(); in mayHaveSideEffects()
1132 bool Instruction::willReturn() const { in willReturn() function in Instruction
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h821 bool willReturn() const LLVM_READONLY;
H A DFunction.h653 bool willReturn() const { return hasFnAttribute(Attribute::WillReturn); } in willReturn() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1788 return I.willReturn(); in functionWillReturn()
1796 if (!F || F->willReturn() || !functionWillReturn(*F)) in addWillReturn()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp244 if (isa<PHINode>(I) || I->isEHPad() || I->mayThrow() || !I->willReturn() || in tryToSinkInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp1141 return L->getHeader()->getParent()->willReturn(); in isFinite()
H A DValueTracking.cpp7721 return !I->mayThrow() && I->willReturn(); in isGuaranteedToTransferExecutionToSuccessor()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp443 if (!I->willReturn()) { in wouldInstructionBeTriviallyDead()
4245 if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) { in inferAttributesFromOthers()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3102 if (!CB.willReturn() || !CB.doesNotThrow()) in isRemovableWrite()
4732 if (isa<PHINode>(I) || I->isEHPad() || I->mayThrow() || !I->willReturn() || in tryToSinkInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp153 return mayWriteToMemory() || !Fn->doesNotThrow() || !Fn->willReturn(); in mayHaveSideEffects()