Lines Matching refs:SII
1577 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII = in rewriteInstructionsForSpills() local
1580 if (SII == SpillIdxes.end()) { in rewriteInstructionsForSpills()
1584 } else if (SII->second.back().vreg != NewVReg) { in rewriteInstructionsForSpills()
1585 SII->second.push_back(SRInfo(index, NewVReg, true)); in rewriteInstructionsForSpills()
1586 } else if (index > SII->second.back().index) { in rewriteInstructionsForSpills()
1590 SRInfo &Info = SII->second.back(); in rewriteInstructionsForSpills()
1595 } else if (SII != SpillIdxes.end() && in rewriteInstructionsForSpills()
1596 SII->second.back().vreg == NewVReg && in rewriteInstructionsForSpills()
1597 index > SII->second.back().index) { in rewriteInstructionsForSpills()
1600 SII->second.pop_back(); in rewriteInstructionsForSpills()
1601 if (SII->second.empty()) { in rewriteInstructionsForSpills()
1610 DenseMap<unsigned, std::vector<SRInfo> >::iterator SII = in rewriteInstructionsForSpills() local
1612 if (SII != SpillIdxes.end() && in rewriteInstructionsForSpills()
1613 SII->second.back().vreg == NewVReg && in rewriteInstructionsForSpills()
1614 index > SII->second.back().index) in rewriteInstructionsForSpills()
1616 SII->second.back().canFold = false; in rewriteInstructionsForSpills()