| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-06-19 | Revert previous 6 commits. Hopefully put out Windows fire. | Brian Anderson | -377/+138 | |
| Revert "rustc: Export only what's needed from middle::ty" This reverts commit 4255d58aa5db2a05362c4435a0e807205e1b8ed7. Revert "rustc: Make name resolution errors less fatal" This reverts commit b8ab9ea89c16c60237e7660804f4321f59ae0435. Revert "rustc: Make import resolution errors less fatal" This reverts commit 92a8ae94b971206bf0502da3dc5f416fcb24cc36. Revert "rustc: Export only what's used from middle::resolve" This reverts commit 4539a2cf7ad99851a165c98ed2f4e4a475cffd7d. Revert "rustc: Re-introduce session.span_err, session.err" This reverts commit 7fe9a88e31ae07f2fd89f6715efedd7e3edf49e6. Revert "rustc: Rename session.span_err -> span_fatal, err -> fatal" This reverts commit c394a7f49ac29a099994e243017065de2ff97f2a. | ||||
| 2011-06-19 | rustc: Export only what's needed from middle::ty | Brian Anderson | -3/+164 | |
| The list is formidable. | ||||
| 2011-06-19 | rustc: Make name resolution errors less fatal | Brian Anderson | -51/+80 | |
| Failure happens at the end of name resolution Issue #440 | ||||
| 2011-06-19 | rustc: Make import resolution errors less fatal | Brian Anderson | -12/+57 | |
| Failure happens at the end of import resolution Issue #440 | ||||
| 2011-06-19 | rustc: Export only what's used from middle::resolve | Brian Anderson | -0/+3 | |
| 2011-06-19 | rustc: Rename session.span_err -> span_fatal, err -> fatal | Brian Anderson | -79/+80 | |
| Issue #440 | ||||
| 2011-06-18 | rustc: Store the lhs and rhs of receive exprs in left to right order | Brian Anderson | -24/+24 | |
| With the changing of receive semantics the parser has been putting the rhs expression in the first argument of expr_recv and the lhs in the second, and all subsequent passes have been referring to them backwords (but still doing the right thing because they were assuming that lhs was the port and rhs was the receiver). This makes all code agree on what lhs and rhs mean for receive expressions. | ||||
| 2011-06-18 | Typecheck block tail expressions that are fn return values | Brian Anderson | -1/+12 | |
| 2011-06-18 | rustc: Remove the meta keyword | Brian Anderson | -2/+0 | |
| Issue #487 | ||||
| 2011-06-18 | rustc: Allocate derived tydescs before dynamically sized allocas | Patrick Walton | -38/+74 | |
| 2011-06-18 | rustc: Don't bother to supply an alignment argument to the memmove ↵ | Patrick Walton | -10/+8 | |
| intrinsic; LLVM is very fussy about what it considers a constant. | ||||
| 2011-06-18 | rustc: Cache results of type_has_pointers. 70% translation speedup. | Patrick Walton | -21/+27 | |
| 2011-06-17 | rustc: Add missing case for interior vectors in alias.rs | Patrick Walton | -0/+6 | |
| 2011-06-17 | Restructure the "checking" pass in typestate | Tim Chevalier | -119/+324 | |
| I noticed that typestate was being lazier than it should be, because it was only checking typestate for statements and top-level expression (that is, the expression in a stmt_expr, but not any subexpressions). So I rewrote the checks in tstate/ck.rs to use walk, which exposed a few bugs in typestate that I fixed. Also added some more test cases for if-check. | ||||
| 2011-06-17 | rustc: Increment by the dynamically-computed size in ivec::trans_append. ↵ | Patrick Walton | -9/+21 | |
| Uncomment init_fn test in lib-ivec. | ||||
| 2011-06-17 | rustc: Fix a bunch of memory management bugs relating to generic interior ↵ | Patrick Walton | -7/+94 | |
| vectors. Uncomment all tests in lib-ivec. | ||||
| 2011-06-17 | Revert "rustc: Fix a bunch of memory management bugs relating to generic ↵ | Patrick Walton | -87/+6 | |
| interior vectors" This reverts commit 2b5e40311ddb6afcacf772e54a96a5204223dcc5. | ||||
| 2011-06-17 | rustc: Fix a bunch of memory management bugs relating to generic interior ↵ | Patrick Walton | -6/+87 | |
| vectors | ||||
| 2011-06-17 | Implemented enough of deep_copy that we can pass scalars and channels to ↵ | Eric Holk | -35/+39 | |
| tasks. Closes #507. | ||||
| 2011-06-17 | Started using deep_copy for spawn arguments. | Eric Holk | -15/+86 | |
| 2011-06-17 | rustc: Add a type_owns_heap_mem() predicate | Patrick Walton | -0/+33 | |
| 2011-06-17 | rustc: Cast to opaque interior vector types in trans_vec_append if ↵ | Patrick Walton | -2/+13 | |
| necessary. Puts out burning tinderbox. | ||||
| 2011-06-17 | rustc: Copy the contents of generic interior vectors | Patrick Walton | -83/+73 | |
| 2011-06-17 | Revert "rustc: Copy the contents of generic interior vectors" | Patrick Walton | -73/+83 | |
| This reverts commit 5bdbe1dfc217b77ff6ff5c0d67b8ac274b50f2d3. | ||||
| 2011-06-17 | rustc: Copy the contents of generic interior vectors | Patrick Walton | -83/+73 | |
| 2011-06-17 | rustc: Demand that if conditions have bool type | Brian Anderson | -0/+3 | |
| Closes #513 | ||||
| 2011-06-17 | rustc: Fail to unify if two ty_vars don't unify | Brian Anderson | -1/+6 | |
| Closes #500 | ||||
| 2011-06-17 | rustc: Demand unification of both sides of a binop | Brian Anderson | -0/+5 | |
| Issue #500 | ||||
| 2011-06-16 | Consistify ast::local. | Paul Stansifer | -48/+49 | |
| 2011-06-16 | rustc: Fix dominance issue when translating generic interior vectors | Patrick Walton | -21/+64 | |
| 2011-06-16 | rustc: Implement type walking and comparison glue for unsafe pointers | Patrick Walton | -0/+25 | |
| 2011-06-16 | Reformat a bunch of recent churn. | Graydon Hoare | -367/+390 | |
| 2011-06-16 | rustc: Work around leak when translating interior vectors. Un-XFAIL ↵ | Patrick Walton | -2/+6 | |
| interior-vec.rs. | ||||
| 2011-06-16 | rustc: Add cases for istr and ivec to visit | Patrick Walton | -6/+18 | |
| 2011-06-16 | Clean up whitespace oddities perpetrated by pretty-printer. | Lindsey Kuper | -12/+12 | |
| 2011-06-16 | Bring back if-check | Tim Chevalier | -127/+195 | |
| Add "if check" (expr_if_check), a variation on check that executes an "else" clause rather than failing if the check doesn't hold. | ||||
| 2011-06-16 | Translate the swap operator. | Michael Sullivan | -0/+18 | |
| 2011-06-16 | Fix bug in move on structure types. | Michael Sullivan | -2/+2 | |
| 2011-06-16 | Bring swap through typechecking and typestate. | Michael Sullivan | -0/+28 | |
| 2011-06-16 | rustc: Fix LLVM type error when generating cmp glue for interior vectors | Patrick Walton | -4/+20 | |
| 2011-06-16 | Refactor ast::item representation | Marijn Haverbeke | -293/+250 | |
| Most of the fields in an AST item were present in all variants. Things could be simplified considerably by putting them in the rec rather than in the variant tags. | ||||
| 2011-06-15 | rustc: Implement interior vector concatenation | Patrick Walton | -9/+174 | |
| 2011-06-15 | Merge branch 'master' of github.com:graydon/rust into fastcall | Eric Holk | -597/+635 | |
| 2011-06-15 | rustc: Remove unused variable from check_assignment | Brian Anderson | -3/+2 | |
| 2011-06-15 | Refactor data structures representing constraints (again...) | Tim Chevalier | -176/+200 | |
| I added a "resolved" version of the ast::constr type -- ty::constr_def -- that has a def_id field instead of an ann_field. This is more consistent with other types and eliminates some checking. Incidentally, I removed the def_map argument to the top-level function in middle::alias, since the ty::ctxt already has a def_map field. | ||||
| 2011-06-15 | rustc: Move ivec stuff to an ivec module in trans | Patrick Walton | -199/+284 | |
| 2011-06-15 | Implement checking of alias safety in tail calls. | Marijn Haverbeke | -30/+75 | |
| 2011-06-15 | Fix unsafe uses of aliases in tail calls | Marijn Haverbeke | -9/+9 | |
| 2011-06-15 | Simple anonymous objects get through translation. | Lindsey Kuper | -182/+67 | |
| 2011-06-15 | Step 1 of moving task startup to always be cdecl. | Eric Holk | -1/+2 | |
