Home
last modified time | relevance | path

Searched refs:SymbolTable (Results 1 – 25 of 31) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFImportFile.cpp255 coff_symbol16 SymbolTable[NumberOfSymbols] = { in createImportDescriptor() local
301 SymbolTable[0].Name.Offset.Offset = in createImportDescriptor()
303 SymbolTable[5].Name.Offset.Offset = in createImportDescriptor()
305 SymbolTable[6].Name.Offset.Offset = in createImportDescriptor()
308 append(Buffer, SymbolTable); in createImportDescriptor()
362 coff_symbol16 SymbolTable[NumberOfSymbols] = { in createNullImportDescriptor() local
370 SymbolTable[0].Name.Offset.Offset = sizeof(uint32_t); in createNullImportDescriptor()
371 append(Buffer, SymbolTable); in createNullImportDescriptor()
444 coff_symbol16 SymbolTable[NumberOfSymbols] = { in createNullThunk() local
452 SymbolTable[0].Name.Offset.Offset = sizeof(uint32_t); in createNullThunk()
[all …]
H A DArchive.cpp620 SymbolTable = BufOrErr.get(); in Archive()
646 SymbolTable = BufOrErr.get(); in Archive()
659 SymbolTable = BufOrErr.get(); in Archive()
681 SymbolTable = BufOrErr.get(); in Archive()
736 SymbolTable = BufOrErr.get(); in Archive()
991 bool Archive::hasSymbolTable() const { return !SymbolTable.empty(); } in hasSymbolTable()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp250 if (!Obj.SymbolTable) in updateAndRemoveSymbols()
253 Obj.SymbolTable->updateSymbols([&](Symbol &Sym) { in updateAndRemoveSymbols()
444 if (Obj.SymbolTable == &Sec || in replaceAndRemoveSections()
445 (Obj.SymbolTable && Obj.SymbolTable->getStrTab() == &Sec)) in replaceAndRemoveSections()
469 Obj.SymbolTable && !Obj.SymbolTable->empty()) { in replaceAndRemoveSections()
471 if (&Sec == Obj.SymbolTable || &Sec == Obj.SymbolTable->getStrTab()) in replaceAndRemoveSections()
636 if (!Obj.SymbolTable && !ELFConfig.SymbolsToAdd.empty()) in handleArgs()
643 Obj.SymbolTable->addSymbol( in handleArgs()
H A DObject.cpp1277 Obj->SymbolTable = &SymTab; in addSymTab()
1624 SymbolTableSection *SymbolTable, T RelRange) { in initRelocations() argument
1632 if (!SymbolTable) in initRelocations()
1637 Expected<Symbol *> SymByIndex = SymbolTable->getSymbolByIndex(Sym); in initRelocations()
1719 Obj.SymbolTable = &SymTab; in makeSection()
1831 if (Obj.SymbolTable) { in readSections()
1832 if (Error Err = Obj.SymbolTable->initialize(Obj.sections())) in readSections()
1834 if (Error Err = initSymbolTable(Obj.SymbolTable)) in readSections()
1845 if (&Sec == Obj.SymbolTable) in readSections()
1863 if (Error Err = initRelocations(RelSec, Obj.SymbolTable, *Rels)) in readSections()
[all …]
/netbsd-src/external/bsd/byacc/dist/test/
H A Dgrammar.y218 } SymbolTable; typedef
220 extern SymbolTable *new_symbol_table /* Create symbol table */
223 (SymbolTable *s);
225 (SymbolTable *s, const char *n);
227 (SymbolTable *s, const char *n, const char *v, int f);
309 static SymbolTable *typedef_names;
312 static SymbolTable *define_names;
315 static SymbolTable *type_qualifiers;
1035 static SymbolTable *included_files; /* files already included */
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFGdbIndex.cpp60 SymbolTableOffset, (uint64_t)SymbolTable.size()) in dumpSymbolTable()
63 for (const SymTableEntry &E : SymbolTable) { in dumpSymbolTable()
168 SymbolTable.reserve(SymTableSize); in parseImpl()
173 SymbolTable.push_back({NameOffset, CuVecOffset}); in parseImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DObject.cpp17 const SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) const { in getSymbolByIndex()
22 SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) { in getSymbolByIndex()
24 static_cast<const SymbolTable *>(this)->getSymbolByIndex(Index)); in getSymbolByIndex()
27 void SymbolTable::removeSymbols( in removeSymbols()
H A DObject.h139 struct SymbolTable { struct
303 SymbolTable SymTable;
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/lib/Core/
H A DBUILD.gn17 "SymbolTable.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DArchive.h262 StringRef getSymbolTable() const { return SymbolTable; } in getSymbolTable()
271 StringRef SymbolTable;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCContext.h73 using SymbolTable = StringMap<MCSymbol *, BumpPtrAllocator &>;
122 SymbolTable Symbols;
139 SymbolTable InlineAsmUsedLabelNames;
499 const SymbolTable &getSymbols() const { return Symbols; } in getSymbols()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/wasm/
H A DBUILD.gn30 "SymbolTable.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFGdbIndex.h55 SmallVector<SymTableEntry, 0> SymbolTable; variable
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/MachO/
H A DBUILD.gn43 "SymbolTable.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/COFF/
H A DBUILD.gn44 "SymbolTable.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DType.cpp425 StringMap<StructType *> &SymbolTable = getContext().pImpl->NamedStructTypes; in setName() local
432 SymbolTable.remove((EntryTy *)SymbolTableEntry); in setName()
438 ((EntryTy *)SymbolTableEntry)->Destroy(SymbolTable.getAllocator()); in setName()
466 ((EntryTy *)SymbolTableEntry)->Destroy(SymbolTable.getAllocator()); in setName()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/lld/ELF/
H A DBUILD.gn58 "SymbolTable.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h61 extern bool SymbolTable;
H A Dllvm-objdump.cpp213 bool objdump::SymbolTable; member in objdump
2236 if (SymbolTable) in dumpObject()
2291 if (SymbolTable) in dumpObject()
2456 SymbolTable = InputArgs.hasArg(OBJDUMP_syms); in parseObjdumpOptions()
2589 SectionHeaders = SymbolTable = true; in main()
2597 !Relocations && !SectionHeaders && !SectionContents && !SymbolTable && in main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp177 if (Section.SymbolTable.size()) { in writeSectionContent()
180 encodeULEB128(Section.SymbolTable.size(), SubSection.getStream()); in writeSectionContent()
184 for (const WasmYAML::SymbolInfo &Info : Section.SymbolTable) { in writeSectionContent()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp122 for (const wasm::WasmSymbolInfo &Symbol : Obj.linkingData().SymbolTable) { in dumpCustomSection()
142 LinkingSec->SymbolTable.emplace_back(Info); in dumpCustomSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasm.h224 std::vector<WasmSymbolInfo> SymbolTable; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DELF_x86_64.cpp247 using SymbolTable = object::ELFFile<object::ELF64LE>::Elf_Shdr; typedef in llvm::jitlink::ELFLinkGraphBuilder_x86_64
292 SymbolTable SymTab;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h1125 using SymbolTable = DenseMap<SymbolStringPtr, SymbolTableEntry>; variable
1178 SymbolTable Symbols;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h239 std::vector<SymbolInfo> SymbolTable; member

12