Lines Matching refs:entry
4 * The primary entry point is _PyAST_Compile(), which returns a
251 /* depth of stack upon entry of block, computed by stackdepth() */
296 /* The following items change on entry and exit of code blocks.
3331 stack entry contains the instruction that created it (here
3333 block stack entry was created, and a label (here L).
3339 Pops en entry from the block stack.
3342 when a SETUP_FINALLY entry is found, the raised and the caught
7329 label_exception_targets(basicblock *entry) {
7331 for (basicblock *b = entry; b != NULL; b = b->b_next) {
7347 todo_stack[0] = entry;
7348 entry->b_visited = 1;
7349 entry->b_exceptstack = except_stack;
7414 for (basicblock *b = entry; b != NULL; b = b->b_next) {
7428 convert_exception_handlers_to_nops(basicblock *entry) {
7429 for (basicblock *b = entry; b != NULL; b = b->b_next) {
9213 eliminate_empty_basic_blocks(basicblock *entry) {
9215 for (basicblock *b = entry; b != NULL; b = b->b_next) {
9224 for (basicblock *b = entry; b != NULL; b = b->b_next) {