1 //==- CodeViewYAMLTypeHashing.h - CodeView YAMLIO Type hashing ----*- C++-*-==//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines classes for handling the YAML representation of CodeView
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_OBJECTYAML_CODEVIEWYAMLTYPEHASHING_H
15 #define LLVM_OBJECTYAML_CODEVIEWYAMLTYPEHASHING_H
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/DebugInfo/CodeView/TypeHashing.h"
19 #include "llvm/ObjectYAML/YAML.h"
20 #include "llvm/Support/Allocator.h"
21 #include "llvm/Support/Error.h"
22 #include "llvm/Support/YAMLTraits.h"
29 namespace CodeViewYAML
{
32 GlobalHash() = default;
33 explicit GlobalHash(StringRef S
) : Hash(S
) {
34 assert(S
.size() == 8 && "Invalid hash size!");
36 explicit GlobalHash(ArrayRef
<uint8_t> S
) : Hash(S
) {
37 assert(S
.size() == 8 && "Invalid hash size!");
42 struct DebugHSection
{
45 uint16_t HashAlgorithm
;
46 std::vector
<GlobalHash
> Hashes
;
49 DebugHSection
fromDebugH(ArrayRef
<uint8_t> DebugH
);
50 ArrayRef
<uint8_t> toDebugH(const DebugHSection
&DebugH
,
51 BumpPtrAllocator
&Alloc
);
53 } // end namespace CodeViewYAML
55 } // end namespace llvm
57 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::DebugHSection
)
58 LLVM_YAML_DECLARE_SCALAR_TRAITS(CodeViewYAML::GlobalHash
, QuotingType::None
)
59 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::GlobalHash
)
61 #endif // LLVM_OBJECTYAML_CODEVIEWYAMLTYPES_H