Skip to content
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

Merged

Conversation

kastiglione
Copy link

@kastiglione kastiglione commented Mar 15, 2025

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.

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`.
@kastiglione kastiglione requested a review from a team as a code owner March 15, 2025 01:54
@kastiglione
Copy link
Author

@swift-ci test

@kastiglione
Copy link
Author

@swift-ci test

Copy link

@adrian-prantl adrian-prantl left a 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"));

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.

Copy link
Author

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]),

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?

Copy link
Author

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.

@kastiglione
Copy link
Author

I think other formatters may use = instead of :

I started with = but when I saw the result I switched to :. I thought the = was getting overused.

Example:

(Task<(), Error>) task = id=2 flags=enqueued|future {

And it can look worse (imo) for child tasks:

  0 = id=2 flags=enqueued|future {
    ...
  }

Copy link

@felipepiovezan felipepiovezan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

@kastiglione
Copy link
Author

@swift-ci test

@kastiglione kastiglione merged commit a7714ed into stable/20240723 Mar 17, 2025
3 checks passed
@kastiglione kastiglione deleted the dl/lldb-Add-summary-formatter-for-Swift-Task branch March 17, 2025 23:40
kastiglione added a commit that referenced this pull request Mar 19, 2025
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)
kastiglione added a commit that referenced this pull request Mar 19, 2025
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants