| Age | Commit message (Expand) | Author | Lines |
| 2023-12-17 | Tolerate overaligned MIR constants for codegen. | Camille GILLOT | -1/+1 |
| 2023-12-12 | reject projecting to fields whose offset we cannot compute | Ralf Jung | -12/+7 |
| 2023-12-12 | codegen: panic when trying to compute size/align of extern type | Ralf Jung | -18/+14 |
| 2023-12-10 | Auto merge of #118791 - saethlin:use-immediate-type, r=nikic | bors | -1/+1 |
| 2023-12-10 | remove redundant imports | surechen | -1/+0 |
| 2023-12-09 | Use immediate_backend_type when reading from a const alloc | Ben Kimock | -1/+1 |
| 2023-12-08 | Implement `async gen` blocks | Michael Goulet | -1/+5 |
| 2023-12-07 | Auto merge of #118324 - RalfJung:ctfe-read-only-pointers, r=saethlin | bors | -1/+1 |
| 2023-12-07 | ctfe interpreter: extend provenance so that it can track whether a pointer is... | Ralf Jung | -1/+1 |
| 2023-12-04 | Rollup merge of #118551 - RalfJung:extern-types-bugs, r=compiler-errors | Takayuki Maeda | -0/+1 |
| 2023-12-03 | codegen, miri: fix computing the offset of an unsized field in a packed struct | Ralf Jung | -10/+12 |
| 2023-12-03 | more targeted errors when extern types end up in places they should not | Ralf Jung | -0/+1 |
| 2023-11-22 | Rollup merge of #118147 - Nilstrieb:no-redundant-casts, r=WaffleLapkin | Michael Goulet | -7/+5 |
| 2023-11-21 | Fix some unnecessary casts | Nilstrieb | -7/+5 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -31/+28 |
| 2023-11-14 | Fix def-use check for call terminators | Tomasz Miąsko | -6/+13 |
| 2023-11-08 | rename `BorrowKind::Shallow` to `Fake` | lcnr | -1/+1 |
| 2023-11-02 | Minimize `pub` usage in `source_map.rs`. | Nicholas Nethercote | -3/+2 |
| 2023-10-31 | Support enum variants in offset_of! | George Bateman | -1/+1 |
| 2023-10-28 | share the track_caller handling within a mir::Body | Ralf Jung | -32/+4 |
| 2023-10-28 | interpret: call caller_location logic the same way codegen does, and share so... | Ralf Jung | -8/+1 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -1/+1 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -2/+2 |
| 2023-10-17 | [RFC 3127 - Trim Paths]: Condition remapped filepath on remap scopes | Urgau | -1/+2 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -25/+70 |
| 2023-10-08 | Auto merge of #116454 - tmiasko:small-dominators, r=cjgillot | bors | -16/+1 |
| 2023-10-06 | Rollup merge of #116277 - RalfJung:post-mono, r=oli-obk | Jubilee | -11/+6 |
| 2023-10-06 | add some comments explaining how the required_consts stuff fits together | Ralf Jung | -0/+6 |
| 2023-10-05 | Move DefLocation from rustc_codegen_ssa to rustc_middle | Tomasz Miąsko | -16/+1 |
| 2023-10-03 | Auto merge of #115025 - ouz-a:ouz_testing, r=lcnr | bors | -0/+1 |
| 2023-10-02 | Add docs, remove code, change subtyper code | ouz-a | -1/+1 |
| 2023-10-02 | subtyping_projections | ouz-a | -0/+1 |
| 2023-10-02 | Reapply: Mark drop calls in landing pads cold instead of noinline | Erik Desjardins | -7/+3 |
| 2023-09-30 | dont call mir.post_mono_checks in codegen | Ralf Jung | -11/+0 |
| 2023-09-28 | Strip `OpaqueCast` during `RevealAll`. | Oli Scherer | -1/+3 |
| 2023-09-26 | Auto merge of #116144 - lcnr:subst-less, r=oli-obk | bors | -1/+1 |
| 2023-09-26 | Auto merge of #116102 - cjgillot:indirect-scalar, r=oli-obk | bors | -12/+11 |
| 2023-09-26 | subst -> instantiate | lcnr | -1/+1 |
| 2023-09-23 | Use correct offset when codegening mir::Const::Indirect. | Camille GILLOT | -12/+11 |
| 2023-09-23 | Tolerate non-ptr indirect scalars in codegen. | Camille GILLOT | -1/+1 |
| 2023-09-23 | Reuse calculate_debuginfo_offset for fragments. | Camille GILLOT | -33/+10 |
| 2023-09-21 | Rollup merge of #115972 - RalfJung:const-consistency, r=oli-obk | Guillaume Gomez | -12/+12 |
| 2023-09-21 | rename mir::Constant -> mir::ConstOperand, mir::ConstKind -> mir::Const | Ralf Jung | -12/+12 |
| 2023-09-19 | adjust constValue::Slice to work for arbitrary slice types | Ralf Jung | -6/+3 |
| 2023-09-19 | move ConstValue into mir | Ralf Jung | -5/+5 |
| 2023-09-18 | Auto merge of #115748 - RalfJung:post-mono, r=oli-obk | bors | -67/+21 |
| 2023-09-15 | clarify PassMode::Indirect as well | Ralf Jung | -1/+1 |
| 2023-09-15 | explain PassMode::Cast | Ralf Jung | -8/+8 |
| 2023-09-14 | don't point at const usage site for resolution-time errors | Ralf Jung | -16/+8 |
| 2023-09-14 | move required_consts check to general post-mono-check function | Ralf Jung | -65/+27 |