LLVM 19.0.0git
DebugSymbolRVASubsection.h
Go to the documentation of this file.
1//===- DebugSymbolRVASubsection.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_DEBUGSYMBOLRVASUBSECTION_H
10#define LLVM_DEBUGINFO_CODEVIEW_DEBUGSYMBOLRVASUBSECTION_H
11
15#include "llvm/Support/Endian.h"
16#include "llvm/Support/Error.h"
17#include <cstdint>
18#include <vector>
19
20namespace llvm {
21
22class BinaryStreamReader;
23
24namespace codeview {
25
27public:
29
31
32 static bool classof(const DebugSubsectionRef *S) {
34 }
35
36 ArrayType::Iterator begin() const { return RVAs.begin(); }
37 ArrayType::Iterator end() const { return RVAs.end(); }
38
40
41private:
42 ArrayType RVAs;
43};
44
46public:
48
49 static bool classof(const DebugSubsection *S) {
51 }
52
53 Error commit(BinaryStreamWriter &Writer) const override;
54 uint32_t calculateSerializedSize() const override;
55
56 void addRVA(uint32_t RVA) { RVAs.push_back(support::ulittle32_t(RVA)); }
57
58private:
59 std::vector<support::ulittle32_t> RVAs;
60};
61
62} // end namespace codeview
63
64} // end namespace llvm
65
66#endif // LLVM_DEBUGINFO_CODEVIEW_DEBUGSYMBOLRVASUBSECTION_H
Lightweight arrays that are backed by an arbitrary BinaryStream.
Class to represent array types.
Definition: DerivedTypes.h:371
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
FixedStreamArrayIterator< T > begin() const
FixedStreamArrayIterator< T > end() const
DebugSubsectionKind kind() const
DebugSubsectionKind kind() const
static bool classof(const DebugSubsectionRef *S)
static bool classof(const DebugSubsection *S)
Error commit(BinaryStreamWriter &Writer) const override
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18