rust/src
2011-09-17 10:18:30 -07:00
..
comp Add a precondition to GEP_tup_like 2011-09-17 10:18:30 -07:00
etc
fuzzer Fuzzer: update lists of known bugs 2011-09-16 10:44:58 -07:00
lib Revert "Revert "Make option::get return the option contents by reference" due to memory corruption" 2011-09-16 12:20:06 -07:00
rt Yield after send 2011-09-16 11:08:01 -07:00
rustllvm
test Make move-mode arguments unwind correctly. Closes #939 2011-09-16 14:38:04 -07:00
README
snapshots.txt Register new snapshot 2011-09-15 17:33:35 +02:00

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

Source layout:

comp/              The self-hosted compiler

lib/               The standard library

rustllvm/          LLVM support code

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/libuv           - The library used for async IO in the runtime
rt/{sync,util}     - Small utility classes for the runtime.

test/              Testsuite
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.