diff options
author | Fabian Vogt <fabian@ritter-vogt.de> | 2014-08-16 22:55:53 +0200 |
---|---|---|
committer | Fabian Vogt <fabian@ritter-vogt.de> | 2014-08-27 18:18:50 +0200 |
commit | fe3d16e8c24e2f3733339a69c66d740747b2e859 (patch) | |
tree | 4cf97ede9b6de13f85e04b4faff4149458714490 /py/emit.h | |
parent | a97e091d4e80bbdb05f4bb27f18b905b50daf018 (diff) | |
download | micropython-fe3d16e8c24e2f3733339a69c66d740747b2e859.tar.gz micropython-fe3d16e8c24e2f3733339a69c66d740747b2e859.zip |
Basic native ARM emitter
Diffstat (limited to 'py/emit.h')
-rw-r--r-- | py/emit.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -161,17 +161,20 @@ extern const emit_method_table_t emit_cpython_method_table; extern const emit_method_table_t emit_bc_method_table; extern const emit_method_table_t emit_native_x64_method_table; extern const emit_method_table_t emit_native_thumb_method_table; +extern const emit_method_table_t emit_native_arm_method_table; emit_t *emit_pass1_new(void); emit_t *emit_cpython_new(uint max_num_labels); emit_t *emit_bc_new(uint max_num_labels); emit_t *emit_native_x64_new(uint max_num_labels); emit_t *emit_native_thumb_new(uint max_num_labels); +emit_t *emit_native_arm_new(uint max_num_labels); 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); +void emit_native_arm_free(emit_t *emit); typedef struct _emit_inline_asm_t emit_inline_asm_t; |