-
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 9 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,53 @@ | ||
| //===----------------------------------------------------------------------===// | ||
| // | ||
| // This source file is part of the Swift Collections open source project | ||
| // | ||
| // Copyright (c) 2024 - 2026 Apple Inc. and the Swift project authors | ||
| // Licensed under Apache License v2.0 with Runtime Library Exception | ||
| // | ||
| // See https://swift.org/LICENSE.txt for license information | ||
| // | ||
| // SPDX-License-Identifier: Apache-2.0 WITH Swift-exception | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| // Generated with: ./Utils/Debugger/generate_formatters.sh | ||
|
|
||
| #if swift(>=6.3) | ||
| #if objectFormat(MachO) | ||
| @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, UInt8, UInt8, UInt8) = ( | ||
|
||
| // version | ||
| 0x01, | ||
| // remaining record size | ||
| 0x62, | ||
| // 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 | ||
| 0x2a, | ||
| // 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, 0x21, 0x01, 0x13, | ||
| // 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,41 @@ | ||||||
| #!/usr/bin/env python3 | ||||||
| ##===----------------------------------------------------------------------===## | ||||||
| ## | ||||||
| ## This source file is part of the Swift Collections open source project | ||||||
| ## | ||||||
| ## Copyright (c) YEARS Apple Inc. and the Swift project authors | ||||||
|
||||||
| ## Copyright (c) YEARS Apple Inc. and the Swift project authors | |
| ## Copyright (c) 2026 Apple Inc. and the Swift project authors |
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.
done
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,13 @@ | ||||||
| //===----------------------------------------------------------------------===// | ||||||
| // | ||||||
| // This source file is part of the Swift Collections open source project | ||||||
| // | ||||||
| // Copyright (c) 2024 - 2026 Apple Inc. and the Swift project authors | ||||||
|
||||||
| // Copyright (c) 2024 - 2026 Apple Inc. and the Swift project authors | |
| // Copyright (c) 2026 Apple Inc. and the Swift project authors |
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.
done
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| #!/bin/bash | ||
| #===---------------------------------------------------------------------- | ||
| # | ||
| # This source file is part of the Swift Collections open source project | ||
| # | ||
| # Copyright (c) 2022 - 2026 Apple Inc. and the Swift project authors | ||
| # Licensed under Apache License v2.0 with Runtime Library Exception | ||
| # | ||
| # See https://swift.org/LICENSE.txt for license information | ||
| # | ||
| #===---------------------------------------------------------------------- | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| COMPILER_VERSION="f74f32b529c35531198621fd104cde5d2cf77e0c" | ||
|
|
||
| base=$(git rev-parse --show-toplevel) | ||
|
|
||
| # Download formatter_bytecode.py compiler to a temp file | ||
| compiler=$(mktemp /tmp/formatter_bytecode.XXXXXX) | ||
| trap 'rm -f "$compiler"' EXIT | ||
| curl -fsSL \ | ||
| "https://raw.githubusercontent.com/llvm/llvm-project/$COMPILER_VERSION/lldb/examples/python/formatter_bytecode.py" \ | ||
| -o "$compiler" | ||
|
||
|
|
||
| for formatter in "$base/Utils/Debugger/Formatters"/*.py; do | ||
| type_name=$(basename "$formatter" .py) | ||
|
|
||
| # Find the corresponding Swift source file under Sources/ | ||
| swift_file=$(find "$base/Sources" -name "${type_name}.swift" | head -1) | ||
| if [[ -z "$swift_file" ]]; then | ||
| echo "Warning: No Swift source file found for ${type_name}, skipping" >&2 | ||
| continue | ||
| fi | ||
|
|
||
| # Derive the module name from the first path component under Sources/ | ||
| rel_path="${swift_file#"$base/Sources/"}" | ||
| module=$(cut -d/ -f1 <<< "$rel_path") | ||
|
|
||
| # Output file sits next to the source file | ||
| target="$(dirname "$swift_file")/${type_name}+Formatter.swift" | ||
|
|
||
| echo "Compiling ${type_name} (module: ${module}) -> ${target}" | ||
|
|
||
| # Add header(license), and document this script's invocation. | ||
| cp "$base/Utils/Debugger/HEADER.swift" "$target" | ||
| echo "// Generated with: $0" "$@" >> "$target" | ||
| echo >> "$target" | ||
|
|
||
| python3 "$compiler" --compile \ | ||
| --format swift \ | ||
| --type-name "^${module}[.]${type_name}<.+>$" \ | ||
| --append --output "$target" \ | ||
| "$formatter" | ||
| done | ||
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.