summaryrefslogtreecommitdiff
path: root/py/emit.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-08-28 23:24:43 +0100
committerDamien George <damien.p.george@gmail.com>2014-08-28 23:24:43 +0100
commit1ac6faa73218d3049b3e8e8f008dbfdc756628cb (patch)
treec15cc319b14869c64e908c00f410aa262c3d442f /py/emit.h
parent516b09efc3e5d2d88457a0300b65497a9bc39624 (diff)
parent16ee30c6fa0974f2236004a663085f4035fd14df (diff)
Merge pull request #833 from Vogtinator/arm-native
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 9a709a5c9..275ea494d 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;