rust/tests/codegen/intrinsics
Nikita Popov c2fd26a115 Separate immediate and in-memory ScalarPair representation
Currently, we assume that ScalarPair is always represented using
a two-element struct, both as an immediate value and when stored
in memory.

This currently works fairly well, but runs into problems with
https://github.com/rust-lang/rust/pull/116672, where a ScalarPair
involving an i128 type can no longer be represented as a two-element
struct in memory. For example, the tuple `(i32, i128)` needs to be
represented in-memory as `{ i32, [3 x i32], i128 }` to satisfy
alignment requirement. Using `{ i32, i128 }` instead will result in
the second element being stored at the wrong offset (prior to
LLVM 18).

Resolve this issue by no longer requiring that the immediate and
in-memory type for ScalarPair are the same. The in-memory type
will now look the same as for normal struct types (and will include
padding filler and similar), while the immediate type stays a
simple two-element struct type. This also means that booleans in
immediate ScalarPair are now represented as i1 rather than i8,
just like we do everywhere else.

The core change here is to llvm_type (which now treats ScalarPair
as a normal struct) and immediate_llvm_type (which returns the
two-element struct that llvm_type used to produce). The rest is
fixing things up to no longer assume these are the same. In
particular, this switches places that try to get pointers to the
ScalarPair elements to use byte-geps instead of struct-geps.
2023-12-15 17:42:05 +01:00
..
compare_bytes.rs Add a new compare_bytes intrinsic instead of calling memcmp directly 2023-08-06 15:47:40 -07:00
const_eval_select.rs Add more codegen tests 2023-01-17 16:23:22 +01:00
exact_div.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
likely.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mask.rs CHECK only for opaque ptr 2023-07-27 14:44:13 -07:00
nearby.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nontemporal.rs CHECK only for opaque ptr 2023-07-27 14:44:13 -07:00
offset_from.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
offset.rs Update the minimum external LLVM to 15 2023-07-27 14:07:08 -07:00
prefetch.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
transmute-niched.rs Update the minimum external LLVM to 15 2023-07-27 14:07:08 -07:00
transmute-x64.rs Update the minimum external LLVM to 15 2023-07-27 14:07:08 -07:00
transmute.rs Separate immediate and in-memory ScalarPair representation 2023-12-15 17:42:05 +01:00
unchecked_math.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
volatile_order.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
volatile.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00