about summary refs log tree commit diff
path: root/src/comp/middle/alias.rs
AgeCommit message (Expand)AuthorLines
2011-10-21Change the way block calls are parsed, mark them as block-calls.Marijn Haverbeke-2/+2
2011-10-21Drop support for iter, put, and for-eachMarijn Haverbeke-32/+0
2011-10-20Merge ast::proto_shared and ast::proto_closureBrian Anderson-1/+1
2011-10-12expand purity to include unsafeNiko Matsakis-18/+22
2011-10-07Forbid passing dynamically-sized types by valueMarijn Haverbeke-2/+11
2011-10-07Parse and typecheck by-value and by-ref arg specsMarijn Haverbeke-3/+1
2011-09-28Revert "Revert "Implement pattern ranges for all numeric types.""Brian Anderson-1/+1
2011-09-28Remove a few kludges that worked around issue #913Marijn Haverbeke-3/+1
2011-09-23Begin to support pattern matching on unique boxesBrian Anderson-0/+7
2011-09-22Convert ty::ty_uniq to contain a mutable typeBrian Anderson-3/+2
2011-09-21Revert "Implement pattern ranges for all numeric types."Marijn Haverbeke-1/+1
2011-09-21Implement pattern ranges for all numeric types.Josh Matthews-1/+1
2011-09-16Remove autoderef for callsMarijn Haverbeke-2/+2
2011-09-16Clean up (and optimize) root-mutability analysis in alias.rsMarijn Haverbeke-65/+64
2011-09-16Change convention for specifying referenced argumentMarijn Haverbeke-4/+10
2011-09-15Generalize expression roots in alias analysisMarijn Haverbeke-35/+40
2011-09-15Require the parameter that will be referenced to be notedMarijn Haverbeke-25/+32
2011-09-15Overhaul alias-checking of blocksMarijn Haverbeke-34/+27
2011-09-15Make storing returned references in a by-reference local workMarijn Haverbeke-3/+25
2011-09-15Forbid assignment to by-reference bindingsMarijn Haverbeke-2/+2
2011-09-15Implement basic checking of by-reference bindingsMarijn Haverbeke-3/+57
2011-09-15Move local numbering into ast_map.rsMarijn Haverbeke-31/+25
2011-09-15Add representation for by-ref let bindingsMarijn Haverbeke-1/+2
2011-09-14Add syntax and representation for return-by-mutably-rooted-refMarijn Haverbeke-6/+11
2011-09-14Accept returning refs rooted in an arg from a by-ref funtionMarijn Haverbeke-6/+41
2011-09-14Disallow implicit arg copying when the function returns a refMarijn Haverbeke-1/+2
2011-09-14Rudimentary checking of safe alias returnsMarijn Haverbeke-27/+52
2011-09-14Rename restrict to binding in alias.rsMarijn Haverbeke-75/+66
2011-09-14Stop needlessly boxing vectors in alias.rsMarijn Haverbeke-22/+20
2011-09-13Always warn when implicitly copying a generic typeMarijn Haverbeke-12/+10
2011-09-13Properly alias-check bindings in for-each loopsMarijn Haverbeke-40/+32
2011-09-13Clean up copy bookkeeping in alias.rsMarijn Haverbeke-36/+34
2011-09-13Make for loop alias-safeMarijn Haverbeke-38/+28
2011-09-13Apply implicit copying for unsafe references to alt patternsMarijn Haverbeke-45/+95
2011-09-12Factor imports mindlessly.Graydon Hoare-12/+4
2011-09-12Rename alias to reference in docs and error messagesMarijn Haverbeke-4/+5
2011-09-12Warn when inserting an implicit copy that may be expensiveMarijn Haverbeke-14/+51
2011-09-12Pretty-print for new arg-mode syntaxMarijn Haverbeke-2/+7
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-55/+62
2011-09-12Make the names of the arg mode tag reflect their (revised) meaningMarijn Haverbeke-3/+3
2011-09-12Pass all arguments by reference, make immut alias mode equiv to valueMarijn Haverbeke-70/+95
2011-09-02Rename ty_istr to ty_str. Issue #855Brian Anderson-1/+1
2011-09-02Reformat. Issue #855Brian Anderson-79/+91
2011-09-01Remove lots of estr code from rustc. Issue #855Brian Anderson-1/+1
2011-09-01Convert all uses of #ifmt to #fmt. Issue #855Brian Anderson-2/+2
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-1/+1
2011-09-01Remove std::str. Issue #855Brian Anderson-1/+0
2011-09-01Remove misleading outdated comment in alias.rsMarijn Haverbeke-5/+1
2011-09-01Make alias analysis properly recognize closures in call positionMarijn Haverbeke-1/+1
2011-09-01Make resolve recognize upvarsMarijn Haverbeke-34/+11