rust/src
2011-10-31 14:43:43 -07:00
..
comp rustc: Find crates by matching the name metadata 2011-10-31 14:43:43 -07:00
compiletest rustc: Support 'companion mod's for crates and directory mods 2011-10-29 01:40:20 -07:00
etc Update snapshot scripts for new stdlib name 2011-10-31 14:43:43 -07:00
fuzzer rustc: Support 'companion mod's for crates and directory mods 2011-10-29 01:40:20 -07:00
lib Add a char::to_digit function 2011-10-31 16:15:36 +01:00
rt Stub a __morestack implementation and stack segment allocation. Untested. 2011-10-31 14:20:56 -07:00
rustllvm rustc: Enable segmented stacks in LLVM when --stack-growth is on 2011-10-31 14:42:44 -07:00
test Fix the filenames used in some IO tests 2011-10-31 12:50:45 -07:00
README
snapshots.txt Register snapshot 2011-10-28 15:25:29 +02:00

This is preliminary version of the Rust compiler.

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/libuv           - The library used for async IO in the 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.