LLVM 19.0.0git
SymbolRecordMapping.h
Go to the documentation of this file.
1//===- SymbolRecordMapping.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//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_DEBUGINFO_CODEVIEW_SYMBOLRECORDMAPPING_H
10#define LLVM_DEBUGINFO_CODEVIEW_SYMBOLRECORDMAPPING_H
11
14
15namespace llvm {
16class BinaryStreamReader;
17class BinaryStreamWriter;
18
19namespace codeview {
21public:
23 CodeViewContainer Container)
24 : IO(Reader), Container(Container) {}
26 CodeViewContainer Container)
27 : IO(Writer), Container(Container) {}
28
31
32#define SYMBOL_RECORD(EnumName, EnumVal, Name) \
33 Error visitKnownRecord(CVSymbol &CVR, Name &Record) override;
34#define SYMBOL_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName)
35#include "llvm/DebugInfo/CodeView/CodeViewSymbols.def"
36
37private:
38 std::optional<SymbolKind> Kind;
39
40 CodeViewRecordIO IO;
41 CodeViewContainer Container;
42};
43}
44}
45
46#endif
Provides read only access to a subclass of BinaryStream.
Provides write only access to a subclass of WritableBinaryStream.
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
CVRecord is a fat pointer (base + size pair) to a symbol or type record.
Definition: CVRecord.h:29
Error visitSymbolEnd(CVSymbol &Record) override
SymbolRecordMapping(BinaryStreamReader &Reader, CodeViewContainer Container)
SymbolRecordMapping(BinaryStreamWriter &Writer, CodeViewContainer Container)
Error visitSymbolBegin(CVSymbol &Record) override
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18