LLVM  8.0.1
RecordSerialization.h
Go to the documentation of this file.
1 //===- RecordSerialization.h ------------------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_DEBUGINFO_CODEVIEW_RECORDSERIALIZATION_H
11 #define LLVM_DEBUGINFO_CODEVIEW_RECORDSERIALIZATION_H
12 
13 #include "llvm/ADT/APSInt.h"
14 #include "llvm/ADT/ArrayRef.h"
15 #include "llvm/ADT/StringRef.h"
19 #include "llvm/Support/Endian.h"
20 #include "llvm/Support/Error.h"
21 #include <cinttypes>
22 #include <tuple>
23 
24 namespace llvm {
25 namespace codeview {
29 
30 /// Limit on the size of all codeview symbol and type records, including the
31 /// RecordPrefix. MSVC does not emit any records larger than this.
32 enum : unsigned { MaxRecordLength = 0xFF00 };
33 
34 struct RecordPrefix {
35  ulittle16_t RecordLen; // Record length, starting from &RecordKind.
36  ulittle16_t RecordKind; // Record kind enum (SymRecordKind or TypeRecordKind)
37 };
38 
39 /// Reinterpret a byte array as an array of characters. Does not interpret as
40 /// a C string, as StringRef has several helpers (split) that make that easy.
43 
44 inline Error consume(BinaryStreamReader &Reader) { return Error::success(); }
45 
46 /// Decodes a numeric "leaf" value. These are integer literals encountered in
47 /// the type stream. If the value is positive and less than LF_NUMERIC (1 <<
48 /// 15), it is emitted directly in Data. Otherwise, it has a tag like LF_CHAR
49 /// that indicates the bitwidth and sign of the numeric data.
50 Error consume(BinaryStreamReader &Reader, APSInt &Num);
51 
52 /// Decodes a numeric leaf value that is known to be a particular type.
53 Error consume_numeric(BinaryStreamReader &Reader, uint64_t &Value);
54 
55 /// Decodes signed and unsigned fixed-length integers.
57 Error consume(BinaryStreamReader &Reader, int32_t &Item);
58 
59 /// Decodes a null terminated string.
61 
63 Error consume(StringRef &Data, uint32_t &Item);
64 
65 /// Decodes an arbitrary object whose layout matches that of the underlying
66 /// byte sequence, and returns a pointer to the object.
67 template <typename T> Error consume(BinaryStreamReader &Reader, T *&Item) {
68  return Reader.readObject(Item);
69 }
70 
71 template <typename T, typename U> struct serialize_conditional_impl {
72  serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
73 
75  if (!Func())
76  return Error::success();
77  return consume(Reader, Item);
78  }
79 
80  T &Item;
81  U Func;
82 };
83 
84 template <typename T, typename U>
86  return serialize_conditional_impl<T, U>(Item, Func);
87 }
88 
89 template <typename T, typename U> struct serialize_array_impl {
90  serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
91 
93  return Reader.readArray(Item, Func());
94  }
95 
97  U Func;
98 };
99 
100 template <typename T> struct serialize_vector_tail_impl {
101  serialize_vector_tail_impl(std::vector<T> &Item) : Item(Item) {}
102 
104  T Field;
105  // Stop when we run out of bytes or we hit record padding bytes.
106  while (!Reader.empty() && Reader.peek() < LF_PAD0) {
107  if (auto EC = consume(Reader, Field))
108  return EC;
109  Item.push_back(Field);
110  }
111  return Error::success();
112  }
113 
114  std::vector<T> &Item;
115 };
116 
118  serialize_null_term_string_array_impl(std::vector<StringRef> &Item)
119  : Item(Item) {}
120 
122  if (Reader.empty())
123  return make_error<CodeViewError>(cv_error_code::insufficient_buffer,
124  "Null terminated string is empty!");
125 
126  while (Reader.peek() != 0) {
128  if (auto EC = Reader.readCString(Field))
129  return EC;
130  Item.push_back(Field);
131  }
132  return Reader.skip(1);
133  }
134 
135  std::vector<StringRef> &Item;
136 };
137 
138 template <typename T> struct serialize_arrayref_tail_impl {
140 
142  uint32_t Count = Reader.bytesRemaining() / sizeof(T);
143  return Reader.readArray(Item, Count);
144  }
145 
147 };
148 
149 template <typename T> struct serialize_numeric_impl {
150  serialize_numeric_impl(T &Item) : Item(Item) {}
151 
153  return consume_numeric(Reader, Item);
154  }
155 
156  T &Item;
157 };
158 
159 template <typename T, typename U>
161  return serialize_array_impl<T, U>(Item, Func);
162 }
163 
165 serialize_null_term_string_array(std::vector<StringRef> &Item) {
167 }
168 
169 template <typename T>
171  return serialize_vector_tail_impl<T>(Item);
172 }
173 
174 template <typename T>
176  return serialize_arrayref_tail_impl<T>(Item);
177 }
178 
179 template <typename T> serialize_numeric_impl<T> serialize_numeric(T &Item) {
180  return serialize_numeric_impl<T>(Item);
181 }
182 
183 template <typename T, typename U>
185  const serialize_conditional_impl<T, U> &Item) {
186  return Item.deserialize(Reader);
187 }
188 
189 template <typename T, typename U>
191  const serialize_array_impl<T, U> &Item) {
192  return Item.deserialize(Reader);
193 }
194 
197  return Item.deserialize(Reader);
198 }
199 
200 template <typename T>
202  const serialize_vector_tail_impl<T> &Item) {
203  return Item.deserialize(Reader);
204 }
205 
206 template <typename T>
208  const serialize_arrayref_tail_impl<T> &Item) {
209  return Item.deserialize(Reader);
210 }
211 
212 template <typename T>
214  const serialize_numeric_impl<T> &Item) {
215  return Item.deserialize(Reader);
216 }
217 
218 template <typename T, typename U, typename... Args>
219 Error consume(BinaryStreamReader &Reader, T &&X, U &&Y, Args &&... Rest) {
220  if (auto EC = consume(Reader, X))
221  return EC;
222  return consume(Reader, Y, std::forward<Args>(Rest)...);
223 }
224 
225 }
226 }
227 
228 #endif
Error deserialize(BinaryStreamReader &Reader) const
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
Error consume_numeric(BinaryStreamReader &Reader, uint64_t &Value)
Decodes a numeric leaf value that is known to be a particular type.
This class represents lattice values for constants.
Definition: AllocatorList.h:24
Error deserialize(BinaryStreamReader &Reader) const
Error readObject(const T *&Dest)
Get a pointer to an object of type T from the underlying stream, as if by memcpy, and store the resul...
serialize_vector_tail_impl< T > serialize_array_tail(std::vector< T > &Item)
uint8_t peek() const
Examine the next byte of the underlying stream without advancing the stream&#39;s offset.
detail::packed_endian_specific_integral< uint16_t, little, unaligned > ulittle16_t
Definition: Endian.h:269
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
serialize_array_impl(ArrayRef< T > &Item, U Func)
Error readCString(StringRef &Dest)
Read a null terminated string from Dest.
#define T
serialize_null_term_string_array_impl serialize_null_term_string_array(std::vector< StringRef > &Item)
detail::packed_endian_specific_integral< uint32_t, little, unaligned > ulittle32_t
Definition: Endian.h:271
serialize_array_impl< T, U > serialize_array(ArrayRef< T > &Item, U Func)
Error deserialize(BinaryStreamReader &Reader) const
static ErrorSuccess success()
Create a success value.
Definition: Error.h:327
Error deserialize(BinaryStreamReader &Reader) const
serialize_null_term_string_array_impl(std::vector< StringRef > &Item)
StringRef getBytesAsCharacters(ArrayRef< uint8_t > LeafData)
Reinterpret a byte array as an array of characters.
StringRef getBytesAsCString(ArrayRef< uint8_t > LeafData)
detail::packed_endian_specific_integral< int32_t, little, unaligned > little32_t
Definition: Endian.h:278
Error skip(uint32_t Amount)
Advance the stream&#39;s offset by Amount bytes.
uint32_t bytesRemaining() const
serialize_numeric_impl< T > serialize_numeric(T &Item)
Error consume(BinaryStreamReader &Reader)
Error deserialize(BinaryStreamReader &Reader) const
LLVM Value Representation.
Definition: Value.h:73
Lightweight error class with error context and mandatory checking.
Definition: Error.h:158
Provides read only access to a subclass of BinaryStream.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
Error deserialize(BinaryStreamReader &Reader) const
serialize_conditional_impl< T, U > serialize_conditional(T &Item, U Func)
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
Error readArray(ArrayRef< T > &Array, uint32_t NumElements)
Get a reference to a NumElements element array of objects of type T from the underlying stream as if ...