// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! Unsafe debugging functions for inspecting values. #[allow(missing_doc)]; use std::cast::transmute; use std::unstable::intrinsics::{get_tydesc}; pub mod rustrt { use std::unstable::intrinsics::{TyDesc}; #[abi = "cdecl"] extern { pub unsafe fn debug_tydesc(td: *TyDesc); pub unsafe fn debug_opaque(td: *TyDesc, x: *()); pub unsafe fn debug_box(td: *TyDesc, x: *()); pub unsafe fn debug_tag(td: *TyDesc, x: *()); pub unsafe fn debug_fn(td: *TyDesc, x: *()); pub unsafe fn debug_ptrcast(td: *TyDesc, x: *()) -> *(); pub unsafe fn rust_dbg_breakpoint(); } } pub fn debug_tydesc() { unsafe { rustrt::debug_tydesc(get_tydesc::()); } } pub fn debug_opaque(x: T) { unsafe { rustrt::debug_opaque(get_tydesc::(), transmute(&x)); } } pub fn debug_box(x: @T) { unsafe { rustrt::debug_box(get_tydesc::(), transmute(&x)); } } pub fn debug_tag(x: T) { unsafe { rustrt::debug_tag(get_tydesc::(), transmute(&x)); } } pub fn debug_fn(x: T) { unsafe { rustrt::debug_fn(get_tydesc::(), transmute(&x)); } } pub unsafe fn ptr_cast(x: @T) -> @U { transmute( rustrt::debug_ptrcast(get_tydesc::(), transmute(x))) } /// Triggers a debugger breakpoint pub fn breakpoint() { unsafe { 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(); }