rust/src
2011-11-08 17:16:46 -08:00
..
comp Use ".ll" as default suffix of LLVM assembly file 2011-11-07 21:12:48 -08:00
compiletest Remove all uses of native cdecl except for those that yield 2011-11-08 11:29:10 -08:00
etc Make task_sleep an intrinsic. 2011-11-08 15:58:08 -08:00
fuzzer rustc: Support 'companion mod's for crates and directory mods 2011-10-29 01:40:20 -07:00
lib Clean up std::task 2011-11-08 17:16:46 -08:00
llvm@566f233ba6 Add an LLVM git submodule 2011-11-05 13:23:10 -07:00
rt Make task_sleep an intrinsic. 2011-11-08 15:58:08 -08:00
rustllvm rustc: Add support of generating LLVM assembly 2011-11-07 21:44:40 +08:00
test Make task_sleep an intrinsic. 2011-11-08 15:58:08 -08:00
README Revert trivial commit. 2011-09-20 17:20:14 -07:00
snapshots.txt Register snapshots 2011-11-01 21:22:42 -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.