Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h38 class SymbolTableSection; variable
80 virtual Error visit(const SymbolTableSection &Sec) = 0;
97 virtual Error visit(SymbolTableSection &Sec) = 0;
118 Error visit(const SymbolTableSection &Sec) override = 0;
138 Error visit(const SymbolTableSection &Sec) override;
162 Error visit(SymbolTableSection &Sec) override;
182 Error visit(const SymbolTableSection &Sec) override;
657 SymbolTableSection *Symbols = nullptr;
670 void setSymTab(SymbolTableSection *SymTab) { Symbols = SymTab; } in setSymTab()
684 class SymbolTableSection : public SectionBase {
[all …]
H A DELFObject.cpp101 Error ELFSectionSizer<ELFT>::visit(SymbolTableSection &Sec) { in visit()
148 Error BinarySectionWriter::visit(const SymbolTableSection &Sec) { in visit()
599 Expected<SymbolTableSection *> Sec = in initialize()
600 SecTable.getSectionOfType<SymbolTableSection>( in initialize()
681 void SymbolTableSection::assignIndices() { in assignIndices()
687 void SymbolTableSection::addSymbol(Twine Name, uint8_t Bind, uint8_t Type, in addSymbol()
712 Error SymbolTableSection::removeSectionReferences( in removeSectionReferences()
729 void SymbolTableSection::updateSymbols(function_ref<void(Symbol &)> Callable) { in updateSymbols()
738 Error SymbolTableSection::removeSymbols( in removeSymbols()
749 void SymbolTableSection::replaceSectionReferences( in replaceSectionReferences()
[all …]
/openbsd-src/gnu/llvm/lld/ELF/
H A DSyntheticSections.cpp2172 SymbolTableSection<ELFT>::SymbolTableSection(StringTableSection &strTabSec) in SymbolTableSection() function in SymbolTableSection
2195 template <class ELFT> void SymbolTableSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
3943 template class elf::SymbolTableSection<ELF32LE>; member in elf
3944 template class elf::SymbolTableSection<ELF32BE>; member in elf
3945 template class elf::SymbolTableSection<ELF64LE>; member in elf
3946 template class elf::SymbolTableSection<ELF64BE>; member in elf
H A DSyntheticSections.h659 class SymbolTableSection final : public SymbolTableBaseSection {
663 SymbolTableSection(StringTableSection &strTabSec);
H A DWriter.cpp290 in.symTab = std::make_unique<SymbolTableSection<ELFT>>(*in.strTab); in createSyntheticSections()
345 std::make_unique<SymbolTableSection<ELFT>>(*part.dynStrTab); in createSyntheticSections()