rust/src
Niko Matsakis 4b13fdbf27 when type checking still pass in the rustc args from cmd line
otherwise we use the wrong target and things start to fail
2011-11-29 12:51:10 -08:00
..
comp fix bug in shape concerning size of tag variant 2011-11-29 12:51:08 -08:00
compiletest when type checking still pass in the rustc args from cmd line 2011-11-29 12:51:10 -08:00
etc basic builds function 2011-11-29 12:51:07 -08:00
fuzzer Update stdlib, compiler, and tests to new kind system 2011-11-18 12:49:01 +01:00
lib c_vec: Remove the mutable cast be forcing the pointer to be mutable throughout (discussion in #1217). 2011-11-28 10:41:45 -08:00
libuv@f1859eb841
llvm@566f233ba6
rt rt: Make 64-bit __morestack grow and shrink properly 2011-11-28 21:57:52 -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 update io test to use tmp directory, and update configure to create it 2011-11-29 12:51:09 -08:00
README
snapshots.txt Register snapshots 2011-11-25 23:49:33 -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.