| Age | Commit message (Expand) | Author | Lines |
| 2018-05-06 | issue-49938: Reference tagged unions discr(iminant) as tag | Samuel Wilson | -4/+4 |
| 2018-05-02 | Allow unaligned reads in constants | Oliver Schneider | -3/+1 |
| 2018-05-01 | Auto merge of #50198 - oli-obk:const_prop, r=eddyb | bors | -1/+1 |
| 2018-05-01 | Removed direct field usage of RangeInclusive in rustc itself. | kennytm | -3/+3 |
| 2018-04-30 | Merge ConstMathError into EvalErrorKind | Oliver Schneider | -1/+1 |
| 2018-04-27 | Rollup merge of #50246 - nnethercote:no-dump_allocs, r=Mark-Simulacrum | kennytm | -3/+4 |
| 2018-04-26 | Auto merge of #49513 - nox:univariant-fieldless-enum-as-zst, r=eddyb | bors | -1/+33 |
| 2018-04-26 | Treat repr(Rust) univariant fieldless enums as a ZST (fixes #15747) | Anthony Ramine | -1/+21 |
| 2018-04-26 | rustc_target: move LayoutOf's type parameter to an associated type. | Irina Popa | -2/+4 |
| 2018-04-26 | rustc_target: move in type definitions from ty::layout. | Irina Popa | -1/+1 |
| 2018-04-26 | Properly evaluate zst enum | Oliver Schneider | -0/+9 |
| 2018-04-26 | Properly look for uninhabitedness when handling discriminants | Anthony Ramine | -0/+3 |
| 2018-04-26 | Make dump_{alloc,allocs,local}() no-ops when tracing is disabled. | Nicholas Nethercote | -3/+4 |
| 2018-04-23 | Fix the miri tool | Oliver Schneider | -27/+60 |
| 2018-04-20 | Auto merge of #50051 - nnethercote:no-env-var, r=Mark-Simulacrum | bors | -5/+5 |
| 2018-04-19 | Sign extend constants in range patterns | Oliver Schneider | -12/+2 |
| 2018-04-19 | Lazily evaluate EvalErrorKind::*.into() calls. | Nicholas Nethercote | -5/+5 |
| 2018-04-15 | Auto merge of #49947 - oli-obk:turing_complete_const_eval, r=nagisa | bors | -3/+3 |
| 2018-04-14 | Stop referring to statics' AllocIds directly | Oliver Schneider | -8/+6 |
| 2018-04-13 | Don't abort const eval due to long running evals, just warn | Oliver Schneider | -3/+3 |
| 2018-04-10 | Remove Cell from const_eval_stack_frame_limit and const_eval_step_limit | John Kåre Alsaker | -2/+2 |
| 2018-04-07 | miri: Make write_discriminant_value public | bjorn3 | -1/+1 |
| 2018-04-01 | Fix miri Discriminant() for non-ADT | bjorn3 | -10/+19 |
| 2018-03-23 | Simplify local accessors | Oliver Schneider | -8/+6 |
| 2018-03-23 | Don't allocate a local array at all if there are no locals | Oliver Schneider | -16/+22 |
| 2018-03-23 | Vec<_> -> IndexVec<Local, _> | Oliver Schneider | -22/+14 |
| 2018-03-22 | Skip checking for Storage* statements in constants/statics | Oliver Schneider | -10/+17 |
| 2018-03-22 | Remove slow HashSet during miri stack frame creation | Oliver Schneider | -29/+11 |
| 2018-03-13 | `trans_apply_param_substs` => `subst_and_normalize_erasing_regions` | Niko Matsakis | -2/+10 |
| 2018-03-13 | transition various normalization functions to the new methods | Niko Matsakis | -4/+2 |
| 2018-03-13 | refactor `ParamEnv::empty(Reveal)` into two distinct methods | Niko Matsakis | -2/+1 |
| 2018-03-08 | Address review comments | Oliver Schneider | -15/+11 |
| 2018-03-08 | Decide signdedness on the layout instead of the type | Oliver Schneider | -8/+12 |
| 2018-03-08 | Don't use the undefined bytes of PrimVal::Bytes | Oliver Schneider | -3/+19 |
| 2018-03-08 | Fix mozjs crater failure | Oliver Schneider | -3/+11 |
| 2018-03-08 | Step limit is now terminator limit | Oliver Schneider | -1/+1 |
| 2018-03-08 | Report tcx errors with the span of the currently evaluating statement | Oliver Schneider | -45/+17 |
| 2018-03-08 | Report a best guess span if no stack is available anymore | Oliver Schneider | -5/+15 |
| 2018-03-08 | Unregress error spans in constant errors | Oliver Schneider | -4/+13 |
| 2018-03-08 | Const eval error refactoring | Oliver Schneider | -33/+54 |
| 2018-03-08 | Move the resource limits to the session in preparation for attributes configu... | Oliver Schneider | -23/+5 |
| 2018-03-08 | Report const eval errors at the correct span | Oliver Schneider | -1/+3 |
| 2018-03-08 | Nuke ConstInt and Const*size | Oliver Schneider | -2/+2 |
| 2018-03-08 | Destructure Rc wrapped ErrorKind in miri | Oliver Schneider | -5/+6 |
| 2018-03-08 | Hide the RefCell inside InterpretInterner | Oliver Schneider | -1/+0 |
| 2018-03-08 | Allow writing mutable statics in miri by adding them to the Machine | Oliver Schneider | -15/+12 |
| 2018-03-08 | More const eval sanity checks (invalid slice fat pointers) | Oliver Schneider | -3/+10 |
| 2018-03-08 | Add InterpretInterner to StableHashingContext for AllocId serialization | Oliver Schneider | -5/+9 |
| 2018-03-08 | Fully use miri in trans | Oliver Schneider | -34/+91 |
| 2018-03-08 | Nuke the entire ctfe from orbit, it's the only way to be sure | Oliver Schneider | -28/+5 |