libfringe/benches/syscall.rs

36 lines
915 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>
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://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.
#![cfg(target_os = "linux")]
2015-02-03 03:17:23 +08:00
#![feature(asm, test)]
2015-01-14 14:01:43 +08:00
extern crate test;
2015-04-17 00:50:15 +08:00
#[cfg(target_arch = "x86_64")]
2015-01-14 14:01:43 +08:00
#[bench]
fn syscall(b: &mut test::Bencher) {
2015-01-14 14:01:43 +08:00
b.iter(|| unsafe {
asm!("movq $$102, %rax\n\
syscall"
:
:
: "rax", "rcx"
: "volatile");
});
}
2015-04-17 00:50:15 +08:00
#[cfg(target_arch = "x86")]
#[bench]
fn syscall(b: &mut test::Bencher) {
2015-04-17 00:50:15 +08:00
b.iter(|| unsafe {
asm!("mov $$24, %eax\n\
int $$0x80"
:
:
: "eax"
: "volatile");
});
}