reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/ARM/ARMFrameLowering.cpp
 1751         UnspilledCS1GPRs.push_back(Reg);
 1761         UnspilledCS1GPRs.push_back(Reg);
 1883         auto LRPos = llvm::find(UnspilledCS1GPRs, ARM::LR);
 1884         if (LRPos != UnspilledCS1GPRs.end())
 1885           UnspilledCS1GPRs.erase(LRPos);
 1887       auto FPPos = llvm::find(UnspilledCS1GPRs, FramePtr);
 1888       if (FPPos != UnspilledCS1GPRs.end())
 1889         UnspilledCS1GPRs.erase(FPPos);
 2016         UnspilledCS1GPRs.erase(llvm::find(UnspilledCS1GPRs, Reg));
 2016         UnspilledCS1GPRs.erase(llvm::find(UnspilledCS1GPRs, Reg));
 2034       LRPos = llvm::find(UnspilledCS1GPRs, (unsigned)ARM::LR);
 2035       if (LRPos != UnspilledCS1GPRs.end())
 2036         UnspilledCS1GPRs.erase(LRPos);
 2050       if (CS1Spilled && !UnspilledCS1GPRs.empty()) {
 2051         for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) {
 2052           unsigned Reg = UnspilledCS1GPRs[i];
 2088       while (NumExtras && !UnspilledCS1GPRs.empty()) {
 2089         unsigned Reg = UnspilledCS1GPRs.back();
 2090         UnspilledCS1GPRs.pop_back();