Lines Matching refs:compile_stack
2129 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
2130 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
2133 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
2236 compile_stack,
2260 return (free(pattern), free(mbs_offset), free(is_binary), free (compile_stack.stack), value)
2263 return (free (compile_stack.stack), value)
2303 compile_stack_type compile_stack; local
2378 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
2379 if (compile_stack.stack == NULL)
2389 compile_stack.size = INIT_COMPILE_STACK_SIZE;
2390 compile_stack.avail = 0;
3655 RETALLOC (compile_stack.stack, compile_stack.size << 1,
3657 if (compile_stack.stack == NULL) return REG_ESPACE;
3659 compile_stack.size <<= 1;
3683 compile_stack.avail++;
3730 assert (compile_stack.avail != 0);
3737 compile_stack.avail--;
4059 if (group_in_compile_stack (compile_stack, (regnum_t) c1))
4154 free (compile_stack.stack);
4333 group_in_compile_stack (compile_stack, regnum) in group_in_compile_stack() argument
4334 compile_stack_type compile_stack; in group_in_compile_stack()
4339 for (this_element = compile_stack.avail - 1;
4342 if (compile_stack.stack[this_element].regnum == regnum)