Skip to content

Commit e629404

Browse files
authored
Rollup merge of rust-lang#98301 - ortem:pretty-printers-nonzero, r=Mark-Simulacrum
Add GDB/LLDB pretty-printers for NonZero types Add GDB/LLDB pretty-printers for `NonZero` types. These pretty-printers were originally implemented for IntelliJ Rust by `@Kobzol` in intellij-rust/intellij-rust#5270. Part of rust-lang#29392.
2 parents 436bb62 + 0bc536e commit e629404

File tree

8 files changed

+114
-1
lines changed

8 files changed

+114
-1
lines changed

src/etc/gdb_lookup.py

+3
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,7 @@ def lookup(valobj):
8989
if rust_type == RustType.STD_REF_CELL:
9090
return StdRefCellProvider(valobj)
9191

92+
if rust_type == RustType.STD_NONZERO_NUMBER:
93+
return StdNonZeroNumberProvider(valobj)
94+
9295
return None

src/etc/gdb_providers.py

+11
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,17 @@ def children(self):
231231
yield "borrow", self.borrow
232232

233233

234+
class StdNonZeroNumberProvider:
235+
def __init__(self, valobj):
236+
fields = valobj.type.fields()
237+
assert len(fields) == 1
238+
field = list(fields)[0]
239+
self.value = str(valobj[field.name])
240+
241+
def to_string(self):
242+
return self.value
243+
244+
234245
# Yields children (in a provider's sense of the word) for a BTreeMap.
235246
def children_of_btree_map(map):
236247
# Yields each key/value pair in the node and in any child nodes.

src/etc/lldb_commands

+1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)C
1515
type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)Ref<.+>$" --category Rust
1616
type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefMut<.+>$" --category Rust
1717
type summary add -F lldb_lookup.summary_lookup -e -x -h "^(core::([a-z_]+::)+)RefCell<.+>$" --category Rust
18+
type summary add -F lldb_lookup.summary_lookup -e -x -h "^core::num::([a-z_]+::)*NonZero.+$" --category Rust
1819
type category enable Rust

src/etc/lldb_lookup.py

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ def summary_lookup(valobj, dict):
5555
if rust_type == RustType.STD_REF_CELL:
5656
return StdRefSummaryProvider(valobj, dict)
5757

58+
if rust_type == RustType.STD_NONZERO_NUMBER:
59+
return StdNonZeroNumberSummaryProvider(valobj, dict)
60+
5861
return ""
5962

6063

src/etc/lldb_providers.py

+8
Original file line numberDiff line numberDiff line change
@@ -739,3 +739,11 @@ def update(self):
739739
def has_children(self):
740740
# type: () -> bool
741741
return True
742+
743+
744+
def StdNonZeroNumberSummaryProvider(valobj, _dict):
745+
# type: (SBValue, dict) -> str
746+
objtype = valobj.GetType()
747+
field = objtype.GetFieldAtIndex(0)
748+
element = valobj.GetChildMemberWithName(field.name)
749+
return element.GetValue()

src/etc/rust_types.py

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class RustType(object):
3131
STD_REF = "StdRef"
3232
STD_REF_MUT = "StdRefMut"
3333
STD_REF_CELL = "StdRefCell"
34+
STD_NONZERO_NUMBER = "StdNonZeroNumber"
3435

3536

3637
STD_STRING_REGEX = re.compile(r"^(alloc::(\w+::)+)String$")
@@ -49,6 +50,7 @@ class RustType(object):
4950
STD_REF_REGEX = re.compile(r"^(core::(\w+::)+)Ref<.+>$")
5051
STD_REF_MUT_REGEX = re.compile(r"^(core::(\w+::)+)RefMut<.+>$")
5152
STD_REF_CELL_REGEX = re.compile(r"^(core::(\w+::)+)RefCell<.+>$")
53+
STD_NONZERO_NUMBER_REGEX = re.compile(r"^core::num::([a-z_]+::)*NonZero.+$")
5254

5355
TUPLE_ITEM_REGEX = re.compile(r"__\d+$")
5456

@@ -72,6 +74,7 @@ class RustType(object):
7274
RustType.STD_REF_MUT: STD_REF_MUT_REGEX,
7375
RustType.STD_REF_CELL: STD_REF_CELL_REGEX,
7476
RustType.STD_CELL: STD_CELL_REGEX,
77+
RustType.STD_NONZERO_NUMBER: STD_NONZERO_NUMBER_REGEX,
7578
}
7679

7780
def is_tuple_fields(fields):

src/test/debuginfo/numeric-types.rs

+84-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// only-cdb
21
// compile-flags:-g
32

43
// Tests the visualizations for `NonZero{I,U}{8,16,32,64,128,size}`, `Wrapping<T>` and
@@ -153,6 +152,90 @@
153152
// cdb-check:a_usize : 0x400 [Type: core::sync::atomic::AtomicUsize]
154153
// cdb-check: [<Raw View>] [Type: core::sync::atomic::AtomicUsize]
155154

155+
156+
// === GDB TESTS ===================================================================================
157+
158+
// gdb-command:run
159+
160+
// gdb-command:print nz_i8
161+
// gdbg-check:[...]$1 = 11
162+
163+
// gdb-command:print nz_i16
164+
// gdbg-check:[...]$2 = 22
165+
166+
// gdb-command:print nz_i32
167+
// gdbg-check:[...]$3 = 33
168+
169+
// gdb-command:print nz_i64
170+
// gdbg-check:[...]$4 = 44
171+
172+
// gdb-command:print nz_i128
173+
// gdbg-check:[...]$5 = 55
174+
175+
// gdb-command:print nz_isize
176+
// gdbg-check:[...]$6 = 66
177+
178+
// gdb-command:print nz_u8
179+
// gdbg-check:[...]$7 = 77
180+
181+
// gdb-command:print nz_u16
182+
// gdbg-check:[...]$8 = 88
183+
184+
// gdb-command:print nz_u32
185+
// gdbg-check:[...]$9 = 99
186+
187+
// gdb-command:print nz_u64
188+
// gdbg-check:[...]$10 = 100
189+
190+
// gdb-command:print nz_u128
191+
// gdbg-check:[...]$11 = 111
192+
193+
// gdb-command:print nz_usize
194+
// gdbg-check:[...]$12 = 122
195+
196+
197+
198+
// === LLDB TESTS ==================================================================================
199+
200+
// lldb-command:run
201+
202+
// lldb-command:print nz_i8
203+
// lldb-check:[...]$0 = 11
204+
205+
// lldb-command:print nz_i16
206+
// lldb-check:[...]$1 = 22
207+
208+
// lldb-command:print nz_i32
209+
// lldb-check:[...]$2 = 33
210+
211+
// lldb-command:print nz_i64
212+
// lldb-check:[...]$3 = 44
213+
214+
// lldb-command:print nz_i128
215+
// lldb-check:[...]$4 = 55
216+
217+
// lldb-command:print nz_isize
218+
// lldb-check:[...]$5 = 66
219+
220+
// lldb-command:print nz_u8
221+
// lldb-check:[...]$6 = 77
222+
223+
// lldb-command:print nz_u16
224+
// lldb-check:[...]$7 = 88
225+
226+
// lldb-command:print nz_u32
227+
// lldb-check:[...]$8 = 99
228+
229+
// lldb-command:print nz_u64
230+
// lldb-check:[...]$9 = 100
231+
232+
// lldb-command:print nz_u128
233+
// lldb-check:[...]$10 = 111
234+
235+
// lldb-command:print nz_usize
236+
// lldb-check:[...]$11 = 122
237+
238+
156239
use std::num::*;
157240
use std::sync::atomic::*;
158241

src/tools/compiletest/src/runtest.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1094,6 +1094,7 @@ impl<'test> TestCx<'test> {
10941094
"^(core::([a-z_]+::)+)Ref<.+>$",
10951095
"^(core::([a-z_]+::)+)RefMut<.+>$",
10961096
"^(core::([a-z_]+::)+)RefCell<.+>$",
1097+
"^core::num::([a-z_]+::)*NonZero.+$",
10971098
];
10981099

10991100
script_str

0 commit comments

Comments
 (0)