rust/src
2011-06-02 16:12:20 +02:00
..
comp rustc: Add a new mode to the pretty printer that prints out node IDs, for debugging 2011-06-01 18:53:52 -07:00
etc Dead code. 2011-05-24 19:39:30 -04:00
fuzzer fuzzer: Begin writing main 2011-05-20 22:32:41 -04:00
lib stdlib: Add some functions to getopts to deal with optional arguments more easily 2011-06-01 18:32:05 -07:00
rt Move rust_vec_append_glue to rt. 2011-05-31 14:32:08 -04:00
rustllvm
test Un-xfail obj-dtor-2 2011-06-02 16:12:20 +02:00
README
run.py
snapshots.txt Register new snapshots. 2011-06-01 16:39:31 -07:00

This is preliminary version of the Rust compiler(s).

Source layout:

comp/              The self-hosted compiler

rt/                The runtime system
rt/rust_*.cpp      - The majority of the runtime services
rt/isaac           - The PRNG used for pseudo-random choices in the runtime
rt/bigint          - The bigint library used for the 'big' type
rt/uthash          - Small hashtable-and-list library for C, used in runtime
rt/{sync,util}     - Small utility classes for the runtime.

test/              Testsuite (for both bootstrap and self-hosted)
test/compile-fail  - Tests that should fail to compile
test/run-fail      - Tests that should compile, run and fail
test/run-pass      - Tests that should compile, run and succeed
test/bench         - Benchmarks and miscellanea

Please be gentle, it's a work in progress.