Home
last modified time | relevance | path

Searched refs:FrameProcedureOptions (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp215 CV_ENUM_CLASS_ENT(FrameProcedureOptions, HasAlloca),
216 CV_ENUM_CLASS_ENT(FrameProcedureOptions, HasSetJmp),
217 CV_ENUM_CLASS_ENT(FrameProcedureOptions, HasLongJmp),
218 CV_ENUM_CLASS_ENT(FrameProcedureOptions, HasInlineAssembly),
219 CV_ENUM_CLASS_ENT(FrameProcedureOptions, HasExceptionHandling),
220 CV_ENUM_CLASS_ENT(FrameProcedureOptions, MarkedInline),
221 CV_ENUM_CLASS_ENT(FrameProcedureOptions, HasStructuredExceptionHandling),
222 CV_ENUM_CLASS_ENT(FrameProcedureOptions, Naked),
223 CV_ENUM_CLASS_ENT(FrameProcedureOptions, SecurityChecks),
224 CV_ENUM_CLASS_ENT(FrameProcedureOptions, AsynchronousExceptionHandling),
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp109 FrameProcedureOptions FPO) { in formatFrameProcedureOptions()
111 if (FPO == FrameProcedureOptions::None) in formatFrameProcedureOptions()
114 PUSH_FLAG(FrameProcedureOptions, HasAlloca, FPO, "has alloca"); in formatFrameProcedureOptions()
115 PUSH_FLAG(FrameProcedureOptions, HasSetJmp, FPO, "has setjmp"); in formatFrameProcedureOptions()
116 PUSH_FLAG(FrameProcedureOptions, HasLongJmp, FPO, "has longjmp"); in formatFrameProcedureOptions()
117 PUSH_FLAG(FrameProcedureOptions, HasInlineAssembly, FPO, "has inline asm"); in formatFrameProcedureOptions()
118 PUSH_FLAG(FrameProcedureOptions, HasExceptionHandling, FPO, "has eh"); in formatFrameProcedureOptions()
119 PUSH_FLAG(FrameProcedureOptions, MarkedInline, FPO, "marked inline"); in formatFrameProcedureOptions()
120 PUSH_FLAG(FrameProcedureOptions, HasStructuredExceptionHandling, FPO, in formatFrameProcedureOptions()
122 PUSH_FLAG(FrameProcedureOptions, Naked, FPO, "naked"); in formatFrameProcedureOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1532 FrameProcedureOptions FPO = FrameProcedureOptions::None; in beginFunctionImpl()
1534 FPO |= FrameProcedureOptions::HasAlloca; in beginFunctionImpl()
1536 FPO |= FrameProcedureOptions::HasSetJmp; in beginFunctionImpl()
1539 FPO |= FrameProcedureOptions::HasInlineAssembly; in beginFunctionImpl()
1543 FPO |= FrameProcedureOptions::HasStructuredExceptionHandling; in beginFunctionImpl()
1545 FPO |= FrameProcedureOptions::HasExceptionHandling; in beginFunctionImpl()
1548 FPO |= FrameProcedureOptions::MarkedInline; in beginFunctionImpl()
1550 FPO |= FrameProcedureOptions::Naked; in beginFunctionImpl()
1552 FPO |= FrameProcedureOptions::SecurityChecks; in beginFunctionImpl()
1555 FPO |= FrameProcedureOptions::StrictSecurityChecks; in beginFunctionImpl()
[all …]
H A DCodeViewDebug.h211 codeview::FrameProcedureOptions FrameProcOpts;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h203 enum class FrameProcedureOptions : uint32_t { enum
227 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(FrameProcedureOptions)
H A DSymbolRecord.h813 FrameProcedureOptions Flags = FrameProcedureOptions::None;
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp59 LLVM_YAML_DECLARE_BITSET_TRAITS(FrameProcedureOptions) in LLVM_YAML_IS_SEQUENCE_VECTOR()
136 void ScalarBitSetTraits<FrameProcedureOptions>::bitset( in bitset()
137 IO &io, FrameProcedureOptions &Flags) { in bitset()
141 static_cast<FrameProcedureOptions>(E.Value)); in bitset()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1311 FrameProcedureOptions Flags = FrameProc.Flags; in visitKnownRecord()
1312 if (FrameProcedureOptions::MarkedInline == in visitKnownRecord()
1313 (Flags & FrameProcedureOptions::MarkedInline)) in visitKnownRecord()
1315 if (FrameProcedureOptions::Inlined == in visitKnownRecord()
1316 (Flags & FrameProcedureOptions::Inlined)) in visitKnownRecord()