# A Rail compiler written in Haskell
This is (or rather: will become) a compiler for the esoteric programming language Rail, written in Haskell.
documentation
contains additional documentation.
src
contains the Rail compiler and editor (written in Haskell).tests
contains the hunit testsintegration-tests
contains integration tests
tests
for more information.If you plan to contribute to the project, make sure that your contribution does not break any tests and hlint is happy.
Though not applied consistently until now, there are some things which would be really NICE to have:
tests
contains a Main.hs
file that runs an HUnit test with a list of test
functions. For each module src/[module-name].hs
of the compiler pipeline
exists a corresponding test file tests/T[module-name].hs
exporting a list of
test functions for the named module. In the Main.hs
file the list that is
tested by HUnit, is concatenated by the exported test lists of all test modules.
Integration tests are stored in integration-tests
in three subdirectories:
passing/
contains tests that are testing already implemented features and
that already passed beforefailing/
contains tests that are testing already implemented features but
never passedfuture/
contains tests that are testing functionality that will be added
in the futureEach test consists of two files. A rail program [test-name].rail
and an
io-file [test-name].io
.
The io-file specifies test cases, i.e. a set of inputs with the expected corresponding outputs of the rail-program.
Input and output as well as the test cases themselves are separated by a hash tag. If an input has more than one value, they are separated by a newline. Consider a rail program adding two numbers and printing the result (without any newlines). A corresponding io-file with two test cases could look as follows:
3
5
#
8
#
21
56
#
77
NOTE 1: printed newlines have to be stated explicitly. Consider a hello-world
program printing Hello World\n
(without any input). The io-file has to look
as follows:
#
Hello World\n
NOTE 2: The expected output is only tested against stdout
. If you want to test the output
on stderr
as well, you can add another section to a test case, separated by a single %
line:
This is the input.
#
This is the expected output on stdout.
%
This is the expected output on stderr.
#
Another input.
#
Another stdout output.
NOTE 3: Lines containing only a single %
or #
character always delimit sections as
described above. There is no way to escape them, sorry.
tests/integration_tests.sh
is a script written in bash. It iterates over all
rail programs in passing/
, compiles each of them using the current version of
our rail compiler and retrieves runnable llvm-code, i.e. it already links it
with the stack implementation, etc. For each input/output value, it puts the
input into the llvm-binary and compares the actual output with the current
output. The result will be printed to stdout.
cabal update
cabal install llvm-general-3.3.11.2
cabal install --enable-tests
to install all dependencies and build the projectcabal test
to run the testsdist/build/SWPSoSe14/SWPSoSe14 -c -i <Source.rail> -o output
llvm-link <compiled.ll> src/RailCompiler/*.ll -o executable
You can generate the compiler documentation using cabal haddock --executables --haddock-options --ignore-all-exports
from the root project directory.
Currently, there are several (long-lived) team branches and one main development branch,
master
. The master
branch should always contain something that "works" to
some degree, i. e. it should never break.
All team branches are merged into the master
branch on a regular basis.
The following team branches exist. Except for master
, all branches not mentioned
here are to be considered (short-lived) feature branches.
gui
: Contains everything with a graphical user interface, most notably the debugger
and the graphical Rail editor.intertarget-code
: Contains code for the backend, for intermediate code generation and
for code optimization.preproc-lexer
: Contains code for the preprocessor and lexer components.synsem-analysis
: Contains code for the syntactic/semantic analysis.For additional information take a look at our wiki pages: https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14/wiki