You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
503 B
9 lines
503 B
11 years ago
|
// These variables and functions glue the code emitters to the runtime.
|
||
|
|
||
|
void mp_emit_glue_init(void);
|
||
|
void mp_emit_glue_deinit(void);
|
||
|
uint mp_emit_glue_get_unique_code_id(void);
|
||
|
void mp_emit_glue_assign_byte_code(uint unique_code_id, byte *code, uint len, int n_args, int n_locals, uint scope_flags, qstr *arg_names);
|
||
|
void mp_emit_glue_assign_native_code(uint unique_code_id, void *f, uint len, int n_args);
|
||
|
void mp_emit_glue_assign_inline_asm_code(uint unique_code_id, void *f, uint len, int n_args);
|