rust/src
2011-12-06 22:35:42 -08:00
..
cargo cargo: support build-from-source 2011-12-01 19:49:17 -08:00
comp fix hash function: + binds tighter than << 2011-12-06 21:34:50 -08:00
compiletest
etc correct the use of 'sed -i' 2011-12-05 15:12:36 -08:00
fuzzer
libcore Establish 'core' library separate from 'std'. 2011-12-06 12:13:04 -08:00
libstd hack for now: map uint hashes into a u32, which helps x86_64 perf. 2011-12-06 19:55:46 -08:00
libuv@f1859eb841
llvm@80b1ae9292 Upgrade LLVM to svn revision 145779 2011-12-04 14:59:56 -08:00
rt rt: Put 16 guard bytes at the end of the stack 2011-12-06 22:35:42 -08:00
rustllvm Upgrade LLVM to svn revision 145779 2011-12-04 14:59:56 -08:00
test rt: Various tweaks to make __morestack unwinding work on linux 2011-12-06 16:32:41 -08:00
README
snapshots.txt

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.