| Age | Commit message (Expand) | Author | Lines |
| 2022-05-27 | Rename `ProcMacroDerive` as `DeriveProcMacro`. | Nicholas Nethercote | -2/+2 |
| 2022-05-27 | Auto merge of #96298 - petrochenkov:fromgen, r=estebank | bors | -2/+3 |
| 2022-05-27 | libcore: Add `iter::from_generator` which is like `iter::from_fn`, but for co... | Vadim Petrochenkov | -2/+3 |
| 2022-05-26 | Auto merge of #97386 - nnethercote:optimize-pos-adjustments, r=bjorn3 | bors | -22/+4 |
| 2022-05-26 | Avoid adjusting file positions twice. | Nicholas Nethercote | -22/+4 |
| 2022-05-25 | Rollup merge of #97328 - petrochenkov:nativice, r=michaelwoerister | Dylan DPC | -4/+5 |
| 2022-05-25 | Rollup merge of #97384 - nnethercote:fix-metadata-stats, r=bjorn3 | Dylan DPC | -23/+69 |
| 2022-05-25 | Fix metadata stats. | Nicholas Nethercote | -23/+69 |
| 2022-05-24 | Make Lazy not care about lifetimes until decode | Michael Goulet | -54/+95 |
| 2022-05-23 | Fix iterator implementation, add some inlines | Michael Goulet | -3/+20 |
| 2022-05-23 | refine comments, disambiguate len for array and tables | Michael Goulet | -36/+41 |
| 2022-05-23 | split out the various responsibilities of Lazy | Michael Goulet | -420/+370 |
| 2022-05-23 | rustc: Fix ICE in native library error reporting | Vadim Petrochenkov | -4/+5 |
| 2022-05-21 | Auto merge of #97239 - jhpratt:remove-crate-vis, r=joshtriplett | bors | -66/+65 |
| 2022-05-20 | Remove `crate` visibility usage in compiler | Jacob Pratt | -66/+65 |
| 2022-05-20 | Auto merge of #95418 - cjgillot:more-disk, r=davidtwco | bors | -13/+0 |
| 2022-05-19 | Auto merge of #97024 - lcnr:simplify_type-sus, r=<try> | bors | -1/+1 |
| 2022-05-18 | Properly apply path prefix remapping paths emitted into debuginfo. | Michael Woerister | -0/+7 |
| 2022-05-18 | Move logic for making potentially remapped paths absolute into helper method. | Michael Woerister | -64/+29 |
| 2022-05-18 | fix `simplify_type` | lcnr | -1/+1 |
| 2022-05-17 | Auto merge of #97012 - oli-obk:🦀_intrinsics, r=davidtwco | bors | -0/+15 |
| 2022-05-17 | Auto merge of #96825 - kckeiks:remove-item-like-visitor-trait, r=cjgillot | bors | -18/+7 |
| 2022-05-16 | Add a query for checking whether a function is an intrinsic. | Oli Scherer | -0/+15 |
| 2022-05-15 | rustc: Stricter checking for #[link] attributes | Vadim Petrochenkov | -240/+276 |
| 2022-05-13 | rename visit item-like methods | Miguel Guarniz | -1/+1 |
| 2022-05-13 | remove ItemLikeVisitor and DeepVisitor | Miguel Guarniz | -1/+1 |
| 2022-05-13 | remove TraitVisitor | Miguel Guarniz | -17/+6 |
| 2022-05-13 | Cache more queries on disk. | Camille GILLOT | -13/+0 |
| 2022-05-10 | only_local: always check for misuse | lcnr | -7/+9 |
| 2022-05-10 | don't encode only locally used attrs | lcnr | -3/+7 |
| 2022-05-09 | review | lcnr | -1/+1 |
| 2022-05-09 | only compute `codegen_fn_attrs` where needed | lcnr | -1/+3 |
| 2022-05-09 | store `codegen_fn_attrs` in crate metadata | lcnr | -0/+4 |
| 2022-05-06 | use def_span and def_kind queries instead of calling tcx.hir() methods | Miguel Guarniz | -3/+3 |
| 2022-05-03 | Add support for a new attribute `#[debugger_visualizer]` to support embedding... | ridwanabdillahi | -20/+39 |
| 2022-04-30 | Box HIR Generics and Impl. | Camille GILLOT | -2/+2 |
| 2022-04-27 | Add --json unused-externs-silent with original behaviour | Jeremy Fitzhardinge | -3/+9 |
| 2022-04-27 | Plumb through rustc_lint_defs::Level as enum rather than string. | Jeremy Fitzhardinge | -4/+1 |
| 2022-04-25 | Auto merge of #95604 - nbdd0121:used2, r=petrochenkov | bors | -9/+9 |
| 2022-04-23 | Add support for `nounused` --extern flag | Jeremy Fitzhardinge | -0/+4 |
| 2022-04-21 | [WIP] rustdoc: Resolve some more doc links early | Vadim Petrochenkov | -0/+8 |
| 2022-04-19 | rustc_metadata: Store a flag telling whether an item may have doc links in it... | Vadim Petrochenkov | -3/+34 |
| 2022-04-19 | Rollup merge of #96142 - cjgillot:no-crate-def-index, r=petrochenkov | Dylan DPC | -3/+3 |
| 2022-04-19 | Rollup merge of #96086 - jsgf:remove-extern-location, r=davidtwco | Dylan DPC | -18/+2 |
| 2022-04-19 | Rollup merge of #94493 - oribenshir:feature/ISSUE-78543_async_fn_in_foreign_c... | Dylan DPC | -3/+26 |
| 2022-04-18 | Add `SymbolExportInfo` | Gary Guo | -9/+9 |
| 2022-04-17 | Stop using CRATE_DEF_INDEX. | Camille GILLOT | -3/+3 |
| 2022-04-17 | Auto merge of #95655 - kckeiks:create-hir-crate-items-query, r=cjgillot | bors | -70/+43 |
| 2022-04-16 | Auto merge of #95899 - petrochenkov:modchild2, r=cjgillot | bors | -71/+71 |
| 2022-04-16 | Provide a better diagnostic on failure to meet send bound on futures in a for... | oribenshir | -3/+26 |