diff options
author | Luke Lau <luke@igalia.com> | 2024-06-03 11:12:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 11:12:27 +0100 |
commit | 910098e40572f9fe6bfde161eafd1b390a356043 (patch) | |
tree | 71dcc714fd2550d212cbec16e7e58ee062f5f62c /clang/lib/Serialization/ModuleFile.cpp | |
parent | bf4eaec44054fa3908d50898f572e15d89119c67 (diff) | |
download | llvm-910098e40572f9fe6bfde161eafd1b390a356043.zip llvm-910098e40572f9fe6bfde161eafd1b390a356043.tar.gz llvm-910098e40572f9fe6bfde161eafd1b390a356043.tar.bz2 |
[RISCV] Match strided vector bases in RISCVGatherScatterLowering (#93972)
Currently we only match GEPs with a scalar base pointer, but a common
pattern that's emitted from the loop vectorizer is a strided vector base
plus some sort of scalar offset:
%base = getelementptr i64, ptr %p, <vscale x 1 x i64> %step
%gep = getelementptr i64, <vscale x 1 x ptr> %base, i64 %offset
This is common for accesses into a struct e.g. f[i].b below:
struct F { int a; char b; };
void foo(struct F *f) {
for (int i = 0; i < 1024; i += 2) {
f[i].a++;
f[i].b++;
}
}
This patch handles this case in RISCVGatherScatterLowering by recursing
on the base pointer if it's a vector.
With this we can convert roughly 80% of the indexed loads and stores
emitted to strided loads and stores on SPEC CPU 2017, -O3
-march=rva22u64_v
Diffstat (limited to 'clang/lib/Serialization/ModuleFile.cpp')
0 files changed, 0 insertions, 0 deletions