rust/src/test/bench/task-perf-alloc-unwind.rs

104 lines
2.3 KiB
Rust
Raw Normal View History

// 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.
2013-10-23 03:49:18 -05:00
#[feature(managed_boxes)];
extern crate extra;
extern crate collections;
2012-06-02 19:42:48 -05:00
use collections::list::{List, Cons, Nil};
use extra::time::precise_time_s;
use std::os;
use std::task;
2012-06-02 19:42:48 -05:00
enum UniqueList {
ULNil, ULCons(~UniqueList)
}
2012-06-02 19:42:48 -05:00
fn main() {
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) {
for _ in range(0, repeat) {
info!("starting {:.4f}", precise_time_s());
2014-01-27 17:29:50 -06:00
task::try(proc() {
2012-08-20 14:23:37 -05:00
recurse_or_fail(depth, None)
2014-01-27 17:29:50 -06:00
});
info!("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 {
managed: @nillist,
2013-01-28 20:55:44 -06:00
unique: ~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,
}
#[unsafe_destructor]
impl Drop for r {
2013-09-16 20:18:07 -05:00
fn drop(&mut 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 {
info!("unwinding {:.4f}", precise_time_s());
fail!();
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 {
managed: @Nil,
2012-09-04 16:12:14 -05:00
unique: ~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) => {
2013-01-28 20:55:44 -06:00
State {
managed: @Cons((), st.managed),
2012-09-04 16:12:14 -05:00
unique: ~Cons((), @*st.unique),
tuple: (@Cons((), st.tuple.ref0().clone()),
~Cons((), @*st.tuple.ref1().clone())),
vec: st.vec + &[@Cons((), *st.vec.last().unwrap())],
2012-09-04 16:12:14 -05:00
res: r(@Cons((), st.res._l))
2013-01-28 20:55:44 -06:00
}
2012-06-02 19:42:48 -05:00
}
};
2013-02-15 04:44:18 -06:00
recurse_or_fail(depth, Some(st));
2012-06-02 19:42:48 -05:00
}
}