diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-03-25 02:02:51 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-03-25 02:02:51 +0000 |
commit | 29e6ac620f4329202257df1a402761c8ef1d4dde (patch) | |
tree | 8691bcaf6d9bf34414b38b58ffb38aff86e1bf15 | |
parent | a30a316110626948eeae395152714482920654c2 (diff) |
X86 SSE1 SIMD store intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27099 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Intrinsics.td | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index f7ab7abb13..a7fa1a97c4 100644 --- a/include/llvm/Intrinsics.td +++ b/include/llvm/Intrinsics.td @@ -642,6 +642,23 @@ let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". Intrinsic<[llvm_v4f32_ty, llvm_ptr_ty], [IntrReadMem]>; } +// SIMD store ops + +let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". + def int_x86_sse_storehps : GCCBuiltin<"__builtin_ia32_storehps">, + Intrinsic<[llvm_ptr_ty, llvm_v4f32_ty], [IntrWriteMem]>; +} + +let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". + def int_x86_sse_storelps : GCCBuiltin<"__builtin_ia32_storelps">, + Intrinsic<[llvm_ptr_ty, llvm_v4f32_ty], [IntrWriteMem]>; +} + +let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". + def int_x86_sse_storeups : GCCBuiltin<"__builtin_ia32_storeups">, + Intrinsic<[llvm_ptr_ty, llvm_v4f32_ty], [IntrWriteMem]>; +} + let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". def int_x86_sse_movmskps : GCCBuiltin<"__builtin_ia32_movmskps">, Intrinsic<[llvm_int_ty, llvm_v4f32_ty], [InstrNoMem]>; |