| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2016-02-20 | use the FulfillmentContext and InferCtxt more correctly | Ariel Ben-Yehuda | -4/+10 |
| 2016-02-20 | store the normalized types of field accesses | Ariel Ben-Yehuda | -22/+6 |
| 2016-02-19 | begin implementing mir-typeck | Ariel Ben-Yehuda | -4/+75 |
| 2016-02-09 | Auto merge of #31523 - steveklabnik:rollup, r=steveklabnik | bors | -1/+1 |
| 2016-02-09 | Minor spelling fixes | Carlos E. Garcia | -1/+1 |
| 2016-02-09 | Allow registering MIR-passes through compiler plugins | Oliver Schneider | -0/+11 |
| 2016-02-09 | refactor `MirPass` to always require a tcx | Oliver Schneider | -0/+16 |
| 2016-02-09 | make `MirMap` a struct instead of a type alias for `NodeMap` | Oliver Schneider | -0/+17 |
| 2016-02-04 | Convert Drop statement into terminator | Simonas Kazlauskas | -7/+22 |
| 2016-02-04 | Remove the CallKind | Simonas Kazlauskas | -92/+25 |
| 2016-02-04 | Change successor{,_mut} to return a Vec | Simonas Kazlauskas | -26/+27 |
| 2016-02-04 | Synthesize calls to box_free language item | Simonas Kazlauskas | -11/+3 |
| 2016-02-03 | upgrade comments on MIR structures and functions to doc comments | Oliver Schneider | -55/+59 |