Lines Matching refs:FrameSize
210 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize, in makeFrame() argument
219 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16; in makeFrame()
225 if (isUInt<11>(FrameSize)) in makeFrame()
226 MIB.addImm(FrameSize); in makeFrame()
230 int64_t Remainder = FrameSize - Base; in makeFrame()
240 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize, in restoreFrame() argument
249 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? in restoreFrame()
252 if (!isUInt<11>(FrameSize)) { in restoreFrame()
254 int64_t Remainder = FrameSize - Base; in restoreFrame()
255 FrameSize = Base; // should create template function like isUInt that in restoreFrame()
268 MIB.addImm(FrameSize); in restoreFrame()