Lines Matching defs:compiler_unit
97 struct compiler_unit { struct
98 PySTEntryObject *u_ste;
100 PyObject *u_name;
105 PyObject *u_consts; /* all constants */
106 PyObject *u_names; /* all names */
107 PyObject *u_varnames; /* local variables */
108 PyObject *u_cellvars; /* cell variables */
109 PyObject *u_freevars; /* free variables */
111 PyObject *u_private; /* for private name mangling */
113 int u_argcount; /* number of arguments for block */
116 basicblock *u_blocks;
117 basicblock *u_curblock; /* pointer to current block */
119 int u_nfblocks;
120 struct fblockinfo u_fblock[CO_MAXBLOCKS];
144 struct compiler_unit *u; /* compiler state for current block */ argument