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
|
|
|
*/
|
|
|
|
|
2010-11-09 16:15:07 -06:00
|
|
|
// FIXME: handle 64-bit case.
|
2011-07-27 07:19:39 -05:00
|
|
|
const const_refcount: uint = 0x7bad_face_u;
|
2010-11-09 16:15:07 -06:00
|
|
|
|
2010-08-24 20:37:42 -05:00
|
|
|
native "rust" mod rustrt {
|
2010-09-22 17:44:13 -05:00
|
|
|
fn debug_tydesc[T]();
|
2011-07-27 07:19:39 -05:00
|
|
|
fn debug_opaque[T](x: &T);
|
|
|
|
fn debug_box[T](x: @T);
|
|
|
|
fn debug_tag[T](x: &T);
|
|
|
|
fn debug_obj[T](x: &T, nmethods: uint, nbytes: uint);
|
|
|
|
fn debug_fn[T](x: &T);
|
|
|
|
fn debug_ptrcast[T, U](x: @T) -> @U;
|
|
|
|
fn debug_trap(msg: str);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn debug_vec[T](v: vec[T]) { vec::print_debug_info[T](v); }
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn debug_tydesc[T]() { rustrt::debug_tydesc[T](); }
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn debug_opaque[T](x: &T) { rustrt::debug_opaque[T](x); }
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn debug_box[T](x: @T) { rustrt::debug_box[T](x); }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn debug_tag[T](x: &T) { rustrt::debug_tag[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-07-27 07:19:39 -05:00
|
|
|
fn debug_obj[T](x: &T, nmethods: uint, nbytes: uint) {
|
2011-05-12 10:24:54 -05:00
|
|
|
rustrt::debug_obj[T](x, nmethods, nbytes);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn debug_fn[T](x: &T) { rustrt::debug_fn[T](x); }
|
2010-09-22 17:44:13 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn ptr_cast[T, U](x: @T) -> @U { ret rustrt::debug_ptrcast[T, U](x); }
|
2010-12-31 12:35:39 -06:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn trap(s: str) { rustrt::debug_trap(s); }
|
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:
|