Skip to content

Commit 57460e8

Browse files
sys-igcigcbot
authored andcommitted
[Autobackout][FunctionalRegression]Revert of change: f6c0fb7: Detect GEP instructions into vectors
Detect GEP instructions into vectors
1 parent 80d7ca2 commit 57460e8

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

IGC/Compiler/CISACodeGen/CheckInstrTypes.cpp

-15
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ void CheckInstrTypes::print(llvm::raw_ostream& OS) const
171171
OS << "\nhasDynamicGenericLoadStore: " << g_InstrTypes.hasDynamicGenericLoadStore;
172172
OS << "\nhasUnmaskedRegion: " << g_InstrTypes.hasUnmaskedRegion;
173173
OS << "\nhasSLM: " << g_InstrTypes.hasSLM;
174-
OS << "\nhasPrivateGEPIntoVector: " << g_InstrTypes.hasPrivateGEPIntoVector;
175174
OS << "\nnumCall: " << g_InstrTypes.numCall;
176175
OS << "\nnumBarrier: " << g_InstrTypes.numBarrier;
177176
OS << "\nnumLoadStore: " << g_InstrTypes.numLoadStore;
@@ -755,20 +754,6 @@ void CheckInstrTypes::visitGetElementPtrInst(llvm::GetElementPtrInst& I)
755754
{
756755
g_InstrTypes.hasGenericAddressSpacePointers = true;
757756
}
758-
else if (I.getPointerAddressSpace() == ADDRESS_SPACE::ADDRESS_SPACE_PRIVATE &&
759-
g_InstrTypes.hasPrivateGEPIntoVector == false &&
760-
I.getNumIndices() > 1)
761-
{
762-
llvm::SmallVector<llvm::Value*, 4> indices(I.indices());
763-
indices.pop_back();
764-
llvm::Type* lastIndexedType = llvm::GetElementPtrInst::getIndexedType(
765-
I.getSourceElementType(),
766-
indices);
767-
if (lastIndexedType->isVectorTy())
768-
{
769-
g_InstrTypes.hasPrivateGEPIntoVector = true;
770-
}
771-
}
772757
}
773758

774759
#undef PASS_FLAG

IGC/Compiler/CodeGenPublic.h

-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,6 @@ namespace IGC
348348
bool hasDynamicGenericLoadStore{};
349349
bool hasUnmaskedRegion{};
350350
bool hasSLM{};
351-
bool hasPrivateGEPIntoVector{};
352351
unsigned int numCall{};
353352
unsigned int numBarrier{};
354353
unsigned int numLoadStore{};

0 commit comments

Comments
 (0)