Skip to content

Commit 4063fa2

Browse files
iwwuigcbot
authored andcommitted
Remove obsolete files
1 parent ccbc7bf commit 4063fa2

File tree

6 files changed

+0
-299
lines changed

6 files changed

+0
-299
lines changed

IGC/Compiler/CISACodeGen/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ set(IGC_BUILD__SRC__CISACodeGen_Common
6161
"${CMAKE_CURRENT_SOURCE_DIR}/MemOpt.cpp"
6262
"${CMAKE_CURRENT_SOURCE_DIR}/MemOpt2.cpp"
6363
"${CMAKE_CURRENT_SOURCE_DIR}/MemOptUtils.cpp"
64-
"${CMAKE_CURRENT_SOURCE_DIR}/MergeUniformStores.cpp"
6564
"${CMAKE_CURRENT_SOURCE_DIR}/OpenCLOptions.cpp"
6665
"${CMAKE_CURRENT_SOURCE_DIR}/OpenCLKernelCodeGen.cpp"
6766
"${CMAKE_CURRENT_SOURCE_DIR}/POSH_RemoveNonPositionOutput.cpp"
@@ -172,7 +171,6 @@ set(IGC_BUILD__HDR__CISACodeGen_Common
172171
"${CMAKE_CURRENT_SOURCE_DIR}/MemOpt.h"
173172
"${CMAKE_CURRENT_SOURCE_DIR}/MemOpt2.h"
174173
"${CMAKE_CURRENT_SOURCE_DIR}/MemOptUtils.h"
175-
"${CMAKE_CURRENT_SOURCE_DIR}/MergeUniformStores.hpp"
176174
"${CMAKE_CURRENT_SOURCE_DIR}/OpenCLOptions.hpp"
177175
"${CMAKE_CURRENT_SOURCE_DIR}/OpenCLKernelCodeGen.hpp"
178176
"${CMAKE_CURRENT_SOURCE_DIR}/POSH_RemoveNonPositionOutput.h"

IGC/Compiler/CISACodeGen/MergeUniformStores.cpp

Lines changed: 0 additions & 114 deletions
This file was deleted.

IGC/Compiler/CISACodeGen/MergeUniformStores.hpp

Lines changed: 0 additions & 58 deletions
This file was deleted.

IGC/Compiler/CISACodeGen/ShaderCodeGen.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ SPDX-License-Identifier: MIT
3939
#include "Compiler/CISACodeGen/LdShrink.h"
4040
#include "Compiler/CISACodeGen/MemOpt.h"
4141
#include "Compiler/CISACodeGen/MemOpt2.h"
42-
#include "Compiler/CISACodeGen/MergeUniformStores.hpp"
4342
#include "Compiler/CISACodeGen/SplitLoads.h"
4443
#include "Compiler/CISACodeGen/PreRARematFlag.h"
4544
#include "Compiler/CISACodeGen/PromoteConstantStructs.hpp"
@@ -1920,12 +1919,6 @@ void OptimizeIR(CodeGenContext* const pContext)
19201919
mpm.add(createScalarizerPass(SelectiveScalarizer::Auto));
19211920
}
19221921

1923-
if (pContext->type == ShaderType::COMPUTE_SHADER &&
1924-
IGC_IS_FLAG_ENABLED(EnableUniformSimd1Stores))
1925-
{
1926-
mpm.add(new MergeUniformStores());
1927-
}
1928-
19291922
mpm.run(*pContext->getModule());
19301923
} // end scope
19311924
COMPILER_TIME_END(pContext, TIME_OptimizationPasses);

IGC/Compiler/tests/MergeUniformStores/SLM_XeFlash.ll

Lines changed: 0 additions & 117 deletions
This file was deleted.

IGC/common/igc_flags.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,6 @@ DECLARE_IGC_REGKEY(DWORD, FPRoundingModeCoalescingMaxDistance, 20, "Max distance
342342
DECLARE_IGC_REGKEY(bool, DisableDotAddToDp4aMerge, false, "Disable Dot and Add ops to Dp4a merge optimization.", false)
343343
DECLARE_IGC_REGKEY(bool, DisableLoopSplitWidePHIs, false, "Disable splitting of loop PHI values to eliminate subvector extract operations", false)
344344
DECLARE_IGC_REGKEY(bool, EnableBarrierControlFlowOptimizationPass, false, "Enable barrier control flow optimization pass", false)
345-
DECLARE_IGC_REGKEY(bool, EnableUniformSimd1Stores, false, "Collapse SIMD32 uniform stores into SIMD1 to reduce pressure", true)
346345
DECLARE_IGC_REGKEY(bool, EnableWaveShuffleIndexSinking, true, "Hoist identical instructions operating on WaveShuffleIndex instructions with the same source and a constant lane/channel", false)
347346
DECLARE_IGC_REGKEY(DWORD, WaveShuffleIndexSinkingMaxIterations, 3, "Max number of iterations to run iterative WaveShuffleIndexSinking", false)
348347
DECLARE_IGC_REGKEY(bool, EnableWaveAllJointReduction, false, "Enable Joint Reduction Optimization.", false)

0 commit comments

Comments
 (0)