| Age | Commit message (Expand) | Author | Lines |
| 2016-04-06 | break dep-graph into modules, parameterize DepNode | Niko Matsakis | -1/+2 |
| 2016-04-06 | rustc: retire hir::map's paths. | Eduard Burtescu | -2/+2 |
| 2016-04-06 | rustc: move some maps from ty to hir. | Eduard Burtescu | -1/+1 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -6/+6 |
| 2016-04-06 | rustc: dismantle hir::util, mostly moving functions to methods. | Eduard Burtescu | -3/+2 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -15/+12 |
| 2016-04-05 | Rollup merge of #32596 - soltanmm:lazy, r=nikomatsakis | Manish Goregaokar | -1/+5 |
| 2016-04-04 | Address nits | Masood Malekghassemi | -2/+2 |
| 2016-04-03 | Auto merge of #32210 - Aatch:mir-traversal, r=nikomatsakis | bors | -0/+395 |
| 2016-04-03 | Use a BitVector instead of Vec<bool> for recording cleanup blocks | James Miller | -1/+8 |
| 2016-03-31 | librustc_mir: use bug!(), span_bug!() | Benjamin Herr | -72/+75 |
| 2016-03-31 | Turn break critical edges into a MIR pass | James Miller | -10/+24 |
| 2016-03-30 | move `const_eval` and `check_match` out of `librustc` | Oliver Schneider | -8/+12 |
| 2016-03-30 | rename `rustc_const_eval` to `rustc_const_math` | Oliver Schneider | -5/+5 |
| 2016-03-29 | Plumb obligations through librustc/infer | Masood Malekghassemi | -1/+5 |
| 2016-03-30 | Don't build a map of predecessors, just count them instead | James Miller | -88/+4 |
| 2016-03-30 | Add and use a break critical edges transform | James Miller | -0/+181 |
| 2016-03-30 | Add some standard traversal iterators for MIR | James Miller | -0/+277 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -28/+28 |
| 2016-03-27 | rustc: move middle::subst into middle::ty. | Eduard Burtescu | -3/+3 |
| 2016-03-26 | Rollup merge of #32482 - nikomatsakis:erase-via-visitor, r=nagisa | Manish Goregaokar | -84/+7 |
| 2016-03-26 | Rollup merge of #32199 - nikomatsakis:limiting-constants-in-patterns-2, r=pnk... | Manish Goregaokar | -3/+10 |
| 2016-03-25 | use new visitor to erase regions | Niko Matsakis | -84/+7 |
| 2016-03-25 | issue a future-compat lint for constants of invalid type | Niko Matsakis | -0/+1 |
| 2016-03-25 | make `const_expr_to_pat` fallible (but never have it actually fail) | Niko Matsakis | -3/+9 |
| 2016-03-23 | rewrite scope drop to be iterative | Niko Matsakis | -32/+39 |
| 2016-03-23 | introduce "call-site-scope" as the outermost scope | Niko Matsakis | -57/+84 |
| 2016-03-23 | add comments on remaining fields | Niko Matsakis | -0/+8 |
| 2016-03-23 | Add `ScopeAuxiliaryVec`, return MIR+aux via tuple | Niko Matsakis | -23/+38 |
| 2016-03-23 | Address nit: Remove `ScopedDataVec` newtype | Niko Matsakis | -7/+7 |
| 2016-03-23 | Address nit: block.unit() | Niko Matsakis | -1/+1 |
| 2016-03-23 | Address nit: doc-comments on fields | Niko Matsakis | -14/+22 |
| 2016-03-23 | Rename `MirPlusPlus` to `MirAndScopeAuxiliary` | Niko Matsakis | -5/+5 |
| 2016-03-23 | replace DUMMY_SP on resume with span from fn | Niko Matsakis | -3/+7 |
| 2016-03-23 | rewrite drop code | Niko Matsakis | -83/+85 |
| 2016-03-23 | fix bug in `simplify_cfg` with inf. loops | Niko Matsakis | -8/+18 |
| 2016-03-23 | allow dumping intermediate IR with -Z dump-mir | Niko Matsakis | -2/+76 |
| 2016-03-23 | adjust pretty printer to print scopes / auxiliary | Niko Matsakis | -12/+36 |
| 2016-03-23 | augment MIR pretty printer to print scopes | Niko Matsakis | -10/+89 |
| 2016-03-23 | reformat mir text pretty printer | Niko Matsakis | -13/+24 |
| 2016-03-23 | add span/scope-id to terminator | Niko Matsakis | -77/+166 |
| 2016-03-23 | extend Terminator into a struct so it can have additional fields | Niko Matsakis | -74/+77 |
| 2016-03-23 | track the innermost scope for every stmt | Niko Matsakis | -28/+53 |
| 2016-03-23 | record a scope for each `VarDecl` | Niko Matsakis | -36/+43 |
| 2016-03-23 | integrate scopes into MIR | Niko Matsakis | -19/+114 |
| 2016-03-22 | fix alignment | Jorge Aparicio | -5/+5 |
| 2016-03-22 | sprinkle feature gates here and there | Jorge Aparicio | -0/+1 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -50/+50 |
| 2016-03-21 | scaffolding for borrowck on MIR. | Felix S. Klock II | -7/+35 |
| 2016-03-21 | Expose attached attributes to `FnKind` abstraction so that I can look at them... | Felix S. Klock II | -1/+1 |