Home
last modified time | relevance | path

Searched refs:ExportSection (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h310 class ExportSection : public SyntheticSection {
312 ExportSection() : SyntheticSection(llvm::wasm::WASM_SEC_EXPORT) {}
441 ExportSection *exportSec;
H A DSyntheticSections.cpp526 void ExportSection::writeBody() { in writeBody()
H A DWriter.cpp1503 out.exportSec = make<ExportSection>(); in createSyntheticSections()
/llvm-project-15.0.7/llvm/lib/TextAPI/
H A DTextStub.cpp209 struct ExportSection { struct
274 LLVM_YAML_IS_SEQUENCE_VECTOR(ExportSection)
286 template <> struct MappingTraits<ExportSection> {
287 static void mapping(IO &IO, ExportSection &Section) { in mapping()
476 ExportSection Section; in NormalizedTBD()
741 std::vector<ExportSection> Exports;
/llvm-project-15.0.7/lld/MachO/
H A DSyntheticSections.h345 class ExportSection final : public LinkEditSection {
347 ExportSection();
632 ExportSection *exports = nullptr;
H A DWriter.cpp91 ExportSection *exportSection) in LCDyldInfo()
128 ExportSection *exportSection;
1220 in.exports = make<ExportSection>(); in createSyntheticSections()
H A DSyntheticSections.cpp798 ExportSection::ExportSection() in ExportSection() function in ExportSection
801 void ExportSection::finalizeContents() { in finalizeContents()
814 void ExportSection::writeTo(uint8_t *buf) const { trieBuilder.writeTo(buf); } in writeTo()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp135 static void sectionMapping(IO &IO, WasmYAML::ExportSection &Section) { in sectionMapping()
246 Section.reset(new WasmYAML::ExportSection()); in mapping()
247 sectionMapping(IO, *cast<WasmYAML::ExportSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
429 WasmYAML::ExportSection &Section) { in writeSectionContent()
629 else if (auto S = dyn_cast<WasmYAML::ExportSection>(Sec.get())) in writeWasm()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h356 struct ExportSection : Section { struct
357 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() function
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp319 auto ExportSec = std::make_unique<WasmYAML::ExportSection>(); in dump()