rust/src
Rafael Ávila de Espíndola 3eafea46a3 Dead code.
2011-05-25 11:36:34 -04:00
..
comp rustc: Downcase typeck::demand and typeck::pushdown 2011-05-24 20:26:46 -04: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 Add quick_sort3 function based on 'QuicksortIsOptimal.pdf' (see comments in file). Cleanup the quick_sort function a little, as well. Add test file. 2011-05-24 18:38:41 -04:00
rt Dead code. 2011-05-25 11:36:34 -04:00
rustllvm rustllvm: Free TargetMachine in LLVMRustWriteOutputFile 2011-05-14 00:48:51 -04:00
test test: Fix run-fail testing and bring tests up to date 2011-05-24 22:09:12 -04:00
README Remove rustboot from the repository. 2011-05-13 18:38:28 -07:00
run.py
snapshots.txt Register new snapshots 2011-05-21 18:09:15 -04: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.