rust/src
Marijn Haverbeke 75681f9ad7 Get rid of def_ids and anns in AST nodes, use single node_id
This reduces some redundancy in the AST data structures and cruft in
the code that works with them. To get a def_id from a node_id, apply
ast::local_def, which adds the local crate_num to the given node_id.
Most code only deals with crate-local node_ids, and won't have to
create def_ids at all.
2011-06-20 23:53:28 +02:00
..
comp Get rid of def_ids and anns in AST nodes, use single node_id 2011-06-20 23:53:28 +02:00
etc Register new snapshots. Update location of stage0's libstd 2011-06-17 18:19:37 -07:00
fuzzer
lib Remove various rustboot workarounds 2011-06-19 20:48:20 -07:00
rt Added string duplication to deep_copy. Closes #520. 2011-06-20 13:47:02 -07:00
rustllvm
test Added string duplication to deep_copy. Closes #520. 2011-06-20 13:47:02 -07:00
README
run.py
snapshots.txt Register new snapshots. Update location of stage0's libstd 2011-06-17 18:19:37 -07:00

This is preliminary version of the Rust compiler(s).

Source layout:

comp/              The self-hosted compiler

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/{sync,util}     - Small utility classes for the runtime.

test/              Testsuite (for both bootstrap and self-hosted)
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.