aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-05-24 00:07:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-05-24 00:07:06 +0000
commitc572f75be5c642c19d718f8214cc0ac00b14e212 (patch)
tree868b6547755d2ae3857465a3b384d7d038153eeb
parent96e7e09f2642faf8f751be61c69d44687f217973 (diff)
downloadexternal_llvm-c572f75be5c642c19d718f8214cc0ac00b14e212.zip
external_llvm-c572f75be5c642c19d718f8214cc0ac00b14e212.tar.gz
external_llvm-c572f75be5c642c19d718f8214cc0ac00b14e212.tar.bz2
Remove x86.sse2.loadh.pd and x86.sse2.loadl.pd. These will be lowered into load and shuffle instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51521 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/IntrinsicsX86.td6
-rw-r--r--lib/Transforms/Scalar/LoopStrengthReduce.cpp5
2 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/IntrinsicsX86.td b/include/llvm/IntrinsicsX86.td
index 0484926..8af50c1 100644
--- a/include/llvm/IntrinsicsX86.td
+++ b/include/llvm/IntrinsicsX86.td
@@ -507,12 +507,6 @@ let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.".
def int_x86_sse2_movs_d : GCCBuiltin<"__builtin_ia32_movsd">,
Intrinsic<[llvm_v2f64_ty, llvm_v2f64_ty,
llvm_v2f64_ty], [IntrNoMem]>;
- def int_x86_sse2_loadh_pd : GCCBuiltin<"__builtin_ia32_loadhpd">,
- Intrinsic<[llvm_v2f64_ty, llvm_v2f64_ty,
- llvm_ptr_ty], [IntrReadMem]>;
- def int_x86_sse2_loadl_pd : GCCBuiltin<"__builtin_ia32_loadlpd">,
- Intrinsic<[llvm_v2f64_ty, llvm_v2f64_ty,
- llvm_ptr_ty], [IntrReadMem]>;
def int_x86_sse2_shuf_pd : GCCBuiltin<"__builtin_ia32_shufpd">,
Intrinsic<[llvm_v2f64_ty, llvm_v2f64_ty,
llvm_v2f64_ty, llvm_i32_ty], [IntrNoMem]>;
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
index c65b83e..ad3d9d2 100644
--- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp
+++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp
@@ -1119,11 +1119,6 @@ static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
if (II->getOperand(1) == OperandVal)
isAddress = true;
break;
- case Intrinsic::x86_sse2_loadh_pd:
- case Intrinsic::x86_sse2_loadl_pd:
- if (II->getOperand(2) == OperandVal)
- isAddress = true;
- break;
}
}
return isAddress;