summaryrefslogtreecommitdiffstatshomepage
path: root/py/emit.h
diff options
context:
space:
mode:
authorFabian Vogt <fabian@ritter-vogt.de>2014-08-16 22:55:53 +0200
committerFabian Vogt <fabian@ritter-vogt.de>2014-08-27 18:18:50 +0200
commitfe3d16e8c24e2f3733339a69c66d740747b2e859 (patch)
tree4cf97ede9b6de13f85e04b4faff4149458714490 /py/emit.h
parenta97e091d4e80bbdb05f4bb27f18b905b50daf018 (diff)
downloadmicropython-fe3d16e8c24e2f3733339a69c66d740747b2e859.tar.gz
micropython-fe3d16e8c24e2f3733339a69c66d740747b2e859.zip
Basic native ARM emitter
Diffstat (limited to 'py/emit.h')
-rw-r--r--py/emit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/emit.h b/py/emit.h
index 9a709a5c98..275ea494d7 100644
--- a/py/emit.h
+++ b/py/emit.h
@@ -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;