Home
last modified time | relevance | path

Searched refs:LVSortMode (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSort.cpp100 using LVSortInfo = std::map<LVSortMode, LVSortFunction>; in getSortFunction()
102 {LVSortMode::None, nullptr}, {LVSortMode::Kind, sortByKind}, in getSortFunction()
103 {LVSortMode::Line, sortByLine}, {LVSortMode::Name, sortByName}, in getSortFunction()
104 {LVSortMode::Offset, compareOffset}, in getSortFunction()
H A DLVOptions.cpp219 setSortMode(LVSortMode::Line); in resolveDependencies()
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A DOptions.cpp197 static cl::opt<LVSortMode, true> OutputSort(
201 values(clEnumValN(LVSortMode::Kind, "kind", "Sort by element kind."),
202 clEnumValN(LVSortMode::Line, "line", "Sort by element line number."),
203 clEnumValN(LVSortMode::Name, "name", "Sort by element name."),
204 clEnumValN(LVSortMode::Offset, "offset", "Sort by element offset.")),
205 cl::location(ReaderOptions.Output.SortMode), cl::init(LVSortMode::Line));
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h254 LVSortMode SortMode = LVSortMode::None; // --output-sort=<SortMode>
385 LVSortMode getSortMode() const { return Output.SortMode; } in getSortMode()
386 void setSortMode(LVSortMode SortMode) { Output.SortMode = SortMode; } in setSortMode()
H A DLVSort.h24 enum class LVSortMode { enum