| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Downcase std modules again, move to :: for module dereferencing | Marijn Haverbeke | 2011-05-12 | 1 | -41/+41 |
| | | | | | This should be a snapshot transition. | ||||
| * | Rename std modules to be camelcased | Marijn Haverbeke | 2011-05-06 | 1 | -18/+18 |
| | | | | | (Have fun mergining your stuff with this.) | ||||
| * | Fix x86.rs triple for linux. | Graydon Hoare | 2011-05-05 | 1 | -1/+1 |
| | | |||||
| * | Use symbolic register names so that we get the correct encoding on OS X. | Rafael Ávila de Espíndola | 2011-05-05 | 1 | -2/+2 |
| | | |||||
| * | rustc: Link with intrinsics.bc; change intrinsics linkage to linkonce_odr | Patrick Walton | 2011-05-05 | 1 | -1/+3 |
| | | |||||
| * | rustc: Emit pure native glue; we don't call it yet | Patrick Walton | 2011-04-29 | 1 | -8/+18 |
| | | |||||
| * | Add a very minimal set of .cfi_* statements to get part of backtraces | Rafael Ávila de Espíndola | 2011-04-28 | 1 | -2/+34 |
| | | | | | | | | | | | | | | | | | | working (on hello world at least): ~/inst/gdb/bin/gdb --args ./foo (gdb) b write ... (gdb) r ... Breakpoint 1, 0xf7f04270 in write () from /lib32/libc.so.6 (gdb) bt 0 0xf7f04270 in write () from /lib32/libc.so.6 1 0x0804931a in rust_native_cdecl_3 () 2 0x080487d7 in _rust_wrapper3_ () 3 0x0804890a in _rust_fn5_main () 4 0x08049440 in rust_native_cdecl_7 () | ||||
| * | Trans nomenclature tidy-up: upcall vs. native vs. extern. | Graydon Hoare | 2011-03-25 | 1 | -17/+18 |
| | | |||||
| * | Another go at changing compile-command, this time using RBUILD env var. | Graydon Hoare | 2011-03-25 | 1 | -1/+1 |
| | | |||||
| * | Revert "Bulk-edit compile commands in emacs chatter to point to assumed ↵ | Graydon Hoare | 2011-03-25 | 1 | -1/+1 |
| | | | | | | | build/ dir off src root." This reverts commit 846f2e2ba994268725f38c36fa12f1a09f21615c. | ||||
| * | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir ↵ | Graydon Hoare | 2011-03-25 | 1 | -1/+1 |
| | | | | | off src root. | ||||
| * | Every upcall needs a task pointer to find the C stack. It is just that when | Rafael Ávila de Espíndola | 2011-03-21 | 1 | -9/+17 |
| | | | | | | | | handling cdecl call they should skip it when calling the final function. There is some cleanup to be done on the generated IL, but this gets us running Hello World for real. | ||||
| * | Fixed version of my previous patch to rename the upcall functions. This time ↵ | Rafael Ávila de Espíndola | 2011-03-16 | 1 | -3/+3 |
| | | | | | also update the inline assembly. | ||||
| * | rustc: Add some stub metadata to each crate | Patrick Walton | 2011-03-11 | 1 | -0/+10 |
| | | |||||
| * | Fix access to the rust stack. | Rafael Ávila de Espíndola | 2011-03-09 | 1 | -15/+32 |
| | | |||||
| * | swap taskptr and callee in preparation for making taskptr optional. | Rafael Ávila de Espíndola | 2011-03-09 | 1 | -8/+10 |
| | | |||||
| * | Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ↵ | Graydon Hoare | 2011-02-22 | 1 | -2/+2 |
| | | | | | so access to argv works. | ||||
| * | Add the single instruction required in activate glue to fix burning darwin ↵ | Graydon Hoare | 2011-02-08 | 1 | -2/+99 |
| | | | | | tinderbox. And transplant 100 lines of comments from the ML code. | ||||
| * | rustc: Set data layout and target triple | Patrick Walton | 2010-12-03 | 1 | -0/+20 |
| | | |||||
| * | Fix typo in x86 backend glue that was, by luck, only crashing on OSX. | Graydon Hoare | 2010-11-15 | 1 | -1/+1 |
| | | |||||
| * | Switch upcall glues to fastcall as well. | Graydon Hoare | 2010-11-14 | 1 | -10/+11 |
| | | |||||
| * | Remove outptr from module-internal calls; use standard ABI returns. | Graydon Hoare | 2010-11-14 | 1 | -9/+9 |
| | | |||||
| * | Move symbol prefix logic into separate function, add underscore prefix for ↵ | Graydon Hoare | 2010-11-05 | 1 | -4/+10 |
| | | | | | windows. | ||||
| * | Don't use string == in x86.rs, doesn't work. | Graydon Hoare | 2010-10-22 | 1 | -1/+1 |
| | | |||||
| * | rustc: Add an "_" prefix to assembler-generated symbols on Mac | Patrick Walton | 2010-10-22 | 1 | -0/+5 |
| | | |||||
| * | Fix indexing bug in rustc's indirect-upcall arg-copying loops. | Graydon Hoare | 2010-09-27 | 1 | -3/+4 |
| | | |||||
| * | More work on trans, almost getting to the point of emitting an upcall. | Graydon Hoare | 2010-09-24 | 1 | -3/+3 |
| | | |||||
| * | Declare the global and upcall glues as ValueRefs in rustc's trans. | Graydon Hoare | 2010-09-23 | 1 | -15/+13 |
| | | |||||
| * | Translate a bunch of the material (lltrans, llasm, abi) from rustboot to ↵ | Graydon Hoare | 2010-09-23 | 1 | -0/+159 |
| rustc, and move files around. | |||||