diff options
author | Andrew Trick <atrick@apple.com> | 2012-11-28 03:42:49 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-11-28 03:42:49 +0000 |
commit | 0be19363d1389680b570949cadbfcd6d220e3d87 (patch) | |
tree | 017ba3c56af8211217be21ef2db5d23a23848958 /llvm/lib/CodeGen/ScheduleDAGInstrs.cpp | |
parent | cf7e6971e819732ff330c877184caabbe5097afd (diff) | |
download | bcm5719-llvm-0be19363d1389680b570949cadbfcd6d220e3d87.tar.gz bcm5719-llvm-0be19363d1389680b570949cadbfcd6d220e3d87.zip |
misched: better alias analysis.
This fixes a hole in the "cheap" alias analysis logic implemented within
the DAG builder itself, regardless of whether proper alias analysis is
enabled. It now handles this pattern produced by LSR+CodeGenPrepare.
%sunkaddr1 = ptrtoint * %obj to i64
%sunkaddr2 = add i64 %sunkaddr1, %lsr.iv
%sunkaddr3 = inttoptr i64 %sunkaddr2 to i32*
store i32 %v, i32* %sunkaddr3
llvm-svn: 168768
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAGInstrs.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ScheduleDAGInstrs.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp index 683011d3dee..e46ca946478 100644 --- a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp +++ b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp @@ -67,7 +67,7 @@ static const Value *getUnderlyingObjectFromInt(const Value *V) { // regular getUnderlyingObjectFromInt. if (U->getOpcode() == Instruction::PtrToInt) return U->getOperand(0); - // If we find an add of a constant or a multiplied value, it's + // If we find an add of a constant, a multiplied value, or a phi, it's // likely that the other operand will lead us to the base // object. We don't have to worry about the case where the // object address is somehow being computed by the multiply, @@ -75,7 +75,8 @@ static const Value *getUnderlyingObjectFromInt(const Value *V) { // identifiable object. if (U->getOpcode() != Instruction::Add || (!isa<ConstantInt>(U->getOperand(1)) && - Operator::getOpcode(U->getOperand(1)) != Instruction::Mul)) + Operator::getOpcode(U->getOperand(1)) != Instruction::Mul && + !isa<PHINode>(U->getOperand(1)))) return V; V = U->getOperand(0); } else { |