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.cpp48 return MayThrow; in anyBlockMayThrow()
56 MayThrow = HeaderMayThrow; in computeLoopSafetyInfo()
63 MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(BB); in computeLoopSafetyInfo()
64 if (MayThrow) in computeLoopSafetyInfo()
76 return MayThrow; in anyBlockMayThrow()
83 MayThrow = false; in computeLoopSafetyInfo()
87 MayThrow = true; in computeLoopSafetyInfo()
H A DModuleSummaryAnalysis.cpp341 bool MayThrow = false; in computeFunctionSummary() local
393 MayThrow = true; in computeFunctionSummary()
668 F.hasFnAttribute(Attribute::NoUnwind), MayThrow, HasUnknownCall, in computeFunctionSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMustExecute.h111 bool MayThrow = false; // The current loop contains an instruction which variable
133 bool MayThrow = false; // The current loop contains an instruction which variable
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h763 unsigned MayThrow : 1;
783 this->MayThrow &= RHS.MayThrow;
792 this->NoUnwind | this->MayThrow | this->HasUnknownCall |
807 OS << ", mayThrow: " << this->MayThrow;
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp1176 bool MayThrow = WebAssembly::mayThrow(MI); in fixCallUnwindMismatches() local
1181 if (MBB.hasEHPadSuccessor() && MayThrow && !SeenThrowableInstInBB) in fixCallUnwindMismatches()
1191 else if (EHPadStack.empty() || !MayThrow) { in fixCallUnwindMismatches()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp474 FlagValue(F.MayThrow), in fflagsToString()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp429 if (CallerSummary->fflags().MayThrow) in thinLTOPropagateFunctionAttrs()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1233 RawFlags |= (Flags.MayThrow << 7); in getEncodedFFlags()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1140 Flags.MayThrow = (RawFlags >> 7) & 0x1; in getDecodedFFlags()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp9647 FFlags.MayThrow = Val; in parseOptionalFFlags()