Skip to content

Demangling: Add option for printing simplified async resume functions #37013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/swift/Demangling/Demangle.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ struct DemangleOptions {
bool DisplayStdlibModule = true;
bool DisplayObjCModule = true;
bool PrintForTypeName = false;
bool ShowAsyncResumePartial = true;

/// If this is nonempty, entities in this module name will not be qualified.
llvm::StringRef HidingCurrentModule;
Expand Down
20 changes: 12 additions & 8 deletions lib/Demangling/NodePrinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2812,16 +2812,20 @@ NodePointer NodePrinter::print(NodePointer Node, bool asPrefixContext) {
Printer << "async function pointer to ";
return nullptr;
case Node::Kind::AsyncAwaitResumePartialFunction:
Printer << "(";
print(Node->getChild(0));
Printer << ")";
Printer << " await resume partial function for ";
if (Options.ShowAsyncResumePartial) {
Printer << "(";
print(Node->getChild(0));
Printer << ")";
Printer << " await resume partial function for ";
}
return nullptr;
case Node::Kind::AsyncSuspendResumePartialFunction:
Printer << "(";
print(Node->getChild(0));
Printer << ")";
Printer << " suspend resume partial function for ";
if (Options.ShowAsyncResumePartial) {
Printer << "(";
print(Node->getChild(0));
Printer << ")";
Printer << " suspend resume partial function for ";
}
return nullptr;
}

Expand Down