Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DWriter.cpp74 StringTableSection *stringTableSection = nullptr; member in __anonf5f323350111::Writer
298 LCSymtab(SymtabSection *symtabSection, StringTableSection *stringTableSection) in LCSymtab() argument
299 : symtabSection(symtabSection), stringTableSection(stringTableSection) {} in LCSymtab()
309 c->stroff = stringTableSection->fileOff; in writeTo()
310 c->strsize = stringTableSection->getFileSize(); in writeTo()
314 StringTableSection *stringTableSection = nullptr; member in __anonf5f323350111::LCSymtab
791 in.header->addLoadCommand(make<LCSymtab>(symtabSection, stringTableSection)); in createLoadCommands()
979 stringTableSection = make<StringTableSection>(); in createOutputSections()
980 symtabSection = makeSymtabSection<LP>(*stringTableSection); in createOutputSections()
H A DSyntheticSections.cpp1101 SymtabSection::SymtabSection(StringTableSection &stringTableSection) in SymtabSection() argument
1103 stringTableSection(stringTableSection) {} in SymtabSection()
1107 stab.strx = stringTableSection.addString(saver().save(sourceFile)); in emitBeginSourceStab()
1132 stab.strx = stringTableSection.addString(adjustedPath); in emitObjectFileStab()
1150 astStab.strx = stringTableSection.addString(s); in emitStabs()
1207 symStab.strx = stringTableSection.addString(defined->getName()); in emitStabs()
1226 uint32_t strx = stringTableSection.addString(sym->getName()); in finalizeContents()
1310 SymtabSectionImpl(StringTableSection &stringTableSection) in SymtabSectionImpl() argument
1311 : SymtabSection(stringTableSection) {} in SymtabSectionImpl()
1387 macho::makeSymtabSection(StringTableSection &stringTableSection) { in makeSymtabSection() argument
[all …]
H A DSyntheticSections.h478 StringTableSection &stringTableSection; variable