summary refs log tree commit diff
path: root/tests/codegen-units/partitioning/vtable-through-const.rs
AgeCommit message (Collapse)AuthorLines
2024-05-31Run rustfmt on `tests/codegen-units/`.Nicholas Nethercote-7/+15
2024-05-27Omit non-needs_drop drop_in_place in vtablesMark 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-11Fix some minor issues from the ui-test auto-portingBen Kimock-4/+1
2024-02-22[AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives许杰友 Jieyou Xu (Joe)-4/+4
2023-01-11Move /src/test to /testsAlbert Larsan-0/+94