| Age | Commit message (Expand) | Author | Lines |
| 2017-12-18 | Move middle::trans.rs to mir::mono.rs | Maik Klein | -0/+189 |
| 2017-12-17 | miri: pass pointer alignments directly instead of contextually. | Eduard-Mihai Burtescu | -4/+3 |
| 2017-12-17 | miri: use separate Pointer and Align instead of PtrAndAlign. | Eduard-Mihai Burtescu | -20/+2 |
| 2017-12-17 | miri: track the Align instead of packedness in PtrAndAlign. | Eduard-Mihai Burtescu | -11/+3 |
| 2017-12-15 | add a new RegionKind variant: ReClosureBound | Niko Matsakis | -0/+9 |
| 2017-12-15 | permit `ClosureOutlivesRequirement` to constrain regions or types | Niko Matsakis | -8/+25 |
| 2017-12-15 | Auto merge of #46537 - pnkfelix:two-phase-borrows, r=arielb1 | bors | -2/+2 |
| 2017-12-13 | Allow `mir::Place` to be used as a key in hashtables. | Felix S. Klock II | -2/+2 |
| 2017-12-12 | Move large chunks of miri from rustc::mir::interpret to rustc_mir::interpret | Oliver Schneider | -6742/+272 |
| 2017-12-11 | Merge remote-tracking branch 'origin/master' into miri | Oliver Schneider | -0/+69 |
| 2017-12-08 | incr.comp.: Fix merge fallout. | Michael Woerister | -2/+2 |
| 2017-12-07 | mir-borrowck returns closure requirements, mir-typeck enforces | Niko Matsakis | -0/+69 |
| 2017-12-06 | Merge remote-tracking branch 'origin/master' into miri | Oliver Schneider | -0/+6 |
| 2017-12-06 | miri: don't use an associated constant for a Machine's own data. | Eduard-Mihai Burtescu | -13/+9 |
| 2017-12-06 | miri: move param_env from Machine to EvalContext. | Eduard-Mihai Burtescu | -22/+13 |
| 2017-12-06 | miri: import ty::Ty directly. | Eduard-Mihai Burtescu | -15/+16 |
| 2017-12-06 | miri: monomorphize types iff they came from MIR. | Eduard-Mihai Burtescu | -239/+130 |
| 2017-12-06 | Update miri to rustc changes | Oliver Schneider | -2841/+2094 |
| 2017-12-05 | Auto merge of #46492 - eddyb:move-ops, r=arielb1 | bors | -0/+6 |
| 2017-12-05 | rustc_mir: don't move temporaries that are still used later. | Eduard-Mihai Burtescu | -0/+6 |
| 2017-12-04 | rustc_back: remove slice module in favor of std::slice::from_ref. | Irina-Gabriela Popa | -7/+7 |
| 2017-12-03 | add a pass to remove no-op landing pads | Ariel Ben-Yehuda | -0/+25 |
| 2017-12-01 | MIR: s/lv(al(ue)?)?/place in function/variable/module names. | Eduard-Mihai Burtescu | -123/+126 |
| 2017-12-01 | MIR: s/Lvalue/Place in type names. | Eduard-Mihai Burtescu | -125/+125 |
| 2017-12-01 | Auto merge of #46236 - davidtwco:issue-46023, r=arielb1 | bors | -1/+3 |
| 2017-11-30 | Immutable unique closure upvars cannot be mutated. | David Wood | -1/+3 |
| 2017-11-28 | incr.comp.: Make a bunch of query results encodable. | Michael Woerister | -4/+5 |
| 2017-11-28 | incr.comp.: Make MIR encoding fit for incr.comp. caching. | Michael Woerister | -17/+8 |
| 2017-11-28 | MIR: split Operand::Consume into Copy and Move. | Eduard-Mihai Burtescu | -11/+31 |
| 2017-11-26 | make accessing packed fields a future-compat warning | Ariel Ben-Yehuda | -1/+8 |
| 2017-11-24 | Auto merge of #46093 - scottmcm:lower-128-mir, r=nagisa | bors | -0/+9 |
| 2017-11-22 | handle the active field index in unions | Niko Matsakis | -3/+7 |
| 2017-11-18 | Add a MIR pass to lower 128-bit operators to lang item calls | Scott McMurray | -0/+9 |
| 2017-11-18 | Remove return_ty from Mir | loomaclin | -10/+6 |
| 2017-11-17 | MIR: hide .rodata constants vs by-ref ABI clash in trans. | Eduard-Mihai Burtescu | -3/+4 |
| 2017-11-16 | renumber: handle ReturnTy better | Niko Matsakis | -5/+6 |
| 2017-11-16 | formalize giving ownership of region vars to region inf. context | Niko Matsakis | -1/+1 |
| 2017-11-15 | thread location info through mir typeck (but do not use) | Niko Matsakis | -1/+35 |
| 2017-11-14 | rustc: split off BodyOwnerKind from MirSource. | Eduard-Mihai Burtescu | -75/+0 |
| 2017-11-14 | rustc: remove unused MirSource::GeneratorDrop. | Eduard-Mihai Burtescu | -4/+0 |
| 2017-11-14 | rustc: move the MIR pass infrastructure and list to rustc_mir. | Eduard-Mihai Burtescu | -113/+1 |
| 2017-11-12 | MIR-borrowck: fix diagnostics for closures | Shotaro Yamada | -2/+2 |
| 2017-11-10 | Auto merge of #45785 - arielb1:unsafe-fixes, r=eddyb | bors | -0/+10 |
| 2017-11-06 | Auto merge of #45668 - nikomatsakis:nll-free-region, r=arielb1 | bors | -17/+34 |
| 2017-11-06 | collect unused unsafe code | Ariel Ben-Yehuda | -0/+10 |
| 2017-11-04 | Auto merge of #45605 - Nashenas88:derive-newtype, r=nikomatsakis | bors | -0/+1 |
| 2017-11-02 | rename `Lookup` to `TyContext` and pass more info when visiting tys | Niko Matsakis | -17/+34 |
| 2017-11-02 | add TerminatorKind::FalseEdges and use it in matches | Mikhail Modin | -4/+35 |
| 2017-11-01 | newtype_index: Support simpler serializable override, custom derive, and fix ... | Paul Daniel Faria | -19/+5 |
| 2017-11-01 | Add derive and doc comment capabilities to newtype_index macro | Paul Daniel Faria | -5/+20 |