LLVM 19.0.0git
DebugInlineeLinesSubsection.h
Go to the documentation of this file.
1//===- DebugInlineeLinesSubsection.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_DEBUGINLINEELINESSUBSECTION_H
10#define LLVM_DEBUGINFO_CODEVIEW_DEBUGINLINEELINESSUBSECTION_H
11
12#include "llvm/ADT/StringRef.h"
19#include "llvm/Support/Endian.h"
20#include "llvm/Support/Error.h"
21#include <cstdint>
22#include <vector>
23
24namespace llvm {
25
26namespace codeview {
27
28class DebugChecksumsSubsection;
29
31 Normal, // CV_INLINEE_SOURCE_LINE_SIGNATURE
32 ExtraFiles // CV_INLINEE_SOURCE_LINE_SIGNATURE_EX
33};
34
36 TypeIndex Inlinee; // ID of the function that was inlined.
37 support::ulittle32_t FileID; // Offset into FileChecksums subsection.
38 support::ulittle32_t SourceLineNum; // First line of inlined code.
39 // If extra files present:
40 // ulittle32_t ExtraFileCount;
41 // ulittle32_t Files[];
42};
43
47};
48
49} // end namespace codeview
50
51template <> struct VarStreamArrayExtractor<codeview::InlineeSourceLine> {
54
55 bool HasExtraFiles = false;
56};
57
58namespace codeview {
59
63
64public:
66
67 static bool classof(const DebugSubsectionRef *S) {
69 }
70
73 return initialize(BinaryStreamReader(Section));
74 }
75
76 bool valid() const { return Lines.valid(); }
77 bool hasExtraFiles() const;
78
79 Iterator begin() const { return Lines.begin(); }
80 Iterator end() const { return Lines.end(); }
81
82private:
83 InlineeLinesSignature Signature;
84 LinesArray Lines;
85};
86
88public:
89 struct Entry {
90 std::vector<support::ulittle32_t> ExtraFiles;
92 };
93
95 bool HasExtraFiles = false);
96
97 static bool classof(const DebugSubsection *S) {
99 }
100
101 Error commit(BinaryStreamWriter &Writer) const override;
102 uint32_t calculateSerializedSize() const override;
103
104 void addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine);
105 void addExtraFile(StringRef FileName);
106
107 bool hasExtraFiles() const { return HasExtraFiles; }
108 void setHasExtraFiles(bool Has) { HasExtraFiles = Has; }
109
110 std::vector<Entry>::const_iterator begin() const { return Entries.begin(); }
111 std::vector<Entry>::const_iterator end() const { return Entries.end(); }
112
113private:
114 DebugChecksumsSubsection &Checksums;
115 bool HasExtraFiles = false;
116 uint32_t ExtraFileCount = 0;
117 std::vector<Entry> Entries;
118};
119
120} // end namespace codeview
121
122} // end namespace llvm
123
124#endif // LLVM_DEBUGINFO_CODEVIEW_DEBUGINLINEELINESSUBSECTION_H
Lightweight arrays that are backed by an arbitrary BinaryStream.
Profile::FuncID FuncId
Definition: Profile.cpp:321
Provides read only access to a subclass of BinaryStream.
BinaryStreamRef is to BinaryStream what ArrayRef is to an Array.
Provides write only access to a subclass of WritableBinaryStream.
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
FixedStreamArray is similar to VarStreamArray, except with each record having a fixed-length.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
VarStreamArray represents an array of variable length records backed by a stream.
Iterator end() const
VarStreamArrayIterator< InlineeSourceLine, VarStreamArrayExtractor< InlineeSourceLine > > Iterator
Iterator begin(bool *HadError=nullptr) const
static bool classof(const DebugSubsectionRef *S)
void addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine)
std::vector< Entry >::const_iterator begin() const
std::vector< Entry >::const_iterator end() const
Error commit(BinaryStreamWriter &Writer) const override
static bool classof(const DebugSubsection *S)
DebugSubsectionKind kind() const
DebugSubsectionKind kind() const
A 32-bit type reference.
Definition: TypeIndex.h:96
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Error operator()(BinaryStreamRef Stream, uint32_t &Len, codeview::InlineeSourceLine &Item)
VarStreamArrayExtractor is intended to be specialized to provide customized extraction logic.
FixedStreamArray< support::ulittle32_t > ExtraFiles
const InlineeSourceLineHeader * Header