2012-12-10 19:32:48 -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-06-02 19:42:48 -05:00
|
|
|
// xfail-win32
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-06-02 19:42:48 -05:00
|
|
|
|
2012-09-05 14:32:05 -05:00
|
|
|
use std::list::{List, Cons, Nil};
|
|
|
|
use std::time::precise_time_s;
|
2012-06-02 19:42:48 -05:00
|
|
|
|
2013-01-31 19:12:29 -06:00
|
|
|
enum UniqueList {
|
|
|
|
ULNil, ULCons(~UniqueList)
|
|
|
|
}
|
|
|
|
|
2012-06-02 19:42:48 -05:00
|
|
|
fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let (repeat, depth) = if os::getenv(~"RUST_BENCH").is_some() {
|
2012-06-02 19:42:48 -05:00
|
|
|
(50, 1000)
|
|
|
|
} else {
|
|
|
|
(10, 10)
|
|
|
|
};
|
|
|
|
|
|
|
|
run(repeat, depth);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(repeat: int, depth: int) {
|
2012-07-04 14:04:28 -05:00
|
|
|
for iter::repeat(repeat as uint) {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("starting %.4f", precise_time_s());
|
2012-07-04 14:04:28 -05:00
|
|
|
do task::try {
|
2012-08-20 14:23:37 -05:00
|
|
|
recurse_or_fail(depth, None)
|
2012-06-02 19:42:48 -05:00
|
|
|
};
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("stopping %.4f", precise_time_s());
|
2012-06-02 19:42:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-04 16:12:14 -05:00
|
|
|
type nillist = List<()>;
|
2012-06-02 19:42:48 -05:00
|
|
|
|
|
|
|
// Filled with things that have to be unwound
|
2013-01-28 20:55:44 -06:00
|
|
|
|
|
|
|
struct State {
|
|
|
|
box: @nillist,
|
|
|
|
unique: ~nillist,
|
|
|
|
fn_box: fn@() -> @nillist,
|
|
|
|
tuple: (@nillist, ~nillist),
|
|
|
|
vec: ~[@nillist],
|
|
|
|
res: r
|
2012-06-02 19:42:48 -05:00
|
|
|
}
|
|
|
|
|
2012-08-15 20:46:55 -05:00
|
|
|
struct r {
|
2012-09-06 21:40:15 -05:00
|
|
|
_l: @nillist,
|
2012-11-14 00:22:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl r : Drop {
|
2012-11-28 17:42:16 -06:00
|
|
|
fn finalize(&self) {}
|
2012-06-02 19:42:48 -05:00
|
|
|
}
|
|
|
|
|
2012-09-05 17:58:43 -05:00
|
|
|
fn r(l: @nillist) -> r {
|
|
|
|
r {
|
|
|
|
_l: l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-28 20:55:44 -06:00
|
|
|
fn recurse_or_fail(depth: int, st: Option<State>) {
|
2012-06-02 19:42:48 -05:00
|
|
|
if depth == 0 {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("unwinding %.4f", precise_time_s());
|
2013-01-31 19:51:01 -06:00
|
|
|
die!();
|
2012-06-02 19:42:48 -05:00
|
|
|
} else {
|
|
|
|
let depth = depth - 1;
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
let st = match st {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-01-28 20:55:44 -06:00
|
|
|
State {
|
2012-09-04 16:12:14 -05:00
|
|
|
box: @Nil,
|
|
|
|
unique: ~Nil,
|
|
|
|
fn_box: fn@() -> @nillist { @Nil::<()> },
|
|
|
|
tuple: (@Nil, ~Nil),
|
|
|
|
vec: ~[@Nil],
|
|
|
|
res: r(@Nil)
|
2013-01-28 20:55:44 -06:00
|
|
|
}
|
2012-06-02 19:42:48 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(st) => {
|
2012-06-02 19:42:48 -05:00
|
|
|
let fn_box = st.fn_box;
|
|
|
|
|
2013-01-28 20:55:44 -06:00
|
|
|
State {
|
2012-09-04 16:12:14 -05:00
|
|
|
box: @Cons((), st.box),
|
|
|
|
unique: ~Cons((), @*st.unique),
|
|
|
|
fn_box: fn@() -> @nillist { @Cons((), fn_box()) },
|
|
|
|
tuple: (@Cons((), st.tuple.first()),
|
|
|
|
~Cons((), @*st.tuple.second())),
|
|
|
|
vec: st.vec + ~[@Cons((), st.vec.last())],
|
|
|
|
res: r(@Cons((), st.res._l))
|
2013-01-28 20:55:44 -06:00
|
|
|
}
|
2012-06-02 19:42:48 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-19 00:44:34 -05:00
|
|
|
recurse_or_fail(depth, Some(move st));
|
2012-06-02 19:42:48 -05:00
|
|
|
}
|
|
|
|
}
|