rust/src
2011-05-19 11:40:16 -07:00
..
comp Trim imports 2011-05-19 11:40:16 -07:00
etc Add mirror-all-snapshots.py script for extra crowdsourced backup power. 2011-05-17 22:06:55 -07:00
fuzzer Change fuzzer to match new module standards 2011-05-12 22:45:55 -04:00
lib Rewrite tstate.annotate to use walk instead of fold 2011-05-19 11:40:16 -07:00
rt Remove rustboot-related logging hacks 2011-05-19 19:33:32 +02:00
rustllvm rustllvm: Free TargetMachine in LLVMRustWriteOutputFile 2011-05-14 00:48:51 -04:00
test Make trans use span_err for the dreaded "ty_var in trans::type_of" error 2011-05-19 11:40:16 -07:00
README Remove rustboot from the repository. 2011-05-13 18:38:28 -07:00
run.py
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.