LLVM 24.0.0git
GsymCreator.cpp
Go to the documentation of this file.
1//===- GsymCreator.cpp ----------------------------------------------------===//
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
16
17#include <algorithm>
18#include <cassert>
19#include <functional>
20#include <vector>
21
22using namespace llvm;
23using namespace gsym;
24
25// Keep this matching cheap: Itanium and Swift both encode identifiers as
26// <length><identifier> in the raw mangled name. Look for that token instead of
27// demangling during finalize().
29 return Name.starts_with("_Z") || Name.starts_with("$s") ||
30 Name.starts_with("$S");
31}
32
33static bool shouldReplaceWithMangledName(StringRef AlternateName,
34 StringRef CurrentName) {
35 // Any name is better than no name.
36 if (CurrentName.empty() && !AlternateName.empty())
37 return true;
38
39 // Keep the current name if it's already mangled, or if the alternate name
40 // is not a supported mangled name.
41 if (isSupportedMangledPrefix(CurrentName) ||
42 !isSupportedMangledPrefix(AlternateName))
43 return false;
44
45 // Confirm the alternate mangled name actually contains the current name as
46 // an Itanium/Swift identifier token (<length><identifier>).
47 SmallString<64> LengthAndName;
48 raw_svector_ostream OS(LengthAndName);
49 OS << CurrentName.size() << CurrentName;
50 return AlternateName.contains(StringRef(LengthAndName));
51}
52
56
58 llvm::StringRef directory = llvm::sys::path::parent_path(Path, Style);
59 llvm::StringRef filename = llvm::sys::path::filename(Path, Style);
60 // We must insert the strings first, then call the FileEntry constructor.
61 // If we inline the insertString() function call into the constructor, the
62 // call order is undefined due to parameter lists not having any ordering
63 // requirements.
64 const gsym_strp_t Dir = insertString(directory);
65 const gsym_strp_t Base = insertString(filename);
66 return insertFileEntry(FileEntry(Dir, Base));
67}
68
70 std::lock_guard<std::mutex> Guard(Mutex);
71 const auto NextIndex = Files.size();
72 // Find FE in hash map and insert if not present.
73 auto R = FileEntryToIndex.insert(std::make_pair(FE, NextIndex));
74 if (R.second)
75 Files.emplace_back(FE);
76 return R.first->second;
77}
78
80 // File index zero is reserved for a FileEntry with no directory and no
81 // filename. Any other file and we need to copy the strings for the directory
82 // and filename.
83 if (FileIdx == 0)
84 return 0;
85 const FileEntry SrcFE = SrcGC.Files[FileIdx];
86 // Copy the strings for the file and then add the newly converted file entry.
87 gsym_strp_t Dir =
88 SrcFE.Dir == 0
89 ? 0
90 : StrTab.add(SrcGC.StringOffsetMap.find(SrcFE.Dir)->second);
91 gsym_strp_t Base = StrTab.add(SrcGC.StringOffsetMap.find(SrcFE.Base)->second);
92 FileEntry DstFE(Dir, Base);
93 return insertFileEntry(DstFE);
94}
95
97 std::optional<uint64_t> SegmentSize) const {
98 if (SegmentSize)
99 return saveSegments(Path, ByteOrder, *SegmentSize);
100 std::error_code EC;
101 raw_fd_ostream OutStrm(Path, EC);
102 if (EC)
103 return llvm::errorCodeToError(EC);
104 FileWriter O(OutStrm, ByteOrder);
105 O.setStringOffsetSize(getStringOffsetSize());
106 return encode(O);
107}
108
110 // Use the loader to load call site information from the YAML file.
111 CallSiteInfoLoader Loader(*this, Funcs);
112 return Loader.loadYAML(YAMLFile);
113}
114
116 // Nothing to do if we have less than 2 functions.
117 if (Funcs.size() < 2)
118 return;
119
120 // Sort the function infos by address range first, preserving input order
122 std::vector<FunctionInfo> TopLevelFuncs;
123
124 // Add the first function info to the top level functions
125 TopLevelFuncs.emplace_back(std::move(Funcs.front()));
126
127 // Now if the next function info has the same address range as the top level,
128 // then merge it into the top level function, otherwise add it to the top
129 // level.
130 for (size_t Idx = 1; Idx < Funcs.size(); ++Idx) {
131 FunctionInfo &TopFunc = TopLevelFuncs.back();
132 FunctionInfo &MatchFunc = Funcs[Idx];
133 if (TopFunc.Range == MatchFunc.Range) {
134 // Both have the same range - add the 2nd func as a child of the 1st func
135 if (!TopFunc.MergedFunctions)
137 // Avoid adding duplicate functions to MergedFunctions. Since functions
138 // are already ordered within the Funcs array, we can just check equality
139 // against the last function in the merged array.
140 else if (TopFunc.MergedFunctions->MergedFunctions.back() == MatchFunc)
141 continue;
142 TopFunc.MergedFunctions->MergedFunctions.emplace_back(
143 std::move(MatchFunc));
144 } else
145 // No match, add the function as a top-level function
146 TopLevelFuncs.emplace_back(std::move(MatchFunc));
147 }
148
149 uint32_t mergedCount = Funcs.size() - TopLevelFuncs.size();
150 // If any functions were merged, print a message about it.
151 if (mergedCount != 0)
152 Out << "Have " << mergedCount
153 << " merged functions as children of other functions\n";
154
155 std::swap(Funcs, TopLevelFuncs);
156}
157
159 std::lock_guard<std::mutex> Guard(Mutex);
160 if (Finalized)
161 return createStringError(std::errc::invalid_argument, "already finalized");
162 Finalized = true;
163
164 // Don't let the string table indexes change by finalizing in order.
165 StrTab.finalizeInOrder();
166
167 // Remove duplicates function infos that have both entries from debug info
168 // (DWARF or Breakpad) and entries from the SymbolTable.
169 //
170 // Also handle overlapping function. Usually there shouldn't be any, but they
171 // can and do happen in some rare cases.
172 //
173 // (a) (b) (c)
174 // ^ ^ ^ ^
175 // |X |Y |X ^ |X
176 // | | | |Y | ^
177 // | | | v v |Y
178 // v v v v
179 //
180 // In (a) and (b), Y is ignored and X will be reported for the full range.
181 // In (c), both functions will be included in the result and lookups for an
182 // address in the intersection will return Y because of binary search.
183 //
184 // Note that in case of (b), we cannot include Y in the result because then
185 // we wouldn't find any function for range (end of Y, end of X)
186 // with binary search
187
188 const auto NumBefore = Funcs.size();
189 // Only sort and unique if this isn't a segment. If this is a segment we
190 // already finalized the main GsymCreator with all of the function infos
191 // and then the already sorted and uniqued function infos were added to this
192 // object.
193 if (!IsSegment) {
194 if (NumBefore > 1) {
195 // Sort function infos so we can emit sorted functions. Use stable sort to
196 // ensure determinism.
198 std::vector<FunctionInfo> FinalizedFuncs;
199 FinalizedFuncs.reserve(Funcs.size());
200 FinalizedFuncs.emplace_back(std::move(Funcs.front()));
201 for (size_t Idx=1; Idx < NumBefore; ++Idx) {
202 FunctionInfo &Prev = FinalizedFuncs.back();
203 FunctionInfo &Curr = Funcs[Idx];
204 // Empty ranges won't intersect, but we still need to
205 // catch the case where we have multiple symbols at the
206 // same address and coalesce them.
207 const bool ranges_equal = Prev.Range == Curr.Range;
208 if (ranges_equal || Prev.Range.intersects(Curr.Range)) {
209 // Overlapping ranges or empty identical ranges.
210 if (ranges_equal) {
211 // Same address range. The sort orders entries with more debug info
212 // last, so when exactly one entry has rich info, Prev is the
213 // non-rich (typically symbol-table) entry and Curr is the rich
214 // (typically DWARF) one. DWARF often truncates a function's
215 // linkage name to its short form, so before dropping the non-rich
216 // entry check whether its name is a more complete mangled
217 // (Itanium or Swift) form of the rich entry's name and, if so,
218 // copy it onto the rich entry. This lets downstream tools
219 // demangle the full signature.
220 const bool PrevRich = Prev.hasRichInfo();
221 const bool CurrRich = Curr.hasRichInfo();
222 if (PrevRich != CurrRich) {
224 getString(Curr.Name)))
225 Curr.Name = Prev.Name;
226 std::swap(Prev, Curr);
227 } else if (Prev != Curr) {
228 if (PrevRich)
229 Out.Report(
230 "Duplicate address ranges with different debug info.",
231 [&](raw_ostream &OS) {
232 OS << "warning: same address range contains "
233 "different debug "
234 << "info. Removing:\n"
235 << Prev << "\nIn favor of this one:\n"
236 << Curr << "\n";
237 });
238 std::swap(Prev, Curr);
239 }
240 } else {
241 Out.Report("Overlapping function ranges", [&](raw_ostream &OS) {
242 // print warnings about overlaps
243 OS << "warning: function ranges overlap:\n"
244 << Prev << "\n"
245 << Curr << "\n";
246 });
247 FinalizedFuncs.emplace_back(std::move(Curr));
248 }
249 } else {
250 if (Prev.Range.size() == 0 && Curr.Range.contains(Prev.Range.start())) {
251 // Symbols on macOS don't have address ranges, so if the range
252 // doesn't match and the size is zero, then we replace the empty
253 // symbol function info with the current one.
254 std::swap(Prev, Curr);
255 } else {
256 FinalizedFuncs.emplace_back(std::move(Curr));
257 }
258 }
259 }
260 std::swap(Funcs, FinalizedFuncs);
261 }
262 // If our last function info entry doesn't have a size and if we have valid
263 // text ranges, we should set the size of the last entry since any search for
264 // a high address might match our last entry. By fixing up this size, we can
265 // help ensure we don't cause lookups to always return the last symbol that
266 // has no size when doing lookups.
267 if (!Funcs.empty() && Funcs.back().Range.size() == 0 && ValidTextRanges) {
268 if (auto Range =
269 ValidTextRanges->getRangeThatContains(Funcs.back().Range.start())) {
270 Funcs.back().Range = {Funcs.back().Range.start(), Range->end()};
271 }
272 }
273 Out << "Pruned " << NumBefore - Funcs.size() << " functions, ended with "
274 << Funcs.size() << " total\n";
275 }
276 return Error::success();
277}
278
280 gsym_strp_t StrOff) {
281 // String offset at zero is always the empty string, no copying needed.
282 if (StrOff == 0)
283 return 0;
284 return StrTab.add(SrcGC.StringOffsetMap.find(StrOff)->second);
285}
286
288 if (S.empty())
289 return 0;
290
291 // The hash can be calculated outside the lock.
292 CachedHashStringRef CHStr(S);
293 std::lock_guard<std::mutex> Guard(Mutex);
294 if (Copy) {
295 // We need to provide backing storage for the string if requested
296 // since StringTableBuilder stores references to strings. Any string
297 // that comes from a section in an object file doesn't need to be
298 // copied, but any string created by code will need to be copied.
299 // This allows GsymCreator to be really fast when parsing DWARF and
300 // other object files as most strings don't need to be copied.
301 if (!StrTab.contains(CHStr))
302 CHStr = CachedHashStringRef{StringStorage.insert(S).first->getKey(),
303 CHStr.hash()};
304 }
305 const gsym_strp_t StrOff = StrTab.add(CHStr);
306 // Save a mapping of string offsets to the cached string reference in case
307 // we need to segment the GSYM file and copy string from one string table to
308 // another.
309 StringOffsetMap.try_emplace(StrOff, CHStr);
310 return StrOff;
311}
312
314 auto I = StringOffsetMap.find(Offset);
315 assert(I != StringOffsetMap.end() &&
316 "GsymCreator::getString expects a valid offset as parameter.");
317 return I->second.val();
318}
319
321 std::lock_guard<std::mutex> Guard(Mutex);
322 Funcs.emplace_back(std::move(FI));
323}
324
326 std::function<bool(FunctionInfo &)> const &Callback) {
327 std::lock_guard<std::mutex> Guard(Mutex);
328 for (auto &FI : Funcs) {
329 if (!Callback(FI))
330 break;
331 }
332}
333
335 std::function<bool(const FunctionInfo &)> const &Callback) const {
336 std::lock_guard<std::mutex> Guard(Mutex);
337 for (const auto &FI : Funcs) {
338 if (!Callback(FI))
339 break;
340 }
341}
342
344 std::lock_guard<std::mutex> Guard(Mutex);
345 return Funcs.size();
346}
347
348bool GsymCreator::IsValidTextAddress(uint64_t Addr) const {
349 if (ValidTextRanges)
350 return ValidTextRanges->contains(Addr);
351 return true; // No valid text ranges has been set, so accept all ranges.
352}
353
354std::optional<uint64_t> GsymCreator::getFirstFunctionAddress() const {
355 // If we have finalized then Funcs are sorted. If we are a segment then
356 // Funcs will be sorted as well since function infos get added from an
357 // already finalized GsymCreator object where its functions were sorted and
358 // uniqued.
359 if ((Finalized || IsSegment) && !Funcs.empty())
360 return std::optional<uint64_t>(Funcs.front().startAddress());
361 return std::nullopt;
362}
363
364std::optional<uint64_t> GsymCreator::getLastFunctionAddress() const {
365 // If we have finalized then Funcs are sorted. If we are a segment then
366 // Funcs will be sorted as well since function infos get added from an
367 // already finalized GsymCreator object where its functions were sorted and
368 // uniqued.
369 if ((Finalized || IsSegment) && !Funcs.empty())
370 return std::optional<uint64_t>(Funcs.back().startAddress());
371 return std::nullopt;
372}
373
374std::optional<uint64_t> GsymCreator::getBaseAddress() const {
375 if (BaseAddress)
376 return BaseAddress;
378}
379
381 switch (getAddressOffsetSize()) {
382 case 1: return UINT8_MAX;
383 case 2: return UINT16_MAX;
384 case 4: return UINT32_MAX;
385 case 8: return UINT64_MAX;
386 }
387 llvm_unreachable("invalid address offset");
388}
389
391 const std::optional<uint64_t> BaseAddress = getBaseAddress();
392 const std::optional<uint64_t> LastFuncAddr = getLastFunctionAddress();
393 if (BaseAddress && LastFuncAddr) {
394 const uint64_t AddrDelta = *LastFuncAddr - *BaseAddress;
395 if (AddrDelta <= UINT8_MAX)
396 return 1;
397 else if (AddrDelta <= UINT16_MAX)
398 return 2;
399 else if (AddrDelta <= UINT32_MAX)
400 return 4;
401 return 8;
402 }
403 return 1;
404}
405
407GsymCreator::validateForEncoding(std::optional<uint64_t> &BaseAddr) const {
408 if (Funcs.empty())
409 return createStringError(std::errc::invalid_argument,
410 "no functions to encode");
411 if (!Finalized)
412 return createStringError(std::errc::invalid_argument,
413 "GsymCreator wasn't finalized prior to encoding");
414 if (Funcs.size() > UINT32_MAX)
415 return createStringError(std::errc::invalid_argument,
416 "too many FunctionInfos");
417 BaseAddr = getBaseAddress();
418 if (!BaseAddr)
419 return createStringError(std::errc::invalid_argument,
420 "invalid base address");
421 return Error::success();
422}
423
425 uint64_t BaseAddr) const {
426 const uint64_t MaxAddressOffset = getMaxAddressOffset();
427 O.alignTo(AddrOffSize);
428 for (const auto &FI : Funcs) {
429 uint64_t AddrOffset = FI.startAddress() - BaseAddr;
430 // Make sure we calculated the address offsets byte size correctly by
431 // verifying the current address offset is within ranges. We have seen bugs
432 // introduced when the code changes that can cause problems here so it is
433 // good to catch this during testing.
434 assert(AddrOffset <= MaxAddressOffset);
435 (void)MaxAddressOffset;
436 switch (AddrOffSize) {
437 case 1:
438 O.writeU8(static_cast<uint8_t>(AddrOffset));
439 break;
440 case 2:
441 O.writeU16(static_cast<uint16_t>(AddrOffset));
442 break;
443 case 4:
444 O.writeU32(static_cast<uint32_t>(AddrOffset));
445 break;
446 case 8:
447 O.writeU64(AddrOffset);
448 break;
449 default:
450 llvm_unreachable("unsupported address offset size");
451 }
452 }
453}
454
456 assert(!Files.empty());
457 assert(Files[0].Dir == 0);
458 assert(Files[0].Base == 0);
459 if (Files.size() > UINT32_MAX)
460 return createStringError(std::errc::invalid_argument, "too many files");
461 O.writeU32(static_cast<uint32_t>(Files.size()));
462 for (const auto &File : Files) {
463 O.writeStringOffset(File.Dir);
464 O.writeStringOffset(File.Base);
465 }
466 return Error::success();
467}
468
469// This function takes a InlineInfo class that was copy constructed from an
470// InlineInfo from the \a SrcGC and updates all members that point to strings
471// and files to point to strings and files from this GsymCreator.
473 II.Name = copyString(SrcGC, II.Name);
474 II.CallFile = copyFile(SrcGC, II.CallFile);
475 for (auto &ChildII: II.Children)
476 fixupInlineInfo(SrcGC, ChildII);
477}
478
479uint64_t GsymCreator::copyFunctionInfo(const GsymCreator &SrcGC, size_t FuncIdx) {
480 // To copy a function info we need to copy any files and strings over into
481 // this GsymCreator and then copy the function info and update the string
482 // table offsets to match the new offsets.
483 const FunctionInfo &SrcFI = SrcGC.Funcs[FuncIdx];
484
485 FunctionInfo DstFI;
486 DstFI.Range = SrcFI.Range;
487 DstFI.Name = copyString(SrcGC, SrcFI.Name);
488 // Copy the line table if there is one.
489 if (SrcFI.OptLineTable) {
490 // Copy the entire line table.
491 DstFI.OptLineTable = LineTable(SrcFI.OptLineTable.value());
492 // Fixup all LineEntry::File entries which are indexes in the the file table
493 // from SrcGC and must be converted to file indexes from this GsymCreator.
494 LineTable &DstLT = DstFI.OptLineTable.value();
495 const size_t NumLines = DstLT.size();
496 for (size_t I=0; I<NumLines; ++I) {
497 LineEntry &LE = DstLT.get(I);
498 LE.File = copyFile(SrcGC, LE.File);
499 }
500 }
501 // Copy the inline information if needed.
502 if (SrcFI.Inline) {
503 // Make a copy of the source inline information.
504 DstFI.Inline = SrcFI.Inline.value();
505 // Fixup all strings and files in the copied inline information.
506 fixupInlineInfo(SrcGC, *DstFI.Inline);
507 }
508 std::lock_guard<std::mutex> Guard(Mutex);
509 Funcs.emplace_back(DstFI);
510 return Funcs.back().cacheEncoding(*this);
511}
512
514 llvm::endianness ByteOrder,
515 uint64_t SegmentSize) const {
516 if (SegmentSize == 0)
517 return createStringError(std::errc::invalid_argument,
518 "invalid segment size zero");
519
520 size_t FuncIdx = 0;
521 const size_t NumFuncs = Funcs.size();
522 while (FuncIdx < NumFuncs) {
524 createSegment(SegmentSize, FuncIdx);
525 if (ExpectedGC) {
526 GsymCreator *GC = ExpectedGC->get();
527 if (!GC)
528 break; // We had not more functions to encode.
529 // Don't collect any messages at all
530 OutputAggregator Out(nullptr);
531 llvm::Error Err = GC->finalize(Out);
532 if (Err)
533 return Err;
534 std::string SegmentedGsymPath;
535 raw_string_ostream SGP(SegmentedGsymPath);
536 std::optional<uint64_t> FirstFuncAddr = GC->getFirstFunctionAddress();
537 if (FirstFuncAddr) {
538 SGP << Path << "-" << llvm::format_hex(*FirstFuncAddr, 1);
539 Err = GC->save(SegmentedGsymPath, ByteOrder, std::nullopt);
540 if (Err)
541 return Err;
542 }
543 } else {
544 return ExpectedGC.takeError();
545 }
546 }
547 return Error::success();
548}
549
551GsymCreator::createSegment(uint64_t SegmentSize, size_t &FuncIdx) const {
552 // No function entries, return empty unique pointer
553 if (FuncIdx >= Funcs.size())
554 return std::unique_ptr<GsymCreator>();
555
556 std::unique_ptr<GsymCreator> GC = createNew();
557
558 // Tell the creator that this is a segment.
559 GC->setIsSegment();
560
561 // Set the base address if there is one.
562 if (BaseAddress)
563 GC->setBaseAddress(*BaseAddress);
564 // Copy the UUID value from this object into the new creator.
565 GC->setUUID(UUID);
566 const size_t NumFuncs = Funcs.size();
567 // Track how big the function infos are for the current segment so we can
568 // emit segments that are close to the requested size. It is quick math to
569 // determine the current header and tables sizes, so we can do that each loop.
570 uint64_t SegmentFuncInfosSize = 0;
571 for (; FuncIdx < NumFuncs; ++FuncIdx) {
572 const uint64_t HeaderAndTableSize = GC->calculateHeaderAndTableSize();
573 if (HeaderAndTableSize + SegmentFuncInfosSize >= SegmentSize) {
574 if (SegmentFuncInfosSize == 0)
575 return createStringError(std::errc::invalid_argument,
576 "a segment size of %" PRIu64 " is to small to "
577 "fit any function infos, specify a larger value",
578 SegmentSize);
579
580 break;
581 }
582 SegmentFuncInfosSize += alignTo(GC->copyFunctionInfo(*this, FuncIdx), 4);
583 }
584 return std::move(GC);
585}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
@ MergedFunctionsInfo
static bool shouldReplaceWithMangledName(StringRef AlternateName, StringRef CurrentName)
static bool isSupportedMangledPrefix(StringRef Name)
#define I(x, y, z)
Definition MD5.cpp:57
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
This file defines the SmallString class.
uint64_t start() const
bool intersects(const AddressRange &R) const
bool contains(uint64_t Addr) const
uint64_t size() const
A container which contains a StringRef plus a precomputed hash.
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
Error takeError()
Take ownership of the stored error.
Definition Error.h:612
reference get()
Returns a reference to the stored T value.
Definition Error.h:582
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
Definition StringRef.h:446
Utility for building string tables with deduplicated suffixes.
LLVM_ABI llvm::Error loadYAML(StringRef YAMLFile)
This method reads the specified YAML file, parses its content, and updates the Funcs vector with call...
A simplified binary data writer class that doesn't require targets, target definitions,...
Definition FileWriter.h:30
LLVM_ABI void addFunctionInfo(FunctionInfo &&FI)
Add a function info to this GSYM creator.
LLVM_ABI void fixupInlineInfo(const GsymCreator &SrcGC, InlineInfo &II)
Fixup any string and file references by updating any file indexes and strings offsets in the InlineIn...
std::vector< llvm::gsym::FileEntry > Files
LLVM_ABI uint64_t copyFunctionInfo(const GsymCreator &SrcGC, size_t FuncInfoIdx)
Copy a FunctionInfo from the SrcGC GSYM creator into this creator.
LLVM_ABI llvm::Error saveSegments(StringRef Path, llvm::endianness ByteOrder, uint64_t SegmentSize) const
Save this GSYM file into segments that are roughly SegmentSize in size.
LLVM_ABI llvm::Error validateForEncoding(std::optional< uint64_t > &BaseAddr) const
Validate that the creator is ready for encoding.
LLVM_ABI gsym_strp_t copyString(const GsymCreator &SrcGC, gsym_strp_t StrOff)
Copy a string from SrcGC into this object.
std::optional< uint64_t > BaseAddress
LLVM_ABI llvm::Error encodeFileTable(FileWriter &O) const
Write the file table to the output stream.
LLVM_ABI gsym_strp_t insertString(StringRef S, bool Copy=true)
Insert a string into the GSYM string table.
LLVM_ABI llvm::Expected< std::unique_ptr< GsymCreator > > createSegment(uint64_t SegmentSize, size_t &FuncIdx) const
Create a segmented GSYM creator starting with function info index FuncIdx.
LLVM_ABI llvm::Error save(StringRef Path, llvm::endianness ByteOrder, std::optional< uint64_t > SegmentSize=std::nullopt) const
Save a GSYM file to a stand alone file.
LLVM_ABI StringRef getString(gsym_strp_t Offset)
Retrieve a string from the GSYM string table given its offset.
StringTableBuilder StrTab
LLVM_ABI void prepareMergedFunctions(OutputAggregator &Out)
Organize merged FunctionInfo's.
DenseMap< llvm::gsym::FileEntry, uint32_t > FileEntryToIndex
std::vector< uint8_t > UUID
LLVM_ABI std::optional< uint64_t > getFirstFunctionAddress() const
Get the first function start address.
std::optional< AddressRanges > ValidTextRanges
std::vector< FunctionInfo > Funcs
LLVM_ABI llvm::Error loadCallSitesFromYAML(StringRef YAMLFile)
Load call site information from a YAML file.
LLVM_ABI uint32_t insertFileEntry(FileEntry FE)
Inserts a FileEntry into the file table.
virtual uint8_t getStringOffsetSize() const =0
Get the size in bytes needed for encoding string offsets.
DenseMap< uint64_t, CachedHashStringRef > StringOffsetMap
LLVM_ABI uint64_t getMaxAddressOffset() const
Get the maximum address offset for the current address offset size.
LLVM_ABI std::optional< uint64_t > getLastFunctionAddress() const
Get the last function address.
LLVM_ABI llvm::Error finalize(OutputAggregator &OS)
Finalize the data in the GSYM creator prior to saving the data out.
LLVM_ABI uint32_t copyFile(const GsymCreator &SrcGC, uint32_t FileIdx)
Copy a file from SrcGC into this object.
LLVM_ABI uint32_t insertFile(StringRef Path, sys::path::Style Style=sys::path::Style::native)
Insert a file into this GSYM creator.
virtual std::unique_ptr< GsymCreator > createNew() const =0
Create a new empty creator of the same version.
virtual llvm::Error encode(FileWriter &O) const =0
Encode a GSYM into the file writer stream at the current position.
LLVM_ABI size_t getNumFunctionInfos() const
Get the current number of FunctionInfo objects contained in this object.
LLVM_ABI void encodeAddrOffsets(FileWriter &O, uint8_t AddrOffSize, uint64_t BaseAddr) const
Write the address offsets table to the output stream.
LLVM_ABI std::optional< uint64_t > getBaseAddress() const
Get the base address to use for this GSYM file.
LLVM_ABI uint8_t getAddressOffsetSize() const
Get the size of an address offset in the address offset table.
LLVM_ABI bool IsValidTextAddress(uint64_t Addr) const
Check if an address is a valid code address.
LLVM_ABI void forEachFunctionInfo(std::function< bool(FunctionInfo &)> const &Callback)
Thread safe iteration over all function infos.
LineTable class contains deserialized versions of line tables for each function's address ranges.
Definition LineTable.h:119
size_t size() const
Definition LineTable.h:194
LineEntry & get(size_t i)
Definition LineTable.h:197
void Report(StringRef s, std::function< void(raw_ostream &o)> detailCallback)
A raw_ostream that writes to a file descriptor.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
A raw_ostream that writes to an std::string.
A raw_ostream that writes to an SmallVector or SmallString.
#define UINT64_MAX
Definition DataTypes.h:77
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
uint64_t gsym_strp_t
The type of string offset used in the code.
Definition GsymTypes.h:21
LLVM_ABI StringRef parent_path(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get parent path.
Definition Path.cpp:478
LLVM_ABI StringRef filename(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get filename.
Definition Path.cpp:594
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:578
void stable_sort(R &&Range)
Definition STLExtras.h:2116
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
Definition Error.h:1321
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition Alignment.h:144
FormattedNumber format_hex(uint64_t N, unsigned Width, bool Upper=false)
format_hex - Output N as a fixed width hexadecimal.
Definition Format.h:164
LLVM_ABI Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
Definition Error.cpp:107
endianness
Definition bit.h:71
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition BitVector.h:880
Files in GSYM are contained in FileEntry structs where we split the directory and basename into two d...
Definition FileEntry.h:25
gsym_strp_t Dir
Offsets in the string table.
Definition FileEntry.h:29
Function information in GSYM files encodes information for one contiguous address range.
std::optional< InlineInfo > Inline
std::optional< MergedFunctionsInfo > MergedFunctions
bool hasRichInfo() const
Query if a FunctionInfo has rich debug info.
gsym_strp_t Name
String table offset in the string table.
std::optional< LineTable > OptLineTable
Inline information stores the name of the inline function along with an array of address ranges.
Definition InlineInfo.h:61
Line entries are used to encode the line tables in FunctionInfo objects.
Definition LineEntry.h:22