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.
|
|
|
|
const uint const_refcount = 0x7bad_face_u;
|
|
|
|
|
2010-08-24 20:37:42 -05:00
|
|
|
native "rust" mod rustrt {
|
2010-09-22 17:44:13 -05:00
|
|
|
fn debug_tydesc[T]();
|
|
|
|
fn debug_opaque[T](&T x);
|
|
|
|
fn debug_box[T](@T x);
|
|
|
|
fn debug_tag[T](&T x);
|
|
|
|
fn debug_obj[T](&T x, uint nmethods, uint nbytes);
|
|
|
|
fn debug_fn[T](&T x);
|
|
|
|
fn debug_ptrcast[T, U](@T x) -> @U;
|
2010-12-31 12:35:39 -06:00
|
|
|
fn debug_trap(str msg);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn debug_vec[T](vec[T] v) { 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-06-15 13:19:50 -05:00
|
|
|
fn debug_opaque[T](&T x) { rustrt::debug_opaque[T](x); }
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn debug_box[T](@T x) { rustrt::debug_box[T](x); }
|
|
|
|
|
|
|
|
fn debug_tag[T](&T x) { 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
|
|
|
|
*/
|
|
|
|
fn debug_obj[T](&T x, uint nmethods, uint nbytes) {
|
2011-05-12 10:24:54 -05:00
|
|
|
rustrt::debug_obj[T](x, nmethods, nbytes);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn debug_fn[T](&T x) { rustrt::debug_fn[T](x); }
|
2010-09-22 17:44:13 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn ptr_cast[T, U](@T x) -> @U { ret rustrt::debug_ptrcast[T, U](x); }
|
2010-12-31 12:35:39 -06:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
fn trap(str s) { 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
|
|
|
|
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|