-
Notifications
You must be signed in to change notification settings - Fork 334
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
[lldb] Add summary formatter for Swift Task #10265
[lldb] Add summary formatter for Swift Task #10265
Conversation
This change vertically condenses how a `Task` is displayed, by hiding the boolean members (ex `isRunning`) and placing those flags in the summary string. The synthetic formatter continues to expose these (and only these) 4 children: * `address` * `id` * `enqueuePriority` * `children` The flags are pipe (`|`) delimited, matching the format used by `swift-inspect`. This change also removes the `Task`'s `kind` field, which currently relevant only in special cases. See `JobKind` in `MetadataValues.h`.
@swift-ci test |
@swift-ci test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! I think other formatters may use =
instead of :
, but I have no strong opinion either way.
case 1: { | ||
// TypeMangling for "Swift.UInt64" | ||
CompilerType uint64_type = | ||
m_ts->GetTypeFromMangledTypename(ConstString("$ss6UInt64VD")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is TypeSystem::GetPointersizedIntType()
, but generally having a helper to get a uint64 in typesystemswift would make sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It appears this is only in TypeSystemClang
, but seems reasonable to add to Swift separately.
mangledTypenameForTasksTuple(tasks.size()); | ||
CompilerType tasks_tuple_type = | ||
m_ts->GetTypeFromMangledTypename(ConstString(mangled_typename)); | ||
DataExtractor data{tasks.data(), tasks.size() * sizeof(tasks[0]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you're not really dereferencing it, but the access to tasks[0] without checking size() makes me uneasy. Why not just use the type name here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used tasks[0]
to avoid hard coding the type – which would leave the potential of skew in future changes (if for example the element of tasks
were changed.
I'll refactor this to another way to achieve the same.
I started with Example:
And it can look worse (imo) for child tasks:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
@swift-ci test |
This change vertically condenses how a `Task` is displayed, by hiding the boolean members (ex `isRunning`) and placing those flags in the summary string. The synthetic formatter continues to expose these (and only these) 4 children: * `address` * `id` * `enqueuePriority` * `children` The flags are pipe (`|`) delimited, matching the format used by `swift-inspect`. Here's an example of output when printing a `Task`: ``` (Task<(), Error>) task = id:2 flags:enqueued|future { address = 0x14b604490 id = 2 enqueuePriority = .medium children = {} } ``` This change also removes the `Task`'s `kind` field, which currently relevant only in special cases. See `JobKind` in `MetadataValues.h`. (cherry-picked from commit a7714ed)
This change vertically condenses how a `Task` is displayed, by hiding the boolean members (ex `isRunning`) and placing those flags in the summary string. The synthetic formatter continues to expose these (and only these) 4 children: * `address` * `id` * `enqueuePriority` * `children` The flags are pipe (`|`) delimited, matching the format used by `swift-inspect`. Here's an example of output when printing a `Task`: ``` (Task<(), Error>) task = id:2 flags:enqueued|future { address = 0x14b604490 id = 2 enqueuePriority = .medium children = {} } ``` This change also removes the `Task`'s `kind` field, which currently relevant only in special cases. See `JobKind` in `MetadataValues.h`. (cherry-picked from commit a7714ed)
This change vertically condenses how a
Task
is displayed, by hiding the booleanmembers (ex
isRunning
) and placing those flags in the summary string.The synthetic formatter continues to expose these (and only these) 4 children:
address
id
enqueuePriority
children
The flags are pipe (
|
) delimited, matching the format used byswift-inspect
.Here's an example of output when printing a
Task
:This change also removes the
Task
'skind
field, which currently relevant only inspecial cases. See
JobKind
inMetadataValues.h
.