| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-10-07 | Make 1-1 parse again | Marijn Haverbeke | -34/+76 | |
| Issue #954 This is not a very elegant fix -- we should probably do something with constant folding to handle negative-int alt patterns in the future. | ||||
| 2011-10-07 | Stop registering cleanups for types that don't need them | Marijn Haverbeke | -0/+3 | |
| 2011-10-07 | Make it possible to have locals that don't live on the stack | Marijn Haverbeke | -149/+172 | |
| Local values that are not mutated, don't need to be cleaned up, and are immediate, don't need to be spilled. (All immediate args, and non-pointer immediate let locals.) | ||||
| 2011-10-07 | Forbid passing dynamically-sized types by value | Marijn Haverbeke | -2/+11 | |
| Issue #1008 | ||||
| 2011-10-07 | Actually pass parameters specified as by-val by value | Marijn Haverbeke | -31/+49 | |
| Issue #1008 | ||||
| 2011-10-07 | Give up on providing a by-value version of map, convert fold over to | Marijn Haverbeke | -99/+98 | |
| passing pointers by ref Issue #1008 | ||||
| 2011-10-07 | Parse and typecheck by-value and by-ref arg specs | Marijn Haverbeke | -184/+204 | |
| Add sprinkle && throughout the compiler to make it typecheck again. Issue #1008 | ||||
| 2011-10-06 | Hopefully make test_prefix_rpath_abs work on win32 | Brian Anderson | -1/+1 | |
| 2011-10-06 | Mac uses @executable_path instead of $ORIGIN | Brian Anderson | -2/+2 | |
| 2011-10-06 | Always use an absolute path for the backup install prefix rpath | Brian Anderson | -5/+12 | |
| 2011-10-06 | Mac doesn't seem to support rpath $ORIGIN | Brian Anderson | -9/+28 | |
| 2011-10-06 | Configure out rpath tests when not testing | Brian Anderson | -0/+1 | |
| 2011-10-06 | Remove an unnecessary linking flag. Add comments about linking | Brian Anderson | -1/+4 | |
| 2011-10-06 | rpathing is based on the target, not host OS | Brian Anderson | -7/+5 | |
| 2011-10-06 | Make rpath work on mac | Brian Anderson | -0/+7 | |
| 2011-10-06 | Revert "rustc: Add a workaround for a segfault with --time-passes (issue ↵ | Marijn Haverbeke | -24/+9 | |
| #1005)." This reverts commit 100e0264b2a2e4e7d8f27b4ed25af8cb7b4a8c3c. | ||||
| 2011-10-06 | Ignore && and + before argument names. | Marijn Haverbeke | -1/+7 | |
| Issue #1008 | ||||
| 2011-10-06 | Fix problem with polymorphic return value being instantiated as nil | Marijn Haverbeke | -1/+1 | |
| Closes #1005 | ||||
| 2011-10-05 | rpath all the things! | Brian Anderson | -2/+1 | |
| 2011-10-05 | Add a FIXME about test exports to rustc::back::rpath | Brian Anderson | -0/+2 | |
| 2011-10-05 | rpath the path to the runtime | Brian Anderson | -1/+14 | |
| We don't currently rpath native libs, but we do know where rustrt is located and everything needs to link to it. | ||||
| 2011-10-05 | Fix some remaining rpath bugs | Brian Anderson | -16/+59 | |
| 2011-10-05 | Figure out the relative path from output to each crate | Brian Anderson | -15/+62 | |
| 2011-10-05 | Begin work on rpath | Brian Anderson | -2/+218 | |
| 2011-10-05 | rustc: Add a workaround for a segfault with --time-passes (issue #1005). | Patrick Walton | -9/+24 | |
| 2011-10-05 | Tie up the last ends in destination-passing-conversion | Marijn Haverbeke | -33/+26 | |
| Closes #667 | ||||
| 2011-10-05 | Make trans_lval lval-only | Marijn Haverbeke | -59/+15 | |
| Call trans_temp_lval if you want the old fallback-to-temporary behaviour. Issue #667 | ||||
| 2011-10-05 | Add trans_temp_expr for what used to be trans_expr, rename t_e_dps to trans_expr | Marijn Haverbeke | -68/+65 | |
| Issue #667 | ||||
| 2011-10-05 | Lose the by_ref destination style | Marijn Haverbeke | -33/+25 | |
| It's not needed. Issue #667 | ||||
| 2011-10-05 | Revert "Revert "Reorganize translation of expr_field"" | Marijn Haverbeke | -56/+54 | |
| This reverts commit 11e407aaa917dbd646f80aaff2457942481877c8. | ||||
| 2011-10-05 | Revert "Revert "Get rid of 'overwrite' destination kind"" | Marijn Haverbeke | -102/+62 | |
| This reverts commit ce9e0fc94f4a74594e7b342d128b3713b53ef0d7. | ||||
| 2011-10-05 | Revert "Revert "Move trans_call to destination_passing style"" | Marijn Haverbeke | -56/+57 | |
| This reverts commit 276dfc6133f3c7d3b40778789f72379800f62176. | ||||
| 2011-10-04 | Use std::os::get_exe_path to determine sysroot | Brian Anderson | -16/+16 | |
| 2011-10-04 | Use util::filesearch to locate intrinsics.bc and main.o | Brian Anderson | -4/+20 | |
| 2011-10-04 | Move the library search into util::filesearch | Brian Anderson | -25/+42 | |
| 2011-10-04 | Fix some comment drift | Brian Anderson | -2/+2 | |
| 2011-10-04 | Remove some redundancy in metadata::creader | Brian Anderson | -13/+12 | |
| 2011-10-04 | Encapsulate current sysroot and lib path handling into util::filesearch | Brian Anderson | -54/+92 | |
| 2011-10-04 | rustc: Allow calling native functions on the C stack that take generic ↵ | Patrick Walton | -6/+20 | |
| arguments. They get turned into i8 pointers. | ||||
| 2011-10-04 | Revert "Move trans_call to destination_passing style" | Patrick Walton | -57/+56 | |
| This reverts commit 6e56ec0066b3cc8d18365370f0b856670dc748bd. | ||||
| 2011-10-04 | Revert "Get rid of 'overwrite' destination kind" | Patrick Walton | -62/+102 | |
| This reverts commit 6e652588bfb3edea298026f56648057677b0fa3f. | ||||
| 2011-10-04 | Revert "Reorganize translation of expr_field" | Patrick Walton | -54/+56 | |
| This reverts commit 007ec666ad4a529682c35936d85ac81f7979f1b6. | ||||
| 2011-10-04 | Reorganize translation of expr_field | Marijn Haverbeke | -56/+54 | |
| Issue #667 | ||||
| 2011-10-04 | Get rid of 'overwrite' destination kind | Marijn Haverbeke | -102/+62 | |
| It wasn't safe (computing the rval might invalidate the lval addr), and needlessly complicating things (code was already building up intermediary results to work around other unsafeties). Issue #667 | ||||
| 2011-10-04 | Move trans_call to destination_passing style | Marijn Haverbeke | -56/+57 | |
| Issue #667 The retptr passed to a function will now often be the actual destination of the returned value (as in `{field1: func1()}`). | ||||
| 2011-10-03 | rustc: Implement C stack stdcall | Patrick Walton | -2/+19 | |
| 2011-10-02 | rustc: Fix link error on Ubuntu Oneiric. Issue #903 | Haitao Li | -2/+4 | |
| 2011-09-30 | rustc: Call LLVM on the C stack | Patrick Walton | -1/+1 | |
| 2011-09-30 | rustc: Stub a --stack-growth option; it's behind a flag for now because it ↵ | Patrick Walton | -8/+21 | |
| requires patches to LLVM. | ||||
| 2011-09-30 | Change the directory for target libs | Brian Anderson | -5/+11 | |
| This pushes them down from stageN/lib/rustc/$(target) to stageN/lib/rustc/$(target)/lib in order to make room for a target bin dir | ||||
