2012-03-07 20:17:30 -06:00
|
|
|
#[doc = "Unsafe debugging functions for inspecting values."];
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2012-06-01 21:47:04 -05:00
|
|
|
import unsafe::reinterpret_cast;
|
|
|
|
|
|
|
|
export debug_tydesc;
|
|
|
|
export debug_opaque;
|
|
|
|
export debug_box;
|
|
|
|
export debug_tag;
|
|
|
|
export debug_fn;
|
|
|
|
export ptr_cast;
|
|
|
|
export refcount;
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod rustrt {
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_tydesc(td: *sys::type_desc);
|
2012-06-01 21:47:04 -05:00
|
|
|
fn debug_opaque(td: *sys::type_desc, x: *());
|
|
|
|
fn debug_box(td: *sys::type_desc, x: *());
|
|
|
|
fn debug_tag(td: *sys::type_desc, x: *());
|
|
|
|
fn debug_fn(td: *sys::type_desc, x: *());
|
|
|
|
fn debug_ptrcast(td: *sys::type_desc, x: *()) -> *();
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_tydesc<T>() {
|
|
|
|
rustrt::debug_tydesc(sys::get_type_desc::<T>());
|
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_opaque<T>(x: T) {
|
2012-06-01 21:47:04 -05:00
|
|
|
rustrt::debug_opaque(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
|
2011-10-20 19:06:52 -05:00
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_box<T>(x: @T) {
|
2012-06-01 21:47:04 -05:00
|
|
|
rustrt::debug_box(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
|
2011-10-20 19:06:52 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_tag<T>(x: T) {
|
2012-06-01 21:47:04 -05:00
|
|
|
rustrt::debug_tag(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
|
2011-10-20 19:06:52 -05:00
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_fn<T>(x: T) {
|
2012-06-01 21:47:04 -05:00
|
|
|
rustrt::debug_fn(sys::get_type_desc::<T>(), ptr::addr_of(x) as *());
|
2011-10-20 19:06:52 -05:00
|
|
|
}
|
2010-09-22 17:44:13 -05:00
|
|
|
|
2011-10-12 15:31:41 -05:00
|
|
|
unsafe fn ptr_cast<T, U>(x: @T) -> @U {
|
2012-06-01 21:47:04 -05:00
|
|
|
reinterpret_cast(
|
|
|
|
rustrt::debug_ptrcast(sys::get_type_desc::<T>(),
|
|
|
|
reinterpret_cast(x)))
|
2011-10-12 15:31:41 -05:00
|
|
|
}
|
2010-12-31 12:35:39 -06:00
|
|
|
|
2011-10-12 15:31:41 -05:00
|
|
|
fn refcount<T>(a: @T) -> uint unsafe {
|
2011-08-31 17:23:34 -05:00
|
|
|
let p: *uint = unsafe::reinterpret_cast(a);
|
|
|
|
ret *p;
|
|
|
|
}
|
|
|
|
|
2010-09-22 17:44:13 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|