Skip to content

Commit 79bdd24

Browse files
Apply suggestions from code review
Co-authored-by: Waffle Maybe <[email protected]>
1 parent b94cfef commit 79bdd24

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

compiler/rustc_codegen_ssa/src/back/metadata.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ pub(super) fn get_metadata_xcoff<'a>(path: &Path, data: &'a [u8]) -> Result<&'a
162162
return Err(format!("Invalid metadata symbol offset: {offset}"));
163163
}
164164
// The offset specifies the location of rustc metadata in the comment section.
165-
// The metadata is preceded by a 4-byte length field.
165+
// The metadata is preceded by a 8-byte length field.
166166
let len = u64::from_le_bytes(info_data[(offset - 8)..offset].try_into().unwrap()) as usize;
167167
if offset + len > (info_data.len() as usize) {
168168
return Err(format!(

compiler/rustc_metadata/src/rmeta/decoder.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -705,9 +705,8 @@ impl MetadataBlob {
705705
}
706706

707707
fn root_pos(&self) -> NonZeroUsize {
708-
let slice = &self.blob()[..];
709708
let offset = METADATA_HEADER.len();
710-
let pos_bytes = slice[offset..][..8].try_into().unwrap();
709+
let pos_bytes = self.blob()[offset..][..8].try_into().unwrap();
711710
let pos = u64::from_le_bytes(pos_bytes);
712711
NonZeroUsize::new(pos as usize).unwrap()
713712
}

src/tools/rust-analyzer/crates/proc-macro-api/src/version.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ fn read_section<'a>(dylib_binary: &'a [u8], section_name: &str) -> io::Result<&'
8585
}
8686

8787
/// Check the version of rustc that was used to compile a proc macro crate's
88-
///
8988
/// binary file.
89+
///
9090
/// A proc macro crate binary's ".rustc" section has following byte layout:
9191
/// * [b'r',b'u',b's',b't',0,0,0,5] is the first 8 bytes
9292
/// * ff060000 734e6150 is followed, it's the snappy format magic bytes,
@@ -96,8 +96,8 @@ fn read_section<'a>(dylib_binary: &'a [u8], section_name: &str) -> io::Result<&'
9696
/// The bytes you get after decompressing the snappy format portion has
9797
/// following layout:
9898
/// * [b'r',b'u',b's',b't',0,0,0,5] is the first 8 bytes(again)
99-
/// * [crate root bytes] next 4 bytes is to store crate root position,
100-
/// according to rustc's source code comment
99+
/// * [crate root bytes] next 8 bytes (4 in old versions) is to store
100+
/// crate root position, according to rustc's source code comment
101101
/// * [length byte] next 1 byte tells us how many bytes we should read next
102102
/// for the version string's utf8 bytes
103103
/// * [version string bytes encoded in utf8] <- GET THIS BOI
@@ -119,7 +119,7 @@ pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {
119119
}
120120
let version = u32::from_be_bytes([dot_rustc[4], dot_rustc[5], dot_rustc[6], dot_rustc[7]]);
121121
// Last supported version is:
122-
// https://github.com/rust-lang/rust/commit/0696e79f2740ad89309269b460579e548a5cd632
122+
// https://github.com/rust-lang/rust/commit/b94cfefc860715fb2adf72a6955423d384c69318
123123
let (snappy_portion, bytes_before_version) = match version {
124124
5 | 6 => (&dot_rustc[8..], 13),
125125
7 | 8 => {
@@ -153,9 +153,9 @@ pub fn read_version(dylib_path: &AbsPath) -> io::Result<String> {
153153
// 1 byte for length of version string
154154
// so 13 or 17 bytes in total, and we should check the last of those bytes
155155
// to know the length
156-
let mut bytes_before_version = vec![0u8; bytes_before_version];
157-
uncompressed.read_exact(&mut bytes_before_version)?;
158-
let length = *bytes_before_version.last().unwrap();
156+
let mut bytes = [0u8; 17];
157+
uncompressed.read_exact(&mut bytes[..bytes_before_version])?;
158+
let length = bytes[bytes_before_version - 1];
159159

160160
let mut version_string_utf8 = vec![0u8; length as usize];
161161
uncompressed.read_exact(&mut version_string_utf8)?;

0 commit comments

Comments
 (0)