Lines Matching refs:FrameSize
173 // Adjust SP by FrameSize bytes. Save RA, S0, S1
174 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize,
179 if (isUInt<11>(FrameSize))
180 BuildMI(MBB, I, DL, get(Mips::SaveRaF16)).addImm(FrameSize);
184 int64_t Remainder = FrameSize - Base;
211 adjustStackPtrBig(SP, -FrameSize, MBB, I, Mips::V0, Mips::V1);
215 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
216 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize,
221 if (isUInt<11>(FrameSize))
222 BuildMI(MBB, I, DL, get(Mips::RestoreRaF16)).addImm(FrameSize);
226 int64_t Remainder = FrameSize - Base;
235 adjustStackPtrBig(SP, FrameSize, MBB, I, Mips::A0, Mips::A1);