Lines Matching refs:FrameSize
215 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize, in makeFrame() argument
224 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16; in makeFrame()
230 if (isUInt<11>(FrameSize)) in makeFrame()
231 MIB.addImm(FrameSize); in makeFrame()
235 int64_t Remainder = FrameSize - Base; in makeFrame()
245 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize, in restoreFrame() argument
254 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? in restoreFrame()
257 if (!isUInt<11>(FrameSize)) { in restoreFrame()
259 int64_t Remainder = FrameSize - Base; in restoreFrame()
260 FrameSize = Base; // should create template function like isUInt that in restoreFrame()
273 MIB.addImm(FrameSize); in restoreFrame()