libfringe/benches/swap.rs

31 lines
917 B
Rust
Raw Normal View History

2015-04-16 20:06:57 +08:00
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) edef <edef@edef.eu>,
// whitequark <whitequark@whitequark.org>
2015-04-16 18:08:44 +08:00
// See the LICENSE file included in this distribution.
2015-02-03 03:17:23 +08:00
#![feature(test)]
2014-12-23 11:24:40 +08:00
extern crate test;
2015-04-16 20:06:57 +08:00
extern crate fringe;
2015-04-16 20:06:57 +08:00
use fringe::Context;
static mut ctx_slot: *mut Context<fringe::OsStack> = 0 as *mut Context<_>;
2014-12-23 11:24:40 +08:00
#[bench]
fn swap(b: &mut test::Bencher) {
unsafe extern "C" fn loopback(mut arg: usize) -> ! {
// This deliberately does not ignore arg, to measure the time it takes
// to move the return value between registers.
let ctx_ptr = ctx_slot;
loop { arg = Context::swap(ctx_ptr, ctx_ptr, arg) }
}
unsafe {
2015-04-16 20:06:57 +08:00
let stack = fringe::OsStack::new(4 << 20).unwrap();
let mut ctx = Context::new(stack, loopback);
ctx_slot = &mut ctx;
2014-12-23 11:24:40 +08:00
let ctx_ptr = &mut ctx;
b.iter(|| Context::swap(ctx_ptr, ctx_ptr, 0));
2014-12-23 11:24:40 +08:00
}
}