]> git.lizzy.rs Git - rust.git/blob - test.sh
Make codegen_call_inner a bit more readable
[rust.git] / test.sh
1 #!/bin/bash
2 source config.sh
3
4 build_example_bin() {
5     $RUSTC $2 --crate-name $1 --crate-type bin
6     sh -c ./target/out/$1 || true
7 }
8
9 rm -r target/out || true
10 mkdir -p target/out/clif
11
12 echo "[BUILD] mini_core"
13 $RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib -g
14
15 echo "[BUILD] example"
16 $RUSTC example/example.rs --crate-type lib -g
17
18 echo "[JIT] mini_core_hello_world"
19 SHOULD_RUN=1 $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
20
21 echo "[AOT] mini_core_hello_world"
22 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g
23 sh -c ./target/out/mini_core_hello_world || true
24
25 echo "[BUILD] sysroot"
26 time ./build_sysroot/build_sysroot.sh
27
28 # TODO linux linker doesn't accept duplicate definitions
29 # echo "[BUILD+RUN] alloc_example"
30 #$RUSTC --sysroot ./build_sysroot/sysroot example/alloc_example.rs --crate-type bin
31 #./target/out/alloc_example
32
33 echo "[BUILD] mod_bench"
34 $RUSTC --sysroot ./build_sysroot/sysroot example/mod_bench.rs --crate-type bin -g
35
36 echo "[BUILD] sysroot in release mode"
37 ./build_sysroot/build_sysroot.sh --release
38
39 COMPILE_MOD_BENCH_INLINE="$RUSTC --sysroot ./build_sysroot/sysroot example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -Og --crate-name mod_bench_inline"
40 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"
41 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"
42 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"
43 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"
44
45 # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
46 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"
47
48 echo
49 echo "[Bench] mod_bench"
50 hyperfine ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
51
52 cat target/out/log.txt | sort | uniq -c