| Age | Commit message (Expand) | Author | Lines |
| 2025-09-16 | Add span for struct tail recursion limit error | Tawan Muadmuenwai | -0/+2 |
| 2025-07-23 | Remove useless lifetime parameter. | Camille GILLOT | -1/+1 |
| 2025-06-27 | Add InterpCx::layout_of with tracing, shadowing LayoutOf | Stypox | -1/+1 |
| 2025-06-26 | const-eval: allow constants to refer to mutable/external memory, but reject s... | Ralf Jung | -28/+10 |
| 2025-06-05 | Update `InterpCx::project_field` to take `FieldIdx` | Scott McMurray | -3/+3 |
| 2025-04-02 | Move methods from `Map` to `TyCtxt`, part 5. | Nicholas Nethercote | -1/+1 |
| 2025-02-13 | simplify valtree branches construction | Lukas Markeffsky | -15/+12 |
| 2025-02-13 | intern valtrees | Lukas Markeffsky | -14/+11 |
| 2025-02-03 | Refactor using the type-level constant value `ty::Value` | FedericoBruzzone | -19/+23 |
| 2025-01-30 | add comments | Lukas Markeffsky | -1/+2 |
| 2024-12-22 | Begin to implement type system layer of unsafe binders | Michael Goulet | -2/+6 |
| 2024-12-09 | fix ICE on type error in promoted | Ralf Jung | -2/+2 |
| 2024-11-19 | `InterpCx` store `TypingEnv` instead of a `ParamEnv` | lcnr | -13/+12 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -4/+7 |
| 2024-10-29 | compiler: `rustc_abi::Abi` => `BackendRepr` | Jubilee Young | -3/+3 |
| 2024-10-01 | make InterpResult a dedicated type to avoid accidentally discarding the error | Ralf Jung | -4/+4 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -3/+3 |
| 2024-09-16 | layout computation: eagerly error for unexpected unsized fields | Lukas Markeffsky | -1/+1 |
| 2024-08-14 | Auto merge of #128812 - nnethercote:shrink-TyKind-FnPtr, r=compiler-errors | bors | -2/+2 |
| 2024-08-11 | Rename normalization functions to raw | Michael Goulet | -1/+1 |
| 2024-08-09 | Shrink `TyKind::FnPtr`. | Nicholas Nethercote | -2/+2 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -5/+3 |
| 2024-07-18 | valtree construction: keep track of which type was valtree-incompatible | Ralf Jung | -8/+8 |
| 2024-06-13 | rename CompileTimeInterpreter -> CompileTimeMachine, CompileTimeEvalContext -... | Ralf Jung | -8/+8 |
| 2024-06-10 | ScalarInt: size mismatches are a bug, do not delay the panic | Ralf Jung | -4/+4 |
| 2024-05-27 | interpret: get rid of 'mir lifetime everywhere | Ralf Jung | -7/+7 |
| 2024-05-23 | Remove `#[macro_use] extern crate tracing` from `rustc_const_eval`. | Nicholas Nethercote | -0/+1 |
| 2024-05-13 | Remove `extern crate rustc_middle` from `rustc_const_eval`. | Nicholas Nethercote | -0/+1 |
| 2024-04-08 | Actually create ranged int types in the type system. | Oli Scherer | -2/+14 |
| 2024-03-22 | Programmatically convert some of the pat ctors | Michael Goulet | -2/+2 |
| 2024-02-21 | make it possible for outside crates to inspect a mir::ConstValue with the int... | Ralf Jung | -4/+6 |
| 2024-02-10 | validation: descend from consts into statics | Ralf Jung | -13/+1 |
| 2024-02-10 | unstably allow constants to refer to statics and read from immutable statics | Ralf Jung | -25/+71 |
| 2024-02-06 | Add CoroutineClosure to TyKind, AggregateKind, UpvarArgs | Michael Goulet | -0/+2 |
| 2024-01-24 | remove StructuralEq trait | Ralf Jung | -1/+1 |
| 2023-12-24 | fix ICE when using raw ptr in a pattern | Ralf Jung | -1/+1 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -1/+1 |
| 2023-11-12 | patterns: don't ice when encountering a raw str slice | Ralf Jung | -4/+9 |
| 2023-11-08 | Auto merge of #116930 - RalfJung:raw-ptr-match, r=davidtwco | bors | -10/+27 |
| 2023-11-03 | Auto merge of #117507 - nnethercote:rustc_span, r=Nilstrieb | bors | -1/+1 |
| 2023-11-02 | Minimize `pub` usage in `source_map.rs`. | Nicholas Nethercote | -1/+1 |
| 2023-11-01 | Specify diagnostic path. | Camille GILLOT | -2/+2 |
| 2023-10-28 | patterns: reject raw pointers that are not just integers | Ralf Jung | -10/+27 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -4/+4 |
| 2023-09-23 | Remove GeneratorWitness and rename GeneratorWitnessMIR. | Camille GILLOT | -2/+1 |
| 2023-09-19 | move ConstValue into mir | Ralf Jung | -6/+7 |
| 2023-09-14 | valtree_to_const_value: add fast-path for Scalar tuples/structs | Ralf Jung | -1/+16 |
| 2023-09-14 | a bit of cleanup in valtree_to_const_value | Ralf Jung | -51/+37 |
| 2023-09-04 | interpret: make MemPlace, Place, Operand types private to the interpreter | Ralf Jung | -3/+3 |
| 2023-08-06 | simplify handling of valtrees for unsized types | Ralf Jung | -71/+28 |