rust/src
2011-09-24 16:33:26 -07:00
..
comp Reduce and clarify abuse of 'pure' in interner 2011-09-24 16:33:26 -07:00
etc Add libuv upgrade instructions to src/etc/gyp-uv 2011-09-23 16:53:07 -07:00
fuzzer Add rand_util.rs 2011-09-23 23:24:43 -07:00
lib Mark vec::len as pure 2011-09-24 15:10:03 -07:00
rt rt: Sweep in cycle collection 2011-09-23 17:57:25 -07:00
rustllvm Add Rust definitions for new LLVM EH instructions 2011-09-11 17:31:38 -07:00
test Don't iloop (future-proof test against improved reachability computations) 2011-09-24 16:13:32 -07:00
README Revert trivial commit. 2011-09-20 17:20:14 -07:00
snapshots.txt Register new snapshot 2011-09-15 17:33:35 +02:00

This is preliminary version of the Rust compiler.

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.