Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp209 struct ExportSection { struct
264 LLVM_YAML_IS_SEQUENCE_VECTOR(ExportSection)
276 template <> struct MappingTraits<ExportSection> {
277 static void mapping(IO &IO, ExportSection &Section) { in mapping()
437 ExportSection Section; in NormalizedTBD()
706 std::vector<ExportSection> Exports;
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h376 class ExportSection final : public LinkEditSection {
378 ExportSection();
788 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;
1349 in.exports = make<ExportSection>(); in createSyntheticSections()
H A DSyntheticSections.cpp983 ExportSection::ExportSection() in ExportSection() function in ExportSection
986 void ExportSection::finalizeContents() { in finalizeContents()
1002 void ExportSection::writeTo(uint8_t *buf) const { trieBuilder.writeTo(buf); } in writeTo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp136 static void sectionMapping(IO &IO, WasmYAML::ExportSection &Section) { in sectionMapping()
247 Section.reset(new WasmYAML::ExportSection()); in mapping()
248 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()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h357 struct ExportSection : Section { struct
358 ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} in ExportSection() function