Home | History | Annotate | Download | only in Mips

Lines Matching refs:FrameSize

196 // Adjust SP by FrameSize bytes. Save RA, S0, S1
197 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize,
206 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16;
212 if (isUInt<11>(FrameSize))
213 MIB.addImm(FrameSize);
217 int64_t Remainder = FrameSize - Base;
226 // Adjust SP by FrameSize bytes. Restore RA, S0, S1
227 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize,
236 unsigned Opc = ((FrameSize <= 128) && !SaveS2)?
239 if (!isUInt<11>(FrameSize)) {
241 int64_t Remainder = FrameSize - Base;
242 FrameSize = Base; // should create template function like isUInt that
255 MIB.addImm(FrameSize);