| Age | Commit message (Expand) | Author | Lines |
| 2020-04-23 | Modify `as_local_hir_id` to accept a `LocalDefId` instead of a `DefId` | marmeladema | -4/+3 |
| 2020-04-22 | Don't use `*` for deref-coercion | Dylan MacKenzie | -1/+1 |
| 2020-04-19 | Auto merge of #70598 - vakaras:add-threads-cr3, r=oli-obk,RalfJung | bors | -7/+25 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -1/+1 |
| 2020-04-17 | Rollup merge of #69642 - ecstatic-morse:issue-69615, r=oli-obk | Dylan DPC | -17/+10 |
| 2020-04-16 | Move stack access methods in the Machine implementations out of the enforce_ ... | Vytautas Astrauskas | -14/+14 |
| 2020-04-16 | mir/interpret: only use `ErrorHandled::Reported` for `ErrorReported`. | Eduard-Mihai Burtescu | -10/+6 |
| 2020-04-15 | Make the necessary changes to support concurrency in Miri. | Vytautas Astrauskas | -7/+25 |
| 2020-04-15 | Rollup merge of #71100 - RalfJung:miri-frame-hook, r=oli-obk | Mazdak Farrokhzad | -23/+29 |
| 2020-04-14 | Rollup merge of #70947 - RalfJung:ctfe-no-read-mut-global, r=oli-obk | Dylan DPC | -8/+23 |
| 2020-04-13 | fmt | Ralf Jung | -2/+3 |
| 2020-04-13 | Miri: let machine hook dynamically decide about alignment checks | Ralf Jung | -3/+6 |
| 2020-04-13 | add after_stack_push hook; add public ImmTy::from_immediate method, and make ... | Ralf Jung | -19/+21 |
| 2020-04-13 | Miri: let push_frame hook also access and mutate the rest of the frame data | Ralf Jung | -4/+7 |
| 2020-04-10 | librustc_middle: return LocalDefId instead of DefId in get_parent_did | marmeladema | -5/+1 |
| 2020-04-10 | assert that only statics can possibly be mutable | Ralf Jung | -8/+8 |
| 2020-04-09 | Avoid calling `fn_sig` query during `is_const_fn_raw` | Dylan MacKenzie | -17/+10 |
| 2020-04-09 | tighten CTFE safety net for accesses to globals | Ralf Jung | -8/+23 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -4/+5 |
| 2020-03-30 | remove a dead parameter that everyone sets to None | Ralf Jung | -1/+1 |
| 2020-03-30 | stop unnecessarily passing around span argument for Miri function calls | Ralf Jung | -7/+4 |
| 2020-03-30 | remove caller span from Miri stack frame | Ralf Jung | -1/+0 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -4/+4 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -19/+19 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-29 | Use `&` to do deref coercion for `ReadOnlyBodyAndCache` | Dylan MacKenzie | -1/+1 |
| 2020-03-26 | Rollup merge of #70385 - RalfJung:miri-nits, r=eddyb | Mazdak Farrokhzad | -4/+4 |
| 2020-03-25 | miri: avoid a bunch of casts by offering usized-based field indexing | Ralf Jung | -4/+7 |
| 2020-03-25 | rename def_id -> static_def_id | Ralf Jung | -3/+3 |
| 2020-03-25 | better explain GLOBAL_KIND choice | Ralf Jung | -1/+1 |
| 2020-03-24 | fix const_prop ICE | Ralf Jung | -5/+4 |
| 2020-03-24 | get back the more precise error message | Ralf Jung | -2/+6 |
| 2020-03-24 | move ModifiedStatic error to ConstEval errors, and generally adjust terminolo... | Ralf Jung | -6/+16 |
| 2020-03-24 | Rollup merge of #70087 - ecstatic-morse:remove-const-eval-loop-detector, r=Ra... | Mazdak Farrokhzad | -47/+20 |
| 2020-03-23 | add err_machine_stop macro | Ralf Jung | -2/+2 |
| 2020-03-22 | Rename `TimeLimitReached` -> `StepLimitReached` | Dylan MacKenzie | -1/+1 |
| 2020-03-21 | remove unused unit values (clippy::unused_unit) | Matthias Krüger | -3/+1 |
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -1/+1 |
| 2020-03-19 | rustc: rename DefId::to_local to expect_local and use it instead of LocalDefI... | Eduard-Mihai Burtescu | -2/+2 |
| 2020-03-18 | Rollup merge of #69839 - RalfJung:miri-error-cleanup, r=oli-obk | Mazdak Farrokhzad | -1/+2 |
| 2020-03-17 | Use `const_eval_limit` instead of infinite loop detector | Dylan MacKenzie | -47/+20 |
| 2020-03-12 | remove lifetimes that can be elided (clippy::needless_lifetimes) | Matthias Krüger | -1/+1 |
| 2020-03-11 | miri: categorize errors into "unsupported" and "UB" | Ralf Jung | -1/+2 |
| 2020-03-11 | Rollup merge of #69850 - RalfJung:panic-bounds-check, r=eddyb | Mazdak Farrokhzad | -1/+0 |
| 2020-03-09 | remove no-longer needed span from Miri Machine hook | Ralf Jung | -1/+0 |
| 2020-03-08 | fix some cases of unexpected exceptions leaving validation | Ralf Jung | -1/+6 |
| 2020-03-06 | fix various typos | Matthias Krüger | -2/+2 |
| 2020-03-05 | Opt out of CTFE if the 'const_eval_limit' is set to 0 | Christoph Schmidler | -7/+15 |
| 2020-03-01 | Auto merge of #69408 - RalfJung:canonical-alloc-id, r=oli-obk | bors | -9/+1 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -1/+1 |