rust/src
Brian Anderson fe683dfb80 rt: Get rid of the valgrind guard bytes at the end of the stack
Preventing us from writing beyond our allocations is _what valgrind does_,
so telling valgrind not to let us write to the end of the stack isn't
buying anything.
2011-12-17 16:46:50 -08:00
..
cargo cargo: complain if rustc fails 2011-12-16 20:40:10 -08:00
comp allow #[link_args] with #[nolink]. For now, fail if two modules link same lib, and second has link_args. 2011-12-16 15:29:59 -08:00
compiletest reorder args to the various vec, option fns so blk comes last 2011-12-16 07:17:23 -08:00
etc Install and snapshot cargo by default. 2011-12-16 19:37:27 -08:00
fuzzer std: file_is_dir -> path_is_dir, add path_exists 2011-12-16 17:37:21 -05:00
libcore Merge pull request #1317 from boggle/fix1315 2011-12-16 13:01:47 -08:00
libstd libstd: Add 'xterm-256-color' to list of color-enabled terminals 2011-12-17 16:44:27 -08:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
llvm@80c896f8ad Update LLVM. Fixes for segmented stacks with fastcc functions 2011-12-13 17:09:02 -08:00
rt rt: Get rid of the valgrind guard bytes at the end of the stack 2011-12-17 16:46:50 -08:00
rustllvm Upgrade LLVM to svn revision 145779 2011-12-04 14:59:56 -08:00
test rt: Use a DWARF CFI scheme that works on mac in __morestack 2011-12-17 14:10:44 -08:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
snapshots.txt Register snapshots 2011-12-14 14:11:53 -08:00

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

cargo/             The package manager

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)

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.