[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / include / llvm / DebugInfo / CodeView / Formatters.h
blob7d04a6a89bef61f5fab05202bb46aaa096dde1df
1 //===- Formatters.h ---------------------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_CODEVIEW_FORMATTERS_H
10 #define LLVM_DEBUGINFO_CODEVIEW_FORMATTERS_H
12 #include "llvm/ADT/ArrayRef.h"
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/DebugInfo/CodeView/GUID.h"
15 #include "llvm/DebugInfo/CodeView/TypeIndex.h"
16 #include "llvm/Support/FormatAdapters.h"
17 #include "llvm/Support/FormatVariadic.h"
18 #include "llvm/Support/raw_ostream.h"
19 #include <cstdint>
21 namespace llvm {
23 namespace codeview {
25 namespace detail {
27 class GuidAdapter final : public FormatAdapter<ArrayRef<uint8_t>> {
28 ArrayRef<uint8_t> Guid;
30 public:
31 explicit GuidAdapter(ArrayRef<uint8_t> Guid);
32 explicit GuidAdapter(StringRef Guid);
34 void format(raw_ostream &Stream, StringRef Style) override;
37 } // end namespace detail
39 inline detail::GuidAdapter fmt_guid(StringRef Item) {
40 return detail::GuidAdapter(Item);
43 inline detail::GuidAdapter fmt_guid(ArrayRef<uint8_t> Item) {
44 return detail::GuidAdapter(Item);
47 } // end namespace codeview
49 template <> struct format_provider<codeview::TypeIndex> {
50 public:
51 static void format(const codeview::TypeIndex &V, raw_ostream &Stream,
52 StringRef Style) {
53 if (V.isNoneType())
54 Stream << "<no type>";
55 else {
56 Stream << formatv("{0:X+4}", V.getIndex());
57 if (V.isSimple())
58 Stream << " (" << codeview::TypeIndex::simpleTypeName(V) << ")";
63 template <> struct format_provider<codeview::GUID> {
64 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
65 StringRef Style) {
66 Stream << V;
70 } // end namespace llvm
72 #endif // LLVM_DEBUGINFO_CODEVIEW_FORMATTERS_H