Lines Matching refs:NumBytes
138 uint64_t NumBytes, in emitPrologueInsns() argument
186 uint64_t NumBytes, in emitEpilogueInsns() argument
229 int64_t NumBytes, in emitSPAdjustment() argument
234 if (NumBytes == 0) { in emitSPAdjustment()
236 } else if (isInt<7>(NumBytes)) { in emitSPAdjustment()
240 .addImm(NumBytes); in emitSPAdjustment()
241 } else if (isInt<32>(NumBytes)) { in emitSPAdjustment()
246 .addImm(Lo_32(NumBytes)); in emitSPAdjustment()
256 .addImm(Lo_32(NumBytes)); in emitSPAdjustment()
263 .addImm(Hi_32(NumBytes)); in emitSPAdjustment()
330 uint64_t NumBytes = MFI.getStackSize(); in emitPrologue() local
337 NumBytes = STI.getAdjustedFrameSize(NumBytes); in emitPrologue()
342 NumBytes = alignTo(NumBytes, MFI.getMaxAlign()); in emitPrologue()
345 MFI.setStackSize(NumBytes); in emitPrologue()
348 emitPrologueInsns(MF, MBB, MBBI, NumBytes, true); in emitPrologue()
363 emitSPAdjustment(MF, MBB, MBBI, -(int64_t)NumBytes, RuntimeAlign); in emitPrologue()
373 if (NumBytes != 0) in emitPrologue()
400 uint64_t NumBytes = MFI.getStackSize(); in emitEpilogue() local
411 emitSPAdjustment(MF, MBB, MBBI, NumBytes, std::nullopt); in emitEpilogue()
415 emitEpilogueInsns(MF, MBB, MBBI, NumBytes, true); in emitEpilogue()