2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-08-24 20:37:42 -05:00
|
|
|
/**
|
|
|
|
* Unsafe debugging functions for inspecting values.
|
2010-08-24 21:55:45 -05:00
|
|
|
*
|
|
|
|
* Your RUST_LOG environment variable must contain "stdlib" for any debug
|
|
|
|
* logging.
|
2010-08-24 20:37:42 -05:00
|
|
|
*/
|
|
|
|
|
2011-11-09 20:44:12 -06:00
|
|
|
native "cdecl" mod rustrt {
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_tydesc(td: *sys::type_desc);
|
|
|
|
fn debug_opaque<T>(td: *sys::type_desc, x: T);
|
|
|
|
fn debug_box<T>(td: *sys::type_desc, x: @T);
|
|
|
|
fn debug_tag<T>(td: *sys::type_desc, x: T);
|
|
|
|
fn debug_obj<T>(td: *sys::type_desc, x: T, nmethods: uint, nbytes: uint);
|
|
|
|
fn debug_fn<T>(td: *sys::type_desc, x: T);
|
|
|
|
fn debug_ptrcast<T, U>(td: *sys::type_desc, x: @T) -> @U;
|
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) {
|
|
|
|
rustrt::debug_opaque::<T>(sys::get_type_desc::<T>(), x);
|
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_box<T>(x: @T) {
|
|
|
|
rustrt::debug_box::<T>(sys::get_type_desc::<T>(), x);
|
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_tag<T>(x: T) {
|
|
|
|
rustrt::debug_tag::<T>(sys::get_type_desc::<T>(), x);
|
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
|
|
|
|
|
2010-08-24 21:49:39 -05:00
|
|
|
/**
|
|
|
|
* `nmethods` is the number of methods we expect the object to have. The
|
|
|
|
* runtime will print this many words of the obj vtbl).
|
|
|
|
*
|
|
|
|
* `nbytes` is the number of bytes of body data we expect the object to have.
|
|
|
|
* The runtime will print this many bytes of the obj body. You probably want
|
|
|
|
* this to at least be 4u, since an implicit captured tydesc pointer sits in
|
|
|
|
* the front of any obj's data tuple.x
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn debug_obj<T>(x: T, nmethods: uint, nbytes: uint) {
|
2011-10-20 19:06:52 -05:00
|
|
|
rustrt::debug_obj::<T>(sys::get_type_desc::<T>(), x, nmethods, nbytes);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2011-10-20 19:06:52 -05:00
|
|
|
fn debug_fn<T>(x: T) {
|
|
|
|
rustrt::debug_fn::<T>(sys::get_type_desc::<T>(), x);
|
|
|
|
}
|
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 {
|
2011-10-20 19:06:52 -05:00
|
|
|
ret rustrt::debug_ptrcast::<T, U>(sys::get_type_desc::<T>(), 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
|
2011-06-15 14:01:19 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-09-22 17:44:13 -05:00
|
|
|
// End:
|