#define BYTE_CODE_QUIT \
do { \
+ if (quitcounter++) \
+ break; \
+ maybe_gc (); \
if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \
{ \
Lisp_Object flag = Vquit_flag; \
stack.pc = stack.byte_string_start = SDATA (bytestr);
if (MAX_ALLOCA / word_size <= XFASTINT (maxdepth))
memory_full (SIZE_MAX);
+ unsigned char quitcounter = 0;
int stack_items = XFASTINT (maxdepth) + 1;
Lisp_Object *stack_base = alloca (stack_items * sizeof *top);
Lisp_Object *stack_lim = stack_base + stack_items;
CASE (Bgotoifnil):
{
Lisp_Object v1;
- maybe_gc ();
op = FETCH2;
v1 = POP;
if (NILP (v1))
NEXT;
CASE (Bgoto):
- maybe_gc ();
BYTE_CODE_QUIT;
op = FETCH2; /* pc = FETCH2 loses since FETCH2 contains pc++ */
CHECK_RANGE (op);
CASE (Bgotoifnonnil):
{
Lisp_Object v1;
- maybe_gc ();
op = FETCH2;
v1 = POP;
if (!NILP (v1))
}
CASE (Bgotoifnilelsepop):
- maybe_gc ();
op = FETCH2;
if (NILP (TOP))
{
NEXT;
CASE (Bgotoifnonnilelsepop):
- maybe_gc ();
op = FETCH2;
if (!NILP (TOP))
{
NEXT;
CASE (BRgoto):
- maybe_gc ();
BYTE_CODE_QUIT;
stack.pc += (int) *stack.pc - 127;
NEXT;
CASE (BRgotoifnil):
{
Lisp_Object v1;
- maybe_gc ();
v1 = POP;
if (NILP (v1))
{
CASE (BRgotoifnonnil):
{
Lisp_Object v1;
- maybe_gc ();
v1 = POP;
if (!NILP (v1))
{
}
CASE (BRgotoifnilelsepop):
- maybe_gc ();
op = *stack.pc++;
if (NILP (TOP))
{
NEXT;
CASE (BRgotoifnonnilelsepop):
- maybe_gc ();
op = *stack.pc++;
if (!NILP (TOP))
{