2014-02-07 20:08:32 +01:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-06-21 12:09:30 +02:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-10-09 16:31:03 +02:00
|
|
|
// min-lldb-version: 310
|
2013-12-13 15:45:08 -08:00
|
|
|
|
2014-02-06 19:57:09 -08:00
|
|
|
// compile-flags:-g
|
2014-07-09 14:46:09 +02:00
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2014-04-24 11:35:48 +02:00
|
|
|
// gdb-command:run
|
|
|
|
// gdb-command:print simple
|
|
|
|
// gdb-check:$1 = {x = 10, y = 20}
|
2013-06-21 12:09:30 +02:00
|
|
|
|
2014-04-24 11:35:48 +02:00
|
|
|
// gdb-command:print noDestructor
|
|
|
|
// gdb-check:$2 = {a = {x = 10, y = 20}, guard = -1}
|
2013-06-21 12:09:30 +02:00
|
|
|
|
2014-04-24 11:35:48 +02:00
|
|
|
// gdb-command:print withDestructor
|
|
|
|
// gdb-check:$3 = {a = {x = 10, y = 20}, guard = -1}
|
2013-06-21 12:09:30 +02:00
|
|
|
|
2014-04-24 11:35:48 +02:00
|
|
|
// gdb-command:print nested
|
|
|
|
// gdb-check:$4 = {a = {a = {x = 7890, y = 9870}}}
|
2013-07-01 12:11:29 +02:00
|
|
|
|
2014-07-09 14:46:09 +02:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
// lldb-command:print simple
|
|
|
|
// lldb-check:[...]$0 = WithDestructor { x: 10, y: 20 }
|
|
|
|
|
|
|
|
// lldb-command:print noDestructor
|
|
|
|
// lldb-check:[...]$1 = NoDestructorGuarded { a: NoDestructor { x: 10, y: 20 }, guard: -1 }
|
|
|
|
|
|
|
|
// lldb-command:print withDestructor
|
|
|
|
// lldb-check:[...]$2 = WithDestructorGuarded { a: WithDestructor { x: 10, y: 20 }, guard: -1 }
|
|
|
|
|
|
|
|
// lldb-command:print nested
|
|
|
|
// lldb-check:[...]$3 = NestedOuter { a: NestedInner { a: WithDestructor { x: 7890, y: 9870 } } }
|
|
|
|
|
2014-10-27 15:37:07 -07:00
|
|
|
#![allow(unused_variables)]
|
2014-12-03 14:48:18 -08:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
2013-08-17 08:37:42 -07:00
|
|
|
|
2013-06-21 12:09:30 +02:00
|
|
|
struct NoDestructor {
|
2013-07-16 12:17:55 +02:00
|
|
|
x: i32,
|
|
|
|
y: i64
|
2013-06-21 12:09:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct WithDestructor {
|
2013-07-16 12:17:55 +02:00
|
|
|
x: i32,
|
|
|
|
y: i64
|
2013-06-21 12:09:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for WithDestructor {
|
2013-09-16 21:18:07 -04:00
|
|
|
fn drop(&mut self) {}
|
2013-06-21 12:09:30 +02:00
|
|
|
}
|
|
|
|
|
2013-06-26 22:17:45 +02:00
|
|
|
struct NoDestructorGuarded {
|
2013-06-21 12:09:30 +02:00
|
|
|
a: NoDestructor,
|
|
|
|
guard: i64
|
|
|
|
}
|
|
|
|
|
2013-06-26 22:17:45 +02:00
|
|
|
struct WithDestructorGuarded {
|
2013-06-21 12:09:30 +02:00
|
|
|
a: WithDestructor,
|
|
|
|
guard: i64
|
|
|
|
}
|
|
|
|
|
2013-07-01 12:11:29 +02:00
|
|
|
struct NestedInner {
|
|
|
|
a: WithDestructor
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for NestedInner {
|
2013-09-16 21:18:07 -04:00
|
|
|
fn drop(&mut self) {}
|
2013-07-01 12:11:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct NestedOuter {
|
|
|
|
a: NestedInner
|
|
|
|
}
|
|
|
|
|
2013-06-21 12:09:30 +02:00
|
|
|
|
|
|
|
// The compiler adds a 'destructed' boolean field to structs implementing Drop. This field is used
|
2013-06-27 19:27:06 +02:00
|
|
|
// at runtime to prevent drop() to be executed more than once (see middle::trans::adt).
|
2013-06-21 12:09:30 +02:00
|
|
|
// This field must be incorporated by the debug info generation. Otherwise the debugger assumes a
|
|
|
|
// wrong size/layout for the struct.
|
|
|
|
fn main() {
|
|
|
|
|
|
|
|
let simple = WithDestructor { x: 10, y: 20 };
|
|
|
|
|
|
|
|
let noDestructor = NoDestructorGuarded {
|
|
|
|
a: NoDestructor { x: 10, y: 20 },
|
|
|
|
guard: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
// If the destructor flag field is not incorporated into the debug info for 'WithDestructor'
|
|
|
|
// then the debugger will have an invalid offset for the field 'guard' and thus should not be
|
2013-06-27 19:27:06 +02:00
|
|
|
// able to read its value correctly (dots are padding bytes, D is the boolean destructor flag):
|
|
|
|
//
|
2013-07-20 10:47:24 +02:00
|
|
|
// 64 bit
|
|
|
|
//
|
2013-06-27 19:27:06 +02:00
|
|
|
// NoDestructorGuarded = 0000....00000000FFFFFFFF
|
|
|
|
// <--------------><------>
|
|
|
|
// NoDestructor guard
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// withDestructorGuarded = 0000....00000000D.......FFFFFFFF
|
|
|
|
// <--------------><------> // How debug info says it is
|
|
|
|
// WithDestructor guard
|
|
|
|
//
|
|
|
|
// <----------------------><------> // How it actually is
|
|
|
|
// WithDestructor guard
|
|
|
|
//
|
2013-07-20 10:47:24 +02:00
|
|
|
// 32 bit
|
|
|
|
//
|
|
|
|
// NoDestructorGuarded = 000000000000FFFFFFFF
|
|
|
|
// <----------><------>
|
|
|
|
// NoDestructor guard
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// withDestructorGuarded = 000000000000D...FFFFFFFF
|
|
|
|
// <----------><------> // How debug info says it is
|
|
|
|
// WithDestructor guard
|
|
|
|
//
|
|
|
|
// <--------------><------> // How it actually is
|
|
|
|
// WithDestructor guard
|
|
|
|
//
|
2013-06-21 12:09:30 +02:00
|
|
|
let withDestructor = WithDestructorGuarded {
|
|
|
|
a: WithDestructor { x: 10, y: 20 },
|
|
|
|
guard: -1
|
|
|
|
};
|
|
|
|
|
2013-07-20 10:47:24 +02:00
|
|
|
// expected layout (64 bit) = xxxx....yyyyyyyyD.......D...
|
|
|
|
// <--WithDestructor------>
|
|
|
|
// <-------NestedInner-------->
|
|
|
|
// <-------NestedOuter-------->
|
2013-07-01 12:11:29 +02:00
|
|
|
let nested = NestedOuter { a: NestedInner { a: WithDestructor { x: 7890, y: 9870 } } };
|
|
|
|
|
2014-07-09 14:46:09 +02:00
|
|
|
zzz(); // #break
|
2013-06-21 12:09:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {()}
|