mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Enable PostRA scheduling for SPU.
This speeds up selected test cases with up to 5% - no slowdowns observed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120286 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b00f24b13c
commit
c2ebfd454c
@ -14,6 +14,8 @@
|
||||
#include "SPUSubtarget.h"
|
||||
#include "SPU.h"
|
||||
#include "SPUGenSubtarget.inc"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "SPURegisterInfo.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -34,3 +36,22 @@ SPUSubtarget::SPUSubtarget(const std::string &TT, const std::string &FS) :
|
||||
/// producing code for the JIT.
|
||||
void SPUSubtarget::SetJITMode() {
|
||||
}
|
||||
|
||||
/// Enable PostRA scheduling for optimization levels -O2 and -O3.
|
||||
bool SPUSubtarget::enablePostRAScheduler(
|
||||
CodeGenOpt::Level OptLevel,
|
||||
TargetSubtarget::AntiDepBreakMode& Mode,
|
||||
RegClassVector& CriticalPathRCs) const {
|
||||
Mode = TargetSubtarget::ANTIDEP_CRITICAL;
|
||||
// CriticalPathsRCs seems to be the set of
|
||||
// RegisterClasses that antidep breakings are performed for.
|
||||
// Do it for all register classes
|
||||
CriticalPathRCs.clear();
|
||||
CriticalPathRCs.push_back(&SPU::R8CRegClass);
|
||||
CriticalPathRCs.push_back(&SPU::R16CRegClass);
|
||||
CriticalPathRCs.push_back(&SPU::R32CRegClass);
|
||||
CriticalPathRCs.push_back(&SPU::R32FPRegClass);
|
||||
CriticalPathRCs.push_back(&SPU::R64CRegClass);
|
||||
CriticalPathRCs.push_back(&SPU::VECREGRegClass);
|
||||
return OptLevel >= CodeGenOpt::Default;
|
||||
}
|
||||
|
@ -84,6 +84,10 @@ namespace llvm {
|
||||
"-i16:16:128-i8:8:128-i1:8:128-a:0:128-v64:64:128-v128:128:128"
|
||||
"-s:128:128-n32:64";
|
||||
}
|
||||
|
||||
bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
|
||||
TargetSubtarget::AntiDepBreakMode& Mode,
|
||||
RegClassVector& CriticalPathRCs) const;
|
||||
};
|
||||
} // End llvm namespace
|
||||
|
||||
|
@ -13,8 +13,8 @@ entry:
|
||||
; CHECK: long 66051
|
||||
; CHECK: long 67438087
|
||||
; CHECK-NOT: rotqmbyi
|
||||
; CHECK: rotmai
|
||||
; CHECK: lqa
|
||||
; CHECK: rotmai
|
||||
; CHECK: shufb
|
||||
}
|
||||
|
||||
@ -27,8 +27,8 @@ entry:
|
||||
; CHECK: long 269488144
|
||||
; CHECK: long 66051
|
||||
; CHECK-NOT: rotqmbyi
|
||||
; CHECK: rotmai
|
||||
; CHECK: lqa
|
||||
; CHECK: rotmai
|
||||
; CHECK: shufb
|
||||
}
|
||||
|
||||
@ -42,8 +42,8 @@ entry:
|
||||
; CHECK: long 269488144
|
||||
; CHECK: long 66051
|
||||
; CHECK-NOT: rotqmbyi
|
||||
; CHECK: rotmai
|
||||
; CHECK: lqa
|
||||
; CHECK: rotmai
|
||||
; CHECK: shufb
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: llc --march=cellspu < %s | FileCheck %s
|
||||
; RUN: llc -O1 --march=cellspu < %s | FileCheck %s
|
||||
|
||||
define <4 x float> @shuffle(<4 x float> %param1, <4 x float> %param2) {
|
||||
; CHECK: cwd {{\$.}}, 0($sp)
|
||||
|
Loading…
x
Reference in New Issue
Block a user