Lines Matching defs:FrameSize
206 // Adjust SP by FrameSize bytes. Save RA, S0, S1
207 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize,
216 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16;
222 if (isUInt<11>(FrameSize))
223 MIB.addImm(FrameSize);
227 int64_t Remainder = FrameSize - Base;
236 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
237 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize,
246 unsigned Opc = ((FrameSize <= 128) && !SaveS2)?
249 if (!isUInt<11>(FrameSize)) {
251 int64_t Remainder = FrameSize - Base;
252 FrameSize = Base; // should create template function like isUInt that
265 MIB.addImm(FrameSize);