Lines Matching full:framesize
193 // Adjust SP by FrameSize bytes. Save RA, S0, S1
194 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize,
203 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16;
209 if (isUInt<11>(FrameSize))
210 MIB.addImm(FrameSize);
214 int64_t Remainder = FrameSize - Base;
223 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
224 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize,
233 unsigned Opc = ((FrameSize <= 128) && !SaveS2)?
236 if (!isUInt<11>(FrameSize)) {
238 int64_t Remainder = FrameSize - Base;
239 FrameSize = Base; // should create template function like isUInt that
252 MIB.addImm(FrameSize);