about summary refs log tree commit diff
path: root/tests/codegen/slice-iter-nonnull.rs
AgeCommit message (Collapse)AuthorLines
2025-07-22Rename `tests/codegen` into `tests/codegen-llvm`Guillaume Gomez-115/+0
2025-02-14Simplify `slice::Iter::next` enough that it inlinesScott McMurray-3/+3
2025-02-11tests/codegen: use -Copt-level=3 instead of -OJubilee Young-1/+1
2024-12-05Adapt codegen tests for NUW inferenceTim Neumann-6/+6
2024-08-31ignore/fix layout-sensitive testsThe 8472-0/+1
2024-02-23Ignore less tests in debug buildsBen Kimock-1/+0
2024-02-22[AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives许杰友 Jieyou Xu (Joe)-2/+2
2024-01-23Remove uses of no-system-llvmNikita Popov-1/+0
It looks like none of these are actually needed.
2023-12-15Separate immediate and in-memory ScalarPair representationNikita Popov-4/+4
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-09-01update tests that are ignored by debugDing Xiang Fei-3/+3
2023-07-20Get `!nonnull` metadata consistently in slice iterators, without needing ↵Scott McMurray-0/+39
`assume`s
2023-05-12Remove useless `assume`s from `slice::iter(_mut)`Scott McMurray-0/+35
2023-05-06Remove some `assume`s from slice iterators that don't do anythingScott McMurray-0/+42