rust/src
Patrick Walton 851fde879d rt: Add architecture-specific general-purpose register definitions
This will be used for stack crawling, which in turn will be used for GC and
unwinding.
2012-04-04 21:40:34 -07:00
..
cargo Mention --test in cargo usage string. Close #1452. 2012-04-04 18:40:41 -07:00
compiletest Logfile output from tests; summarise in make check 2012-04-04 11:52:27 -07:00
etc build: Cleanup of test summary printing 2012-04-04 13:40:50 -07:00
fuzzer Fixing issue 1919. list_dir is the more general version that returns a vector with the contents of the directory. list_dir_path contains the old behavior (as a convenience function). 2012-04-01 11:39:17 -04:00
libcore Tidy up predicate names in libcore. Should close #1431. 2012-04-04 18:08:55 -07:00
librustsyntax Monomorphize class constructors, support generic classes and class methods 2012-04-03 16:23:50 -07:00
libstd Logfile output from tests; summarise in make check 2012-04-04 11:52:27 -07:00
libuv@1170ffba3a rustc: Don't generate landing pad cleanups for boxy things 2012-03-29 16:43:18 -07:00
llvm@4119fda4c6
rt rt: Add architecture-specific general-purpose register definitions 2012-04-04 21:40:34 -07:00
rustc wip: refactor repr of regions 2012-04-04 19:41:23 -07:00
rustdoc rustdoc: Remove stray binary 2012-04-03 19:01:00 -07:00
rustllvm
test wip: refactor repr of regions 2012-04-04 19:41:23 -07:00
README.txt
snapshots.txt new snapshot 2012-04-04 19:17:06 -07:00

This is preliminary version of the Rust compiler.

Source layout:

rustc/             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.