rust/src
2011-09-30 14:26:06 -07:00
..
comp rustc: Remove some debug code 2011-09-30 14:26:06 -07:00
etc Register snapshots and finish filesystem reorg 2011-09-29 23:33:44 -07:00
fuzzer Prevent copies of resources into various things 2011-09-27 21:50:07 -07:00
lib Reorganize structure of build directory 2011-09-29 22:58:33 -07:00
rt rt: Fix assembler for C calls to work more like a regular function call 2011-09-29 17:34:49 -07:00
rustllvm
test Teach compiletest to construct the PATH variable correctly on win32 2011-09-29 22:58:34 -07:00
README
snapshots.txt Register snapshots and finish filesystem reorg 2011-09-29 23:33:44 -07: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.