File: mod_bench.rs

package info (click to toggle)
rustc 1.63.0%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 445,532 kB
  • sloc: xml: 147,972; javascript: 9,201; sh: 8,612; python: 6,901; ansic: 5,674; cpp: 4,961; makefile: 3,611; asm: 1,438; ruby: 68
file content (36 lines) | stat: -rw-r--r-- 685 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#![feature(start, core_intrinsics, lang_items)]
#![no_std]

#[cfg_attr(unix, link(name = "c"))]
#[cfg_attr(target_env = "msvc", link(name = "msvcrt"))]
extern {}

#[panic_handler]
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
    core::intrinsics::abort();
}

#[lang="eh_personality"]
fn eh_personality(){}

// Required for rustc_codegen_llvm
#[no_mangle]
unsafe extern "C" fn _Unwind_Resume() {
    core::intrinsics::unreachable();
}

#[start]
fn main(_argc: isize, _argv: *const *const u8) -> isize {
    for i in 2..10_000_000 {
        black_box((i + 1) % i);
    }

    0
}

#[inline(never)]
fn black_box(i: u32) {
    if i != 1 {
        core::intrinsics::abort();
    }
}