rust/src
Lindsey Kuper e305ab3851 Revert "Add a test case for #898. Closes #898."
This reverts commit f480203fdd.

Oops.  This patch requires people to bump their LLVM version.
2011-10-11 22:00:17 -04:00
..
comp Use the correct function type for external bare functions 2011-10-11 15:12:49 -07:00
compiletest Adjust function signatures to allow for vecs being immediate 2011-10-10 16:01:51 +02:00
etc Make windows package uninstallable 2011-10-07 14:09:29 -07:00
fuzzer Prevent copies of resources into various things 2011-09-27 21:50:07 -07:00
lib [Move] Moved str_to_float, float_to_str from compiler to lib 2011-10-11 16:41:34 +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 Update LinkModules invocation to use new prototype 2011-10-11 21:32:34 -04:00
test Revert "Add a test case for #898. Closes #898." 2011-10-11 22:00:17 -04:00
README
snapshots.txt Register snapshots 2011-10-11 15:01:27 -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.