rust/src
2011-10-21 16:19:27 -07:00
..
comp avoid extra load for by_mutable_ref parameters 2011-10-21 16:19:27 -07:00
compiletest Remove remaining uses of iter and for-each 2011-10-21 13:34:35 +02:00
etc move ctags.rust into src/etc 2011-10-12 13:57:32 -07:00
fuzzer Remove some semicolons after block calls 2011-10-21 14:24:42 +02:00
lib Clean up character pattern in float.rs 2011-10-21 21:06:54 +02:00
rt Free vectors during cc sweep 2011-10-21 16:07:40 -07:00
rustllvm Update LinkModules invocation to use new prototype 2011-10-15 15:53:18 -07:00
test Free vectors during cc sweep 2011-10-21 16:07:40 -07:00
README Revert trivial commit. 2011-09-20 17:20:14 -07:00
snapshots.txt Register new snapshot 2011-10-21 11:56:39 +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.