rust/src
2011-06-25 19:28:19 -07:00
..
comp Use single-bar or to make tstate/states.rs prettier 2011-06-25 21:16:03 +02:00
etc Register new snapshots. Update location of stage0's libstd 2011-06-17 18:19:37 -07:00
fuzzer
lib Invalidate constraints correctly after an assignment expression 2011-06-24 22:36:53 -07:00
rt Combined set_registers and get_registers into swap_registers. 2011-06-23 20:23:04 -07:00
rustllvm Use fast regalloc and codegen at OptLevel=0. 2011-06-22 16:50:30 -04:00
test Add a test for mismatched types when comparing functions 2011-06-25 19:28:19 -07:00
README
run.py
snapshots.txt Register new snapshots. Update location of stage0's libstd 2011-06-17 18:19:37 -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.