Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 72df778

Browse files
authoredNov 3, 2024
Rollup merge of #132574 - workingjubilee:abi-in-compiler, r=compiler-errors
compiler: Directly use rustc_abi almost everywhere Use rustc_abi instead of rustc_target where applicable. This is mostly described by the following substitutions: ```rust match path_substring { rustc_target::spec::abi::Abi => rustc_abi::ExternAbi, rustc_target::abi::call => rustc_target::callconv, rustc_target::abi => rustc_abi, } ``` A number of spot-fixes make that not quite the whole story. The main exception is in 33edc68 where I get a lot more persnickety about how things are imported, especially in `rustc_middle::ty::layout`, not just from where. This includes putting an end to a reexport of `rustc_middle::ty::ReprOptions`, for the same reason that the rest of this change is happening: reexports mostly confound things. This notably omits rustc_passes and the ast crates, as I'm still examining a question I have about how they do stability checking of `extern "Abi"` strings and if I can simplify their logic. The rustc_abi and rustc_target crates also go untouched because they will be entangled in that cleanup. r? compiler-errors
2 parents 1505997 + fa20473 commit 72df778

File tree

141 files changed

+363
-385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+363
-385
lines changed
 

‎compiler/rustc_codegen_ssa/src/debuginfo/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
use rustc_abi::{Integer, Primitive, Size, TagEncoding, Variants};
12
use rustc_middle::bug;
23
use rustc_middle::ty::layout::{IntegerExt, PrimitiveExt, TyAndLayout};
34
use rustc_middle::ty::{self, Ty, TyCtxt};
4-
use rustc_target::abi::{Integer, Primitive, Size, TagEncoding, Variants};
55

66
// FIXME(eddyb) find a place for this (or a way to replace it).
77
pub mod type_names;

‎compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
use std::fmt::Write;
1515

16+
use rustc_abi::Integer;
1617
use rustc_data_structures::fx::FxHashSet;
1718
use rustc_data_structures::stable_hasher::{Hash64, HashStable, StableHasher};
1819
use rustc_hir::def_id::DefId;
@@ -23,7 +24,6 @@ use rustc_middle::ty::layout::{IntegerExt, TyAndLayout};
2324
use rustc_middle::ty::{
2425
self, ExistentialProjection, GenericArgKind, GenericArgsRef, ParamEnv, Ty, TyCtxt,
2526
};
26-
use rustc_target::abi::Integer;
2727
use smallvec::SmallVec;
2828

2929
use crate::debuginfo::wants_c_like_enum_debuginfo;
@@ -364,7 +364,7 @@ fn push_debuginfo_type_name<'tcx>(
364364
} else {
365365
output.push_str(sig.safety.prefix_str());
366366

367-
if sig.abi != rustc_target::spec::abi::Abi::Rust {
367+
if sig.abi != rustc_abi::ExternAbi::Rust {
368368
output.push_str("extern \"");
369369
output.push_str(sig.abi.name());
370370
output.push_str("\" ");

‎compiler/rustc_codegen_ssa/src/meth.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use rustc_middle::bug;
22
use rustc_middle::ty::{self, GenericArgKind, Ty};
33
use rustc_session::config::Lto;
44
use rustc_symbol_mangling::typeid_for_trait_ref;
5-
use rustc_target::abi::call::FnAbi;
5+
use rustc_target::callconv::FnAbi;
66
use tracing::{debug, instrument};
77

88
use crate::traits::*;
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.