Lines Matching refs:compile_stack
2211 # define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
2212 # define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
2215 # define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
2326 compile_stack,
2351 return (free(pattern), free(mbs_offset), free(is_binary), free (compile_stack.stack), value)
2354 return (free (compile_stack.stack), value)
2388 compile_stack_type compile_stack; variable
2463 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
2464 if (compile_stack.stack == NULL)
2474 compile_stack.size = INIT_COMPILE_STACK_SIZE;
2475 compile_stack.avail = 0;
3735 RETALLOC (compile_stack.stack, compile_stack.size << 1,
3737 if (compile_stack.stack == NULL) return REG_ESPACE;
3739 compile_stack.size <<= 1;
3763 compile_stack.avail++;
3810 assert (compile_stack.avail != 0);
3817 compile_stack.avail--;
4140 if (group_in_compile_stack (compile_stack, (regnum_t) c1))
4235 free (compile_stack.stack);
4415 group_in_compile_stack (compile_stack, regnum) in group_in_compile_stack() argument
4416 compile_stack_type compile_stack; in group_in_compile_stack()
4421 for (this_element = compile_stack.avail - 1;
4424 if (compile_stack.stack[this_element].regnum == regnum)