Lines Matching refs:LastPush
842 MachineBasicBlock::iterator LastPush = MBB.end(), GPRCS1Push, GPRCS2Push; in emitPrologue() local
846 LastPush = MBBI++; in emitPrologue()
850 LastPush = MBBI++; in emitPrologue()
851 DefCFAOffsetCandidates.addInst(LastPush, FPCXTSaveSize, true); in emitPrologue()
858 LastPush = std::prev(MBBI); in emitPrologue()
859 DefCFAOffsetCandidates.addInst(LastPush, ArgRegsSaveSize, true); in emitPrologue()
864 GPRCS1Push = LastPush = MBBI++; in emitPrologue()
865 DefCFAOffsetCandidates.addInst(LastPush, GPRCS1Size, true); in emitPrologue()
901 GPRCS2Push = LastPush = MBBI++; in emitPrologue()
902 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size); in emitPrologue()
909 if (LastPush != MBB.end() && in emitPrologue()
910 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, DPRGapSize)) in emitPrologue()
911 DefCFAOffsetCandidates.addExtraBytes(LastPush, DPRGapSize); in emitPrologue()
925 LastPush = MBBI++; in emitPrologue()
941 GPRCS2Push = LastPush = MBBI++; in emitPrologue()
942 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size); in emitPrologue()
1017 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, NumBytes)) in emitPrologue()
1018 DefCFAOffsetCandidates.addExtraBytes(LastPush, NumBytes); in emitPrologue()
1157 MachineBasicBlock::iterator Pos = std::next(LastPush); in emitPrologue()