[clang] [compiler-rt] [llvm] [X86] AVX10_V2_AUX Implementation (PR #206888)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 7 13:51:01 PDT 2026
================
@@ -1610,6 +1671,14 @@ def X86MTruncSStore : SDNode<"X86ISD::VMTRUNCSTORES", SDTX86MaskedStore,
def X86MTruncUSStore : SDNode<"X86ISD::VMTRUNCSTOREUS", SDTX86MaskedStore,
[SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
+// Vector truncating store with symmetric signed saturation
+def X86TruncSSStore : SDNode<"X86ISD::VTRUNCSTORSS", SDTStore,
+ [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
+
+// Vector truncating masked store with symmetric signed saturation
+def X86MTruncSSStore : SDNode<"X86ISD::VMTRUNCSTORSS", SDTX86MaskedStore,
+ [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
+
----------------
ganeshgit wrote:
Done!
https://github.com/llvm/llvm-project/pull/206888
More information about the cfe-commits
mailing list