forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGsymCreator.cpp
619 lines (564 loc) · 23.1 KB
/
GsymCreator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
//===- GsymCreator.cpp ----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//===----------------------------------------------------------------------===//
#include "llvm/DebugInfo/GSYM/GsymCreator.h"
#include "llvm/DebugInfo/GSYM/FileWriter.h"
#include "llvm/DebugInfo/GSYM/Header.h"
#include "llvm/DebugInfo/GSYM/LineTable.h"
#include "llvm/DebugInfo/GSYM/OutputAggregator.h"
#include "llvm/MC/StringTableBuilder.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cassert>
#include <functional>
#include <vector>
using namespace llvm;
using namespace gsym;
GsymCreator::GsymCreator(bool Quiet, bool InputHasMergedFunctions)
: StrTab(StringTableBuilder::ELF), Quiet(Quiet),
InputHasMergedFunctions(InputHasMergedFunctions) {
insertFile(StringRef());
}
uint32_t GsymCreator::insertFile(StringRef Path, llvm::sys::path::Style Style) {
llvm::StringRef directory = llvm::sys::path::parent_path(Path, Style);
llvm::StringRef filename = llvm::sys::path::filename(Path, Style);
// We must insert the strings first, then call the FileEntry constructor.
// If we inline the insertString() function call into the constructor, the
// call order is undefined due to parameter lists not having any ordering
// requirements.
const uint32_t Dir = insertString(directory);
const uint32_t Base = insertString(filename);
return insertFileEntry(FileEntry(Dir, Base));
}
uint32_t GsymCreator::insertFileEntry(FileEntry FE) {
std::lock_guard<std::mutex> Guard(Mutex);
const auto NextIndex = Files.size();
// Find FE in hash map and insert if not present.
auto R = FileEntryToIndex.insert(std::make_pair(FE, NextIndex));
if (R.second)
Files.emplace_back(FE);
return R.first->second;
}
uint32_t GsymCreator::copyFile(const GsymCreator &SrcGC, uint32_t FileIdx) {
// File index zero is reserved for a FileEntry with no directory and no
// filename. Any other file and we need to copy the strings for the directory
// and filename.
if (FileIdx == 0)
return 0;
const FileEntry SrcFE = SrcGC.Files[FileIdx];
// Copy the strings for the file and then add the newly converted file entry.
uint32_t Dir =
SrcFE.Dir == 0
? 0
: StrTab.add(SrcGC.StringOffsetMap.find(SrcFE.Dir)->second);
uint32_t Base = StrTab.add(SrcGC.StringOffsetMap.find(SrcFE.Base)->second);
FileEntry DstFE(Dir, Base);
return insertFileEntry(DstFE);
}
llvm::Error GsymCreator::save(StringRef Path, llvm::endianness ByteOrder,
std::optional<uint64_t> SegmentSize) const {
if (SegmentSize)
return saveSegments(Path, ByteOrder, *SegmentSize);
std::error_code EC;
raw_fd_ostream OutStrm(Path, EC);
if (EC)
return llvm::errorCodeToError(EC);
FileWriter O(OutStrm, ByteOrder);
return encode(O);
}
llvm::Error GsymCreator::encode(FileWriter &O) const {
std::lock_guard<std::mutex> Guard(Mutex);
if (Funcs.empty())
return createStringError(std::errc::invalid_argument,
"no functions to encode");
if (!Finalized)
return createStringError(std::errc::invalid_argument,
"GsymCreator wasn't finalized prior to encoding");
if (Funcs.size() > UINT32_MAX)
return createStringError(std::errc::invalid_argument,
"too many FunctionInfos");
std::optional<uint64_t> BaseAddress = getBaseAddress();
// Base address should be valid if we have any functions.
if (!BaseAddress)
return createStringError(std::errc::invalid_argument,
"invalid base address");
Header Hdr;
Hdr.Magic = GSYM_MAGIC;
Hdr.Version = GSYM_VERSION;
Hdr.AddrOffSize = getAddressOffsetSize();
Hdr.UUIDSize = static_cast<uint8_t>(UUID.size());
Hdr.BaseAddress = *BaseAddress;
Hdr.NumAddresses = static_cast<uint32_t>(Funcs.size());
Hdr.StrtabOffset = 0; // We will fix this up later.
Hdr.StrtabSize = 0; // We will fix this up later.
memset(Hdr.UUID, 0, sizeof(Hdr.UUID));
if (UUID.size() > sizeof(Hdr.UUID))
return createStringError(std::errc::invalid_argument,
"invalid UUID size %u", (uint32_t)UUID.size());
// Copy the UUID value if we have one.
if (UUID.size() > 0)
memcpy(Hdr.UUID, UUID.data(), UUID.size());
// Write out the header.
llvm::Error Err = Hdr.encode(O);
if (Err)
return Err;
const uint64_t MaxAddressOffset = getMaxAddressOffset();
// Write out the address offsets.
O.alignTo(Hdr.AddrOffSize);
for (const auto &FuncInfo : Funcs) {
uint64_t AddrOffset = FuncInfo.startAddress() - Hdr.BaseAddress;
// Make sure we calculated the address offsets byte size correctly by
// verifying the current address offset is within ranges. We have seen bugs
// introduced when the code changes that can cause problems here so it is
// good to catch this during testing.
assert(AddrOffset <= MaxAddressOffset);
(void)MaxAddressOffset;
switch (Hdr.AddrOffSize) {
case 1:
O.writeU8(static_cast<uint8_t>(AddrOffset));
break;
case 2:
O.writeU16(static_cast<uint16_t>(AddrOffset));
break;
case 4:
O.writeU32(static_cast<uint32_t>(AddrOffset));
break;
case 8:
O.writeU64(AddrOffset);
break;
}
}
// Write out all zeros for the AddrInfoOffsets.
O.alignTo(4);
const off_t AddrInfoOffsetsOffset = O.tell();
for (size_t i = 0, n = Funcs.size(); i < n; ++i)
O.writeU32(0);
// Write out the file table
O.alignTo(4);
assert(!Files.empty());
assert(Files[0].Dir == 0);
assert(Files[0].Base == 0);
size_t NumFiles = Files.size();
if (NumFiles > UINT32_MAX)
return createStringError(std::errc::invalid_argument, "too many files");
O.writeU32(static_cast<uint32_t>(NumFiles));
for (auto File : Files) {
O.writeU32(File.Dir);
O.writeU32(File.Base);
}
// Write out the string table.
const off_t StrtabOffset = O.tell();
StrTab.write(O.get_stream());
const off_t StrtabSize = O.tell() - StrtabOffset;
std::vector<uint32_t> AddrInfoOffsets;
// Write out the address infos for each function info.
for (const auto &FuncInfo : Funcs) {
if (Expected<uint64_t> OffsetOrErr = FuncInfo.encode(O))
AddrInfoOffsets.push_back(OffsetOrErr.get());
else
return OffsetOrErr.takeError();
}
// Fixup the string table offset and size in the header
O.fixup32((uint32_t)StrtabOffset, offsetof(Header, StrtabOffset));
O.fixup32((uint32_t)StrtabSize, offsetof(Header, StrtabSize));
// Fixup all address info offsets
uint64_t Offset = 0;
for (auto AddrInfoOffset : AddrInfoOffsets) {
O.fixup32(AddrInfoOffset, AddrInfoOffsetsOffset + Offset);
Offset += 4;
}
return ErrorSuccess();
}
llvm::Error GsymCreator::loadCallSitesFromYAML(StringRef YAMLFile) {
// Use the loader to load call site information from the YAML file.
CallSiteInfoLoader Loader(*this, Funcs);
return Loader.loadYAML(YAMLFile);
}
void GsymCreator::prepareMergedFunctions(OutputAggregator &Out) {
// Nothing to do if we have less than 2 functions.
if (Funcs.size() < 2)
return;
// Sort the function infos by address range first, preserving input order
llvm::stable_sort(Funcs);
std::vector<FunctionInfo> TopLevelFuncs;
// Add the first function info to the top level functions
TopLevelFuncs.emplace_back(std::move(Funcs.front()));
// Now if the next function info has the same address range as the top level,
// then merge it into the top level function, otherwise add it to the top
// level.
for (size_t Idx = 1; Idx < Funcs.size(); ++Idx) {
FunctionInfo &TopFunc = TopLevelFuncs.back();
FunctionInfo &MatchFunc = Funcs[Idx];
if (TopFunc.Range == MatchFunc.Range) {
// Both have the same range - add the 2nd func as a child of the 1st func
if (!TopFunc.MergedFunctions)
TopFunc.MergedFunctions = MergedFunctionsInfo();
// Avoid adding duplicate functions to MergedFunctions. Since functions
// are already ordered within the Funcs array, we can just check equality
// against the last function in the merged array.
else if (TopFunc.MergedFunctions->MergedFunctions.back() == MatchFunc)
continue;
TopFunc.MergedFunctions->MergedFunctions.emplace_back(
std::move(MatchFunc));
} else
// No match, add the function as a top-level function
TopLevelFuncs.emplace_back(std::move(MatchFunc));
}
uint32_t mergedCount = Funcs.size() - TopLevelFuncs.size();
// If any functions were merged, print a message about it.
if (mergedCount != 0)
Out << "Have " << mergedCount
<< " merged functions as children of other functions\n";
std::swap(Funcs, TopLevelFuncs);
}
llvm::Error GsymCreator::finalize(OutputAggregator &Out) {
std::lock_guard<std::mutex> Guard(Mutex);
if (Finalized)
return createStringError(std::errc::invalid_argument, "already finalized");
Finalized = true;
// Don't let the string table indexes change by finalizing in order.
StrTab.finalizeInOrder();
// Remove duplicates function infos that have both entries from debug info
// (DWARF or Breakpad) and entries from the SymbolTable.
//
// Also handle overlapping function. Usually there shouldn't be any, but they
// can and do happen in some rare cases.
//
// (a) (b) (c)
// ^ ^ ^ ^
// |X |Y |X ^ |X
// | | | |Y | ^
// | | | v v |Y
// v v v v
//
// In (a) and (b), Y is ignored and X will be reported for the full range.
// In (c), both functions will be included in the result and lookups for an
// address in the intersection will return Y because of binary search.
//
// Note that in case of (b), we cannot include Y in the result because then
// we wouldn't find any function for range (end of Y, end of X)
// with binary search
const auto NumBefore = Funcs.size();
// Only sort and unique if this isn't a segment. If this is a segment we
// already finalized the main GsymCreator with all of the function infos
// and then the already sorted and uniqued function infos were added to this
// object.
if (!IsSegment) {
if (NumBefore > 1) {
// Sort function infos so we can emit sorted functions. Use stable sort to
// ensure determinism.
llvm::stable_sort(Funcs);
std::vector<FunctionInfo> FinalizedFuncs;
FinalizedFuncs.reserve(Funcs.size());
FinalizedFuncs.emplace_back(std::move(Funcs.front()));
for (size_t Idx=1; Idx < NumBefore; ++Idx) {
FunctionInfo &Prev = FinalizedFuncs.back();
FunctionInfo &Curr = Funcs[Idx];
// Empty ranges won't intersect, but we still need to
// catch the case where we have multiple symbols at the
// same address and coalesce them.
const bool ranges_equal = Prev.Range == Curr.Range;
if (ranges_equal || Prev.Range.intersects(Curr.Range)) {
// Overlapping ranges or empty identical ranges.
if (ranges_equal) {
// Same address range. Check if one is from debug
// info and the other is from a symbol table. If
// so, then keep the one with debug info. Our
// sorting guarantees that entries with matching
// address ranges that have debug info are last in
// the sort.
if (!(Prev == Curr)) {
if (Prev.hasRichInfo() && Curr.hasRichInfo())
Out.Report(
"Duplicate address ranges with different debug info.",
[&](raw_ostream &OS) {
OS << "warning: same address range contains "
"different debug "
<< "info. Removing:\n"
<< Prev << "\nIn favor of this one:\n"
<< Curr << "\n";
});
// We want to swap the current entry with the previous since
// later entries with the same range always have more debug info
// or different debug info.
std::swap(Prev, Curr);
}
} else {
// Equal ranges are invalid only in the case where merged functions
// are not expected.
if (!InputHasMergedFunctions) {
Out.Report("Overlapping function ranges", [&](raw_ostream &OS) {
// print warnings about overlaps
OS << "warning: function ranges overlap:\n"
<< Prev << "\n"
<< Curr << "\n";
});
}
FinalizedFuncs.emplace_back(std::move(Curr));
}
} else {
if (Prev.Range.size() == 0 && Curr.Range.contains(Prev.Range.start())) {
// Symbols on macOS don't have address ranges, so if the range
// doesn't match and the size is zero, then we replace the empty
// symbol function info with the current one.
std::swap(Prev, Curr);
} else {
FinalizedFuncs.emplace_back(std::move(Curr));
}
}
}
std::swap(Funcs, FinalizedFuncs);
}
// If our last function info entry doesn't have a size and if we have valid
// text ranges, we should set the size of the last entry since any search for
// a high address might match our last entry. By fixing up this size, we can
// help ensure we don't cause lookups to always return the last symbol that
// has no size when doing lookups.
if (!Funcs.empty() && Funcs.back().Range.size() == 0 && ValidTextRanges) {
if (auto Range =
ValidTextRanges->getRangeThatContains(Funcs.back().Range.start())) {
Funcs.back().Range = {Funcs.back().Range.start(), Range->end()};
}
}
Out << "Pruned " << NumBefore - Funcs.size() << " functions, ended with "
<< Funcs.size() << " total\n";
}
return Error::success();
}
uint32_t GsymCreator::copyString(const GsymCreator &SrcGC, uint32_t StrOff) {
// String offset at zero is always the empty string, no copying needed.
if (StrOff == 0)
return 0;
return StrTab.add(SrcGC.StringOffsetMap.find(StrOff)->second);
}
uint32_t GsymCreator::insertString(StringRef S, bool Copy) {
if (S.empty())
return 0;
// The hash can be calculated outside the lock.
CachedHashStringRef CHStr(S);
std::lock_guard<std::mutex> Guard(Mutex);
if (Copy) {
// We need to provide backing storage for the string if requested
// since StringTableBuilder stores references to strings. Any string
// that comes from a section in an object file doesn't need to be
// copied, but any string created by code will need to be copied.
// This allows GsymCreator to be really fast when parsing DWARF and
// other object files as most strings don't need to be copied.
if (!StrTab.contains(CHStr))
CHStr = CachedHashStringRef{StringStorage.insert(S).first->getKey(),
CHStr.hash()};
}
const uint32_t StrOff = StrTab.add(CHStr);
// Save a mapping of string offsets to the cached string reference in case
// we need to segment the GSYM file and copy string from one string table to
// another.
StringOffsetMap.try_emplace(StrOff, CHStr);
return StrOff;
}
StringRef GsymCreator::getString(uint32_t Offset) {
auto I = StringOffsetMap.find(Offset);
assert(I != StringOffsetMap.end() &&
"GsymCreator::getString expects a valid offset as parameter.");
return I->second.val();
}
void GsymCreator::addFunctionInfo(FunctionInfo &&FI) {
std::lock_guard<std::mutex> Guard(Mutex);
Funcs.emplace_back(std::move(FI));
}
void GsymCreator::forEachFunctionInfo(
std::function<bool(FunctionInfo &)> const &Callback) {
std::lock_guard<std::mutex> Guard(Mutex);
for (auto &FI : Funcs) {
if (!Callback(FI))
break;
}
}
void GsymCreator::forEachFunctionInfo(
std::function<bool(const FunctionInfo &)> const &Callback) const {
std::lock_guard<std::mutex> Guard(Mutex);
for (const auto &FI : Funcs) {
if (!Callback(FI))
break;
}
}
size_t GsymCreator::getNumFunctionInfos() const {
std::lock_guard<std::mutex> Guard(Mutex);
return Funcs.size();
}
bool GsymCreator::IsValidTextAddress(uint64_t Addr) const {
if (ValidTextRanges)
return ValidTextRanges->contains(Addr);
return true; // No valid text ranges has been set, so accept all ranges.
}
std::optional<uint64_t> GsymCreator::getFirstFunctionAddress() const {
// If we have finalized then Funcs are sorted. If we are a segment then
// Funcs will be sorted as well since function infos get added from an
// already finalized GsymCreator object where its functions were sorted and
// uniqued.
if ((Finalized || IsSegment) && !Funcs.empty())
return std::optional<uint64_t>(Funcs.front().startAddress());
return std::nullopt;
}
std::optional<uint64_t> GsymCreator::getLastFunctionAddress() const {
// If we have finalized then Funcs are sorted. If we are a segment then
// Funcs will be sorted as well since function infos get added from an
// already finalized GsymCreator object where its functions were sorted and
// uniqued.
if ((Finalized || IsSegment) && !Funcs.empty())
return std::optional<uint64_t>(Funcs.back().startAddress());
return std::nullopt;
}
std::optional<uint64_t> GsymCreator::getBaseAddress() const {
if (BaseAddress)
return BaseAddress;
return getFirstFunctionAddress();
}
uint64_t GsymCreator::getMaxAddressOffset() const {
switch (getAddressOffsetSize()) {
case 1: return UINT8_MAX;
case 2: return UINT16_MAX;
case 4: return UINT32_MAX;
case 8: return UINT64_MAX;
}
llvm_unreachable("invalid address offset");
}
uint8_t GsymCreator::getAddressOffsetSize() const {
const std::optional<uint64_t> BaseAddress = getBaseAddress();
const std::optional<uint64_t> LastFuncAddr = getLastFunctionAddress();
if (BaseAddress && LastFuncAddr) {
const uint64_t AddrDelta = *LastFuncAddr - *BaseAddress;
if (AddrDelta <= UINT8_MAX)
return 1;
else if (AddrDelta <= UINT16_MAX)
return 2;
else if (AddrDelta <= UINT32_MAX)
return 4;
return 8;
}
return 1;
}
uint64_t GsymCreator::calculateHeaderAndTableSize() const {
uint64_t Size = sizeof(Header);
const size_t NumFuncs = Funcs.size();
// Add size of address offset table
Size += NumFuncs * getAddressOffsetSize();
// Add size of address info offsets which are 32 bit integers in version 1.
Size += NumFuncs * sizeof(uint32_t);
// Add file table size
Size += Files.size() * sizeof(FileEntry);
// Add string table size
Size += StrTab.getSize();
return Size;
}
// This function takes a InlineInfo class that was copy constructed from an
// InlineInfo from the \a SrcGC and updates all members that point to strings
// and files to point to strings and files from this GsymCreator.
void GsymCreator::fixupInlineInfo(const GsymCreator &SrcGC, InlineInfo &II) {
II.Name = copyString(SrcGC, II.Name);
II.CallFile = copyFile(SrcGC, II.CallFile);
for (auto &ChildII: II.Children)
fixupInlineInfo(SrcGC, ChildII);
}
uint64_t GsymCreator::copyFunctionInfo(const GsymCreator &SrcGC, size_t FuncIdx) {
// To copy a function info we need to copy any files and strings over into
// this GsymCreator and then copy the function info and update the string
// table offsets to match the new offsets.
const FunctionInfo &SrcFI = SrcGC.Funcs[FuncIdx];
FunctionInfo DstFI;
DstFI.Range = SrcFI.Range;
DstFI.Name = copyString(SrcGC, SrcFI.Name);
// Copy the line table if there is one.
if (SrcFI.OptLineTable) {
// Copy the entire line table.
DstFI.OptLineTable = LineTable(SrcFI.OptLineTable.value());
// Fixup all LineEntry::File entries which are indexes in the the file table
// from SrcGC and must be converted to file indexes from this GsymCreator.
LineTable &DstLT = DstFI.OptLineTable.value();
const size_t NumLines = DstLT.size();
for (size_t I=0; I<NumLines; ++I) {
LineEntry &LE = DstLT.get(I);
LE.File = copyFile(SrcGC, LE.File);
}
}
// Copy the inline information if needed.
if (SrcFI.Inline) {
// Make a copy of the source inline information.
DstFI.Inline = SrcFI.Inline.value();
// Fixup all strings and files in the copied inline information.
fixupInlineInfo(SrcGC, *DstFI.Inline);
}
std::lock_guard<std::mutex> Guard(Mutex);
Funcs.emplace_back(DstFI);
return Funcs.back().cacheEncoding();
}
llvm::Error GsymCreator::saveSegments(StringRef Path,
llvm::endianness ByteOrder,
uint64_t SegmentSize) const {
if (SegmentSize == 0)
return createStringError(std::errc::invalid_argument,
"invalid segment size zero");
size_t FuncIdx = 0;
const size_t NumFuncs = Funcs.size();
while (FuncIdx < NumFuncs) {
llvm::Expected<std::unique_ptr<GsymCreator>> ExpectedGC =
createSegment(SegmentSize, FuncIdx);
if (ExpectedGC) {
GsymCreator *GC = ExpectedGC->get();
if (GC == NULL)
break; // We had not more functions to encode.
// Don't collect any messages at all
OutputAggregator Out(nullptr);
llvm::Error Err = GC->finalize(Out);
if (Err)
return Err;
std::string SegmentedGsymPath;
raw_string_ostream SGP(SegmentedGsymPath);
std::optional<uint64_t> FirstFuncAddr = GC->getFirstFunctionAddress();
if (FirstFuncAddr) {
SGP << Path << "-" << llvm::format_hex(*FirstFuncAddr, 1);
SGP.flush();
Err = GC->save(SegmentedGsymPath, ByteOrder, std::nullopt);
if (Err)
return Err;
}
} else {
return ExpectedGC.takeError();
}
}
return Error::success();
}
llvm::Expected<std::unique_ptr<GsymCreator>>
GsymCreator::createSegment(uint64_t SegmentSize, size_t &FuncIdx) const {
// No function entries, return empty unique pointer
if (FuncIdx >= Funcs.size())
return std::unique_ptr<GsymCreator>();
std::unique_ptr<GsymCreator> GC(new GsymCreator(/*Quiet=*/true));
// Tell the creator that this is a segment.
GC->setIsSegment();
// Set the base address if there is one.
if (BaseAddress)
GC->setBaseAddress(*BaseAddress);
// Copy the UUID value from this object into the new creator.
GC->setUUID(UUID);
const size_t NumFuncs = Funcs.size();
// Track how big the function infos are for the current segment so we can
// emit segments that are close to the requested size. It is quick math to
// determine the current header and tables sizes, so we can do that each loop.
uint64_t SegmentFuncInfosSize = 0;
for (; FuncIdx < NumFuncs; ++FuncIdx) {
const uint64_t HeaderAndTableSize = GC->calculateHeaderAndTableSize();
if (HeaderAndTableSize + SegmentFuncInfosSize >= SegmentSize) {
if (SegmentFuncInfosSize == 0)
return createStringError(std::errc::invalid_argument,
"a segment size of %" PRIu64 " is to small to "
"fit any function infos, specify a larger value",
SegmentSize);
break;
}
SegmentFuncInfosSize += alignTo(GC->copyFunctionInfo(*this, FuncIdx), 4);
}
return std::move(GC);
}