| Age | Commit message (Expand) | Author | Lines |
| 2024-05-23 | Allow const eval failures if the cause is a type layout issue | Oli Scherer | -0/+3 |
| 2024-05-21 | interpret: make overflowing binops just normal binops | Ralf Jung | -6/+13 |
| 2024-05-13 | interpret: move error macros into error.rs | Ralf Jung | -3/+118 |
| 2024-04-29 | Remove `extern crate rustc_data_structures` from numerous crates. | Nicholas Nethercote | -1/+1 |
| 2024-04-29 | Remove `extern crate rustc_macros` from `rustc_middle`. | Nicholas Nethercote | -1/+1 |
| 2024-04-21 | Miri: detect wrong vtables in wide pointers | Ralf Jung | -21/+78 |
| 2024-04-18 | Simplify `static_assert_size`s. | Nicholas Nethercote | -1/+1 |
| 2024-04-03 | Check `x86_64` size assertions on `aarch64`, too | Zalathar | -1/+1 |
| 2024-03-17 | Print a backtrace in const eval if interrupted | Ben Kimock | -0/+2 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -9/+9 |
| 2024-03-05 | Rename `DiagnosticMessage` as `DiagMessage`. | Nicholas Nethercote | -4/+2 |
| 2024-02-29 | Rollup merge of #121782 - RalfJung:mutable-ref-in-static, r=oli-obk | Matthias Krüger | -1/+0 |
| 2024-02-29 | allow statics pointing to mutable statics | Ralf Jung | -1/+0 |
| 2024-02-28 | Auto merge of #121489 - nnethercote:diag-renaming, r=davidtwco | bors | -8/+8 |
| 2024-02-28 | Rename `DiagnosticArg{,Map,Name,Value}` as `DiagArg{,Map,Name,Value}`. | Nicholas Nethercote | -8/+8 |
| 2024-02-27 | Split rustc_type_ir to avoid rustc_ast from depending on it | Oli Scherer | -1/+1 |
| 2024-02-16 | allow mutable references in const values when they point to no memory | Ralf Jung | -4/+5 |
| 2024-02-15 | Return ConstAllocation from eval_static_initializer query directly | Oli Scherer | -2/+2 |
| 2024-02-15 | Add new query just for static initializers | Oli Scherer | -0/+1 |
| 2024-02-11 | Rollup merge of #120883 - RalfJung:extern-static-err, r=oli-obk | Matthias Krüger | -1/+1 |
| 2024-02-11 | Rollup merge of #120882 - RalfJung:set-discriminant, r=compiler-errors | Matthias Krüger | -0/+2 |
| 2024-02-10 | detect consts that reference extern statics | Ralf Jung | -0/+1 |
| 2024-02-10 | validation: descend from consts into statics | Ralf Jung | -0/+1 |
| 2024-02-10 | interpret: rename ReadExternStatic → ExternStatic | Ralf Jung | -1/+1 |
| 2024-02-10 | interpret/write_discriminant: when encoding niched variant, ensure the stored... | Ralf Jung | -0/+2 |
| 2024-02-03 | Use `DiagnosticArgName` in a few more places. | Nicholas Nethercote | -2/+4 |
| 2024-01-30 | Remove the lifetime from `DiagnosticArgValue`. | Nicholas Nethercote | -7/+4 |
| 2024-01-25 | Auto merge of #119627 - oli-obk:const_prop_lint_n̵o̵n̵sense, r=cjgillot | bors | -2/+0 |
| 2024-01-23 | const prop nonsense eliminated | Oli Scherer | -2/+0 |
| 2024-01-22 | const-eval interner: from-scratch rewrite using mutability information from p... | Ralf Jung | -2/+2 |
| 2024-01-04 | Remove unused `struct_error` function. | Nicholas Nethercote | -9/+1 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -2/+2 |
| 2023-12-23 | Give `DiagnosticBuilder` a default type. | Nicholas Nethercote | -4/+1 |
| 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 |