Lines Matching refs:b_instr
66 struct instr *b_instr; member
517 if (block->b_instr != NULL) { in compiler_unit_check()
537 if (b->b_instr) in compiler_unit_free()
538 PyObject_Free((void *)b->b_instr); in compiler_unit_free()
810 if (b->b_instr == NULL) { in compiler_next_instr()
811 b->b_instr = (struct instr *)PyObject_Calloc( in compiler_next_instr()
813 if (b->b_instr == NULL) { in compiler_next_instr()
836 (void *)b->b_instr, newsize); in compiler_next_instr()
841 b->b_instr = tmp; in compiler_next_instr()
842 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize); in compiler_next_instr()
1155 i = &b->b_instr[off]; in compiler_addop()
1392 i = &c->u->u_curblock->b_instr[off]; in compiler_addop_i()
1414 i = &c->u->u_curblock->b_instr[off]; in compiler_addop_j()
5460 struct instr *instr = &b->b_instr[i]; in dfs()
5510 struct instr *instr = &b->b_instr[i]; in stackdepth()
5591 size += instrsize(b->b_instr[i].i_oparg); in blocksize()
5752 struct instr *instr = &b->b_instr[i]; in assemble_jump_offsets()
6002 if (b->b_instr) {
6006 dump_instr(b->b_instr + i);
6040 if (entryblock && entryblock->b_instr && entryblock->b_instr->i_lineno) in assemble()
6041 c->u->u_firstlineno = entryblock->b_instr->i_lineno; in assemble()
6056 if (!assemble_emit(&a, &b->b_instr[j])) in assemble()