Home | History | Annotate | Download | only in gcc

Lines Matching defs:block_defs_stack

86 static vec<tree> block_defs_stack;
1145 /* Push SYM's current reaching definition into BLOCK_DEFS_STACK and
1175 block_defs_stack.safe_push (sym);
1177 /* Push the current reaching definition into BLOCK_DEFS_STACK. This
1183 block_defs_stack.safe_push (currdef ? currdef : sym);
1481 block_defs_stack.safe_push (NULL_TREE);
1519 while (block_defs_stack.length () > 0)
1521 tree tmp = block_defs_stack.pop ();
1539 var = block_defs_stack.pop ();
1565 /* Dump the renaming stack (block_defs_stack) to FILE. Traverse the
1582 for (j = (int) block_defs_stack.length () - 1; j >= 0; j--)
1586 name = block_defs_stack[j];
1607 var = block_defs_stack[j];
1623 /* Dump the renaming stack (block_defs_stack) to stderr. Traverse the
1778 /* Push the current reaching definition into BLOCK_DEFS_STACK.
1783 block_defs_stack.reserve (2);
1784 block_defs_stack.quick_push (currdef);
1785 block_defs_stack.quick_push (old_name);
2185 block_defs_stack.safe_push (NULL_TREE);
2248 /* Called after visiting block BB. Unwind BLOCK_DEFS_STACK to restore
2257 while (block_defs_stack.length () > 0)
2259 tree var = block_defs_stack.pop ();
2267 saved_def = block_defs_stack.pop ();
2290 block_defs_stack.create (10);
2309 block_defs_stack.release ();