Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DSink.cpp46 Inst->mayThrow() || !Inst->willReturn()) in isSafeToMove()
H A DLoopFuse.cpp1201 if (I.mayThrow() || !I.willReturn()) { in collectMovablePreheaderInsts()
H A DDeadStoreElimination.cpp1101 return CB->use_empty() && CB->willReturn() && CB->doesNotThrow() && in isRemovable()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstruction.cpp746 return mayWriteToMemory() || mayThrow() || !willReturn(); in mayHaveSideEffects()
754 bool Instruction::willReturn() const { in willReturn() function in Instruction
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DInstruction.h682 bool willReturn() const LLVM_READONLY;
H A DFunction.h602 bool willReturn() const { return hasFnAttribute(Attribute::WillReturn); } in willReturn() function
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1608 return I.willReturn(); in functionWillReturn()
1616 if (!F || F->willReturn() || !functionWillReturn(*F)) in addWillReturn()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopInfo.cpp1109 return L->getHeader()->getParent()->willReturn(); in isFinite()
H A DValueTracking.cpp5642 return !I->mayThrow() && I->willReturn(); in isGuaranteedToTransferExecutionToSuccessor()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLocal.cpp449 if (!I->willReturn()) { in wouldInstructionBeTriviallyDead()
3510 if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) { in inferAttributesFromOthers()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2735 if (!CB.willReturn() || !CB.doesNotThrow()) in isRemovableWrite()
4086 if (isa<PHINode>(I) || I->isEHPad() || I->mayThrow() || !I->willReturn() || in TryToSinkInstruction()