Files
rust/src/libstd/dbg.rs

72 lines
1.7 KiB
Rust
Raw Normal View History

2012-08-29 13:51:24 -07:00
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
//! Unsafe debugging functions for inspecting values.
2012-09-18 17:34:08 -07:00
use cast::reinterpret_cast;
export debug_tydesc;
export debug_opaque;
export debug_box;
export debug_tag;
export debug_fn;
export ptr_cast;
2012-06-01 00:11:51 -07:00
export breakpoint;
#[abi = "cdecl"]
extern mod rustrt {
#[legacy_exports];
fn debug_tydesc(td: *sys::TypeDesc);
fn debug_opaque(td: *sys::TypeDesc, x: *());
fn debug_box(td: *sys::TypeDesc, x: *());
fn debug_tag(td: *sys::TypeDesc, x: *());
fn debug_fn(td: *sys::TypeDesc, x: *());
fn debug_ptrcast(td: *sys::TypeDesc, x: *()) -> *();
2012-06-01 00:11:51 -07:00
fn rust_dbg_breakpoint();
}
2011-10-20 17:06:52 -07:00
fn debug_tydesc<T>() {
rustrt::debug_tydesc(sys::get_type_desc::<T>());
}
2012-08-29 13:51:24 -07:00
fn debug_opaque<T>(+x: T) {
rustrt::debug_opaque(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
2011-10-20 17:06:52 -07:00
}
2011-10-20 17:06:52 -07:00
fn debug_box<T>(x: @T) {
rustrt::debug_box(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
2011-10-20 17:06:52 -07:00
}
2012-08-29 13:51:24 -07:00
fn debug_tag<T>(+x: T) {
rustrt::debug_tag(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
2011-10-20 17:06:52 -07:00
}
2012-08-29 13:51:24 -07:00
fn debug_fn<T>(+x: T) {
rustrt::debug_fn(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
2011-10-20 17:06:52 -07:00
}
unsafe fn ptr_cast<T, U>(x: @T) -> @U {
reinterpret_cast(
2012-08-29 16:00:36 -07:00
&rustrt::debug_ptrcast(sys::get_type_desc::<T>(),
reinterpret_cast(&x)))
}
/// Triggers a debugger breakpoint
2012-06-01 00:11:51 -07:00
fn breakpoint() {
rustrt::rust_dbg_breakpoint();
}
#[test]
fn test_breakpoint_should_not_abort_process_when_not_under_gdb() {
// Triggering a breakpoint involves raising SIGTRAP, which terminates
// the process under normal circumstances
breakpoint();
}
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: