| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-11-28 | Share inline(never) generics across crates | Mark Rousskov | -0/+11 | |
| This reduces code sizes and better respects programmer intent when marking inline(never). Previously such a marking was essentially ignored for generic functions, as we'd still inline them in remote crates. | ||||
| 2024-08-10 | Fix and enable disabled codegen-units tests | Ben Kimock | -27/+15 | |
| 2024-05-31 | Run rustfmt on `tests/codegen-units/`. | Nicholas Nethercote | -49/+39 | |
| 2024-05-27 | Omit non-needs_drop drop_in_place in vtables | Mark Rousskov | -18/+25 | |
| This replaces the drop_in_place reference with null in vtables. On librustc_driver.so, this drops about ~17k dynamic relocations from the output, since many vtables can now be placed in read-only memory, rather than having a relocated pointer included. This makes a tradeoff by adding a null check at vtable call sites. That's hard to avoid without changing the vtable format (e.g., to use a pc-relative relocation instead of an absolute address, and avoid the dynamic relocation that way). But it seems likely that the check is cheap at runtime. | ||||
| 2024-05-11 | Fix some minor issues from the ui-test auto-porting | Ben Kimock | -38/+13 | |
| 2024-02-22 | [AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives | 许杰友 Jieyou Xu (Joe) | -57/+57 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+792 | |
