Lines Matching refs:LastPush
868 MachineBasicBlock::iterator LastPush = MBB.end(), GPRCS1Push, GPRCS2Push; in emitPrologue() local
872 LastPush = MBBI++; in emitPrologue()
876 LastPush = MBBI++; in emitPrologue()
877 DefCFAOffsetCandidates.addInst(LastPush, FPCXTSaveSize, true); in emitPrologue()
884 LastPush = std::prev(MBBI); in emitPrologue()
885 DefCFAOffsetCandidates.addInst(LastPush, ArgRegsSaveSize, true); in emitPrologue()
890 GPRCS1Push = LastPush = MBBI++; in emitPrologue()
891 DefCFAOffsetCandidates.addInst(LastPush, GPRCS1Size, true); in emitPrologue()
927 GPRCS2Push = LastPush = MBBI++; in emitPrologue()
928 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size); in emitPrologue()
935 if (LastPush != MBB.end() && in emitPrologue()
936 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, DPRGapSize)) in emitPrologue()
937 DefCFAOffsetCandidates.addExtraBytes(LastPush, DPRGapSize); in emitPrologue()
951 LastPush = MBBI++; in emitPrologue()
967 GPRCS2Push = LastPush = MBBI++; in emitPrologue()
968 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size); in emitPrologue()
1043 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, NumBytes)) in emitPrologue()
1044 DefCFAOffsetCandidates.addExtraBytes(LastPush, NumBytes); in emitPrologue()
1183 MachineBasicBlock::iterator Pos = std::next(LastPush); in emitPrologue()