Home
last modified time | relevance | path

Searched refs:MayThrow (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp46 return MayThrow; in anyBlockMayThrow()
54 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
61 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(BB); in computeLoopSafetyInfo()
62 if (MayThrow) in computeLoopSafetyInfo()
74 return MayThrow; in anyBlockMayThrow()
81 MayThrow = false; in computeLoopSafetyInfo()
85 MayThrow = true; in computeLoopSafetyInfo()
H A DModuleSummaryAnalysis.cpp349 bool MayThrow = false; in computeFunctionSummary() local
401 MayThrow = true; in computeFunctionSummary()
717 F.hasFnAttribute(Attribute::NoUnwind), MayThrow, HasUnknownCall, in computeFunctionSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMustExecute.h112 bool MayThrow = false; // The current loop contains an instruction which variable
134 bool MayThrow = false; // The current loop contains an instruction which variable
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h769 unsigned MayThrow : 1;
789 this->MayThrow &= RHS.MayThrow;
798 this->NoUnwind | this->MayThrow | this->HasUnknownCall |
813 OS << ", mayThrow: " << this->MayThrow;
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp1912 bool MayThrow = WebAssembly::mayThrow(MI); in fixCallUnwindMismatches() local
1917 if (MBB.hasEHPadSuccessor() && MayThrow && !SeenThrowableInstInBB) in fixCallUnwindMismatches()
1927 else if (EHPadStack.empty() || !MayThrow) { in fixCallUnwindMismatches()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp485 FlagValue(F.MayThrow), in fflagsToString()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp446 if (CallerSummary->fflags().MayThrow) in thinLTOPropagateFunctionAttrs()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1301 RawFlags |= (Flags.MayThrow << 7); in getEncodedFFlags()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1147 Flags.MayThrow = (RawFlags >> 7) & 0x1; in getDecodedFFlags()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp9974 FFlags.MayThrow = Val; in parseOptionalFFlags()