Home
last modified time | relevance | path

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

/external/llvm-project/lld/wasm/
DSyntheticSections.h230 class ExportSection : public SyntheticSection {
232 ExportSection() : SyntheticSection(llvm::wasm::WASM_SEC_EXPORT) {} in ExportSection() function
362 ExportSection *exportSec;
DSyntheticSections.cpp366 void ExportSection::writeBody() { in writeBody()
DWriter.cpp1208 out.exportSec = make<ExportSection>(); in createSyntheticSections()
/external/llvm-project/lld/MachO/
DSyntheticSections.h377 class ExportSection : public LinkEditSection {
379 ExportSection();
484 ExportSection *exports = nullptr;
DSyntheticSections.cpp558 ExportSection::ExportSection() in ExportSection() function in ExportSection
561 void ExportSection::finalizeContents() { in finalizeContents()
573 void ExportSection::writeTo(uint8_t *buf) const { trieBuilder.writeTo(buf); } in writeTo()
DWriter.cpp73 ExportSection *exportSection) in LCDyldInfo()
110 ExportSection *exportSection;
743 in.exports = make<ExportSection>(); in createSyntheticSections()
/external/llvm-project/llvm/lib/TextAPI/MachO/
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()
744 std::vector<ExportSection> Exports;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
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()
473 ExportSection Section; in NormalizedTBD()
741 std::vector<ExportSection> Exports;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
387 WasmYAML::ExportSection &Section) { in writeSectionContent()
578 else if (auto S = dyn_cast<WasmYAML::ExportSection>(Sec.get())) in writeWasm()
DWasmYAML.cpp131 static void sectionMapping(IO &IO, WasmYAML::ExportSection &Section) { in sectionMapping()
242 Section.reset(new WasmYAML::ExportSection()); in mapping()
243 sectionMapping(IO, *cast<WasmYAML::ExportSection>(Section.get())); in mapping()
/external/llvm-project/llvm/lib/ObjectYAML/
DWasmEmitter.cpp46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
403 WasmYAML::ExportSection &Section) { in writeSectionContent()
604 else if (auto S = dyn_cast<WasmYAML::ExportSection>(Sec.get())) in writeWasm()
DWasmYAML.cpp132 static void sectionMapping(IO &IO, WasmYAML::ExportSection &Section) { in sectionMapping()
243 Section.reset(new WasmYAML::ExportSection()); in mapping()
244 sectionMapping(IO, *cast<WasmYAML::ExportSection>(Section.get())); in mapping()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DWasmYAML.h336 struct ExportSection : Section { struct
337 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h332 struct ExportSection : Section { struct
333 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() argument
/external/llvm-project/llvm/tools/obj2yaml/
Dwasm2yaml.cpp313 auto ExportSec = std::make_unique<WasmYAML::ExportSection>(); in dump()