Home
last modified time | relevance | path

Searched refs:SymbolNames (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp27 if (SymbolNames.find(SymbolName) == SymbolNames.end()) { in add()
28 SymbolNames.emplace( in add()
33 SymbolNames[SymbolName].Scope = Function; in add()
38 if (Function && SymbolNames[SymbolName].IsComdat) in add()
47 if (SymbolNames.find(SymbolName) == SymbolNames.end()) in add()
48 SymbolNames.emplace( in add()
53 SymbolNames[SymbolName].Address = Address; in add()
55 LVScope *Function = SymbolNames[SymbolName].Scope; in add()
68 if (SymbolName.empty() || (SymbolNames.find(SymbolName) == SymbolNames.end())) in update()
75 SymbolNames[SymbolName].Scope = Function; in update()
[all …]
H A DLVCodeViewReader.cpp655 SmallVector<StringRef, 10> SymbolNames; in traverseSymbolSection() local
734 SymbolNames.push_back(SymbolName); in traverseSymbolSection()
747 for (StringRef SymbolName : SymbolNames) { in traverseSymbolSection()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStandardLibrary.cpp44 } *SymbolNames = nullptr; member
88 Mapping->SymbolNames = in initialize()
89 new std::remove_reference_t<decltype(*Mapping->SymbolNames)>[SymCount]; in initialize()
118 Mapping->SymbolNames[SymIndex].qualifiedName() == QName) { in initialize()
120 assert(llvm::none_of(llvm::ArrayRef(Mapping->SymbolNames, SymIndex), in initialize()
130 Mapping->SymbolNames[SymIndex] = { in initialize()
216 return getMappingPerLang(Language)->SymbolNames[ID].scope(); in scope()
219 return getMappingPerLang(Language)->SymbolNames[ID].name(); in name()
222 return getMappingPerLang(Language)->SymbolNames[ID].qualifiedName(); in qualifiedName()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.h51 LVSymbolNames SymbolNames; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp726 if (ToRemove(SymbolNames)) { in removeSectionReferences()
732 SymbolNames->Name.data(), this->Name.data()); in removeSectionReferences()
733 SymbolNames = nullptr; in removeSectionReferences()
789 SymbolNames == nullptr ? 0 : SymbolNames->findIndex(Sym->Name); in finalize()
794 Link = SymbolNames == nullptr ? 0 : SymbolNames->Index; in finalize()
809 if (SymbolNames != nullptr) in prepareForLayout()
811 SymbolNames->addString(Sym->Name); in prepareForLayout()
H A DELFObject.h694 void setStrTab(StringTableSection *StrTab) { SymbolNames = StrTab; } in setStrTab()
699 StringTableSection *SymbolNames = nullptr; variable
720 const SectionBase *getStrTab() const { return SymbolNames; } in getStrTab()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp81 auto SymbolNames = getSymbolTypeNames(); in enumeration() local
82 for (const auto &E : SymbolNames) in enumeration()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp691 const std::vector<std::pair<StringRef, bool>> &SymbolNames) { in rt_pushSymbols() argument
707 for (auto &Name : SymbolNames) in rt_pushSymbols()
720 for (auto &[Name, Required] : SymbolNames) in rt_pushSymbols()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp608 StringSet<> SymbolNames; in parseLinkingSectionSymtab() local
802 !SymbolNames.insert(Info.Name).second) in parseLinkingSectionSymtab()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1066 DenseMap<uint64_t, StringRef> SymbolNames; in PrintFunctionStarts() local
1072 SymbolNames[*Addr] = *Name; in PrintFunctionStarts()
1081 auto It = SymbolNames.find(Addr); in PrintFunctionStarts()
1082 if (It != SymbolNames.end()) in PrintFunctionStarts()
1091 auto It = SymbolNames.find(Addr); in PrintFunctionStarts()
1092 if (It != SymbolNames.end()) in PrintFunctionStarts()