| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-03-25 | Revert "Bulk-edit compile commands in emacs chatter to point to assumed ↵ | Graydon Hoare | -18/+18 | |
| build/ dir off src root." This reverts commit 846f2e2ba994268725f38c36fa12f1a09f21615c. | ||||
| 2011-03-25 | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir ↵ | Graydon Hoare | -18/+18 | |
| off src root. | ||||
| 2011-03-25 | Parse FP literals without coercing to int. This allows parsing 64-bit | Tim Chevalier | -36/+59 | |
| floats. However, if someone writes a literal that can't be represented precisely in 64 bits, the front-end will accept it while the back-end will (presumably) complain. | ||||
| 2011-03-25 | rustc: Store cached crate metadata in the session | Patrick Walton | -35/+37 | |
| 2011-03-25 | Update pretty printer for ports, channels, send and receive | Brian Anderson | -1/+35 | |
| 2011-03-25 | Implement local declarations with receive. Un-XFAIL decl-with-recv.rs. | Brian Anderson | -19/+51 | |
| 2011-03-25 | Refactor ast.local to make room for initialization via recv | Brian Anderson | -17/+29 | |
| 2011-03-25 | rustc: Create a crate metadata cache | Patrick Walton | -7/+25 | |
| 2011-03-25 | make lexer unicode-aware for strings and char literals | Marijn Haverbeke | -8/+7 | |
| 2011-03-25 | Start making the standard-lib utf-8 aware | Marijn Haverbeke | -3/+3 | |
| Finally implements _str.is_utf8, adds from_chars, from_char, to_chars, char_at, char_len, (push|pop|shift|unshift)_char. Also, proper character I/O for streams. | ||||
| 2011-03-25 | fix pretty-printer | Marijn Haverbeke | -6/+10 | |
| A change in 54587bdccb7b6771cfc704a30fc0ef2c65824a15 (the vec appending overhaul) had broken it. (Apparently modifying a vec while iterating over it can corrupt memory.) | ||||
| 2011-03-24 | Start hooking resolve into creater. | Graydon Hoare | -5/+38 | |
| 2011-03-24 | rustc: Open "use"d crates; add a _vec.vec_from_buf() method along the way; ↵ | Patrick Walton | -8/+37 | |
| XFAIL use-import-export.rs in rustc | ||||
| 2011-03-24 | Teach creader about reading ty_float, and trim trailing whitespace. | Graydon Hoare | -1/+2 | |
| 2011-03-24 | rustc: Emit a better error message when a type is used where a value was ↵ | Patrick Walton | -0/+5 | |
| expected | ||||
| 2011-03-23 | rustc: Switch over to using rustllvm.dll exclusively, ending the ↵ | Patrick Walton | -13/+7 | |
| "Franken-LLVM" problem | ||||
| 2011-03-23 | Revert "Change the type of the second argument of upcalls to be a %task*.", ↵ | Graydon Hoare | -13/+13 | |
| breaks win32 build. This reverts commit dcf122ede03af71d8a1d892a077a9e2435b64ef3. | ||||
| 2011-03-23 | Support for 'float' in type signatures. | Lindsey Kuper | -1/+11 | |
| 2011-03-23 | rustc: Write out crate metadata | Patrick Walton | -6/+293 | |
| 2011-03-22 | Further support for floating-point. Literals with exponents work | Tim Chevalier | -22/+117 | |
| and literals with the 'f32' or 'f64' suffixes work as well. In addition, logging things with the f32 or f64 type works. (float is still assumed to be a synonym for f64). | ||||
| 2011-03-22 | Change the type of the second argument of upcalls to be a %task*. | Rafael Ávila de Espíndola | -13/+13 | |
| 2011-03-22 | Support for shorter error messages that are aware of objects' cnames. | Lindsey Kuper | -8/+26 | |
| 2011-03-22 | Revert "Remove usages of case(_) { fail; } since the compiler does this ↵ | Patrick Walton | -0/+9 | |
| automatically". When we have exhaustiveness checking, "case(_) { fail; }" will be useful to silence warnings. This reverts commit 92a716d862d92d3cc52a400457d2c3900d0c57a2. | ||||
| 2011-03-22 | Remove usages of case(_) { fail; } since the compiler does this automatically | Brian Anderson | -9/+0 | |
| 2011-03-22 | Add a cleanup to trans_send. Express further confusion about cleanups in ↵ | Brian Anderson | -2/+3 | |
| trans_recv | ||||
| 2011-03-22 | Remove a todo from trans_chan that doesn't appear necessary | Brian Anderson | -2/+0 | |
| 2011-03-22 | Generalize send/recv to work for more types | Brian Anderson | -15/+19 | |
| 2011-03-22 | Fix trans_recv | Brian Anderson | -4/+11 | |
| 2011-03-22 | Implement trans_send and a broken trans_recv | Brian Anderson | -4/+42 | |
| 2011-03-22 | Add codegen for ports and chans | Brian Anderson | -0/+120 | |
| 2011-03-21 | Make floating-point operations work (neg, add, sub, mul, div, rem, | Tim Chevalier | -4/+51 | |
| and comparison ops.) | ||||
| 2011-03-21 | Started adding support for floating-point type, floating-point literals, and ↵ | Tim Chevalier | -18/+80 | |
| logging of floats. Other operations on float probably don't work yet. | ||||
| 2011-03-21 | Every upcall needs a task pointer to find the C stack. It is just that when | Rafael Ávila de Espíndola | -46/+66 | |
| 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. | ||||
| 2011-03-21 | Make the wrapper function of native functions private. | Rafael Ávila de Espíndola | -0/+2 | |
| 2011-03-21 | The T_taskptr is already included in the n_args, don't add it twice. | Rafael Ávila de Espíndola | -5/+3 | |
| 2011-03-21 | rustc: Remove uses of Unicode in type deserialization and fix vector-push ↵ | Patrick Walton | -37/+40 | |
| operations | ||||
| 2011-03-21 | rustc: Update type serialization and deserialization for the "mutable?" change | Patrick Walton | -10/+30 | |
| 2011-03-21 | rustc: Merge in type serialization and deserialization | Marijn Haverbeke | -0/+277 | |
| Signed-off-by: Patrick Walton <pcwalton@mimiga.net> | ||||
| 2011-03-21 | Make lltaskptr a regular argument element in args in calls to trans_upcall2. | Rafael Ávila de Espíndola | -8/+8 | |
| 2011-03-21 | Move calls to PtrToInt out of trans_upcall2. | Rafael Ávila de Espíndola | -3/+5 | |
| 2011-03-20 | Modify native_item_fn to handle trailing linkage names that differ from the ↵ | Graydon Hoare | -18/+33 | |
| item name (used in win32 build of std.dll) | ||||
| 2011-03-20 | rustc: Internalize glue. Cuts libstd size by 8% or so. | Patrick Walton | -1/+3 | |
| 2011-03-19 | rustc: Only declare each native function once. std.rc now links. | Patrick Walton | -1/+15 | |
| 2011-03-19 | rustc: Use the right block context to generate unary operands. std.rc ↵ | Patrick Walton | -3/+3 | |
| compiles now. For realz. | ||||
| 2011-03-19 | rustc: Allow arguments to be captured as upvars. std.rc compiles now, except ↵ | Patrick Walton | -3/+15 | |
| for the lack of a main fn. | ||||
| 2011-03-19 | rustc: Do argument casts before loading aggregates, not after | Patrick Walton | -5/+16 | |
| 2011-03-18 | rustc: Implement int-to-native casts | Patrick Walton | -0/+3 | |
| 2011-03-18 | rustc: Make trans_path() generic-safe wrt nullary tags | Patrick Walton | -1/+8 | |
| 2011-03-18 | rustc: Make iter_structural_ty_full() generic-safe wrt tags | Patrick Walton | -28/+10 | |
| 2011-03-18 | rustc: Do pointer casts when casting native types | Patrick Walton | -1/+3 | |
