Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
742 std::vector<ExportSection> Exports;
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h343 class ExportSection final : public LinkEditSection {
345 ExportSection();
599 ExportSection *exports = nullptr;
H A DSyntheticSections.cpp711 ExportSection::ExportSection() in ExportSection() function in ExportSection
714 void ExportSection::finalizeContents() { in finalizeContents()
727 void ExportSection::writeTo(uint8_t *buf) const { trieBuilder.writeTo(buf); } in writeTo()
H A DWriter.cpp88 ExportSection *exportSection) in LCDyldInfo()
125 ExportSection *exportSection;
1137 in.exports = make<ExportSection>(); in createSyntheticSections()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp133 static void sectionMapping(IO &IO, WasmYAML::ExportSection &Section) { in sectionMapping()
244 Section.reset(new WasmYAML::ExportSection()); in mapping()
245 sectionMapping(IO, *cast<WasmYAML::ExportSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
416 WasmYAML::ExportSection &Section) { in writeSectionContent()
633 else if (auto S = dyn_cast<WasmYAML::ExportSection>(Sec.get())) in writeWasm()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h339 struct ExportSection : Section { struct
340 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() function