File tree 2 files changed +0
-16
lines changed
2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,6 @@ void CheckInstrTypes::print(llvm::raw_ostream& OS) const
171
171
OS << " \n hasDynamicGenericLoadStore: " << g_InstrTypes.hasDynamicGenericLoadStore ;
172
172
OS << " \n hasUnmaskedRegion: " << g_InstrTypes.hasUnmaskedRegion ;
173
173
OS << " \n hasSLM: " << g_InstrTypes.hasSLM ;
174
- OS << " \n hasPrivateGEPIntoVector: " << g_InstrTypes.hasPrivateGEPIntoVector ;
175
174
OS << " \n numCall: " << g_InstrTypes.numCall ;
176
175
OS << " \n numBarrier: " << g_InstrTypes.numBarrier ;
177
176
OS << " \n numLoadStore: " << g_InstrTypes.numLoadStore ;
@@ -755,20 +754,6 @@ void CheckInstrTypes::visitGetElementPtrInst(llvm::GetElementPtrInst& I)
755
754
{
756
755
g_InstrTypes.hasGenericAddressSpacePointers = true ;
757
756
}
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
- }
772
757
}
773
758
774
759
#undef PASS_FLAG
Original file line number Diff line number Diff line change @@ -348,7 +348,6 @@ namespace IGC
348
348
bool hasDynamicGenericLoadStore{};
349
349
bool hasUnmaskedRegion{};
350
350
bool hasSLM{};
351
- bool hasPrivateGEPIntoVector{};
352
351
unsigned int numCall{};
353
352
unsigned int numBarrier{};
354
353
unsigned int numLoadStore{};
You can’t perform that action at this time.
0 commit comments