-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathswift-demangle.cpp
455 lines (404 loc) · 14.2 KB
/
swift-demangle.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
//===--- swift-demangle.cpp - Swift Demangler app -------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This is the entry point.
//
//===----------------------------------------------------------------------===//
#include "swift/Demangling/Demangle.h"
#include "swift/Demangling/ManglingFlavor.h"
#include "swift/Demangling/ManglingMacros.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/PrettyStackTrace.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/raw_ostream.h"
// For std::rand, to work around a bug if main()'s first function call passes
// argv[0].
#if defined(__CYGWIN__)
#include <cstdlib>
#endif
#include <iostream>
using namespace swift::Demangle;
static llvm::cl::opt<bool>
ExpandMode("expand",
llvm::cl::desc("Expand mode (show node structure of the demangling)"));
static llvm::cl::opt<bool>
CompactMode("compact",
llvm::cl::desc("Compact mode (only emit the demangled names)"));
static llvm::cl::opt<bool>
TreeOnly("tree-only",
llvm::cl::desc("Tree-only mode (do not show the demangled string)"));
static llvm::cl::opt<bool>
DemangleType("type",
llvm::cl::desc("Demangle a runtime type string"));
static llvm::cl::opt<bool>
StripSpecialization("strip-specialization",
llvm::cl::desc("Remangle the origin of a specialized function"));
static llvm::cl::opt<bool>
RemangleMode("test-remangle",
llvm::cl::desc("Remangle test mode (show the remangled string)"));
static llvm::cl::opt<bool>
RemangleRtMode("remangle-objc-rt",
llvm::cl::desc("Remangle to the ObjC runtime name mangling scheme"));
static llvm::cl::opt<bool>
RemangleNew("remangle-new",
llvm::cl::desc("Remangle the symbol with new mangling scheme"));
static llvm::cl::opt<bool>
DisableSugar("no-sugar",
llvm::cl::desc("No sugar mode (disable common language idioms such as ? and [] from the output)"));
static llvm::cl::opt<bool>
Simplified("simplified",
llvm::cl::desc("Don't display module names or implicit self types"));
static llvm::cl::opt<bool>
Classify("classify",
llvm::cl::desc("Display symbol classification characters"));
/// Options that are primarily used for testing.
/// \{
static llvm::cl::opt<bool> DisplayLocalNameContexts(
"display-local-name-contexts", llvm::cl::init(true),
llvm::cl::desc("Qualify local names"),
llvm::cl::Hidden);
static llvm::cl::opt<bool> DisplayStdlibModule(
"display-stdlib-module", llvm::cl::init(true),
llvm::cl::desc("Qualify types originating from the Swift standard library"),
llvm::cl::Hidden);
static llvm::cl::opt<bool> DisplayObjCModule(
"display-objc-module", llvm::cl::init(true),
llvm::cl::desc("Qualify types originating from the __ObjC module"),
llvm::cl::Hidden);
static llvm::cl::opt<std::string> HidingModule(
"hiding-module",
llvm::cl::desc("Don't qualify types originating from this module"),
llvm::cl::Hidden);
static llvm::cl::opt<bool>
ShowClosureSignature("show-closure-signature", llvm::cl::init(true),
llvm::cl::desc("Show type signature of closures"),
llvm::cl::Hidden);
/// \}
static llvm::cl::list<std::string>
InputNames(llvm::cl::Positional, llvm::cl::desc("[mangled name...]"),
llvm::cl::ZeroOrMore);
static llvm::StringRef substrBefore(llvm::StringRef whole,
llvm::StringRef part) {
return whole.slice(0, part.data() - whole.data());
}
static llvm::StringRef substrAfter(llvm::StringRef whole,
llvm::StringRef part) {
return whole.substr((part.data() - whole.data()) + part.size());
}
static void stripSpecialization(NodePointer Node) {
if (Node->getKind() != Node::Kind::Global)
return;
switch (Node->getFirstChild()->getKind()) {
case Node::Kind::FunctionSignatureSpecialization:
case Node::Kind::GenericSpecialization:
case Node::Kind::GenericSpecializationPrespecialized:
case Node::Kind::GenericSpecializationNotReAbstracted:
case Node::Kind::GenericPartialSpecialization:
case Node::Kind::GenericPartialSpecializationNotReAbstracted:
Node->removeChildAt(0);
break;
default:
break;
}
}
static void demangle(llvm::raw_ostream &os, llvm::StringRef name,
swift::Demangle::Context &DCtx,
const swift::Demangle::DemangleOptions &options) {
bool hadLeadingUnderscore = false;
if (name.starts_with("__")) {
hadLeadingUnderscore = true;
name = name.substr(1);
}
swift::Demangle::NodePointer pointer;
if (DemangleType) {
pointer = DCtx.demangleTypeAsNode(name);
if (!pointer) {
os << "<<invalid type>>";
return;
}
} else {
pointer = DCtx.demangleSymbolAsNode(name);
}
if (ExpandMode || TreeOnly) {
os << "Demangling for " << name << '\n';
os << getNodeTreeAsString(pointer);
}
swift::Mangle::ManglingFlavor ManglingFlavor = swift::Mangle::ManglingFlavor::Default;
if (name.starts_with(MANGLING_PREFIX_EMBEDDED_STR)) {
ManglingFlavor = swift::Mangle::ManglingFlavor::Embedded;
}
if (RemangleMode) {
std::string remangled;
if (!pointer || !(name.starts_with(MANGLING_PREFIX_STR) ||
name.starts_with(MANGLING_PREFIX_EMBEDDED_STR) ||
name.starts_with("_S"))) {
// Just reprint the original mangled name if it didn't demangle or is in
// the old mangling scheme.
// This makes it easier to share the same database between the
// mangling and demangling tests.
remangled = name.str();
} else {
auto mangling = swift::Demangle::mangleNode(pointer, ManglingFlavor);
if (!mangling.isSuccess()) {
llvm::errs() << "Error: (" << mangling.error().code << ":"
<< mangling.error().line << ") unable to re-mangle "
<< name << '\n';
exit(1);
}
remangled = mangling.result();
unsigned prefixLen = swift::Demangle::getManglingPrefixLength(remangled);
assert(prefixLen > 0);
// Replace the prefix if we remangled with a different prefix.
if (!name.starts_with(remangled.substr(0, prefixLen))) {
unsigned namePrefixLen =
swift::Demangle::getManglingPrefixLength(name);
assert(namePrefixLen > 0);
remangled = name.take_front(namePrefixLen).str() +
remangled.substr(prefixLen);
}
if (name != remangled) {
llvm::errs() << "Error: re-mangled name \n " << remangled
<< "\ndoes not match original name\n " << name << '\n';
exit(1);
}
}
if (hadLeadingUnderscore) os << '_';
os << remangled;
return;
} else if (RemangleRtMode) {
std::string remangled = name.str();
if (pointer) {
auto mangling = swift::Demangle::mangleNodeOld(pointer);
if (!mangling.isSuccess()) {
llvm::errs() << "Error: (" << mangling.error().code << ":"
<< mangling.error().line << ") unable to re-mangle "
<< name << '\n';
exit(1);
}
remangled = mangling.result();
}
os << remangled;
return;
}
if (!TreeOnly) {
if (RemangleNew) {
if (!pointer) {
llvm::errs() << "Error: unable to de-mangle " << name << '\n';
exit(1);
}
auto mangling = swift::Demangle::mangleNode(pointer, ManglingFlavor);
if (!mangling.isSuccess()) {
llvm::errs() << "Error: (" << mangling.error().code << ":"
<< mangling.error().line << ") unable to re-mangle "
<< name << '\n';
exit(1);
}
std::string remangled = mangling.result();
os << remangled;
return;
}
if (StripSpecialization) {
stripSpecialization(pointer);
auto mangling = swift::Demangle::mangleNode(pointer, ManglingFlavor);
if (!mangling.isSuccess()) {
llvm::errs() << "Error: (" << mangling.error().code << ":"
<< mangling.error().line << ") unable to re-mangle "
<< name << '\n';
exit(1);
}
std::string remangled = mangling.result();
os << remangled;
return;
}
std::string string = swift::Demangle::nodeToString(pointer, options);
if (!CompactMode)
os << name << " ---> ";
if (Classify) {
std::string Classifications;
if (!swift::Demangle::isSwiftSymbol(name))
Classifications += 'N';
if (DCtx.isThunkSymbol(name)) {
if (!Classifications.empty())
Classifications += ',';
Classifications += "T:";
Classifications += DCtx.getThunkTarget(name);
} else {
assert(DCtx.getThunkTarget(name).empty());
}
if (pointer && !DCtx.hasSwiftCallingConvention(name)) {
if (!Classifications.empty())
Classifications += ',';
Classifications += 'C';
}
if (!Classifications.empty())
os << '{' << Classifications << "} ";
}
os << (string.empty() ? name : llvm::StringRef(string));
}
DCtx.clear();
}
static bool isValidInMangling(char ch) {
return (ch == '_' || ch == '$' || ch == '.'
|| (ch >= 'a' && ch <= 'z')
|| (ch >= 'A' && ch <= 'Z')
|| (ch >= '0' && ch <= '9'));
}
static bool findMaybeMangled(llvm::StringRef input, llvm::StringRef &match) {
const char *ptr = input.data();
size_t len = input.size();
const char *end = ptr + len;
enum {
Start,
SeenUnderscore,
SeenDollar,
FoundPrefix
} state = Start;
const char *matchStart = nullptr;
// Find _T, $S, $s, _$S, _$s, @__swiftmacro_ followed by a valid mangled string
while (ptr < end) {
switch (state) {
case Start:
while (ptr < end) {
char ch = *ptr++;
if (ch == '_') {
state = SeenUnderscore;
matchStart = ptr - 1;
break;
} else if (ch == '$') {
state = SeenDollar;
matchStart = ptr - 1;
break;
} else if (ch == '@' &&
llvm::StringRef(ptr, end - ptr).starts_with("__swiftmacro_")){
matchStart = ptr - 1;
ptr = ptr + strlen("__swiftmacro_");
state = FoundPrefix;
break;
}
}
break;
case SeenUnderscore:
while (ptr < end) {
char ch = *ptr++;
if (ch == 'T') {
state = FoundPrefix;
break;
} else if (ch == '$') {
state = SeenDollar;
break;
} else if (ch == '_') {
matchStart = ptr - 1;
} else {
state = Start;
break;
}
}
break;
case SeenDollar:
while (ptr < end) {
char ch = *ptr++;
if (ch == 'S' || ch == 's' || ch == 'e') {
state = FoundPrefix;
break;
} else if (ch == '_') {
state = SeenUnderscore;
matchStart = ptr - 1;
break;
} else if (ch == '$') {
matchStart = ptr - 1;
} else {
state = Start;
break;
}
}
break;
case FoundPrefix:
{
const char *mangled = ptr;
while (ptr < end && isValidInMangling(*ptr))
++ptr;
if (ptr == mangled) {
state = Start;
break;
}
match = llvm::StringRef(matchStart, ptr - matchStart);
return true;
}
}
}
return false;
}
static int demangleSTDIN(const swift::Demangle::DemangleOptions &options) {
swift::Demangle::Context DCtx;
for (std::string mangled; std::getline(std::cin, mangled);) {
llvm::StringRef inputContents(mangled);
llvm::StringRef match;
while (findMaybeMangled(inputContents, match)) {
llvm::outs() << substrBefore(inputContents, match);
demangle(llvm::outs(), match, DCtx, options);
inputContents = substrAfter(inputContents, match);
}
llvm::outs() << inputContents << '\n';
}
return EXIT_SUCCESS;
}
int main(int argc, char **argv) {
#if defined(__CYGWIN__)
// Cygwin clang 3.5.2 with '-O3' generates CRASHING BINARY,
// if main()'s first function call is passing argv[0].
std::rand();
#endif
llvm::cl::ParseCommandLineOptions(argc, argv);
swift::Demangle::DemangleOptions options;
options.SynthesizeSugarOnTypes = !DisableSugar;
if (Simplified)
options = swift::Demangle::DemangleOptions::SimplifiedUIDemangleOptions();
options.DisplayStdlibModule = DisplayStdlibModule;
options.DisplayObjCModule = DisplayObjCModule;
options.HidingCurrentModule = HidingModule;
options.DisplayLocalNameContexts = DisplayLocalNameContexts;
options.ShowClosureSignature = ShowClosureSignature;
if (InputNames.empty()) {
CompactMode = true;
if (DemangleType) {
llvm::errs() << "The option -type cannot be used to demangle stdin.\n";
return EXIT_FAILURE;
}
return demangleSTDIN(options);
} else {
swift::Demangle::Context DCtx;
for (llvm::StringRef name : InputNames) {
if (name == "_") {
llvm::errs() << "warning: input symbol '_' is likely the result of "
"variable expansion by the shell. Ensure the argument "
"is quoted or escaped.\n";
continue;
}
if (name == "") {
llvm::errs() << "warning: empty input symbol is likely the result of "
"variable expansion by the shell. Ensure the argument "
"is quoted or escaped.\n";
continue;
}
if (!DemangleType && (name.starts_with("S") || name.starts_with("s") || name.starts_with("e"))) {
std::string correctedName = std::string("$") + name.str();
demangle(llvm::outs(), correctedName, DCtx, options);
} else {
demangle(llvm::outs(), name, DCtx, options);
}
llvm::outs() << '\n';
}
return EXIT_SUCCESS;
}
}