Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp208 struct ExportSection { struct
263 LLVM_YAML_IS_SEQUENCE_VECTOR(ExportSection)
275 template <> struct MappingTraits<ExportSection> {
276 static void mapping(IO &IO, ExportSection &Section) { in mapping()
436 ExportSection Section; in NormalizedTBD()
705 std::vector<ExportSection> Exports;
/freebsd/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h391 class ExportSection final : public LinkEditSection {
393 ExportSection();
853 ExportSection *exports = nullptr;
H A DWriter.cpp89 ExportSection *exportSection) in LCDyldInfo()
126 ExportSection *exportSection;
609 LCExportsTrie(ExportSection *section) : section(section) {} in LCExportsTrie()
621 ExportSection *section;
1396 in.exports = make<ExportSection>(); in createSyntheticSections()
H A DSyntheticSections.cpp1040 ExportSection::ExportSection() in ExportSection() function in ExportSection
1043 void ExportSection::finalizeContents() { in finalizeContents()
1059 void ExportSection::writeTo(uint8_t *buf) const { trieBuilder.writeTo(buf); } in writeTo()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp138 static void sectionMapping(IO &IO, WasmYAML::ExportSection &Section) { in sectionMapping()
249 Section.reset(new WasmYAML::ExportSection()); in mapping()
250 sectionMapping(IO, *cast<WasmYAML::ExportSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
437 WasmYAML::ExportSection &Section) { in writeSectionContent()
638 else if (auto S = dyn_cast<WasmYAML::ExportSection>(Sec.get())) in writeWasm()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h359 struct ExportSection : Section { struct
360 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() argument