[llvm] [GISel][AMDGPU] Expand ShuffleVector (PR #124527)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 00:46:50 PST 2025
================
@@ -1560,6 +1560,13 @@ def combine_shuffle_concat : GICombineRule<
[{ return Helper.matchCombineShuffleConcat(*${root}, ${matchinfo}); }]),
(apply [{ Helper.applyCombineShuffleConcat(*${root}, ${matchinfo}); }])>;
+// Combines shuffles of vector into extract_subvector
+def combine_shuffle_vector : GICombineRule<
----------------
arsenm wrote:
Name is too broad, and doesn't match the comment. It says it forms an extract_subvector, but this is creating a build_vector
https://github.com/llvm/llvm-project/pull/124527
More information about the llvm-commits
mailing list