2014-10-09 22:31:03 +08:00
|
|
|
//@ min-lldb-version: 310
|
2018-01-04 02:24:25 +08:00
|
|
|
//@ ignore-test // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155
|
2013-11-04 14:53:01 +08:00
|
|
|
|
2014-02-07 11:57:09 +08:00
|
|
|
//@ compile-flags:-g
|
2014-07-09 20:46:09 +08:00
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:run
|
2013-08-15 18:23:54 +08:00
|
|
|
|
|
|
|
// STACK BY REF
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print *self
|
2016-10-26 05:32:04 +08:00
|
|
|
// gdbg-check:$1 = {{RUST$ENUM$DISR = Variant2, [...]}, {RUST$ENUM$DISR = Variant2, __0 = 117901063}}
|
|
|
|
// gdbr-check:$1 = method_on_enum::Enum::Variant2(117901063)
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print arg1
|
|
|
|
// gdb-check:$2 = -1
|
|
|
|
// gdb-command:print arg2
|
|
|
|
// gdb-check:$3 = -2
|
|
|
|
// gdb-command:continue
|
2013-08-15 18:23:54 +08:00
|
|
|
|
|
|
|
// STACK BY VAL
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print self
|
2016-10-26 05:32:04 +08:00
|
|
|
// gdbg-check:$4 = {{RUST$ENUM$DISR = Variant2, [...]}, {RUST$ENUM$DISR = Variant2, __0 = 117901063}}
|
|
|
|
// gdbr-check:$4 = method_on_enum::Enum::Variant2(117901063)
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print arg1
|
|
|
|
// gdb-check:$5 = -3
|
|
|
|
// gdb-command:print arg2
|
|
|
|
// gdb-check:$6 = -4
|
|
|
|
// gdb-command:continue
|
2013-08-15 18:23:54 +08:00
|
|
|
|
|
|
|
// OWNED BY REF
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print *self
|
2016-10-26 05:32:04 +08:00
|
|
|
// gdbg-check:$7 = {{RUST$ENUM$DISR = Variant1, x = 1799, y = 1799}, {RUST$ENUM$DISR = Variant1, [...]}}
|
|
|
|
// gdbr-check:$7 = method_on_enum::Enum::Variant1{x: 1799, y: 1799}
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print arg1
|
|
|
|
// gdb-check:$8 = -5
|
|
|
|
// gdb-command:print arg2
|
|
|
|
// gdb-check:$9 = -6
|
|
|
|
// gdb-command:continue
|
2013-08-15 18:23:54 +08:00
|
|
|
|
|
|
|
// OWNED BY VAL
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print self
|
2016-10-26 05:32:04 +08:00
|
|
|
// gdbg-check:$10 = {{RUST$ENUM$DISR = Variant1, x = 1799, y = 1799}, {RUST$ENUM$DISR = Variant1, [...]}}
|
|
|
|
// gdbr-check:$10 = method_on_enum::Enum::Variant1{x: 1799, y: 1799}
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print arg1
|
|
|
|
// gdb-check:$11 = -7
|
|
|
|
// gdb-command:print arg2
|
|
|
|
// gdb-check:$12 = -8
|
|
|
|
// gdb-command:continue
|
2013-08-15 18:23:54 +08:00
|
|
|
|
|
|
|
// OWNED MOVED
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print *self
|
2016-10-26 05:32:04 +08:00
|
|
|
// gdbg-check:$13 = {{RUST$ENUM$DISR = Variant1, x = 1799, y = 1799}, {RUST$ENUM$DISR = Variant1, [...]}}
|
|
|
|
// gdbr-check:$13 = method_on_enum::Enum::Variant1{x: 1799, y: 1799}
|
2014-04-24 17:35:48 +08:00
|
|
|
// gdb-command:print arg1
|
|
|
|
// gdb-check:$14 = -9
|
|
|
|
// gdb-command:print arg2
|
|
|
|
// gdb-check:$15 = -10
|
|
|
|
// gdb-command:continue
|
2013-08-15 18:23:54 +08:00
|
|
|
|
2014-07-09 20:46:09 +08:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
|
|
|
// STACK BY REF
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v *self
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] Variant2(117901063)
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg1
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -1
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg2
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -2
|
2014-07-09 20:46:09 +08:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// STACK BY VAL
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v self
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] Variant2(117901063)
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg1
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -3
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg2
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -4
|
2014-07-09 20:46:09 +08:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// OWNED BY REF
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v *self
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] Variant1 { x: 1799, y: 1799 }
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg1
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -5
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg2
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -6
|
2014-07-09 20:46:09 +08:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// OWNED BY VAL
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v self
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] Variant1 { x: 1799, y: 1799 }
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg1
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -7
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg2
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -8
|
2014-07-09 20:46:09 +08:00
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// OWNED MOVED
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v *self
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] Variant1 { x: 1799, y: 1799 }
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg1
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -9
|
2024-03-15 22:05:57 +08:00
|
|
|
// lldb-command:v arg2
|
2024-03-10 21:55:58 +08:00
|
|
|
// lldb-check:[...] -10
|
2014-07-09 20:46:09 +08:00
|
|
|
// lldb-command:continue
|
|
|
|
|
2015-09-20 04:33:47 +08:00
|
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
2014-12-04 06:48:18 +08:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
|
|
|
|
2015-03-30 21:38:27 +08:00
|
|
|
#[derive(Copy, Clone)]
|
2013-08-15 18:23:54 +08:00
|
|
|
enum Enum {
|
|
|
|
Variant1 { x: u16, y: u16 },
|
|
|
|
Variant2 (u32)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Enum {
|
|
|
|
|
2015-03-26 08:06:52 +08:00
|
|
|
fn self_by_ref(&self, arg1: isize, arg2: isize) -> isize {
|
2014-07-09 20:46:09 +08:00
|
|
|
zzz(); // #break
|
2013-08-15 18:23:54 +08:00
|
|
|
arg1 + arg2
|
|
|
|
}
|
|
|
|
|
2015-03-26 08:06:52 +08:00
|
|
|
fn self_by_val(self, arg1: isize, arg2: isize) -> isize {
|
2014-07-09 20:46:09 +08:00
|
|
|
zzz(); // #break
|
2013-08-15 18:23:54 +08:00
|
|
|
arg1 + arg2
|
|
|
|
}
|
|
|
|
|
2015-03-26 08:06:52 +08:00
|
|
|
fn self_owned(self: Box<Enum>, arg1: isize, arg2: isize) -> isize {
|
2014-07-09 20:46:09 +08:00
|
|
|
zzz(); // #break
|
2013-08-15 18:23:54 +08:00
|
|
|
arg1 + arg2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2014-11-06 16:05:53 +08:00
|
|
|
let stack = Enum::Variant2(117901063);
|
2013-08-15 18:23:54 +08:00
|
|
|
let _ = stack.self_by_ref(-1, -2);
|
|
|
|
let _ = stack.self_by_val(-3, -4);
|
|
|
|
|
2021-08-25 08:39:40 +08:00
|
|
|
let owned: Box<_> = Box::new(Enum::Variant1{ x: 1799, y: 1799 });
|
2013-08-15 18:23:54 +08:00
|
|
|
let _ = owned.self_by_ref(-5, -6);
|
|
|
|
let _ = owned.self_by_val(-7, -8);
|
|
|
|
let _ = owned.self_owned(-9, -10);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {()}
|