2011-06-15 11:19:50 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-08-24 18:37:42 -07:00
|
|
|
/**
|
|
|
|
|
* Unsafe debugging functions for inspecting values.
|
2010-08-24 19:55:45 -07:00
|
|
|
*
|
|
|
|
|
* Your RUST_LOG environment variable must contain "stdlib" for any debug
|
|
|
|
|
* logging.
|
2010-08-24 18:37:42 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
native "rust" mod rustrt {
|
2011-08-12 06:37:10 -07:00
|
|
|
fn debug_tydesc<T>();
|
2011-09-12 11:27:30 +02:00
|
|
|
fn debug_opaque<T>(x: T);
|
2011-08-12 06:37:10 -07:00
|
|
|
fn debug_box<T>(x: @T);
|
2011-09-12 11:27:30 +02:00
|
|
|
fn debug_tag<T>(x: T);
|
|
|
|
|
fn debug_obj<T>(x: T, nmethods: uint, nbytes: uint);
|
|
|
|
|
fn debug_fn<T>(x: T);
|
2011-08-12 06:37:10 -07:00
|
|
|
fn debug_ptrcast<T, U>(x: @T) -> @U;
|
2010-08-24 18:37:42 -07:00
|
|
|
}
|
|
|
|
|
|
2011-08-12 10:56:57 -07:00
|
|
|
fn debug_tydesc<T>() { rustrt::debug_tydesc::<T>(); }
|
2010-08-24 18:37:42 -07:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn debug_opaque<T>(x: T) { rustrt::debug_opaque::<T>(x); }
|
2010-08-24 18:37:42 -07:00
|
|
|
|
2011-08-12 10:56:57 -07:00
|
|
|
fn debug_box<T>(x: @T) { rustrt::debug_box::<T>(x); }
|
2011-06-15 11:19:50 -07:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn debug_tag<T>(x: T) { rustrt::debug_tag::<T>(x); }
|
2010-08-24 18:37:42 -07:00
|
|
|
|
|
|
|
|
|
2010-08-24 19:49:39 -07: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 11:27:30 +02:00
|
|
|
fn debug_obj<T>(x: T, nmethods: uint, nbytes: uint) {
|
2011-08-12 10:56:57 -07:00
|
|
|
rustrt::debug_obj::<T>(x, nmethods, nbytes);
|
2010-08-24 18:37:42 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn debug_fn<T>(x: T) { rustrt::debug_fn::<T>(x); }
|
2010-09-22 15:44:13 -07:00
|
|
|
|
2011-08-12 10:56:57 -07:00
|
|
|
fn ptr_cast<T, U>(x: @T) -> @U { ret rustrt::debug_ptrcast::<T, U>(x); }
|
2010-12-31 10:35:39 -08:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn refcount<T>(a: @T) -> uint {
|
2011-08-31 15:23:34 -07:00
|
|
|
let p: *uint = unsafe::reinterpret_cast(a);
|
|
|
|
|
ret *p;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-22 15:44:13 -07: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 12:01:19 -07:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-09-22 15:44:13 -07:00
|
|
|
// End:
|