Lines Matching refs:LastPush
869 MachineBasicBlock::iterator LastPush = MBB.end(), GPRCS1Push, GPRCS2Push; in emitPrologue() local
873 LastPush = MBBI++; in emitPrologue()
877 LastPush = MBBI++; in emitPrologue()
878 DefCFAOffsetCandidates.addInst(LastPush, FPCXTSaveSize, true); in emitPrologue()
885 LastPush = std::prev(MBBI); in emitPrologue()
886 DefCFAOffsetCandidates.addInst(LastPush, ArgRegsSaveSize, true); in emitPrologue()
891 GPRCS1Push = LastPush = MBBI++; in emitPrologue()
892 DefCFAOffsetCandidates.addInst(LastPush, GPRCS1Size, true); in emitPrologue()
928 GPRCS2Push = LastPush = MBBI++; in emitPrologue()
929 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size); in emitPrologue()
936 if (LastPush != MBB.end() && in emitPrologue()
937 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, DPRGapSize)) in emitPrologue()
938 DefCFAOffsetCandidates.addExtraBytes(LastPush, DPRGapSize); in emitPrologue()
952 LastPush = MBBI++; in emitPrologue()
968 GPRCS2Push = LastPush = MBBI++; in emitPrologue()
969 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size); in emitPrologue()
1044 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, NumBytes)) in emitPrologue()
1045 DefCFAOffsetCandidates.addExtraBytes(LastPush, NumBytes); in emitPrologue()
1184 MachineBasicBlock::iterator Pos = std::next(LastPush); in emitPrologue()