| Age | Commit message (Expand) | Author | Lines |
| 2023-12-07 | ctfe interpreter: extend provenance so that it can track whether a pointer is... | Ralf Jung | -5/+5 |
| 2023-10-15 | more precise error for 'based on misaligned pointer' case | Ralf Jung | -3/+12 |
| 2023-10-15 | place evaluation: require the original pointer to be aligned if an access hap... | Ralf Jung | -1/+8 |
| 2023-10-15 | don't UB on dangling ptr deref, instead check inbounds on projections | Ralf Jung | -2/+0 |
| 2023-09-30 | dont call mir.post_mono_checks in codegen | Ralf Jung | -15/+0 |
| 2023-09-19 | move ConstValue into mir | Ralf Jung | -2/+2 |
| 2023-09-18 | Auto merge of #115748 - RalfJung:post-mono, r=oli-obk | bors | -11/+51 |
| 2023-09-18 | Remove more unused `Lift` impls. | Nicholas Nethercote | -1/+1 |
| 2023-09-14 | don't point at const usage site for resolution-time errors | Ralf Jung | -7/+28 |
| 2023-09-14 | move required_consts check to general post-mono-check function | Ralf Jung | -4/+23 |
| 2023-09-13 | make the eval() functions on our const types return the resulting value | Ralf Jung | -0/+2 |
| 2023-09-09 | give extra context to ABI mismatch errors | Ralf Jung | -7/+12 |
| 2023-08-30 | move marking-locals-live out of push_stack_frame, so it happens with argument... | Ralf Jung | -0/+2 |
| 2023-08-08 | interpret: remove incomplete protection against invalid where clauses | Ralf Jung | -2/+0 |
| 2023-08-03 | Rollup merge of #114372 - RalfJung:const-pointer-as-int, r=oli-obk | Matthias Krüger | -21/+17 |
| 2023-08-03 | Rollup merge of #114363 - RalfJung:interpret-not-miri, r=jackh726 | Matthias Krüger | -1/+1 |
| 2023-08-02 | const validation: point at where we found a pointer but expected an integer | Ralf Jung | -21/+17 |
| 2023-08-02 | avoid 'miri' when refering to the shared interpreter | Ralf Jung | -1/+1 |
| 2023-08-01 | properly track why we checked whether a pointer is in-bounds | Ralf Jung | -2/+2 |
| 2023-07-30 | inline format!() args up to and including rustc_middle | Matthias Krüger | -1/+1 |
| 2023-07-25 | Auto merge of #113393 - compiler-errors:next-solver-unsize-rhs, r=lcnr | bors | -3/+1 |
| 2023-07-25 | Make everything builtin! | Michael Goulet | -3/+1 |
| 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 | -0/+1 |
| 2023-07-21 | support non-null pointer niches in CTFE | Moulins | -1/+0 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -1/+1 |
| 2023-06-01 | improve debug message by eagerly translating | Deadbeef | -13/+1 |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -242/+195 |
| 2023-05-31 | Remove const eval limit and implement an exponential backoff lint instead | Oli Scherer | -7/+0 |
| 2023-05-17 | Finish move of query.rs | John Kåre Alsaker | -1/+2 |
| 2023-05-15 | Suppress "erroneous constant used" for constants tainted by errors | Tomasz Miąsko | -6/+40 |
| 2023-04-28 | interpret: fail more gracefully on uninit unsized locals | Ralf Jung | -0/+4 |
| 2023-02-14 | interpret: rename Pointer::from_addr → from_addr_invalid | Ralf Jung | -1/+1 |
| 2023-02-07 | miri: fix ICE when running out of address space | Ralf Jung | -1/+6 |
| 2022-11-17 | fix a typo | Ralf Jung | -1/+1 |
| 2022-11-16 | cleanup and dedupe CTFE and Miri error reporting | Ralf Jung | -19/+4 |
| 2022-11-07 | less unsupported errors in Miri, and clarifying comments | Ralf Jung | -7/+6 |
| 2022-10-07 | make const_err a hard error | Ralf Jung | -18/+1 |
| 2022-08-27 | interpret: make read-pointer-as-bytes *always* work in Miri | Ralf Jung | -3/+10 |
| 2022-07-20 | consistently use VTable over Vtable (matching stable stdlib API RawWakerVTable) | Ralf Jung | -4/+4 |
| 2022-07-20 | make use of symbolic vtables in interpreter | Ralf Jung | -18/+9 |
| 2022-07-20 | add a Vtable kind of symbolic allocations | Ralf Jung | -0/+3 |
| 2022-07-06 | interpret: use AllocRange in UninitByteAccess | Ralf Jung | -51/+39 |
| 2022-07-06 | Auto merge of #98206 - eggyal:align-to-chalk-folding-api, r=jackh726 | bors | -1/+1 |
| 2022-07-05 | impl TypeVisitable in type traversal macros | Alan Egerton | -1/+1 |
| 2022-07-05 | adjust dangling-int-ptr error message | Ralf Jung | -10/+8 |
| 2022-07-02 | more use of format! variable capture | Ralf Jung | -1/+1 |
| 2022-07-02 | add AllocRange Debug impl; remove redundant AllocId Display impl | Ralf Jung | -13/+7 |
| 2022-06-29 | interpret: adjust error from constructing an invalid value | Ralf Jung | -2/+4 |