rust/src
Rafael Ávila de Espíndola 342dbd7abe Put std in stageN/lib. This avoids windows trying to load stageN/std.ll when
stageN/runstc.exe is run.
2011-06-17 15:34:59 -04:00
..
comp Put std in stageN/lib. This avoids windows trying to load stageN/std.ll when 2011-06-17 15:34:59 -04:00
etc Dead code. 2011-05-24 19:39:30 -04:00
fuzzer fuzzer: Begin writing main 2011-05-20 22:32:41 -04:00
lib stdlib: Sketch out ivec::init_fn, currently segfaulting 2011-06-16 17:48:59 -07:00
rt stdlib: Fix reserve on zero-length interior vectors; uncomment test_unsafe_ptrs() 2011-06-16 18:01:57 -07:00
rustllvm Update rust to build with newer llvm versions. 2011-06-08 14:08:24 -04:00
test rustc: Demand that if conditions have bool type 2011-06-17 11:35:00 -07: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 Update the snapshots. 2011-06-16 13:49:57 -04: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.