2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-19 18:52:32 -05:00
|
|
|
#[doc(hidden)]; // FIXME #3538
|
2012-06-12 00:44:55 -05:00
|
|
|
|
2013-04-20 09:27:16 -05:00
|
|
|
use cast::transmute;
|
2012-06-12 00:44:55 -05:00
|
|
|
|
2012-09-23 18:42:05 -05:00
|
|
|
pub type Word = uint;
|
2012-06-05 20:47:18 -05:00
|
|
|
|
2012-09-23 18:42:05 -05:00
|
|
|
pub 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-23 18:42:05 -05:00
|
|
|
pub fn Frame(fp: *Word) -> Frame {
|
2012-09-04 17:23:28 -05:00
|
|
|
Frame {
|
|
|
|
fp: fp
|
2012-06-05 20:47:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-07 16:38:38 -06:00
|
|
|
pub 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| {
|
2012-08-13 18:20:27 -05:00
|
|
|
let mut frame_address: *Word = unsafe {
|
2013-04-20 09:27:16 -05:00
|
|
|
transmute(frame_pointer)
|
2012-06-05 20:47:18 -05:00
|
|
|
};
|
2012-06-12 00:44:55 -05:00
|
|
|
loop {
|
2012-08-13 18:20:27 -05:00
|
|
|
let fr = Frame(frame_address);
|
2012-06-12 00:44:55 -05:00
|
|
|
|
2013-04-20 09:27:16 -05:00
|
|
|
debug!("frame: %x", unsafe { transmute(fr.fp) });
|
2012-06-19 14:01:02 -05:00
|
|
|
visit(fr);
|
2012-06-12 00:44:55 -05:00
|
|
|
|
|
|
|
unsafe {
|
2013-04-20 09:27:16 -05:00
|
|
|
let next_fp: **Word = transmute(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
|
2012-07-03 18:11:00 -05:00
|
|
|
// 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| {
|
2013-04-18 19:40:37 -05:00
|
|
|
breakpoint();
|
2012-06-12 00:44:55 -05:00
|
|
|
}
|
|
|
|
run(i - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
run(10);
|
|
|
|
}
|
|
|
|
|
2012-06-05 20:47:18 -05:00
|
|
|
fn breakpoint() {
|
2013-01-10 23:23:07 -06:00
|
|
|
unsafe {
|
|
|
|
rustrt::rust_dbg_breakpoint()
|
|
|
|
}
|
2012-06-05 20:47:18 -05:00
|
|
|
}
|
|
|
|
|
2013-03-27 19:14:10 -05:00
|
|
|
fn frame_address(f: &fn(x: *u8)) {
|
2013-01-10 23:23:07 -06:00
|
|
|
unsafe {
|
|
|
|
rusti::frame_address(f)
|
|
|
|
}
|
2012-06-05 20:47:18 -05:00
|
|
|
}
|
|
|
|
|
2013-03-05 13:57:50 -06:00
|
|
|
pub mod rustrt {
|
|
|
|
pub extern {
|
|
|
|
pub unsafe fn rust_dbg_breakpoint();
|
|
|
|
}
|
2012-06-05 20:47:18 -05:00
|
|
|
}
|
|
|
|
|
2013-03-05 13:57:50 -06:00
|
|
|
pub mod rusti {
|
|
|
|
#[abi = "rust-intrinsic"]
|
2013-03-13 21:25:28 -05:00
|
|
|
pub extern "rust-intrinsic" {
|
2013-04-22 23:54:29 -05:00
|
|
|
pub fn frame_address(+f: &once fn(x: *u8));
|
2013-03-05 13:57:50 -06:00
|
|
|
}
|
2012-06-05 20:47:18 -05:00
|
|
|
}
|