LLVM 19.0.0git
DebugSymbolsSubsection.h
Go to the documentation of this file.
1//===- DebugSymbolsSubsection.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_DEBUGSYMBOLSSUBSECTION_H
10#define LLVM_DEBUGINFO_CODEVIEW_DEBUGSYMBOLSSUBSECTION_H
11
14#include "llvm/Support/Error.h"
15
16namespace llvm {
17namespace codeview {
19public:
22
23 static bool classof(const DebugSubsectionRef *S) {
25 }
26
28
29 CVSymbolArray::Iterator begin() const { return Records.begin(); }
30 CVSymbolArray::Iterator end() const { return Records.end(); }
31
32private:
33 CVSymbolArray Records;
34};
35
37public:
39 static bool classof(const DebugSubsection *S) {
41 }
42
43 uint32_t calculateSerializedSize() const override;
44 Error commit(BinaryStreamWriter &Writer) const override;
45
46 void addSymbol(CVSymbol Symbol);
47
48private:
49 uint32_t Length = 0;
50 std::vector<CVSymbol> Records;
51};
52}
53}
54
55#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
VarStreamArray represents an array of variable length records backed by a stream.
Iterator end() const
Iterator begin(bool *HadError=nullptr) const
CVRecord is a fat pointer (base + size pair) to a symbol or type record.
Definition: CVRecord.h:29
DebugSubsectionKind kind() const
DebugSubsectionKind kind() const
static bool classof(const DebugSubsectionRef *S)
Error initialize(BinaryStreamReader Reader)
Error commit(BinaryStreamWriter &Writer) const override
static bool classof(const DebugSubsection *S)
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18