Lines Matching refs:compile_stack
1552 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
1553 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
1556 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
1660 return (free (compile_stack.stack), value)
1681 compile_stack_type compile_stack; local
1731 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
1732 if (compile_stack.stack == NULL)
1735 compile_stack.size = INIT_COMPILE_STACK_SIZE;
1736 compile_stack.avail = 0;
2191 RETALLOC (compile_stack.stack, compile_stack.size << 1,
2193 if (compile_stack.stack == NULL) return REG_ESPACE;
2195 compile_stack.size <<= 1;
2218 compile_stack.avail++;
2265 assert (compile_stack.avail != 0);
2272 compile_stack.avail--;
2582 if (group_in_compile_stack (compile_stack, c1))
2658 free (compile_stack.stack);
2829 group_in_compile_stack (compile_stack, regnum) in group_in_compile_stack() argument
2830 compile_stack_type compile_stack; in group_in_compile_stack()
2835 for (this_element = compile_stack.avail - 1;
2838 if (compile_stack.stack[this_element].regnum == regnum)