Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h99 struct LocalDecl { struct
106 std::vector<LocalDecl> Locals; argument
418 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::LocalDecl) in LLVM_YAML_IS_SEQUENCE_VECTOR()
517 template <> struct MappingTraits<WasmYAML::LocalDecl> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
518 static void mapping(IO &IO, WasmYAML::LocalDecl &LocalDecl); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp360 void MappingTraits<WasmYAML::LocalDecl>::mapping( in mapping()
361 IO &IO, WasmYAML::LocalDecl &LocalDecl) { in mapping() argument
362 IO.mapRequired("Type", LocalDecl.Type); in mapping()
363 IO.mapRequired("Count", LocalDecl.Count); in mapping()
H A DWasmEmitter.cpp525 for (auto &LocalDecl : Func.Locals) { in writeSectionContent() local
526 encodeULEB128(LocalDecl.Count, StringStream); in writeSectionContent()
527 writeUint8(StringStream, LocalDecl.Type); in writeSectionContent()