Home
last modified time | relevance | path

Searched refs:except_stack (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Python/
Dflowgraph.c847 struct _PyCfgExceptStack *except_stack = make_except_stack(); in label_exception_targets() local
848 if (except_stack == NULL) { in label_exception_targets()
853 except_stack->depth = 0; in label_exception_targets()
856 entryblock->b_exceptstack = except_stack; in label_exception_targets()
863 except_stack = b->b_exceptstack; in label_exception_targets()
864 assert(except_stack != NULL); in label_exception_targets()
866 handler = except_stack_top(except_stack); in label_exception_targets()
872 struct _PyCfgExceptStack *copy = copy_except_stack(except_stack); in label_exception_targets()
881 handler = push_except_block(except_stack, instr); in label_exception_targets()
884 handler = pop_except_block(except_stack); in label_exception_targets()
[all …]