Damien George | c8f78bc | 2014-02-15 22:55:00 +0000 | [diff] [blame] | 1 | typedef enum { |
| 2 | MP_VM_RETURN_NORMAL, |
| 3 | MP_VM_RETURN_YIELD, |
| 4 | MP_VM_RETURN_EXCEPTION, |
| 5 | } mp_vm_return_kind_t; |
| 6 | |
Paul Sokolovsky | c0abc28 | 2014-03-22 13:49:31 +0200 | [diff] [blame] | 7 | // Exception stack entry |
| 8 | typedef struct _mp_exc_stack { |
| 9 | const byte *handler; |
| 10 | // bit 0 is saved currently_in_except_block value |
Paul Sokolovsky | 1673420 | 2014-03-22 23:20:07 +0200 | [diff] [blame] | 11 | mp_obj_t *val_sp; |
Paul Sokolovsky | 0c904df | 2014-03-30 00:48:21 +0200 | [diff] [blame] | 12 | // Saved exception, valid if currently_in_except_block bit is 1 |
| 13 | mp_obj_t prev_exc; |
Paul Sokolovsky | c0abc28 | 2014-03-22 13:49:31 +0200 | [diff] [blame] | 14 | // We might only have 2 interesting cases here: SETUP_EXCEPT & SETUP_FINALLY, |
| 15 | // consider storing it in bit 1 of val_sp. TODO: SETUP_WITH? |
| 16 | byte opcode; |
Damien George | 89f94b5 | 2014-03-30 00:57:09 +0000 | [diff] [blame^] | 17 | } mp_exc_stack_t; |
Paul Sokolovsky | c0abc28 | 2014-03-22 13:49:31 +0200 | [diff] [blame] | 18 | |
Damien George | bee17b0 | 2014-03-27 11:07:04 +0000 | [diff] [blame] | 19 | mp_vm_return_kind_t mp_execute_byte_code(const byte *code, const mp_obj_t *args, uint n_args, const mp_obj_t *args2, uint n_args2, mp_obj_t *ret); |
Damien George | 89f94b5 | 2014-03-30 00:57:09 +0000 | [diff] [blame^] | 20 | mp_vm_return_kind_t mp_execute_byte_code_2(const byte *code_info, const byte **ip_in_out, mp_obj_t *fastn, mp_obj_t **sp_in_out, mp_exc_stack_t *exc_stack, mp_exc_stack_t **exc_sp_in_out, volatile mp_obj_t inject_exc); |
Damien George | cbd2f74 | 2014-01-19 11:48:48 +0000 | [diff] [blame] | 21 | void mp_byte_code_print(const byte *code, int len); |
Paul Sokolovsky | 1673420 | 2014-03-22 23:20:07 +0200 | [diff] [blame] | 22 | |
| 23 | // Helper macros to access pointer with least significant bit holding a flag |
| 24 | #define MP_TAGPTR_PTR(x) ((void*)((machine_uint_t)(x) & ~((machine_uint_t)1))) |
| 25 | #define MP_TAGPTR_TAG(x) ((machine_uint_t)(x) & 1) |
| 26 | #define MP_TAGPTR_MAKE(ptr, tag) ((void*)((machine_uint_t)(ptr) | tag)) |