2011-01-26 16:00:19 -08:00
|
|
|
This is preliminary version of the Rust compiler(s).
|
2010-06-23 21:03:09 -07:00
|
|
|
|
|
|
|
Source layout:
|
|
|
|
|
2011-05-13 18:38:28 -07:00
|
|
|
comp/ The self-hosted compiler
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-06-26 22:27:22 -07:00
|
|
|
lib/ The standard library
|
|
|
|
|
|
|
|
rustllvm/ LLVM support code
|
|
|
|
|
2010-06-23 21:03:09 -07:00
|
|
|
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.
|
|
|
|
|
2011-06-26 22:27:22 -07:00
|
|
|
test/ Testsuite
|
2010-06-23 21:03:09 -07:00
|
|
|
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
|
2011-03-12 01:40:32 -05:00
|
|
|
test/bench - Benchmarks and miscellanea
|
2010-06-23 21:03:09 -07:00
|
|
|
|
|
|
|
Please be gentle, it's a work in progress.
|