Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h149 struct ComdatEntry { struct
156 std::vector<ComdatEntry> Entries; argument
340 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ComdatEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()
446 template <> struct MappingTraits<WasmYAML::ComdatEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
447 static void mapping(IO &IO, WasmYAML::ComdatEntry &ComdatEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp380 void MappingTraits<WasmYAML::ComdatEntry>::mapping( in mapping()
381 IO &IO, WasmYAML::ComdatEntry &ComdatEntry) { in mapping() argument
382 IO.mapRequired("Kind", ComdatEntry.Kind); in mapping()
383 IO.mapRequired("Index", ComdatEntry.Index); in mapping()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dwasm2yaml.cpp73 WasmYAML::ComdatEntry{wasm::WASM_COMDAT_FUNCTION, Func.Index}); in dumpCustomSection()
89 WasmYAML::ComdatEntry{wasm::WASM_COMDAT_DATA, SegmentIndex}); in dumpCustomSection()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2wasm.cpp210 for (const WasmYAML::ComdatEntry &Entry : C.Entries) { in writeSectionContent()