-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read_target_uint => read_target_ptr outside rustc_middle (nfc) #84826
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,8 @@ pub(super) fn codegen_simd_intrinsic_call<'tcx>( | |
|
||
let indexes = { | ||
use rustc_middle::mir::interpret::*; | ||
use rustc_target::abi::Endian; | ||
|
||
let idx_const = crate::constant::mir_operand_get_const_val(fx, idx).expect("simd_shuffle* idx not const"); | ||
|
||
let idx_bytes = match idx_const { | ||
|
@@ -96,10 +98,11 @@ pub(super) fn codegen_simd_intrinsic_call<'tcx>( | |
|
||
(0..ret_lane_count).map(|i| { | ||
let i = usize::try_from(i).unwrap(); | ||
let idx = rustc_middle::mir::interpret::read_target_uint( | ||
fx.tcx.data_layout.endian, | ||
&idx_bytes[4*i.. 4*i + 4], | ||
).expect("read_target_uint"); | ||
let idx = match (fx.tcx.data_layout.endian, &idx_bytes[4*i.. 4*i + 4]) { | ||
(Endian::Little, &[a, b, c, d]) => u32::from_le_bytes([a, b, c, d]), | ||
(Endian::Big, &[a, b, c, d]) => u32::from_be_bytes([a, b, c, d]), | ||
(_, _) => unreachable!(), | ||
}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This has become significantly more complex when the complexity was hidden behind a function before. Why was this change made? |
||
u16::try_from(idx).expect("try_from u32") | ||
}).collect::<Vec<u16>>() | ||
}; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -555,12 +555,12 @@ impl<'tcx> TyCtxt<'tcx> { | |
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
#[inline] | ||
pub fn write_target_uint( | ||
fn write_target_uint( | ||
endianness: Endian, | ||
mut target: &mut [u8], | ||
data: u128, | ||
) -> Result<(), io::Error> { | ||
// This u128 holds an "any-size uint" (since smaller uints can fits in it) | ||
// This u128 holds an "any-size uint" (since smaller uints can fit in it) | ||
// So we do not write all bytes of the u128, just the "payload". | ||
match endianness { | ||
Endian::Little => target.write(&data.to_le_bytes())?, | ||
|
@@ -571,7 +571,7 @@ pub fn write_target_uint( | |
} | ||
|
||
#[inline] | ||
pub fn read_target_uint(endianness: Endian, mut source: &[u8]) -> Result<u128, io::Error> { | ||
fn read_target_uint(endianness: Endian, mut source: &[u8]) -> Result<u128, io::Error> { | ||
// This u128 holds an "any-size uint" (since smaller uints can fits in it) | ||
let mut buf = [0u8; std::mem::size_of::<u128>()]; | ||
// So we do not read exactly 16 bytes into the u128, just the "payload". | ||
|
@@ -588,3 +588,20 @@ pub fn read_target_uint(endianness: Endian, mut source: &[u8]) -> Result<u128, i | |
debug_assert!(source.len() == 0); // We should have consumed the source buffer. | ||
uint | ||
} | ||
|
||
/// Read a pointer-sized thing from a target, so it will fit in a u64 | ||
/// as the modules using this don't support wider pointer values | ||
/// FIXME(jubilee): Move this out of here and closer to the things using it! | ||
#[inline] | ||
pub fn read_target_ptr(endian: Endian, ptr_size: usize, bytes: &[u8]) -> u64 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should probably take There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Size is a u64, so on a 32-bit host that is over-weighting this input (even tho' the output should be u64 regardless). Might not matter after inlining, I guess. I thought about adding an enum to rustc_target so that can be matched on directly for more type-strictness, though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's just standard to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @workingjubilee, this code doesn't seem terribly idiomatic, and if your concern is input overhead, why not just call There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @workingjubilee Oh, you're probably right! Even taking an input seems a bit silly, now that I think of it. I must be reading too many C codebases lately. 😅 |
||
use core::convert::TryInto; | ||
match (ptr_size, endian) { | ||
(2, Endian::Little) => u16::from_le_bytes(bytes.try_into().unwrap()) as u64, | ||
(2, Endian::Big) => u16::from_be_bytes(bytes.try_into().unwrap()) as u64, | ||
(4, Endian::Little) => u32::from_le_bytes(bytes.try_into().unwrap()) as u64, | ||
(4, Endian::Big) => u32::from_be_bytes(bytes.try_into().unwrap()) as u64, | ||
(8, Endian::Little) => u64::from_le_bytes(bytes.try_into().unwrap()), | ||
(8, Endian::Big) => u64::from_be_bytes(bytes.try_into().unwrap()), | ||
Comment on lines
+599
to
+604
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't like explicitly handling several possibilities using host integers, when it can be done by e.g. copying @oli does miri already have some uniform (over integer sizes) code for doing this? Actually, why not just keep using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yes, as you noted, read_target_uint is that abstraction. I do see the point in an abstraction returning u64 for usize purposes, but imo that should just be a wrapper around the existing functions. As to where to place them... if rustc_middle doesn't need them they can go to rustc_mir, otherwise idk There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, I definitely was overthinking this, in retrospect. Anyways, my main thought was that it should probably exist in, say, |
||
(_, _) => panic!("unknown pointer size and endianness combination"), | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This name makes it seem like it reads the whole pointer instead of just the addend, leaving the target to which the addend is relative out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
read_target_usize
perhaps?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe