forked from llvm/llvm-project
- Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathMapFile.cpp
292 lines (267 loc) · 10.9 KB
/
MapFile.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
//===- MapFile.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
//
//===----------------------------------------------------------------------===//
//
// This file implements the -map option, which maps address ranges to their
// respective contents, plus the input file these contents were originally from.
// The contents (typically symbols) are listed in address order. Dead-stripped
// contents are included as well.
//
// # Path: test
// # Arch: x86_84
// # Object files:
// [ 0] linker synthesized
// [ 1] a.o
// # Sections:
// # Address Size Segment Section
// 0x1000005C0 0x0000004C __TEXT __text
// # Symbols:
// # Address Size File Name
// 0x1000005C0 0x00000001 [ 1] _main
// # Dead Stripped Symbols:
// # Size File Name
// <<dead>> 0x00000001 [ 1] _foo
//
//===----------------------------------------------------------------------===//
#include"MapFile.h"
#include"ConcatOutputSection.h"
#include"Config.h"
#include"InputFiles.h"
#include"InputSection.h"
#include"OutputSegment.h"
#include"Symbols.h"
#include"SyntheticSections.h"
#include"Target.h"
#include"lld/Common/ErrorHandler.h"
#include"llvm/ADT/DenseMap.h"
#include"llvm/Support/Parallel.h"
#include"llvm/Support/TimeProfiler.h"
usingnamespacellvm;
usingnamespacellvm::sys;
usingnamespacelld;
usingnamespacelld::macho;
structCStringInfo {
uint32_t fileIndex;
StringRef str;
};
structMapInfo {
SmallVector<InputFile *> files;
SmallVector<Defined *> deadSymbols;
DenseMap<const OutputSection *,
SmallVector<std::pair<uint64_t/*addr*/, CStringInfo>>>
liveCStringsForSection;
SmallVector<CStringInfo> deadCStrings;
};
static MapInfo gatherMapInfo() {
MapInfo info;
for (InputFile *file : inputFiles) {
bool isReferencedFile = false;
if (isa<ObjFile>(file) || isa<BitcodeFile>(file)) {
uint32_t fileIndex = info.files.size() + 1;
// Gather the dead symbols. We don't have to bother with the live ones
// because we will pick them up as we iterate over the OutputSections
// later.
for (Symbol *sym : file->symbols) {
if (auto *d = dyn_cast_or_null<Defined>(sym))
// Only emit the prevailing definition of a symbol. Also, don't emit
// the symbol if it is part of a cstring section (we use the literal
// value instead, similar to ld64)
if (d->isec() && d->getFile() == file &&
!isa<CStringInputSection>(d->isec())) {
isReferencedFile = true;
if (!d->isLive())
info.deadSymbols.push_back(d);
}
}
// Gather all the cstrings (both live and dead). A CString(Output)Section
// doesn't provide us a way of figuring out which InputSections its
// cstring contents came from, so we need to build up that mapping here.
for (const Section *sec : file->sections) {
for (const Subsection &subsec : sec->subsections) {
if (auto isec = dyn_cast<CStringInputSection>(subsec.isec)) {
auto &liveCStrings = info.liveCStringsForSection[isec->parent];
for (constauto &[i, piece] : llvm::enumerate(isec->pieces)) {
if (piece.live)
liveCStrings.push_back({isec->parent->addr + piece.outSecOff,
{fileIndex, isec->getStringRef(i)}});
else
info.deadCStrings.push_back({fileIndex, isec->getStringRef(i)});
isReferencedFile = true;
}
} else {
break;
}
}
}
} elseif (constauto *dylibFile = dyn_cast<DylibFile>(file)) {
isReferencedFile = dylibFile->isReferenced();
}
if (isReferencedFile)
info.files.push_back(file);
}
// cstrings are not stored in sorted order in their OutputSections, so we sort
// them here.
for (auto &liveCStrings : info.liveCStringsForSection)
parallelSort(liveCStrings.second, llvm::less_first());
return info;
}
// We use this instead of `toString(const InputFile *)` as we don't want to
// include the dylib install name in our output.
staticvoidprintFileName(raw_fd_ostream &os, const InputFile *f) {
if (f->archiveName.empty())
os << f->getName();
else
os << f->archiveName << "(" << path::filename(f->getName()) + ")";
}
// For printing the contents of the __stubs and __la_symbol_ptr sections.
staticvoidprintStubsEntries(
raw_fd_ostream &os,
const DenseMap<lld::macho::InputFile *, uint32_t> &readerToFileOrdinal,
const OutputSection *osec, size_t entrySize) {
for (const Symbol *sym : in.stubs->getEntries())
os << format("0x%08llX\t0x%08zX\t[%3u] %s\n",
osec->addr + sym->stubsIndex * entrySize, entrySize,
readerToFileOrdinal.lookup(sym->getFile()),
sym->getName().str().data());
}
staticvoidprintNonLazyPointerSection(raw_fd_ostream &os,
NonLazyPointerSectionBase *osec) {
// ld64 considers stubs to belong to particular files, but considers GOT
// entries to be linker-synthesized. Not sure why they made that decision, but
// I think we can follow suit unless there's demand for better symbol-to-file
// associations.
for (const Symbol *sym : osec->getEntries())
os << format("0x%08llX\t0x%08zX\t[ 0] non-lazy-pointer-to-local: %s\n",
osec->addr + sym->gotIndex * target->wordSize,
target->wordSize, sym->getName().str().data());
}
staticuint64_tgetSymSizeForMap(Defined *sym) {
if (sym->identicalCodeFoldingKind == Symbol::ICFFoldKind::Body)
return0;
return sym->size;
}
voidmacho::writeMapFile() {
if (config->mapFile.empty())
return;
TimeTraceScope timeScope("Write map file");
// Open a map file for writing.
std::error_code ec;
raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None);
if (ec) {
error("cannot open " + config->mapFile + ": " + ec.message());
return;
}
os << format("# Path: %s\n", config->outputFile.str().c_str());
os << format("# Arch: %s\n",
getArchitectureName(config->arch()).str().c_str());
MapInfo info = gatherMapInfo();
os << "# Object files:\n";
os << format("[%3u] %s\n", 0, (constchar *)"linker synthesized");
uint32_t fileIndex = 1;
DenseMap<lld::macho::InputFile *, uint32_t> readerToFileOrdinal;
for (InputFile *file : info.files) {
os << format("[%3u] ", fileIndex);
printFileName(os, file);
os << "\n";
readerToFileOrdinal[file] = fileIndex++;
}
os << "# Sections:\n";
os << "# Address\tSize \tSegment\tSection\n";
for (OutputSegment *seg : outputSegments)
for (OutputSection *osec : seg->getSections()) {
if (osec->isHidden())
continue;
os << format("0x%08llX\t0x%08llX\t%s\t%s\n", osec->addr, osec->getSize(),
seg->name.str().c_str(), osec->name.str().c_str());
}
// Helper lambda that prints all symbols from one ConcatInputSection.
auto printOne = [&](const ConcatInputSection *isec) {
for (Defined *sym : isec->symbols) {
if (!(isPrivateLabel(sym->getName()) && getSymSizeForMap(sym) == 0)) {
os << format("0x%08llX\t0x%08llX\t[%3u] %s\n", sym->getVA(),
getSymSizeForMap(sym),
readerToFileOrdinal.lookup(sym->getFile()),
sym->getName().str().data());
}
}
};
// Shared function to print one or two arrays of ConcatInputSection in
// ascending outSecOff order. The second array is optional; if provided, we
// interleave the printing in sorted order without allocating a merged temp
// array.
auto printIsecArrSyms = [&](ArrayRef<ConcatInputSection *> arr1,
ArrayRef<ConcatInputSection *> arr2 = {}) {
// Print both arrays in sorted order, interleaving as necessary.
while (!arr1.empty() || !arr2.empty()) {
if (!arr1.empty() && (arr2.empty() || arr1.front()->outSecOff <=
arr2.front()->outSecOff)) {
printOne(arr1.front());
arr1 = arr1.drop_front();
} elseif (!arr2.empty()) {
printOne(arr2.front());
arr2 = arr2.drop_front();
}
}
};
os << "# Symbols:\n";
os << "# Address\tSize \tFile Name\n";
for (const OutputSegment *seg : outputSegments) {
for (const OutputSection *osec : seg->getSections()) {
if (auto *textOsec = dyn_cast<TextOutputSection>(osec)) {
printIsecArrSyms(textOsec->inputs, textOsec->getThunks());
} elseif (auto *concatOsec = dyn_cast<ConcatOutputSection>(osec)) {
printIsecArrSyms(concatOsec->inputs);
} elseif (osec == in.cStringSection || osec == in.objcMethnameSection) {
constauto &liveCStrings = info.liveCStringsForSection.lookup(osec);
uint64_t lastAddr = 0; // strings will never start at address 0, so this
// is a sentinel value
for (constauto &[addr, info] : liveCStrings) {
uint64_t size = 0;
if (addr != lastAddr)
size = info.str.size() + 1; // include null terminator
lastAddr = addr;
os << format("0x%08llX\t0x%08llX\t[%3u] literal string: ", addr, size,
info.fileIndex);
os.write_escaped(info.str) << "\n";
}
} elseif (osec == (void *)in.unwindInfo) {
os << format("0x%08llX\t0x%08llX\t[ 0] compact unwind info\n",
osec->addr, osec->getSize());
} elseif (osec == in.stubs) {
printStubsEntries(os, readerToFileOrdinal, osec, target->stubSize);
} elseif (osec == in.lazyPointers) {
printStubsEntries(os, readerToFileOrdinal, osec, target->wordSize);
} elseif (osec == in.stubHelper) {
// yes, ld64 calls it "helper helper"...
os << format("0x%08llX\t0x%08llX\t[ 0] helper helper\n", osec->addr,
osec->getSize());
} elseif (osec == in.got) {
printNonLazyPointerSection(os, in.got);
} elseif (osec == in.tlvPointers) {
printNonLazyPointerSection(os, in.tlvPointers);
} elseif (osec == in.objcMethList) {
printIsecArrSyms(in.objcMethList->getInputs());
}
// TODO print other synthetic sections
}
}
if (config->deadStrip) {
os << "# Dead Stripped Symbols:\n";
os << "# \tSize \tFile Name\n";
for (Defined *sym : info.deadSymbols) {
assert(!sym->isLive());
os << format("<<dead>>\t0x%08llX\t[%3u] %s\n", getSymSizeForMap(sym),
readerToFileOrdinal[sym->getFile()],
sym->getName().str().data());
}
for (CStringInfo &cstrInfo : info.deadCStrings) {
os << format("<<dead>>\t0x%08zX\t[%3u] literal string: ",
cstrInfo.str.size() + 1, cstrInfo.fileIndex);
os.write_escaped(cstrInfo.str) << "\n";
}
}
}