asmx64.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2013, 2014 Damien P. George
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include <stdint.h>
  27. #include <stdio.h>
  28. #include <assert.h>
  29. #include <string.h>
  30. #include "py/mpconfig.h"
  31. // wrapper around everything in this file
  32. #if MICROPY_EMIT_X64
  33. #include "py/asmx64.h"
  34. /* all offsets are measured in multiples of 8 bytes */
  35. #define WORD_SIZE (8)
  36. #define OPCODE_NOP (0x90)
  37. #define OPCODE_PUSH_R64 (0x50) /* +rq */
  38. #define OPCODE_PUSH_I64 (0x68)
  39. #define OPCODE_PUSH_M64 (0xff) /* /6 */
  40. #define OPCODE_POP_R64 (0x58) /* +rq */
  41. #define OPCODE_RET (0xc3)
  42. #define OPCODE_MOV_I8_TO_R8 (0xb0) /* +rb */
  43. #define OPCODE_MOV_I64_TO_R64 (0xb8) /* +rq */
  44. #define OPCODE_MOV_I32_TO_RM32 (0xc7)
  45. #define OPCODE_MOV_R8_TO_RM8 (0x88) /* /r */
  46. #define OPCODE_MOV_R64_TO_RM64 (0x89) /* /r */
  47. #define OPCODE_MOV_RM64_TO_R64 (0x8b) /* /r */
  48. #define OPCODE_MOVZX_RM8_TO_R64 (0xb6) /* 0x0f 0xb6/r */
  49. #define OPCODE_MOVZX_RM16_TO_R64 (0xb7) /* 0x0f 0xb7/r */
  50. #define OPCODE_LEA_MEM_TO_R64 (0x8d) /* /r */
  51. #define OPCODE_NOT_RM64 (0xf7) /* /2 */
  52. #define OPCODE_NEG_RM64 (0xf7) /* /3 */
  53. #define OPCODE_AND_R64_TO_RM64 (0x21) /* /r */
  54. #define OPCODE_OR_R64_TO_RM64 (0x09) /* /r */
  55. #define OPCODE_XOR_R64_TO_RM64 (0x31) /* /r */
  56. #define OPCODE_ADD_R64_TO_RM64 (0x01) /* /r */
  57. #define OPCODE_ADD_I32_TO_RM32 (0x81) /* /0 */
  58. #define OPCODE_ADD_I8_TO_RM32 (0x83) /* /0 */
  59. #define OPCODE_SUB_R64_FROM_RM64 (0x29)
  60. #define OPCODE_SUB_I32_FROM_RM64 (0x81) /* /5 */
  61. #define OPCODE_SUB_I8_FROM_RM64 (0x83) /* /5 */
  62. // #define OPCODE_SHL_RM32_BY_I8 (0xc1) /* /4 */
  63. // #define OPCODE_SHR_RM32_BY_I8 (0xc1) /* /5 */
  64. // #define OPCODE_SAR_RM32_BY_I8 (0xc1) /* /7 */
  65. #define OPCODE_SHL_RM64_CL (0xd3) /* /4 */
  66. #define OPCODE_SHR_RM64_CL (0xd3) /* /5 */
  67. #define OPCODE_SAR_RM64_CL (0xd3) /* /7 */
  68. // #define OPCODE_CMP_I32_WITH_RM32 (0x81) /* /7 */
  69. // #define OPCODE_CMP_I8_WITH_RM32 (0x83) /* /7 */
  70. #define OPCODE_CMP_R64_WITH_RM64 (0x39) /* /r */
  71. // #define OPCODE_CMP_RM32_WITH_R32 (0x3b)
  72. #define OPCODE_TEST_R8_WITH_RM8 (0x84) /* /r */
  73. #define OPCODE_TEST_R64_WITH_RM64 (0x85) /* /r */
  74. #define OPCODE_JMP_REL8 (0xeb)
  75. #define OPCODE_JMP_REL32 (0xe9)
  76. #define OPCODE_JMP_RM64 (0xff) /* /4 */
  77. #define OPCODE_JCC_REL8 (0x70) /* | jcc type */
  78. #define OPCODE_JCC_REL32_A (0x0f)
  79. #define OPCODE_JCC_REL32_B (0x80) /* | jcc type */
  80. #define OPCODE_SETCC_RM8_A (0x0f)
  81. #define OPCODE_SETCC_RM8_B (0x90) /* | jcc type, /0 */
  82. #define OPCODE_CALL_REL32 (0xe8)
  83. #define OPCODE_CALL_RM32 (0xff) /* /2 */
  84. #define OPCODE_LEAVE (0xc9)
  85. #define MODRM_R64(x) (((x) & 0x7) << 3)
  86. #define MODRM_RM_DISP0 (0x00)
  87. #define MODRM_RM_DISP8 (0x40)
  88. #define MODRM_RM_DISP32 (0x80)
  89. #define MODRM_RM_REG (0xc0)
  90. #define MODRM_RM_R64(x) ((x) & 0x7)
  91. #define OP_SIZE_PREFIX (0x66)
  92. #define REX_PREFIX (0x40)
  93. #define REX_W (0x08) // width
  94. #define REX_R (0x04) // register
  95. #define REX_X (0x02) // index
  96. #define REX_B (0x01) // base
  97. #define REX_W_FROM_R64(r64) ((r64) >> 0 & 0x08)
  98. #define REX_R_FROM_R64(r64) ((r64) >> 1 & 0x04)
  99. #define REX_X_FROM_R64(r64) ((r64) >> 2 & 0x02)
  100. #define REX_B_FROM_R64(r64) ((r64) >> 3 & 0x01)
  101. #define IMM32_L0(x) ((x) & 0xff)
  102. #define IMM32_L1(x) (((x) >> 8) & 0xff)
  103. #define IMM32_L2(x) (((x) >> 16) & 0xff)
  104. #define IMM32_L3(x) (((x) >> 24) & 0xff)
  105. #define IMM64_L4(x) (((x) >> 32) & 0xff)
  106. #define IMM64_L5(x) (((x) >> 40) & 0xff)
  107. #define IMM64_L6(x) (((x) >> 48) & 0xff)
  108. #define IMM64_L7(x) (((x) >> 56) & 0xff)
  109. #define UNSIGNED_FIT8(x) (((x) & 0xffffffffffffff00) == 0)
  110. #define UNSIGNED_FIT32(x) (((x) & 0xffffffff00000000) == 0)
  111. #define SIGNED_FIT8(x) (((x) & 0xffffff80) == 0) || (((x) & 0xffffff80) == 0xffffff80)
  112. static inline byte *asm_x64_get_cur_to_write_bytes(asm_x64_t *as, int n) {
  113. return mp_asm_base_get_cur_to_write_bytes(&as->base, n);
  114. }
  115. static void asm_x64_write_byte_1(asm_x64_t *as, byte b1) {
  116. byte *c = asm_x64_get_cur_to_write_bytes(as, 1);
  117. if (c != NULL) {
  118. c[0] = b1;
  119. }
  120. }
  121. static void asm_x64_write_byte_2(asm_x64_t *as, byte b1, byte b2) {
  122. byte *c = asm_x64_get_cur_to_write_bytes(as, 2);
  123. if (c != NULL) {
  124. c[0] = b1;
  125. c[1] = b2;
  126. }
  127. }
  128. static void asm_x64_write_byte_3(asm_x64_t *as, byte b1, byte b2, byte b3) {
  129. byte *c = asm_x64_get_cur_to_write_bytes(as, 3);
  130. if (c != NULL) {
  131. c[0] = b1;
  132. c[1] = b2;
  133. c[2] = b3;
  134. }
  135. }
  136. static void asm_x64_write_word32(asm_x64_t *as, int w32) {
  137. byte *c = asm_x64_get_cur_to_write_bytes(as, 4);
  138. if (c != NULL) {
  139. c[0] = IMM32_L0(w32);
  140. c[1] = IMM32_L1(w32);
  141. c[2] = IMM32_L2(w32);
  142. c[3] = IMM32_L3(w32);
  143. }
  144. }
  145. static void asm_x64_write_word64(asm_x64_t *as, int64_t w64) {
  146. byte *c = asm_x64_get_cur_to_write_bytes(as, 8);
  147. if (c != NULL) {
  148. c[0] = IMM32_L0(w64);
  149. c[1] = IMM32_L1(w64);
  150. c[2] = IMM32_L2(w64);
  151. c[3] = IMM32_L3(w64);
  152. c[4] = IMM64_L4(w64);
  153. c[5] = IMM64_L5(w64);
  154. c[6] = IMM64_L6(w64);
  155. c[7] = IMM64_L7(w64);
  156. }
  157. }
  158. /* unused
  159. static void asm_x64_write_word32_to(asm_x64_t *as, int offset, int w32) {
  160. byte* c;
  161. assert(offset + 4 <= as->code_size);
  162. c = as->code_base + offset;
  163. c[0] = IMM32_L0(w32);
  164. c[1] = IMM32_L1(w32);
  165. c[2] = IMM32_L2(w32);
  166. c[3] = IMM32_L3(w32);
  167. }
  168. */
  169. static void asm_x64_write_r64_disp(asm_x64_t *as, int r64, int disp_r64, int disp_offset) {
  170. uint8_t rm_disp;
  171. if (disp_offset == 0 && (disp_r64 & 7) != ASM_X64_REG_RBP) {
  172. rm_disp = MODRM_RM_DISP0;
  173. } else if (SIGNED_FIT8(disp_offset)) {
  174. rm_disp = MODRM_RM_DISP8;
  175. } else {
  176. rm_disp = MODRM_RM_DISP32;
  177. }
  178. asm_x64_write_byte_1(as, MODRM_R64(r64) | rm_disp | MODRM_RM_R64(disp_r64));
  179. if ((disp_r64 & 7) == ASM_X64_REG_RSP) {
  180. // Special case for rsp and r12, they need a SIB byte
  181. asm_x64_write_byte_1(as, 0x24);
  182. }
  183. if (rm_disp == MODRM_RM_DISP8) {
  184. asm_x64_write_byte_1(as, IMM32_L0(disp_offset));
  185. } else if (rm_disp == MODRM_RM_DISP32) {
  186. asm_x64_write_word32(as, disp_offset);
  187. }
  188. }
  189. static void asm_x64_generic_r64_r64(asm_x64_t *as, int dest_r64, int src_r64, int op) {
  190. asm_x64_write_byte_3(as, REX_PREFIX | REX_W | REX_R_FROM_R64(src_r64) | REX_B_FROM_R64(dest_r64), op, MODRM_R64(src_r64) | MODRM_RM_REG | MODRM_RM_R64(dest_r64));
  191. }
  192. void asm_x64_nop(asm_x64_t *as) {
  193. asm_x64_write_byte_1(as, OPCODE_NOP);
  194. }
  195. void asm_x64_push_r64(asm_x64_t *as, int src_r64) {
  196. if (src_r64 < 8) {
  197. asm_x64_write_byte_1(as, OPCODE_PUSH_R64 | src_r64);
  198. } else {
  199. asm_x64_write_byte_2(as, REX_PREFIX | REX_B, OPCODE_PUSH_R64 | (src_r64 & 7));
  200. }
  201. }
  202. /*
  203. void asm_x64_push_i32(asm_x64_t *as, int src_i32) {
  204. asm_x64_write_byte_1(as, OPCODE_PUSH_I64);
  205. asm_x64_write_word32(as, src_i32); // will be sign extended to 64 bits
  206. }
  207. */
  208. /*
  209. void asm_x64_push_disp(asm_x64_t *as, int src_r64, int src_offset) {
  210. assert(src_r64 < 8);
  211. asm_x64_write_byte_1(as, OPCODE_PUSH_M64);
  212. asm_x64_write_r64_disp(as, 6, src_r64, src_offset);
  213. }
  214. */
  215. void asm_x64_pop_r64(asm_x64_t *as, int dest_r64) {
  216. if (dest_r64 < 8) {
  217. asm_x64_write_byte_1(as, OPCODE_POP_R64 | dest_r64);
  218. } else {
  219. asm_x64_write_byte_2(as, REX_PREFIX | REX_B, OPCODE_POP_R64 | (dest_r64 & 7));
  220. }
  221. }
  222. static void asm_x64_ret(asm_x64_t *as) {
  223. asm_x64_write_byte_1(as, OPCODE_RET);
  224. }
  225. void asm_x64_mov_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  226. asm_x64_generic_r64_r64(as, dest_r64, src_r64, OPCODE_MOV_R64_TO_RM64);
  227. }
  228. void asm_x64_mov_r8_to_mem8(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp) {
  229. if (src_r64 < 8 && dest_r64 < 8) {
  230. asm_x64_write_byte_1(as, OPCODE_MOV_R8_TO_RM8);
  231. } else {
  232. asm_x64_write_byte_2(as, REX_PREFIX | REX_R_FROM_R64(src_r64) | REX_B_FROM_R64(dest_r64), OPCODE_MOV_R8_TO_RM8);
  233. }
  234. asm_x64_write_r64_disp(as, src_r64, dest_r64, dest_disp);
  235. }
  236. void asm_x64_mov_r16_to_mem16(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp) {
  237. if (src_r64 < 8 && dest_r64 < 8) {
  238. asm_x64_write_byte_2(as, OP_SIZE_PREFIX, OPCODE_MOV_R64_TO_RM64);
  239. } else {
  240. asm_x64_write_byte_3(as, OP_SIZE_PREFIX, REX_PREFIX | REX_R_FROM_R64(src_r64) | REX_B_FROM_R64(dest_r64), OPCODE_MOV_R64_TO_RM64);
  241. }
  242. asm_x64_write_r64_disp(as, src_r64, dest_r64, dest_disp);
  243. }
  244. void asm_x64_mov_r32_to_mem32(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp) {
  245. if (src_r64 < 8 && dest_r64 < 8) {
  246. asm_x64_write_byte_1(as, OPCODE_MOV_R64_TO_RM64);
  247. } else {
  248. asm_x64_write_byte_2(as, REX_PREFIX | REX_R_FROM_R64(src_r64) | REX_B_FROM_R64(dest_r64), OPCODE_MOV_R64_TO_RM64);
  249. }
  250. asm_x64_write_r64_disp(as, src_r64, dest_r64, dest_disp);
  251. }
  252. void asm_x64_mov_r64_to_mem64(asm_x64_t *as, int src_r64, int dest_r64, int dest_disp) {
  253. // use REX prefix for 64 bit operation
  254. asm_x64_write_byte_2(as, REX_PREFIX | REX_W | REX_R_FROM_R64(src_r64) | REX_B_FROM_R64(dest_r64), OPCODE_MOV_R64_TO_RM64);
  255. asm_x64_write_r64_disp(as, src_r64, dest_r64, dest_disp);
  256. }
  257. void asm_x64_mov_mem8_to_r64zx(asm_x64_t *as, int src_r64, int src_disp, int dest_r64) {
  258. if (src_r64 < 8 && dest_r64 < 8) {
  259. asm_x64_write_byte_2(as, 0x0f, OPCODE_MOVZX_RM8_TO_R64);
  260. } else {
  261. asm_x64_write_byte_3(as, REX_PREFIX | REX_R_FROM_R64(dest_r64) | REX_B_FROM_R64(src_r64), 0x0f, OPCODE_MOVZX_RM8_TO_R64);
  262. }
  263. asm_x64_write_r64_disp(as, dest_r64, src_r64, src_disp);
  264. }
  265. void asm_x64_mov_mem16_to_r64zx(asm_x64_t *as, int src_r64, int src_disp, int dest_r64) {
  266. if (src_r64 < 8 && dest_r64 < 8) {
  267. asm_x64_write_byte_2(as, 0x0f, OPCODE_MOVZX_RM16_TO_R64);
  268. } else {
  269. asm_x64_write_byte_3(as, REX_PREFIX | REX_R_FROM_R64(dest_r64) | REX_B_FROM_R64(src_r64), 0x0f, OPCODE_MOVZX_RM16_TO_R64);
  270. }
  271. asm_x64_write_r64_disp(as, dest_r64, src_r64, src_disp);
  272. }
  273. void asm_x64_mov_mem32_to_r64zx(asm_x64_t *as, int src_r64, int src_disp, int dest_r64) {
  274. if (src_r64 < 8 && dest_r64 < 8) {
  275. asm_x64_write_byte_1(as, OPCODE_MOV_RM64_TO_R64);
  276. } else {
  277. asm_x64_write_byte_2(as, REX_PREFIX | REX_R_FROM_R64(dest_r64) | REX_B_FROM_R64(src_r64), OPCODE_MOV_RM64_TO_R64);
  278. }
  279. asm_x64_write_r64_disp(as, dest_r64, src_r64, src_disp);
  280. }
  281. void asm_x64_mov_mem64_to_r64(asm_x64_t *as, int src_r64, int src_disp, int dest_r64) {
  282. // use REX prefix for 64 bit operation
  283. asm_x64_write_byte_2(as, REX_PREFIX | REX_W | REX_R_FROM_R64(dest_r64) | REX_B_FROM_R64(src_r64), OPCODE_MOV_RM64_TO_R64);
  284. asm_x64_write_r64_disp(as, dest_r64, src_r64, src_disp);
  285. }
  286. static void asm_x64_lea_disp_to_r64(asm_x64_t *as, int src_r64, int src_disp, int dest_r64) {
  287. // use REX prefix for 64 bit operation
  288. asm_x64_write_byte_2(as, REX_PREFIX | REX_W | REX_R_FROM_R64(dest_r64) | REX_B_FROM_R64(src_r64), OPCODE_LEA_MEM_TO_R64);
  289. asm_x64_write_r64_disp(as, dest_r64, src_r64, src_disp);
  290. }
  291. /*
  292. void asm_x64_mov_i8_to_r8(asm_x64_t *as, int src_i8, int dest_r64) {
  293. assert(dest_r64 < 8);
  294. asm_x64_write_byte_2(as, OPCODE_MOV_I8_TO_R8 | dest_r64, src_i8);
  295. }
  296. */
  297. size_t asm_x64_mov_i32_to_r64(asm_x64_t *as, int src_i32, int dest_r64) {
  298. // cpu defaults to i32 to r64, with zero extension
  299. if (dest_r64 < 8) {
  300. asm_x64_write_byte_1(as, OPCODE_MOV_I64_TO_R64 | dest_r64);
  301. } else {
  302. asm_x64_write_byte_2(as, REX_PREFIX | REX_B, OPCODE_MOV_I64_TO_R64 | (dest_r64 & 7));
  303. }
  304. size_t loc = mp_asm_base_get_code_pos(&as->base);
  305. asm_x64_write_word32(as, src_i32);
  306. return loc;
  307. }
  308. void asm_x64_mov_i64_to_r64(asm_x64_t *as, int64_t src_i64, int dest_r64) {
  309. // cpu defaults to i32 to r64
  310. // to mov i64 to r64 need to use REX prefix
  311. asm_x64_write_byte_2(as,
  312. REX_PREFIX | REX_W | (dest_r64 < 8 ? 0 : REX_B),
  313. OPCODE_MOV_I64_TO_R64 | (dest_r64 & 7));
  314. asm_x64_write_word64(as, src_i64);
  315. }
  316. void asm_x64_mov_i64_to_r64_optimised(asm_x64_t *as, int64_t src_i64, int dest_r64) {
  317. // TODO use movzx, movsx if possible
  318. if (UNSIGNED_FIT32(src_i64)) {
  319. // 5 bytes
  320. asm_x64_mov_i32_to_r64(as, src_i64 & 0xffffffff, dest_r64);
  321. } else {
  322. // 10 bytes
  323. asm_x64_mov_i64_to_r64(as, src_i64, dest_r64);
  324. }
  325. }
  326. void asm_x64_not_r64(asm_x64_t *as, int dest_r64) {
  327. asm_x64_generic_r64_r64(as, dest_r64, 2, OPCODE_NOT_RM64);
  328. }
  329. void asm_x64_neg_r64(asm_x64_t *as, int dest_r64) {
  330. asm_x64_generic_r64_r64(as, dest_r64, 3, OPCODE_NEG_RM64);
  331. }
  332. void asm_x64_and_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  333. asm_x64_generic_r64_r64(as, dest_r64, src_r64, OPCODE_AND_R64_TO_RM64);
  334. }
  335. void asm_x64_or_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  336. asm_x64_generic_r64_r64(as, dest_r64, src_r64, OPCODE_OR_R64_TO_RM64);
  337. }
  338. void asm_x64_xor_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  339. asm_x64_generic_r64_r64(as, dest_r64, src_r64, OPCODE_XOR_R64_TO_RM64);
  340. }
  341. void asm_x64_shl_r64_cl(asm_x64_t *as, int dest_r64) {
  342. asm_x64_generic_r64_r64(as, dest_r64, 4, OPCODE_SHL_RM64_CL);
  343. }
  344. void asm_x64_shr_r64_cl(asm_x64_t *as, int dest_r64) {
  345. asm_x64_generic_r64_r64(as, dest_r64, 5, OPCODE_SHR_RM64_CL);
  346. }
  347. void asm_x64_sar_r64_cl(asm_x64_t *as, int dest_r64) {
  348. asm_x64_generic_r64_r64(as, dest_r64, 7, OPCODE_SAR_RM64_CL);
  349. }
  350. void asm_x64_add_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  351. asm_x64_generic_r64_r64(as, dest_r64, src_r64, OPCODE_ADD_R64_TO_RM64);
  352. }
  353. void asm_x64_sub_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  354. asm_x64_generic_r64_r64(as, dest_r64, src_r64, OPCODE_SUB_R64_FROM_RM64);
  355. }
  356. void asm_x64_mul_r64_r64(asm_x64_t *as, int dest_r64, int src_r64) {
  357. // imul reg64, reg/mem64 -- 0x0f 0xaf /r
  358. asm_x64_write_byte_1(as, REX_PREFIX | REX_W | REX_R_FROM_R64(dest_r64) | REX_B_FROM_R64(src_r64));
  359. asm_x64_write_byte_3(as, 0x0f, 0xaf, MODRM_R64(dest_r64) | MODRM_RM_REG | MODRM_RM_R64(src_r64));
  360. }
  361. /*
  362. void asm_x64_sub_i32_from_r32(asm_x64_t *as, int src_i32, int dest_r32) {
  363. if (SIGNED_FIT8(src_i32)) {
  364. // defaults to 32 bit operation
  365. asm_x64_write_byte_2(as, OPCODE_SUB_I8_FROM_RM64, MODRM_R64(5) | MODRM_RM_REG | MODRM_RM_R64(dest_r32));
  366. asm_x64_write_byte_1(as, src_i32 & 0xff);
  367. } else {
  368. // defaults to 32 bit operation
  369. asm_x64_write_byte_2(as, OPCODE_SUB_I32_FROM_RM64, MODRM_R64(5) | MODRM_RM_REG | MODRM_RM_R64(dest_r32));
  370. asm_x64_write_word32(as, src_i32);
  371. }
  372. }
  373. */
  374. static void asm_x64_sub_r64_i32(asm_x64_t *as, int dest_r64, int src_i32) {
  375. assert(dest_r64 < 8);
  376. if (SIGNED_FIT8(src_i32)) {
  377. // use REX prefix for 64 bit operation
  378. asm_x64_write_byte_3(as, REX_PREFIX | REX_W, OPCODE_SUB_I8_FROM_RM64, MODRM_R64(5) | MODRM_RM_REG | MODRM_RM_R64(dest_r64));
  379. asm_x64_write_byte_1(as, src_i32 & 0xff);
  380. } else {
  381. // use REX prefix for 64 bit operation
  382. asm_x64_write_byte_3(as, REX_PREFIX | REX_W, OPCODE_SUB_I32_FROM_RM64, MODRM_R64(5) | MODRM_RM_REG | MODRM_RM_R64(dest_r64));
  383. asm_x64_write_word32(as, src_i32);
  384. }
  385. }
  386. /*
  387. void asm_x64_shl_r32_by_imm(asm_x64_t *as, int r32, int imm) {
  388. asm_x64_write_byte_2(as, OPCODE_SHL_RM32_BY_I8, MODRM_R64(4) | MODRM_RM_REG | MODRM_RM_R64(r32));
  389. asm_x64_write_byte_1(as, imm);
  390. }
  391. void asm_x64_shr_r32_by_imm(asm_x64_t *as, int r32, int imm) {
  392. asm_x64_write_byte_2(as, OPCODE_SHR_RM32_BY_I8, MODRM_R64(5) | MODRM_RM_REG | MODRM_RM_R64(r32));
  393. asm_x64_write_byte_1(as, imm);
  394. }
  395. void asm_x64_sar_r32_by_imm(asm_x64_t *as, int r32, int imm) {
  396. asm_x64_write_byte_2(as, OPCODE_SAR_RM32_BY_I8, MODRM_R64(7) | MODRM_RM_REG | MODRM_RM_R64(r32));
  397. asm_x64_write_byte_1(as, imm);
  398. }
  399. */
  400. void asm_x64_cmp_r64_with_r64(asm_x64_t *as, int src_r64_a, int src_r64_b) {
  401. asm_x64_generic_r64_r64(as, src_r64_b, src_r64_a, OPCODE_CMP_R64_WITH_RM64);
  402. }
  403. /*
  404. void asm_x64_cmp_i32_with_r32(asm_x64_t *as, int src_i32, int src_r32) {
  405. if (SIGNED_FIT8(src_i32)) {
  406. asm_x64_write_byte_2(as, OPCODE_CMP_I8_WITH_RM32, MODRM_R64(7) | MODRM_RM_REG | MODRM_RM_R64(src_r32));
  407. asm_x64_write_byte_1(as, src_i32 & 0xff);
  408. } else {
  409. asm_x64_write_byte_2(as, OPCODE_CMP_I32_WITH_RM32, MODRM_R64(7) | MODRM_RM_REG | MODRM_RM_R64(src_r32));
  410. asm_x64_write_word32(as, src_i32);
  411. }
  412. }
  413. */
  414. void asm_x64_test_r8_with_r8(asm_x64_t *as, int src_r64_a, int src_r64_b) {
  415. assert(src_r64_a < 8);
  416. assert(src_r64_b < 8);
  417. asm_x64_write_byte_2(as, OPCODE_TEST_R8_WITH_RM8, MODRM_R64(src_r64_a) | MODRM_RM_REG | MODRM_RM_R64(src_r64_b));
  418. }
  419. void asm_x64_test_r64_with_r64(asm_x64_t *as, int src_r64_a, int src_r64_b) {
  420. asm_x64_generic_r64_r64(as, src_r64_b, src_r64_a, OPCODE_TEST_R64_WITH_RM64);
  421. }
  422. void asm_x64_setcc_r8(asm_x64_t *as, int jcc_type, int dest_r8) {
  423. assert(dest_r8 < 8);
  424. asm_x64_write_byte_3(as, OPCODE_SETCC_RM8_A, OPCODE_SETCC_RM8_B | jcc_type, MODRM_R64(0) | MODRM_RM_REG | MODRM_RM_R64(dest_r8));
  425. }
  426. void asm_x64_jmp_reg(asm_x64_t *as, int src_r64) {
  427. assert(src_r64 < 8);
  428. asm_x64_write_byte_2(as, OPCODE_JMP_RM64, MODRM_R64(4) | MODRM_RM_REG | MODRM_RM_R64(src_r64));
  429. }
  430. static mp_uint_t get_label_dest(asm_x64_t *as, mp_uint_t label) {
  431. assert(label < as->base.max_num_labels);
  432. return as->base.label_offsets[label];
  433. }
  434. void asm_x64_jmp_label(asm_x64_t *as, mp_uint_t label) {
  435. mp_uint_t dest = get_label_dest(as, label);
  436. mp_int_t rel = dest - as->base.code_offset;
  437. if (dest != (mp_uint_t)-1 && rel < 0) {
  438. // is a backwards jump, so we know the size of the jump on the first pass
  439. // calculate rel assuming 8 bit relative jump
  440. rel -= 2;
  441. if (SIGNED_FIT8(rel)) {
  442. asm_x64_write_byte_2(as, OPCODE_JMP_REL8, rel & 0xff);
  443. } else {
  444. rel += 2;
  445. goto large_jump;
  446. }
  447. } else {
  448. // is a forwards jump, so need to assume it's large
  449. large_jump:
  450. rel -= 5;
  451. asm_x64_write_byte_1(as, OPCODE_JMP_REL32);
  452. asm_x64_write_word32(as, rel);
  453. }
  454. }
  455. void asm_x64_jcc_label(asm_x64_t *as, int jcc_type, mp_uint_t label) {
  456. mp_uint_t dest = get_label_dest(as, label);
  457. mp_int_t rel = dest - as->base.code_offset;
  458. if (dest != (mp_uint_t)-1 && rel < 0) {
  459. // is a backwards jump, so we know the size of the jump on the first pass
  460. // calculate rel assuming 8 bit relative jump
  461. rel -= 2;
  462. if (SIGNED_FIT8(rel)) {
  463. asm_x64_write_byte_2(as, OPCODE_JCC_REL8 | jcc_type, rel & 0xff);
  464. } else {
  465. rel += 2;
  466. goto large_jump;
  467. }
  468. } else {
  469. // is a forwards jump, so need to assume it's large
  470. large_jump:
  471. rel -= 6;
  472. asm_x64_write_byte_2(as, OPCODE_JCC_REL32_A, OPCODE_JCC_REL32_B | jcc_type);
  473. asm_x64_write_word32(as, rel);
  474. }
  475. }
  476. void asm_x64_entry(asm_x64_t *as, int num_locals) {
  477. assert(num_locals >= 0);
  478. asm_x64_push_r64(as, ASM_X64_REG_RBP);
  479. asm_x64_push_r64(as, ASM_X64_REG_RBX);
  480. asm_x64_push_r64(as, ASM_X64_REG_R12);
  481. asm_x64_push_r64(as, ASM_X64_REG_R13);
  482. num_locals |= 1; // make it odd so stack is aligned on 16 byte boundary
  483. asm_x64_sub_r64_i32(as, ASM_X64_REG_RSP, num_locals * WORD_SIZE);
  484. as->num_locals = num_locals;
  485. }
  486. void asm_x64_exit(asm_x64_t *as) {
  487. asm_x64_sub_r64_i32(as, ASM_X64_REG_RSP, -as->num_locals * WORD_SIZE);
  488. asm_x64_pop_r64(as, ASM_X64_REG_R13);
  489. asm_x64_pop_r64(as, ASM_X64_REG_R12);
  490. asm_x64_pop_r64(as, ASM_X64_REG_RBX);
  491. asm_x64_pop_r64(as, ASM_X64_REG_RBP);
  492. asm_x64_ret(as);
  493. }
  494. // locals:
  495. // - stored on the stack in ascending order
  496. // - numbered 0 through as->num_locals-1
  497. // - RSP points to the first local
  498. //
  499. // | RSP
  500. // v
  501. // l0 l1 l2 ... l(n-1)
  502. // ^ ^
  503. // | low address | high address in RAM
  504. //
  505. static int asm_x64_local_offset_from_rsp(asm_x64_t *as, int local_num) {
  506. (void)as;
  507. // Stack is full descending, RSP points to local0
  508. return local_num * WORD_SIZE;
  509. }
  510. void asm_x64_mov_local_to_r64(asm_x64_t *as, int src_local_num, int dest_r64) {
  511. asm_x64_mov_mem64_to_r64(as, ASM_X64_REG_RSP, asm_x64_local_offset_from_rsp(as, src_local_num), dest_r64);
  512. }
  513. void asm_x64_mov_r64_to_local(asm_x64_t *as, int src_r64, int dest_local_num) {
  514. asm_x64_mov_r64_to_mem64(as, src_r64, ASM_X64_REG_RSP, asm_x64_local_offset_from_rsp(as, dest_local_num));
  515. }
  516. void asm_x64_mov_local_addr_to_r64(asm_x64_t *as, int local_num, int dest_r64) {
  517. int offset = asm_x64_local_offset_from_rsp(as, local_num);
  518. if (offset == 0) {
  519. asm_x64_mov_r64_r64(as, dest_r64, ASM_X64_REG_RSP);
  520. } else {
  521. asm_x64_lea_disp_to_r64(as, ASM_X64_REG_RSP, offset, dest_r64);
  522. }
  523. }
  524. void asm_x64_mov_reg_pcrel(asm_x64_t *as, int dest_r64, mp_uint_t label) {
  525. mp_uint_t dest = get_label_dest(as, label);
  526. mp_int_t rel = dest - (as->base.code_offset + 7);
  527. asm_x64_write_byte_3(as, REX_PREFIX | REX_W | REX_R_FROM_R64(dest_r64), OPCODE_LEA_MEM_TO_R64, MODRM_R64(dest_r64) | MODRM_RM_R64(5));
  528. asm_x64_write_word32(as, rel);
  529. }
  530. /*
  531. void asm_x64_push_local(asm_x64_t *as, int local_num) {
  532. asm_x64_push_disp(as, ASM_X64_REG_RSP, asm_x64_local_offset_from_rsp(as, local_num));
  533. }
  534. void asm_x64_push_local_addr(asm_x64_t *as, int local_num, int temp_r64) {
  535. asm_x64_mov_r64_r64(as, temp_r64, ASM_X64_REG_RSP);
  536. asm_x64_add_i32_to_r32(as, asm_x64_local_offset_from_rsp(as, local_num), temp_r64);
  537. asm_x64_push_r64(as, temp_r64);
  538. }
  539. */
  540. /*
  541. can't use these because code might be relocated when resized
  542. void asm_x64_call(asm_x64_t *as, void* func) {
  543. asm_x64_sub_i32_from_r32(as, 8, ASM_X64_REG_RSP);
  544. asm_x64_write_byte_1(as, OPCODE_CALL_REL32);
  545. asm_x64_write_word32(as, func - (void*)(as->code_cur + 4));
  546. asm_x64_mov_r64_r64(as, ASM_X64_REG_RSP, ASM_X64_REG_RBP);
  547. }
  548. void asm_x64_call_i1(asm_x64_t *as, void* func, int i1) {
  549. asm_x64_sub_i32_from_r32(as, 8, ASM_X64_REG_RSP);
  550. asm_x64_sub_i32_from_r32(as, 12, ASM_X64_REG_RSP);
  551. asm_x64_push_i32(as, i1);
  552. asm_x64_write_byte_1(as, OPCODE_CALL_REL32);
  553. asm_x64_write_word32(as, func - (void*)(as->code_cur + 4));
  554. asm_x64_add_i32_to_r32(as, 16, ASM_X64_REG_RSP);
  555. asm_x64_mov_r64_r64(as, ASM_X64_REG_RSP, ASM_X64_REG_RBP);
  556. }
  557. */
  558. void asm_x64_call_ind(asm_x64_t *as, size_t fun_id, int temp_r64) {
  559. assert(temp_r64 < 8);
  560. asm_x64_mov_mem64_to_r64(as, ASM_X64_REG_FUN_TABLE, fun_id * WORD_SIZE, temp_r64);
  561. asm_x64_write_byte_2(as, OPCODE_CALL_RM32, MODRM_R64(2) | MODRM_RM_REG | MODRM_RM_R64(temp_r64));
  562. }
  563. #endif // MICROPY_EMIT_X64