rust/src
Brian Anderson cb4e99b688 Don't allow vectors of pinned kinds
Vectors of pinned kinds can't be safe because most interesting uses of vector
perform copies
2011-09-28 15:35:21 -07:00
..
comp Don't allow vectors of pinned kinds 2011-09-28 15:35:21 -07:00
etc vim: const is a keyword 2011-09-28 12:40:34 -07:00
fuzzer Prevent copies of resources into various things 2011-09-27 21:50:07 -07:00
lib Revert "Revert "Implement pattern ranges for all numeric types."" 2011-09-28 12:46:29 -07:00
rt rt: Add a call stub that switches to the C stack, untested as of yet 2011-09-28 12:26:36 -07:00
rustllvm
test Don't allow vectors of pinned kinds 2011-09-28 15:35:21 -07:00
README
snapshots.txt Register new snapshot 2011-09-28 12:56:54 +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.