Home
last modified time | relevance | path

Searched refs:addSection (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DCOFFObjcopy.cpp60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents, in addSection() function
90 addSection(Obj, ".gnu_debuglink", *Contents, in addGnuDebugLink()
241 addSection( in handleArgs()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp1261 auto &StrTab = Obj->addSection<StringTableSection>(); in addStrTab()
1269 auto &SymTab = Obj->addSection<SymbolTableSection>(); in addSymTab()
1293 auto &DataSection = Obj->addSection<Section>(Data); in addData()
1345 Section = &Obj->addSection<OwnedDataSection>( in addDataSections()
1446 Seg.addSection(&Sec); in readProgramHeaders()
1678 return Obj.addSection<DynamicRelocationSection>(*Data); in makeSection()
1682 return Obj.addSection<RelocationSection>(); in makeSection()
1689 return Obj.addSection<Section>(*Data); in makeSection()
1693 return Obj.addSection<StringTableSection>(); in makeSection()
1699 return Obj.addSection<Section>(*Data); in makeSection()
[all …]
H A DELFObjcopy.cpp486 return &Obj.addSection<CompressedSection>(std::move(*NewSection)); in replaceAndRemoveSections()
495 return &Obj.addSection<DecompressedSection>(*CS); in replaceAndRemoveSections()
625 Obj.addSection<OwnedDataSection>(SecName, Data); in handleArgs()
631 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink, in handleArgs()
H A DObject.h475 void addSection(const SectionBase *Sec) { Sections.insert(Sec); } in addSection() function
1082 template <class T, class... Ts> T &addSection(Ts &&... Args) { in addSection() function
/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DEncoreBootImageGenerator.cpp180 image->addSection(newSection); in processOperationSection()
295 image->addSection(dataSection); in processDataSection()
/netbsd-src/external/bsd/elftosb/dist/common/
H A DELFSourceFile.cpp227 source->addSection(index); in createDataSource()
416 void ELFSourceFile::ELFDataSource::addSection(unsigned sectionIndex) in addSection() function in ELFSourceFile::ELFDataSource
H A DELFSourceFile.h204 void addSection(unsigned sectionIndex);
H A DEncoreBootImage.h890 void addSection(Section * newSection);
H A DEncoreBootImage.cpp42 void EncoreBootImage::addSection(Section * newSection) in addSection() function in EncoreBootImage
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.cpp277 static Error addSection(StringRef SecName, StringRef Filename, Object &Obj) { in addSection() function
364 if (Error E = addSection(SecName, File, Obj)) in handleArgs()