Searched refs:ComdatEntry (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 176 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 D | WasmYAML.cpp | 491 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 D | WasmEmitter.cpp | 261 for (const WasmYAML::ComdatEntry &Entry : C.Entries) { in writeSectionContent()
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | wasm2yaml.cpp | 96 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 D | SyntheticSections.cpp | 689 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()
|