]> git.lizzy.rs Git - rust.git/blob - test.sh
[DEBUG] Add objdump invocation
[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 dylib
9
10 objdump -section-headers target/out/libmini_core.dylib
11
12 echo "[BUILD] example"
13 $RUSTC example/example.rs --crate-type lib
14
15 echo "[JIT] mini_core_hello_world"
16 SHOULD_RUN=1 JIT_ARGS="abc bcd" $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
17
18 echo "[AOT] mini_core_hello_world"
19 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
20 ./target/out/mini_core_hello_world abc bcd
21
22 echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
23 $RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin
24 ./target/out/arbitrary_self_types_pointers_and_wrappers
25
26 echo "[BUILD] sysroot"
27 time ./build_sysroot/build_sysroot.sh
28
29 echo "[BUILD+RUN] alloc_example"
30 $RUSTC example/alloc_example.rs --crate-type bin
31 ./target/out/alloc_example
32
33 echo "[BUILD+RUN] std_example"
34 $RUSTC example/std_example.rs --crate-type bin
35 ./target/out/std_example
36
37 echo "[BUILD] mod_bench"
38 $RUSTC example/mod_bench.rs --crate-type bin
39
40 # FIXME linker gives multiple definitions error on Linux
41 #echo "[BUILD] sysroot in release mode"
42 #./build_sysroot/build_sysroot.sh --release
43
44 COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
45 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"
46 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"
47 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"
48 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"
49
50 # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
51 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"
52
53 echo
54 echo "[Bench] mod_bench"
55 hyperfine ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
56
57 cat target/out/log.txt | sort | uniq -c