mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
2f3956c41c
When switched to the MI scheduler for P9, the hardware is modeled as out of order. However, inside the MI Scheduler algorithm, we still use the in-order scheduling model as the MicroOpBufferSize isn't set. The MI scheduler take it as the hw cannot buffer the op. So, only when all the available instructions issued, the pending instruction could be scheduled. That is not true for our P9 hw in fact. This patch is trying to enable the Out-of-Order scheduling model. The buffer size 44 is picked from the P9 hw spec, and the perf test indicate that, its value won't hurt the cpu2017. With this patch, there are 3 specs improved over 3% and 1 spec deg over 3%. The detail is as follows: x264_r: +6.95% cactuBSSN_r: +6.94% lbm_r: +4.11% xz_r: -3.85% And the GEOMEAN for all the C/C++ spec in spec2017 is about 0.18% improved. Reviewer: Nemanjai Differential Revision: https://reviews.llvm.org/D55810 llvm-svn: 350285
33 lines
1.2 KiB
LLVM
33 lines
1.2 KiB
LLVM
; Function Attrs: norecurse nounwind
|
|
; RUN: llc -mtriple=powerpc64le-unknown-unknown -mcpu=pwr9 < %s | FileCheck %s
|
|
define void @test1(i32* nocapture readonly %arr, i32* nocapture %arrTo) {
|
|
entry:
|
|
%arrayidx = getelementptr inbounds i32, i32* %arrTo, i64 4
|
|
%0 = bitcast i32* %arrayidx to <4 x i32>*
|
|
%arrayidx1 = getelementptr inbounds i32, i32* %arr, i64 4
|
|
%1 = bitcast i32* %arrayidx1 to <4 x i32>*
|
|
%2 = load <4 x i32>, <4 x i32>* %1, align 16
|
|
store <4 x i32> %2, <4 x i32>* %0, align 16
|
|
ret void
|
|
; CHECK-LABEL: test1
|
|
; CHECK: lxv [[LD:[0-9]+]], 16(3)
|
|
; CHECK: stxv [[LD]], 16(4)
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind
|
|
define void @test2(i32* nocapture readonly %arr, i32* nocapture %arrTo) {
|
|
entry:
|
|
%arrayidx = getelementptr inbounds i32, i32* %arrTo, i64 1
|
|
%0 = bitcast i32* %arrayidx to <4 x i32>*
|
|
%arrayidx1 = getelementptr inbounds i32, i32* %arr, i64 2
|
|
%1 = bitcast i32* %arrayidx1 to <4 x i32>*
|
|
%2 = load <4 x i32>, <4 x i32>* %1, align 16
|
|
store <4 x i32> %2, <4 x i32>* %0, align 16
|
|
ret void
|
|
; CHECK-LABEL: test2
|
|
; CHECK: addi 3, 3, 8
|
|
; CHECK: lxvx [[LD:[0-9]+]], 0, 3
|
|
; CHECK: addi [[REG:[0-9]+]], 4, 4
|
|
; CHECK: stxvx [[LD]], 0, [[REG]]
|
|
}
|