1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Teach InstCombine to optimize extract of a value from a vector add operation with a constant zero.

llvm-svn: 172576
This commit is contained in:
Nadav Rotem 2013-01-15 23:43:14 +00:00
parent 8783cf1716
commit 24c96fa80c
2 changed files with 19 additions and 0 deletions

View File

@ -13,7 +13,9 @@
//===----------------------------------------------------------------------===//
#include "InstCombine.h"
#include "llvm/Support/PatternMatch.h"
using namespace llvm;
using namespace PatternMatch;
/// CheapToScalarize - Return true if the value is cheaper to scalarize than it
/// is to leave as a vector operation. isConstant indicates whether we're
@ -92,6 +94,13 @@ static Value *FindScalarElement(Value *V, unsigned EltNo) {
return FindScalarElement(SVI->getOperand(1), InEl - LHSWidth);
}
// Extract a value from a vector add operation with a constant zero.
Value *Val = 0; Constant *Con = 0;
if (match(V, m_Add(m_Value(Val), m_Constant(Con)))) {
if (Con->getAggregateElement(EltNo)->isNullValue())
return FindScalarElement(Val, EltNo);
}
// Otherwise, we don't know.
return 0;
}

View File

@ -7,3 +7,13 @@ define i32 @test(float %f) {
ret i32 %tmp19
}
define i64 @test2(i64 %in) {
%vec = insertelement <8 x i64> undef, i64 %in, i32 0
%splat = shufflevector <8 x i64> %vec, <8 x i64> undef, <8 x i32> zeroinitializer
%add = add <8 x i64> %splat, <i64 0, i64 1, i64 2, i64 3, i64 4, i64 5, i64 6, i64 7>
%scl1 = extractelement <8 x i64> %add, i32 0
%scl2 = extractelement <8 x i64> %add, i32 0
%r = add i64 %scl1, %scl2
ret i64 %r
}