2014-10-30 15:43:24 -05:00
|
|
|
// Copyright 2013-2014 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.
|
|
|
|
|
2015-02-10 12:41:05 -06:00
|
|
|
macro_rules! map_insert_rand_bench {
|
|
|
|
($name: ident, $n: expr, $map: ident) => (
|
|
|
|
#[bench]
|
|
|
|
pub fn $name(b: &mut ::test::Bencher) {
|
2015-04-10 13:39:53 -05:00
|
|
|
use std::__rand::{thread_rng, Rng};
|
2015-02-10 12:41:05 -06:00
|
|
|
use test::black_box;
|
|
|
|
|
|
|
|
let n: usize = $n;
|
|
|
|
let mut map = $map::new();
|
|
|
|
// setup
|
2015-04-10 13:39:53 -05:00
|
|
|
let mut rng = thread_rng();
|
2015-02-10 12:41:05 -06:00
|
|
|
|
|
|
|
for _ in 0..n {
|
2015-03-24 14:45:11 -05:00
|
|
|
let i = rng.gen::<usize>() % n;
|
2015-02-10 12:41:05 -06:00
|
|
|
map.insert(i, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// measure
|
|
|
|
b.iter(|| {
|
2015-03-24 14:45:11 -05:00
|
|
|
let k = rng.gen::<usize>() % n;
|
2015-02-10 12:41:05 -06:00
|
|
|
map.insert(k, k);
|
|
|
|
map.remove(&k);
|
|
|
|
});
|
|
|
|
black_box(map);
|
|
|
|
}
|
|
|
|
)
|
2014-10-30 15:43:24 -05:00
|
|
|
}
|
|
|
|
|
2015-02-10 12:41:05 -06:00
|
|
|
macro_rules! map_insert_seq_bench {
|
|
|
|
($name: ident, $n: expr, $map: ident) => (
|
|
|
|
#[bench]
|
|
|
|
pub fn $name(b: &mut ::test::Bencher) {
|
|
|
|
use test::black_box;
|
|
|
|
|
|
|
|
let mut map = $map::new();
|
|
|
|
let n: usize = $n;
|
|
|
|
// setup
|
|
|
|
for i in 0..n {
|
|
|
|
map.insert(i * 2, i * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// measure
|
|
|
|
let mut i = 1;
|
|
|
|
b.iter(|| {
|
|
|
|
map.insert(i, i);
|
|
|
|
map.remove(&i);
|
|
|
|
i = (i + 2) % n;
|
|
|
|
});
|
|
|
|
black_box(map);
|
|
|
|
}
|
|
|
|
)
|
2014-10-30 15:43:24 -05:00
|
|
|
}
|
|
|
|
|
2015-02-10 12:41:05 -06:00
|
|
|
macro_rules! map_find_rand_bench {
|
|
|
|
($name: ident, $n: expr, $map: ident) => (
|
|
|
|
#[bench]
|
|
|
|
pub fn $name(b: &mut ::test::Bencher) {
|
2015-03-12 00:41:24 -05:00
|
|
|
use std::iter::Iterator;
|
2015-04-10 13:39:53 -05:00
|
|
|
use std::__rand::{thread_rng, Rng};
|
2015-03-10 23:58:16 -05:00
|
|
|
use std::vec::Vec;
|
2015-02-10 12:41:05 -06:00
|
|
|
use test::black_box;
|
|
|
|
|
|
|
|
let mut map = $map::new();
|
|
|
|
let n: usize = $n;
|
|
|
|
|
|
|
|
// setup
|
2015-04-10 15:51:53 -05:00
|
|
|
let mut rng = thread_rng();
|
2015-03-24 14:45:11 -05:00
|
|
|
let mut keys: Vec<_> = (0..n).map(|_| rng.gen::<usize>() % n).collect();
|
2015-02-10 12:41:05 -06:00
|
|
|
|
|
|
|
for &k in &keys {
|
|
|
|
map.insert(k, k);
|
|
|
|
}
|
|
|
|
|
|
|
|
rng.shuffle(&mut keys);
|
|
|
|
|
|
|
|
// measure
|
|
|
|
let mut i = 0;
|
|
|
|
b.iter(|| {
|
|
|
|
let t = map.get(&keys[i]);
|
|
|
|
i = (i + 1) % n;
|
|
|
|
black_box(t);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
2014-10-30 15:43:24 -05:00
|
|
|
}
|
|
|
|
|
2015-02-10 12:41:05 -06:00
|
|
|
macro_rules! map_find_seq_bench {
|
|
|
|
($name: ident, $n: expr, $map: ident) => (
|
|
|
|
#[bench]
|
|
|
|
pub fn $name(b: &mut ::test::Bencher) {
|
|
|
|
use test::black_box;
|
|
|
|
|
|
|
|
let mut map = $map::new();
|
|
|
|
let n: usize = $n;
|
|
|
|
|
|
|
|
// setup
|
|
|
|
for i in 0..n {
|
|
|
|
map.insert(i, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// measure
|
|
|
|
let mut i = 0;
|
|
|
|
b.iter(|| {
|
|
|
|
let x = map.get(&i);
|
|
|
|
i = (i + 1) % n;
|
|
|
|
black_box(x);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
2014-10-30 15:43:24 -05:00
|
|
|
}
|