Skip to content

Commit fabe447

Browse files
committed
Merge from rust-lang/rust
2 parents 63b149c + fba37a0 commit fabe447

File tree

5 files changed

+15
-33
lines changed

5 files changed

+15
-33
lines changed

Cargo.lock

Lines changed: 0 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ smallvec = { version = "1.10.0", features = [
145145
"const_generics",
146146
] }
147147
smol_str = "0.3.2"
148-
snap = "1.1.0"
149148
text-size = "1.1.1"
150149
tracing = "0.1.40"
151150
tracing-tree = "0.3.0"

crates/hir-ty/src/layout.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use base_db::ra_salsa::Cycle;
66
use chalk_ir::{AdtId, FloatTy, IntTy, TyKind, UintTy};
77
use hir_def::{
88
layout::{
9-
Abi, FieldsShape, Float, Integer, LayoutCalculator, LayoutCalculatorError, LayoutData,
9+
BackendRepr, FieldsShape, Float, Integer, LayoutCalculator, LayoutCalculatorError, LayoutData,
1010
Primitive, ReprOptions, Scalar, Size, StructKind, TargetDataLayout, WrappingRange,
1111
},
1212
LocalFieldId, StructId,
@@ -168,7 +168,7 @@ fn layout_of_simd_ty(
168168

169169
// Compute the ABI of the element type:
170170
let e_ly = db.layout_of_ty(e_ty, env)?;
171-
let Abi::Scalar(e_abi) = e_ly.abi else {
171+
let BackendRepr::Scalar(e_abi) = e_ly.backend_repr else {
172172
return Err(LayoutError::Unknown);
173173
};
174174

@@ -190,7 +190,7 @@ fn layout_of_simd_ty(
190190
Ok(Arc::new(Layout {
191191
variants: Variants::Single { index: struct_variant_idx() },
192192
fields,
193-
abi: Abi::Vector { element: e_abi, count: e_len },
193+
backend_repr: BackendRepr::Vector { element: e_abi, count: e_len },
194194
largest_niche: e_ly.largest_niche,
195195
size,
196196
align,
@@ -294,18 +294,18 @@ pub fn layout_of_ty_query(
294294
.checked_mul(count, dl)
295295
.ok_or(LayoutError::BadCalc(LayoutCalculatorError::SizeOverflow))?;
296296

297-
let abi = if count != 0 && matches!(element.abi, Abi::Uninhabited) {
298-
Abi::Uninhabited
297+
let backend_repr = if count != 0 && matches!(element.backend_repr, BackendRepr::Uninhabited) {
298+
BackendRepr::Uninhabited
299299
} else {
300-
Abi::Aggregate { sized: true }
300+
BackendRepr::Memory { sized: true }
301301
};
302302

303303
let largest_niche = if count != 0 { element.largest_niche } else { None };
304304

305305
Layout {
306306
variants: Variants::Single { index: struct_variant_idx() },
307307
fields: FieldsShape::Array { stride: element.size, count },
308-
abi,
308+
backend_repr,
309309
largest_niche,
310310
align: element.align,
311311
size,
@@ -318,7 +318,7 @@ pub fn layout_of_ty_query(
318318
Layout {
319319
variants: Variants::Single { index: struct_variant_idx() },
320320
fields: FieldsShape::Array { stride: element.size, count: 0 },
321-
abi: Abi::Aggregate { sized: false },
321+
backend_repr: BackendRepr::Memory { sized: false },
322322
largest_niche: None,
323323
align: element.align,
324324
size: Size::ZERO,
@@ -329,7 +329,7 @@ pub fn layout_of_ty_query(
329329
TyKind::Str => Layout {
330330
variants: Variants::Single { index: struct_variant_idx() },
331331
fields: FieldsShape::Array { stride: Size::from_bytes(1), count: 0 },
332-
abi: Abi::Aggregate { sized: false },
332+
backend_repr: BackendRepr::Memory { sized: false },
333333
largest_niche: None,
334334
align: dl.i8_align,
335335
size: Size::ZERO,
@@ -379,8 +379,8 @@ pub fn layout_of_ty_query(
379379
TyKind::Never => cx.calc.layout_of_never_type(),
380380
TyKind::Dyn(_) | TyKind::Foreign(_) => {
381381
let mut unit = layout_of_unit(&cx)?;
382-
match &mut unit.abi {
383-
Abi::Aggregate { sized } => *sized = false,
382+
match &mut unit.backend_repr {
383+
BackendRepr::Memory { sized } => *sized = false,
384384
_ => return Err(LayoutError::Unknown),
385385
}
386386
unit

crates/proc-macro-srv/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ doctest = false
1616
object.workspace = true
1717
libloading.workspace = true
1818
memmap2.workspace = true
19-
snap.workspace = true
2019

2120
stdx.workspace = true
2221
tt.workspace = true

crates/proc-macro-srv/src/dylib/version.rs

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use std::{
88
use memmap2::Mmap;
99
use object::read::{File as BinaryFile, Object, ObjectSection};
1010
use paths::AbsPath;
11-
use snap::read::FrameDecoder as SnapDecoder;
1211

1312
#[derive(Debug)]
1413
#[allow(dead_code)]
@@ -123,9 +122,8 @@ pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {
123122
let version = u32::from_be_bytes([dot_rustc[4], dot_rustc[5], dot_rustc[6], dot_rustc[7]]);
124123
// Last supported version is:
125124
// https://github.com/rust-lang/rust/commit/b94cfefc860715fb2adf72a6955423d384c69318
126-
let (snappy_portion, bytes_before_version) = match version {
127-
5 | 6 => (&dot_rustc[8..], 13),
128-
7 | 8 => {
125+
let (mut metadata_portion, bytes_before_version) = match version {
126+
8 => {
129127
let len_bytes = &dot_rustc[8..12];
130128
let data_len = u32::from_be_bytes(len_bytes.try_into().unwrap()) as usize;
131129
(&dot_rustc[12..data_len + 12], 13)
@@ -143,25 +141,18 @@ pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {
143141
}
144142
};
145143

146-
let mut uncompressed: Box<dyn Read> = if &snappy_portion[0..4] == b"rust" {
147-
// Not compressed.
148-
Box::new(snappy_portion)
149-
} else {
150-
Box::new(SnapDecoder::new(snappy_portion))
151-
};
152-
153144
// We're going to skip over the bytes before the version string, so basically:
154145
// 8 bytes for [b'r',b'u',b's',b't',0,0,0,5]
155146
// 4 or 8 bytes for [crate root bytes]
156147
// 1 byte for length of version string
157148
// so 13 or 17 bytes in total, and we should check the last of those bytes
158149
// to know the length
159150
let mut bytes = [0u8; 17];
160-
uncompressed.read_exact(&mut bytes[..bytes_before_version])?;
151+
metadata_portion.read_exact(&mut bytes[..bytes_before_version])?;
161152
let length = bytes[bytes_before_version - 1];
162153

163154
let mut version_string_utf8 = vec![0u8; length as usize];
164-
uncompressed.read_exact(&mut version_string_utf8)?;
155+
metadata_portion.read_exact(&mut version_string_utf8)?;
165156
let version_string = String::from_utf8(version_string_utf8);
166157
version_string.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))
167158
}

0 commit comments

Comments
 (0)