Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DSyntheticSections.h311 class ExportSection : public SyntheticSection {
313 ExportSection() : SyntheticSection(llvm::wasm::WASM_SEC_EXPORT) {}
442 ExportSection *exportSec;
H A DSyntheticSections.cpp528 void ExportSection::writeBody() { in writeBody()
H A DWriter.cpp1528 out.exportSec = make<ExportSection>(); in createSyntheticSections()
/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/lld/MachO/
H A DSyntheticSections.h376 class ExportSection final : public LinkEditSection {
378 ExportSection();
800 ExportSection *exports = nullptr;
H A DWriter.cpp91 ExportSection *exportSection) in LCDyldInfo()
128 ExportSection *exportSection;
586 LCExportsTrie(ExportSection *section) : section(section) {} in LCExportsTrie()
598 ExportSection *section;
1343 in.exports = make<ExportSection>(); in createSyntheticSections()
H A DSyntheticSections.cpp970 ExportSection::ExportSection() in ExportSection() function in ExportSection
973 void ExportSection::finalizeContents() { in finalizeContents()
986 void ExportSection::writeTo(uint8_t *buf) const { trieBuilder.writeTo(buf); } in writeTo()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
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()
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()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h356 struct ExportSection : Section { struct
357 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() argument
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp319 auto ExportSec = std::make_unique<WasmYAML::ExportSection>(); in dump()