[PATCH] D112076: [AArch64][SVE][InstCombine] Combine contiguous gather/scatter to load/store

David Sherwood via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 19 07:50:34 PDT 2021


david-arm added a comment.

Hi @peterwaller-arm, looks like a nice improvement, although I haven't reviewed it yet! Just one thought - do you think there is any value in adding a similar instcombine for normal IR, i.e.

%indices = call <vscale x 4 x i64> @llvm.experimental.stepvector()
%geps = getelementptr %base, %indices
%val = call <vscale x 4 x i32> @llvm.masked.gather(<vscale x 4 x i32*> %geps, ...)

?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D112076/new/

https://reviews.llvm.org/D112076



More information about the llvm-commits mailing list