| Age | Commit message (Expand) | Author | Lines |
| 2024-04-16 | Add an assertion in const eval | Maybe Waffle | -2/+8 |
| 2024-04-16 | Change intrinsic types to use `u32` instead of `T` to match stable reexports | Maybe Waffle | -8/+13 |
| 2024-04-08 | Actually create ranged int types in the type system. | Oli Scherer | -0/+4 |
| 2024-03-23 | Auto merge of #122582 - scottmcm:swap-intrinsic-v2, r=oli-obk | bors | -2/+23 |
| 2024-03-22 | Programmatically convert some of the pat ctors | Michael Goulet | -1/+1 |
| 2024-03-18 | Avoid various uses of `Option<Span>` in favor of using `DUMMY_SP` in the few ... | Oli Scherer | -3/+2 |
| 2024-03-17 | Let codegen decide when to `mem::swap` with immediates | Scott McMurray | -2/+23 |
| 2024-03-04 | consistently use MPlaceTy for return places | Ralf Jung | -6/+6 |
| 2024-02-23 | interpret: do no ICE on OOB shuffle/insert/extract indices | Ralf Jung | -8/+12 |
| 2024-02-15 | Split a bool argument into two named functions | Oli Scherer | -9/+5 |
| 2024-02-06 | Add CoroutineClosure to TyKind, AggregateKind, UpvarArgs | Michael Goulet | -0/+1 |
| 2023-12-28 | Remove movability from TyKind::Coroutine | Michael Goulet | -1/+1 |
| 2023-12-03 | interpret: make numeric_intrinsic accessible from Miri | Ralf Jung | -46/+36 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -2/+2 |
| 2023-10-30 | Rollup merge of #117317 - RalfJung:track-caller, r=oli-obk | Guillaume Gomez | -4/+4 |
| 2023-10-28 | interpret: call caller_location logic the same way codegen does, and share so... | Ralf Jung | -4/+4 |
| 2023-10-25 | Evaluate computed values to constants. | Camille GILLOT | -1/+1 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -2/+2 |
| 2023-10-15 | separate bounds-check from alignment check | Ralf Jung | -7/+8 |
| 2023-10-15 | don't UB on dangling ptr deref, instead check inbounds on projections | Ralf Jung | -9/+1 |
| 2023-10-08 | miri: make NaN generation non-deterministic | Ralf Jung | -0/+6 |
| 2023-09-30 | dont call mir.post_mono_checks in codegen | Ralf Jung | -1/+1 |
| 2023-09-23 | Remove GeneratorWitness and rename GeneratorWitnessMIR. | Camille GILLOT | -2/+1 |
| 2023-09-21 | Auto merge of #116010 - RalfJung:more-typed-immediates, r=oli-obk | bors | -7/+7 |
| 2023-09-20 | interpret: more consistently use ImmTy in operators and casts | Ralf Jung | -7/+7 |
| 2023-09-19 | adjust constValue::Slice to work for arbitrary slice types | Ralf Jung | -1/+1 |
| 2023-09-19 | move ConstValue into mir | Ralf Jung | -4/+2 |
| 2023-09-11 | Use write_immediate. | Camille GILLOT | -2/+2 |
| 2023-09-11 | Return ImmTy in discriminant_for_variant. | Camille GILLOT | -1/+1 |
| 2023-09-04 | interpret: make MemPlace, Place, Operand types private to the interpreter | Ralf Jung | -1/+1 |
| 2023-08-20 | interpret: have assert_* intrinsics call the panic machinery instead of a dir... | Ralf Jung | -10/+6 |
| 2023-08-06 | Add a new `compare_bytes` intrinsic instead of calling `memcmp` directly | Scott McMurray | -0/+22 |
| 2023-08-03 | Rollup merge of #114363 - RalfJung:interpret-not-miri, r=jackh726 | Matthias Krüger | -1/+1 |
| 2023-08-02 | avoid 'miri' when refering to the shared interpreter | Ralf Jung | -1/+1 |
| 2023-08-01 | rename deref_operand → deref_pointer and some Miri helper functions | Ralf Jung | -2/+2 |
| 2023-07-27 | Rollup merge of #114075 - matthiaskrgr:fmt_args_rustc_3, r=wesleywiser | Matthias Krüger | -12/+5 |
| 2023-07-25 | inline format!() args from rustc_codegen_llvm to the end (4) | Matthias Krüger | -12/+5 |
| 2023-07-25 | interpret: make read functions generic over operand type | Ralf Jung | -8/+8 |
| 2023-07-25 | interpret: make write functions generic over the place type | Ralf Jung | -1/+1 |
| 2023-07-25 | interpret: read_discriminant: only return VariantIdx | Ralf Jung | -2/+3 |
| 2023-07-25 | interpret: refactor projection code to work on a common trait, and use that f... | Ralf Jung | -3/+3 |
| 2023-07-21 | Revert "Auto merge of #113166 - moulins:ref-niches-initial, r=oli-obk" | David Tolnay | -5/+6 |
| 2023-07-21 | CTFE: move `target_{i, u}size_{min, max)` to `rustc_abi::TargetDataLayout` | Moulins | -6/+5 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -9/+9 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -1/+1 |
| 2023-07-01 | Put `LayoutError` behind reference to shrink result | Nilstrieb | -1/+1 |
| 2023-06-19 | Remove unchecked_add/sub/mul/shl/shr from CTFE/cg_ssa/cg_clif | Scott McMurray | -31/+0 |
| 2023-06-04 | Use 128 bits for TypeId hash | Thom Chiovoloni | -2/+2 |
| 2023-06-02 | Rollup merge of #112168 - scottmcm:lower-div-rem-unchecked-to-mir, r=oli-obk | Michael Goulet | -5/+1 |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -32/+43 |