| Age | Commit message (Expand) | Author | Lines |
| 2020-04-19 | Auto merge of #70598 - vakaras:add-threads-cr3, r=oli-obk,RalfJung | bors | -25/+32 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -3/+5 |
| 2020-04-16 | mir/interpret: only use `ErrorHandled::Reported` for `ErrorReported`. | Eduard-Mihai Burtescu | -5/+4 |
| 2020-04-15 | Add function eval_maybe_thread_local_static_const that allows handling thread... | Vytautas Astrauskas | -9/+13 |
| 2020-04-15 | Make the necessary changes to support concurrency in Miri. | Vytautas Astrauskas | -17/+20 |
| 2020-04-13 | add after_stack_push hook; add public ImmTy::from_immediate method, and make ... | Ralf Jung | -1/+2 |
| 2020-04-13 | Miri: let push_frame hook also access and mutate the rest of the frame data | Ralf Jung | -7/+24 |
| 2020-04-09 | Use new utility in `eval_context` | Dylan MacKenzie | -9/+10 |
| 2020-04-05 | make set_span public, as all the fields it touches are public already | Ralf Jung | -1/+1 |
| 2020-04-05 | set span more accurately during const_prop | Ralf Jung | -1/+7 |
| 2020-04-05 | Miri engine: use span_bug in a few places | Ralf Jung | -8/+10 |
| 2020-04-05 | fix comment | Ralf Jung | -3/+3 |
| 2020-04-05 | miri assignment check: compare types after normalizing all late-bound regions... | Ralf Jung | -16/+36 |
| 2020-04-02 | switch assignment check back to testing layout equality | Ralf Jung | -16/+21 |
| 2020-04-02 | also use mir_assign_valid_types in from_known_layout check | Ralf Jung | -1/+43 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -2/+3 |
| 2020-03-30 | remove a dead parameter that everyone sets to None | Ralf Jung | -3/+3 |
| 2020-03-30 | remove caller span from Miri stack frame | Ralf Jung | -8/+1 |
| 2020-03-30 | Miri stacktrace: record span inside frame, not call-site span | Ralf Jung | -16/+4 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -10/+10 |
| 2020-03-27 | Rename TyLayout to TyAndLayout. | Ana-Maria Mihalache | -9/+9 |
| 2020-03-25 | go back to infix ops for Size | Ralf Jung | -2/+1 |
| 2020-03-25 | use checked casts and arithmetic in Miri engine | Ralf Jung | -1/+3 |
| 2020-03-24 | move ModifiedStatic error to ConstEval errors, and generally adjust terminolo... | Ralf Jung | -2/+2 |
| 2020-03-21 | clarify when we pass () to functions (clippy::unit_arg) | Matthias Krüger | -1/+2 |
| 2020-03-20 | Rollup merge of #69935 - davidtwco:issue-69925, r=eddyb | Yuki Okushi | -10/+17 |
| 2020-03-18 | Rollup merge of #69839 - RalfJung:miri-error-cleanup, r=oli-obk | Mazdak Farrokhzad | -3/+3 |
| 2020-03-16 | Small fixes in documentation | Youngsuk Kim | -3/+3 |
| 2020-03-14 | fix comment, rustfmt | Ralf Jung | -1/+1 |
| 2020-03-14 | adjust Miri to needs of changed unwinding strategy | Ralf Jung | -19/+12 |
| 2020-03-12 | codegen/mir: support polymorphic `InstanceDef`s | David Wood | -10/+17 |
| 2020-03-11 | miri: categorize errors into "unsupported" and "UB" | Ralf Jung | -3/+3 |
| 2020-03-08 | fix some cases of unexpected exceptions leaving validation | Ralf Jung | -9/+3 |
| 2020-03-06 | fix various typos | Matthias Krüger | -1/+1 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -3/+3 |
| 2020-02-20 | Erase regions before before performing const eval, to improve caching. | Ben Lewis | -5/+1 |
| 2020-02-15 | Change const eval to return `ConstValue`, instead of `Const` as the type insi... | Ben Lewis | -1/+3 |
| 2020-01-10 | Promoteds also need param envs. | Oliver Scherer | -5/+14 |
| 2020-01-09 | Rename `Unsized` to `Meta` | Oliver Scherer | -3/+3 |
| 2020-01-07 | Poison any `MemPlace` created from a zst Operand (or otherwise via `MPlaceTy:... | Oliver Scherer | -7/+6 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-26 | Use the targetted const eval functions | Oliver Scherer | -9/+5 |
| 2019-12-26 | Reintroduce the recursion comment | Oliver Scherer | -0/+4 |
| 2019-12-26 | Add a `const_eval` helper to `InterpCx` | Oliver Scherer | -2/+20 |
| 2019-12-26 | Explain what we are doing with parameter environments for statics | Oliver Scherer | -5/+5 |
| 2019-12-26 | Comment on a few odd things that we should look at | Oliver Scherer | -0/+2 |
| 2019-12-26 | Simplify `force_allocation_maybe_sized` | Oliver Scherer | -1/+1 |
| 2019-12-26 | Retire `to_ptr` which should already have no users but still kept getting new... | Oliver Scherer | -1/+3 |
| 2019-12-22 | Format the world | Mark Rousskov | -109/+100 |