Home
last modified time | relevance | path

Searched refs:ComdatEntry (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h176 struct ComdatEntry { struct
183 std::vector<ComdatEntry> Entries; argument
443 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ComdatEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()
563 template <> struct MappingTraits<WasmYAML::ComdatEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
564 static void mapping(IO &IO, WasmYAML::ComdatEntry &ComdatEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp491 void MappingTraits<WasmYAML::ComdatEntry>::mapping( in mapping()
492 IO &IO, WasmYAML::ComdatEntry &ComdatEntry) { in mapping() argument
493 IO.mapRequired("Kind", ComdatEntry.Kind); in mapping()
494 IO.mapRequired("Index", ComdatEntry.Index); in mapping()
H A DWasmEmitter.cpp261 for (const WasmYAML::ComdatEntry &Entry : C.Entries) { in writeSectionContent()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp96 WasmYAML::ComdatEntry{wasm::WASM_COMDAT_FUNCTION, Func.Index}); in dumpCustomSection()
112 WasmYAML::ComdatEntry{wasm::WASM_COMDAT_DATA, SegmentIndex}); in dumpCustomSection()
121 WasmYAML::ComdatEntry{wasm::WASM_COMDAT_SECTION, SectionIndex}); in dumpCustomSection()
/openbsd-src/gnu/llvm/lld/wasm/
H A DSyntheticSections.cpp689 struct ComdatEntry { in writeBody() struct
693 std::map<StringRef, std::vector<ComdatEntry>> comdats; in writeBody()
699 ComdatEntry{WASM_COMDAT_FUNCTION, f->getFunctionIndex()}); in writeBody()
711 comdats[comdat].emplace_back(ComdatEntry{WASM_COMDAT_DATA, i}); in writeBody()
721 for (const ComdatEntry &entry : c.second) { in writeBody()