Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
506B

  1. Stack underflow and overflow: In each native word involving
  2. PSP popping, we check whether the stack is big enough. If it's
  3. not we go in "uflw" (underflow) error condition, then abort.
  4. We don't check RSP for underflow because the cost of the check
  5. is significant and its usefulness is dubious: if RSP isn't
  6. tightly in control, we're screwed anyways, and that, well
  7. before we reach underflow.
  8. Overflow condition happen when RSP and PSP meet somewhere in
  9. the middle. That check is made at each "next" call.