rust/src
Haitao Li b8dd148444 rustllvm: Add a GetOrInsertFunction wrapper
Fixes issue #1161

Test-case-by: Brian Anderson <banderson@mozilla.com>
Signed-off-by: Haitao Li <lihaitao@gmail.com>
2011-11-15 00:33:29 +08:00
..
comp rustllvm: Add a GetOrInsertFunction wrapper 2011-11-15 00:33:29 +08:00
compiletest Cleanup unused imports in tests 2011-11-10 19:19:40 -08:00
etc Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
fuzzer Cleanup unused imports 2011-11-10 19:19:40 -08:00
lib rt: Perform task notification before killing the parent task 2011-11-13 16:36:47 -08:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
llvm@566f233ba6
rt rt: Add locking invariants to rust_port 2011-11-13 16:38:34 -08:00
rustllvm rustllvm: Add a GetOrInsertFunction wrapper 2011-11-15 00:33:29 +08:00
test rustllvm: Add a GetOrInsertFunction wrapper 2011-11-15 00:33:29 +08:00
README
snapshots.txt Register snapshots 2011-11-09 17:55:12 -08: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.