Home
last modified time | relevance | path

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

/llvm-project/llvm/lib/ObjectYAML/
H A 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 in getNonEmptySectionNames()
[all...]
/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp109 std::map<std::string, bool, std::less<>> SecNames; in getSectionRefsByNameOrIndex()
116 SecNames.emplace(std::string(Section), false); in getSectionRefsByNameOrIndex()
122 auto NameIt = SecNames.find(SecName); in getSectionRefsByNameOrIndex()
123 if (NameIt != SecNames.end()) in getSectionRefsByNameOrIndex()
128 if (NameIt != SecNames.end() || IndexIt != SecIndices.end()) in getSectionRefsByNameOrIndex()
133 for (const std::pair<const std::string, bool> &S : SecNames) in getSectionRefsByNameOrIndex()
107 std::map<std::string, bool> SecNames; getSectionRefsByNameOrIndex() local
/llvm-project/bolt/include/bolt/RuntimeLibs/
H A DInstrumentationRuntimeLibrary.h30 void addRuntimeLibSections(std::vector<std::string> &SecNames) const final { in addRuntimeLibSections() argument
31 SecNames.push_back(".bolt.instr.counters"); in addRuntimeLibSections()
H A DHugifyRuntimeLibrary.h25 void addRuntimeLibSections(std::vector<std::string> &SecNames) const final {} in addRuntimeLibSections() argument
H A DRuntimeLibrary.h43 addRuntimeLibSections(std::vector<std::string> &SecNames) const = 0;