rust/compiler/rustc_codegen_ssa/src/mir
Stuart Cook 599b08ada8
Rollup merge of #140874 - mejrs:rads, r=WaffleLapkin
make `rustc_attr_parsing` less dominant in the rustc crate graph

It has/had a glob re-export of `rustc_attr_data_structures`, which is a crate much lower in the graph, and a lot of crates were using it *just* (or *mostly*) for that re-export, while they can rely on `rustc_attr_data_structures` directly.

Previous graph:
![graph_1](https://github.com/user-attachments/assets/f4a5f13c-4222-4903-b56d-28c83511fcbd)

Graph with this PR:
![graph_2](https://github.com/user-attachments/assets/1e053d9c-75cc-402b-84df-86229c98277a)

The first commit keeps the re-export, and just changes the dependency if possible. The second commit is the "breaking change" which removes the re-export, and "explicitly" adds the `rustc_attr_data_structures` dependency where needed. It also switches over some src/tools/*.

The second commit is actually a lot more involved than I expected. Please let me know if it's a better idea to back it out and just keep the first commit.
2025-05-19 13:24:54 +10:00
..
analyze.rs Don't alloca just to look at a discriminant 2025-03-12 00:56:43 -07:00
block.rs AsyncDrop implementation using shim codegen of async_drop_in_place::{closure}, scoped async drop added. 2025-04-28 16:23:13 +07:00
constant.rs Stop relying on rustc_type_ir in non-type-system crates 2025-03-15 06:42:48 +00:00
coverageinfo.rs Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
debuginfo.rs When LLVM's location discriminator value limit is exceeded, emit locations with dummy spans instead of dropping them entirely 2025-01-19 07:17:33 -08:00
intrinsic.rs remove 'unordered' atomic intrinsics 2025-05-09 17:39:52 +02:00
locals.rs Reformat use declarations. 2024-07-29 08:26:52 +10:00
mod.rs Make codegen_naked_asm public 2025-04-14 09:38:04 +00:00
naked_asm.rs Remove rustc_attr_data_structures re-export from rustc_attr_parsing 2025-05-18 18:14:43 +02:00
operand.rs Address PR feedback 2025-04-07 18:12:06 -07:00
place.rs Don't alloca just to look at a discriminant 2025-03-12 00:56:43 -07:00
rvalue.rs Auto merge of #138634 - saethlin:repeated-uninit, r=scottmcm,oli-obk 2025-03-25 02:09:15 +00:00
statement.rs reduce false positives of tail-expr-drop-order from consumed values 2024-11-20 20:53:11 +08:00