-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathRemangler.cpp
4241 lines (3728 loc) · 144 KB
/
Remangler.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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//===--- Remangler.cpp - Swift re-mangling from a demangling tree ---------===//
//
// 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 file implements the remangler, which turns a demangling parse
// tree back into a mangled string. This is useful for tools which
// want to extract subtrees from mangled strings.
//
//===----------------------------------------------------------------------===//
#include "DemanglerAssert.h"
#include "RemanglerBase.h"
#include "swift/AST/Ownership.h"
#include "swift/Demangling/Demangler.h"
#include "swift/Demangling/ManglingMacros.h"
#include "swift/Demangling/ManglingUtils.h"
#include "swift/Demangling/Punycode.h"
#include "swift/Strings.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringSwitch.h"
#include <cstdio>
#include <cstdlib>
using namespace swift;
using namespace Demangle;
using namespace Mangle;
static char getCharOfNodeText(Node *node, unsigned idx) {
switch (node->getKind()) {
case Node::Kind::InfixOperator:
case Node::Kind::PrefixOperator:
case Node::Kind::PostfixOperator:
return Mangle::translateOperatorChar(node->getText()[idx]);
default:
return node->getText()[idx];
}
}
bool SubstitutionEntry::identifierEquals(Node *lhs, Node *rhs) {
unsigned length = lhs->getText().size();
if (rhs->getText().size() != length)
return false;
// The fast path.
if (lhs->getKind() == rhs->getKind())
return lhs->getText() == rhs->getText();
// The slow path.
for (unsigned i = 0; i < length; ++i) {
if (getCharOfNodeText(lhs, i) != getCharOfNodeText(rhs, i))
return false;
}
return true;
}
bool SubstitutionEntry::deepEquals(Node *lhs, Node *rhs) const {
if (!lhs->isSimilarTo(rhs))
return false;
for (auto li = lhs->begin(), ri = rhs->begin(), le = lhs->end();
li != le; ++li, ++ri) {
if (!deepEquals(*li, *ri))
return false;
}
return true;
}
static inline size_t combineHash(size_t currentHash, size_t newValue) {
return 33 * currentHash + newValue;
}
/// Calculate the hash for a node.
size_t RemanglerBase::hashForNode(Node *node,
bool treatAsIdentifier) {
size_t hash = 0;
if (treatAsIdentifier) {
hash = combineHash(hash, (size_t)Node::Kind::Identifier);
assert(node->hasText());
switch (node->getKind()) {
case Node::Kind::InfixOperator:
case Node::Kind::PrefixOperator:
case Node::Kind::PostfixOperator:
for (char c : node->getText()) {
hash = combineHash(hash, (unsigned char)translateOperatorChar(c));
}
return hash;
default:
break;
}
} else {
hash = combineHash(hash, (size_t) node->getKind());
}
if (node->hasIndex()) {
hash = combineHash(hash, node->getIndex());
} else if (node->hasText()) {
for (char c : node->getText()) {
hash = combineHash(hash, (unsigned char) c);
}
}
for (Node *child : *node) {
SubstitutionEntry entry = entryForNode(child, treatAsIdentifier);
hash = combineHash(hash, entry.hash());
}
return hash;
}
/// Rotate a size_t by N bits
static inline size_t rotate(size_t value, size_t shift) {
const size_t bits = sizeof(size_t) * 8;
return (value >> shift) | (value << (bits - shift));
}
/// Compute a hash value from a node *pointer*.
/// Used for look-ups in HashHash. The numbers in here were determined
/// experimentally.
static inline size_t nodeHash(Node *node) {
// Multiply by a magic number
const size_t nodePrime = ((size_t)node) * 2043;
// We rotate by a different amount because the alignment of Node
// changes depending on the machine's pointer size
switch (sizeof(size_t)) {
case 4:
return rotate(nodePrime, 11);
case 8:
return rotate(nodePrime, 12);
case 16:
return rotate(nodePrime, 13);
default:
return rotate(nodePrime, 12);
}
}
/// Construct a SubstitutionEntry for a given node.
/// This will look in the HashHash to see if we already know the hash
/// (which avoids recursive hashing on the Node tree).
SubstitutionEntry RemanglerBase::entryForNode(Node *node,
bool treatAsIdentifier) {
const size_t ident = treatAsIdentifier ? 4 : 0;
const size_t hash = nodeHash(node) + ident;
// Use linear probing with a limit
for (size_t n = 0; n < HashHashMaxProbes; ++n) {
const size_t ndx = (hash + n) & (HashHashCapacity - 1);
SubstitutionEntry entry = HashHash[ndx];
if (entry.isEmpty()) {
size_t entryHash = hashForNode(node, treatAsIdentifier);
entry.setNode(node, treatAsIdentifier, entryHash);
HashHash[ndx] = entry;
return entry;
} else if (entry.matches(node, treatAsIdentifier)) {
return entry;
}
}
// Hash table is full at this hash value
SubstitutionEntry entry;
size_t entryHash = hashForNode(node, treatAsIdentifier);
entry.setNode(node, treatAsIdentifier, entryHash);
return entry;
}
// Find a substitution and return its index.
// Returns -1 if no substitution is found.
int RemanglerBase::findSubstitution(const SubstitutionEntry &entry) {
// First search in InlineSubstitutions.
SubstitutionEntry *result
= std::find(InlineSubstitutions, InlineSubstitutions + NumInlineSubsts,
entry);
if (result != InlineSubstitutions + NumInlineSubsts)
return result - InlineSubstitutions;
// Then search in OverflowSubstitutions.
auto it = OverflowSubstitutions.find(entry);
if (it == OverflowSubstitutions.end())
return -1;
return it->second;
}
void RemanglerBase::addSubstitution(const SubstitutionEntry &entry) {
assert(findSubstitution(entry) < 0);
if (NumInlineSubsts < InlineSubstCapacity) {
// There is still free space in NumInlineSubsts.
assert(OverflowSubstitutions.empty());
InlineSubstitutions[NumInlineSubsts++] = entry;
return;
}
// We have to add the entry to OverflowSubstitutions.
unsigned Idx = OverflowSubstitutions.size() + InlineSubstCapacity;
auto result = OverflowSubstitutions.insert({entry, Idx});
assert(result.second);
(void) result;
}
namespace {
class Remangler : public RemanglerBase {
template <typename Mangler>
friend void Mangle::mangleIdentifier(Mangler &M, StringRef ident);
friend class Mangle::SubstitutionMerging;
const ManglingFlavor Flavor = ManglingFlavor::Default;
const bool UsePunycode = true;
Vector<SubstitutionWord> Words;
Vector<WordReplacement> SubstWordsInIdent;
static const size_t MaxNumWords = 26;
static const unsigned MaxDepth = 1024;
SubstitutionMerging SubstMerging;
// A callback for resolving symbolic references.
SymbolicResolver Resolver;
void addSubstWordsInIdent(const WordReplacement &repl) {
SubstWordsInIdent.push_back(repl, Factory);
}
void addWord(const SubstitutionWord &word) {
Words.push_back(word, Factory);
}
template <typename Mangler>
friend void mangleIdentifier(Mangler &M, StringRef ident);
class EntityContext {
bool AsContext = false;
public:
class ManglingContextRAII {
EntityContext &Ctx;
bool SavedValue;
public:
ManglingContextRAII(EntityContext &ctx)
: Ctx(ctx), SavedValue(ctx.AsContext) {
ctx.AsContext = true;
}
~ManglingContextRAII() {
Ctx.AsContext = SavedValue;
}
};
};
// ###TODO: Consider fixing some of these asserts() to return errors somehow
Node *getSingleChild(Node *node) {
assert(node->getNumChildren() == 1);
return node->getFirstChild();
}
Node *getSingleChild(Node *node, Node::Kind kind) {
Node *Child = getSingleChild(node);
assert(Child->getKind() == kind);
return Child;
}
Node *skipType(Node *node) {
if (node->getKind() == Node::Kind::Type)
return getSingleChild(node);
return node;
}
Node *getChildOfType(Node *node) {
assert(node->getKind() == Node::Kind::Type);
return getSingleChild(node);
}
// Cannot fail
void mangleIndex(Node::IndexType value) {
if (value == 0) {
Buffer << '_';
} else {
Buffer << (value - 1) << '_';
}
}
ManglingError mangleDependentConformanceIndex(Node *node, unsigned depth);
ManglingError mangleChildNodes(Node *node, unsigned depth) {
return mangleNodes(node->begin(), node->end(), depth);
}
ManglingError mangleChildNodesReversed(Node *node, unsigned depth) {
for (size_t Idx = 0, Num = node->getNumChildren(); Idx < Num; ++Idx) {
RETURN_IF_ERROR(mangleChildNode(node, Num - Idx - 1, depth));
}
return ManglingError::Success;
}
void mangleListSeparator(bool &isFirstListItem) {
if (isFirstListItem) {
Buffer << '_';
isFirstListItem = false;
}
}
void mangleEndOfList(bool isFirstListItem) {
if (isFirstListItem)
Buffer << 'y';
}
ManglingError mangleNodes(Node::iterator i, Node::iterator e,
unsigned depth) {
for (; i != e; ++i) {
RETURN_IF_ERROR(mangle(*i, depth));
}
return ManglingError::Success;
}
ManglingError mangleSingleChildNode(Node *node, unsigned depth) {
if (node->getNumChildren() != 1)
return MANGLING_ERROR(ManglingError::MultipleChildNodes, node);
return mangle(*node->begin(), depth);
}
ManglingError mangleChildNode(Node *node, unsigned index, unsigned depth) {
if (index < node->getNumChildren())
return mangle(node->begin()[index], depth);
return ManglingError::Success;
}
ManglingError manglePureProtocol(Node *Proto, unsigned depth) {
Proto = skipType(Proto);
if (mangleStandardSubstitution(Proto))
return ManglingError::Success;
return mangleChildNodes(Proto, depth);
}
ManglingError mangleProtocolList(Node *protocols, Node *superclass,
bool hasExplicitAnyObject, unsigned depth);
bool trySubstitution(Node *node, SubstitutionEntry &entry,
bool treatAsIdentifier = false);
void mangleIdentifierImpl(Node *node, bool isOperator);
bool mangleStandardSubstitution(Node *node);
// Cannot fail
void mangleDependentGenericParamIndex(Node *node,
const char *nonZeroPrefix = "",
char zeroOp = 'z');
ManglingErrorOr<std::pair<int, Node *>> mangleConstrainedType(Node *node,
unsigned depth);
ManglingError mangleFunctionSignature(Node *FuncType, unsigned depth) {
return mangleChildNodesReversed(FuncType, depth);
}
ManglingError mangleGenericSpecializationNode(Node *node,
char specKind,
unsigned depth);
ManglingError mangleAnyNominalType(Node *node, unsigned depth);
ManglingError mangleAnyGenericType(Node *node, StringRef TypeOp,
unsigned depth);
ManglingError mangleGenericArgs(Node *node, char &Separator, unsigned depth,
bool fullSubstitutionMap = false);
ManglingError mangleAnyConstructor(Node *node, char kindOp, unsigned depth);
ManglingError mangleAbstractStorage(Node *node, StringRef accessorCode,
unsigned depth);
ManglingError mangleAnyProtocolConformance(Node *node, unsigned depth);
ManglingError mangleKeyPathThunkHelper(Node *node, StringRef op,
unsigned depth);
ManglingError mangleSILThunkIdentity(Node *node, StringRef op,
unsigned depth);
ManglingError mangleAutoDiffFunctionOrSimpleThunk(Node *node, StringRef op,
unsigned depth);
#define NODE(ID) ManglingError mangle##ID(Node *node, unsigned depth);
#define CONTEXT_NODE(ID) \
ManglingError mangle##ID(Node *node, unsigned depth); \
// ManglingError mangle##ID(Node *node, unsigned depth, EntityContext &ctx);
#include "swift/Demangling/DemangleNodes.def"
public:
Remangler(SymbolicResolver Resolver, NodeFactory &Factory,
ManglingFlavor Flavor)
: RemanglerBase(Factory), Flavor(Flavor), Resolver(Resolver) {}
ManglingError mangle(Node *node, unsigned depth) {
if (depth > Remangler::MaxDepth) {
return MANGLING_ERROR(ManglingError::TooComplex, node);
}
switch (node->getKind()) {
#define NODE(ID) \
case Node::Kind::ID: \
return mangle##ID(node, depth);
#include "swift/Demangling/DemangleNodes.def"
}
return MANGLING_ERROR(ManglingError::BadNodeKind, node);
}
};
bool Remangler::trySubstitution(Node *node, SubstitutionEntry &entry,
bool treatAsIdentifier) {
if (mangleStandardSubstitution(node))
return true;
// Go ahead and initialize the substitution entry.
entry = entryForNode(node, treatAsIdentifier);
int Idx = findSubstitution(entry);
if (Idx < 0)
return false;
if (Idx >= 26) {
Buffer << 'A';
mangleIndex(Idx - 26);
return true;
}
char SubstChar = Idx + 'A';
StringRef Subst(&SubstChar, 1);
if (!SubstMerging.tryMergeSubst(*this, Subst, /*isStandardSubst*/ false)) {
Buffer << 'A' << Subst;
}
return true;
}
void Remangler::mangleIdentifierImpl(Node *node, bool isOperator) {
SubstitutionEntry entry;
if (trySubstitution(node, entry, /*treatAsIdentifier*/ true)) return;
if (isOperator) {
Mangle::mangleIdentifier(*this,
Mangle::translateOperator(node->getText()));
} else {
Mangle::mangleIdentifier(*this, node->getText());
}
addSubstitution(entry);
}
bool Remangler::mangleStandardSubstitution(Node *node) {
if (node->getKind() != Node::Kind::Structure
&& node->getKind() != Node::Kind::Class
&& node->getKind() != Node::Kind::Enum
&& node->getKind() != Node::Kind::Protocol)
return false;
Node *context = node->getFirstChild();
if (context->getKind() != Node::Kind::Module
|| context->getText() != STDLIB_NAME)
return false;
// Ignore private stdlib names
if (node->getChild(1)->getKind() != Node::Kind::Identifier)
return false;
if (auto Subst = getStandardTypeSubst(
node->getChild(1)->getText(), /*allowConcurrencyManglings=*/true)) {
if (!SubstMerging.tryMergeSubst(*this, *Subst, /*isStandardSubst*/ true)) {
Buffer << 'S' << *Subst;
}
return true;
}
return false;
}
void Remangler::mangleDependentGenericParamIndex(Node *node,
const char *nonZeroPrefix,
char zeroOp) {
if (node->getKind() == Node::Kind::ConstrainedExistentialSelf) {
Buffer << 's';
return;
}
auto paramDepth = node->getChild(0)->getIndex();
auto index = node->getChild(1)->getIndex();
if (paramDepth != 0) {
Buffer << nonZeroPrefix << 'd';
mangleIndex(paramDepth - 1);
mangleIndex(index);
return;
}
if (index != 0) {
Buffer << nonZeroPrefix;
mangleIndex(index - 1);
return;
}
// depth == index == 0
Buffer << zeroOp;
}
ManglingErrorOr<std::pair<int, Node *>>
Remangler::mangleConstrainedType(Node *node, unsigned depth) {
if (node->getKind() == Node::Kind::Type)
node = getChildOfType(node);
SubstitutionEntry entry;
if (trySubstitution(node, entry))
return std::pair<int, Node *>{-1, nullptr};
Vector<Node *> Chain;
while (node->getKind() == Node::Kind::DependentMemberType) {
Chain.push_back(node->getChild(1), Factory);
node = getChildOfType(node->getFirstChild());
}
if (node->getKind() != Node::Kind::DependentGenericParamType &&
node->getKind() != Node::Kind::ConstrainedExistentialSelf) {
RETURN_IF_ERROR(mangle(node, depth + 1));
if (!Chain.size())
return std::pair<int, Node *>{-1, nullptr};
node = nullptr;
}
const char *ListSeparator = (Chain.size() > 1 ? "_" : "");
for (unsigned i = 1, n = Chain.size(); i <= n; ++i) {
Node *DepAssocTyRef = Chain[n - i];
RETURN_IF_ERROR(mangle(DepAssocTyRef, depth + 1));
Buffer << ListSeparator;
ListSeparator = "";
}
if (!Chain.empty())
addSubstitution(entry);
return std::pair<int, Node *>{(int)Chain.size(), node};
}
ManglingError Remangler::mangleAnyGenericType(Node *node, StringRef TypeOp,
unsigned depth) {
SubstitutionEntry entry;
if (!trySubstitution(node, entry)) {
RETURN_IF_ERROR(mangleChildNodes(node, depth + 1));
Buffer << TypeOp;
addSubstitution(entry);
}
return ManglingError::Success;
}
ManglingError Remangler::mangleAnyNominalType(Node *node, unsigned depth) {
if (depth > Remangler::MaxDepth) {
return MANGLING_ERROR(ManglingError::TooComplex, node);
}
if (isSpecialized(node)) {
SubstitutionEntry entry;
if (trySubstitution(node, entry))
return ManglingError::Success;
auto unspec = getUnspecialized(node, Factory);
if (!unspec.isSuccess())
return unspec.error();
NodePointer unboundType = unspec.result();
RETURN_IF_ERROR(mangleAnyNominalType(unboundType, depth + 1));
char Separator = 'y';
RETURN_IF_ERROR(mangleGenericArgs(node, Separator, depth + 1));
if (node->getNumChildren() == 3) {
// Retroactive conformances.
auto listNode = node->getChild(2);
for (size_t Idx = 0, Num = listNode->getNumChildren(); Idx < Num; ++Idx) {
RETURN_IF_ERROR(mangle(listNode->getChild(Idx), depth + 1));
}
}
Buffer << 'G';
addSubstitution(entry);
return ManglingError::Success;
}
switch (node->getKind()) {
case Node::Kind::Structure:
return mangleAnyGenericType(node, "V", depth);
case Node::Kind::Enum:
return mangleAnyGenericType(node, "O", depth);
case Node::Kind::Class:
return mangleAnyGenericType(node, "C", depth);
case Node::Kind::OtherNominalType:
return mangleAnyGenericType(node, "XY", depth);
case Node::Kind::TypeAlias:
return mangleAnyGenericType(node, "a", depth);
case Node::Kind::TypeSymbolicReference:
return mangleTypeSymbolicReference(node, depth);
default:
return MANGLING_ERROR(ManglingError::BadNominalTypeKind, node);
}
}
ManglingError Remangler::mangleGenericArgs(Node *node, char &Separator,
unsigned depth,
bool fullSubstitutionMap) {
switch (node->getKind()) {
case Node::Kind::Protocol:
// A protocol cannot be the parent of a nominal type, so this case should
// never be hit by valid swift code. But the indexer might generate a URL
// from invalid swift code, which has a bound generic inside a protocol.
// The ASTMangler treats a protocol like any other nominal type in this
// case, so we also support it in the remangler.
case Node::Kind::Structure:
case Node::Kind::Enum:
case Node::Kind::Class:
case Node::Kind::TypeAlias:
if (node->getKind() == Node::Kind::TypeAlias)
fullSubstitutionMap = true;
RETURN_IF_ERROR(mangleGenericArgs(node->getChild(0), Separator, depth + 1,
fullSubstitutionMap));
Buffer << Separator;
Separator = '_';
break;
case Node::Kind::Function:
case Node::Kind::Getter:
case Node::Kind::Setter:
case Node::Kind::WillSet:
case Node::Kind::DidSet:
case Node::Kind::ReadAccessor:
case Node::Kind::ModifyAccessor:
case Node::Kind::UnsafeAddressor:
case Node::Kind::UnsafeMutableAddressor:
case Node::Kind::Allocator:
case Node::Kind::Constructor:
case Node::Kind::Destructor:
case Node::Kind::Variable:
case Node::Kind::Subscript:
case Node::Kind::ExplicitClosure:
case Node::Kind::ImplicitClosure:
case Node::Kind::DefaultArgumentInitializer:
case Node::Kind::Initializer:
case Node::Kind::PropertyWrapperBackingInitializer:
case Node::Kind::PropertyWrapperInitFromProjectedValue:
case Node::Kind::Static:
if (!fullSubstitutionMap)
break;
RETURN_IF_ERROR(mangleGenericArgs(node->getChild(0), Separator, depth + 1,
fullSubstitutionMap));
if (Demangle::nodeConsumesGenericArgs(node)) {
Buffer << Separator;
Separator = '_';
}
break;
case Node::Kind::BoundGenericOtherNominalType:
case Node::Kind::BoundGenericStructure:
case Node::Kind::BoundGenericEnum:
case Node::Kind::BoundGenericClass:
case Node::Kind::BoundGenericProtocol:
case Node::Kind::BoundGenericTypeAlias: {
if (node->getKind() == Node::Kind::BoundGenericTypeAlias)
fullSubstitutionMap = true;
NodePointer unboundType = node->getChild(0);
DEMANGLER_ASSERT(unboundType->getKind() == Node::Kind::Type, node);
NodePointer nominalType = unboundType->getChild(0);
if (nominalType->getKind() == Node::Kind::TypeSymbolicReference) {
NodePointer resolvedUnboundType = Resolver(SymbolicReferenceKind::Context, (const void *)nominalType->getIndex());
nominalType = resolvedUnboundType->getChild(0);
}
NodePointer parentOrModule = nominalType->getChild(0);
RETURN_IF_ERROR(mangleGenericArgs(parentOrModule, Separator, depth + 1,
fullSubstitutionMap));
Buffer << Separator;
Separator = '_';
RETURN_IF_ERROR(mangleChildNodes(node->getChild(1), depth + 1));
break;
}
case Node::Kind::ConstrainedExistential: {
Buffer << Separator;
Separator = '_';
RETURN_IF_ERROR(mangleChildNodes(node->getChild(1), depth + 1));
break;
}
case Node::Kind::BoundGenericFunction: {
fullSubstitutionMap = true;
NodePointer unboundFunction = node->getChild(0);
DEMANGLER_ASSERT(unboundFunction->getKind() == Node::Kind::Function ||
unboundFunction->getKind() ==
Node::Kind::Constructor,
node);
NodePointer parentOrModule = unboundFunction->getChild(0);
RETURN_IF_ERROR(mangleGenericArgs(parentOrModule, Separator, depth + 1,
fullSubstitutionMap));
Buffer << Separator;
Separator = '_';
RETURN_IF_ERROR(mangleChildNodes(node->getChild(1), depth + 1));
break;
}
case Node::Kind::Extension:
RETURN_IF_ERROR(mangleGenericArgs(node->getChild(1), Separator, depth + 1,
fullSubstitutionMap));
break;
default:
break;
}
return ManglingError::Success;
}
ManglingError Remangler::mangleAbstractStorage(Node *node,
StringRef accessorCode,
unsigned depth) {
RETURN_IF_ERROR(mangleChildNodes(node, depth + 1));
switch (node->getKind()) {
case Node::Kind::Subscript: Buffer << "i"; break;
case Node::Kind::Variable: Buffer << "v"; break;
default:
return MANGLING_ERROR(ManglingError::NotAStorageNode, node);
}
Buffer << accessorCode;
return ManglingError::Success;
}
ManglingError Remangler::mangleAllocator(Node *node, unsigned depth) {
return mangleAnyConstructor(node, 'C', depth + 1);
}
ManglingError Remangler::mangleArgumentTuple(Node *node, unsigned depth) {
Node *Child = skipType(node->getChild(0));
if (Child->getKind() == Node::Kind::Tuple &&
Child->getNumChildren() == 0) {
Buffer << 'y';
return ManglingError::Success;
}
return mangle(Child, depth + 1);
}
ManglingError Remangler::mangleAssociatedType(Node *node, unsigned depth) {
return MANGLING_ERROR(ManglingError::UnsupportedNodeKind, node);
}
ManglingError Remangler::mangleAssociatedTypeRef(Node *node, unsigned depth) {
SubstitutionEntry entry;
if (trySubstitution(node, entry))
return ManglingError::Success;
RETURN_IF_ERROR(mangleChildNodes(node, depth + 1));
Buffer << "Qa";
addSubstitution(entry);
return ManglingError::Success;
}
ManglingError Remangler::mangleAssociatedTypeDescriptor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(mangleChildNodes(node, depth + 1));
Buffer << "Tl";
return ManglingError::Success;
}
ManglingError Remangler::mangleAssociatedConformanceDescriptor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(mangle(node->getChild(0), depth + 1));
RETURN_IF_ERROR(mangle(node->getChild(1), depth + 1));
RETURN_IF_ERROR(manglePureProtocol(node->getChild(2), depth + 1));
Buffer << "Tn";
return ManglingError::Success;
}
ManglingError
Remangler::mangleDefaultAssociatedConformanceAccessor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(mangle(node->getChild(0), depth + 1));
RETURN_IF_ERROR(mangle(node->getChild(1), depth + 1));
RETURN_IF_ERROR(manglePureProtocol(node->getChild(2), depth + 1));
Buffer << "TN";
return ManglingError::Success;
}
ManglingError Remangler::mangleBaseConformanceDescriptor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(mangle(node->getChild(0), depth + 1));
RETURN_IF_ERROR(manglePureProtocol(node->getChild(1), depth + 1));
Buffer << "Tb";
return ManglingError::Success;
}
ManglingError Remangler::mangleAssociatedTypeMetadataAccessor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(
mangleChildNodes(node, depth + 1)); // protocol conformance, identifier
Buffer << "Wt";
return ManglingError::Success;
}
ManglingError
Remangler::mangleDefaultAssociatedTypeMetadataAccessor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(
mangleChildNodes(node, depth + 1)); // protocol conformance, identifier
Buffer << "TM";
return ManglingError::Success;
}
ManglingError
Remangler::mangleAssociatedTypeWitnessTableAccessor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(mangleChildNodes(
node, depth + 1)); // protocol conformance, type, protocol
Buffer << "WT";
return ManglingError::Success;
}
ManglingError Remangler::mangleBaseWitnessTableAccessor(Node *node,
unsigned depth) {
RETURN_IF_ERROR(
mangleChildNodes(node, depth + 1)); // protocol conformance, protocol
Buffer << "Wb";
return ManglingError::Success;
}
ManglingError Remangler::mangleAutoClosureType(Node *node, unsigned depth) {
RETURN_IF_ERROR(
mangleChildNodesReversed(node, depth + 1)); // argument tuple, result type
Buffer << "XK";
return ManglingError::Success;
}
ManglingError Remangler::mangleEscapingAutoClosureType(Node *node,
unsigned depth) {
RETURN_IF_ERROR(
mangleChildNodesReversed(node, depth + 1)); // argument tuple, result type
Buffer << "XA";
return ManglingError::Success;
}
ManglingError Remangler::mangleNoEscapeFunctionType(Node *node,
unsigned depth) {
RETURN_IF_ERROR(
mangleChildNodesReversed(node, depth + 1)); // argument tuple, result type
Buffer << "XE";
return ManglingError::Success;
}
ManglingError Remangler::mangleBoundGenericClass(Node *node, unsigned depth) {
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleBoundGenericEnum(Node *node, unsigned depth) {
Node *Enum = node->getChild(0)->getChild(0);
DEMANGLER_ASSERT(Enum->getKind() == Node::Kind::Enum, node);
Node *Mod = Enum->getChild(0);
Node *Id = Enum->getChild(1);
if (Mod->getKind() == Node::Kind::Module && Mod->getText() == STDLIB_NAME &&
Id->getKind() == Node::Kind::Identifier && Id->getText() == "Optional") {
SubstitutionEntry entry;
if (trySubstitution(node, entry))
return ManglingError::Success;
RETURN_IF_ERROR(mangleSingleChildNode(node->getChild(1), depth + 1));
Buffer << "Sg";
addSubstitution(entry);
return ManglingError::Success;
}
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleBoundGenericStructure(Node *node,
unsigned depth) {
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleBoundGenericOtherNominalType(Node *node,
unsigned depth) {
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleBoundGenericProtocol(Node *node,
unsigned depth) {
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleBoundGenericTypeAlias(Node *node,
unsigned depth) {
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleBoundGenericFunction(Node *node,
unsigned depth) {
SubstitutionEntry entry;
if (trySubstitution(node, entry))
return ManglingError::Success;
auto unspec = getUnspecialized(node, Factory);
if (!unspec.isSuccess())
return unspec.error();
NodePointer unboundFunction = unspec.result();
RETURN_IF_ERROR(mangleFunction(unboundFunction, depth + 1));
char Separator = 'y';
RETURN_IF_ERROR(mangleGenericArgs(node, Separator, depth + 1));
Buffer << 'G';
addSubstitution(entry);
return ManglingError::Success;
}
ManglingError Remangler::mangleBuiltinFixedArray(Node *node, unsigned depth) {
RETURN_IF_ERROR(mangleChildNodes(node, depth + 1));
Buffer << "BV";
return ManglingError::Success;
}
ManglingError Remangler::mangleBuiltinTypeName(Node *node, unsigned depth) {
Buffer << 'B';
StringRef text = node->getText();
if (text == BUILTIN_TYPE_NAME_BRIDGEOBJECT) {
Buffer << 'b';
} else if (text == BUILTIN_TYPE_NAME_UNSAFEVALUEBUFFER) {
Buffer << 'B';
} else if (text == BUILTIN_TYPE_NAME_UNKNOWNOBJECT) {
Buffer << 'O';
} else if (text == BUILTIN_TYPE_NAME_NATIVEOBJECT) {
Buffer << 'o';
} else if (text == BUILTIN_TYPE_NAME_RAWPOINTER) {
Buffer << 'p';
} else if (text == BUILTIN_TYPE_NAME_RAWUNSAFECONTINUATION) {
Buffer << 'c';
} else if (text == BUILTIN_TYPE_NAME_JOB) {
Buffer << 'j';
} else if (text == BUILTIN_TYPE_NAME_DEFAULTACTORSTORAGE) {
Buffer << 'D';
} else if (text == BUILTIN_TYPE_NAME_NONDEFAULTDISTRIBUTEDACTORSTORAGE) {
Buffer << 'd';
} else if (text == BUILTIN_TYPE_NAME_EXECUTOR) {
Buffer << 'e';
} else if (text == BUILTIN_TYPE_NAME_SILTOKEN) {
Buffer << 't';
} else if (text == BUILTIN_TYPE_NAME_INTLITERAL) {
Buffer << 'I';
} else if (text == BUILTIN_TYPE_NAME_WORD) {
Buffer << 'w';
} else if (text == BUILTIN_TYPE_NAME_PACKINDEX) {
Buffer << 'P';
} else if (text.consume_front(BUILTIN_TYPE_NAME_INT)) {
Buffer << 'i' << text << '_';
} else if (text.consume_front(BUILTIN_TYPE_NAME_FLOAT)) {
Buffer << 'f' << text << '_';
} else if (text.consume_front(BUILTIN_TYPE_NAME_VEC)) {
// Avoid using StringRef::split because its definition is not
// provided in the header so that it requires linking with libSupport.a.
size_t splitIdx = text.find('x');
auto element = text.substr(splitIdx).substr(1);
if (element == "RawPointer") {
Buffer << 'p';
} else if (element.consume_front("FPIEEE")) {
Buffer << 'f' << element << '_';
} else if (element.consume_front("Int")) {
Buffer << 'i' << element << '_';
} else {
return MANGLING_ERROR(ManglingError::UnexpectedBuiltinVectorType, node);
}
Buffer << "Bv" << text.substr(0, splitIdx) << '_';
} else {
return MANGLING_ERROR(ManglingError::UnexpectedBuiltinType, node);
}
return ManglingError::Success;
}
ManglingError Remangler::mangleBuiltinTupleType(Node *node, unsigned depth) {
Buffer << "BT";
return ManglingError::Success;
}
ManglingError Remangler::mangleCFunctionPointer(Node *node, unsigned depth) {
if (node->getNumChildren() > 0 &&
node->getFirstChild()->getKind() == Node::Kind::ClangType) {
for (size_t Idx = node->getNumChildren() - 1; Idx >= 1; --Idx) {
RETURN_IF_ERROR(mangleChildNode(node, Idx, depth + 1));
}
Buffer << "XzC";
return mangleClangType(node->getFirstChild(), depth + 1);
}
RETURN_IF_ERROR(
mangleChildNodesReversed(node, depth + 1)); // argument tuple, result type
Buffer << "XC";
return ManglingError::Success;
}
ManglingError Remangler::mangleClass(Node *node, unsigned depth) {
return mangleAnyNominalType(node, depth + 1);
}
ManglingError Remangler::mangleAnyConstructor(Node *node, char kindOp,
unsigned depth) {
RETURN_IF_ERROR(mangleChildNodes(node, depth + 1));
Buffer << "f" << kindOp;
return ManglingError::Success;
}
ManglingError Remangler::mangleConstructor(Node *node, unsigned depth) {
return mangleAnyConstructor(node, 'c', depth);
}
ManglingError Remangler::mangleCoroutineContinuationPrototype(Node *node,