| Age | Commit message (Expand) | Author | Lines |
| 2019-01-04 | Add missing 'static bound for the Machine trait | Matthew Jasper | -1/+1 |
| 2018-12-31 | Explain the math | Oliver Scherer | -4/+9 |
| 2018-12-31 | Remove a wrong multiplier on relocation offset computation | Oliver Scherer | -4/+4 |
| 2018-12-01 | Auto merge of #56165 - RalfJung:drop-glue-type, r=eddyb,nikomatsakis | bors | -12/+24 |
| 2018-11-27 | Auto merge of #56094 - RalfJung:memory-data-revived, r=oli-obk | bors | -30/+79 |
| 2018-11-26 | Auto merge of #56070 - oli-obk:const_let, r=eddyb | bors | -5/+6 |
| 2018-11-25 | Rollup merge of #56100 - RalfJung:visiting-generators, r=oli-obk | Pietro Albini | -12/+42 |
| 2018-11-25 | accept undef in raw pointers, for consistency with integers | Ralf Jung | -6/+10 |
| 2018-11-25 | machine hooks for stack push and pop, frame machine data | Ralf Jung | -7/+29 |
| 2018-11-25 | make memory allocation hook infallible | Ralf Jung | -1/+1 |
| 2018-11-25 | pass MemoryExtra to find_foreign_static and adjust_static_allocation; they mi... | Ralf Jung | -10/+14 |
| 2018-11-25 | bring back MemoryExtra | Ralf Jung | -7/+26 |
| 2018-11-25 | Auto merge of #55959 - matthewjasper:remove-end-region, r=nikomatsakis | bors | -1/+0 |
| 2018-11-24 | Rebase fallout | Oliver Scherer | -8/+23 |
| 2018-11-24 | Explain why vtable generation needs no alignment checks | Oliver Scherer | -0/+3 |
| 2018-11-24 | Factor out mplace offsetting into its own method | Oliver Scherer | -22/+31 |
| 2018-11-24 | tidy | Oliver Scherer | -1/+2 |
| 2018-11-24 | Array and slice projections need to update the place alignment | Oliver Scherer | -8/+11 |
| 2018-11-24 | comment nit | Ralf Jung | -1/+1 |
| 2018-11-24 | Use correct alignment checks for scalars and zsts, too | Oliver Scherer | -2/+2 |
| 2018-11-24 | Use correct alignment for fat pointer extra part | Oliver Scherer | -1/+1 |
| 2018-11-24 | Move alignment checks out of `Allocation` | Oliver Scherer | -28/+31 |
| 2018-11-24 | Explain early abort legality | Oliver Scherer | -0/+1 |
| 2018-11-24 | Rebase fallout | Oliver Scherer | -1/+1 |
| 2018-11-24 | Clean up array/slice of primitive validation | Oliver Scherer | -13/+10 |
| 2018-11-24 | Reintroduce zst-slice reading `read_bytes` method on `Memory` | Oliver Scherer | -4/+17 |
| 2018-11-24 | Remove unnecessary `Result` (function always returned `Ok`) | Oliver Scherer | -1/+1 |
| 2018-11-24 | Adjust rustc_mir::interpret to changes in `Allocation`/`Memory` methods | Oliver Scherer | -33/+77 |
| 2018-11-24 | Move some byte and scalar accessors from `Memory` to `Allocation` | Oliver Scherer | -197/+0 |
| 2018-11-24 | Move alignment and bounds check from `Memory` to `Allocation` | Oliver Scherer | -42/+0 |
| 2018-11-24 | Move undef mask methods from `Memory` to `Allocation` | Oliver Scherer | -29/+0 |
| 2018-11-24 | Move relocation methods from `Memory` to `Allocation` | Oliver Scherer | -73/+0 |
| 2018-11-24 | Move some methods from `Memory` to `Allocation` | Oliver Scherer | -84/+0 |
| 2018-11-24 | Rollup merge of #56022 - RalfJung:validate-before-jump, r=oli-obk | kennytm | -7/+14 |
| 2018-11-22 | miri: restrict fn argument punning to Rust ABI | Ralf Jung | -12/+21 |
| 2018-11-22 | drop glue takes in mutable references, it should reflect that in its type | Ralf Jung | -0/+3 |
| 2018-11-22 | rustc_target: avoid using AbiAndPrefAlign where possible. | Eduard-Mihai Burtescu | -80/+76 |
| 2018-11-22 | rustc_target: separate out an individual Align from AbiAndPrefAlign. | Eduard-Mihai Burtescu | -25/+28 |
| 2018-11-22 | rustc_target: rename abi::Align to AbiAndPrefAlign. | Eduard-Mihai Burtescu | -50/+52 |
| 2018-11-20 | treat generator fields like unions | Ralf Jung | -2/+22 |
| 2018-11-20 | fix comment | Ralf Jung | -1/+0 |
| 2018-11-20 | generator fields are not necessarily initialized | Ralf Jung | -11/+22 |
| 2018-11-20 | Grammar nit | Oliver Scherer | -1/+1 |
| 2018-11-20 | Document runtime static mutation checks | Oliver Scherer | -1/+2 |
| 2018-11-19 | explain why we can use raw | Ralf Jung | -0/+4 |
| 2018-11-19 | use RawConst in miri | Ralf Jung | -34/+18 |
| 2018-11-19 | Make const_eval_raw query return just an AllocId | Ralf Jung | -14/+23 |
| 2018-11-19 | Also catch static mutation at evaluation time | Oliver Scherer | -4/+4 |
| 2018-11-19 | Rollup merge of #56059 - alexcrichton:fix-tests, r=sfackler | kennytm | -4/+26 |
| 2018-11-19 | Rollup merge of #55970 - RalfJung:miri-backtrace, r=@oli-obk | Pietro Albini | -12/+3 |