/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | EscapeEnumerator.cpp | 55 if (F.doesNotThrow()) in Next() 64 if (!CI->doesNotThrow() && !CI->isMustTailCall()) in Next()
|
H A D | InlineFunction.cpp | 551 if (!CI || CI->doesNotThrow()) in HandleCallsInBlockInlinedThroughInvoke() 970 if (CalledFn && CalledFn->isIntrinsic() && I->doesNotThrow() && in PropagateOperandBundles() 2208 bool MarkNoUnwind = CB.doesNotThrow(); in InlineFunction() 2631 if (MarkNoUnwind && !CI->doesNotThrow()) in InlineFunction()
|
H A D | BuildLibCalls.cpp | 101 if (F.doesNotThrow()) in setDoesNotThrow()
|
H A D | Local.cpp | 3092 if (II->doesNotThrow() && canSimplifyInvokeNoUnwind(&F)) { in markAliveBlocks()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/ |
H A D | WebAssemblyUtilities.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyUtilities.cpp | 74 if (F->doesNotThrow()) in mayThrow()
|
H A D | WebAssemblyRegStackify.cpp | 147 if (!F->doesNotThrow()) in queryCallee()
|
H A D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 398 return !F->doesNotThrow(); in canThrow()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Function.h | 586 bool doesNotThrow() const { in doesNotThrow() function 674 return hasUWTable() || !doesNotThrow() || hasPersonalityFn(); in needsUnwindTableEntry()
|
H A D | InstrTypes.h | 2015 bool doesNotThrow() const { return hasFnAttr(Attribute::NoUnwind); }
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MustExecute.cpp | 417 F.doesNotThrow(); in findForwardJoinPoint() 495 if (!F.hasFnAttribute(Attribute::WillReturn) || !F.doesNotThrow()) { in findForwardJoinPoint()
|
H A D | CaptureTracking.cpp | 293 if (Call->onlyReadsMemory() && Call->doesNotThrow() && in DetermineUseCaptureKind()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | DwarfEHPrepare.cpp | 174 if (F.doesNotThrow()) in InsertUnwindResumeCalls()
|
H A D | StackProtector.cpp | 573 if (CB->doesNotReturn() && !CB->doesNotThrow()) { in InsertStackProtectors()
|
H A D | WinEHPrepare.cpp | 1118 if (CalledFn && ((CalledFn->isIntrinsic() && CB->doesNotThrow()) || in removeImplausibleInstructions()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionAttrs.cpp | 888 if (F->onlyReadsMemory() && F->doesNotThrow() && in addArgumentAttrs() 1623 [](const Function &F) { return F.doesNotThrow(); }, in inferAttrsFromFunctionBodies()
|
H A D | FunctionImport.cpp | 1522 if (FS->fflags().NoUnwind && !F->doesNotThrow()) in thinLTOFinalizeInModule()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.cpp | 180 MarkedNoUnwind = F->doesNotThrow(); in callToNoUnwindFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86WinEHState.cpp | 619 return !Call.doesNotThrow(); in isStateStoreNeeded()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 1099 return !cast<CallInst>(this)->doesNotThrow(); in mayThrow()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 1519 if (CI.getFunction()->doesNotThrow() && !CI.doesNotThrow()) { in visitCallInst() 3915 if (isa<InlineAsm>(Callee) && !Call.doesNotThrow()) { in visitCallBase()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | MemCpyOptimizer.cpp | 269 if (Start->getFunction()->doesNotThrow()) in mayBeVisibleThroughUnwinding()
|
H A D | DeadStoreElimination.cpp | 1141 return CB->use_empty() && CB->willReturn() && CB->doesNotThrow() && in isRemovable()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 1595 if (!CurFn->doesNotThrow()) in GenerateCode()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanRecipes.cpp | 153 return mayWriteToMemory() || !Fn->doesNotThrow() || !Fn->willReturn(); in mayHaveSideEffects()
|