Home
last modified time | relevance | path

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

/freebsd-14.2/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.cpp1129 return CB->use_empty() && CB->willReturn() && CB->doesNotThrow() && in isRemovable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp1032 return mayWriteToMemory() || mayThrow() || !willReturn(); in mayHaveSideEffects()
1040 bool Instruction::willReturn() const { in willReturn() function in Instruction
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h786 bool willReturn() const LLVM_READONLY;
H A DFunction.h635 bool willReturn() const { return hasFnAttribute(Attribute::WillReturn); } in willReturn() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1767 return I.willReturn(); in functionWillReturn()
1775 if (!F || F->willReturn() || !functionWillReturn(*F)) in addWillReturn()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp1110 return L->getHeader()->getParent()->willReturn(); in isFinite()
H A DValueTracking.cpp7037 return !I->mayThrow() && I->willReturn(); in isGuaranteedToTransferExecutionToSuccessor()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp442 if (!I->willReturn()) { in wouldInstructionBeTriviallyDead()
4139 if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) { in inferAttributesFromOthers()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2697 if (!CB.willReturn() || !CB.doesNotThrow()) in isRemovableWrite()
4244 if (isa<PHINode>(I) || I->isEHPad() || I->mayThrow() || !I->willReturn() || in tryToSinkInstruction()