]> git.lizzy.rs Git - rust.git/blob - src/test/bench/task-perf-jargon-metal-smoke.rs
Merge pull request #20510 from tshepang/patch-6
[rust.git] / src / test / bench / task-perf-jargon-metal-smoke.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test performance of a task "spawn ladder", in which children task have
12 // many ancestor taskgroups, but with only a few such groups alive at a time.
13 // Each child task has to enlist as a descendant in each of its ancestor
14 // groups, but that shouldn't have to happen for already-dead groups.
15 //
16 // The filename is a song reference; google it in quotes.
17
18 // ignore-pretty very bad with line comments
19
20 use std::sync::mpsc::{channel, Sender};
21 use std::os;
22 use std::thread::Thread;
23 use std::uint;
24
25 fn child_generation(gens_left: uint, tx: Sender<()>) {
26     // This used to be O(n^2) in the number of generations that ever existed.
27     // With this code, only as many generations are alive at a time as tasks
28     // alive at a time,
29     Thread::spawn(move|| {
30         if gens_left & 1 == 1 {
31             Thread::yield_now(); // shake things up a bit
32         }
33         if gens_left > 0 {
34             child_generation(gens_left - 1, tx); // recurse
35         } else {
36             tx.send(()).unwrap()
37         }
38     }).detach();
39 }
40
41 fn main() {
42     let args = os::args();
43     let args = if os::getenv("RUST_BENCH").is_some() {
44         vec!("".to_string(), "100000".to_string())
45     } else if args.len() <= 1 {
46         vec!("".to_string(), "100".to_string())
47     } else {
48         args.clone().into_iter().collect()
49     };
50
51     let (tx, rx) = channel();
52     child_generation(args[1].parse().unwrap(), tx);
53     if rx.recv().is_err() {
54         panic!("it happened when we slumbered");
55     }
56 }