| Age | Commit message (Expand) | Author | Lines |
| 2022-05-13 | Auto merge of #96930 - ayrtonm:mips32-tmp-file, r=petrochenkov | bors | -11/+19 |
| 2022-05-11 | Add `unsigned_offset_from` on pointers | Scott McMurray | -7/+14 |
| 2022-05-10 | Fix e_flags for 32-bit MIPS targets in generated object file | Ayrton | -11/+19 |
| 2022-05-05 | Auto merge of #91779 - ridwanabdillahi:natvis, r=michaelwoerister | bors | -11/+83 |
| 2022-05-04 | Stabilize `bool::then_some` | Josh Triplett | -1/+0 |
| 2022-05-03 | Add support for a new attribute `#[debugger_visualizer]` to support embedding... | ridwanabdillahi | -11/+83 |
| 2022-05-03 | Auto merge of #96601 - tmiasko:ssa-rpo, r=davidtwco | bors | -2/+2 |
| 2022-05-03 | Rollup merge of #96587 - bjorn3:refactor_backend_write, r=michaelwoerister | Yuki Okushi | -30/+15 |
| 2022-05-02 | Auto merge of #96436 - petrochenkov:nowhole2, r=wesleywiser | bors | -44/+8 |
| 2022-05-01 | Use reverse postorder in `non_ssa_locals` | Tomasz Miąsko | -2/+2 |
| 2022-04-30 | Merge new_metadata into codegen_allocator | bjorn3 | -15/+4 |
| 2022-04-30 | Remove config parameter of optimize_fat and avoid interior mutability for module | bjorn3 | -5/+3 |
| 2022-04-30 | Let LtoModuleCodegen::optimize take self by value | bjorn3 | -9/+8 |
| 2022-04-30 | Rename run_lto_pass_manager to optimize_fat and remove thin parameter | bjorn3 | -6/+5 |
| 2022-04-30 | Auto merge of #96500 - SparrowLii:rpo, r=tmiasko | bors | -1/+0 |
| 2022-04-30 | Eliminate duplication of RPO calculation for mir | SparrowLii | -1/+0 |
| 2022-04-29 | Auto merge of #96474 - SparrowLii:langcall, r=lcnr | bors | -29/+14 |
| 2022-04-29 | Rollup merge of #96523 - nbdd0121:windows, r=petrochenkov | Dylan DPC | -0/+23 |
| 2022-04-29 | Auto merge of #96444 - nbdd0121:used2, r=petrochenkov | bors | -2/+77 |
| 2022-04-28 | Add `@feat.00` symbol to symbols.o for COFF | Gary Guo | -0/+23 |
| 2022-04-28 | use tcx.require_lang_item() instead | SparrowLii | -12/+5 |
| 2022-04-28 | Rollup merge of #96432 - SparrowLii:dbg_scope, r=davidtwco | Dylan DPC | -9/+3 |
| 2022-04-27 | Use decorated names for linked_symbols on Windows | Gary Guo | -2/+77 |
| 2022-04-27 | Eliminate duplication of building panic langcall in codegen | SparrowLii | -24/+16 |
| 2022-04-26 | linker: Generate `symbols.o` for dylibs | Vadim Petrochenkov | -2/+2 |
| 2022-04-26 | linker: Stop using whole-archive on dependencies of dylibs | Vadim Petrochenkov | -42/+6 |
| 2022-04-26 | not need `Option` for `dbg_scope` | SparrowLii | -9/+3 |
| 2022-04-25 | Auto merge of #95604 - nbdd0121:used2, r=petrochenkov | bors | -56/+240 |
| 2022-04-25 | Stop exporting rust_eh_personality and friends from cdylib | Gary Guo | -15/+9 |
| 2022-04-24 | Fix MSVC hang issue | Gary Guo | -0/+6 |
| 2022-04-21 | Auto merge of #95612 - davidtwco:split-debuginfo-in-bootstrap, r=Mark-Simulacrum | bors | -1/+1 |
| 2022-04-19 | Rollup merge of #96142 - cjgillot:no-crate-def-index, r=petrochenkov | Dylan DPC | -15/+2 |
| 2022-04-18 | Conditionally export msan symbols only if they are defined | Gary Guo | -2/+10 |
| 2022-04-18 | Refactor exported_symbols and linked_symbols for code reuse | Gary Guo | -44/+26 |
| 2022-04-18 | Synthesis object file for `#[used]` and exported symbols | Gary Guo | -8/+172 |
| 2022-04-18 | Add `SymbolExportInfo` | Gary Guo | -21/+51 |
| 2022-04-18 | ssa: don't pack debuginfo on windows not only msvc | David Wood | -1/+1 |
| 2022-04-17 | Stop using CRATE_DEF_INDEX. | Camille GILLOT | -15/+2 |
| 2022-04-17 | Auto merge of #96010 - eduardosm:Unique-on-top-of-NonNull, r=m-ou-se,tmiasko | bors | -2/+6 |
| 2022-04-15 | Add codegen for global_asm! sym operands | Amanieu d'Antras | -6/+30 |
| 2022-04-14 | Add additional `extract_field` / `project_field` to take into account extra l... | Eduardo Sánchez Muñoz | -2/+6 |
| 2022-04-13 | Auto merge of #95968 - davidtwco:translation-lazy-fallback, r=oli-obk | bors | -1/+1 |
| 2022-04-13 | Auto merge of #95656 - cjgillot:no-id-hashing-mode, r=Aaron1011 | bors | -6/+1 |
| 2022-04-13 | errors: lazily load fallback fluent bundle | David Wood | -1/+1 |
| 2022-04-12 | Remove NodeIdHashingMode. | Camille GILLOT | -6/+1 |
| 2022-04-11 | Add new `MutatatingUseContext`s for deinit and `SetDiscriminant` | Jakob Degen | -0/+2 |
| 2022-04-11 | Add new `Deinit` statement kind | Jakob Degen | -0/+6 |
| 2022-04-08 | check_doc_keyword: don't alloc string for emptiness check | klensy | -4/+4 |
| 2022-04-05 | Auto merge of #94527 - oli-obk:undef_scalars, r=nagisa,erikdesjardin | bors | -18/+23 |
| 2022-04-05 | Mark scalar layout unions so that backends that do not support partially init... | Oli Scherer | -18/+23 |