Load & StoreInst no longer derive from MemAccessInst, so we don't have
to handle indexing anymore
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3485 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp b/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp
index 7bfa329..4e6cbcf 100644
--- a/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp
+++ b/lib/Transforms/Scalar/DecomposeMultiDimRefs.cpp
@@ -49,7 +49,7 @@
for (BasicBlock::iterator II = BB.begin(); II != BB.end(); ) {
if (MemAccessInst *MAI = dyn_cast<MemAccessInst>(&*II))
if (MAI->getNumIndices() >= 2) {
- Changed = decomposeArrayRef(II) || Changed; // always modifies II
+ Changed |= decomposeArrayRef(II); // always modifies II
continue;
}
++II;
@@ -88,19 +88,7 @@
bool
DecomposePass::decomposeArrayRef(BasicBlock::iterator &BBI)
{
- // FIXME: If condition below
MemAccessInst &MAI = cast<MemAccessInst>(*BBI);
- // FIXME: If condition below
-
- // If this instr has no indexes, then the decomposed version is identical to
- // the instruction itself. FIXME: this should go away once GEP is the only
- // MAI
- //
- if (MAI.getNumIndices() == 0) {
- ++BBI;
- return false;
- }
-
BasicBlock *BB = MAI.getParent();
Value *LastPtr = MAI.getPointerOperand();
@@ -141,12 +129,6 @@
Instruction *NewI = 0;
switch(MAI.getOpcode()) {
- case Instruction::Load:
- NewI = new LoadInst(LastPtr, Indices, MAI.getName());
- break;
- case Instruction::Store:
- NewI = new StoreInst(MAI.getOperand(0), LastPtr, Indices);
- break;
case Instruction::GetElementPtr:
NewI = new GetElementPtrInst(LastPtr, Indices, MAI.getName());
break;
diff --git a/lib/Transforms/Scalar/GCSE.cpp b/lib/Transforms/Scalar/GCSE.cpp
index dc6a345..b4583e0 100644
--- a/lib/Transforms/Scalar/GCSE.cpp
+++ b/lib/Transforms/Scalar/GCSE.cpp
@@ -381,8 +381,6 @@
return false; // Neither instruction dominates the other one...
BasicBlock *BB1 = L1->getParent(), *BB2 = L2->getParent();
-
- assert(!L1->hasIndices());
Value *LoadAddress = L1->getOperand(0);
// L1 now dominates L2. Check to see if the intervening instructions between
diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp
index 3714d7b..37333db 100644
--- a/lib/Transforms/Scalar/LICM.cpp
+++ b/lib/Transforms/Scalar/LICM.cpp
@@ -105,7 +105,6 @@
void visitShiftInst(ShiftInst &I) { visitBinaryOperator((Instruction&)I); }
void visitLoadInst(LoadInst &LI) {
- assert(!LI.hasIndices());
if (isLoopInvariant(LI.getOperand(0)) &&
!pointerInvalidatedByLoop(LI.getOperand(0)))
hoist(LI);