Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp684 return mayWriteToMemory() || mayThrow() || !willReturn(); in mayHaveSideEffects()
692 bool Instruction::willReturn() const { in willReturn() function in Instruction
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h660 bool willReturn() const;
H A DFunction.h676 bool willReturn() const { return hasFnAttribute(Attribute::WillReturn); } in willReturn() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1459 return I.willReturn(); in functionWillReturn()
1468 if (!F || F->willReturn() || !functionWillReturn(*F)) in addWillReturn()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp433 if (!I->willReturn()) in wouldInstructionBeTriviallyDead()
3367 if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) { in inferAttributesFromOthers()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp5295 return !I->mayThrow() && I->willReturn(); in isGuaranteedToTransferExecutionToSuccessor()