Implement add + sub and minimal interpreter

This commit is contained in:
David Gonzalez Martin 2024-07-27 13:29:22 +02:00
parent 667597d38e
commit 3654552d89
4 changed files with 698 additions and 199 deletions

File diff suppressed because it is too large Load Diff

View File

@ -15,7 +15,7 @@ exe_name="nest"
exe_path=$build_dir/$exe_name exe_path=$build_dir/$exe_name
debug_flags="-g" debug_flags="-g"
optimization_flags="-O0" optimization_flags="-O0"
bootstrap_args="$path" bootstrap_args="$path i"
case "$OSTYPE" in case "$OSTYPE" in
darwin*) static=0;; darwin*) static=0;;
linux*) static=1;; linux*) static=1;;
@ -26,6 +26,6 @@ compile $build_dir $exe_name $debug_flags $optimization_flags $static
case "$OSTYPE" in case "$OSTYPE" in
darwin*) lldb -- $exe_path $bootstrap_args;; darwin*) lldb -- $exe_path $bootstrap_args;;
linux*) gf2 -ex b entry_point -ex r --args $exe_path $bootstrap_args;; linux*) gf2 -ex "set auto-solib-add off" -ex "r" --args $exe_path $bootstrap_args;;
*) echo "unknown: $OSTYPE" ;; *) echo "unknown: $OSTYPE" ;;
esac esac

View File

@ -8,7 +8,7 @@ build_dir="build"
base_exe_name="nest" base_exe_name="nest"
debug_flags="-g" debug_flags="-g"
no_optimization_flags="" no_optimization_flags=""
test_names="first" test_names=("first" "add_sub")
if [ "$all" == "1" ] if [ "$all" == "1" ]
then then
@ -18,6 +18,7 @@ then
linux*) linking_modes=("0" "1") ;; linux*) linking_modes=("0" "1") ;;
*) echo "unknown: $OSTYPE"; exit 1 ;; *) echo "unknown: $OSTYPE"; exit 1 ;;
esac esac
execution_engines=("c", "i")
else else
optimization_modes=("-O0") optimization_modes=("-O0")
case "$OSTYPE" in case "$OSTYPE" in
@ -25,13 +26,13 @@ else
linux*) linking_modes=("1") ;; linux*) linking_modes=("1") ;;
*) echo "unknown: $OSTYPE"; exit 1 ;; *) echo "unknown: $OSTYPE"; exit 1 ;;
esac esac
execution_engines=("i")
fi fi
for linking_mode in "${linking_modes[@]}" for linking_mode in "${linking_modes[@]}"
do do
for optimization_mode in "${optimization_modes[@]}" for optimization_mode in "${optimization_modes[@]}"
do do
printf "\n===========================\n" printf "\n===========================\n"
echo "TESTS (STATIC=$linking_mode, $optimization_mode)" echo "TESTS (STATIC=$linking_mode, $optimization_mode)"
printf "===========================\n\n" printf "===========================\n\n"
@ -48,16 +49,25 @@ do
printf "\n===========================\n" printf "\n===========================\n"
echo "$test_name..." echo "$test_name..."
printf "===========================\n\n" printf "===========================\n\n"
cmd="build/$exe_name tests/$test_name.nat"
echo "Run command: $cmd" for execution_engine in "${execution_engines[@]}"
eval "$cmd" do
printf "\n===========================\n" cmd="build/$exe_name tests/$test_name.nat $execution_engine"
echo "$test_name [COMPILATION] [OK]" echo "Run command: $cmd"
printf "===========================\n\n" eval "$cmd"
nest/$test_name printf "\n===========================\n"
printf "\n===========================\n" echo "$test_name [COMPILATION] [EXECUTION ENGINE: $execution_engine] [OK]"
echo "$test_name [RUN] [OK]" printf "===========================\n\n"
printf "===========================\n\n"
if [ "$execution_engine" != "i" ]
then
nest/$test_name
fi
printf "\n===========================\n"
echo "$test_name [RUN] [OK]"
printf "===========================\n\n"
done
done done
done done
done done

4
tests/add_sub.nat Normal file
View File

@ -0,0 +1,4 @@
fn main() s32
{
return 1 - 1 + 1 - 1;
}