rust/src
2011-07-12 17:33:17 -07:00
..
comp Simplify the code for generating tests. Issue #428 2011-07-12 16:54:47 -07:00
etc Use new snapshot. 2011-07-11 18:35:25 -04:00
fuzzer fuzzer.rs is now a pseudo-fuzzer that takes an AST and replaces expressions inside it 2011-07-10 17:05:25 -07:00
lib stdlib: Port most of getopts over to interior vectors 2011-07-12 17:33:17 -07:00
rt stdlib: Move fs over to interior vectors by introducing a rust_list_files_ivec builtin 2011-07-12 15:14:57 -07:00
rustllvm Update RustWrapper.cpp so that LLVM revision 134231 from June 30, 2011 at 22:15 GMT, works. 2011-07-01 00:56:49 -06:00
test Fix type inference of fn tail expressions. Closes #680 2011-07-12 16:54:46 -07:00
README Update README files 2011-06-26 22:27:22 -07:00
snapshots.txt Use new snapshot. 2011-07-11 18:35:25 -04: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/{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.