emit.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2013, 2014 Damien P. George
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef MICROPY_INCLUDED_PY_EMIT_H
  27. #define MICROPY_INCLUDED_PY_EMIT_H
  28. #include "py/lexer.h"
  29. #include "py/scope.h"
  30. /* Notes on passes:
  31. * We don't know exactly the opcodes in pass 1 because they depend on the
  32. * closing over of variables (LOAD_CLOSURE, BUILD_TUPLE, MAKE_CLOSURE), which
  33. * depends on determining the scope of variables in each function, and this
  34. * is not known until the end of pass 1.
  35. * As a consequence, we don't know the maximum stack size until the end of pass 2.
  36. * This is problematic for some emitters (x64) since they need to know the maximum
  37. * stack size to compile the entry to the function, and this affects code size.
  38. */
  39. typedef enum {
  40. MP_PASS_SCOPE = 1, // work out id's and their kind, and number of labels
  41. MP_PASS_STACK_SIZE = 2, // work out maximum stack size
  42. MP_PASS_CODE_SIZE = 3, // work out code size and label offsets
  43. MP_PASS_EMIT = 4, // emit code (may be run multiple times if the emitter requests it)
  44. } pass_kind_t;
  45. #define MP_EMIT_STAR_FLAG_SINGLE (0x01)
  46. #define MP_EMIT_STAR_FLAG_DOUBLE (0x02)
  47. #define MP_EMIT_BREAK_FROM_FOR (0x8000)
  48. // Kind for emit_id_ops->local()
  49. #define MP_EMIT_IDOP_LOCAL_FAST (0)
  50. #define MP_EMIT_IDOP_LOCAL_DEREF (1)
  51. // Kind for emit_id_ops->global()
  52. #define MP_EMIT_IDOP_GLOBAL_NAME (0)
  53. #define MP_EMIT_IDOP_GLOBAL_GLOBAL (1)
  54. // Kind for emit->import()
  55. #define MP_EMIT_IMPORT_NAME (0)
  56. #define MP_EMIT_IMPORT_FROM (1)
  57. #define MP_EMIT_IMPORT_STAR (2)
  58. // Kind for emit->subscr()
  59. #define MP_EMIT_SUBSCR_LOAD (0)
  60. #define MP_EMIT_SUBSCR_STORE (1)
  61. #define MP_EMIT_SUBSCR_DELETE (2)
  62. // Kind for emit->attr()
  63. #define MP_EMIT_ATTR_LOAD (0)
  64. #define MP_EMIT_ATTR_STORE (1)
  65. #define MP_EMIT_ATTR_DELETE (2)
  66. // Kind for emit->setup_block()
  67. #define MP_EMIT_SETUP_BLOCK_WITH (0)
  68. #define MP_EMIT_SETUP_BLOCK_EXCEPT (1)
  69. #define MP_EMIT_SETUP_BLOCK_FINALLY (2)
  70. // Kind for emit->build()
  71. #define MP_EMIT_BUILD_TUPLE (0)
  72. #define MP_EMIT_BUILD_LIST (1)
  73. #define MP_EMIT_BUILD_MAP (2)
  74. #define MP_EMIT_BUILD_SET (3)
  75. #define MP_EMIT_BUILD_SLICE (4)
  76. // Kind for emit->yield()
  77. #define MP_EMIT_YIELD_VALUE (0)
  78. #define MP_EMIT_YIELD_FROM (1)
  79. typedef struct _emit_t emit_t;
  80. typedef struct _mp_emit_common_t {
  81. pass_kind_t pass;
  82. uint16_t ct_cur_child;
  83. mp_raw_code_t **children;
  84. #if MICROPY_EMIT_BYTECODE_USES_QSTR_TABLE
  85. mp_map_t qstr_map;
  86. #endif
  87. mp_obj_list_t const_obj_list;
  88. } mp_emit_common_t;
  89. typedef struct _mp_emit_method_table_id_ops_t {
  90. void (*local)(emit_t *emit, qstr qst, mp_uint_t local_num, int kind);
  91. void (*global)(emit_t *emit, qstr qst, int kind);
  92. } mp_emit_method_table_id_ops_t;
  93. typedef struct _emit_method_table_t {
  94. #if MICROPY_DYNAMIC_COMPILER
  95. emit_t *(*emit_new)(mp_emit_common_t * emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  96. void (*emit_free)(emit_t *emit);
  97. #endif
  98. void (*start_pass)(emit_t *emit, pass_kind_t pass, scope_t *scope);
  99. bool (*end_pass)(emit_t *emit);
  100. void (*adjust_stack_size)(emit_t *emit, mp_int_t delta);
  101. void (*set_source_line)(emit_t *emit, mp_uint_t line);
  102. mp_emit_method_table_id_ops_t load_id;
  103. mp_emit_method_table_id_ops_t store_id;
  104. mp_emit_method_table_id_ops_t delete_id;
  105. void (*label_assign)(emit_t *emit, mp_uint_t l);
  106. void (*import)(emit_t *emit, qstr qst, int kind);
  107. void (*load_const_tok)(emit_t *emit, mp_token_kind_t tok);
  108. void (*load_const_small_int)(emit_t *emit, mp_int_t arg);
  109. void (*load_const_str)(emit_t *emit, qstr qst);
  110. void (*load_const_obj)(emit_t *emit, mp_obj_t obj);
  111. void (*load_null)(emit_t *emit);
  112. void (*load_method)(emit_t *emit, qstr qst, bool is_super);
  113. void (*load_build_class)(emit_t *emit);
  114. void (*subscr)(emit_t *emit, int kind);
  115. void (*attr)(emit_t *emit, qstr qst, int kind);
  116. void (*dup_top)(emit_t *emit);
  117. void (*dup_top_two)(emit_t *emit);
  118. void (*pop_top)(emit_t *emit);
  119. void (*rot_two)(emit_t *emit);
  120. void (*rot_three)(emit_t *emit);
  121. void (*jump)(emit_t *emit, mp_uint_t label);
  122. void (*pop_jump_if)(emit_t *emit, bool cond, mp_uint_t label);
  123. void (*jump_if_or_pop)(emit_t *emit, bool cond, mp_uint_t label);
  124. void (*unwind_jump)(emit_t *emit, mp_uint_t label, mp_uint_t except_depth);
  125. void (*setup_block)(emit_t *emit, mp_uint_t label, int kind);
  126. void (*with_cleanup)(emit_t *emit, mp_uint_t label);
  127. void (*end_finally)(emit_t *emit);
  128. void (*get_iter)(emit_t *emit, bool use_stack);
  129. void (*for_iter)(emit_t *emit, mp_uint_t label);
  130. void (*for_iter_end)(emit_t *emit);
  131. void (*pop_except_jump)(emit_t *emit, mp_uint_t label, bool within_exc_handler);
  132. void (*unary_op)(emit_t *emit, mp_unary_op_t op);
  133. void (*binary_op)(emit_t *emit, mp_binary_op_t op);
  134. void (*build)(emit_t *emit, mp_uint_t n_args, int kind);
  135. void (*store_map)(emit_t *emit);
  136. void (*store_comp)(emit_t *emit, scope_kind_t kind, mp_uint_t set_stack_index);
  137. void (*unpack_sequence)(emit_t *emit, mp_uint_t n_args);
  138. void (*unpack_ex)(emit_t *emit, mp_uint_t n_left, mp_uint_t n_right);
  139. void (*make_function)(emit_t *emit, scope_t *scope, mp_uint_t n_pos_defaults, mp_uint_t n_kw_defaults);
  140. void (*make_closure)(emit_t *emit, scope_t *scope, mp_uint_t n_closed_over, mp_uint_t n_pos_defaults, mp_uint_t n_kw_defaults);
  141. void (*call_function)(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
  142. void (*call_method)(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
  143. void (*return_value)(emit_t *emit);
  144. void (*raise_varargs)(emit_t *emit, mp_uint_t n_args);
  145. void (*yield)(emit_t *emit, int kind);
  146. // these methods are used to control entry to/exit from an exception handler
  147. // they may or may not emit code
  148. void (*start_except_handler)(emit_t *emit);
  149. void (*end_except_handler)(emit_t *emit);
  150. } emit_method_table_t;
  151. #if MICROPY_EMIT_BYTECODE_USES_QSTR_TABLE
  152. qstr_short_t mp_emit_common_use_qstr(mp_emit_common_t *emit, qstr qst);
  153. #else
  154. static inline qstr_short_t mp_emit_common_use_qstr(mp_emit_common_t *emit, qstr qst) {
  155. return qst;
  156. }
  157. #endif
  158. size_t mp_emit_common_use_const_obj(mp_emit_common_t *emit, mp_obj_t const_obj);
  159. static inline size_t mp_emit_common_alloc_const_child(mp_emit_common_t *emit, mp_raw_code_t *rc) {
  160. if (emit->pass == MP_PASS_EMIT) {
  161. emit->children[emit->ct_cur_child] = rc;
  162. }
  163. return emit->ct_cur_child++;
  164. }
  165. static inline void mp_emit_common_get_id_for_load(scope_t *scope, qstr qst) {
  166. scope_find_or_add_id(scope, qst, ID_INFO_KIND_GLOBAL_IMPLICIT);
  167. }
  168. id_info_t *mp_emit_common_get_id_for_modification(scope_t *scope, qstr qst);
  169. void mp_emit_common_id_op(emit_t *emit, const mp_emit_method_table_id_ops_t *emit_method_table, scope_t *scope, qstr qst);
  170. extern const emit_method_table_t emit_bc_method_table;
  171. extern const emit_method_table_t emit_native_x64_method_table;
  172. extern const emit_method_table_t emit_native_x86_method_table;
  173. extern const emit_method_table_t emit_native_thumb_method_table;
  174. extern const emit_method_table_t emit_native_arm_method_table;
  175. extern const emit_method_table_t emit_native_xtensa_method_table;
  176. extern const emit_method_table_t emit_native_xtensawin_method_table;
  177. extern const mp_emit_method_table_id_ops_t mp_emit_bc_method_table_load_id_ops;
  178. extern const mp_emit_method_table_id_ops_t mp_emit_bc_method_table_store_id_ops;
  179. extern const mp_emit_method_table_id_ops_t mp_emit_bc_method_table_delete_id_ops;
  180. emit_t *emit_bc_new(mp_emit_common_t *emit_common);
  181. emit_t *emit_native_x64_new(mp_emit_common_t *emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  182. emit_t *emit_native_x86_new(mp_emit_common_t *emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  183. emit_t *emit_native_thumb_new(mp_emit_common_t *emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  184. emit_t *emit_native_arm_new(mp_emit_common_t *emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  185. emit_t *emit_native_xtensa_new(mp_emit_common_t *emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  186. emit_t *emit_native_xtensawin_new(mp_emit_common_t *emit_common, mp_obj_t *error_slot, uint *label_slot, mp_uint_t max_num_labels);
  187. void emit_bc_set_max_num_labels(emit_t *emit, mp_uint_t max_num_labels);
  188. void emit_bc_free(emit_t *emit);
  189. void emit_native_x64_free(emit_t *emit);
  190. void emit_native_x86_free(emit_t *emit);
  191. void emit_native_thumb_free(emit_t *emit);
  192. void emit_native_arm_free(emit_t *emit);
  193. void emit_native_xtensa_free(emit_t *emit);
  194. void emit_native_xtensawin_free(emit_t *emit);
  195. void mp_emit_bc_start_pass(emit_t *emit, pass_kind_t pass, scope_t *scope);
  196. bool mp_emit_bc_end_pass(emit_t *emit);
  197. void mp_emit_bc_adjust_stack_size(emit_t *emit, mp_int_t delta);
  198. void mp_emit_bc_set_source_line(emit_t *emit, mp_uint_t line);
  199. void mp_emit_bc_load_local(emit_t *emit, qstr qst, mp_uint_t local_num, int kind);
  200. void mp_emit_bc_load_global(emit_t *emit, qstr qst, int kind);
  201. void mp_emit_bc_store_local(emit_t *emit, qstr qst, mp_uint_t local_num, int kind);
  202. void mp_emit_bc_store_global(emit_t *emit, qstr qst, int kind);
  203. void mp_emit_bc_delete_local(emit_t *emit, qstr qst, mp_uint_t local_num, int kind);
  204. void mp_emit_bc_delete_global(emit_t *emit, qstr qst, int kind);
  205. void mp_emit_bc_label_assign(emit_t *emit, mp_uint_t l);
  206. void mp_emit_bc_import(emit_t *emit, qstr qst, int kind);
  207. void mp_emit_bc_load_const_tok(emit_t *emit, mp_token_kind_t tok);
  208. void mp_emit_bc_load_const_small_int(emit_t *emit, mp_int_t arg);
  209. void mp_emit_bc_load_const_str(emit_t *emit, qstr qst);
  210. void mp_emit_bc_load_const_obj(emit_t *emit, mp_obj_t obj);
  211. void mp_emit_bc_load_null(emit_t *emit);
  212. void mp_emit_bc_load_method(emit_t *emit, qstr qst, bool is_super);
  213. void mp_emit_bc_load_build_class(emit_t *emit);
  214. void mp_emit_bc_subscr(emit_t *emit, int kind);
  215. void mp_emit_bc_attr(emit_t *emit, qstr qst, int kind);
  216. void mp_emit_bc_dup_top(emit_t *emit);
  217. void mp_emit_bc_dup_top_two(emit_t *emit);
  218. void mp_emit_bc_pop_top(emit_t *emit);
  219. void mp_emit_bc_rot_two(emit_t *emit);
  220. void mp_emit_bc_rot_three(emit_t *emit);
  221. void mp_emit_bc_jump(emit_t *emit, mp_uint_t label);
  222. void mp_emit_bc_pop_jump_if(emit_t *emit, bool cond, mp_uint_t label);
  223. void mp_emit_bc_jump_if_or_pop(emit_t *emit, bool cond, mp_uint_t label);
  224. void mp_emit_bc_unwind_jump(emit_t *emit, mp_uint_t label, mp_uint_t except_depth);
  225. void mp_emit_bc_setup_block(emit_t *emit, mp_uint_t label, int kind);
  226. void mp_emit_bc_with_cleanup(emit_t *emit, mp_uint_t label);
  227. void mp_emit_bc_end_finally(emit_t *emit);
  228. void mp_emit_bc_get_iter(emit_t *emit, bool use_stack);
  229. void mp_emit_bc_for_iter(emit_t *emit, mp_uint_t label);
  230. void mp_emit_bc_for_iter_end(emit_t *emit);
  231. void mp_emit_bc_pop_except_jump(emit_t *emit, mp_uint_t label, bool within_exc_handler);
  232. void mp_emit_bc_unary_op(emit_t *emit, mp_unary_op_t op);
  233. void mp_emit_bc_binary_op(emit_t *emit, mp_binary_op_t op);
  234. void mp_emit_bc_build(emit_t *emit, mp_uint_t n_args, int kind);
  235. void mp_emit_bc_store_map(emit_t *emit);
  236. void mp_emit_bc_store_comp(emit_t *emit, scope_kind_t kind, mp_uint_t list_stack_index);
  237. void mp_emit_bc_unpack_sequence(emit_t *emit, mp_uint_t n_args);
  238. void mp_emit_bc_unpack_ex(emit_t *emit, mp_uint_t n_left, mp_uint_t n_right);
  239. void mp_emit_bc_make_function(emit_t *emit, scope_t *scope, mp_uint_t n_pos_defaults, mp_uint_t n_kw_defaults);
  240. void mp_emit_bc_make_closure(emit_t *emit, scope_t *scope, mp_uint_t n_closed_over, mp_uint_t n_pos_defaults, mp_uint_t n_kw_defaults);
  241. void mp_emit_bc_call_function(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
  242. void mp_emit_bc_call_method(emit_t *emit, mp_uint_t n_positional, mp_uint_t n_keyword, mp_uint_t star_flags);
  243. void mp_emit_bc_return_value(emit_t *emit);
  244. void mp_emit_bc_raise_varargs(emit_t *emit, mp_uint_t n_args);
  245. void mp_emit_bc_yield(emit_t *emit, int kind);
  246. void mp_emit_bc_start_except_handler(emit_t *emit);
  247. void mp_emit_bc_end_except_handler(emit_t *emit);
  248. typedef struct _emit_inline_asm_t emit_inline_asm_t;
  249. typedef struct _emit_inline_asm_method_table_t {
  250. #if MICROPY_DYNAMIC_COMPILER
  251. emit_inline_asm_t *(*asm_new)(mp_uint_t max_num_labels);
  252. void (*asm_free)(emit_inline_asm_t *emit);
  253. #endif
  254. void (*start_pass)(emit_inline_asm_t *emit, pass_kind_t pass, mp_obj_t *error_slot);
  255. void (*end_pass)(emit_inline_asm_t *emit, mp_uint_t type_sig);
  256. mp_uint_t (*count_params)(emit_inline_asm_t *emit, mp_uint_t n_params, mp_parse_node_t *pn_params);
  257. bool (*label)(emit_inline_asm_t *emit, mp_uint_t label_num, qstr label_id);
  258. void (*op)(emit_inline_asm_t *emit, qstr op, mp_uint_t n_args, mp_parse_node_t *pn_args);
  259. } emit_inline_asm_method_table_t;
  260. extern const emit_inline_asm_method_table_t emit_inline_thumb_method_table;
  261. extern const emit_inline_asm_method_table_t emit_inline_xtensa_method_table;
  262. emit_inline_asm_t *emit_inline_thumb_new(mp_uint_t max_num_labels);
  263. emit_inline_asm_t *emit_inline_xtensa_new(mp_uint_t max_num_labels);
  264. void emit_inline_thumb_free(emit_inline_asm_t *emit);
  265. void emit_inline_xtensa_free(emit_inline_asm_t *emit);
  266. #if MICROPY_WARNINGS
  267. void mp_emitter_warning(pass_kind_t pass, const char *msg);
  268. #else
  269. #define mp_emitter_warning(pass, msg)
  270. #endif
  271. #endif // MICROPY_INCLUDED_PY_EMIT_H