Searched refs:n_exc_stack (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | bc.h | 130 size_t n_state, n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_def_pos_args; \ 131 …MP_BC_PRELUDE_SIG_DECODE_INTO(ip, n_state, n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_… 132 (void)n_state; (void)n_exc_stack; (void)scope_flags; \ 180 uint n_exc_stack; member
|
A D | objgenerator.c | 63 n_state * sizeof(mp_obj_t) + n_exc_stack * sizeof(mp_exc_stack_t)); in gen_wrap_call() 104 size_t n_exc_stack = 0; in native_gen_wrap_call() local 108 n_state * sizeof(mp_obj_t) + n_exc_stack * sizeof(mp_exc_stack_t)); in native_gen_wrap_call()
|
A D | objfun.c | 201 size_t n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_def_args; \ 202 …MP_BC_PRELUDE_SIG_DECODE_INTO(ip, n_state_out_var, n_exc_stack, scope_flags, n_pos_args, n_kwonly_… 207 + n_exc_stack * sizeof(mp_exc_stack_t); \
|
A D | persistentcode.c | 119 uint n_exc_stack; member 132 prelude->n_exc_stack = n_exc_stack; in extract_prelude()
|
A D | profile.c | 45 prelude->n_exc_stack = n_exc_stack; in mp_prof_extract_prelude()
|
A D | showbc.c | 119 mp_printf(print, "(N_EXC_STACK %u)\n", (unsigned)n_exc_stack); in mp_bytecode_print()
|
A D | emitbc.c | 341 size_t n_exc_stack = scope->exc_stack_size; in mp_emit_bc_start_pass() local 342 MP_BC_PRELUDE_SIG_ENCODE(n_state, n_exc_stack, scope, emit_write_code_info_byte, emit); in mp_emit_bc_start_pass()
|
A D | emitnative.c | 662 size_t n_exc_stack = 0; // exc-stack not needed for native code in emit_native_end_pass() local 663 …MP_BC_PRELUDE_SIG_ENCODE(n_state, n_exc_stack, emit->scope, emit_native_write_code_info_byte, emit… in emit_native_end_pass()
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | mpy-tool.py | 206 n_exc_stack, 219 return ip, ip2, (n_state, n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_def_pos_args) 691 n_exc_stack, 702 return n_state, n_exc_stack, scope_flags, n_pos_args, n_kwonly_args, n_def_pos_args
|
Completed in 22 milliseconds