| Age | Commit message (Expand) | Author | Lines |
| 2019-10-14 | Auto merge of #64987 - oli-obk:code_reuse_prevents_bugs, r=eddyb | bors | -8/+5 |
| 2019-10-09 | miri calls resolve_for_fn_ptr when reifying. | Adam Perry | -1/+8 |
| 2019-10-09 | Add InstanceDef::ReifyShim for track_caller functions. | Adam Perry | -0/+1 |
| 2019-10-05 | Rollup merge of #65100 - csmoe:generator, r=nikomatsakis | Tyler Mandry | -6/+9 |
| 2019-10-05 | Rollup merge of #65066 - wesleywiser:fix_const_prop_ice_on_polymorphic_promot... | Tyler Mandry | -0/+7 |
| 2019-10-04 | [const-prop] Fix ICE when trying to eval polymorphic promoted MIR | Wesley Wiser | -0/+7 |
| 2019-10-04 | clean up GeneratorSubsts | csmoe | -6/+9 |
| 2019-10-04 | Rollup merge of #64817 - csmoe:closure, r=nikomatsakis | Mazdak Farrokhzad | -1/+1 |
| 2019-10-03 | generate ClosureSubsts from SubstsRef | csmoe | -1/+1 |
| 2019-10-02 | Compute the layout of uninhabited structs | Oliver Scherer | -8/+5 |
| 2019-09-29 | remove indexed_vec re-export from rustc_data_structures | csmoe | -2/+2 |
| 2019-09-29 | remove ClosureSubsts with SubstsRef | csmoe | -2/+2 |
| 2019-09-29 | Rollup merge of #64824 - Mark-Simulacrum:no-stable-hasher-result-everywhere, ... | Mazdak Farrokhzad | -4/+4 |
| 2019-09-28 | Auto merge of #64419 - wesleywiser:const_prop_use_ecx, r=oli-obk | bors | -4/+27 |
| 2019-09-28 | Switch over all StableHash impls to new format | Mark Rousskov | -4/+4 |
| 2019-09-28 | Allow reading non-mutable statics in const prop | Wesley Wiser | -6/+5 |
| 2019-09-27 | Introduce a `ConstPropMachine` | Wesley Wiser | -12/+22 |
| 2019-09-27 | Work around for #64506 | Wesley Wiser | -1/+5 |
| 2019-09-27 | Move Ref-from-arg checking from `step.rs` to `const_prop.rs` | Wesley Wiser | -19/+2 |
| 2019-09-27 | Respond to code review feedback and fix tidy | Wesley Wiser | -2/+4 |
| 2019-09-27 | [const-prop] Replace `Ref` handling with use of `InterpCx` | Wesley Wiser | -2/+19 |
| 2019-09-27 | [const-prop] Replace `Use` handling with use of `InterpCx` | Wesley Wiser | -1/+1 |
| 2019-09-27 | [const-prop] Replace `eval_place()` with use of `InterpCx` | Wesley Wiser | -3/+11 |
| 2019-09-26 | Rename `Pat.node` to `Pat.kind` | varkor | -1/+1 |
| 2019-09-26 | Rename `subst::Kind` to `subst::GenericArg` | varkor | -3/+3 |
| 2019-09-26 | Auto merge of #64513 - varkor:sty-begone, r=eddyb | bors | -32/+32 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -29/+29 |
| 2019-09-25 | Rename non-`TyS` uses of `sty` | varkor | -3/+3 |
| 2019-09-25 | Format | gnzlbg | -2/+1 |
| 2019-09-25 | Test errors | gnzlbg | -15/+10 |
| 2019-09-25 | Refactor | gnzlbg | -58/+52 |
| 2019-09-25 | Tidy | gnzlbg | -1/+2 |
| 2019-09-25 | Remove unreachable code | gnzlbg | -5/+0 |
| 2019-09-24 | Move tests to SIMD subdirectory | gnzlbg | -2/+2 |
| 2019-09-24 | Add const-eval support for SIMD types, insert, and extract | gnzlbg | -2/+71 |
| 2019-09-19 | Rollup merge of #63448 - RalfJung:miri-discriminant, r=eddyb | Mazdak Farrokhzad | -27/+60 |
| 2019-09-19 | first determine if the variant is a niche-variant, then compute absolute variant | Ralf Jung | -15/+17 |
| 2019-09-17 | Get rid of special const intrinsic query in favour of `const_eval` | Oliver Scherer | -65/+69 |
| 2019-09-16 | do the variant idx computations on the host (non-overflowing) | Ralf Jung | -17/+13 |
| 2019-09-16 | factor getting the discriminant layout to a new method | Ralf Jung | -17/+4 |
| 2019-09-16 | better and more consistent variable names | Ralf Jung | -12/+12 |
| 2019-09-16 | fix Miri discriminant load/store when overflows are involved | Ralf Jung | -17/+65 |
| 2019-09-15 | update intern classification comment | Ralf Jung | -1/+2 |
| 2019-09-15 | explain ty == None | Ralf Jung | -0/+3 |
| 2019-09-15 | assert that nobody asks for mutable constants | Ralf Jung | -0/+4 |
| 2019-09-15 | note a FIXME | Ralf Jung | -0/+2 |
| 2019-09-15 | relocations -> allocations | Ralf Jung | -13/+18 |
| 2019-09-15 | drop redundant ParamEnv, and avoid constructing InternVisitor without visiting | Ralf Jung | -77/+93 |
| 2019-09-15 | all memory behind a constant must be immutable | Ralf Jung | -1/+6 |
| 2019-09-15 | const interning: move mutability computation into intern_shallow, and always ... | Ralf Jung | -66/+59 |