File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -178,14 +178,14 @@ typedef enum
178
178
FCEXP_LOCAL_SCHEDULING = ( 0x1 << 0x5 ),
179
179
FCEXP_PRERA_SCHEDULING = ( 0x1 << 0x6 ),
180
180
FCEXP_NO_REMAT = ( 0x1 << 0x7 ),
181
- FCEXP_SPILL_COMPRESSION = ( 0x1 << 0x8 ),
181
+ FCEXP_NO_SPILL_COMPRESSION = ( 0x1 << 0x8 ),
182
182
FCEXP_LOCAL_DECL_SPLIT_GLOBAL_RA = ( 0x1 << 0x9 ),
183
183
FCEXP_QUICKTOKEN_ALLOC = ( 0x1 << 0xa ),
184
184
FCEXP_DISABLE_UNROLL = ( 0x1 << 0xb ),
185
185
FCEXP_TOBE_DESIGNED = ( 0x1 << 0xc ),
186
186
187
187
// Current default stage 1 options. *Must* be updated whenever the default changes.
188
- FCEXP_DEFAULT = ( FCEXP_DISABLE_LVN | FCEXP_LINEARSCAN | FCEXP_DISABLE_GOPT | FCEXP_LOCAL_SCHEDULING | FCEXP_PRERA_SCHEDULING | FCEXP_SPILL_COMPRESSION | FCEXP_QUICKTOKEN_ALLOC ),
188
+ FCEXP_DEFAULT = ( FCEXP_DISABLE_LVN | FCEXP_LINEARSCAN | FCEXP_DISABLE_GOPT | FCEXP_LOCAL_SCHEDULING | FCEXP_PRERA_SCHEDULING | FCEXP_NO_SPILL_COMPRESSION | FCEXP_QUICKTOKEN_ALLOC ),
189
189
190
190
// Alias for UMD to indicate staged compilation must be disabled
191
191
FCEXP_DISABLED = FCEXP_TOBE_DESIGNED
Original file line number Diff line number Diff line change @@ -4992,7 +4992,7 @@ namespace IGC
4992
4992
{
4993
4993
SaveOption (vISA_LocalScheduling, false );
4994
4994
SaveOption (vISA_preRA_Schedule, false );
4995
- SaveOption (vISA_SpillSpaceCompression, false );
4995
+ SaveOption (vISA_SpillSpaceCompression, true );
4996
4996
SaveOption (vISA_LVN, false );
4997
4997
SaveOption (vISA_QuickTokenAllocation, true );
4998
4998
if (!context->getModuleMetaData ()->compOpt .DisableFastestLinearScan &&
@@ -5015,7 +5015,7 @@ namespace IGC
5015
5015
if (FastestS1Options (context) & FCEXP_NO_REMAT)
5016
5016
SaveOption (vISA_NoRemat, true );
5017
5017
5018
- if (FastestS1Options (context) & FCEXP_SPILL_COMPRESSION )
5018
+ if (FastestS1Options (context) & FCEXP_NO_SPILL_COMPRESSION )
5019
5019
SaveOption (vISA_SpillSpaceCompression, false );
5020
5020
5021
5021
if (FastestS1Options (context) & FCEXP_LOCAL_DECL_SPLIT_GLOBAL_RA)
You can’t perform that action at this time.
0 commit comments