2014-10-09 09:31:03 -05:00
|
|
|
//@ min-lldb-version: 310
|
2013-11-04 00:53:01 -06:00
|
|
|
|
2014-02-06 21:57:09 -06:00
|
|
|
//@ compile-flags:-g
|
2014-07-09 07:46:09 -05:00
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:run
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print variable
|
|
|
|
// gdb-check:$1 = 1
|
|
|
|
// gdb-command:print constant
|
|
|
|
// gdb-check:$2 = 2
|
|
|
|
// gdb-command:print a_struct
|
2016-10-25 16:32:04 -05:00
|
|
|
// gdbg-check:$3 = {a = -3, b = 4.5, c = 5}
|
|
|
|
// gdbr-check:$3 = var_captured_in_nested_closure::Struct {a: -3, b: 4.5, c: 5}
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *struct_ref
|
2016-10-25 16:32:04 -05:00
|
|
|
// gdbg-check:$4 = {a = -3, b = 4.5, c = 5}
|
|
|
|
// gdbr-check:$4 = var_captured_in_nested_closure::Struct {a: -3, b: 4.5, c: 5}
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *owned
|
|
|
|
// gdb-check:$5 = 6
|
|
|
|
// gdb-command:print closure_local
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$6 = 8
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:continue
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print variable
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$7 = 1
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print constant
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$8 = 2
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print a_struct
|
2016-10-25 16:32:04 -05:00
|
|
|
// gdbg-check:$9 = {a = -3, b = 4.5, c = 5}
|
|
|
|
// gdbr-check:$9 = var_captured_in_nested_closure::Struct {a: -3, b: 4.5, c: 5}
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *struct_ref
|
2016-10-25 16:32:04 -05:00
|
|
|
// gdbg-check:$10 = {a = -3, b = 4.5, c = 5}
|
|
|
|
// gdbr-check:$10 = var_captured_in_nested_closure::Struct {a: -3, b: 4.5, c: 5}
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print *owned
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$11 = 6
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print closure_local
|
2014-10-02 17:12:58 -05:00
|
|
|
// gdb-check:$12 = 8
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:continue
|
2013-09-03 11:23:59 -05:00
|
|
|
|
2014-07-09 07:46:09 -05:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v variable
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 1
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) variable = 1
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v constant
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 2
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) constant = 2
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v a_struct
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] { a = -3 b = 4.5 c = 5 }
|
2019-05-14 07:50:58 -05:00
|
|
|
// lldbr-check:(var_captured_in_nested_closure::Struct) a_struct = { a = -3 b = 4.5 c = 5 }
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *struct_ref
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] { a = -3 b = 4.5 c = 5 }
|
2019-05-14 07:50:58 -05:00
|
|
|
// lldbr-check:(var_captured_in_nested_closure::Struct) *struct_ref = { a = -3 b = 4.5 c = 5 }
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *owned
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 6
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) *owned = 6
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v closure_local
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 8
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) closure_local = 8
|
2014-07-09 07:46:09 -05:00
|
|
|
// lldb-command:continue
|
|
|
|
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v variable
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 1
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) variable = 1
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v constant
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 2
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) constant = 2
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v a_struct
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] { a = -3 b = 4.5 c = 5 }
|
2019-05-14 07:50:58 -05:00
|
|
|
// lldbr-check:(var_captured_in_nested_closure::Struct) a_struct = { a = -3 b = 4.5 c = 5 }
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *struct_ref
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] { a = -3 b = 4.5 c = 5 }
|
2019-05-14 07:50:58 -05:00
|
|
|
// lldbr-check:(var_captured_in_nested_closure::Struct) *struct_ref = { a = -3 b = 4.5 c = 5 }
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v *owned
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 6
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) *owned = 6
|
2024-03-15 09:05:57 -05:00
|
|
|
// lldb-command:v closure_local
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldbg-check:[...] 8
|
2018-10-02 11:13:30 -05:00
|
|
|
// lldbr-check:(isize) closure_local = 8
|
2014-07-09 07:46:09 -05:00
|
|
|
// lldb-command:continue
|
|
|
|
|
2021-04-06 12:34:17 -05:00
|
|
|
|
|
|
|
// === CDB TESTS ===================================================================================
|
|
|
|
|
|
|
|
// cdb-command: g
|
|
|
|
|
|
|
|
// cdb-command: dx variable
|
|
|
|
// cdb-check:variable : 1 [Type: [...]]
|
|
|
|
// cdb-command: dx constant
|
|
|
|
// cdb-check:constant : 2 [Type: [...]]
|
|
|
|
// cdb-command: dx a_struct
|
|
|
|
// cdb-check:a_struct [Type: var_captured_in_nested_closure::Struct]
|
|
|
|
// cdb-check: [+0x[...]] a : -3 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] b : 4.500000 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] c : 0x5 [Type: unsigned [...]]
|
|
|
|
// cdb-command: dx struct_ref
|
|
|
|
// cdb-check:struct_ref : 0x[...] [Type: var_captured_in_nested_closure::Struct *]
|
|
|
|
// cdb-check: [+0x[...]] a : -3 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] b : 4.500000 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] c : 0x5 [Type: unsigned [...]]
|
|
|
|
// cdb-command: dx owned
|
|
|
|
// cdb-check:owned : 0x[...] : 6 [Type: [...] *]
|
|
|
|
// cdb-check: 6 [Type: [...]]
|
|
|
|
// cdb-command: dx closure_local
|
|
|
|
// cdb-check:closure_local : 8 [Type: [...]]
|
|
|
|
// cdb-command: dx nested_closure
|
2022-01-19 10:56:53 -06:00
|
|
|
// cdb-check:nested_closure [Type: var_captured_in_nested_closure::main::closure$0::closure_env$0]
|
2021-04-06 12:34:17 -05:00
|
|
|
|
|
|
|
// cdb-command: g
|
|
|
|
|
|
|
|
// cdb-command: dx variable
|
|
|
|
// cdb-check:variable : 1 [Type: [...]]
|
|
|
|
// cdb-command: dx constant
|
|
|
|
// cdb-check:constant : 2 [Type: [...]]
|
|
|
|
// cdb-command: dx a_struct
|
|
|
|
// cdb-check:a_struct [Type: var_captured_in_nested_closure::Struct]
|
|
|
|
// cdb-check: [+0x[...]] a : -3 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] b : 4.500000 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] c : 0x5 [Type: unsigned [...]]
|
|
|
|
// cdb-command: dx struct_ref
|
|
|
|
// cdb-check:struct_ref : 0x[...] [Type: var_captured_in_nested_closure::Struct *]
|
|
|
|
// cdb-check: [+0x[...]] a : -3 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] b : 4.500000 [Type: [...]]
|
|
|
|
// cdb-check: [+0x[...]] c : 0x5 [Type: unsigned [...]]
|
|
|
|
// cdb-command: dx owned
|
|
|
|
// cdb-check:owned : 0x[...] : 6 [Type: [...] *]
|
|
|
|
// cdb-check: 6 [Type: [...]]
|
|
|
|
// cdb-command: dx closure_local
|
|
|
|
// cdb-check:closure_local : 8 [Type: [...]]
|
|
|
|
|
2014-10-27 17:37:07 -05:00
|
|
|
#![allow(unused_variables)]
|
2015-09-19 15:33:47 -05:00
|
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
2014-12-03 16:48:18 -06:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
2013-08-29 04:44:11 -05:00
|
|
|
|
|
|
|
struct Struct {
|
2015-03-25 19:06:52 -05:00
|
|
|
a: isize,
|
2013-09-26 01:26:09 -05:00
|
|
|
b: f64,
|
2015-03-25 19:06:52 -05:00
|
|
|
c: usize
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut variable = 1;
|
|
|
|
let constant = 2;
|
|
|
|
|
|
|
|
let a_struct = Struct {
|
|
|
|
a: -3,
|
|
|
|
b: 4.5,
|
|
|
|
c: 5
|
|
|
|
};
|
|
|
|
|
|
|
|
let struct_ref = &a_struct;
|
2021-08-24 19:39:40 -05:00
|
|
|
let owned: Box<_> = Box::new(6);
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2016-04-16 13:51:26 -05:00
|
|
|
let mut closure = || {
|
2013-08-29 04:44:11 -05:00
|
|
|
let closure_local = 8;
|
|
|
|
|
2016-04-16 13:51:26 -05:00
|
|
|
let mut nested_closure = || {
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2014-10-02 00:10:09 -05:00
|
|
|
variable = constant + a_struct.a + struct_ref.a + *owned + closure_local;
|
2013-08-29 04:44:11 -05:00
|
|
|
};
|
|
|
|
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-08-29 04:44:11 -05:00
|
|
|
|
|
|
|
nested_closure();
|
|
|
|
};
|
|
|
|
|
|
|
|
closure();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {()}
|