Lines Matching refs:compile_stack
1700 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
1701 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
1704 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
1855 free (compile_stack.stack); \
1878 compile_stack_type compile_stack; local
1936 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
1937 if (compile_stack.stack == NULL)
1940 compile_stack.size = INIT_COMPILE_STACK_SIZE;
1941 compile_stack.avail = 0;
2475 RETALLOC (compile_stack.stack, compile_stack.size << 1,
2477 if (compile_stack.stack == NULL) return REG_ESPACE;
2479 compile_stack.size <<= 1;
2502 compile_stack.avail++;
2547 assert (compile_stack.avail != 0);
2554 compile_stack.avail--;
2876 if (group_in_compile_stack (compile_stack, c1))
2978 free (compile_stack.stack);
3146 group_in_compile_stack (compile_stack, regnum) in group_in_compile_stack() argument
3147 compile_stack_type compile_stack; in group_in_compile_stack()
3152 for (this_element = compile_stack.avail - 1;
3155 if (compile_stack.stack[this_element].regnum == regnum)