| Age | Commit message (Expand) | Author | Lines |
| 2016-05-16 | Revised mir-dataflow. | Felix S. Klock II | -2/+3 |
| 2016-05-11 | rustc: Split local type contexts interners from the global one. | Eduard Burtescu | -9/+9 |
| 2016-05-11 | rustc: More interning for data used in Ty<'tcx>. | Eduard Burtescu | -7/+5 |
| 2016-05-11 | rustc: Generalize a minimum set of functions over 'tcx != 'gcx. | Eduard Burtescu | -1/+1 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -13/+14 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -25/+20 |
| 2016-05-07 | mir: prepare for rvalue promotion support. | Eduard Burtescu | -4/+89 |
| 2016-04-24 | syntax: Merge keywords and remaining special idents in one list | Vadim Petrochenkov | -1/+1 |
| 2016-04-20 | Auto merge of #33030 - nagisa:mir-unrequire-end-block, r=nikomatsakis | bors | -5/+1 |
| 2016-04-20 | Generate block containing return lazily instead | Simonas Kazlauskas | -7/+0 |
| 2016-04-16 | debuginfo: argument and upvar names for MIR. | Eduard Burtescu | -2/+21 |
| 2016-04-16 | MIR: Do not require END_BLOCK to always exist | Simonas Kazlauskas | -5/+8 |
| 2016-04-11 | mir: store the span of a scope in the ScopeData. | Eduard Burtescu | -0/+3 |
| 2016-04-08 | Auto merge of #32738 - Aatch:mir-operand-fn-ret, r=arielb1 | bors | -2/+5 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -2/+2 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -2/+2 |
| 2016-04-04 | Handle operand temps for function calls | James Miller | -2/+5 |
| 2016-03-31 | librustc: replace unreachable! with bug!() | Benjamin Herr | -1/+1 |
| 2016-03-31 | librustc: replace tcx.sess.bug calls with bug!() | Benjamin Herr | -1/+1 |
| 2016-03-30 | move `const_eval` and `check_match` out of `librustc` | Oliver Schneider | -3/+3 |
| 2016-03-30 | rename `rustc_const_eval` to `rustc_const_math` | Oliver Schneider | -2/+2 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -8/+8 |
| 2016-03-27 | rustc: move middle::subst into middle::ty. | Eduard Burtescu | -2/+2 |
| 2016-03-25 | use new visitor to erase regions | Niko Matsakis | -3/+10 |
| 2016-03-24 | pacify the merciless tidy | Niko Matsakis | -1/+2 |
| 2016-03-24 | rework MIR visitor | Niko Matsakis | -26/+382 |
| 2016-03-23 | Address nit: Remove `ScopedDataVec` newtype | Niko Matsakis | -16/+5 |
| 2016-03-23 | Address nit: use doc-comments for fields of VarDecl | Niko Matsakis | -2/+12 |
| 2016-03-23 | augment MIR pretty printer to print scopes | Niko Matsakis | -2/+2 |
| 2016-03-23 | add span/scope-id to terminator | Niko Matsakis | -0/+2 |
| 2016-03-23 | extend Terminator into a struct so it can have additional fields | Niko Matsakis | -25/+42 |
| 2016-03-23 | track the innermost scope for every stmt | Niko Matsakis | -0/+2 |
| 2016-03-23 | record a scope for each `VarDecl` | Niko Matsakis | -0/+2 |
| 2016-03-23 | integrate scopes into MIR | Niko Matsakis | -2/+54 |
| 2016-03-22 | fix alignment | Jorge Aparicio | -2/+2 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -11/+11 |
| 2016-03-21 | scaffolding for borrowck on MIR. | Felix S. Klock II | -4/+4 |
| 2016-03-17 | hir, mir: Separate HIR expressions / MIR operands from InlineAsm. | Eduard Burtescu | -4/+17 |
| 2016-03-17 | mir: Support RustCall ABI functions. | Eduard Burtescu | -0/+4 |
| 2016-03-17 | mir: Monomorphize LvalueTy's of projections. | Eduard Burtescu | -0/+24 |
| 2016-03-17 | trans: Rename MonoId to Instance and start using it in more places. | Eduard Burtescu | -10/+18 |
| 2016-03-14 | Auto merge of #30587 - oli-obk:eager_const_eval2, r=nikomatsakis | bors | -12/+10 |
| 2016-03-13 | Auto merge of #31916 - nagisa:mir-passmgr-2, r=arielb1 | bors | -26/+63 |
| 2016-03-10 | typestrong constant integers | Oliver Schneider | -12/+10 |
| 2016-03-09 | trans: Reify functions & methods to fn ptrs only where necessary. | Eduard Burtescu | -10/+0 |
| 2016-03-07 | Change MirPass to also take NodeId | Simonas Kazlauskas | -4/+4 |
| 2016-03-04 | Address comments | Simonas Kazlauskas | -1/+3 |
| 2016-03-04 | Add Pass manager for MIR | Simonas Kazlauskas | -26/+61 |
| 2016-03-03 | Rename middle::ty::ctxt to TyCtxt | Jeffrey Seyfried | -9/+9 |
| 2016-02-20 | address review comments | Ariel Ben-Yehuda | -0/+4 |