2018-08-10 12:09:21 -05:00
|
|
|
#!/bin/bash
|
2018-12-03 11:50:00 -06:00
|
|
|
source config.sh
|
2018-08-08 12:46:16 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
rm -r target/out || true
|
2018-08-15 09:17:59 -05:00
|
|
|
mkdir -p target/out/clif
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-09-09 07:45:23 -05:00
|
|
|
echo "[BUILD] mini_core"
|
2019-02-11 08:42:28 -06:00
|
|
|
$RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-11-02 14:09:52 -05:00
|
|
|
echo "[BUILD] example"
|
2019-02-11 08:42:28 -06:00
|
|
|
$RUSTC example/example.rs --crate-type lib
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-09-09 07:45:23 -05:00
|
|
|
echo "[JIT] mini_core_hello_world"
|
2019-02-18 11:53:18 -06:00
|
|
|
SHOULD_RUN=1 JIT_ARGS="abc bcd" $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-09-09 07:45:23 -05:00
|
|
|
echo "[AOT] mini_core_hello_world"
|
2019-02-11 08:42:28 -06:00
|
|
|
$RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
|
2019-02-18 11:53:18 -06:00
|
|
|
./target/out/mini_core_hello_world abc bcd
|
2018-08-15 08:23:28 -05:00
|
|
|
|
2019-03-02 14:09:28 -06:00
|
|
|
echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
|
|
|
|
$RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin
|
|
|
|
./target/out/arbitrary_self_types_pointers_and_wrappers
|
|
|
|
|
2018-12-14 06:58:33 -06:00
|
|
|
echo "[BUILD] sysroot"
|
|
|
|
time ./build_sysroot/build_sysroot.sh
|
2018-10-08 12:40:06 -05:00
|
|
|
|
2019-02-11 08:28:56 -06:00
|
|
|
echo "[BUILD+RUN] alloc_example"
|
2019-04-10 09:50:50 -05:00
|
|
|
$RUSTC example/alloc_example.rs --crate-type bin
|
2019-02-11 08:28:56 -06:00
|
|
|
./target/out/alloc_example
|
2018-11-05 11:42:43 -06:00
|
|
|
|
2019-02-11 12:40:07 -06:00
|
|
|
echo "[BUILD+RUN] std_example"
|
2019-04-10 09:50:50 -05:00
|
|
|
$RUSTC example/std_example.rs --crate-type bin
|
2019-02-11 12:40:07 -06:00
|
|
|
./target/out/std_example
|
|
|
|
|
2018-12-14 06:58:33 -06:00
|
|
|
echo "[BUILD] mod_bench"
|
2019-04-10 09:50:50 -05:00
|
|
|
$RUSTC example/mod_bench.rs --crate-type bin
|
2018-11-10 08:33:44 -06:00
|
|
|
|
2019-02-11 12:40:07 -06:00
|
|
|
# FIXME linker gives multiple definitions error on Linux
|
|
|
|
#echo "[BUILD] sysroot in release mode"
|
|
|
|
#./build_sysroot/build_sysroot.sh --release
|
2018-11-10 08:33:44 -06:00
|
|
|
|
2019-04-10 09:50:50 -05:00
|
|
|
COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
|
2018-11-16 11:39:31 -06:00
|
|
|
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 11:42:43 -06:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo "[Bench] mod_bench"
|
2018-11-09 11:38:30 -06:00
|
|
|
hyperfine ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
|
2018-11-05 11:42:43 -06:00
|
|
|
|
2018-08-23 04:03:43 -05:00
|
|
|
cat target/out/log.txt | sort | uniq -c
|