Skip to content

Commit a1d3ac1

Browse files
authored
Merge pull request #72902 from al45tair/eng/PR-125989715-6.0
[Demangler] Further optimizations for the remangler.
2 parents 00dac23 + 313751c commit a1d3ac1

File tree

6 files changed

+112
-61
lines changed

6 files changed

+112
-61
lines changed

include/swift/Demangling/Demangle.h

+49-4
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ class Node {
206206
Kind NodeKind;
207207

208208
enum class PayloadKind : uint8_t {
209-
None, Text, Index, OneChild, TwoChildren, ManyChildren
209+
None = 0, OneChild = 1, TwoChildren = 2,
210+
Text, Index, ManyChildren
210211
};
211212
PayloadKind NodePayloadKind;
212213

@@ -227,6 +228,22 @@ class Node {
227228
public:
228229
Kind getKind() const { return NodeKind; }
229230

231+
bool isSimilarTo(const Node *other) const {
232+
if (NodeKind != other->NodeKind
233+
|| NodePayloadKind != other->NodePayloadKind)
234+
return false;
235+
switch (NodePayloadKind) {
236+
case PayloadKind::ManyChildren:
237+
return Children.Number == other->Children.Number;
238+
case PayloadKind::Index:
239+
return Index == other->Index;
240+
case PayloadKind::Text:
241+
return Text == other->Text;
242+
default:
243+
return true;
244+
}
245+
}
246+
230247
bool hasText() const { return NodePayloadKind == PayloadKind::Text; }
231248
llvm::StringRef getText() const {
232249
assert(hasText());
@@ -241,13 +258,41 @@ class Node {
241258

242259
using iterator = const NodePointer *;
243260

244-
size_t getNumChildren() const;
261+
size_t getNumChildren() const {
262+
switch (NodePayloadKind) {
263+
case PayloadKind::OneChild: return 1;
264+
case PayloadKind::TwoChildren: return 2;
265+
case PayloadKind::ManyChildren: return Children.Number;
266+
default: return 0;
267+
}
268+
}
245269

246270
bool hasChildren() const { return getNumChildren() != 0; }
247271

248-
iterator begin() const;
272+
iterator begin() const {
273+
switch (NodePayloadKind) {
274+
case PayloadKind::OneChild:
275+
case PayloadKind::TwoChildren:
276+
return &InlineChildren[0];
277+
case PayloadKind::ManyChildren:
278+
return Children.Nodes;
279+
default:
280+
return nullptr;
281+
}
282+
}
249283

250-
iterator end() const;
284+
iterator end() const {
285+
switch (NodePayloadKind) {
286+
case PayloadKind::OneChild:
287+
return &InlineChildren[1];
288+
case PayloadKind::TwoChildren:
289+
return &InlineChildren[2];
290+
case PayloadKind::ManyChildren:
291+
return Children.Nodes + Children.Number;
292+
default:
293+
return nullptr;
294+
}
295+
}
251296

252297
NodePointer getFirstChild() const {
253298
return getChild(0);

lib/Demangling/Demangler.cpp

+54-36
Original file line numberDiff line numberDiff line change
@@ -354,40 +354,6 @@ using namespace Demangle;
354354
// Node member functions //
355355
//////////////////////////////////
356356

357-
size_t Node::getNumChildren() const {
358-
switch (NodePayloadKind) {
359-
case PayloadKind::OneChild: return 1;
360-
case PayloadKind::TwoChildren: return 2;
361-
case PayloadKind::ManyChildren: return Children.Number;
362-
default: return 0;
363-
}
364-
}
365-
366-
Node::iterator Node::begin() const {
367-
switch (NodePayloadKind) {
368-
case PayloadKind::OneChild:
369-
case PayloadKind::TwoChildren:
370-
return &InlineChildren[0];
371-
case PayloadKind::ManyChildren:
372-
return Children.Nodes;
373-
default:
374-
return nullptr;
375-
}
376-
}
377-
378-
Node::iterator Node::end() const {
379-
switch (NodePayloadKind) {
380-
case PayloadKind::OneChild:
381-
return &InlineChildren[1];
382-
case PayloadKind::TwoChildren:
383-
return &InlineChildren[2];
384-
case PayloadKind::ManyChildren:
385-
return Children.Nodes + Children.Number;
386-
default:
387-
return nullptr;
388-
}
389-
}
390-
391357
void Node::addChild(NodePointer Child, NodeFactory &Factory) {
392358
DEMANGLER_ALWAYS_ASSERT(Child, this);
393359
switch (NodePayloadKind) {
@@ -635,6 +601,58 @@ NodePointer NodeFactory::createNode(Node::Kind K, const char *Text) {
635601
int NodeFactory::nestingLevel = 0;
636602
#endif
637603

604+
// Fast integer formatting
605+
namespace {
606+
607+
// Format an unsigned integer into a buffer
608+
template <typename U,
609+
typename std::enable_if<std::is_unsigned<U>::value, bool>::type = true>
610+
size_t int2str(U n, char *buf) {
611+
// The easy case is zero
612+
if (n == 0) {
613+
*buf++ = '0';
614+
*buf++ = '\0';
615+
return 1;
616+
}
617+
618+
// Do the digits one a time (for really high speed we could do these in
619+
// chunks, but that's probably not necessary here.)
620+
char *ptr = buf;
621+
while (n) {
622+
char digit = '0' + (n % 10);
623+
n /= 10;
624+
*ptr++ = digit;
625+
}
626+
size_t len = ptr - buf;
627+
628+
// Terminate the string
629+
*ptr = '\0';
630+
631+
// Now reverse the digits
632+
while (buf < ptr) {
633+
char tmp = *--ptr;
634+
*ptr = *buf;
635+
*buf++ = tmp;
636+
}
637+
638+
return len;
639+
}
640+
641+
// Deal with negative numbers
642+
template <typename S,
643+
typename std::enable_if<std::is_signed<S>::value, bool>::type = true>
644+
size_t int2str(S n, char *buf) {
645+
using U = typename std::make_unsigned<S>::type;
646+
647+
if (n < 0) {
648+
*buf++ = '-';
649+
return int2str(static_cast<U>(-n), buf);
650+
}
651+
return int2str(static_cast<U>(n), buf);
652+
}
653+
654+
} // namespace
655+
638656
//////////////////////////////////
639657
// CharVector member functions //
640658
//////////////////////////////////
@@ -651,7 +669,7 @@ void CharVector::append(int Number, NodeFactory &Factory) {
651669
const int MaxIntPrintSize = 11;
652670
if (NumElems + MaxIntPrintSize > Capacity)
653671
Factory.Reallocate(Elems, Capacity, /*Growth*/ MaxIntPrintSize);
654-
int Length = snprintf(Elems + NumElems, MaxIntPrintSize, "%d", Number);
672+
int Length = int2str(Number, Elems + NumElems);
655673
assert(Length > 0 && Length < MaxIntPrintSize);
656674
NumElems += Length;
657675
}
@@ -660,7 +678,7 @@ void CharVector::append(unsigned long long Number, NodeFactory &Factory) {
660678
const int MaxPrintSize = 21;
661679
if (NumElems + MaxPrintSize > Capacity)
662680
Factory.Reallocate(Elems, Capacity, /*Growth*/ MaxPrintSize);
663-
int Length = snprintf(Elems + NumElems, MaxPrintSize, "%llu", Number);
681+
int Length = int2str(Number, Elems + NumElems);
664682
assert(Length > 0 && Length < MaxPrintSize);
665683
NumElems += Length;
666684
}

lib/Demangling/Remangler.cpp

+1-17
Original file line numberDiff line numberDiff line change
@@ -60,23 +60,7 @@ bool SubstitutionEntry::identifierEquals(Node *lhs, Node *rhs) {
6060
}
6161

6262
bool SubstitutionEntry::deepEquals(Node *lhs, Node *rhs) const {
63-
if (lhs->getKind() != rhs->getKind())
64-
return false;
65-
if (lhs->hasIndex()) {
66-
if (!rhs->hasIndex())
67-
return false;
68-
if (lhs->getIndex() != rhs->getIndex())
69-
return false;
70-
} else if (lhs->hasText()) {
71-
if (!rhs->hasText())
72-
return false;
73-
if (lhs->getText() != rhs->getText())
74-
return false;
75-
} else if (rhs->hasIndex() || rhs->hasText()) {
76-
return false;
77-
}
78-
79-
if (lhs->getNumChildren() != rhs->getNumChildren())
63+
if (!lhs->isSimilarTo(rhs))
8064
return false;
8165

8266
for (auto li = lhs->begin(), ri = rhs->begin(), le = lhs->end();
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Error: (3:74) unable to re-mangle $sBf32__t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_tN
1+
Error: (pos) unable to re-mangle $sBf32__t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_tN
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Error: (3:408) unable to re-mangle $sBf32__t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_tN
1+
Error: (pos) unable to re-mangle $sBf32__t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_t_tN

test/Demangle/recursion-limit.swift

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
; This is not really a Swift source file: -*- Text -*-
22

3+
; We need sed, so Windows is out
4+
UNSUPPORTED: OS=windows-msvc
5+
36
RUN: swift-demangle < %S/Inputs/bigtype.txt 2>&1 > %t.check
47
RUN: %diff -u %S/Inputs/bigtype-demangle.txt %t.check
58

6-
RUN: swift-demangle -remangle-new < %S/Inputs/bigtype.txt > %t.check 2>&1 || true
9+
RUN: swift-demangle -remangle-new < %S/Inputs/bigtype.txt 2>&1 | sed 's/([0-9]*:[0-9]*)/(pos)/g' > %t.check || true
710
RUN: %diff -u %S/Inputs/bigtype-remangle.txt %t.check
811

9-
RUN: swift-demangle -remangle-objc-rt < %S/Inputs/bigtype.txt > %t.check 2>&1 || true
12+
RUN: swift-demangle -remangle-objc-rt < %S/Inputs/bigtype.txt 2>&1 | sed 's/([0-9]*:[0-9]*)/(pos)/g' > %t.check || true
1013
RUN: %diff -u %S/Inputs/bigtype-objcrt.txt %t.check
14+

0 commit comments

Comments
 (0)