Home
last modified time | relevance | path

Searched refs:LVScopeKind (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A DOptions.cpp332 cl::list<LVScopeKind> cmdline::SelectScopes(
337 clEnumValN(LVScopeKind::IsAggregate, "Aggregate",
339 clEnumValN(LVScopeKind::IsArray, "Array", "Array."),
340 clEnumValN(LVScopeKind::IsBlock, "Block", "Lexical block."),
341 clEnumValN(LVScopeKind::IsCallSite, "CallSite", "Call site block."),
342 clEnumValN(LVScopeKind::IsCatchBlock, "CatchBlock",
344 clEnumValN(LVScopeKind::IsClass, "Class", "Class."),
345 clEnumValN(LVScopeKind::IsCompileUnit, "CompileUnit", "Compile unit."),
346 clEnumValN(LVScopeKind::IsEntryPoint, "EntryPoint",
348 clEnumValN(LVScopeKind::IsEnumeration, "Enumeration", "Enumeration."),
[all …]
H A DOptions.h57 extern llvm::cl::list<LVScopeKind> SelectScopes;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVScope.h35 enum class LVScopeKind { enum
62 using LVScopeKindSet = std::set<LVScopeKind>;
63 using LVScopeDispatch = std::map<LVScopeKind, LVScopeGetFunction>;
92 LVProperties<LVScopeKind> Kinds;
159 KIND(LVScopeKind, IsAggregate);
160 KIND(LVScopeKind, IsArray);
161 KIND_2(LVScopeKind, IsBlock, CanHaveRanges, CanHaveLines);
162 KIND_1(LVScopeKind, IsCallSite, IsFunction);
163 KIND_1(LVScopeKind, IsCatchBlock, IsBlock);
164 KIND_1(LVScopeKind, IsClass, IsAggregate);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVScope.cpp83 {LVScopeKind::IsAggregate, &LVScope::getIsAggregate},
84 {LVScopeKind::IsArray, &LVScope::getIsArray},
85 {LVScopeKind::IsBlock, &LVScope::getIsBlock},
86 {LVScopeKind::IsCallSite, &LVScope::getIsCallSite},
87 {LVScopeKind::IsCatchBlock, &LVScope::getIsCatchBlock},
88 {LVScopeKind::IsClass, &LVScope::getIsClass},
89 {LVScopeKind::IsCompileUnit, &LVScope::getIsCompileUnit},
90 {LVScopeKind::IsEntryPoint, &LVScope::getIsEntryPoint},
91 {LVScopeKind::IsEnumeration, &LVScope::getIsEnumeration},
92 {LVScopeKind
[all...]