Searched refs:emit_write_bytecode_byte_qstr (Results 1 – 1 of 1) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | emitbc.c | 233 STATIC void emit_write_bytecode_byte_qstr(emit_t *emit, int stack_adj, byte b, qstr qst) { in emit_write_bytecode_byte_qstr() function 511 emit_write_bytecode_byte_qstr(emit, stack_adj, MP_BC_IMPORT_NAME + kind, qst); in mp_emit_bc_import() 536 emit_write_bytecode_byte_qstr(emit, 1, MP_BC_LOAD_CONST_STRING, qst); in mp_emit_bc_load_const_str() 562 emit_write_bytecode_byte_qstr(emit, 1, MP_BC_LOAD_NAME + kind, qst); in mp_emit_bc_load_global() 570 …emit_write_bytecode_byte_qstr(emit, stack_adj, is_super ? MP_BC_LOAD_SUPER_METHOD : MP_BC_LOAD_MET… in mp_emit_bc_load_method() 591 emit_write_bytecode_byte_qstr(emit, 0, MP_BC_LOAD_ATTR, qst); in mp_emit_bc_attr() 597 emit_write_bytecode_byte_qstr(emit, -2, MP_BC_STORE_ATTR, qst); in mp_emit_bc_attr() 618 emit_write_bytecode_byte_qstr(emit, -1, MP_BC_STORE_NAME + kind, qst); in mp_emit_bc_store_global() 631 emit_write_bytecode_byte_qstr(emit, 0, MP_BC_DELETE_NAME + kind, qst); in mp_emit_bc_delete_global()
|
Completed in 5 milliseconds