Home
last modified time | relevance | path

Searched refs:SecNames (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/llvm/lib/ObjectYAML/
DDWARFYAML.cpp26 SetVector<StringRef> SecNames; in getNonEmptySectionNames() local
28 SecNames.insert("debug_str"); in getNonEmptySectionNames()
30 SecNames.insert("debug_aranges"); in getNonEmptySectionNames()
32 SecNames.insert("debug_ranges"); in getNonEmptySectionNames()
34 SecNames.insert("debug_line"); in getNonEmptySectionNames()
36 SecNames.insert("debug_addr"); in getNonEmptySectionNames()
38 SecNames.insert("debug_abbrev"); in getNonEmptySectionNames()
40 SecNames.insert("debug_info"); in getNonEmptySectionNames()
42 SecNames.insert("debug_pubnames"); in getNonEmptySectionNames()
44 SecNames.insert("debug_pubtypes"); in getNonEmptySectionNames()
[all …]
/external/llvm-project/llvm/tools/llvm-readobj/
DObjDumper.cpp59 std::map<std::string, bool> SecNames; in getSectionRefsByNameOrIndex() local
66 SecNames.emplace(std::string(Section), false); in getSectionRefsByNameOrIndex()
72 auto NameIt = SecNames.find(std::string(SecName)); in getSectionRefsByNameOrIndex()
73 if (NameIt != SecNames.end()) in getSectionRefsByNameOrIndex()
78 if (NameIt != SecNames.end() || IndexIt != SecIndices.end()) in getSectionRefsByNameOrIndex()
83 for (const std::pair<const std::string, bool> &S : SecNames) in getSectionRefsByNameOrIndex()