Searched refs:SymbolNames (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
| H A D | StandardLibrary.cpp | 44 } *SymbolNames = nullptr; member 89 Mapping->SymbolNames = in initialize() 90 new std::remove_reference_t<decltype(*Mapping->SymbolNames)>[SymCount]; in initialize() 119 assert(llvm::none_of(llvm::ArrayRef(Mapping->SymbolNames, SymIndex), in initialize() 127 Mapping->SymbolNames[SymIndex].qualifiedName() != QName) { in initialize() 131 Mapping->SymbolNames[SymIndex] = { in initialize() 218 return getMappingPerLang(Language)->SymbolNames[ID].scope(); in scope() 221 return getMappingPerLang(Language)->SymbolNames[ID].name(); in name() 224 return getMappingPerLang(Language)->SymbolNames[ID].qualifiedName(); in qualifiedName()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVBinaryReader.cpp | 28 SymbolNames.try_emplace(SymbolName, Function, 0, SectionIndex, false); in add() 45 auto [It, Inserted] = SymbolNames.try_emplace(SymbolName, nullptr, Address, in add() 67 auto It = SymbolNames.find(SymbolName); in update() 68 if (It == SymbolNames.end()) in update() 90 LVSymbolNames::iterator Iter = SymbolNames.find(Name); in getEntry() 91 return Iter != SymbolNames.end() ? Iter->second : Empty; in getEntry() 94 LVSymbolNames::iterator Iter = SymbolNames.find(Name); in getAddress() 95 return Iter != SymbolNames.end() ? Iter->second.Address : 0; in getAddress() 98 LVSymbolNames::iterator Iter = SymbolNames.find(Name); in getIndex() 99 return Iter != SymbolNames.end() ? Iter->second.SectionIndex in getIndex() [all …]
|
| H A D | LVCodeViewReader.cpp | 650 SmallVector<StringRef, 10> SymbolNames; in traverseSymbolSection() local 728 SymbolNames.push_back(SymbolName); in traverseSymbolSection() 741 for (StringRef SymbolName : SymbolNames) { in traverseSymbolSection()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/ |
| H A D | LVBinaryReader.h | 51 LVSymbolNames SymbolNames; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 743 if (ToRemove(SymbolNames)) { in removeSectionReferences() 749 SymbolNames->Name.data(), this->Name.data()); in removeSectionReferences() 750 SymbolNames = nullptr; in removeSectionReferences() 806 SymbolNames == nullptr ? 0 : SymbolNames->findIndex(Sym->Name); in finalize() 811 Link = SymbolNames == nullptr ? 0 : SymbolNames->Index; in finalize() 826 if (SymbolNames != nullptr) in prepareForLayout() 828 SymbolNames->addString(Sym->Name); in prepareForLayout()
|
| H A D | ELFObject.h | 814 void setStrTab(StringTableSection *StrTab) { SymbolNames = StrTab; } in setStrTab() 819 StringTableSection *SymbolNames = nullptr; variable 840 const SectionBase *getStrTab() const { return SymbolNames; } in getStrTab()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 81 auto SymbolNames = getSymbolTypeNames(); in enumeration() local 82 for (const auto &E : SymbolNames) in enumeration()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MachOPlatform.cpp | 743 const std::vector<std::pair<StringRef, bool>> &SymbolNames) { in rt_pushSymbols() argument 759 for (auto &Name : SymbolNames) in rt_pushSymbols() 772 for (auto &[Name, Required] : SymbolNames) in rt_pushSymbols()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 702 StringSet<> SymbolNames; in parseLinkingSectionSymtab() local 896 !SymbolNames.insert(Info.Name).second) in parseLinkingSectionSymtab()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 1062 DenseMap<uint64_t, StringRef> SymbolNames; in PrintFunctionStarts() local 1068 SymbolNames[*Addr] = *Name; in PrintFunctionStarts() 1077 auto It = SymbolNames.find(Addr); in PrintFunctionStarts() 1078 if (It != SymbolNames.end()) in PrintFunctionStarts() 1087 auto It = SymbolNames.find(Addr); in PrintFunctionStarts() 1088 if (It != SymbolNames.end()) in PrintFunctionStarts()
|