rust/src
2011-11-15 18:14:13 -08:00
..
comp rustc: Don't sign extend uints during translation 2011-11-15 17:53:44 -08:00
compiletest Cleanup unused imports in tests 2011-11-10 19:19:40 -08:00
etc
fuzzer Cleanup unused imports 2011-11-10 19:19:40 -08:00
lib stdlib: Turn function calls into constants. Fix win32 breakage 2011-11-15 18:14:13 -08:00
libuv@f1859eb841
llvm@566f233ba6
rt Revert "rt: More work on morestack" 2011-11-14 16:20:53 -08:00
rustllvm rustllvm: Add a GetOrInsertFunction wrapper 2011-11-15 00:33:29 +08:00
test Replaced constant functions with actual constants in std and updated tests 2011-11-15 18:02:45 -08:00
README
snapshots.txt Register snapshots 2011-11-09 17:55:12 -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.