-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Make repr(packed) vectors work with SIMD intrinsics #125311
Changes from 1 commit
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 |
---|---|---|
|
@@ -480,8 +480,55 @@ impl<'ll, 'tcx> IntrinsicCallMethods<'tcx> for Builder<'_, 'll, 'tcx> { | |
} | ||
|
||
_ if name.as_str().starts_with("simd_") => { | ||
// Unpack non-power-of-2 #[repr(packed)] | ||
let mut loaded_args = Vec::new(); | ||
for (ty, arg) in arg_tys.iter().zip(args) { | ||
loaded_args.push( | ||
if ty.is_simd() | ||
&& let OperandValue::Ref(place) = arg.val | ||
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 think "unpack" is worth some more explanation. Coming back to this after a while, I am not immediately sure why we are operating on an It seems we are generating a load a few lines down, which is somewhat what I expect, but it would be nice if I don't have to guess about what the high-level intention is here. It doesn't have to be a step-by-step, just a little more descriptive. 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 think this should be better |
||
{ | ||
let (size, elem_ty) = ty.simd_size_and_type(self.tcx()); | ||
let elem_ll_ty = match elem_ty.kind() { | ||
ty::Float(f) => self.type_float_from_ty(*f), | ||
ty::Int(i) => self.type_int_from_ty(*i), | ||
ty::Uint(u) => self.type_uint_from_ty(*u), | ||
ty::RawPtr(_, _) => self.type_ptr(), | ||
_ => 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. Is there a function for this, 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 would have to be defined in 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. Yeah, I was wondering if this exists somewhere in the builder traits so it could be defined per backend. 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 looked around and I think it should only live in this file, because that's a Very Dicey thing to do in the general case, but perfectly reasonable here, and all of the uses of the 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 possible I'm wrong about the diceyness... it seems to me that in most other cases you'd want to equate types carefully and be mindful... but I'm still ambiently unsure about whether this is the correct level of abstraction. ) |
||
let loaded = | ||
self.load_from_place(self.type_vector(elem_ll_ty, size), place); | ||
Comment on lines
+503
to
+504
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. My other question I guess is why we need to do this instead of e.g. just letting the fact the type is Copy in all the cases we care about take over. 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 think it really matters that it's Copy, the issue is that LLVM is expecting |
||
OperandRef::from_immediate_or_packed_pair(self, loaded, arg.layout) | ||
} else { | ||
*arg | ||
}, | ||
); | ||
} | ||
|
||
let llret_ty = if ret_ty.is_simd() | ||
&& let abi::Abi::Aggregate { .. } = self.layout_of(ret_ty).layout.abi | ||
{ | ||
let (size, elem_ty) = ret_ty.simd_size_and_type(self.tcx()); | ||
let elem_ll_ty = match elem_ty.kind() { | ||
ty::Float(f) => self.type_float_from_ty(*f), | ||
ty::Int(i) => self.type_int_from_ty(*i), | ||
ty::Uint(u) => self.type_uint_from_ty(*u), | ||
ty::RawPtr(_, _) => self.type_ptr(), | ||
_ => unreachable!(), | ||
}; | ||
self.type_vector(elem_ll_ty, size) | ||
} else { | ||
llret_ty | ||
}; | ||
|
||
match generic_simd_intrinsic( | ||
self, name, callee_ty, fn_args, args, ret_ty, llret_ty, span, | ||
self, | ||
name, | ||
callee_ty, | ||
fn_args, | ||
&loaded_args, | ||
ret_ty, | ||
llret_ty, | ||
span, | ||
) { | ||
Ok(llval) => llval, | ||
Err(()) => return Ok(()), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,6 @@ | |
#[repr(simd, packed)] | ||
struct Simd<T, const N: usize>([T; N]); | ||
|
||
#[repr(simd)] | ||
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. Maybe a silly question, but is the plan ever to use non-packed simd? Should After all, the existing things like ( 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 think we should experiment with that separately, after this PR, so that we can still back out of this path in case we find this actually hits a shitton of LLVM errors in codegen on platforms that aren't x86-64. I agree having a single handling would have nice qualities. 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. Yeah, "sure, but in a future PR" seems like a reasonable answer 👍 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 think there is a non-zero possibility that we end up with both types--one packed and one not. Notably, adding It's of course slightly odd that it's not byte-aligned, but 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. right. as far as I am concerned what we're really doing here is altering a very-poorly-defined lang item, since |
||
struct FullSimd<T, const N: usize>([T; N]); | ||
|
||
fn check_size_align<T, const N: usize>() { | ||
use std::mem; | ||
assert_eq!(mem::size_of::<Simd<T, N>>(), mem::size_of::<[T; N]>()); | ||
|
@@ -44,16 +41,9 @@ fn main() { | |
simd_add(Simd::<f64, 4>([0., 1., 2., 3.]), Simd::<f64, 4>([2., 2., 2., 2.])); | ||
assert_eq!(std::mem::transmute::<_, [f64; 4]>(x), [2., 3., 4., 5.]); | ||
|
||
// non-powers-of-two have padding and need to be expanded to full vectors | ||
fn load<T, const N: usize>(v: Simd<T, N>) -> FullSimd<T, N> { | ||
unsafe { | ||
let mut tmp = core::mem::MaybeUninit::<FullSimd<T, N>>::uninit(); | ||
std::ptr::copy_nonoverlapping(&v as *const _, tmp.as_mut_ptr().cast(), 1); | ||
tmp.assume_init() | ||
} | ||
} | ||
let x: FullSimd<f64, 3> = | ||
simd_add(load(Simd::<f64, 3>([0., 1., 2.])), load(Simd::<f64, 3>([2., 2., 2.]))); | ||
assert_eq!(x.0, [2., 3., 4.]); | ||
// non-powers-of-two have padding and lesser alignment, but the intrinsic handles it | ||
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. Hm. Wait. You said you removed the padding? 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. Yeah that was ambiguous, I think I fixed the comment |
||
let x: Simd<f64, 3> = simd_add(Simd::<f64, 3>([0., 1., 2.]), Simd::<f64, 3>([2., 2., 2.])); | ||
let arr: [f64; 3] = x.0; | ||
assert_eq!(arr, [2., 3., 4.]); | ||
} | ||
} |
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.
Where are we checking for the
repr(packed)
attribute?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.
I explained it better in the comments, but
repr(packed)
is passed by reference