LLVM 20.0.0git
GsymReader.h
Go to the documentation of this file.
1//===- GsymReader.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_GSYM_GSYMREADER_H
10#define LLVM_DEBUGINFO_GSYM_GSYMREADER_H
11
12#include "llvm/ADT/ArrayRef.h"
19#include "llvm/Support/Endian.h"
21#include <inttypes.h>
22#include <memory>
23#include <stdint.h>
24#include <vector>
25
26namespace llvm {
27class MemoryBuffer;
28class raw_ostream;
29
30namespace gsym {
31
32/// GsymReader is used to read GSYM data from a file or buffer.
33///
34/// This class is optimized for very quick lookups when the endianness matches
35/// the host system. The Header, address table, address info offsets, and file
36/// table is designed to be mmap'ed as read only into memory and used without
37/// any parsing needed. If the endianness doesn't match, we swap these objects
38/// and tables into GsymReader::SwappedData and then point our header and
39/// ArrayRefs to this swapped internal data.
40///
41/// GsymReader objects must use one of the static functions to create an
42/// instance: GsymReader::openFile(...) and GsymReader::copyBuffer(...).
43
45 GsymReader(std::unique_ptr<MemoryBuffer> Buffer);
47
48 std::unique_ptr<MemoryBuffer> MemBuffer;
49 StringRef GsymBytes;
50 llvm::endianness Endian;
51 const Header *Hdr = nullptr;
52 ArrayRef<uint8_t> AddrOffsets;
53 ArrayRef<uint32_t> AddrInfoOffsets;
55 StringTable StrTab;
56 /// When the GSYM file's endianness doesn't match the host system then
57 /// we must decode all data structures that need to be swapped into
58 /// local storage and set point the ArrayRef objects above to these swapped
59 /// copies.
60 struct SwappedData {
61 Header Hdr;
62 std::vector<uint8_t> AddrOffsets;
63 std::vector<uint32_t> AddrInfoOffsets;
64 std::vector<FileEntry> Files;
65 };
66 std::unique_ptr<SwappedData> Swap;
67
68public:
71
72 /// Construct a GsymReader from a file on disk.
73 ///
74 /// \param Path The file path the GSYM file to read.
75 /// \returns An expected GsymReader that contains the object or an error
76 /// object that indicates reason for failing to read the GSYM.
78
79 /// Construct a GsymReader from a buffer.
80 ///
81 /// \param Bytes A set of bytes that will be copied and owned by the
82 /// returned object on success.
83 /// \returns An expected GsymReader that contains the object or an error
84 /// object that indicates reason for failing to read the GSYM.
86
87 /// Access the GSYM header.
88 /// \returns A native endian version of the GSYM header.
89 const Header &getHeader() const;
90
91 /// Get the full function info for an address.
92 ///
93 /// This should be called when a client will store a copy of the complete
94 /// FunctionInfo for a given address. For one off lookups, use the lookup()
95 /// function below.
96 ///
97 /// Symbolication server processes might want to parse the entire function
98 /// info for a given address and cache it if the process stays around to
99 /// service many symbolication addresses, like for parsing profiling
100 /// information.
101 ///
102 /// \param Addr A virtual address from the orignal object file to lookup.
103 ///
104 /// \returns An expected FunctionInfo that contains the function info object
105 /// or an error object that indicates reason for failing to lookup the
106 /// address.
108
109 /// Get the full function info given an address index.
110 ///
111 /// \param AddrIdx A address index for an address in the address table.
112 ///
113 /// \returns An expected FunctionInfo that contains the function info object
114 /// or an error object that indicates reason for failing get the function
115 /// info object.
117
118 /// Lookup an address in the a GSYM.
119 ///
120 /// Lookup just the information needed for a specific address \a Addr. This
121 /// function is faster that calling getFunctionInfo() as it will only return
122 /// information that pertains to \a Addr and allows the parsing to skip any
123 /// extra information encoded for other addresses. For example the line table
124 /// parsing can stop when a matching LineEntry has been fouhnd, and the
125 /// InlineInfo can stop parsing early once a match has been found and also
126 /// skip information that doesn't match. This avoids memory allocations and
127 /// is much faster for lookups.
128 ///
129 /// \param Addr A virtual address from the orignal object file to lookup.
130 /// \returns An expected LookupResult that contains only the information
131 /// needed for the current address, or an error object that indicates reason
132 /// for failing to lookup the address.
134
135 /// Get a string from the string table.
136 ///
137 /// \param Offset The string table offset for the string to retrieve.
138 /// \returns The string from the strin table.
139 StringRef getString(uint32_t Offset) const { return StrTab[Offset]; }
140
141 /// Get the a file entry for the suppplied file index.
142 ///
143 /// Used to convert any file indexes in the FunctionInfo data back into
144 /// files. This function can be used for iteration, but is more commonly used
145 /// for random access when doing lookups.
146 ///
147 /// \param Index An index into the file table.
148 /// \returns An optional FileInfo that will be valid if the file index is
149 /// valid, or std::nullopt if the file index is out of bounds,
150 std::optional<FileEntry> getFile(uint32_t Index) const {
151 if (Index < Files.size())
152 return Files[Index];
153 return std::nullopt;
154 }
155
156 /// Dump the entire Gsym data contained in this object.
157 ///
158 /// \param OS The output stream to dump to.
159 void dump(raw_ostream &OS);
160
161 /// Dump a FunctionInfo object.
162 ///
163 /// This function will convert any string table indexes and file indexes
164 /// into human readable format.
165 ///
166 /// \param OS The output stream to dump to.
167 ///
168 /// \param FI The object to dump.
169 ///
170 /// \param Indent The indentation as number of spaces. Used when dumping as an
171 /// item within MergedFunctionsInfo.
172 void dump(raw_ostream &OS, const FunctionInfo &FI, uint32_t Indent = 0);
173
174 /// Dump a MergedFunctionsInfo object.
175 ///
176 /// This function will dump a MergedFunctionsInfo object - basically by
177 /// dumping the contained FunctionInfo objects with indentation.
178 ///
179 /// \param OS The output stream to dump to.
180 ///
181 /// \param MFI The object to dump.
182 void dump(raw_ostream &OS, const MergedFunctionsInfo &MFI);
183
184 /// Dump a LineTable object.
185 ///
186 /// This function will convert any string table indexes and file indexes
187 /// into human readable format.
188 ///
189 ///
190 /// \param OS The output stream to dump to.
191 ///
192 /// \param LT The object to dump.
193 ///
194 /// \param Indent The indentation as number of spaces. Used when dumping as an
195 /// item from within MergedFunctionsInfo.
196 void dump(raw_ostream &OS, const LineTable &LT, uint32_t Indent = 0);
197
198 /// Dump a InlineInfo object.
199 ///
200 /// This function will convert any string table indexes and file indexes
201 /// into human readable format.
202 ///
203 /// \param OS The output stream to dump to.
204 ///
205 /// \param II The object to dump.
206 ///
207 /// \param Indent The indentation as number of spaces. Used for recurive
208 /// dumping.
209 void dump(raw_ostream &OS, const InlineInfo &II, uint32_t Indent = 0);
210
211 /// Dump a FileEntry object.
212 ///
213 /// This function will convert any string table indexes into human readable
214 /// format.
215 ///
216 /// \param OS The output stream to dump to.
217 ///
218 /// \param FE The object to dump.
219 void dump(raw_ostream &OS, std::optional<FileEntry> FE);
220
221 /// Get the number of addresses in this Gsym file.
223 return Hdr->NumAddresses;
224 }
225
226 /// Gets an address from the address table.
227 ///
228 /// Addresses are stored as offsets frrom the gsym::Header::BaseAddress.
229 ///
230 /// \param Index A index into the address table.
231 /// \returns A resolved virtual address for adddress in the address table
232 /// or std::nullopt if Index is out of bounds.
233 std::optional<uint64_t> getAddress(size_t Index) const;
234
235protected:
236
237 /// Get an appropriate address info offsets array.
238 ///
239 /// The address table in the GSYM file is stored as array of 1, 2, 4 or 8
240 /// byte offsets from the The gsym::Header::BaseAddress. The table is stored
241 /// internally as a array of bytes that are in the correct endianness. When
242 /// we access this table we must get an array that matches those sizes. This
243 /// templatized helper function is used when accessing address offsets in the
244 /// AddrOffsets member variable.
245 ///
246 /// \returns An ArrayRef of an appropriate address offset size.
247 template <class T> ArrayRef<T>
249 return ArrayRef<T>(reinterpret_cast<const T *>(AddrOffsets.data()),
250 AddrOffsets.size()/sizeof(T));
251 }
252
253 /// Get an appropriate address from the address table.
254 ///
255 /// The address table in the GSYM file is stored as array of 1, 2, 4 or 8
256 /// byte address offsets from the The gsym::Header::BaseAddress. The table is
257 /// stored internally as a array of bytes that are in the correct endianness.
258 /// In order to extract an address from the address table we must access the
259 /// address offset using the correct size and then add it to the BaseAddress
260 /// in the header.
261 ///
262 /// \param Index An index into the AddrOffsets array.
263 /// \returns An virtual address that matches the original object file for the
264 /// address as the specified index, or std::nullopt if Index is out of bounds.
265 template <class T>
266 std::optional<uint64_t> addressForIndex(size_t Index) const {
267 ArrayRef<T> AIO = getAddrOffsets<T>();
268 if (Index < AIO.size())
269 return AIO[Index] + Hdr->BaseAddress;
270 return std::nullopt;
271 }
272 /// Lookup an address offset in the AddrOffsets table.
273 ///
274 /// Given an address offset, look it up using a binary search of the
275 /// AddrOffsets table.
276 ///
277 /// \param AddrOffset An address offset, that has already been computed by
278 /// subtracting the gsym::Header::BaseAddress.
279 /// \returns The matching address offset index. This index will be used to
280 /// extract the FunctionInfo data's offset from the AddrInfoOffsets array.
281 template <class T>
282 std::optional<uint64_t>
283 getAddressOffsetIndex(const uint64_t AddrOffset) const {
284 ArrayRef<T> AIO = getAddrOffsets<T>();
285 const auto Begin = AIO.begin();
286 const auto End = AIO.end();
287 auto Iter = std::lower_bound(Begin, End, AddrOffset);
288 // Watch for addresses that fall between the gsym::Header::BaseAddress and
289 // the first address offset.
290 if (Iter == Begin && AddrOffset < *Begin)
291 return std::nullopt;
292 if (Iter == End || AddrOffset < *Iter)
293 --Iter;
294
295 // GSYM files have sorted function infos with the most information (line
296 // table and/or inline info) first in the array of function infos, so
297 // always backup as much as possible as long as the address offset is the
298 // same as the previous entry.
299 while (Iter != Begin) {
300 auto Prev = Iter - 1;
301 if (*Prev == *Iter)
302 Iter = Prev;
303 else
304 break;
305 }
306
307 return std::distance(Begin, Iter);
308 }
309
310 /// Create a GSYM from a memory buffer.
311 ///
312 /// Called by both openFile() and copyBuffer(), this function does all of the
313 /// work of parsing the GSYM file and returning an error.
314 ///
315 /// \param MemBuffer A memory buffer that will transfer ownership into the
316 /// GsymReader.
317 /// \returns An expected GsymReader that contains the object or an error
318 /// object that indicates reason for failing to read the GSYM.
320 create(std::unique_ptr<MemoryBuffer> &MemBuffer);
321
322
323 /// Given an address, find the address index.
324 ///
325 /// Binary search the address table and find the matching address index.
326 ///
327 /// \param Addr A virtual address that matches the original object file
328 /// to lookup.
329 /// \returns An index into the address table. This index can be used to
330 /// extract the FunctionInfo data's offset from the AddrInfoOffsets array.
331 /// Returns an error if the address isn't in the GSYM with details of why.
333
334 /// Given an address index, get the offset for the FunctionInfo.
335 ///
336 /// Looking up an address is done by finding the corresponding address
337 /// index for the address. This index is then used to get the offset of the
338 /// FunctionInfo data that we will decode using this function.
339 ///
340 /// \param Index An index into the address table.
341 /// \returns An optional GSYM data offset for the offset of the FunctionInfo
342 /// that needs to be decoded.
343 std::optional<uint64_t> getAddressInfoOffset(size_t Index) const;
344
345 /// Given an address, find the correct function info data and function
346 /// address.
347 ///
348 /// Binary search the address table and find the matching address info
349 /// and make sure that the function info contains the address. GSYM allows
350 /// functions to overlap, and the most debug info is contained in the first
351 /// entries due to the sorting when GSYM files are created. We can have
352 /// multiple function info that start at the same address only if their
353 /// address range doesn't match. So find the first entry that matches \a Addr
354 /// and iterate forward until we find one that contains the address.
355 ///
356 /// \param[in] Addr A virtual address that matches the original object file
357 /// to lookup.
358 ///
359 /// \param[out] FuncStartAddr A virtual address that is the base address of
360 /// the function that is used for decoding the FunctionInfo.
361 ///
362 /// \returns An valid data extractor on success, or an error if we fail to
363 /// find the address in a function info or corrrectly decode the data
366
367 /// Get the function data and address given an address index.
368 ///
369 /// \param AddrIdx A address index from the address table.
370 ///
371 /// \returns An expected FunctionInfo that contains the function info object
372 /// or an error object that indicates reason for failing to lookup the
373 /// address.
375 getFunctionInfoDataAtIndex(uint64_t AddrIdx, uint64_t &FuncStartAddr) const;
376};
377
378} // namespace gsym
379} // namespace llvm
380
381#endif // LLVM_DEBUGINFO_GSYM_GSYMREADER_H
uint64_t Addr
bool End
Definition: ELF_riscv.cpp:480
Provides ErrorOr<T> smart pointer.
uint64_t IntrinsicInst * II
raw_pwrite_stream & OS
Value * RHS
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
iterator end() const
Definition: ArrayRef.h:154
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:165
iterator begin() const
Definition: ArrayRef.h:153
const T * data() const
Definition: ArrayRef.h:162
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
Tagged union holding either a T or a Error.
Definition: Error.h:481
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
GsymReader is used to read GSYM data from a file or buffer.
Definition: GsymReader.h:44
std::optional< FileEntry > getFile(uint32_t Index) const
Get the a file entry for the suppplied file index.
Definition: GsymReader.h:150
void dump(raw_ostream &OS)
Dump the entire Gsym data contained in this object.
Definition: GsymReader.cpp:346
uint32_t getNumAddresses() const
Get the number of addresses in this Gsym file.
Definition: GsymReader.h:222
static llvm::Expected< GsymReader > openFile(StringRef Path)
Construct a GsymReader from a file on disk.
Definition: GsymReader.cpp:33
std::optional< uint64_t > getAddress(size_t Index) const
Gets an address from the address table.
Definition: GsymReader.cpp:208
std::optional< uint64_t > getAddressInfoOffset(size_t Index) const
Given an address index, get the offset for the FunctionInfo.
Definition: GsymReader.cpp:218
ArrayRef< T > getAddrOffsets() const
Get an appropriate address info offsets array.
Definition: GsymReader.h:248
StringRef getString(uint32_t Offset) const
Get a string from the string table.
Definition: GsymReader.h:139
llvm::Expected< FunctionInfo > getFunctionInfo(uint64_t Addr) const
Get the full function info for an address.
Definition: GsymReader.cpp:321
const Header & getHeader() const
Access the GSYM header.
Definition: GsymReader.cpp:200
std::optional< uint64_t > addressForIndex(size_t Index) const
Get an appropriate address from the address table.
Definition: GsymReader.h:266
llvm::Expected< llvm::DataExtractor > getFunctionInfoDataAtIndex(uint64_t AddrIdx, uint64_t &FuncStartAddr) const
Get the function data and address given an address index.
Definition: GsymReader.cpp:300
Expected< uint64_t > getAddressIndex(const uint64_t Addr) const
Given an address, find the address index.
Definition: GsymReader.cpp:226
llvm::Expected< LookupResult > lookup(uint64_t Addr) const
Lookup an address in the a GSYM.
Definition: GsymReader.cpp:338
GsymReader(GsymReader &&RHS)
static llvm::Expected< GsymReader > copyBuffer(StringRef Bytes)
Construct a GsymReader from a buffer.
Definition: GsymReader.cpp:43
static llvm::Expected< llvm::gsym::GsymReader > create(std::unique_ptr< MemoryBuffer > &MemBuffer)
Create a GSYM from a memory buffer.
Definition: GsymReader.cpp:49
llvm::Expected< FunctionInfo > getFunctionInfoAtIndex(uint64_t AddrIdx) const
Get the full function info given an address index.
Definition: GsymReader.cpp:330
llvm::Expected< llvm::DataExtractor > getFunctionInfoDataForAddress(uint64_t Addr, uint64_t &FuncStartAddr) const
Given an address, find the correct function info data and function address.
Definition: GsymReader.cpp:257
std::optional< uint64_t > getAddressOffsetIndex(const uint64_t AddrOffset) const
Lookup an address offset in the AddrOffsets table.
Definition: GsymReader.h:283
LineTable class contains deserialized versions of line tables for each function's address ranges.
Definition: LineTable.h:118
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:480
endianness
Definition: bit.h:70
Function information in GSYM files encodes information for one contiguous address range.
Definition: FunctionInfo.h:89
The GSYM header.
Definition: Header.h:45
uint32_t NumAddresses
The number of addresses stored in the address offsets table.
Definition: Header.h:64
uint64_t BaseAddress
The 64 bit base address that all address offsets in the address offsets table are relative to.
Definition: Header.h:62
Inline information stores the name of the inline function along with an array of address ranges.
Definition: InlineInfo.h:59
String tables in GSYM files are required to start with an empty string at offset zero.
Definition: StringTable.h:21
Definition: regcomp.c:192