| Age | Commit message (Expand) | Author | Lines |
| 2023-08-24 | make MIR less verbose | Ralf Jung | -4/+13 |
| 2023-08-24 | cache the terminate block with the last reason that we saw | Ralf Jung | -13/+9 |
| 2023-08-24 | document more things as needing to stay in sync | Ralf Jung | -3/+16 |
| 2023-08-24 | when terminating during unwinding, show the reason why | Ralf Jung | -38/+98 |
| 2023-08-20 | Auto merge of #114993 - RalfJung:panic-nounwind, r=fee1-dead | bors | -64/+49 |
| 2023-08-20 | sync printing of MIR terminators with their new names (and dedup some to-str ... | Ralf Jung | -44/+27 |
| 2023-08-20 | give some unwind-related terminators a more clear name | Ralf Jung | -24/+26 |
| 2023-08-20 | coverage: Give the instrumentor its own counter type, separate from MIR | Zalathar | -15/+0 |
| 2023-08-17 | Revert "Implement references VarDebugInfo." | Camille GILLOT | -12/+2 |
| 2023-08-16 | Make TerminatorEdge plural. | Camille GILLOT | -13/+13 |
| 2023-08-16 | Allow apply_terminator_effect to customize edges. | Camille GILLOT | -0/+106 |
| 2023-08-10 | Rollup merge of #114622 - petrochenkov:noplugin, r=oli-obk | Michael Goulet | -2/+2 |
| 2023-08-09 | Rollup merge of #114587 - ouz-a:smir_allocation, r=oli-obk | Matthias Krüger | -0/+3 |
| 2023-08-09 | Convert Const to Allocation in smir | ouz-a | -0/+3 |
| 2023-08-09 | rustc: Move `stable_crate_id` from `Session` to `GlobalCtxt` | Vadim Petrochenkov | -2/+2 |
| 2023-08-08 | interpret: remove incomplete protection against invalid where clauses | Ralf Jung | -2/+0 |
| 2023-08-06 | Rollup merge of #114505 - ouz-a:cleanup_mir, r=RalfJung | Matthias Krüger | -11/+17 |
| 2023-08-06 | cleanup misinformation regarding has_deref | ouz-a | -11/+17 |
| 2023-08-03 | Rollup merge of #114372 - RalfJung:const-pointer-as-int, r=oli-obk | Matthias Krüger | -60/+77 |
| 2023-08-03 | Rollup merge of #114363 - RalfJung:interpret-not-miri, r=jackh726 | Matthias Krüger | -2/+2 |
| 2023-08-02 | const validation: point at where we found a pointer but expected an integer | Ralf Jung | -60/+77 |
| 2023-08-02 | avoid 'miri' when refering to the shared interpreter | Ralf Jung | -2/+2 |
| 2023-08-02 | Auto merge of #114333 - RalfJung:dangling-ptr-offset, r=oli-obk | bors | -2/+2 |
| 2023-08-01 | properly track why we checked whether a pointer is in-bounds | Ralf Jung | -2/+2 |
| 2023-08-01 | Make coverage counter IDs count up from 0, not 1 | Zalathar | -13/+13 |
| 2023-08-01 | Make coverage expression IDs count up from 0, not down from `u32::MAX` | Zalathar | -11/+15 |
| 2023-08-01 | Replace `ExpressionOperandId` with enum `Operand` | Zalathar | -48/+26 |
| 2023-08-01 | Add some line comments to enum `CoverageKind` | Zalathar | -0/+4 |
| 2023-07-30 | inline format!() args up to and including rustc_middle | Matthias Krüger | -163/+145 |
| 2023-07-27 | Remove `constness` from `ParamEnv` | Deadbeef | -7/+2 |
| 2023-07-25 | Auto merge of #113393 - compiler-errors:next-solver-unsize-rhs, r=lcnr | bors | -9/+3 |
| 2023-07-25 | Make everything builtin! | Michael Goulet | -9/+3 |
| 2023-07-25 | add some sanity checks in write_immediate_no_validate | Ralf Jung | -1/+9 |
| 2023-07-25 | interpret: refactor projection code to work on a common trait, and use that f... | Ralf Jung | -2/+6 |
| 2023-07-24 | interpret: support projecting into Place::Local without force_allocation | Ralf Jung | -3/+2 |
| 2023-07-21 | Revert "Auto merge of #113166 - moulins:ref-niches-initial, r=oli-obk" | David Tolnay | -8/+23 |
| 2023-07-21 | CTFE: move `target_{i, u}size_{min, max)` to `rustc_abi::TargetDataLayout` | Moulins | -22/+8 |
| 2023-07-21 | support non-null pointer niches in CTFE | Moulins | -1/+0 |
| 2023-07-18 | Auto merge of #113777 - nnethercote:overlap-based-cgu-merging, r=pnkfelix | bors | -0/+8 |
| 2023-07-19 | Add a useful comment. | Nicholas Nethercote | -0/+2 |
| 2023-07-19 | Add `MonoItemData::inlined`. | Nicholas Nethercote | -0/+6 |
| 2023-07-17 | Auto merge of #113562 - saethlin:larger-incr-comp-offset, r=nnethercote | bors | -2/+2 |
| 2023-07-17 | Remove `instance_def_size_estimate` query. | Nicholas Nethercote | -5/+12 |
| 2023-07-17 | Store item size estimate in `MonoItemData`. | Nicholas Nethercote | -5/+6 |
| 2023-07-17 | Introduce `MonoItemData`. | Nicholas Nethercote | -5/+12 |
| 2023-07-14 | Use u64 for incr comp allocation offsets | Ben Kimock | -2/+2 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -83/+82 |
| 2023-07-11 | update Operand::Move docs | Ralf Jung | -4/+10 |
| 2023-07-07 | Rename `adjustment::PointerCast` and variants using it to `PointerCoercion` | Nilstrieb | -4/+4 |
| 2023-07-06 | Auto merge of #113377 - BoxyUwU:move_ty_ctors_to_ty, r=compiler-errors | bors | -12/+14 |