| Age | Commit message (Expand) | Author | Lines |
| 2024-11-19 | additional `TypingEnv` cleanups | lcnr | -4/+1 |
| 2024-11-19 | `InterpCx` store `TypingEnv` instead of a `ParamEnv` | lcnr | -15/+17 |
| 2024-11-19 | move `fn is_item_raw` to `TypingEnv` | lcnr | -3/+3 |
| 2024-11-19 | Auto merge of #133164 - RalfJung:promoted-oom, r=jieyouxu | bors | -2/+13 |
| 2024-11-18 | interpret: do not ICE when a promoted fails with OOM | Ralf Jung | -2/+13 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -59/+67 |
| 2024-11-17 | Auto merge of #132566 - saethlin:querify-mir-collection, r=cjgillot | bors | -15/+20 |
| 2024-11-12 | Handle infer vars in anon consts on stable | Boxy | -0/+3 |
| 2024-11-12 | Querify MonoItem collection | Ben Kimock | -15/+20 |
| 2024-11-12 | Consolidate type system const evaluation under `traits::evaluate_const` | Boxy | -11/+9 |
| 2024-11-10 | Rollup merge of #132675 - Zalathar:empty-spans, r=jieyouxu | Matthias Krüger | -8/+7 |
| 2024-11-09 | make return type of get_alloc_info a struct, and reduce some code duplication... | Ralf Jung | -3/+83 |
| 2024-11-08 | coverage: Remove unhelpful code for handling multiple files per function | Zalathar | -8/+7 |
| 2024-11-04 | ty::BrK -> ty::BoundRegionKind::K | Michael Goulet | -1/+4 |
| 2024-11-03 | compiler: Directly use rustc_abi in metadata and middle | Jubilee Young | -13/+13 |
| 2024-11-01 | Show actual MIR when MIR building forgot to terminate block | bjorn3 | -22/+24 |
| 2024-10-31 | stop using `ParamEnv::reveal` while handling MIR | lcnr | -17/+14 |
| 2024-10-31 | `ConstCx` stop using `ParamEnv::reveal` | lcnr | -6/+17 |
| 2024-10-26 | Rollup merge of #132168 - fee1-dead-contrib:fxclean, r=compiler-errors | Matthias Krüger | -4/+2 |
| 2024-10-26 | Effects cleanup | Deadbeef | -4/+2 |
| 2024-10-25 | tcx.is_const_fn doesn't work the way it is described, remove it | Ralf Jung | -2/+2 |
| 2024-10-23 | fix a couple clippy:complexitys | Matthias Krüger | -2/+2 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -1/+1 |
| 2024-10-21 | Auto merge of #130950 - compiler-errors:yeet-eval, r=BoxyUwU | bors | -5/+13 |
| 2024-10-19 | Rename normalize to normalize_internal, remove unnecessary usages | Michael Goulet | -1/+1 |
| 2024-10-19 | Get rid of const eval_* and try_eval_* helpers | Michael Goulet | -5/+13 |
| 2024-10-19 | interpret errors: add map_err_kind, rename InterpError -> InterpErrorKind | Ralf Jung | -36/+47 |
| 2024-10-14 | Remove `Engine::new_gen_kill`. | Nicholas Nethercote | -7/+0 |
| 2024-10-12 | mark InterpResult as must_use | Ralf Jung | -0/+1 |
| 2024-10-08 | coverage. Adapt to mcdc mapping formats introduced by llvm 19 | zhuyunxing | -31/+30 |
| 2024-10-08 | coverage. MCDC ConditionId start from 0 to keep with llvm 19 | zhuyunxing | -13/+3 |
| 2024-10-06 | various fixes for `naked_asm!` implementation | Folkert de Vries | -4/+28 |
| 2024-10-05 | clarify semantics of ConstantIndex MIR projection | Ralf Jung | -2/+4 |
| 2024-10-01 | Rollup merge of #130885 - RalfJung:interp-error-discard, r=oli-obk | Jubilee | -33/+220 |
| 2024-10-01 | make InterpResult a dedicated type to avoid accidentally discarding the error | Ralf Jung | -88/+220 |
| 2024-10-01 | Replace -Z default-hidden-visibility with -Z default-visibility | David Lattimore | -0/+11 |
| 2024-09-30 | panic when an interpreter error gets unintentionally discarded | Ralf Jung | -9/+64 |
| 2024-09-28 | tweak Const::identity_unevaluated name and docs | Ralf Jung | -1/+3 |
| 2024-09-28 | try to get rid of mir::Const::normalize | Ralf Jung | -12/+0 |
| 2024-09-25 | Auto merge of #130803 - cuviper:file-buffered, r=joshtriplett | bors | -2/+2 |
| 2024-09-24 | Dogfood `feature(file_buffered)` | Josh Stone | -2/+2 |
| 2024-09-24 | update doc comment | Lukas Markeffsky | -2/+4 |
| 2024-09-24 | be even more precise about "cast" vs "coercion" | Lukas Markeffsky | -5/+14 |
| 2024-09-24 | replace "cast" with "coercion" where applicable | Lukas Markeffsky | -1/+3 |
| 2024-09-24 | unify dyn* coercions with other pointer coercions | Lukas Markeffsky | -3/+0 |
| 2024-09-23 | Check vtable projections for validity in miri | Michael Goulet | -16/+19 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -34/+34 |
| 2024-09-21 | Compute reachable locals as part of non_ssa_locals | Ben Kimock | -83/+41 |
| 2024-09-21 | Don't alloca for unused locals | Ben Kimock | -8/+111 |
| 2024-09-14 | Auto merge of #128543 - RalfJung:const-interior-mut, r=fee1-dead | bors | -4/+43 |