[llvm] [LLVM] Add `llvm.masked.compress` intrinsic (PR #92289)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 6 11:12:17 PDT 2024
================
@@ -1294,6 +1294,11 @@ enum NodeType {
MLOAD,
MSTORE,
+ // Masked compress - consecutively place vector elements based on mask
+ // e.g., vec = {A, B, C, D} and mask = 1010
+ // --> {A, C, ?, ?} where ? is undefined
+ MCOMPRESS,
----------------
arsenm wrote:
Expand the name to exactly match the intrinsic name
https://github.com/llvm/llvm-project/pull/92289
More information about the llvm-commits
mailing list