| Age | Commit message (Expand) | Author | Lines |
| 2018-12-18 | treat ref-to-raw cast like a reborrow: do a special kind of retag | Ralf Jung | -1/+0 |
| 2018-12-17 | Add required lifetime parameter to BitDenotation. | David Wood | -28/+17 |
| 2018-12-17 | Kill borrows from a projection after assignment. | David Wood | -23/+54 |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -1/+1 |
| 2018-11-30 | Remove the `region_map` field from `BorrowSet` | Matthew Jasper | -8/+1 |
| 2018-11-18 | Only handle ReVar regions in NLL borrowck | Matthew Jasper | -82/+9 |
| 2018-11-18 | Remove mir::StatementKind::EndRegion | Matthew Jasper | -5/+1 |
| 2018-11-07 | no more action on ref or cast, but add new MIR statement for escaping a ptr t... | Ralf Jung | -0/+1 |
| 2018-10-29 | Emit Retag statements, kill Validate statements | Ralf Jung | -1/+1 |
| 2018-10-22 | Replace the `run_passes!` macro with a regular function | Wesley Wiser | -1/+0 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -2/+2 |
| 2018-09-24 | Shrink StatementKind::Assign. | Nicholas Nethercote | -1/+1 |
| 2018-09-18 | Refactor 'ReadForMatch' into 'FakeRead' and add the cause of the fake read | Remy Rakic | -1/+1 |
| 2018-09-18 | Auto merge of #54286 - nnethercote:BitSet, r=pnkfelix | bors | -12/+11 |
| 2018-09-18 | Eliminate `BitwiseOperator`. | Nicholas Nethercote | -5/+5 |
| 2018-09-18 | Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs. | Nicholas Nethercote | -8/+7 |
| 2018-09-15 | Make rustc::middle::region::Scope's fields public | Marshall Bowers | -1/+4 |
| 2018-09-15 | Auto merge of #54177 - nnethercote:streamline-bit-stuff, r=Mark-Simulacrum | bors | -1/+1 |
| 2018-09-13 | Remove bitslice.rs. | Nicholas Nethercote | -1/+1 |
| 2018-09-10 | add the `AscribeUserType` statement kind | Niko Matsakis | -1/+1 |
| 2018-09-08 | Auto merge of #53909 - mikhail-m1:53643, r=nikomatsakis | bors | -2/+8 |
| 2018-09-08 | Rollup merge of #53942 - nnethercote:faster-precompute, r=nikomatsakis | kennytm | -41/+79 |
| 2018-09-06 | Skip a shared borrow of a immutable local variables | Mikhail Modin | -2/+8 |
| 2018-09-05 | A few cleanups and minor improvements to mir/dataflow | ljedrz | -3/+1 |
| 2018-09-04 | Rewrite `precompute_borrows_out_of_scope` for fewer hash table lookups. | Nicholas Nethercote | -41/+79 |
| 2018-08-18 | Use the new Entry::or_default method where possible. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-08-08 | optimize redundant borrows | Niko Matsakis | -1/+1 |
| 2018-07-24 | Auto merge of #52597 - oli-obk:promotion_simplify, r=nagisa | bors | -0/+1 |
| 2018-07-23 | Let mir reference lifetime be inferred | Santiago Pastorino | -2/+2 |
| 2018-07-23 | Promoteds are statics and statics have a place, not just a value | Oliver Schneider | -0/+1 |
| 2018-07-17 | Auto merge of #52335 - nnethercote:BitSlice-fixes, r=nikomatsakis | bors | -2/+2 |
| 2018-07-13 | compute region values using SCCs not iterative flow | Niko Matsakis | -1/+1 |
| 2018-07-13 | Make BitSlice's `Word` properly generic. | Nicholas Nethercote | -2/+2 |
| 2018-05-30 | Auto merge of #51106 - davidtwco:issue-50934, r=nikomatsakis | bors | -13/+77 |
| 2018-05-29 | rust-lang/rust#27282: Add `StatementKind::ReadForMatch` to MIR. | Felix S. Klock II | -0/+1 |
| 2018-05-29 | fix off by one error | Niko Matsakis | -1/+1 |
| 2018-05-29 | tweak debug output some more | Niko Matsakis | -2/+7 |
| 2018-05-29 | Ensure that all statements in block are visited not just successors of a block. | David Wood | -8/+18 |
| 2018-05-29 | add some debugging statements | Niko Matsakis | -0/+3 |
| 2018-05-29 | Refactored DFS to be much cleaner. Added continue after noting that borrow is... | David Wood | -99/+27 |
| 2018-05-27 | Ensure that depth first search does not get stuck in cycles. | David Wood | -12/+28 |
| 2018-05-27 | Ensure that we don't skip the last statement. | David Wood | -2/+2 |
| 2018-05-27 | Use precomputed DFS of borrows that out of scope at a location. | David Wood | -14/+116 |
| 2018-05-19 | Remove extra calls to kill_loans_out_of_scope_at_location - keep only before_... | David Wood | -5/+0 |
| 2018-05-03 | Instrument `statement_effect_on_borrows` for the `lhs = &place` case. | Felix S. Klock II | -0/+6 |
| 2018-04-15 | remove -Znll -- borrowck=mir implies nll now | Niko Matsakis | -31/+20 |
| 2018-04-15 | stop using `borrows` for anything but iterating over live data | Niko Matsakis | -26/+1 |
| 2018-04-15 | thread borrow-set around more | Niko Matsakis | -3/+3 |
| 2018-04-15 | remove `ReserveOrActivateIndex` | Niko Matsakis | -59/+20 |
| 2018-04-15 | use the `activations_at_location` map to check activations | Niko Matsakis | -0/+7 |