Lines Matching refs:Pt
309 bool isSpillPt(MachineInstr *Pt) const { in isSpillPt() argument
310 return SpillPt2VirtMap.find(Pt) != SpillPt2VirtMap.end(); in isSpillPt()
315 std::vector<std::pair<unsigned,bool> > &getSpillPtSpills(MachineInstr *Pt) { in getSpillPtSpills() argument
316 return SpillPt2VirtMap[Pt]; in getSpillPtSpills()
320 void addSpillPoint(unsigned virtReg, bool isKill, MachineInstr *Pt) { in addSpillPoint() argument
322 I = SpillPt2VirtMap.find(Pt); in addSpillPoint()
328 SpillPt2VirtMap.insert(std::make_pair(Pt, Virts)); in addSpillPoint()
349 bool isRestorePt(MachineInstr *Pt) const { in isRestorePt() argument
350 return RestorePt2VirtMap.find(Pt) != RestorePt2VirtMap.end(); in isRestorePt()
355 std::vector<unsigned> &getRestorePtRestores(MachineInstr *Pt) { in getRestorePtRestores() argument
356 return RestorePt2VirtMap[Pt]; in getRestorePtRestores()
360 void addRestorePoint(unsigned virtReg, MachineInstr *Pt) { in addRestorePoint() argument
362 RestorePt2VirtMap.find(Pt); in addRestorePoint()
368 RestorePt2VirtMap.insert(std::make_pair(Pt, Virts)); in addRestorePoint()