rust/src
Brian Anderson 0714bb5f7d Fix the problem with check-fast randomly failing
Trans has been assuming that tag node id's are unique across crates and they
are not so, depending on which way the wind is blowing, it would choose to use
a crate-local tag variant instead of the correct one from std.

No test case since I can't come up with a reliable one that compiles in a
reasonable amount of time.
2011-10-20 15:38:51 -07:00
..
comp Fix the problem with check-fast randomly failing 2011-10-20 15:38:51 -07:00
compiletest reimplement some of the unsafe stuff which got lost 2011-10-12 16:33:07 -07:00
etc move ctags.rust into src/etc 2011-10-12 13:57:32 -07:00
fuzzer Prevent copies of resources into various things 2011-09-27 21:50:07 -07:00
lib Do not pass taskpointers to "rust" native functions 2011-10-20 14:22:17 +02:00
rt Remove the last vestiges of main.ll 2011-10-20 17:36:28 +02:00
rustllvm Update LinkModules invocation to use new prototype 2011-10-15 15:53:18 -07:00
test Fail nicer when the parser doesn't find an expected string literal 2011-10-19 18:04:44 -07:00
README
snapshots.txt Register new snapshots 2011-10-20 17:36:29 +02: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.