Searched refs:LVElementKind (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVElement.h | 62 enum class LVElementKind { Discarded, Global, Optimized, LastEntry }; enum 63 using LVElementKindSet = std::set<LVElementKind>; 64 using LVElementDispatch = std::map<LVElementKind, LVElementGetFunction>;
|
/openbsd/gnu/llvm/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | Options.cpp | 297 cl::list<LVElementKind> cmdline::SelectElements( 301 values(clEnumValN(LVElementKind::Discarded, "Discarded", 303 clEnumValN(LVElementKind::Global, "Global", 305 clEnumValN(LVElementKind::Optimized, "Optimized",
|
H A D | Options.h | 55 extern llvm::cl::list<LVElementKind> SelectElements;
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVElement.cpp | 25 {LVElementKind::Discarded, &LVElement::getIsDiscarded}, 26 {LVElementKind::Global, &LVElement::getIsGlobalReference}, 27 {LVElementKind::Optimized, &LVElement::getIsOptimized}};
|