diff options
author | Damien George <damien.p.george@gmail.com> | 2015-10-13 00:50:17 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-10-13 00:50:17 +0100 |
commit | b8f9ac54111ad0962401c764112c9a5669699deb (patch) | |
tree | 6157856fa4470f3c4af55a7105b4dc448d74999f /py/asmx64.h | |
parent | 21f43ba9b0a9a2bc74398e041c6f767a8d1278db (diff) | |
download | micropython-b8f9ac54111ad0962401c764112c9a5669699deb.tar.gz micropython-b8f9ac54111ad0962401c764112c9a5669699deb.zip |
py: Implement ptr32 load and store in viper emitter.
Diffstat (limited to 'py/asmx64.h')
-rw-r--r-- | py/asmx64.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/asmx64.h b/py/asmx64.h index 67ff2b4575..6fbc2c9069 100644 --- a/py/asmx64.h +++ b/py/asmx64.h @@ -94,9 +94,11 @@ void asm_x64_mov_i64_to_r64_optimised(asm_x64_t *as, int64_t src_i64, int dest_r void asm_x64_mov_i64_to_r64_aligned(asm_x64_t *as, int64_t src_i64, int dest_r64); void asm_x64_mov_r8_to_mem8(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp); void asm_x64_mov_r16_to_mem16(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp); +void asm_x64_mov_r32_to_mem32(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp); void asm_x64_mov_r64_to_mem64(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp); void asm_x64_mov_mem8_to_r64zx(asm_x64_t *as, int src_r64, int src_disp, int dest_r64); void asm_x64_mov_mem16_to_r64zx(asm_x64_t *as, int src_r64, int src_disp, int dest_r64); +void asm_x64_mov_mem32_to_r64zx(asm_x64_t *as, int src_r64, int src_disp, int dest_r64); void asm_x64_mov_mem64_to_r64(asm_x64_t *as, int src_r64, int src_disp, int dest_r64); void asm_x64_and_r64_r64(asm_x64_t *as, int dest_r64, int src_r64); void asm_x64_or_r64_r64(asm_x64_t *as, int dest_r64, int src_r64); |