mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 22:23:10 +00:00
[SLP] Vectorize for all-constant entries.
Differential Revision: http://reviews.llvm.org/D10531 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240144 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1637,8 +1637,10 @@ bool BoUpSLP::isFullyVectorizableTinyTree() {
|
|||||||
if (VectorizableTree.size() != 2)
|
if (VectorizableTree.size() != 2)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Handle splat stores.
|
// Handle splat and all-constants stores.
|
||||||
if (!VectorizableTree[0].NeedToGather && isSplat(VectorizableTree[1].Scalars))
|
if (!VectorizableTree[0].NeedToGather &&
|
||||||
|
(allConstant(VectorizableTree[1].Scalars) ||
|
||||||
|
isSplat(VectorizableTree[1].Scalars)))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Gathering cost would be too much for tiny trees.
|
// Gathering cost would be too much for tiny trees.
|
||||||
|
|||||||
@@ -153,3 +153,19 @@ define void @store_splat(float*, float) {
|
|||||||
store float %1, float* %6, align 4
|
store float %1, float* %6, align 4
|
||||||
ret void
|
ret void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
; CHECK-LABEL: store_const
|
||||||
|
; CHECK: store <4 x i32>
|
||||||
|
define void @store_const(i32* %a) {
|
||||||
|
entry:
|
||||||
|
%ptr0 = getelementptr inbounds i32, i32* %a, i64 0
|
||||||
|
store i32 10, i32* %ptr0, align 4
|
||||||
|
%ptr1 = getelementptr inbounds i32, i32* %a, i64 1
|
||||||
|
store i32 30, i32* %ptr1, align 4
|
||||||
|
%ptr2 = getelementptr inbounds i32, i32* %a, i64 2
|
||||||
|
store i32 20, i32* %ptr2, align 4
|
||||||
|
%ptr3 = getelementptr inbounds i32, i32* %a, i64 3
|
||||||
|
store i32 40, i32* %ptr3, align 4
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user