Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Pt

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