Home
last modified time | relevance | path

Searched refs:doesNotReturn (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DPruneEH.cpp94 SCCMightReturn |= !F->doesNotReturn(); in runImpl()
97 bool CheckReturn = !SCCMightReturn && !F->doesNotReturn(); in runImpl()
207 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) { in SimplifyFunction()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DFastISel.h112 DoesNotReturn = Call.doesNotReturn(); in setCallee()
136 DoesNotReturn = Call.doesNotReturn();
H A DTargetLowering.h2840 bool doesNotReturn = false,
3264 Call.doesNotReturn() || in setCallee()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DCallSite.h497 bool doesNotReturn() const { in doesNotReturn() function
498 CALLSITE_DELEGATE_GETTER(doesNotReturn()); in doesNotReturn()
H A DFunction.h509 bool doesNotReturn() const { in doesNotReturn() function
H A DInstrTypes.h1546 bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); }
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h423 bool doesNotReturn(const MachineInstr &CallMI) const;
H A DHexagonHardwareLoops.cpp994 return !TII->doesNotReturn(*MI); in isInvalidLoopOperation()
H A DHexagonInstrInfo.cpp1654 if (doesNotReturn(MI)) in isSchedulingBoundary()
2933 bool HexagonInstrInfo::doesNotReturn(const MachineInstr &CallMI) const { in doesNotReturn() function in HexagonInstrInfo
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1453 bool doesNotReturn = none_of(*newFunction, [](const BasicBlock &BB) { in extractCodeRegion() local
1457 if (doesNotReturn) in extractCodeRegion()
H A DLocal.cpp2055 if (CI->doesNotReturn()) { in markAliveBlocks()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DLint.cpp400 Assert(!F->doesNotReturn(), in visitReturnInst()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp404 if (CI->doesNotReturn()) { in wrapInvoke()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2572 if (CS.doesNotReturn()) NoReturnCalls.push_back(CS.getInstruction()); in runOnFunction()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp123 const SDLoc &dl, bool doesNotReturn, in makeLibCall() argument
148 .setNoReturn(doesNotReturn) in makeLibCall()
H A DSelectionDAGBuilder.cpp2665 if (Call->doesNotReturn()) in visitUnreachable()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp4395 if (CS.doesNotReturn()) { in EmitCall()