-
Notifications
You must be signed in to change notification settings - Fork 369
[Debugging] Add lldb data formatter for RigidArray #607
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
base: main
Are you sure you want to change the base?
Changes from 5 commits
01f2c91
e6bfc56
43c367c
4e38902
a4bbcdd
a6cefb8
7d721cb
86d184d
3d4a9de
f93d09e
a2c6704
c8734cb
6ac9e45
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| #if swift(>=6.3) | ||
| #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS) || os(visionOS) | ||
| @section("__DATA_CONST,__lldbformatters") | ||
| #else | ||
| @section(".lldbformatters") | ||
| #endif | ||
|
||
| @used | ||
| let __BasicContainers___RigidArray______formatter: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) = ( | ||
|
||
| // version | ||
| 0x01, | ||
| // remaining record size | ||
| 0x5f, | ||
| // type name size | ||
| 0x22, | ||
| // type name | ||
| 0x5e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x73, 0x5b, 0x2e, 0x5d, 0x52, 0x69, 0x67, 0x69, 0x64, 0x41, 0x72, 0x72, 0x61, 0x79, 0x3c, 0x2e, 0x2b, 0x3e, 0x24, | ||
| // flags | ||
| 0x00, | ||
| // sig_update | ||
| 0x06, | ||
| // program size | ||
| 0x27, | ||
| // program | ||
| 0x20, 0x00, 0x03, 0x22, 0x08, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x23, 0x12, 0x60, 0x23, 0x18, 0x60, 0x20, 0x00, 0x03, 0x22, 0x06, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x23, 0x12, 0x60, 0x23, 0x18, 0x60, 0x23, 0x21, 0x60, | ||
| // sig_get_num_children | ||
| 0x02, | ||
| // program size | ||
| 0x04, | ||
| // program | ||
| 0x20, 0x02, 0x03, 0x13, | ||
| // sig_get_child_at_index | ||
| 0x04, | ||
| // program size | ||
| 0x0a, | ||
| // program | ||
| 0x20, 0x01, 0x03, 0x20, 0x03, 0x03, 0x23, 0x11, 0x60, 0x13 | ||
| ) | ||
| #endif | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| import lldb | ||
|
|
||
|
|
||
| class RigidArraySynthetic: | ||
| valobj: lldb.SBValue | ||
| storage: lldb.SBValue | ||
| count: int | ||
|
|
||
| def __init__(self, valobj: lldb.SBValue, _) -> None: | ||
| self.valobj = valobj | ||
|
|
||
| def num_children(self) -> int: | ||
| return self.count | ||
|
|
||
| def get_child_at_index(self, idx: int) -> lldb.SBValue: | ||
| return self.storage.GetChildAtIndex(idx) | ||
|
|
||
| def update(self) -> None: | ||
| self.storage = self.valobj.GetChildMemberWithName( | ||
| "_storage" | ||
| ).GetSyntheticValue() | ||
| self.count = ( | ||
| self.valobj.GetChildMemberWithName("_count") | ||
| .GetSyntheticValue() | ||
| .GetValueAsUnsigned() | ||
| ) |
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.
What do you think about adding either a comment at the top of this file with instructions for how to regenerate it from the python source?
I guess that could even be a feature of the compiler script...
Uh oh!
There was an error while loading. Please reload this page.
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.
A comment is now added as part of the new
generate_formatters.shscript.