mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Take advantage of undefined behavior if the source program tries to GEP
beyond the end of an alloca to make FastDSE faster and more aggressive. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39945 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -61,17 +61,10 @@ namespace {
|
|||||||
|
|
||||||
// See through pointer-to-pointer bitcasts
|
// See through pointer-to-pointer bitcasts
|
||||||
while (isa<BitCastInst>(v) || isa<GetElementPtrInst>(v))
|
while (isa<BitCastInst>(v) || isa<GetElementPtrInst>(v))
|
||||||
if (BitCastInst* C = dyn_cast<BitCastInst>(v)) {
|
if (BitCastInst* C = dyn_cast<BitCastInst>(v))
|
||||||
if (isa<PointerType>(C->getSrcTy()))
|
v = C->getOperand(0);
|
||||||
v = C->getOperand(0);
|
else if (GetElementPtrInst* G = dyn_cast<GetElementPtrInst>(v))
|
||||||
else
|
v = G->getOperand(0);
|
||||||
break;
|
|
||||||
} else if (GetElementPtrInst* G = dyn_cast<GetElementPtrInst>(v)) {
|
|
||||||
if (G->hasAllZeroIndices())
|
|
||||||
v = G->getOperand(0);
|
|
||||||
else
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// getAnalysisUsage - We require post dominance frontiers (aka Control
|
// getAnalysisUsage - We require post dominance frontiers (aka Control
|
||||||
|
Reference in New Issue
Block a user