| Age | Commit message (Expand) | Author | Lines |
| 2017-12-26 | Auto merge of #46975 - matthewjasper:mir-moveck-asm, r=arielb1 | bors | -1/+14 |
| 2017-12-24 | Auto merge of #46833 - diwic:7c-abort-ffi, r=arielb1 | bors | -0/+1 |
| 2017-12-23 | Give MIR borrowck a better understanding of inline asm | Matthew Jasper | -1/+14 |
| 2017-12-21 | Issue #46589 - Kill borrows on a local variable whenever we assign over this ... | David Teller | -10/+25 |
| 2017-12-21 | Rollup merge of #46887 - pnkfelix:ensure-activations-are-from-assignments-to-... | Guillaume Gomez | -1/+17 |
| 2017-12-21 | Mir: Add Terminatorkind::Abort | David Henningsson | -0/+1 |
| 2017-12-20 | use Rc to store nonlexical_regioncx in Borrows | Niko Matsakis | -2/+2 |
| 2017-12-20 | Ensure separate activations only occur for assignments to locals, not project... | Felix S. Klock II | -1/+17 |
| 2017-12-19 | Split PlaceContext::Store into Store & AsmOutput | Scott McMurray | -0/+4 |
| 2017-12-13 | After discussion with ariel, replacing a guard within kill_loans_out_of_scope... | Felix S. Klock II | -33/+33 |
| 2017-12-13 | Add some doc to `struct Borrows`. | Felix S. Klock II | -3/+22 |
| 2017-12-13 | New `ActiveBorrows` dataflow for two-phase `&mut`; not yet borrowed-checked. | Felix S. Klock II | -64/+394 |
| 2017-12-13 | Refactoring alpha-rename `place` (`BorrowData` field) to `borrowed_place`. | Felix S. Klock II | -4/+4 |
| 2017-12-13 | Refactoring: pull bitvector initialization out from other parts of dataflow. | Felix S. Klock II | -9/+9 |
| 2017-12-11 | Added test for #46472 | David Wood | -0/+2 |
| 2017-12-10 | avoid passing the gen/kill bits to `start_block_effects` | Ariel Ben-Yehuda | -14/+17 |
| 2017-12-06 | work around weird match arm lifetimes | Ariel Ben-Yehuda | -3/+23 |
| 2017-12-06 | fix borrows across loops, libcore *almost* compiles | Ariel Ben-Yehuda | -2/+29 |
| 2017-12-06 | handle gen/kill sets together | Ariel Ben-Yehuda | -50/+16 |
| 2017-12-06 | fix handling of CallScopeData | Ariel Ben-Yehuda | -3/+26 |
| 2017-12-04 | constraint_generation: create liveness constraints more thoroughly | Niko Matsakis | -4/+0 |
| 2017-12-04 | inform constraint generation using maybe-init | Paul Daniel Faria | -5/+5 |
| 2017-12-03 | don't track borrows for empty regions | Ariel Ben-Yehuda | -0/+6 |
| 2017-12-03 | fix handling of borrows at a function's end | Ariel Ben-Yehuda | -0/+4 |
| 2017-12-01 | MIR: s/lv(al(ue)?)?/place in function/variable/module names. | Eduard-Mihai Burtescu | -29/+29 |
| 2017-12-01 | MIR: s/Lvalue/Place in type names. | Eduard-Mihai Burtescu | -11/+11 |
| 2017-11-27 | Add initialization info to `MoveData` | Matthew Jasper | -54/+168 |
| 2017-11-24 | Kill the storage for all locals on returning terminators | Keith Yeung | -0/+29 |
| 2017-11-18 | Auto merge of #46032 - KiChjang:ignore-borrowck-statics, r=nikomatsakis | bors | -8/+50 |
| 2017-11-17 | Do not registor borrows for unsafe lvalues | Keith Yeung | -8/+50 |
| 2017-11-16 | replace `RegionIndex` with `RegionVid` (which now impls Idx) | Niko Matsakis | -2/+2 |
| 2017-11-15 | fix comment, remove redundant code | Mikhail Modin | -1/+4 |
| 2017-11-15 | add `StorageDead` handling | Mikhail Modin | -7/+14 |
| 2017-11-15 | Auto merge of #45922 - vramana:fix-45702, r=nikomatsakis | bors | -5/+11 |
| 2017-11-11 | Fix MIR borrowck EndRegion not found | Ramana Venkata | -5/+11 |
| 2017-11-09 | Add `TerminatorKind::DropAndReplace` handling | Mikhail Modin | -0/+13 |
| 2017-11-08 | restore move out dataflow, add report of move out errors | Mikhail Modin | -1/+161 |
| 2017-11-02 | encapsulate the `Region` struct within region inference | Niko Matsakis | -5/+15 |
| 2017-11-02 | extend NLL regions to include free region indices and add outlives | Niko Matsakis | -3/+3 |
| 2017-10-31 | connect MIR borrowck with NLL | Niko Matsakis | -6/+34 |
| 2017-10-31 | make the dataflow / mir-borrowck types carry a `'tcx` lifetime | Niko Matsakis | -40/+40 |
| 2017-10-31 | make end-point optional in the borrow check | Niko Matsakis | -2/+5 |
| 2017-10-05 | Rollup merge of #44987 - pnkfelix:mir-borrowck-fix-borrowindexes-ice, r=arielb1 | kennytm | -5/+5 |
| 2017-10-04 | add notes to report_conflicting_borrow MIR borrowck | Mikhail Modin | -2/+25 |
| 2017-10-02 | Remove assertion that the argument to every `EndRegion` correspond to | Felix S. Klock II | -5/+5 |
| 2017-09-13 | Analyse storage liveness and preserve it during generator transformation | John Kåre Alsaker | -0/+86 |
| 2017-09-01 | rustc: rename CodeExtent to Scope and RegionMaps to ScopeTree. | Eduard-Mihai Burtescu | -6/+6 |
| 2017-08-19 | rustc: Remove some dead code | Vadim Petrochenkov | -160/+1 |
| 2017-08-16 | Added dataflow analysis for `Borrows`. | Felix S. Klock II | -0/+183 |
| 2017-08-16 | Refactor `trait BitDenotation` to take `Location` instead of `BasicBlock`/`us... | Felix S. Klock II | -30/+20 |