summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2010-12-17 23:12:19 +0000
committerNate Begeman <natebegeman@mac.com>2010-12-17 23:12:19 +0000
commit7aa18bf46ae5123f418f7316939a1b7d9f371ebc (patch)
tree51c8c3a4ffdb595d25d1b8bffcde32bb79a50e1c /llvm/lib/Transforms
parent3fff1fd49bac4196c89eb9c2f1dc8a90840338c5 (diff)
downloadbcm5719-llvm-7aa18bf46ae5123f418f7316939a1b7d9f371ebc.tar.gz
bcm5719-llvm-7aa18bf46ae5123f418f7316939a1b7d9f371ebc.zip
Add vector versions of some existing scalar transforms to aid codegen in matching psign & pblend operations to the IR produced by clang/gcc for their C idioms.
llvm-svn: 122105
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
index 79a9b09c64d..df2abb5cef2 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
@@ -1020,6 +1020,23 @@ Instruction *InstCombiner::visitSExt(SExtInst &CI) {
}
}
+ // vector (x <s 0) ? -1 : 0 -> ashr x, 31 -> all ones if signed
+ if (const VectorType *VTy = dyn_cast<VectorType>(DestTy)) {
+ ICmpInst::Predicate Pred; Value *CmpLHS;
+ if (match(Src, m_ICmp(Pred, m_Value(CmpLHS), m_Zero()))) {
+ if (Pred == ICmpInst::ICMP_SLT && CmpLHS->getType() == DestTy) {
+ const Type *EltTy = VTy->getElementType();
+
+ // splat the shift constant to a cosntant vector
+ Constant *Sh = ConstantInt::get(EltTy, EltTy->getScalarSizeInBits()-1);
+ std::vector<Constant *> Elts(VTy->getNumElements(), Sh);
+ Constant *VSh = ConstantVector::get(Elts);
+
+ Value *In = Builder->CreateAShr(CmpLHS, VSh, CmpLHS->getName()+".lobit");
+ return ReplaceInstUsesWith(CI, In);
+ }
+ }
+ }
// If the input is a shl/ashr pair of a same constant, then this is a sign
// extension from a smaller value. If we could trust arbitrary bitwidth
OpenPOWER on IntegriCloud