rust/src
2011-11-30 15:55:28 -08:00
..
comp Box ast::path values 2011-11-30 13:38:38 +01:00
compiletest when type checking still pass in the rustc args from cmd line 2011-11-29 12:51:10 -08:00
etc make check-fast work 2011-11-29 12:51:11 -08:00
fuzzer Update stdlib, compiler, and tests to new kind system 2011-11-18 12:49:01 +01:00
lib Fix typo in stdlib docs. 2011-11-30 03:54:32 -05:00
libuv@f1859eb841
llvm@566f233ba6
rt rt: Request the correct number of bytes on the C stack 2011-11-29 23:01:19 -08:00
rustllvm rustc: Fall back to intrinsics.ll if we can't parse the bc 2011-11-25 22:54:10 -08:00
test adjust and un-xfail 2011-11-30 15:55:28 -08:00
README
snapshots.txt Register snapshots 2011-11-30 14:58:54 -08: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.