Lines Matching refs:FrameSize
196 void Mips16InstrInfo::makeFrame(unsigned SP, int64_t FrameSize, in makeFrame() argument
205 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? Mips::Save16:Mips::SaveX16; in makeFrame()
211 if (isUInt<11>(FrameSize)) in makeFrame()
212 MIB.addImm(FrameSize); in makeFrame()
216 int64_t Remainder = FrameSize - Base; in makeFrame()
226 void Mips16InstrInfo::restoreFrame(unsigned SP, int64_t FrameSize, in restoreFrame() argument
235 unsigned Opc = ((FrameSize <= 128) && !SaveS2)? in restoreFrame()
238 if (!isUInt<11>(FrameSize)) { in restoreFrame()
240 int64_t Remainder = FrameSize - Base; in restoreFrame()
241 FrameSize = Base; // should create template function like isUInt that in restoreFrame()
254 MIB.addImm(FrameSize); in restoreFrame()