Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h89 struct LocalDecl { struct
96 std::vector<LocalDecl> Locals; argument
334 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::LocalDecl) in LLVM_YAML_IS_SEQUENCE_VECTOR()
418 template <> struct MappingTraits<WasmYAML::LocalDecl> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
419 static void mapping(IO &IO, WasmYAML::LocalDecl &LocalDecl); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dwasm2yaml.cpp265 WasmYAML::LocalDecl LocalDecl; in dump() local
266 LocalDecl.Type = Local.Type; in dump()
267 LocalDecl.Count = Local.Count; in dump()
268 Function.Locals.push_back(LocalDecl); in dump()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp279 void MappingTraits<WasmYAML::LocalDecl>::mapping( in mapping()
280 IO &IO, WasmYAML::LocalDecl &LocalDecl) { in mapping() argument
281 IO.mapRequired("Type", LocalDecl.Type); in mapping()
282 IO.mapRequired("Count", LocalDecl.Count); in mapping()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2wasm.cpp401 for (auto &LocalDecl : Func.Locals) { in writeSectionContent() local
402 encodeULEB128(LocalDecl.Count, StringStream); in writeSectionContent()
403 writeUint8(StringStream, LocalDecl.Type); in writeSectionContent()