Lines Matching refs:compiler_unit
103 struct compiler_unit { struct
161 struct compiler_unit *u; /* compiler state for current block */
494 compiler_unit_check(struct compiler_unit *u) in compiler_unit_check()
514 compiler_unit_free(struct compiler_unit *u) in compiler_unit_free()
543 struct compiler_unit *u; in compiler_enter_scope()
546 u = (struct compiler_unit *)PyObject_Malloc(sizeof( in compiler_enter_scope()
547 struct compiler_unit)); in compiler_enter_scope()
552 memset(u, 0, sizeof(struct compiler_unit)); in compiler_enter_scope()
661 c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME); in compiler_exit_scope()
679 struct compiler_unit *u = c->u; in compiler_set_qualname()
687 struct compiler_unit *parent; in compiler_set_qualname()
691 parent = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME); in compiler_set_qualname()
758 struct compiler_unit *u; in compiler_new_block()
4777 struct compiler_unit *u = c->u; in compiler_pop_fblock()
4787 struct compiler_unit *u = c->u; in compiler_in_loop()