rust/src
Tim Chevalier e1f9bfbac9 Add missing files
git add didn't, so this actually has the changes that should
have been in the previous commit
2011-07-12 11:26:14 -07:00
..
comp Add missing files 2011-07-12 11:26:14 -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 Support running a subset of tests from the command line. Issue #428 2011-07-11 19:01:54 -07:00
rt stdlib: Add addr_of() to the standard library 2011-07-11 14:25:35 -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 Change typestate to use visit instead of walk 2011-07-12 11:22:31 -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.