Lines Matching defs:bytes
217 // Clear the top two bytes (which may include metadata). Must be in sync with
796 int bytes = 0;
800 bytes += kSystemPointerSize;
806 bytes += kStackSavedSavedFPSize * XMMRegister::kNumRegisters;
809 return bytes;
818 int bytes = 0;
823 bytes += kSystemPointerSize;
839 bytes += delta;
842 return bytes;
848 int bytes = 0;
860 bytes += delta;
867 bytes += kSystemPointerSize;
871 return bytes;
1463 // This sequence has only 7 bytes, compared to the 12 bytes below.
2622 // TODO(victorgomes): Save some bytes in the builtins that use stack checks
2798 void TurboAssembler::AllocateStackSpace(int bytes) {
2800 DCHECK_GE(bytes, 0);
2801 while (bytes >= kStackPageSize) {
2804 bytes -= kStackPageSize;
2806 if (bytes == 0) return;
2807 subq(rsp, Immediate(bytes));