| Age | Commit message (Expand) | Author | Lines |
| 2023-10-21 | coverage: Change query `codegened_and_inlined_items` to a plain function | Zalathar | -3/+34 |
| 2023-10-21 | coverage: Move unused-function helpers closer to where they are used | Zalathar | -43/+39 |
| 2023-10-21 | coverage: Emit mappings for unused functions without generating stubs | Zalathar | -74/+37 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -112/+112 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -18/+18 |
| 2023-10-19 | Auto merge of #115214 - Urgau:rfc-3127-trim-paths, r=compiler-errors | bors | -40/+84 |
| 2023-10-18 | coverage: Explicitly note that counter/expression IDs are function-local | Zalathar | -0/+7 |
| 2023-10-18 | coverage: Store expression data in function coverage info | Zalathar | -78/+42 |
| 2023-10-18 | coverage: Store all of a function's mappings in function coverage info | Zalathar | -69/+39 |
| 2023-10-18 | coverage: Make expression simplification non-destructive | Zalathar | -22/+58 |
| 2023-10-18 | coverage: Collect a function's coverage mappings into a single list | Zalathar | -75/+51 |
| 2023-10-18 | coverage: Rename `Operand` to `CovTerm` | Zalathar | -22/+22 |
| 2023-10-18 | coverage: Store the number of counters/expressions in function coverage info | Zalathar | -15/+22 |
| 2023-10-18 | coverage: Attach an optional `FunctionCoverageInfo` to `mir::Body` | Zalathar | -49/+48 |
| 2023-10-17 | [RFC 3127 - Trim Paths]: Condition remapped filepath on remap scopes | Urgau | -40/+84 |
| 2023-10-16 | docs: add Rust logo to more compiler crates | Michael Howell | -0/+3 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -28/+59 |
| 2023-10-13 | Auto merge of #115964 - bjorn3:cgu_reuse_tracker_global_state, r=cjgillot | bors | -2/+0 |
| 2023-10-12 | Auto merge of #116510 - scottmcm:no-1-simd-v2, r=compiler-errors | bors | -1/+6 |
| 2023-10-09 | Remove an LTO dependent cgu_reuse_tracker.set_actual_reuse call | bjorn3 | -2/+0 |
| 2023-10-08 | Make FnDef 1-ZST in LLVM debuginfo. | Camille GILLOT | -2/+10 |
| 2023-10-07 | Copy 1-element arrays as scalars, not vectors | Scott McMurray | -1/+6 |
| 2023-10-05 | Rollup merge of #116223 - catandcoder:master, r=cjgillot | Jubilee | -1/+1 |
| 2023-10-04 | Fix misuses of a vs an | cui fliter | -1/+1 |
| 2023-10-03 | coverage: Let each coverage statement hold a vector of code regions | Zalathar | -61/+65 |
| 2023-10-03 | coverage: Mappings for unused functions can all be zero | Zalathar | -11/+3 |
| 2023-10-02 | Limit to LLVM 17.0.2 to work around WinEH codegen bug | Nikita Popov | -4/+10 |
| 2023-10-02 | Reapply: Mark drop calls in landing pads cold instead of noinline | Erik Desjardins | -3/+5 |
| 2023-09-30 | Auto merge of #115933 - oli-obk:simd_shuffle_const, r=workingjubilee | bors | -2/+55 |
| 2023-09-29 | Auto merge of #115986 - onur-ozkan:fix-cross-compilation-lto-problem, r=wesle... | bors | -3/+18 |
| 2023-09-26 | Auto merge of #116144 - lcnr:subst-less, r=oli-obk | bors | -2/+2 |
| 2023-09-26 | subst -> instantiate | lcnr | -2/+2 |
| 2023-09-25 | Pass name of object file to LLVM so it can correctly emit S_OBJNAME | Florian Schmiderer | -5/+17 |
| 2023-09-24 | Add OwnedTargetMachine to manage llvm:TargetMachine. Uses pointers | Florian Schmiderer | -40/+142 |
| 2023-09-23 | allow LTO on `proc-macro` crates with `-Zdylib-lto` | onur-ozkan | -3/+18 |
| 2023-09-22 | Have a single struct for queries and hook | Oli Scherer | -3/+2 |
| 2023-09-22 | Add a way to decouple the implementation and the declaration of a TyCtxt method. | Oli Scherer | -1/+2 |
| 2023-09-21 | coverage: Don't bother renumbering expressions on the Rust side | Zalathar | -156/+64 |
| 2023-09-21 | coverage: Explicitly simplify coverage expressions in codegen | Zalathar | -1/+57 |
| 2023-09-21 | coverage: Make the zero counter a constant | Zalathar | -15/+12 |
| 2023-09-18 | Prototype using const generic for simd_shuffle IDX array | Oli Scherer | -2/+55 |
| 2023-09-15 | cannot have Direct for unsized types | Ralf Jung | -0/+5 |
| 2023-09-15 | clarify PassMode::Indirect as well | Ralf Jung | -15/+20 |
| 2023-09-15 | explain PassMode::Cast | Ralf Jung | -10/+12 |
| 2023-09-14 | Auto merge of #115817 - fee1-dead-contrib:fix-codegen, r=oli-obk | bors | -1/+3 |
| 2023-09-14 | treat host effect params as erased generics in codegen | Deadbeef | -1/+3 |
| 2023-09-14 | Auto merge of #114656 - bossmc:rework-no-coverage-attr, r=oli-obk | bors | -2/+2 |
| 2023-09-13 | Rollup merge of #115736 - Zoxc:time-cleanup, r=wesleywiser | Matthias Krüger | -1/+1 |
| 2023-09-11 | coverage: Simplify grouping of mappings by file | Zalathar | -25/+26 |
| 2023-09-11 | coverage: Push down the call to `get_expressions_and_counter_regions` | Zalathar | -7/+7 |