| Age | Commit message (Expand) | Author | Lines |
| 2023-11-30 | explain a good reason for why LocalValue does not store the type of the local | Ralf Jung | -0/+3 |
| 2023-11-28 | move write_aggregate into step file, and also extract write_repeat into separ... | Ralf Jung | -60/+72 |
| 2023-11-26 | rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle... | Vadim Petrochenkov | -1/+1 |
| 2023-11-23 | remove unused pub fn | klensy | -2/+2 |
| 2023-11-23 | Auto merge of #118073 - saethlin:gc-dead-allocs, r=RalfJung | bors | -0/+11 |
| 2023-11-22 | Miri: GC the dead_alloc_map too | Ben Kimock | -0/+11 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -13/+13 |
| 2023-11-21 | Rollup merge of #118029 - saethlin:allocid-gc, r=RalfJung | Nilstrieb | -0/+17 |
| 2023-11-19 | Rollup merge of #117832 - RalfJung:interpret-shift, r=cjgillot | Michael Goulet | -28/+26 |
| 2023-11-19 | Expand Miri's BorTag GC to a Provenance GC | Ben Kimock | -0/+17 |
| 2023-11-18 | guarantee that char and u32 are ABI-compatible | Ralf Jung | -0/+2 |
| 2023-11-15 | Re-format code with new rustfmt | Mark Rousskov | -3/+2 |
| 2023-11-14 | Fix some typos | cui fliter | -2/+2 |
| 2023-11-12 | interpret: simplify handling of shifts by no longer trying to handle signed a... | Ralf Jung | -28/+26 |
| 2023-11-01 | Rollup merge of #117373 - saethlin:avoid-ice-lint, r=compiler-errors | Matthias Krüger | -8/+4 |
| 2023-11-01 | Avoid the path trimming ICE lint in error reporting | Ben Kimock | -8/+4 |
| 2023-10-31 | Support enum variants in offset_of! | George Bateman | -1/+1 |
| 2023-10-30 | Rollup merge of #117317 - RalfJung:track-caller, r=oli-obk | Guillaume Gomez | -140/+48 |
| 2023-10-28 | share the track_caller handling within a mir::Body | Ralf Jung | -29/+11 |
| 2023-10-28 | interpret: call caller_location logic the same way codegen does, and share so... | Ralf Jung | -140/+66 |
| 2023-10-25 | Rename has_provance and tweaks comments. | Camille GILLOT | -1/+4 |
| 2023-10-25 | Take an AllocId in intern_const_alloc_for_constprop. | Camille GILLOT | -2/+1 |
| 2023-10-25 | Move provenance checks out of interning method. | Camille GILLOT | -13/+3 |
| 2023-10-25 | Directly intern values instead of copying them. | Camille GILLOT | -1/+47 |
| 2023-10-25 | Evaluate computed values to constants. | Camille GILLOT | -7/+18 |
| 2023-10-24 | Rollup merge of #117081 - GoodDaisy:master, r=wesleywiser | Matthias Krüger | -1/+1 |
| 2023-10-23 | Rollup merge of #116859 - Nilstrieb:more-more-funny-pretty-printers, r=oli-obk | Matthias Krüger | -4/+5 |
| 2023-10-23 | fix typos in comments | GoodDaisy | -1/+1 |
| 2023-10-23 | Ensure that `eval_to_allocation_raw` isn't called on static items from miri | Oli Scherer | -9/+6 |
| 2023-10-23 | Pull mplace validation logic out into an interpreter method | Oli Scherer | -1/+1 |
| 2023-10-21 | Make `ty::print::Printer` take `&mut self` instead of `self` | Nilstrieb | -4/+5 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -9/+9 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -17/+17 |
| 2023-10-20 | Adjust imports | Michael Goulet | -3/+3 |
| 2023-10-19 | Auto merge of #115214 - Urgau:rfc-3127-trim-paths, r=compiler-errors | bors | -1/+9 |
| 2023-10-19 | Rollup merge of #116650 - RalfJung:miri-intptrcast, r=oli-obk | Matthias Krüger | -0/+10 |
| 2023-10-17 | [RFC 3127 - Trim Paths]: Condition remapped filepath on remap scopes | Urgau | -1/+9 |
| 2023-10-16 | Auto merge of #114330 - RalfJung:dagling-ptr-deref, r=oli-obk | bors | -311/+297 |
| 2023-10-16 | Auto merge of #116724 - RalfJung:alloc-bytes, r=oli-obk | bors | -11/+0 |
| 2023-10-15 | separate bounds-check from alignment check | Ralf Jung | -112/+76 |
| 2023-10-15 | more precise error for 'based on misaligned pointer' case | Ralf Jung | -14/+24 |
| 2023-10-15 | avoid computing misalignment if we won't act on it | Ralf Jung | -6/+11 |
| 2023-10-15 | place evaluation: require the original pointer to be aligned if an access hap... | Ralf Jung | -200/+170 |
| 2023-10-15 | avoid re-checking the offset while iterating an array/slice | Ralf Jung | -15/+54 |
| 2023-10-15 | don't UB on dangling ptr deref, instead check inbounds on projections | Ralf Jung | -51/+49 |
| 2023-10-15 | Auto merge of #116688 - compiler-errors:rustfmt-up, r=WaffleLapkin,Nilstrieb | bors | -1/+3 |
| 2023-10-14 | Rollup merge of #116576 - eduardosm:const-eval-wasm-target-features, r=RalfJung | Guillaume Gomez | -4/+6 |
| 2023-10-14 | const-eval: allow calling functions with targat features disabled at compile ... | Eduardo Sánchez Muñoz | -4/+6 |
| 2023-10-14 | interpret: clean up AllocBytes | Ralf Jung | -11/+0 |
| 2023-10-14 | Auto merge of #115524 - RalfJung:misalign, r=wesleywiser | bors | -44/+21 |