Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp288 bool MayThrow = false; in computeFunctionSummary() local
340 MayThrow = true; in computeFunctionSummary()
559 F.hasFnAttribute(Attribute::NoUnwind), MayThrow, HasUnknownCall, in computeFunctionSummary()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h653 unsigned MayThrow : 1;
673 this->MayThrow &= RHS.MayThrow;
682 this->NoUnwind | this->MayThrow | this->HasUnknownCall |
697 OS << ", mayThrow: " << this->MayThrow;
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp1177 bool MayThrow = WebAssembly::mayThrow(MI); in fixCallUnwindMismatches() local
1182 if (MBB.hasEHPadSuccessor() && MayThrow && !SeenThrowableInstInBB) in fixCallUnwindMismatches()
1192 else if (EHPadStack.empty() || !MayThrow) { in fixCallUnwindMismatches()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DModuleSummaryIndex.cpp462 FlagValue(F.MayThrow), in fflagsToString()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp397 if (CallerSummary->fflags().MayThrow) in thinLTOPropagateFunctionAttrs()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1124 RawFlags |= (Flags.MayThrow << 7); in getEncodedFFlags()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1085 Flags.MayThrow = (RawFlags >> 7) & 0x1; in getDecodedFFlags()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp9027 FFlags.MayThrow = Val; in parseOptionalFFlags()