[PATCH] D91347: [IR] Add @llvm.complex.multiply intrinsic (WIP)

Florian Hahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 4 03:07:41 PDT 2021


fhahn updated this revision to Diff 376841.
fhahn added a comment.

rebased, still WIP


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D91347

Files:
  llvm/include/llvm/IR/Intrinsics.td


Index: llvm/include/llvm/IR/Intrinsics.td
===================================================================
--- llvm/include/llvm/IR/Intrinsics.td
+++ llvm/include/llvm/IR/Intrinsics.td
@@ -1730,6 +1730,12 @@
                                          [llvm_anyvector_ty]>;
 }
 
+//===----- Complex math intrinsics ----------------------------------------===//
+
+def int_complex_multiply: DefaultAttrsIntrinsic<[llvm_anyvector_ty],
+                                                [LLVMMatchType<0>,LLVMMatchType<0>],
+                                                [IntrNoMem]>;
+
 //===----- Matrix intrinsics ---------------------------------------------===//
 
 def int_matrix_transpose


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D91347.376841.patch
Type: text/x-patch
Size: 694 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211004/c267de9f/attachment.bin>


More information about the llvm-commits mailing list