rust/src
Marijn Haverbeke f9fbd86f52 Parse and typecheck by-value and by-ref arg specs
Add sprinkle && throughout the compiler to make it typecheck again.

Issue #1008
2011-10-07 09:09:50 +02:00
..
comp Parse and typecheck by-value and by-ref arg specs 2011-10-07 09:09:50 +02:00
compiletest Stop using (DY)LD_LIBRARY_PATH on Unix 2011-10-06 15:23:20 -07:00
etc Add more valgrind suppressions for __libc_freeres 2011-10-05 16:21:56 -07:00
fuzzer Prevent copies of resources into various things 2011-09-27 21:50:07 -07:00
lib Parse and typecheck by-value and by-ref arg specs 2011-10-07 09:09:50 +02: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
test Add std::str::contains 2011-10-06 16:08:44 -07:00
README Revert trivial commit. 2011-09-20 17:20:14 -07:00
snapshots.txt Register snapshots 2011-10-06 15:11:30 -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.