Home
last modified time | relevance | path

Searched refs:stringTableSection (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DWriter.cpp71 StringTableSection *stringTableSection = nullptr; member in __anon857cdc730111::Writer
294 LCSymtab(SymtabSection *symtabSection, StringTableSection *stringTableSection) in LCSymtab() argument
295 : symtabSection(symtabSection), stringTableSection(stringTableSection) {} in LCSymtab()
305 c->stroff = stringTableSection->fileOff; in writeTo()
306 c->strsize = stringTableSection->getFileSize(); in writeTo()
310 StringTableSection *stringTableSection = nullptr; member in __anon857cdc730111::LCSymtab
713 in.header->addLoadCommand(make<LCSymtab>(symtabSection, stringTableSection)); in createLoadCommands()
912 stringTableSection = make<StringTableSection>(); in createOutputSections()
913 symtabSection = makeSymtabSection<LP>(*stringTableSection); in createOutputSections()
H A DSyntheticSections.cpp826 SymtabSection::SymtabSection(StringTableSection &stringTableSection) in SymtabSection() argument
828 stringTableSection(stringTableSection) {} in SymtabSection()
838 stab.strx = stringTableSection.addString( in emitBeginSourceStab()
861 stab.strx = stringTableSection.addString(saver.save(path.str())); in emitObjectFileStab()
876 astStab.strx = stringTableSection.addString(s); in emitStabs()
920 symStab.strx = stringTableSection.addString(defined->getName()); in emitStabs()
939 uint32_t strx = stringTableSection.addString(sym->getName()); in finalizeContents()
997 SymtabSectionImpl(StringTableSection &stringTableSection) in SymtabSectionImpl() argument
998 : SymtabSection(stringTableSection) {} in SymtabSectionImpl()
1075 macho::makeSymtabSection(StringTableSection &stringTableSection) { in makeSymtabSection() argument
[all …]
H A DSyntheticSections.h443 StringTableSection &stringTableSection; variable