Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DWriter.cpp91 void addSection(OutputSection *sec);
168 addSection(sec); in createCustomSections()
198 addSection(make<RelocSection>(name, sec)); in createRelocSections()
402 void Writer::addSection(OutputSection *sec) { in addSection() function in lld::wasm::Writer
427 addSection(out.dylinkSec); in addSections()
428 addSection(out.typeSec); in addSections()
429 addSection(out.importSec); in addSections()
430 addSection(out.functionSec); in addSections()
431 addSection(out.tableSec); in addSections()
432 addSection(out.memorySec); in addSections()
[all …]
/openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/OrcV2CBindingsMCJITLikeMemoryManager/
H A DOrcV2CBindingsMCJITLikeMemoryManager.c47 void *addSection(size_t Size, LLVMBool IsCode) { in addSection() function
90 return addSection(Size, 1); in memAllocate()
96 return addSection(Size, 0); in memAllocateData()
/openbsd-src/gnu/llvm/llvm/lib/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(Obj, NewSection.SectionName, in handleArgs()
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1238 auto &StrTab = Obj->addSection<StringTableSection>(); in addStrTab()
1246 auto &SymTab = Obj->addSection<SymbolTableSection>(); in addSymTab()
1270 auto &DataSection = Obj->addSection<Section>(Data); in addData()
1323 Section = &Obj->addSection<OwnedDataSection>( in addDataSections()
1434 Seg.addSection(&Sec); in readProgramHeaders()
1667 return Obj.addSection<DynamicRelocationSection>(*Data); in makeSection()
1671 return Obj.addSection<RelocationSection>(Obj); in makeSection()
1678 return Obj.addSection<Section>(*Data); in makeSection()
1682 return Obj.addSection<StringTableSection>(); in makeSection()
1688 return Obj.addSection<Section>(*Data); in makeSection()
[all …]
H A DELFObjcopy.cpp511 return &Obj.addSection<CompressedSection>( in replaceAndRemoveSections()
521 return &Obj.addSection<DecompressedSection>(*CS); in replaceAndRemoveSections()
647 Obj.addSection<OwnedDataSection>(Name, Data); in handleArgs()
665 Obj.addSection<GnuDebugLinkSection>(Config.AddGnuDebugLink, in handleArgs()
H A DELFObject.h476 void addSection(const SectionBase *Sec) { Sections.insert(Sec); } in addSection() function
1090 template <class T, class... Ts> T &addSection(Ts &&...Args) { in addSection() function
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp300 static Error addSection(const NewSectionInfo &NewSection, Object &Obj) { in addSection() function
420 if (Error E = addSection(NewSection, Obj)) in handleArgs()
/openbsd-src/gnu/llvm/lld/ELF/
H A DSyntheticSections.h933 void addSection(MergeInputSection *ms);
1086 bool addSection(InputSection *isec);
H A DOutputSections.cpp226 (*i)->addSection(ms); in finalizeInputSections()
H A DSyntheticSections.cpp3215 void MergeSyntheticSection::addSection(MergeInputSection *ms) { in addSection() function in MergeSyntheticSection
3343 part.armExidx->addSection(cast<InputSection>(s)); in combineEhSections()
3367 bool ARMExidxSyntheticSection::addSection(InputSection *isec) { in addSection() function in ARMExidxSyntheticSection
/openbsd-src/gnu/llvm/lld/COFF/
H A DChunks.h433 static void addSection(COFFLinkerContext &ctx, SectionChunk *c);
H A DChunks.cpp991 void MergeChunk::addSection(COFFLinkerContext &ctx, SectionChunk *c) { in addSection() function in lld::coff::MergeChunk
H A DInputFiles.cpp268 MergeChunk::addSection(ctx, c); in readSection()