]> git.lizzy.rs Git - rust.git/blob - test.sh
Rustup to rustc 1.34.0-nightly (b244f61b7 2019-02-12)
[rust.git] / test.sh
1 #!/bin/bash
2 source config.sh
3
4 rm -r target/out || true
5 mkdir -p target/out/clif
6
7 echo "[BUILD] mini_core"
8 $RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib
9
10 echo "[BUILD] example"
11 $RUSTC example/example.rs --crate-type lib
12
13 echo "[JIT] mini_core_hello_world"
14 SHOULD_RUN=1 $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
15
16 echo "[AOT] mini_core_hello_world"
17 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
18 sh -c ./target/out/mini_core_hello_world
19
20 echo "[BUILD] sysroot"
21 time ./build_sysroot/build_sysroot.sh
22
23 echo "[BUILD+RUN] alloc_example"
24 $RUSTC --sysroot ./build_sysroot/sysroot example/alloc_example.rs --crate-type bin
25 ./target/out/alloc_example
26
27 echo "[BUILD+RUN] std_example"
28 $RUSTC --sysroot ./build_sysroot/sysroot example/std_example.rs --crate-type bin
29 ./target/out/std_example
30
31 echo "[BUILD] mod_bench"
32 $RUSTC --sysroot ./build_sysroot/sysroot example/mod_bench.rs --crate-type bin
33
34 # FIXME linker gives multiple definitions error on Linux
35 #echo "[BUILD] sysroot in release mode"
36 #./build_sysroot/build_sysroot.sh --release
37
38 COMPILE_MOD_BENCH_INLINE="$RUSTC --sysroot ./build_sysroot/sysroot example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
39 COMPILE_MOD_BENCH_LLVM_0="rustc example/mod_bench.rs --crate-type bin -Copt-level=0 -o target/out/mod_bench_llvm_0 -Cpanic=abort"
40 COMPILE_MOD_BENCH_LLVM_1="rustc example/mod_bench.rs --crate-type bin -Copt-level=1 -o target/out/mod_bench_llvm_1 -Cpanic=abort"
41 COMPILE_MOD_BENCH_LLVM_2="rustc example/mod_bench.rs --crate-type bin -Copt-level=2 -o target/out/mod_bench_llvm_2 -Cpanic=abort"
42 COMPILE_MOD_BENCH_LLVM_3="rustc example/mod_bench.rs --crate-type bin -Copt-level=3 -o target/out/mod_bench_llvm_3 -Cpanic=abort"
43
44 # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
45 hyperfine --runs 100 "$COMPILE_MOD_BENCH_INLINE" "$COMPILE_MOD_BENCH_LLVM_0" "$COMPILE_MOD_BENCH_LLVM_1" "$COMPILE_MOD_BENCH_LLVM_2" "$COMPILE_MOD_BENCH_LLVM_3"
46
47 echo
48 echo "[Bench] mod_bench"
49 hyperfine ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
50
51 cat target/out/log.txt | sort | uniq -c