Lines Matching refs:FrameSize
194 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize, in makeFrame() argument
203 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16; in makeFrame()
209 if (isUInt<11>(FrameSize)) in makeFrame()
210 MIB.addImm(FrameSize); in makeFrame()
214 int64_t Remainder = FrameSize - Base; in makeFrame()
224 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize, in restoreFrame() argument
233 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? in restoreFrame()
236 if (!isUInt<11>(FrameSize)) { in restoreFrame()
238 int64_t Remainder = FrameSize - Base; in restoreFrame()
239 FrameSize = Base; // should create template function like isUInt that in restoreFrame()
252 MIB.addImm(FrameSize); in restoreFrame()