mu/translate_subx_debug

29 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-09-07 17:14:35 +00:00
#!/bin/sh
2019-09-07 17:20:44 +00:00
# Translate SubX files with debug information on Linux.
2019-09-07 17:14:35 +00:00
#
# Mu's core tooling has a gap:
2019-09-07 17:20:44 +00:00
# 0. The C++ translator 'subx translate' can generate debug information on
# Linux or BSD or Mac, but doesn't support any syntax sugar.
# 1. The self-hosted translator 'translate' runs in emulated mode and can
# run on Linux or BSD or Mac. However, syntax sugar passes (sigils and
# calls) can be very slow to run emulated.
# 2. The self-hosted translator 'translate_subx' runs natively on Linux. It is
2019-09-07 17:20:44 +00:00
# fast, but you get no trace for runs and zero error-checking on the code
# emitted by sigils and calls. Which could still be buggy.
2019-09-07 17:14:35 +00:00
#
2019-09-07 17:20:44 +00:00
# This script is a hack to get the best of all worlds. We run natively what we
# must, and leverage as much debug information as possible. This arrangement
# is snappy but requires Linux just like 'translate_subx'. You also are on your
2019-09-07 17:14:35 +00:00
# own to mentally map desugared instructions in traces and error messages back
# to the original sources.
set -e
cat $* |apps/braces > a.braces
cat a.braces |apps/calls > a.calls
2019-09-07 17:14:35 +00:00
cat a.calls |apps/sigils > a.sigils
./bootstrap --debug translate a.sigils -o a.elf
2019-09-07 17:14:35 +00:00
chmod +x a.elf