rust/test.sh

57 lines
2.1 KiB
Bash
Raw Normal View History

2018-08-10 19:09:21 +02:00
#!/bin/bash
source config.sh
2018-08-31 19:50:26 +02:00
build_example_bin() {
$RUSTC $2 --crate-name $1 --crate-type bin
2018-11-09 18:38:30 +01:00
sh -c ./target/out/$1 || true
2018-08-31 19:50:26 +02:00
}
rm -r target/out || true
2018-08-15 16:17:59 +02:00
mkdir -p target/out/clif
2018-09-09 14:45:23 +02:00
echo "[BUILD] mini_core"
2018-11-02 20:09:52 +01:00
$RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib
2018-11-02 20:09:52 +01:00
echo "[BUILD] example"
$RUSTC example/example.rs --crate-type lib
2018-09-09 14:45:23 +02:00
echo "[JIT] mini_core_hello_world"
2018-11-02 20:09:52 +01:00
SHOULD_RUN=1 $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
2018-09-09 14:45:23 +02:00
echo "[AOT] mini_core_hello_world"
build_example_bin mini_core_hello_world example/mini_core_hello_world.rs
2018-08-15 15:23:28 +02:00
2018-10-08 19:40:06 +02:00
pushd xargo
rm -r ~/.xargo/HOST || true
2018-11-03 15:04:27 +01:00
rm -r target || true
2018-11-05 18:42:43 +01:00
time xargo build
2018-10-08 19:40:06 +02:00
popd
2018-11-05 18:42:43 +01:00
# TODO linux linker doesn't accept duplicate definitions
#$RUSTC --sysroot ~/.xargo/HOST example/alloc_example.rs --crate-type bin
#./target/out/alloc_example
2018-11-05 18:42:43 +01:00
$RUSTC --sysroot ~/.xargo/HOST example/mod_bench.rs --crate-type bin
echo "[BUILD] RUSTFLAGS=-Zmir-opt-level=3"
pushd xargo
rm -r ~/.xargo/HOST || true
rm -r target || true
time RUSTFLAGS="-Zmir-opt-level=3 $RUSTFLAGS" xargo build
popd
2018-11-16 18:39:31 +01:00
COMPILE_MOD_BENCH_INLINE="$RUSTC --sysroot ~/.xargo/HOST example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -Og --crate-name mod_bench_inline"
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"
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"
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"
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"
# Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
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"
2018-11-05 18:42:43 +01:00
echo
echo "[Bench] mod_bench"
2018-11-09 18:38:30 +01:00
hyperfine ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
2018-11-05 18:42:43 +01:00
2018-08-23 11:03:43 +02:00
cat target/out/log.txt | sort | uniq -c