Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
H A DObject.cpp22 Section NewSection, std::unique_ptr<MemoryBuffer> &&Content) { in addSectionWithOwnedContents() argument
23 Sections.push_back(NewSection); in addSectionWithOwnedContents()
H A DObject.h35 void addSectionWithOwnedContents(Section NewSection,
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp221 Expected<SectionBase *> NewSection = AddSection(S); in replaceDebugSections() local
222 if (!NewSection) in replaceDebugSections()
223 return NewSection.takeError(); in replaceDebugSections()
225 FromTo[S] = *NewSection; in replaceDebugSections()
481 Expected<CompressedSection> NewSection = in replaceAndRemoveSections() local
483 if (!NewSection) in replaceAndRemoveSections()
484 return NewSection.takeError(); in replaceAndRemoveSections()
486 return &Obj.addSection<CompressedSection>(std::move(*NewSection)); in replaceAndRemoveSections()
624 OwnedDataSection &NewSection = in handleArgs() local
627 NewSection.Type = SHT_NOTE; in handleArgs()
H A DObject.cpp1742 Expected<CompressedSection> NewSection = in makeSection() local
1744 if (!NewSection) in makeSection()
1745 return NewSection.takeError(); in makeSection()
1747 return Obj.addSection<CompressedSection>(std::move(*NewSection)); in makeSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCStreamer.h412 MCSectionSubPair NewSection = I->first; in PopSection() local
414 if (NewSection.first && OldSection != NewSection) in PopSection()
415 changeSection(NewSection.first, NewSection.second); in PopSection()