rust/src
2011-05-17 19:00:29 -07:00
..
comp rustc: Don't rebuild the AST when writing back locals 2011-05-17 19:00:29 -07:00
etc Let the snapshot-file parser parse empty T lines, since they are used to start a transition. 2011-05-16 15:14:44 -07:00
fuzzer Change fuzzer to match new module standards 2011-05-12 22:45:55 -04:00
lib Finally rename std::_xxx to std::xxx 2011-05-17 20:41:41 +02:00
rt rt: Don't overshoot the end of the logging spec during parsing 2011-05-13 23:22:29 -04:00
rustllvm rustllvm: Free TargetMachine in LLVMRustWriteOutputFile 2011-05-14 00:48:51 -04:00
test Finally rename std::_xxx to std::xxx 2011-05-17 20:41:41 +02:00
README Remove rustboot from the repository. 2011-05-13 18:38:28 -07:00
run.py Make run.py only search in the run-pass directory. 2010-09-07 18:41:07 -07:00
snapshots.txt Register new snapshots. 2011-05-16 19:57:03 -07:00

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

Source layout:

comp/              The self-hosted compiler

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 (for both bootstrap and self-hosted)
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.