rust/src
Tim Chevalier 0d4b51d10d Add a returns_non_ty_var predicate
which just calls non_ty_var on the return type of t, assuming t is
a function type.
2011-09-16 13:06:31 -07:00
..
comp Add a returns_non_ty_var predicate 2011-09-16 13:06:31 -07:00
etc Don't check-fast xfail-win32 tests 2011-09-11 17:31:41 -07:00
fuzzer Fuzzer: update lists of known bugs 2011-09-16 10:44:58 -07:00
lib Revert "Revert "Make option::get return the option contents by reference" due to memory corruption" 2011-09-16 12:20:06 -07:00
rt Yield after send 2011-09-16 11:08:01 -07:00
rustllvm Add Rust definitions for new LLVM EH instructions 2011-09-11 17:31:38 -07:00
test Saner approach to lvalues and callable values in trans 2011-09-16 21:31:36 +02:00
README Mostly-trivial commit to test build cycle on windows service. 2011-08-26 13:14:02 -07:00
snapshots.txt Register new snapshot 2011-09-15 17:33:35 +02:00

This is preliminary version of the Rust compiler(s).

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.