| Age | Commit message (Expand) | Author | Lines |
| 2023-09-09 | implement and test ABI compatibility for transparent wrappers around NPO types | Ralf Jung | -14/+27 |
| 2023-09-09 | implement and test fn ptr ABI compatibility rules | Ralf Jung | -2/+7 |
| 2023-09-09 | give extra context to ABI mismatch errors | Ralf Jung | -23/+26 |
| 2023-09-09 | interpret: change ABI-compat test to be type-based, so the test is consistent... | Ralf Jung | -50/+125 |
| 2023-09-08 | Partially outline code inside the panic! macro | John Kåre Alsaker | -4/+4 |
| 2023-09-08 | Auto merge of #115372 - RalfJung:abi-assert-eq, r=davidtwco | bors | -66/+12 |
| 2023-09-08 | turns out Layout has some more things to worry about -- move ABI comparison i... | Ralf Jung | -6/+2 |
| 2023-09-08 | accept some differences for rustc_abi(assert_eq), so that we can test more th... | Ralf Jung | -60/+10 |
| 2023-09-08 | Auto merge of #115608 - RalfJung:fn-arg-validity, r=oli-obk | bors | -0/+7 |
| 2023-09-06 | miri: catch function calls where the argument is caller-invalid / the return ... | Ralf Jung | -0/+7 |
| 2023-09-06 | still accept references to u8 slices and str in packed fields | Ralf Jung | -2/+8 |
| 2023-09-05 | fix detecting references to packed unsized fields | Ralf Jung | -1/+3 |
| 2023-09-05 | Refactor how MIR represents composite debuginfo. | Camille GILLOT | -32/+26 |
| 2023-09-04 | interpret: make MemPlace, Place, Operand types private to the interpreter | Ralf Jung | -225/+306 |
| 2023-08-31 | miri ABI check: fix handling of 1-ZST; don't accept sign differences | Ralf Jung | -24/+23 |
| 2023-08-30 | miri function ABI check: specifically look for repr(transparent) | Ralf Jung | -71/+102 |
| 2023-08-30 | interpret: make sure we accept transparent newtypes as ABI-compatible | Ralf Jung | -16/+36 |
| 2023-08-30 | storage_live: avoid computing the layout unless necessary | Ralf Jung | -14/+65 |
| 2023-08-30 | unify passing of sized and unsized function arguments :-) | Ralf Jung | -31/+35 |
| 2023-08-30 | a bit of meta-related cleanup on Projectable | Ralf Jung | -36/+32 |
| 2023-08-30 | move marking-locals-live out of push_stack_frame, so it happens with argument... | Ralf Jung | -86/+150 |
| 2023-08-30 | interpret: fix projecting into an unsized field of a local | Ralf Jung | -97/+100 |
| 2023-08-30 | Rollup merge of #115272 - RalfJung:miri-error-print, r=saethlin | Matthias Krüger | -5/+28 |
| 2023-08-29 | const_eval and codegen: audit uses of is_zst | Ralf Jung | -12/+17 |
| 2023-08-28 | Auto merge of #115182 - RalfJung:abi-compat-sign, r=b-naber | bors | -15/+29 |
| 2023-08-28 | Rollup merge of #115164 - RalfJung:no-in-place-packed, r=b-naber | Matthias Krüger | -3/+29 |
| 2023-08-27 | miri/diagnostics: don't forget to print_backtrace when ICEing on unexpected e... | Ralf Jung | -5/+28 |
| 2023-08-25 | Auto merge of #115184 - saethlin:local-allocated-spans, r=RalfJung | bors | -5/+18 |
| 2023-08-25 | Add a doc comment for the new hook | Ben Kimock | -0/+3 |
| 2023-08-25 | Record allocation spans inside force_allocation | Ben Kimock | -5/+15 |
| 2023-08-25 | Auto merge of #115138 - cjgillot:dse-move-packed, r=compiler-errors | bors | -2/+2 |
| 2023-08-24 | miri ABI compatibility check: accept u32 and i32 | Ralf Jung | -15/+29 |
| 2023-08-24 | Only check packed ADT. | Camille GILLOT | -2/+2 |
| 2023-08-24 | when terminating during unwinding, show the reason why | Ralf Jung | -13/+30 |
| 2023-08-24 | MIR validation: reject in-place argument/return for packed fields | Ralf Jung | -5/+31 |
| 2023-08-20 | avoid return in tail position | Ralf Jung | -1/+1 |
| 2023-08-20 | interpret: have assert_* intrinsics call the panic machinery instead of a dir... | Ralf Jung | -21/+16 |
| 2023-08-20 | interpret/miri: call panic_cannot_unwind lang item instead of hard-coding the... | Ralf Jung | -3/+14 |
| 2023-08-20 | give some unwind-related terminators a more clear name | Ralf Jung | -13/+13 |
| 2023-08-20 | Auto merge of #113124 - nbdd0121:eh_frame, r=cjgillot | bors | -8/+42 |
| 2023-08-19 | const-eval: ensure we never const-execute a function marked rustc_do_not_cons... | Ralf Jung | -32/+21 |
| 2023-08-18 | Add missing instantiation of generator ty in validator | Gary Guo | -1/+1 |
| 2023-08-18 | Add MIR validation for unwind out from nounwind functions | Gary Guo | -7/+41 |
| 2023-08-17 | Revert "Implement references VarDebugInfo." | Camille GILLOT | -6/+0 |
| 2023-08-16 | Make TerminatorEdge plural. | Camille GILLOT | -2/+2 |
| 2023-08-16 | Allow apply_terminator_effect to customize edges. | Camille GILLOT | -5/+8 |
| 2023-08-14 | Remove constness from `ImplSource::Param` | Deadbeef | -3/+2 |
| 2023-08-08 | Auto merge of #114637 - matthiaskrgr:rollup-544y8p5, r=matthiaskrgr | bors | -11/+2 |
| 2023-08-08 | Rollup merge of #114615 - RalfJung:interpret-invalid-where, r=lcnr | Matthias Krüger | -11/+2 |
| 2023-08-08 | Auto merge of #114545 - fee1-dead-contrib:lower-impl-effect, r=oli-obk | bors | -12/+8 |