rust/src/libcore/stackwalk.rs

85 lines
1.6 KiB
Rust
Raw Normal View History

2012-06-12 00:44:55 -05:00
// NB: Don't rely on other core mods here as this has to move into the rt
2012-09-04 13:12:17 -05:00
use unsafe::reinterpret_cast;
use ptr::offset;
use sys::size_of;
2012-06-12 00:44:55 -05:00
type Word = uint;
2012-06-05 20:47:18 -05:00
2012-08-15 20:46:55 -05:00
struct Frame {
2012-09-06 21:40:15 -05:00
fp: *Word
2012-09-04 17:23:28 -05:00
}
2012-06-05 20:47:18 -05:00
2012-09-04 17:23:28 -05:00
fn Frame(fp: *Word) -> Frame {
Frame {
fp: fp
2012-06-05 20:47:18 -05:00
}
}
fn walk_stack(visit: fn(Frame) -> bool) {
2012-06-12 00:44:55 -05:00
2012-08-22 19:24:52 -05:00
debug!("beginning stack walk");
2012-06-12 00:44:55 -05:00
2012-06-30 18:19:07 -05:00
do frame_address |frame_pointer| {
let mut frame_address: *Word = unsafe {
2012-08-29 18:00:36 -05:00
reinterpret_cast(&frame_pointer)
2012-06-05 20:47:18 -05:00
};
2012-06-12 00:44:55 -05:00
loop {
let fr = Frame(frame_address);
2012-06-12 00:44:55 -05:00
2012-08-29 18:00:36 -05:00
debug!("frame: %x", unsafe { reinterpret_cast(&fr.fp) });
visit(fr);
2012-06-12 00:44:55 -05:00
unsafe {
2012-08-29 18:00:36 -05:00
let next_fp: **Word = reinterpret_cast(&frame_address);
2012-06-12 00:44:55 -05:00
frame_address = *next_fp;
if *frame_address == 0u {
2012-08-22 19:24:52 -05:00
debug!("encountered task_start_wrapper. ending walk");
2012-06-12 00:44:55 -05:00
// This is the task_start_wrapper_frame. There is
// no stack beneath it and it is a foreign frame.
2012-06-12 00:44:55 -05:00
break;
}
}
}
2012-06-05 20:47:18 -05:00
}
}
#[test]
2012-06-12 00:44:55 -05:00
fn test_simple() {
2012-06-30 18:19:07 -05:00
for walk_stack |_frame| {
2012-06-05 20:47:18 -05:00
}
}
2012-06-12 00:44:55 -05:00
#[test]
fn test_simple_deep() {
fn run(i: int) {
2012-08-01 19:30:05 -05:00
if i == 0 { return }
2012-06-12 00:44:55 -05:00
2012-06-30 18:19:07 -05:00
for walk_stack |_frame| {
2012-06-12 00:44:55 -05:00
unsafe {
breakpoint();
}
}
run(i - 1);
}
run(10);
}
2012-06-05 20:47:18 -05:00
fn breakpoint() {
rustrt::rust_dbg_breakpoint()
}
fn frame_address(f: fn(*u8)) {
rusti::frame_address(f)
}
extern mod rustrt {
2012-06-05 20:47:18 -05:00
fn rust_dbg_breakpoint();
}
#[abi = "rust-intrinsic"]
extern mod rusti {
2012-06-05 20:47:18 -05:00
fn frame_address(f: fn(*u8));
}