mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Correctly estimate SROA savings for store operands in inline cost analysis.
When estimating SROA savings, we want to see if an address is derived off an alloca in the caller. For store instructions, operand 1 is the address operand, but the current code uses operand 0. Use getPointerOperand for loads and stores to fix this. Patch by Easwaran Raman. http://reviews.llvm.org/D8425 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232827 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -621,7 +621,7 @@ bool CallAnalyzer::visitBinaryOperator(BinaryOperator &I) {
|
||||
bool CallAnalyzer::visitLoad(LoadInst &I) {
|
||||
Value *SROAArg;
|
||||
DenseMap<Value *, int>::iterator CostIt;
|
||||
if (lookupSROAArgAndCost(I.getOperand(0), SROAArg, CostIt)) {
|
||||
if (lookupSROAArgAndCost(I.getPointerOperand(), SROAArg, CostIt)) {
|
||||
if (I.isSimple()) {
|
||||
accumulateSROACost(CostIt, InlineConstants::InstrCost);
|
||||
return true;
|
||||
@@ -636,7 +636,7 @@ bool CallAnalyzer::visitLoad(LoadInst &I) {
|
||||
bool CallAnalyzer::visitStore(StoreInst &I) {
|
||||
Value *SROAArg;
|
||||
DenseMap<Value *, int>::iterator CostIt;
|
||||
if (lookupSROAArgAndCost(I.getOperand(0), SROAArg, CostIt)) {
|
||||
if (lookupSROAArgAndCost(I.getPointerOperand(), SROAArg, CostIt)) {
|
||||
if (I.isSimple()) {
|
||||
accumulateSROACost(CostIt, InlineConstants::InstrCost);
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user