Lines Matching refs:compile_stack
2137 # define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
2138 # define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
2141 # define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
2250 static boolean group_in_compile_stack (compile_stack_type compile_stack,
2275 return (free(pattern), free(mbs_offset), free(is_binary), free (compile_stack.stack), value)
2278 return (free (compile_stack.stack), value)
2310 compile_stack_type compile_stack; in PREFIX() local
2385 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t); in PREFIX()
2386 if (compile_stack.stack == NULL) in PREFIX()
2396 compile_stack.size = INIT_COMPILE_STACK_SIZE; in PREFIX()
2397 compile_stack.avail = 0; in PREFIX()
3662 RETALLOC (compile_stack.stack, compile_stack.size << 1, in PREFIX()
3664 if (compile_stack.stack == NULL) return REG_ESPACE; in PREFIX()
3666 compile_stack.size <<= 1; in PREFIX()
3690 compile_stack.avail++; in PREFIX()
3737 assert (compile_stack.avail != 0); in PREFIX()
3744 compile_stack.avail--; in PREFIX()
4067 if (group_in_compile_stack (compile_stack, (regnum_t) c1)) in PREFIX()
4162 free (compile_stack.stack); in PREFIX()
4327 group_in_compile_stack (compile_stack_type compile_stack, regnum_t regnum) in group_in_compile_stack() argument
4331 for (this_element = compile_stack.avail - 1; in group_in_compile_stack()
4334 if (compile_stack.stack[this_element].regnum == regnum) in group_in_compile_stack()