about summary refs log tree commit diff
path: root/src
AgeCommit message (Collapse)AuthorLines
2011-08-18Rename rust_vec to rust_evecBrian Anderson-26/+26
2011-08-18Rename T_vec to T_evecBrian Anderson-3/+3
2011-08-18Rename various things from ivec to vecBrian Anderson-54/+52
2011-08-18Change ast::ty_ivec, ty::ty_ivec to ty_vecBrian Anderson-47/+47
2011-08-18Rename some vec upcalls and trans functions from vec* to evec*Brian Anderson-11/+20
2011-08-18Remove upcall_new_vecBrian Anderson-23/+0
2011-08-18Remove ast::ty_vecBrian Anderson-157/+5
2011-08-18Remove seq_kind from ast::expr_vecBrian Anderson-34/+27
2011-08-18Remove oldvecs from runtime command line processingBrian Anderson-30/+19
2011-08-18Simplify the _rust_main/rust_start interfaceBrian Anderson-35/+28
rust_start will always call _rust_main with the command line args, and it is _rust_main's responsibility to free the args ivec heap. _rust_main will be generated slightly differently depending on whether main takes an ivec or not: if so then it's just passed through to main, otherwise it frees the ivec directly.
2011-08-18Continue transition to an ivec-only mainBrian Anderson-123/+41
Only generate a single main function. Rename rust_start_ivec to rust_start, leaving a transitional rust_start_ivec in place.
2011-08-18Pretty-print ivecs as []Brian Anderson-26/+22
2011-08-18Fix long lineMarijn Haverbeke-1/+2
2011-08-18Remove or _-prefix all unused function argumentsMarijn Haverbeke-192/+187
This should make the compilation process a bit less noisy.
2011-08-18Don't warn about unused vars whose name starts with _Marijn Haverbeke-2/+3
Closes #832
2011-08-17rustc: Stub stack map generation machineryPatrick Walton-46/+124
2011-08-17rustc: Use "rust" GC in Rust functionsPatrick Walton-0/+1
2011-08-17rustc: Use obstacks in lieu of dynamically-allocated frames only when the ↵Patrick Walton-24/+57
frame is actually dynamically-sized
2011-08-17rustc: Use explicit return blocksPatrick Walton-30/+36
2011-08-17Revert "rt: Use obstacks in lieu of dynamically-sized frames"Patrick Walton-69/+40
This reverts commit cc5fcfce89312042e52401eb883160ebf289235f.
2011-08-17rustc: Remove dead i2p functionPatrick Walton-4/+0
2011-08-17rt: Use obstacks in lieu of dynamically-sized framesPatrick Walton-40/+69
2011-08-17Better type inference for chans and ports.Eric Holk-59/+65
2011-08-17Track arguments in typestateTim Chevalier-9/+46
Add the infrastructure for arguments -- as well as local vars -- to be deinitialized with move-mode calls. Address Issue #819
2011-08-17Stop parsing old-style vec typesBrian Anderson-5/+0
2011-08-17Remove last mentions of vec<> type in Rust sourceBrian Anderson-10/+2
2011-08-17Trivial commit to test github AMQP hookGraydon Hoare-1/+1
2011-08-17Trivial commit to test github AMQP hookGraydon Hoare-1/+0
2011-08-17Use the new task join methods in the test runner. Closes #826Brian Anderson-15/+26
It should report failures properly again
2011-08-17Remove more hacks from the test runnerBrian Anderson-9/+2
2011-08-17Simplify default_test_to_taskBrian Anderson-8/+4
Doesn't appear to require an unsafe pointer now
2011-08-17Move some test setup from runtest to compiletestBrian Anderson-1/+2
2011-08-17Convenience methods for spawning and joining tasks.Eric Holk-2/+25
2011-08-17Making more of the rust_task structure directly accessible from Rust.Eric Holk-54/+51
2011-08-17Yet another comm interface.Eric Holk-17/+36
2011-08-17rustc: Add missing "bcx = "Patrick Walton-1/+1
2011-08-17rustc: Run obstack cleanups at the end of each functionPatrick Walton-8/+33
2011-08-17rustc: Mark an obstack fencepost when entering a dynamically-sized framePatrick Walton-12/+22
2011-08-17Restore test task setupBrian Anderson-4/+1
This is needed in order for the test runner to continue on failure, and I don't see that it causes any problems.
2011-08-17Using move-mode for spawn thunks to avoid race conditions.Eric Holk-31/+60
2011-08-17rustc: Add the dynastack upcalls to upcall.rsPatrick Walton-2/+11
2011-08-17Refactor resolve_importBrian Anderson-42/+13
Issue #817
2011-08-17Refactor resolve_importBrian Anderson-43/+47
Issue #817
2011-08-17Remove unused case in resolveBrian Anderson-4/+0
Issue #817
2011-08-17Refactor import lookup in middle:resolveBrian Anderson-10/+28
Issue #817
2011-08-17Allow multiple imports in a single statementBrian Anderson-3/+155
Like so: import foo::{bar, baz}; Issue #817
2011-08-17Add compile-fail tests for malformed glob importsBrian Anderson-0/+12
2011-08-17Refactor ast::view_item to differentiate between [ident]s and pathsBrian Anderson-2/+6
2011-08-17Allow multiple exports in a single export statement. Issue #817Brian Anderson-10/+31
2011-08-17Remove transitional interfaces from std::extfmtBrian Anderson-18/+1