rust/src
2011-10-12 15:44:00 -07:00
..
comp make native functions markable as unsafe and incorporate that 2011-10-12 14:39:34 -07:00
compiletest Adjust function signatures to allow for vecs being immediate 2011-10-10 16:01:51 +02:00
etc move ctags.rust into src/etc 2011-10-12 13:57:32 -07:00
fuzzer
lib Add unsafe blocks, unsafe functions, and two rudimentary tests 2011-10-12 14:26:47 -07:00
rt rt: Make C stack switching Valgrind-clean by warning Valgrind when we're about to write to the C stack from the Rust stack 2011-10-05 16:33:17 -07:00
rustllvm Revert "Merge pull request #1025 from elly/master" 2011-10-11 22:23:47 -04:00
test Ignore stdtest::os::test_setenv. Fails periodically on mac 2011-10-12 15:27:58 -07:00
README
snapshots.txt Register snapshots 2011-10-12 15:44:00 -07: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.