rust/src
2011-07-27 14:43:35 -07:00
..
comp Mess around with the casting in trans_bind. 2011-07-27 14:43:35 -07:00
etc Another attempt at fixing fast check for the win tinderbox 2011-07-27 19:02:45 +02:00
fuzzer Reformat for new syntax 2011-07-27 15:54:33 +02:00
lib Don't allow globals or immutable locals to be passed by mut alias 2011-07-27 17:19:46 +02:00
rt More thorough check for interior-ness in str_from_ivec 2011-07-27 21:46:14 +02:00
rustllvm Revert "Revert "Rename Passes2.cpp to Passes.cpp"" 2011-07-17 19:16:23 -07:00
test Fix comment placement in compiletest 2011-07-27 11:17:03 -07:00
README Update README files 2011-06-26 22:27:22 -07:00
snapshots.txt (belatedly) register a new stable snapshot 2011-07-27 20:46:08 +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/{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.