| Age | Commit message (Expand) | Author | Lines |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -1/+3 |
| 2023-10-13 | add some comments and some cleanup around Miri intptrcast | Ralf Jung | -0/+10 |
| 2023-10-09 | float-to-float casts also have non-deterministic NaN results | Ralf Jung | -7/+29 |
| 2023-10-09 | ensure unary minus propagates NaN payloads exactly | Ralf Jung | -0/+1 |
| 2023-10-08 | miri: make NaN generation non-deterministic | Ralf Jung | -5/+24 |
| 2023-10-06 | Rollup merge of #116277 - RalfJung:post-mono, r=oli-obk | Jubilee | -13/+20 |
| 2023-10-03 | Auto merge of #116376 - matthiaskrgr:rollup-b3d14gq, r=matthiaskrgr | bors | -20/+30 |
| 2023-10-03 | print normalized ty | ouz-a | -20/+30 |
| 2023-10-02 | change is_subtype to relate_types | ouz-a | -2/+2 |
| 2023-10-02 | Add docs, remove code, change subtyper code | ouz-a | -4/+2 |
| 2023-10-02 | subtyping_projections | ouz-a | -0/+4 |
| 2023-09-30 | dont call mir.post_mono_checks in codegen | Ralf Jung | -13/+20 |
| 2023-09-28 | Skip reinterning if nothing changed | Oli Scherer | -1/+3 |
| 2023-09-28 | Strip `OpaqueCast` during `RevealAll`. | Oli Scherer | -1/+1 |
| 2023-09-26 | const-eval: make misalignment a hard error | Ralf Jung | -44/+21 |
| 2023-09-26 | subst -> instantiate | lcnr | -3/+4 |
| 2023-09-23 | Remove GeneratorWitness and rename GeneratorWitnessMIR. | Camille GILLOT | -4/+1 |
| 2023-09-21 | Auto merge of #116010 - RalfJung:more-typed-immediates, r=oli-obk | bors | -175/+181 |
| 2023-09-21 | Rollup merge of #115972 - RalfJung:const-consistency, r=oli-obk | Guillaume Gomez | -2/+2 |
| 2023-09-21 | rename mir::Constant -> mir::ConstOperand, mir::ConstKind -> mir::Const | Ralf Jung | -2/+2 |
| 2023-09-21 | try to avoid some layout_of calls | Ralf Jung | -35/+34 |
| 2023-09-20 | stronger consistency check in ImmTy::from_immediate | Ralf Jung | -3/+11 |
| 2023-09-20 | interpret: less debug-printing of types | Ralf Jung | -39/+29 |
| 2023-09-20 | interpret: more consistently use ImmTy in operators and casts | Ralf Jung | -113/+122 |
| 2023-09-19 | adjust constValue::Slice to work for arbitrary slice types | Ralf Jung | -18/+22 |
| 2023-09-19 | move ConstValue into mir | Ralf Jung | -17/+13 |
| 2023-09-18 | Auto merge of #115748 - RalfJung:post-mono, r=oli-obk | bors | -79/+32 |
| 2023-09-15 | make interpreter type Debug impl independent of Ty debug impl | Ralf Jung | -4/+17 |
| 2023-09-14 | don't point at const usage site for resolution-time errors | Ralf Jung | -12/+2 |
| 2023-09-14 | move required_consts check to general post-mono-check function | Ralf Jung | -72/+35 |
| 2023-09-14 | make it more clear which functions create fresh AllocId | Ralf Jung | -10/+7 |
| 2023-09-14 | cleanup op_to_const a bit; rename ConstValue::ByRef → Indirect | Ralf Jung | -1/+1 |
| 2023-09-14 | use AllocId instead of Allocation in ConstValue::ByRef | Ralf Jung | -8/+11 |
| 2023-09-13 | Auto merge of #115820 - matthiaskrgr:rollup-kyglvpu, r=matthiaskrgr | bors | -32/+7 |
| 2023-09-12 | Introduce Machine::POST_MONO_CHECKS. | Camille GILLOT | -4/+9 |
| 2023-09-12 | add helper method for finding the one non-1-ZST field | Ralf Jung | -32/+7 |
| 2023-09-12 | Auto merge of #115705 - cjgillot:const-prop-aggregate, r=oli-obk | bors | -5/+6 |
| 2023-09-11 | Use write_immediate. | Camille GILLOT | -2/+2 |
| 2023-09-11 | Remove cur_span hook. | Camille GILLOT | -12/+3 |
| 2023-09-11 | Inline callback. | Camille GILLOT | -0/+1 |
| 2023-09-11 | Return ImmTy in discriminant_for_variant. | Camille GILLOT | -5/+6 |
| 2023-09-11 | Support non-scalar constants. | Camille GILLOT | -3/+11 |
| 2023-09-09 | handle/hack for arbitrary-self dyn receivers | Ralf Jung | -32/+44 |
| 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 | -14/+8 |
| 2023-09-09 | interpret: change ABI-compat test to be type-based, so the test is consistent... | Ralf Jung | -50/+125 |
| 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 |