| Age | Commit message (Expand) | Author | Lines |
| 2023-10-22 | use visibility to check unused imports and delete some stmts | bohan | -1/+0 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -112/+112 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -14/+14 |
| 2023-10-17 | [RFC 3127 - Trim Paths]: Condition remapped filepath on remap scopes | Urgau | -36/+72 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -2/+7 |
| 2023-10-08 | Make FnDef 1-ZST in LLVM debuginfo. | Camille GILLOT | -2/+10 |
| 2023-09-26 | subst -> instantiate | lcnr | -2/+2 |
| 2023-09-14 | treat host effect params as erased generics in codegen | Deadbeef | -0/+1 |
| 2023-09-08 | Auto merge of #115417 - dpaoliello:fixdi, r=wesleywiser | bors | -17/+23 |
| 2023-09-07 | Use `Freeze` for `SourceFile.lines` | John Kåre Alsaker | -1/+1 |
| 2023-09-03 | Use relative positions inside a SourceFile. | Camille GILLOT | -3/+3 |
| 2023-09-01 | Deduplicate inlined function debug info, but create a new lexical scope to ch... | Daniel Paoliello | -17/+23 |
| 2023-08-29 | const_eval and codegen: audit uses of is_zst | Ralf Jung | -2/+2 |
| 2023-08-25 | Revert "Use the same DISubprogram for each instance of the same inlined funct... | Wesley Wiser | -65/+46 |
| 2023-08-22 | Auto merge of #114643 - dpaoliello:inlinedebuginfo, r=wesleywiser | bors | -46/+65 |
| 2023-08-22 | Fix spelling mistake | Wesley Wiser | -1/+1 |
| 2023-08-11 | Use the same DISubprogram for each instance of the same inlined function with... | Daniel Paoliello | -46/+65 |
| 2023-08-09 | rustc: Move `crate_types` from `Session` to `GlobalCtxt` | Vadim Petrochenkov | -1/+1 |
| 2023-08-01 | Use upvar_tys in more places, make it a list | Michael Goulet | -11/+4 |
| 2023-08-01 | Auto merge of #105545 - erikdesjardins:ptrclean, r=bjorn3 | bors | -2/+1 |
| 2023-07-30 | inline format!() args up to and including rustc_codegen_llvm | Matthias Krüger | -12/+9 |
| 2023-07-29 | cg_llvm: remove pointee types and pointercast/bitcast-of-ptr | Erik Desjardins | -2/+1 |
| 2023-07-21 | Support `.comment` section like GCC/Clang (`!llvm.ident`) | Miguel Ojeda | -15/+0 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -31/+31 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -8/+15 |
| 2023-07-06 | Auto merge of #113377 - BoxyUwU:move_ty_ctors_to_ty, r=compiler-errors | bors | -7/+10 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -7/+10 |
| 2023-07-05 | Revert "use new c literals instead of cstr! macro" | León Orell Valerian Liehr | -7/+12 |
| 2023-06-29 | Set capacity of the string passed to `push_item_name`. | Nicholas Nethercote | -2/+2 |
| 2023-06-29 | Replace a `lookup_debug_loc` call. | Nicholas Nethercote | -3/+3 |
| 2023-06-29 | Avoid unnecessary line lookup. | Nicholas Nethercote | -1/+1 |
| 2023-06-19 | Store generator field names in GeneratorLayout. | Camille GILLOT | -9/+5 |
| 2023-06-19 | Make closure_saved_names_of_captured_variables a query. | Camille GILLOT | -4/+5 |
| 2023-06-16 | Rollup merge of #112474 - ldm0:ldm_enum_debuginfo_128_support, r=compiler-errors | Michael Goulet | -8/+2 |
| 2023-06-14 | Introduce a minimum CGU size in non-incremental builds. | Nicholas Nethercote | -1/+1 |
| 2023-06-10 | Support 128-bit enum variant in debuginfo codegen | DonoughLiu | -8/+2 |
| 2023-05-31 | use new c literals instead of cstr! macro | klensy | -12/+7 |
| 2023-05-29 | EarlyBinder::new -> EarlyBinder::bind | lcnr | -1/+1 |
| 2023-05-28 | Replace EarlyBinder(x) with EarlyBinder::new(x) | Kyle Matsuda | -1/+1 |
| 2023-05-19 | Auto merge of #111641 - michaelwoerister:debugger-visualizer-fixes, r=cjgillot | bors | -2/+1 |
| 2023-05-18 | Auto merge of #111345 - jyn514:cfg-release-caching, r=cjgillot,est31 | bors | -2/+1 |
| 2023-05-17 | Only depend on CFG_VERSION in rustc_interface | jyn | -2/+1 |
| 2023-05-16 | Move DebuggerVisualizerFile types from rustc_span to rustc_middle | Michael Woerister | -2/+1 |
| 2023-05-06 | make (try_)subst_and_normalize_erasing_regions take EarlyBinder | Kyle Matsuda | -2/+2 |
| 2023-05-03 | debuginfo: split method declaration and definition | Josh Stone | -34/+51 |
| 2023-04-27 | rename `needs_subst` to `has_param` | Boxy | -1/+1 |
| 2023-04-24 | Split `{Idx, IndexVec, IndexSlice}` into their own modules | Maybe Waffle | -4/+4 |
| 2023-04-19 | Move `GenericArgKind::as_{type,const,region}` to `GenericArg` | Maybe Waffle | -2/+2 |
| 2023-04-19 | Add `GenericArgKind::as_{type,const,region}` | Maybe Waffle | -14/+9 |
| 2023-04-18 | Auto merge of #110083 - saethlin:encode-hashes-as-bytes, r=cjgillot | bors | -1/+2 |