2018-08-10 17:09:21 +00:00
|
|
|
#!/bin/bash
|
2019-07-30 11:37:47 +00:00
|
|
|
|
2019-07-30 12:51:05 +00:00
|
|
|
set -e
|
|
|
|
|
2019-07-30 11:37:47 +00:00
|
|
|
if [[ "$1" == "--release" ]]; then
|
|
|
|
export CHANNEL='release'
|
2019-10-19 09:10:34 +00:00
|
|
|
cargo build --release $CG_CLIF_COMPILE_FLAGS
|
2019-07-30 11:37:47 +00:00
|
|
|
else
|
|
|
|
export CHANNEL='debug'
|
2019-10-19 09:10:34 +00:00
|
|
|
cargo build $CG_CLIF_COMPILE_FLAGS
|
2019-07-30 11:37:47 +00:00
|
|
|
fi
|
|
|
|
|
2018-12-03 17:50:00 +00:00
|
|
|
source config.sh
|
2018-08-08 17:46:16 +00:00
|
|
|
|
2019-08-18 13:48:31 +00:00
|
|
|
jit() {
|
|
|
|
if [[ `uname` == 'Darwin' ]]; then
|
|
|
|
# FIXME(#671) `dlsym` returns "symbol not found" for existing symbols on macOS.
|
|
|
|
echo "[JIT] $1 (Ignored on macOS)"
|
|
|
|
else
|
|
|
|
echo "[JIT] $1"
|
|
|
|
SHOULD_RUN=1 $RUSTC --crate-type bin -Cprefer-dynamic $2
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-08-31 17:50:26 +00:00
|
|
|
rm -r target/out || true
|
2018-08-15 14:17:59 +00:00
|
|
|
mkdir -p target/out/clif
|
2018-08-14 20:01:18 +00:00
|
|
|
|
2018-09-09 12:45:23 +00:00
|
|
|
echo "[BUILD] mini_core"
|
2019-08-19 13:36:03 +00:00
|
|
|
$RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib,dylib
|
2018-08-14 20:01:18 +00:00
|
|
|
|
2018-11-02 19:09:52 +00:00
|
|
|
echo "[BUILD] example"
|
2019-02-11 14:42:28 +00:00
|
|
|
$RUSTC example/example.rs --crate-type lib
|
2018-08-14 20:01:18 +00:00
|
|
|
|
2019-08-18 13:48:31 +00:00
|
|
|
JIT_ARGS="abc bcd" jit mini_core_hello_world example/mini_core_hello_world.rs
|
2018-08-14 20:01:18 +00:00
|
|
|
|
2018-09-09 12:45:23 +00:00
|
|
|
echo "[AOT] mini_core_hello_world"
|
2019-02-11 14:42:28 +00:00
|
|
|
$RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
|
2019-02-18 17:53:18 +00:00
|
|
|
./target/out/mini_core_hello_world abc bcd
|
2018-08-15 13:23:28 +00:00
|
|
|
|
2019-03-02 20:09:28 +00: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 12:58:33 +00:00
|
|
|
echo "[BUILD] sysroot"
|
2019-08-10 14:56:19 +00:00
|
|
|
time ./build_sysroot/build_sysroot.sh
|
2018-10-08 17:40:06 +00:00
|
|
|
|
2019-08-10 14:50:23 +00:00
|
|
|
echo "[AOT] alloc_example"
|
2019-04-10 14:50:50 +00:00
|
|
|
$RUSTC example/alloc_example.rs --crate-type bin
|
2019-02-11 14:28:56 +00:00
|
|
|
./target/out/alloc_example
|
2018-11-05 17:42:43 +00:00
|
|
|
|
2019-08-18 13:48:31 +00:00
|
|
|
jit std_example example/std_example.rs
|
2019-08-10 14:50:23 +00:00
|
|
|
|
2019-09-02 17:50:21 +00:00
|
|
|
echo "[AOT] dst_field_align"
|
|
|
|
$RUSTC example/dst-field-align.rs -Zmir-opt-level=2 --crate-name dst_field_align --crate-type bin
|
|
|
|
./target/out/dst_field_align
|
|
|
|
|
2019-08-10 14:50:23 +00:00
|
|
|
echo "[AOT] std_example"
|
2019-04-10 14:50:50 +00:00
|
|
|
$RUSTC example/std_example.rs --crate-type bin
|
2019-02-11 18:40:07 +00:00
|
|
|
./target/out/std_example
|
|
|
|
|
2018-12-14 12:58:33 +00:00
|
|
|
echo "[BUILD] mod_bench"
|
2019-04-10 14:50:50 +00:00
|
|
|
$RUSTC example/mod_bench.rs --crate-type bin
|
2018-11-10 14:33:44 +00:00
|
|
|
|
2019-02-11 18:40:07 +00:00
|
|
|
# FIXME linker gives multiple definitions error on Linux
|
|
|
|
#echo "[BUILD] sysroot in release mode"
|
|
|
|
#./build_sysroot/build_sysroot.sh --release
|
2018-11-10 14:33:44 +00:00
|
|
|
|
2019-08-30 15:29:38 +00:00
|
|
|
pushd simple-raytracer
|
2019-11-23 14:10:29 +00:00
|
|
|
echo "[BENCH COMPILE] ebobby/simple-raytracer"
|
|
|
|
hyperfine --runs ${RUN_RUNS:-10} --warmup 1 --prepare "rm -r target/*/debug" \
|
|
|
|
"RUSTFLAGS='' cargo build --target $TARGET_TRIPLE" \
|
|
|
|
"../cargo.sh build"
|
2019-08-30 15:29:38 +00:00
|
|
|
|
2019-11-23 14:10:29 +00:00
|
|
|
echo "[BENCH RUN] ebobby/simple-raytracer"
|
|
|
|
cp ./target/*/debug/main ./raytracer_cg_clif
|
2019-08-30 15:29:38 +00:00
|
|
|
hyperfine --runs ${RUN_RUNS:-10} ./raytracer_cg_llvm ./raytracer_cg_clif
|
|
|
|
popd
|
|
|
|
|
2019-07-30 11:37:47 +00:00
|
|
|
pushd regex
|
|
|
|
echo "[TEST] rust-lang/regex example shootout-regex-dna"
|
|
|
|
../cargo.sh clean
|
|
|
|
# Make sure `[codegen mono items] start` doesn't poison the diff
|
|
|
|
../cargo.sh build --example shootout-regex-dna
|
|
|
|
cat examples/regexdna-input.txt | ../cargo.sh run --example shootout-regex-dna > res.txt
|
|
|
|
diff -u res.txt examples/regexdna-output.txt
|
|
|
|
|
2019-08-10 12:06:08 +00:00
|
|
|
echo "[TEST] rust-lang/regex tests"
|
2019-08-09 12:33:59 +00:00
|
|
|
../cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options
|
2019-07-30 11:37:47 +00:00
|
|
|
popd
|
|
|
|
|
2019-08-10 12:06:08 +00:00
|
|
|
echo
|
|
|
|
echo "[BENCH COMPILE] mod_bench"
|
|
|
|
|
2019-04-10 14:50:50 +00: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 17:39:31 +00: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
|
2019-08-10 12:06:08 +00:00
|
|
|
hyperfine --runs ${COMPILE_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 17:42:43 +00:00
|
|
|
|
|
|
|
echo
|
2019-08-10 12:06:08 +00:00
|
|
|
echo "[BENCH RUN] mod_bench"
|
|
|
|
hyperfine --runs ${RUN_RUNS:-10} ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
|