2014-05-03 18:27:38 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-10-04 14:53:11 -04:00
|
|
|
/* Notes on passes:
|
|
|
|
* We don't know exactly the opcodes in pass 1 because they depend on the
|
|
|
|
* closing over of variables (LOAD_CLOSURE, BUILD_TUPLE, MAKE_CLOSURE), which
|
|
|
|
* depends on determining the scope of variables in each function, and this
|
|
|
|
* is not known until the end of pass 1.
|
|
|
|
* As a consequence, we don't know the maximum stack size until the end of pass 2.
|
|
|
|
* This is problematic for some emitters (x64) since they need to know the maximum
|
2014-01-06 10:49:21 -05:00
|
|
|
* stack size to compile the entry to the function, and this affects code size.
|
2013-10-04 14:53:11 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
typedef enum {
|
2014-05-07 12:24:22 -04:00
|
|
|
MP_PASS_SCOPE = 1, // work out id's and their kind, and number of labels
|
|
|
|
MP_PASS_STACK_SIZE = 2, // work out maximum stack size
|
|
|
|
MP_PASS_CODE_SIZE = 3, // work out code size and label offsets
|
|
|
|
MP_PASS_EMIT = 4, // emit code
|
2013-10-04 14:53:11 -04:00
|
|
|
} pass_kind_t;
|
|
|
|
|
2014-04-09 07:43:17 -04:00
|
|
|
#define MP_EMIT_STAR_FLAG_SINGLE (0x01)
|
|
|
|
#define MP_EMIT_STAR_FLAG_DOUBLE (0x02)
|
|
|
|
|
2014-05-30 10:20:41 -04:00
|
|
|
#define MP_EMIT_BREAK_FROM_FOR (0x8000)
|
|
|
|
|
2013-10-05 07:19:06 -04:00
|
|
|
typedef struct _emit_t emit_t;
|
|
|
|
|
|
|
|
typedef struct _emit_method_table_t {
|
|
|
|
void (*set_native_types)(emit_t *emit, bool do_native_types);
|
|
|
|
void (*start_pass)(emit_t *emit, pass_kind_t pass, scope_t *scope);
|
|
|
|
void (*end_pass)(emit_t *emit);
|
|
|
|
bool (*last_emit_was_return_value)(emit_t *emit);
|
2014-04-10 13:28:54 -04:00
|
|
|
void (*adjust_stack_size)(emit_t *emit, int delta);
|
2014-01-18 18:24:36 -05:00
|
|
|
void (*set_line_number)(emit_t *emit, int line);
|
2013-10-05 07:19:06 -04:00
|
|
|
|
2013-10-05 09:17:09 -04:00
|
|
|
void (*load_id)(emit_t *emit, qstr qstr);
|
|
|
|
void (*store_id)(emit_t *emit, qstr qstr);
|
|
|
|
void (*delete_id)(emit_t *emit, qstr qstr);
|
|
|
|
|
2014-04-10 09:11:31 -04:00
|
|
|
void (*label_assign)(emit_t *emit, uint l);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*import_name)(emit_t *emit, qstr qstr);
|
|
|
|
void (*import_from)(emit_t *emit, qstr qstr);
|
|
|
|
void (*import_star)(emit_t *emit);
|
2013-12-21 13:17:45 -05:00
|
|
|
void (*load_const_tok)(emit_t *emit, mp_token_kind_t tok);
|
2014-01-29 13:58:52 -05:00
|
|
|
void (*load_const_small_int)(emit_t *emit, machine_int_t arg);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*load_const_int)(emit_t *emit, qstr qstr);
|
|
|
|
void (*load_const_dec)(emit_t *emit, qstr qstr);
|
|
|
|
void (*load_const_str)(emit_t *emit, qstr qstr, bool bytes);
|
2014-04-20 12:50:40 -04:00
|
|
|
void (*load_null)(emit_t *emit);
|
2014-04-09 10:26:46 -04:00
|
|
|
void (*load_fast)(emit_t *emit, qstr qstr, uint id_flags, int local_num);
|
2013-10-20 10:07:49 -04:00
|
|
|
void (*load_deref)(emit_t *emit, qstr qstr, int local_num);
|
2013-12-10 19:41:43 -05:00
|
|
|
void (*load_name)(emit_t *emit, qstr qstr);
|
|
|
|
void (*load_global)(emit_t *emit, qstr qstr);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*load_attr)(emit_t *emit, qstr qstr);
|
|
|
|
void (*load_method)(emit_t *emit, qstr qstr);
|
|
|
|
void (*load_build_class)(emit_t *emit);
|
2014-04-17 17:10:53 -04:00
|
|
|
void (*load_subscr)(emit_t *emit);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*store_fast)(emit_t *emit, qstr qstr, int local_num);
|
2013-12-10 19:41:43 -05:00
|
|
|
void (*store_deref)(emit_t *emit, qstr qstr, int local_num);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*store_name)(emit_t *emit, qstr qstr);
|
|
|
|
void (*store_global)(emit_t *emit, qstr qstr);
|
|
|
|
void (*store_attr)(emit_t *emit, qstr qstr);
|
|
|
|
void (*store_subscr)(emit_t *emit);
|
|
|
|
void (*delete_fast)(emit_t *emit, qstr qstr, int local_num);
|
2013-12-10 19:41:43 -05:00
|
|
|
void (*delete_deref)(emit_t *emit, qstr qstr, int local_num);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*delete_name)(emit_t *emit, qstr qstr);
|
|
|
|
void (*delete_global)(emit_t *emit, qstr qstr);
|
|
|
|
void (*delete_attr)(emit_t *emit, qstr qstr);
|
|
|
|
void (*delete_subscr)(emit_t *emit);
|
|
|
|
void (*dup_top)(emit_t *emit);
|
|
|
|
void (*dup_top_two)(emit_t *emit);
|
|
|
|
void (*pop_top)(emit_t *emit);
|
|
|
|
void (*rot_two)(emit_t *emit);
|
|
|
|
void (*rot_three)(emit_t *emit);
|
2014-04-10 09:11:31 -04:00
|
|
|
void (*jump)(emit_t *emit, uint label);
|
|
|
|
void (*pop_jump_if_true)(emit_t *emit, uint label);
|
|
|
|
void (*pop_jump_if_false)(emit_t *emit, uint label);
|
|
|
|
void (*jump_if_true_or_pop)(emit_t *emit, uint label);
|
|
|
|
void (*jump_if_false_or_pop)(emit_t *emit, uint label);
|
|
|
|
void (*break_loop)(emit_t *emit, uint label, int except_depth);
|
|
|
|
void (*continue_loop)(emit_t *emit, uint label, int except_depth);
|
|
|
|
void (*setup_with)(emit_t *emit, uint label);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*with_cleanup)(emit_t *emit);
|
2014-04-10 09:11:31 -04:00
|
|
|
void (*setup_except)(emit_t *emit, uint label);
|
|
|
|
void (*setup_finally)(emit_t *emit, uint label);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*end_finally)(emit_t *emit);
|
2014-03-27 19:26:35 -04:00
|
|
|
void (*get_iter)(emit_t *emit);
|
2014-04-10 09:11:31 -04:00
|
|
|
void (*for_iter)(emit_t *emit, uint label);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*for_iter_end)(emit_t *emit);
|
|
|
|
void (*pop_block)(emit_t *emit);
|
|
|
|
void (*pop_except)(emit_t *emit);
|
2014-03-30 08:35:08 -04:00
|
|
|
void (*unary_op)(emit_t *emit, mp_unary_op_t op);
|
|
|
|
void (*binary_op)(emit_t *emit, mp_binary_op_t op);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*build_tuple)(emit_t *emit, int n_args);
|
|
|
|
void (*build_list)(emit_t *emit, int n_args);
|
|
|
|
void (*list_append)(emit_t *emit, int list_stack_index);
|
|
|
|
void (*build_map)(emit_t *emit, int n_args);
|
|
|
|
void (*store_map)(emit_t *emit);
|
|
|
|
void (*map_add)(emit_t *emit, int map_stack_index);
|
|
|
|
void (*build_set)(emit_t *emit, int n_args);
|
|
|
|
void (*set_add)(emit_t *emit, int set_stack_index);
|
|
|
|
void (*build_slice)(emit_t *emit, int n_args);
|
|
|
|
void (*unpack_sequence)(emit_t *emit, int n_args);
|
|
|
|
void (*unpack_ex)(emit_t *emit, int n_left, int n_right);
|
2014-03-31 06:30:17 -04:00
|
|
|
void (*make_function)(emit_t *emit, scope_t *scope, uint n_pos_defaults, uint n_kw_defaults);
|
2014-04-20 12:50:40 -04:00
|
|
|
void (*make_closure)(emit_t *emit, scope_t *scope, uint n_closed_over, uint n_pos_defaults, uint n_kw_defaults);
|
2014-04-09 07:43:17 -04:00
|
|
|
void (*call_function)(emit_t *emit, int n_positional, int n_keyword, uint star_flags);
|
|
|
|
void (*call_method)(emit_t *emit, int n_positional, int n_keyword, uint star_flags);
|
2013-10-05 07:19:06 -04:00
|
|
|
void (*return_value)(emit_t *emit);
|
|
|
|
void (*raise_varargs)(emit_t *emit, int n_args);
|
|
|
|
void (*yield_value)(emit_t *emit);
|
|
|
|
void (*yield_from)(emit_t *emit);
|
2014-04-20 13:02:27 -04:00
|
|
|
|
|
|
|
#if MICROPY_EMIT_CPYTHON
|
|
|
|
// these methods are only needed for emitcpy
|
|
|
|
void (*load_const_verbatim_str)(emit_t *emit, const char *str);
|
|
|
|
void (*load_closure)(emit_t *emit, qstr qstr, int local_num);
|
|
|
|
void (*setup_loop)(emit_t *emit, uint label);
|
|
|
|
#endif
|
|
|
|
|
2013-10-05 07:19:06 -04:00
|
|
|
} emit_method_table_t;
|
|
|
|
|
2013-10-05 09:17:09 -04:00
|
|
|
void emit_common_load_id(emit_t *emit, const emit_method_table_t *emit_method_table, scope_t *scope, qstr qstr);
|
|
|
|
void emit_common_store_id(emit_t *emit, const emit_method_table_t *emit_method_table, scope_t *scope, qstr qstr);
|
|
|
|
void emit_common_delete_id(emit_t *emit, const emit_method_table_t *emit_method_table, scope_t *scope, qstr qstr);
|
2013-10-05 08:37:10 -04:00
|
|
|
|
2013-10-05 13:08:26 -04:00
|
|
|
extern const emit_method_table_t emit_pass1_method_table;
|
|
|
|
extern const emit_method_table_t emit_cpython_method_table;
|
|
|
|
extern const emit_method_table_t emit_bc_method_table;
|
2013-10-08 04:05:10 -04:00
|
|
|
extern const emit_method_table_t emit_native_x64_method_table;
|
|
|
|
extern const emit_method_table_t emit_native_thumb_method_table;
|
2013-10-05 13:08:26 -04:00
|
|
|
|
2014-02-04 19:51:47 -05:00
|
|
|
emit_t *emit_pass1_new(void);
|
2013-10-05 13:08:26 -04:00
|
|
|
emit_t *emit_cpython_new(uint max_num_labels);
|
2014-01-19 06:48:48 -05:00
|
|
|
emit_t *emit_bc_new(uint max_num_labels);
|
2013-10-08 04:05:10 -04:00
|
|
|
emit_t *emit_native_x64_new(uint max_num_labels);
|
|
|
|
emit_t *emit_native_thumb_new(uint max_num_labels);
|
2013-10-05 18:17:28 -04:00
|
|
|
|
2014-01-24 17:42:28 -05:00
|
|
|
void emit_pass1_free(emit_t *emit);
|
|
|
|
void emit_bc_free(emit_t *emit);
|
|
|
|
void emit_native_x64_free(emit_t *emit);
|
|
|
|
void emit_native_thumb_free(emit_t *emit);
|
|
|
|
|
2013-10-05 18:17:28 -04:00
|
|
|
typedef struct _emit_inline_asm_t emit_inline_asm_t;
|
|
|
|
|
|
|
|
typedef struct _emit_inline_asm_method_table_t {
|
|
|
|
void (*start_pass)(emit_inline_asm_t *emit, pass_kind_t pass, scope_t *scope);
|
2014-04-12 12:54:52 -04:00
|
|
|
bool (*end_pass)(emit_inline_asm_t *emit);
|
2013-12-21 13:17:45 -05:00
|
|
|
int (*count_params)(emit_inline_asm_t *emit, int n_params, mp_parse_node_t *pn_params);
|
2014-04-10 09:11:31 -04:00
|
|
|
void (*label)(emit_inline_asm_t *emit, uint label_num, qstr label_id);
|
2014-04-21 08:33:15 -04:00
|
|
|
void (*align)(emit_inline_asm_t *emit, uint align);
|
|
|
|
void (*data)(emit_inline_asm_t *emit, uint bytesize, uint val);
|
2013-12-21 13:17:45 -05:00
|
|
|
void (*op)(emit_inline_asm_t *emit, qstr op, int n_args, mp_parse_node_t *pn_args);
|
2013-10-05 18:17:28 -04:00
|
|
|
} emit_inline_asm_method_table_t;
|
|
|
|
|
|
|
|
extern const emit_inline_asm_method_table_t emit_inline_thumb_method_table;
|
|
|
|
|
|
|
|
emit_inline_asm_t *emit_inline_thumb_new(uint max_num_labels);
|
2014-01-24 17:42:28 -05:00
|
|
|
void emit_inline_thumb_free(emit_inline_asm_t *emit);
|
|
|
|
|