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

Florian Hahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 12 06:28:04 PST 2020


fhahn created this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
fhahn requested review of this revision.
Herald added a subscriber: jdoerfert.

Repository:
  rG LLVM Github Monorepo

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
@@ -1538,6 +1538,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.304817.patch
Type: text/x-patch
Size: 707 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201112/5d488f18/attachment.bin>


More information about the llvm-commits mailing list