Skip to content

Commit 89f0d17

Browse files
youfengwuigcbot
authored andcommitted
Add vISA_maxRAIterations
Add vISA_maxRAIterations for offline compilation experiment. _OS_DESCRIPTION
1 parent b84ea55 commit 89f0d17

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

visa/GraphColor.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -9856,7 +9856,7 @@ void VarSplit::localSplit(IR_Builder &builder, G4_BB *bb) {
98569856

98579857
void GlobalRA::addrRegAlloc() {
98589858
uint32_t addrSpillId = 0;
9859-
unsigned maxRAIterations = 10;
9859+
unsigned maxRAIterations = builder.getuint32Option(vISA_MaxRAIterations);
98609860
unsigned iterationNo = 0;
98619861

98629862
while (iterationNo < maxRAIterations) {
@@ -9919,7 +9919,7 @@ void GlobalRA::addrRegAlloc() {
99199919

99209920
void GlobalRA::flagRegAlloc() {
99219921
uint32_t flagSpillId = 0;
9922-
unsigned maxRAIterations = 10;
9922+
unsigned maxRAIterations = builder.getuint32Option(vISA_MaxRAIterations);
99239923
uint32_t iterationNo = 0;
99249924
bool spillingFlag = false;
99259925

@@ -10877,7 +10877,7 @@ int GlobalRA::coloringRegAlloc() {
1087710877
}
1087810878

1087910879
startTimer(TimerID::GRF_GLOBAL_RA);
10880-
unsigned maxRAIterations = 10;
10880+
unsigned maxRAIterations = builder.getuint32Option(vISA_MaxRAIterations);
1088110881
unsigned iterationNo = 0;
1088210882

1088310883
int globalScratchOffset =

visa/RegAlloc.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using namespace vISA;
2626

2727
#define GRAPH_COLOR
2828

29-
#if defined (_DEBUG) || !defined(DLL_MODE)
29+
#if defined (_DEBUG) || defined(_INTERNAL)
3030
bool vISA::RATraceFlag = false;
3131
#endif
3232

@@ -2925,7 +2925,7 @@ int regAlloc(IR_Builder &builder, PhyRegPool &regPool, G4_Kernel &kernel) {
29252925
kernel.fg.callerSaveAreaOffset = kernel.fg.calleeSaveAreaOffset =
29262926
kernel.fg.frameSizeInOWord = 0;
29272927

2928-
#if defined(_DEBUG) || !defined(DLL_MODE)
2928+
#if defined(_DEBUG) || defined(_INTERNAL)
29292929
vISA::RATraceFlag = builder.getOption(vISA_RATrace);
29302930
#endif
29312931

visa/RegAlloc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SPDX-License-Identifier: MIT
2323

2424
namespace vISA {
2525

26-
#if defined(_DEBUG) || !defined(DLL_MODE)
26+
#if defined(_DEBUG) || defined(_INTERNAL)
2727
// Flag to control whether RA trace is on. This should be set to
2828
// builder.getOption(vISA_RATrace) at RA entry.
2929
extern bool RATraceFlag;

visa/include/VISAOptionsDefs.h

+2
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,8 @@ DEF_VISA_OPTION(vISA_ReservedGRFNum, ET_INT32, "-reservedGRFNum",
312312
"USAGE: -reservedGRFNum <regNum>\n", 0)
313313
DEF_VISA_OPTION(vISA_TotalGRFNum, ET_INT32, "-TotalGRFNum",
314314
"USAGE: -TotalGRFNum <regNum>\n", 0)
315+
DEF_VISA_OPTION(vISA_MaxRAIterations, ET_INT32, "-maxRAIterations",
316+
"USAGE: -maxRAIterations <iterationNum>\n", 10)
315317
DEF_VISA_OPTION(vISA_MinGRFNum, ET_INT32, "-minGRFNum",
316318
"Set the lower bound GRF for auto GRF selection."
317319
"USAGE: -minGRFNum <regNum>. 0 means no minimum GRF number.\n",

0 commit comments

Comments
 (0)