2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "../tcg-ldst.c.inc"
26 #include "../tcg-pool.c.inc"
28 #ifdef CONFIG_DEBUG_TCG
29 static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
30 #if TCG_TARGET_REG_BITS == 64
31 "%rax", "%rcx", "%rdx", "%rbx", "%rsp", "%rbp", "%rsi", "%rdi",
33 "%eax", "%ecx", "%edx", "%ebx", "%esp", "%ebp", "%esi", "%edi",
35 "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%r14", "%r15",
36 "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7",
37 #if TCG_TARGET_REG_BITS == 64
38 "%xmm8", "%xmm9", "%xmm10", "%xmm11",
39 "%xmm12", "%xmm13", "%xmm14", "%xmm15",
44 static const int tcg_target_reg_alloc_order[] = {
45 #if TCG_TARGET_REG_BITS == 64
77 /* The Win64 ABI has xmm6-xmm15 as caller-saves, and we do not save
78 any of them. Therefore only allow xmm0-xmm5 to be allocated. */
81 #if TCG_TARGET_REG_BITS == 64
94 #define TCG_TMP_VEC TCG_REG_XMM5
96 static const int tcg_target_call_iarg_regs[] = {
97 #if TCG_TARGET_REG_BITS == 64
110 /* 32 bit mode uses stack based calling convention (GCC default). */
114 static TCGReg tcg_target_call_oarg_reg(TCGCallReturnKind kind, int slot)
117 case TCG_CALL_RET_NORMAL:
118 tcg_debug_assert(slot >= 0 && slot <= 1);
119 return slot ? TCG_REG_EDX : TCG_REG_EAX;
121 case TCG_CALL_RET_BY_VEC:
122 tcg_debug_assert(slot == 0);
126 g_assert_not_reached();
130 /* Constants we accept. */
131 #define TCG_CT_CONST_S32 0x100
132 #define TCG_CT_CONST_U32 0x200
133 #define TCG_CT_CONST_I32 0x400
134 #define TCG_CT_CONST_WSZ 0x800
136 /* Registers used with L constraint, which are the first argument
137 registers on x86_64, and two random call clobbered registers on
139 #if TCG_TARGET_REG_BITS == 64
140 # define TCG_REG_L0 tcg_target_call_iarg_regs[0]
141 # define TCG_REG_L1 tcg_target_call_iarg_regs[1]
143 # define TCG_REG_L0 TCG_REG_EAX
144 # define TCG_REG_L1 TCG_REG_EDX
147 #define ALL_BYTEH_REGS 0x0000000fu
148 #if TCG_TARGET_REG_BITS == 64
149 # define ALL_GENERAL_REGS 0x0000ffffu
150 # define ALL_VECTOR_REGS 0xffff0000u
151 # define ALL_BYTEL_REGS ALL_GENERAL_REGS
153 # define ALL_GENERAL_REGS 0x000000ffu
154 # define ALL_VECTOR_REGS 0x00ff0000u
155 # define ALL_BYTEL_REGS ALL_BYTEH_REGS
157 #ifdef CONFIG_SOFTMMU
158 # define SOFTMMU_RESERVE_REGS ((1 << TCG_REG_L0) | (1 << TCG_REG_L1))
160 # define SOFTMMU_RESERVE_REGS 0
163 /* For 64-bit, we always know that CMOV is available. */
164 #if TCG_TARGET_REG_BITS == 64
165 # define have_cmov true
167 # define have_cmov (cpuinfo & CPUINFO_CMOV)
169 #define have_bmi2 (cpuinfo & CPUINFO_BMI2)
170 #define have_lzcnt (cpuinfo & CPUINFO_LZCNT)
172 static const tcg_insn_unit *tb_ret_addr;
174 static bool patch_reloc(tcg_insn_unit *code_ptr, int type,
175 intptr_t value, intptr_t addend)
180 value -= (uintptr_t)tcg_splitwx_to_rx(code_ptr);
181 if (value != (int32_t)value) {
186 tcg_patch32(code_ptr, value);
189 value -= (uintptr_t)tcg_splitwx_to_rx(code_ptr);
190 if (value != (int8_t)value) {
193 tcg_patch8(code_ptr, value);
196 g_assert_not_reached();
201 /* test if a constant matches the constraint */
202 static bool tcg_target_const_match(int64_t val, TCGType type, int ct)
204 if (ct & TCG_CT_CONST) {
207 if (type == TCG_TYPE_I32) {
208 if (ct & (TCG_CT_CONST_S32 | TCG_CT_CONST_U32 | TCG_CT_CONST_I32)) {
212 if ((ct & TCG_CT_CONST_S32) && val == (int32_t)val) {
215 if ((ct & TCG_CT_CONST_U32) && val == (uint32_t)val) {
218 if ((ct & TCG_CT_CONST_I32) && ~val == (int32_t)~val) {
222 if ((ct & TCG_CT_CONST_WSZ) && val == (type == TCG_TYPE_I32 ? 32 : 64)) {
228 # define LOWREGMASK(x) ((x) & 7)
230 #define P_EXT 0x100 /* 0x0f opcode prefix */
231 #define P_EXT38 0x200 /* 0x0f 0x38 opcode prefix */
232 #define P_DATA16 0x400 /* 0x66 opcode prefix */
233 #define P_VEXW 0x1000 /* Set VEX.W = 1 */
234 #if TCG_TARGET_REG_BITS == 64
235 # define P_REXW P_VEXW /* Set REX.W = 1; match VEXW */
236 # define P_REXB_R 0x2000 /* REG field as byte register */
237 # define P_REXB_RM 0x4000 /* R/M field as byte register */
238 # define P_GS 0x8000 /* gs segment override */
245 #define P_EXT3A 0x10000 /* 0x0f 0x3a opcode prefix */
246 #define P_SIMDF3 0x20000 /* 0xf3 opcode prefix */
247 #define P_SIMDF2 0x40000 /* 0xf2 opcode prefix */
248 #define P_VEXL 0x80000 /* Set VEX.L = 1 */
249 #define P_EVEX 0x100000 /* Requires EVEX encoding */
251 #define OPC_ARITH_EvIz (0x81)
252 #define OPC_ARITH_EvIb (0x83)
253 #define OPC_ARITH_GvEv (0x03) /* ... plus (ARITH_FOO << 3) */
254 #define OPC_ANDN (0xf2 | P_EXT38)
255 #define OPC_ADD_GvEv (OPC_ARITH_GvEv | (ARITH_ADD << 3))
256 #define OPC_AND_GvEv (OPC_ARITH_GvEv | (ARITH_AND << 3))
257 #define OPC_BLENDPS (0x0c | P_EXT3A | P_DATA16)
258 #define OPC_BSF (0xbc | P_EXT)
259 #define OPC_BSR (0xbd | P_EXT)
260 #define OPC_BSWAP (0xc8 | P_EXT)
261 #define OPC_CALL_Jz (0xe8)
262 #define OPC_CMOVCC (0x40 | P_EXT) /* ... plus condition code */
263 #define OPC_CMP_GvEv (OPC_ARITH_GvEv | (ARITH_CMP << 3))
264 #define OPC_DEC_r32 (0x48)
265 #define OPC_IMUL_GvEv (0xaf | P_EXT)
266 #define OPC_IMUL_GvEvIb (0x6b)
267 #define OPC_IMUL_GvEvIz (0x69)
268 #define OPC_INC_r32 (0x40)
269 #define OPC_JCC_long (0x80 | P_EXT) /* ... plus condition code */
270 #define OPC_JCC_short (0x70) /* ... plus condition code */
271 #define OPC_JMP_long (0xe9)
272 #define OPC_JMP_short (0xeb)
273 #define OPC_LEA (0x8d)
274 #define OPC_LZCNT (0xbd | P_EXT | P_SIMDF3)
275 #define OPC_MOVB_EvGv (0x88) /* stores, more or less */
276 #define OPC_MOVL_EvGv (0x89) /* stores, more or less */
277 #define OPC_MOVL_GvEv (0x8b) /* loads, more or less */
278 #define OPC_MOVB_EvIz (0xc6)
279 #define OPC_MOVL_EvIz (0xc7)
280 #define OPC_MOVL_Iv (0xb8)
281 #define OPC_MOVBE_GyMy (0xf0 | P_EXT38)
282 #define OPC_MOVBE_MyGy (0xf1 | P_EXT38)
283 #define OPC_MOVD_VyEy (0x6e | P_EXT | P_DATA16)
284 #define OPC_MOVD_EyVy (0x7e | P_EXT | P_DATA16)
285 #define OPC_MOVDDUP (0x12 | P_EXT | P_SIMDF2)
286 #define OPC_MOVDQA_VxWx (0x6f | P_EXT | P_DATA16)
287 #define OPC_MOVDQA_WxVx (0x7f | P_EXT | P_DATA16)
288 #define OPC_MOVDQU_VxWx (0x6f | P_EXT | P_SIMDF3)
289 #define OPC_MOVDQU_WxVx (0x7f | P_EXT | P_SIMDF3)
290 #define OPC_MOVQ_VqWq (0x7e | P_EXT | P_SIMDF3)
291 #define OPC_MOVQ_WqVq (0xd6 | P_EXT | P_DATA16)
292 #define OPC_MOVSBL (0xbe | P_EXT)
293 #define OPC_MOVSWL (0xbf | P_EXT)
294 #define OPC_MOVSLQ (0x63 | P_REXW)
295 #define OPC_MOVZBL (0xb6 | P_EXT)
296 #define OPC_MOVZWL (0xb7 | P_EXT)
297 #define OPC_PABSB (0x1c | P_EXT38 | P_DATA16)
298 #define OPC_PABSW (0x1d | P_EXT38 | P_DATA16)
299 #define OPC_PABSD (0x1e | P_EXT38 | P_DATA16)
300 #define OPC_VPABSQ (0x1f | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
301 #define OPC_PACKSSDW (0x6b | P_EXT | P_DATA16)
302 #define OPC_PACKSSWB (0x63 | P_EXT | P_DATA16)
303 #define OPC_PACKUSDW (0x2b | P_EXT38 | P_DATA16)
304 #define OPC_PACKUSWB (0x67 | P_EXT | P_DATA16)
305 #define OPC_PADDB (0xfc | P_EXT | P_DATA16)
306 #define OPC_PADDW (0xfd | P_EXT | P_DATA16)
307 #define OPC_PADDD (0xfe | P_EXT | P_DATA16)
308 #define OPC_PADDQ (0xd4 | P_EXT | P_DATA16)
309 #define OPC_PADDSB (0xec | P_EXT | P_DATA16)
310 #define OPC_PADDSW (0xed | P_EXT | P_DATA16)
311 #define OPC_PADDUB (0xdc | P_EXT | P_DATA16)
312 #define OPC_PADDUW (0xdd | P_EXT | P_DATA16)
313 #define OPC_PAND (0xdb | P_EXT | P_DATA16)
314 #define OPC_PANDN (0xdf | P_EXT | P_DATA16)
315 #define OPC_PBLENDW (0x0e | P_EXT3A | P_DATA16)
316 #define OPC_PCMPEQB (0x74 | P_EXT | P_DATA16)
317 #define OPC_PCMPEQW (0x75 | P_EXT | P_DATA16)
318 #define OPC_PCMPEQD (0x76 | P_EXT | P_DATA16)
319 #define OPC_PCMPEQQ (0x29 | P_EXT38 | P_DATA16)
320 #define OPC_PCMPGTB (0x64 | P_EXT | P_DATA16)
321 #define OPC_PCMPGTW (0x65 | P_EXT | P_DATA16)
322 #define OPC_PCMPGTD (0x66 | P_EXT | P_DATA16)
323 #define OPC_PCMPGTQ (0x37 | P_EXT38 | P_DATA16)
324 #define OPC_PEXTRD (0x16 | P_EXT3A | P_DATA16)
325 #define OPC_PINSRD (0x22 | P_EXT3A | P_DATA16)
326 #define OPC_PMAXSB (0x3c | P_EXT38 | P_DATA16)
327 #define OPC_PMAXSW (0xee | P_EXT | P_DATA16)
328 #define OPC_PMAXSD (0x3d | P_EXT38 | P_DATA16)
329 #define OPC_VPMAXSQ (0x3d | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
330 #define OPC_PMAXUB (0xde | P_EXT | P_DATA16)
331 #define OPC_PMAXUW (0x3e | P_EXT38 | P_DATA16)
332 #define OPC_PMAXUD (0x3f | P_EXT38 | P_DATA16)
333 #define OPC_VPMAXUQ (0x3f | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
334 #define OPC_PMINSB (0x38 | P_EXT38 | P_DATA16)
335 #define OPC_PMINSW (0xea | P_EXT | P_DATA16)
336 #define OPC_PMINSD (0x39 | P_EXT38 | P_DATA16)
337 #define OPC_VPMINSQ (0x39 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
338 #define OPC_PMINUB (0xda | P_EXT | P_DATA16)
339 #define OPC_PMINUW (0x3a | P_EXT38 | P_DATA16)
340 #define OPC_PMINUD (0x3b | P_EXT38 | P_DATA16)
341 #define OPC_VPMINUQ (0x3b | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
342 #define OPC_PMOVSXBW (0x20 | P_EXT38 | P_DATA16)
343 #define OPC_PMOVSXWD (0x23 | P_EXT38 | P_DATA16)
344 #define OPC_PMOVSXDQ (0x25 | P_EXT38 | P_DATA16)
345 #define OPC_PMOVZXBW (0x30 | P_EXT38 | P_DATA16)
346 #define OPC_PMOVZXWD (0x33 | P_EXT38 | P_DATA16)
347 #define OPC_PMOVZXDQ (0x35 | P_EXT38 | P_DATA16)
348 #define OPC_PMULLW (0xd5 | P_EXT | P_DATA16)
349 #define OPC_PMULLD (0x40 | P_EXT38 | P_DATA16)
350 #define OPC_VPMULLQ (0x40 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
351 #define OPC_POR (0xeb | P_EXT | P_DATA16)
352 #define OPC_PSHUFB (0x00 | P_EXT38 | P_DATA16)
353 #define OPC_PSHUFD (0x70 | P_EXT | P_DATA16)
354 #define OPC_PSHUFLW (0x70 | P_EXT | P_SIMDF2)
355 #define OPC_PSHUFHW (0x70 | P_EXT | P_SIMDF3)
356 #define OPC_PSHIFTW_Ib (0x71 | P_EXT | P_DATA16) /* /2 /6 /4 */
357 #define OPC_PSHIFTD_Ib (0x72 | P_EXT | P_DATA16) /* /1 /2 /6 /4 */
358 #define OPC_PSHIFTQ_Ib (0x73 | P_EXT | P_DATA16) /* /2 /6 /4 */
359 #define OPC_PSLLW (0xf1 | P_EXT | P_DATA16)
360 #define OPC_PSLLD (0xf2 | P_EXT | P_DATA16)
361 #define OPC_PSLLQ (0xf3 | P_EXT | P_DATA16)
362 #define OPC_PSRAW (0xe1 | P_EXT | P_DATA16)
363 #define OPC_PSRAD (0xe2 | P_EXT | P_DATA16)
364 #define OPC_VPSRAQ (0xe2 | P_EXT | P_DATA16 | P_VEXW | P_EVEX)
365 #define OPC_PSRLW (0xd1 | P_EXT | P_DATA16)
366 #define OPC_PSRLD (0xd2 | P_EXT | P_DATA16)
367 #define OPC_PSRLQ (0xd3 | P_EXT | P_DATA16)
368 #define OPC_PSUBB (0xf8 | P_EXT | P_DATA16)
369 #define OPC_PSUBW (0xf9 | P_EXT | P_DATA16)
370 #define OPC_PSUBD (0xfa | P_EXT | P_DATA16)
371 #define OPC_PSUBQ (0xfb | P_EXT | P_DATA16)
372 #define OPC_PSUBSB (0xe8 | P_EXT | P_DATA16)
373 #define OPC_PSUBSW (0xe9 | P_EXT | P_DATA16)
374 #define OPC_PSUBUB (0xd8 | P_EXT | P_DATA16)
375 #define OPC_PSUBUW (0xd9 | P_EXT | P_DATA16)
376 #define OPC_PUNPCKLBW (0x60 | P_EXT | P_DATA16)
377 #define OPC_PUNPCKLWD (0x61 | P_EXT | P_DATA16)
378 #define OPC_PUNPCKLDQ (0x62 | P_EXT | P_DATA16)
379 #define OPC_PUNPCKLQDQ (0x6c | P_EXT | P_DATA16)
380 #define OPC_PUNPCKHBW (0x68 | P_EXT | P_DATA16)
381 #define OPC_PUNPCKHWD (0x69 | P_EXT | P_DATA16)
382 #define OPC_PUNPCKHDQ (0x6a | P_EXT | P_DATA16)
383 #define OPC_PUNPCKHQDQ (0x6d | P_EXT | P_DATA16)
384 #define OPC_PXOR (0xef | P_EXT | P_DATA16)
385 #define OPC_POP_r32 (0x58)
386 #define OPC_POPCNT (0xb8 | P_EXT | P_SIMDF3)
387 #define OPC_PUSH_r32 (0x50)
388 #define OPC_PUSH_Iv (0x68)
389 #define OPC_PUSH_Ib (0x6a)
390 #define OPC_RET (0xc3)
391 #define OPC_SETCC (0x90 | P_EXT | P_REXB_RM) /* ... plus cc */
392 #define OPC_SHIFT_1 (0xd1)
393 #define OPC_SHIFT_Ib (0xc1)
394 #define OPC_SHIFT_cl (0xd3)
395 #define OPC_SARX (0xf7 | P_EXT38 | P_SIMDF3)
396 #define OPC_SHUFPS (0xc6 | P_EXT)
397 #define OPC_SHLX (0xf7 | P_EXT38 | P_DATA16)
398 #define OPC_SHRX (0xf7 | P_EXT38 | P_SIMDF2)
399 #define OPC_SHRD_Ib (0xac | P_EXT)
400 #define OPC_TESTL (0x85)
401 #define OPC_TZCNT (0xbc | P_EXT | P_SIMDF3)
402 #define OPC_UD2 (0x0b | P_EXT)
403 #define OPC_VPBLENDD (0x02 | P_EXT3A | P_DATA16)
404 #define OPC_VPBLENDVB (0x4c | P_EXT3A | P_DATA16)
405 #define OPC_VPINSRB (0x20 | P_EXT3A | P_DATA16)
406 #define OPC_VPINSRW (0xc4 | P_EXT | P_DATA16)
407 #define OPC_VBROADCASTSS (0x18 | P_EXT38 | P_DATA16)
408 #define OPC_VBROADCASTSD (0x19 | P_EXT38 | P_DATA16)
409 #define OPC_VPBROADCASTB (0x78 | P_EXT38 | P_DATA16)
410 #define OPC_VPBROADCASTW (0x79 | P_EXT38 | P_DATA16)
411 #define OPC_VPBROADCASTD (0x58 | P_EXT38 | P_DATA16)
412 #define OPC_VPBROADCASTQ (0x59 | P_EXT38 | P_DATA16)
413 #define OPC_VPERMQ (0x00 | P_EXT3A | P_DATA16 | P_VEXW)
414 #define OPC_VPERM2I128 (0x46 | P_EXT3A | P_DATA16 | P_VEXL)
415 #define OPC_VPROLVD (0x15 | P_EXT38 | P_DATA16 | P_EVEX)
416 #define OPC_VPROLVQ (0x15 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
417 #define OPC_VPRORVD (0x14 | P_EXT38 | P_DATA16 | P_EVEX)
418 #define OPC_VPRORVQ (0x14 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
419 #define OPC_VPSHLDW (0x70 | P_EXT3A | P_DATA16 | P_VEXW | P_EVEX)
420 #define OPC_VPSHLDD (0x71 | P_EXT3A | P_DATA16 | P_EVEX)
421 #define OPC_VPSHLDQ (0x71 | P_EXT3A | P_DATA16 | P_VEXW | P_EVEX)
422 #define OPC_VPSHLDVW (0x70 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
423 #define OPC_VPSHLDVD (0x71 | P_EXT38 | P_DATA16 | P_EVEX)
424 #define OPC_VPSHLDVQ (0x71 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
425 #define OPC_VPSHRDVW (0x72 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
426 #define OPC_VPSHRDVD (0x73 | P_EXT38 | P_DATA16 | P_EVEX)
427 #define OPC_VPSHRDVQ (0x73 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
428 #define OPC_VPSLLVW (0x12 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
429 #define OPC_VPSLLVD (0x47 | P_EXT38 | P_DATA16)
430 #define OPC_VPSLLVQ (0x47 | P_EXT38 | P_DATA16 | P_VEXW)
431 #define OPC_VPSRAVW (0x11 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
432 #define OPC_VPSRAVD (0x46 | P_EXT38 | P_DATA16)
433 #define OPC_VPSRAVQ (0x46 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
434 #define OPC_VPSRLVW (0x10 | P_EXT38 | P_DATA16 | P_VEXW | P_EVEX)
435 #define OPC_VPSRLVD (0x45 | P_EXT38 | P_DATA16)
436 #define OPC_VPSRLVQ (0x45 | P_EXT38 | P_DATA16 | P_VEXW)
437 #define OPC_VPTERNLOGQ (0x25 | P_EXT3A | P_DATA16 | P_VEXW | P_EVEX)
438 #define OPC_VZEROUPPER (0x77 | P_EXT)
439 #define OPC_XCHG_ax_r32 (0x90)
440 #define OPC_XCHG_EvGv (0x87)
442 #define OPC_GRP3_Eb (0xf6)
443 #define OPC_GRP3_Ev (0xf7)
444 #define OPC_GRP5 (0xff)
445 #define OPC_GRP14 (0x73 | P_EXT | P_DATA16)
447 /* Group 1 opcode extensions for 0x80-0x83.
448 These are also used as modifiers for OPC_ARITH. */
458 /* Group 2 opcode extensions for 0xc0, 0xc1, 0xd0-0xd3. */
465 /* Group 3 opcode extensions for 0xf6, 0xf7. To be used with OPC_GRP3. */
474 /* Group 5 opcode extensions for 0xff. To be used with OPC_GRP5. */
475 #define EXT5_INC_Ev 0
476 #define EXT5_DEC_Ev 1
477 #define EXT5_CALLN_Ev 2
478 #define EXT5_JMPN_Ev 4
480 /* Condition codes to be added to OPC_JCC_{long,short}. */
499 static const uint8_t tcg_cond_to_jcc[] = {
500 [TCG_COND_EQ] = JCC_JE,
501 [TCG_COND_NE] = JCC_JNE,
502 [TCG_COND_LT] = JCC_JL,
503 [TCG_COND_GE] = JCC_JGE,
504 [TCG_COND_LE] = JCC_JLE,
505 [TCG_COND_GT] = JCC_JG,
506 [TCG_COND_LTU] = JCC_JB,
507 [TCG_COND_GEU] = JCC_JAE,
508 [TCG_COND_LEU] = JCC_JBE,
509 [TCG_COND_GTU] = JCC_JA,
512 #if TCG_TARGET_REG_BITS == 64
513 static void tcg_out_opc(TCGContext *s, int opc, int r, int rm, int x)
520 if (opc & P_DATA16) {
521 /* We should never be asking for both 16 and 64-bit operation. */
522 tcg_debug_assert((opc & P_REXW) == 0);
525 if (opc & P_SIMDF3) {
527 } else if (opc & P_SIMDF2) {
532 rex |= (opc & P_REXW) ? 0x8 : 0x0; /* REX.W */
533 rex |= (r & 8) >> 1; /* REX.R */
534 rex |= (x & 8) >> 2; /* REX.X */
535 rex |= (rm & 8) >> 3; /* REX.B */
537 /* P_REXB_{R,RM} indicates that the given register is the low byte.
538 For %[abcd]l we need no REX prefix, but for %{si,di,bp,sp}l we do,
539 as otherwise the encoding indicates %[abcd]h. Note that the values
540 that are ORed in merely indicate that the REX byte must be present;
541 those bits get discarded in output. */
542 rex |= opc & (r >= 4 ? P_REXB_R : 0);
543 rex |= opc & (rm >= 4 ? P_REXB_RM : 0);
546 tcg_out8(s, (uint8_t)(rex | 0x40));
549 if (opc & (P_EXT | P_EXT38 | P_EXT3A)) {
553 } else if (opc & P_EXT3A) {
561 static void tcg_out_opc(TCGContext *s, int opc)
563 if (opc & P_DATA16) {
566 if (opc & P_SIMDF3) {
568 } else if (opc & P_SIMDF2) {
571 if (opc & (P_EXT | P_EXT38 | P_EXT3A)) {
575 } else if (opc & P_EXT3A) {
581 /* Discard the register arguments to tcg_out_opc early, so as not to penalize
582 the 32-bit compilation paths. This method works with all versions of gcc,
583 whereas relying on optimization may not be able to exclude them. */
584 #define tcg_out_opc(s, opc, r, rm, x) (tcg_out_opc)(s, opc)
587 static void tcg_out_modrm(TCGContext *s, int opc, int r, int rm)
589 tcg_out_opc(s, opc, r, rm, 0);
590 tcg_out8(s, 0xc0 | (LOWREGMASK(r) << 3) | LOWREGMASK(rm));
593 static void tcg_out_vex_opc(TCGContext *s, int opc, int r, int v,
598 /* Use the two byte form if possible, which cannot encode
599 VEX.W, VEX.B, VEX.X, or an m-mmmm field other than P_EXT. */
600 if ((opc & (P_EXT | P_EXT38 | P_EXT3A | P_VEXW)) == P_EXT
601 && ((rm | index) & 8) == 0) {
602 /* Two byte VEX prefix. */
605 tmp = (r & 8 ? 0 : 0x80); /* VEX.R */
607 /* Three byte VEX prefix. */
613 } else if (opc & P_EXT38) {
615 } else if (opc & P_EXT) {
618 g_assert_not_reached();
620 tmp |= (r & 8 ? 0 : 0x80); /* VEX.R */
621 tmp |= (index & 8 ? 0 : 0x40); /* VEX.X */
622 tmp |= (rm & 8 ? 0 : 0x20); /* VEX.B */
625 tmp = (opc & P_VEXW ? 0x80 : 0); /* VEX.W */
628 tmp |= (opc & P_VEXL ? 0x04 : 0); /* VEX.L */
630 if (opc & P_DATA16) {
632 } else if (opc & P_SIMDF3) {
634 } else if (opc & P_SIMDF2) {
637 tmp |= (~v & 15) << 3; /* VEX.vvvv */
642 static void tcg_out_evex_opc(TCGContext *s, int opc, int r, int v,
645 /* The entire 4-byte evex prefix; with R' and V' set. */
646 uint32_t p = 0x08041062;
649 tcg_debug_assert(have_avx512vl);
654 } else if (opc & P_EXT38) {
656 } else if (opc & P_EXT) {
659 g_assert_not_reached();
663 if (opc & P_DATA16) {
665 } else if (opc & P_SIMDF3) {
667 } else if (opc & P_SIMDF2) {
673 p = deposit32(p, 8, 2, mm);
674 p = deposit32(p, 13, 1, (rm & 8) == 0); /* EVEX.RXB.B */
675 p = deposit32(p, 14, 1, (index & 8) == 0); /* EVEX.RXB.X */
676 p = deposit32(p, 15, 1, (r & 8) == 0); /* EVEX.RXB.R */
677 p = deposit32(p, 16, 2, pp);
678 p = deposit32(p, 19, 4, ~v);
679 p = deposit32(p, 23, 1, (opc & P_VEXW) != 0);
680 p = deposit32(p, 29, 2, (opc & P_VEXL) != 0);
686 static void tcg_out_vex_modrm(TCGContext *s, int opc, int r, int v, int rm)
689 tcg_out_evex_opc(s, opc, r, v, rm, 0);
691 tcg_out_vex_opc(s, opc, r, v, rm, 0);
693 tcg_out8(s, 0xc0 | (LOWREGMASK(r) << 3) | LOWREGMASK(rm));
696 /* Output an opcode with a full "rm + (index<<shift) + offset" address mode.
697 We handle either RM and INDEX missing with a negative value. In 64-bit
698 mode for absolute addresses, ~RM is the size of the immediate operand
699 that will follow the instruction. */
701 static void tcg_out_sib_offset(TCGContext *s, int r, int rm, int index,
702 int shift, intptr_t offset)
706 if (index < 0 && rm < 0) {
707 if (TCG_TARGET_REG_BITS == 64) {
708 /* Try for a rip-relative addressing mode. This has replaced
709 the 32-bit-mode absolute addressing encoding. */
710 intptr_t pc = (intptr_t)s->code_ptr + 5 + ~rm;
711 intptr_t disp = offset - pc;
712 if (disp == (int32_t)disp) {
713 tcg_out8(s, (LOWREGMASK(r) << 3) | 5);
718 /* Try for an absolute address encoding. This requires the
719 use of the MODRM+SIB encoding and is therefore larger than
720 rip-relative addressing. */
721 if (offset == (int32_t)offset) {
722 tcg_out8(s, (LOWREGMASK(r) << 3) | 4);
723 tcg_out8(s, (4 << 3) | 5);
724 tcg_out32(s, offset);
728 /* ??? The memory isn't directly addressable. */
729 g_assert_not_reached();
731 /* Absolute address. */
732 tcg_out8(s, (r << 3) | 5);
733 tcg_out32(s, offset);
738 /* Find the length of the immediate addend. Note that the encoding
739 that would be used for (%ebp) indicates absolute addressing. */
741 mod = 0, len = 4, rm = 5;
742 } else if (offset == 0 && LOWREGMASK(rm) != TCG_REG_EBP) {
744 } else if (offset == (int8_t)offset) {
750 /* Use a single byte MODRM format if possible. Note that the encoding
751 that would be used for %esp is the escape to the two byte form. */
752 if (index < 0 && LOWREGMASK(rm) != TCG_REG_ESP) {
753 /* Single byte MODRM format. */
754 tcg_out8(s, mod | (LOWREGMASK(r) << 3) | LOWREGMASK(rm));
756 /* Two byte MODRM+SIB format. */
758 /* Note that the encoding that would place %esp into the index
759 field indicates no index register. In 64-bit mode, the REX.X
760 bit counts, so %r12 can be used as the index. */
764 tcg_debug_assert(index != TCG_REG_ESP);
767 tcg_out8(s, mod | (LOWREGMASK(r) << 3) | 4);
768 tcg_out8(s, (shift << 6) | (LOWREGMASK(index) << 3) | LOWREGMASK(rm));
773 } else if (len == 4) {
774 tcg_out32(s, offset);
778 static void tcg_out_modrm_sib_offset(TCGContext *s, int opc, int r, int rm,
779 int index, int shift, intptr_t offset)
781 tcg_out_opc(s, opc, r, rm < 0 ? 0 : rm, index < 0 ? 0 : index);
782 tcg_out_sib_offset(s, r, rm, index, shift, offset);
785 static void tcg_out_vex_modrm_sib_offset(TCGContext *s, int opc, int r, int v,
786 int rm, int index, int shift,
789 tcg_out_vex_opc(s, opc, r, v, rm < 0 ? 0 : rm, index < 0 ? 0 : index);
790 tcg_out_sib_offset(s, r, rm, index, shift, offset);
793 /* A simplification of the above with no index or shift. */
794 static inline void tcg_out_modrm_offset(TCGContext *s, int opc, int r,
795 int rm, intptr_t offset)
797 tcg_out_modrm_sib_offset(s, opc, r, rm, -1, 0, offset);
800 static inline void tcg_out_vex_modrm_offset(TCGContext *s, int opc, int r,
801 int v, int rm, intptr_t offset)
803 tcg_out_vex_modrm_sib_offset(s, opc, r, v, rm, -1, 0, offset);
806 /* Output an opcode with an expected reference to the constant pool. */
807 static inline void tcg_out_modrm_pool(TCGContext *s, int opc, int r)
809 tcg_out_opc(s, opc, r, 0, 0);
810 /* Absolute for 32-bit, pc-relative for 64-bit. */
811 tcg_out8(s, LOWREGMASK(r) << 3 | 5);
815 /* Output an opcode with an expected reference to the constant pool. */
816 static inline void tcg_out_vex_modrm_pool(TCGContext *s, int opc, int r)
818 tcg_out_vex_opc(s, opc, r, 0, 0, 0);
819 /* Absolute for 32-bit, pc-relative for 64-bit. */
820 tcg_out8(s, LOWREGMASK(r) << 3 | 5);
824 /* Generate dest op= src. Uses the same ARITH_* codes as tgen_arithi. */
825 static inline void tgen_arithr(TCGContext *s, int subop, int dest, int src)
827 /* Propagate an opcode prefix, such as P_REXW. */
828 int ext = subop & ~0x7;
831 tcg_out_modrm(s, OPC_ARITH_GvEv + (subop << 3) + ext, dest, src);
834 static bool tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg)
848 tcg_out_modrm(s, OPC_MOVL_GvEv + rexw, ret, arg);
850 tcg_out_vex_modrm(s, OPC_MOVD_EyVy + rexw, arg, 0, ret);
854 tcg_out_vex_modrm(s, OPC_MOVD_VyEy + rexw, ret, 0, arg);
856 tcg_out_vex_modrm(s, OPC_MOVQ_VqWq, ret, 0, arg);
862 tcg_debug_assert(ret >= 16 && arg >= 16);
863 tcg_out_vex_modrm(s, OPC_MOVQ_VqWq, ret, 0, arg);
866 tcg_debug_assert(ret >= 16 && arg >= 16);
867 tcg_out_vex_modrm(s, OPC_MOVDQA_VxWx, ret, 0, arg);
870 tcg_debug_assert(ret >= 16 && arg >= 16);
871 tcg_out_vex_modrm(s, OPC_MOVDQA_VxWx | P_VEXL, ret, 0, arg);
875 g_assert_not_reached();
880 static const int avx2_dup_insn[4] = {
881 OPC_VPBROADCASTB, OPC_VPBROADCASTW,
882 OPC_VPBROADCASTD, OPC_VPBROADCASTQ,
885 static bool tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece,
889 int vex_l = (type == TCG_TYPE_V256 ? P_VEXL : 0);
890 tcg_out_vex_modrm(s, avx2_dup_insn[vece] + vex_l, r, 0, a);
894 /* ??? With zero in a register, use PSHUFB. */
895 tcg_out_vex_modrm(s, OPC_PUNPCKLBW, r, a, a);
899 tcg_out_vex_modrm(s, OPC_PUNPCKLWD, r, a, a);
903 tcg_out_vex_modrm(s, OPC_PSHUFD, r, 0, a);
904 /* imm8 operand: all output lanes selected from input lane 0. */
908 tcg_out_vex_modrm(s, OPC_PUNPCKLQDQ, r, a, a);
911 g_assert_not_reached();
917 static bool tcg_out_dupm_vec(TCGContext *s, TCGType type, unsigned vece,
918 TCGReg r, TCGReg base, intptr_t offset)
921 int vex_l = (type == TCG_TYPE_V256 ? P_VEXL : 0);
922 tcg_out_vex_modrm_offset(s, avx2_dup_insn[vece] + vex_l,
927 tcg_out_vex_modrm_offset(s, OPC_MOVDDUP, r, 0, base, offset);
930 tcg_out_vex_modrm_offset(s, OPC_VBROADCASTSS, r, 0, base, offset);
933 tcg_out_vex_modrm_offset(s, OPC_VPINSRW, r, r, base, offset);
934 tcg_out8(s, 0); /* imm8 */
935 tcg_out_dup_vec(s, type, vece, r, r);
938 tcg_out_vex_modrm_offset(s, OPC_VPINSRB, r, r, base, offset);
939 tcg_out8(s, 0); /* imm8 */
940 tcg_out_dup_vec(s, type, vece, r, r);
943 g_assert_not_reached();
949 static void tcg_out_dupi_vec(TCGContext *s, TCGType type, unsigned vece,
950 TCGReg ret, int64_t arg)
952 int vex_l = (type == TCG_TYPE_V256 ? P_VEXL : 0);
955 tcg_out_vex_modrm(s, OPC_PXOR, ret, ret, ret);
959 tcg_out_vex_modrm(s, OPC_PCMPEQB + vex_l, ret, ret, ret);
963 if (TCG_TARGET_REG_BITS == 32 && vece < MO_64) {
965 tcg_out_vex_modrm_pool(s, OPC_VPBROADCASTD + vex_l, ret);
967 tcg_out_vex_modrm_pool(s, OPC_VBROADCASTSS, ret);
969 new_pool_label(s, arg, R_386_32, s->code_ptr - 4, 0);
971 if (type == TCG_TYPE_V64) {
972 tcg_out_vex_modrm_pool(s, OPC_MOVQ_VqWq, ret);
973 } else if (have_avx2) {
974 tcg_out_vex_modrm_pool(s, OPC_VPBROADCASTQ + vex_l, ret);
976 tcg_out_vex_modrm_pool(s, OPC_MOVDDUP, ret);
978 if (TCG_TARGET_REG_BITS == 64) {
979 new_pool_label(s, arg, R_386_PC32, s->code_ptr - 4, -4);
981 new_pool_l2(s, R_386_32, s->code_ptr - 4, 0, arg, arg >> 32);
986 static void tcg_out_movi_vec(TCGContext *s, TCGType type,
987 TCGReg ret, tcg_target_long arg)
990 tcg_out_vex_modrm(s, OPC_PXOR, ret, ret, ret);
994 tcg_out_vex_modrm(s, OPC_PCMPEQB, ret, ret, ret);
998 int rexw = (type == TCG_TYPE_I32 ? 0 : P_REXW);
999 tcg_out_vex_modrm_pool(s, OPC_MOVD_VyEy + rexw, ret);
1000 if (TCG_TARGET_REG_BITS == 64) {
1001 new_pool_label(s, arg, R_386_PC32, s->code_ptr - 4, -4);
1003 new_pool_label(s, arg, R_386_32, s->code_ptr - 4, 0);
1007 static void tcg_out_movi_int(TCGContext *s, TCGType type,
1008 TCGReg ret, tcg_target_long arg)
1010 tcg_target_long diff;
1013 tgen_arithr(s, ARITH_XOR, ret, ret);
1016 if (arg == (uint32_t)arg || type == TCG_TYPE_I32) {
1017 tcg_out_opc(s, OPC_MOVL_Iv + LOWREGMASK(ret), 0, ret, 0);
1021 if (arg == (int32_t)arg) {
1022 tcg_out_modrm(s, OPC_MOVL_EvIz + P_REXW, 0, ret);
1027 /* Try a 7 byte pc-relative lea before the 10 byte movq. */
1028 diff = tcg_pcrel_diff(s, (const void *)arg) - 7;
1029 if (diff == (int32_t)diff) {
1030 tcg_out_opc(s, OPC_LEA | P_REXW, ret, 0, 0);
1031 tcg_out8(s, (LOWREGMASK(ret) << 3) | 5);
1036 tcg_out_opc(s, OPC_MOVL_Iv + P_REXW + LOWREGMASK(ret), 0, ret, 0);
1040 static void tcg_out_movi(TCGContext *s, TCGType type,
1041 TCGReg ret, tcg_target_long arg)
1045 #if TCG_TARGET_REG_BITS == 64
1049 tcg_out_movi_int(s, type, ret, arg);
1051 tcg_out_movi_vec(s, type, ret, arg);
1055 g_assert_not_reached();
1059 static bool tcg_out_xchg(TCGContext *s, TCGType type, TCGReg r1, TCGReg r2)
1061 int rexw = type == TCG_TYPE_I32 ? 0 : P_REXW;
1062 tcg_out_modrm(s, OPC_XCHG_EvGv + rexw, r1, r2);
1066 static void tcg_out_addi_ptr(TCGContext *s, TCGReg rd, TCGReg rs,
1067 tcg_target_long imm)
1069 /* This function is only used for passing structs by reference. */
1070 tcg_debug_assert(imm == (int32_t)imm);
1071 tcg_out_modrm_offset(s, OPC_LEA | P_REXW, rd, rs, imm);
1074 static inline void tcg_out_pushi(TCGContext *s, tcg_target_long val)
1076 if (val == (int8_t)val) {
1077 tcg_out_opc(s, OPC_PUSH_Ib, 0, 0, 0);
1079 } else if (val == (int32_t)val) {
1080 tcg_out_opc(s, OPC_PUSH_Iv, 0, 0, 0);
1083 g_assert_not_reached();
1087 static inline void tcg_out_mb(TCGContext *s, TCGArg a0)
1089 /* Given the strength of x86 memory ordering, we only need care for
1090 store-load ordering. Experimentally, "lock orl $0,0(%esp)" is
1091 faster than "mfence", so don't bother with the sse insn. */
1092 if (a0 & TCG_MO_ST_LD) {
1094 tcg_out_modrm_offset(s, OPC_ARITH_EvIb, ARITH_OR, TCG_REG_ESP, 0);
1099 static inline void tcg_out_push(TCGContext *s, int reg)
1101 tcg_out_opc(s, OPC_PUSH_r32 + LOWREGMASK(reg), 0, reg, 0);
1104 static inline void tcg_out_pop(TCGContext *s, int reg)
1106 tcg_out_opc(s, OPC_POP_r32 + LOWREGMASK(reg), 0, reg, 0);
1109 static void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret,
1110 TCGReg arg1, intptr_t arg2)
1115 tcg_out_modrm_offset(s, OPC_MOVL_GvEv, ret, arg1, arg2);
1117 tcg_out_vex_modrm_offset(s, OPC_MOVD_VyEy, ret, 0, arg1, arg2);
1122 tcg_out_modrm_offset(s, OPC_MOVL_GvEv | P_REXW, ret, arg1, arg2);
1127 /* There is no instruction that can validate 8-byte alignment. */
1128 tcg_debug_assert(ret >= 16);
1129 tcg_out_vex_modrm_offset(s, OPC_MOVQ_VqWq, ret, 0, arg1, arg2);
1133 * The gvec infrastructure is asserts that v128 vector loads
1134 * and stores use a 16-byte aligned offset. Validate that the
1135 * final pointer is aligned by using an insn that will SIGSEGV.
1137 tcg_debug_assert(ret >= 16);
1138 tcg_out_vex_modrm_offset(s, OPC_MOVDQA_VxWx, ret, 0, arg1, arg2);
1142 * The gvec infrastructure only requires 16-byte alignment,
1143 * so here we must use an unaligned load.
1145 tcg_debug_assert(ret >= 16);
1146 tcg_out_vex_modrm_offset(s, OPC_MOVDQU_VxWx | P_VEXL,
1147 ret, 0, arg1, arg2);
1150 g_assert_not_reached();
1154 static void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
1155 TCGReg arg1, intptr_t arg2)
1160 tcg_out_modrm_offset(s, OPC_MOVL_EvGv, arg, arg1, arg2);
1162 tcg_out_vex_modrm_offset(s, OPC_MOVD_EyVy, arg, 0, arg1, arg2);
1167 tcg_out_modrm_offset(s, OPC_MOVL_EvGv | P_REXW, arg, arg1, arg2);
1172 /* There is no instruction that can validate 8-byte alignment. */
1173 tcg_debug_assert(arg >= 16);
1174 tcg_out_vex_modrm_offset(s, OPC_MOVQ_WqVq, arg, 0, arg1, arg2);
1178 * The gvec infrastructure is asserts that v128 vector loads
1179 * and stores use a 16-byte aligned offset. Validate that the
1180 * final pointer is aligned by using an insn that will SIGSEGV.
1182 * This specific instance is also used by TCG_CALL_RET_BY_VEC,
1183 * for _WIN64, which must have SSE2 but may not have AVX.
1185 tcg_debug_assert(arg >= 16);
1187 tcg_out_vex_modrm_offset(s, OPC_MOVDQA_WxVx, arg, 0, arg1, arg2);
1189 tcg_out_modrm_offset(s, OPC_MOVDQA_WxVx, arg, arg1, arg2);
1194 * The gvec infrastructure only requires 16-byte alignment,
1195 * so here we must use an unaligned store.
1197 tcg_debug_assert(arg >= 16);
1198 tcg_out_vex_modrm_offset(s, OPC_MOVDQU_WxVx | P_VEXL,
1199 arg, 0, arg1, arg2);
1202 g_assert_not_reached();
1206 static bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
1207 TCGReg base, intptr_t ofs)
1210 if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I64) {
1211 if (val != (int32_t)val) {
1215 } else if (type != TCG_TYPE_I32) {
1218 tcg_out_modrm_offset(s, OPC_MOVL_EvIz | rexw, 0, base, ofs);
1223 static void tcg_out_shifti(TCGContext *s, int subopc, int reg, int count)
1225 /* Propagate an opcode prefix, such as P_DATA16. */
1226 int ext = subopc & ~0x7;
1230 tcg_out_modrm(s, OPC_SHIFT_1 + ext, subopc, reg);
1232 tcg_out_modrm(s, OPC_SHIFT_Ib + ext, subopc, reg);
1237 static inline void tcg_out_bswap32(TCGContext *s, int reg)
1239 tcg_out_opc(s, OPC_BSWAP + LOWREGMASK(reg), 0, reg, 0);
1242 static inline void tcg_out_rolw_8(TCGContext *s, int reg)
1244 tcg_out_shifti(s, SHIFT_ROL + P_DATA16, reg, 8);
1247 static void tcg_out_ext8u(TCGContext *s, TCGReg dest, TCGReg src)
1250 tcg_debug_assert(src < 4 || TCG_TARGET_REG_BITS == 64);
1251 tcg_out_modrm(s, OPC_MOVZBL + P_REXB_RM, dest, src);
1254 static void tcg_out_ext8s(TCGContext *s, TCGType type, TCGReg dest, TCGReg src)
1256 int rexw = type == TCG_TYPE_I32 ? 0 : P_REXW;
1258 tcg_debug_assert(src < 4 || TCG_TARGET_REG_BITS == 64);
1259 tcg_out_modrm(s, OPC_MOVSBL + P_REXB_RM + rexw, dest, src);
1262 static void tcg_out_ext16u(TCGContext *s, TCGReg dest, TCGReg src)
1265 tcg_out_modrm(s, OPC_MOVZWL, dest, src);
1268 static void tcg_out_ext16s(TCGContext *s, TCGType type, TCGReg dest, TCGReg src)
1270 int rexw = type == TCG_TYPE_I32 ? 0 : P_REXW;
1272 tcg_out_modrm(s, OPC_MOVSWL + rexw, dest, src);
1275 static void tcg_out_ext32u(TCGContext *s, TCGReg dest, TCGReg src)
1277 /* 32-bit mov zero extends. */
1278 tcg_out_modrm(s, OPC_MOVL_GvEv, dest, src);
1281 static void tcg_out_ext32s(TCGContext *s, TCGReg dest, TCGReg src)
1283 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
1284 tcg_out_modrm(s, OPC_MOVSLQ, dest, src);
1287 static void tcg_out_exts_i32_i64(TCGContext *s, TCGReg dest, TCGReg src)
1289 tcg_out_ext32s(s, dest, src);
1292 static void tcg_out_extu_i32_i64(TCGContext *s, TCGReg dest, TCGReg src)
1295 tcg_out_ext32u(s, dest, src);
1299 static void tcg_out_extrl_i64_i32(TCGContext *s, TCGReg dest, TCGReg src)
1301 tcg_out_ext32u(s, dest, src);
1304 static inline void tcg_out_bswap64(TCGContext *s, int reg)
1306 tcg_out_opc(s, OPC_BSWAP + P_REXW + LOWREGMASK(reg), 0, reg, 0);
1309 static void tgen_arithi(TCGContext *s, int c, int r0,
1310 tcg_target_long val, int cf)
1314 if (TCG_TARGET_REG_BITS == 64) {
1319 /* ??? While INC is 2 bytes shorter than ADDL $1, they also induce
1320 partial flags update stalls on Pentium4 and are not recommended
1321 by current Intel optimization manuals. */
1322 if (!cf && (c == ARITH_ADD || c == ARITH_SUB) && (val == 1 || val == -1)) {
1323 int is_inc = (c == ARITH_ADD) ^ (val < 0);
1324 if (TCG_TARGET_REG_BITS == 64) {
1325 /* The single-byte increment encodings are re-tasked as the
1326 REX prefixes. Use the MODRM encoding. */
1327 tcg_out_modrm(s, OPC_GRP5 + rexw,
1328 (is_inc ? EXT5_INC_Ev : EXT5_DEC_Ev), r0);
1330 tcg_out8(s, (is_inc ? OPC_INC_r32 : OPC_DEC_r32) + r0);
1335 if (c == ARITH_AND) {
1336 if (TCG_TARGET_REG_BITS == 64) {
1337 if (val == 0xffffffffu) {
1338 tcg_out_ext32u(s, r0, r0);
1341 if (val == (uint32_t)val) {
1342 /* AND with no high bits set can use a 32-bit operation. */
1346 if (val == 0xffu && (r0 < 4 || TCG_TARGET_REG_BITS == 64)) {
1347 tcg_out_ext8u(s, r0, r0);
1350 if (val == 0xffffu) {
1351 tcg_out_ext16u(s, r0, r0);
1356 if (val == (int8_t)val) {
1357 tcg_out_modrm(s, OPC_ARITH_EvIb + rexw, c, r0);
1361 if (rexw == 0 || val == (int32_t)val) {
1362 tcg_out_modrm(s, OPC_ARITH_EvIz + rexw, c, r0);
1367 g_assert_not_reached();
1370 static void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
1373 tgen_arithi(s, ARITH_ADD + P_REXW, reg, val, 0);
1377 /* Set SMALL to force a short forward branch. */
1378 static void tcg_out_jxx(TCGContext *s, int opc, TCGLabel *l, bool small)
1383 val = tcg_pcrel_diff(s, l->u.value_ptr);
1385 if ((int8_t)val1 == val1) {
1387 tcg_out8(s, OPC_JMP_short);
1389 tcg_out8(s, OPC_JCC_short + opc);
1393 tcg_debug_assert(!small);
1395 tcg_out8(s, OPC_JMP_long);
1396 tcg_out32(s, val - 5);
1398 tcg_out_opc(s, OPC_JCC_long + opc, 0, 0, 0);
1399 tcg_out32(s, val - 6);
1404 tcg_out8(s, OPC_JMP_short);
1406 tcg_out8(s, OPC_JCC_short + opc);
1408 tcg_out_reloc(s, s->code_ptr, R_386_PC8, l, -1);
1412 tcg_out8(s, OPC_JMP_long);
1414 tcg_out_opc(s, OPC_JCC_long + opc, 0, 0, 0);
1416 tcg_out_reloc(s, s->code_ptr, R_386_PC32, l, -4);
1421 static void tcg_out_cmp(TCGContext *s, TCGArg arg1, TCGArg arg2,
1422 int const_arg2, int rexw)
1427 tcg_out_modrm(s, OPC_TESTL + rexw, arg1, arg1);
1429 tgen_arithi(s, ARITH_CMP + rexw, arg1, arg2, 0);
1432 tgen_arithr(s, ARITH_CMP + rexw, arg1, arg2);
1436 static void tcg_out_brcond32(TCGContext *s, TCGCond cond,
1437 TCGArg arg1, TCGArg arg2, int const_arg2,
1438 TCGLabel *label, int small)
1440 tcg_out_cmp(s, arg1, arg2, const_arg2, 0);
1441 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label, small);
1444 #if TCG_TARGET_REG_BITS == 64
1445 static void tcg_out_brcond64(TCGContext *s, TCGCond cond,
1446 TCGArg arg1, TCGArg arg2, int const_arg2,
1447 TCGLabel *label, int small)
1449 tcg_out_cmp(s, arg1, arg2, const_arg2, P_REXW);
1450 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label, small);
1453 /* XXX: we implement it at the target level to avoid having to
1454 handle cross basic blocks temporaries */
1455 static void tcg_out_brcond2(TCGContext *s, const TCGArg *args,
1456 const int *const_args, int small)
1458 TCGLabel *label_next = gen_new_label();
1459 TCGLabel *label_this = arg_label(args[5]);
1463 tcg_out_brcond32(s, TCG_COND_NE, args[0], args[2], const_args[2],
1465 tcg_out_brcond32(s, TCG_COND_EQ, args[1], args[3], const_args[3],
1469 tcg_out_brcond32(s, TCG_COND_NE, args[0], args[2], const_args[2],
1471 tcg_out_brcond32(s, TCG_COND_NE, args[1], args[3], const_args[3],
1475 tcg_out_brcond32(s, TCG_COND_LT, args[1], args[3], const_args[3],
1477 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1478 tcg_out_brcond32(s, TCG_COND_LTU, args[0], args[2], const_args[2],
1482 tcg_out_brcond32(s, TCG_COND_LT, args[1], args[3], const_args[3],
1484 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1485 tcg_out_brcond32(s, TCG_COND_LEU, args[0], args[2], const_args[2],
1489 tcg_out_brcond32(s, TCG_COND_GT, args[1], args[3], const_args[3],
1491 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1492 tcg_out_brcond32(s, TCG_COND_GTU, args[0], args[2], const_args[2],
1496 tcg_out_brcond32(s, TCG_COND_GT, args[1], args[3], const_args[3],
1498 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1499 tcg_out_brcond32(s, TCG_COND_GEU, args[0], args[2], const_args[2],
1503 tcg_out_brcond32(s, TCG_COND_LTU, args[1], args[3], const_args[3],
1505 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1506 tcg_out_brcond32(s, TCG_COND_LTU, args[0], args[2], const_args[2],
1510 tcg_out_brcond32(s, TCG_COND_LTU, args[1], args[3], const_args[3],
1512 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1513 tcg_out_brcond32(s, TCG_COND_LEU, args[0], args[2], const_args[2],
1517 tcg_out_brcond32(s, TCG_COND_GTU, args[1], args[3], const_args[3],
1519 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1520 tcg_out_brcond32(s, TCG_COND_GTU, args[0], args[2], const_args[2],
1524 tcg_out_brcond32(s, TCG_COND_GTU, args[1], args[3], const_args[3],
1526 tcg_out_jxx(s, JCC_JNE, label_next, 1);
1527 tcg_out_brcond32(s, TCG_COND_GEU, args[0], args[2], const_args[2],
1531 g_assert_not_reached();
1533 tcg_out_label(s, label_next);
1537 static void tcg_out_setcond32(TCGContext *s, TCGCond cond, TCGArg dest,
1538 TCGArg arg1, TCGArg arg2, int const_arg2)
1540 tcg_out_cmp(s, arg1, arg2, const_arg2, 0);
1541 tcg_out_modrm(s, OPC_SETCC | tcg_cond_to_jcc[cond], 0, dest);
1542 tcg_out_ext8u(s, dest, dest);
1545 #if TCG_TARGET_REG_BITS == 64
1546 static void tcg_out_setcond64(TCGContext *s, TCGCond cond, TCGArg dest,
1547 TCGArg arg1, TCGArg arg2, int const_arg2)
1549 tcg_out_cmp(s, arg1, arg2, const_arg2, P_REXW);
1550 tcg_out_modrm(s, OPC_SETCC | tcg_cond_to_jcc[cond], 0, dest);
1551 tcg_out_ext8u(s, dest, dest);
1554 static void tcg_out_setcond2(TCGContext *s, const TCGArg *args,
1555 const int *const_args)
1558 TCGLabel *label_true, *label_over;
1560 memcpy(new_args, args+1, 5*sizeof(TCGArg));
1562 if (args[0] == args[1] || args[0] == args[2]
1563 || (!const_args[3] && args[0] == args[3])
1564 || (!const_args[4] && args[0] == args[4])) {
1565 /* When the destination overlaps with one of the argument
1566 registers, don't do anything tricky. */
1567 label_true = gen_new_label();
1568 label_over = gen_new_label();
1570 new_args[5] = label_arg(label_true);
1571 tcg_out_brcond2(s, new_args, const_args+1, 1);
1573 tcg_out_movi(s, TCG_TYPE_I32, args[0], 0);
1574 tcg_out_jxx(s, JCC_JMP, label_over, 1);
1575 tcg_out_label(s, label_true);
1577 tcg_out_movi(s, TCG_TYPE_I32, args[0], 1);
1578 tcg_out_label(s, label_over);
1580 /* When the destination does not overlap one of the arguments,
1581 clear the destination first, jump if cond false, and emit an
1582 increment in the true case. This results in smaller code. */
1584 tcg_out_movi(s, TCG_TYPE_I32, args[0], 0);
1586 label_over = gen_new_label();
1587 new_args[4] = tcg_invert_cond(new_args[4]);
1588 new_args[5] = label_arg(label_over);
1589 tcg_out_brcond2(s, new_args, const_args+1, 1);
1591 tgen_arithi(s, ARITH_ADD, args[0], 1, 0);
1592 tcg_out_label(s, label_over);
1597 static void tcg_out_cmov(TCGContext *s, TCGCond cond, int rexw,
1598 TCGReg dest, TCGReg v1)
1601 tcg_out_modrm(s, OPC_CMOVCC | tcg_cond_to_jcc[cond] | rexw, dest, v1);
1603 TCGLabel *over = gen_new_label();
1604 tcg_out_jxx(s, tcg_cond_to_jcc[tcg_invert_cond(cond)], over, 1);
1605 tcg_out_mov(s, TCG_TYPE_I32, dest, v1);
1606 tcg_out_label(s, over);
1610 static void tcg_out_movcond32(TCGContext *s, TCGCond cond, TCGReg dest,
1611 TCGReg c1, TCGArg c2, int const_c2,
1614 tcg_out_cmp(s, c1, c2, const_c2, 0);
1615 tcg_out_cmov(s, cond, 0, dest, v1);
1618 #if TCG_TARGET_REG_BITS == 64
1619 static void tcg_out_movcond64(TCGContext *s, TCGCond cond, TCGReg dest,
1620 TCGReg c1, TCGArg c2, int const_c2,
1623 tcg_out_cmp(s, c1, c2, const_c2, P_REXW);
1624 tcg_out_cmov(s, cond, P_REXW, dest, v1);
1628 static void tcg_out_ctz(TCGContext *s, int rexw, TCGReg dest, TCGReg arg1,
1629 TCGArg arg2, bool const_a2)
1632 tcg_out_modrm(s, OPC_TZCNT + rexw, dest, arg1);
1634 tcg_debug_assert(arg2 == (rexw ? 64 : 32));
1636 tcg_debug_assert(dest != arg2);
1637 tcg_out_cmov(s, TCG_COND_LTU, rexw, dest, arg2);
1640 tcg_debug_assert(dest != arg2);
1641 tcg_out_modrm(s, OPC_BSF + rexw, dest, arg1);
1642 tcg_out_cmov(s, TCG_COND_EQ, rexw, dest, arg2);
1646 static void tcg_out_clz(TCGContext *s, int rexw, TCGReg dest, TCGReg arg1,
1647 TCGArg arg2, bool const_a2)
1650 tcg_out_modrm(s, OPC_LZCNT + rexw, dest, arg1);
1652 tcg_debug_assert(arg2 == (rexw ? 64 : 32));
1654 tcg_debug_assert(dest != arg2);
1655 tcg_out_cmov(s, TCG_COND_LTU, rexw, dest, arg2);
1658 tcg_debug_assert(!const_a2);
1659 tcg_debug_assert(dest != arg1);
1660 tcg_debug_assert(dest != arg2);
1662 /* Recall that the output of BSR is the index not the count. */
1663 tcg_out_modrm(s, OPC_BSR + rexw, dest, arg1);
1664 tgen_arithi(s, ARITH_XOR + rexw, dest, rexw ? 63 : 31, 0);
1666 /* Since we have destroyed the flags from BSR, we have to re-test. */
1667 tcg_out_cmp(s, arg1, 0, 1, rexw);
1668 tcg_out_cmov(s, TCG_COND_EQ, rexw, dest, arg2);
1672 static void tcg_out_branch(TCGContext *s, int call, const tcg_insn_unit *dest)
1674 intptr_t disp = tcg_pcrel_diff(s, dest) - 5;
1676 if (disp == (int32_t)disp) {
1677 tcg_out_opc(s, call ? OPC_CALL_Jz : OPC_JMP_long, 0, 0, 0);
1680 /* rip-relative addressing into the constant pool.
1681 This is 6 + 8 = 14 bytes, as compared to using an
1682 immediate load 10 + 6 = 16 bytes, plus we may
1683 be able to re-use the pool constant for more calls. */
1684 tcg_out_opc(s, OPC_GRP5, 0, 0, 0);
1685 tcg_out8(s, (call ? EXT5_CALLN_Ev : EXT5_JMPN_Ev) << 3 | 5);
1686 new_pool_label(s, (uintptr_t)dest, R_386_PC32, s->code_ptr, -4);
1691 static void tcg_out_call(TCGContext *s, const tcg_insn_unit *dest,
1692 const TCGHelperInfo *info)
1694 tcg_out_branch(s, 1, dest);
1697 if (TCG_TARGET_REG_BITS == 32 && info->out_kind == TCG_CALL_RET_BY_REF) {
1699 * The sysv i386 abi for struct return places a reference as the
1700 * first argument of the stack, and pops that argument with the
1701 * return statement. Since we want to retain the aligned stack
1702 * pointer for the callee, we do not want to actually push that
1703 * argument before the call but rely on the normal store to the
1704 * stack slot. But we do need to compensate for the pop in order
1705 * to reset our correct stack pointer value.
1706 * Pushing a garbage value back onto the stack is quickest.
1708 tcg_out_push(s, TCG_REG_EAX);
1713 static void tcg_out_jmp(TCGContext *s, const tcg_insn_unit *dest)
1715 tcg_out_branch(s, 0, dest);
1718 static void tcg_out_nopn(TCGContext *s, int n)
1721 /* Emit 1 or 2 operand size prefixes for the standard one byte nop,
1722 * "xchg %eax,%eax", forming "xchg %ax,%ax". All cores accept the
1723 * duplicate prefix, and all of the interesting recent cores can
1724 * decode and discard the duplicates in a single cycle.
1726 tcg_debug_assert(n >= 1);
1727 for (i = 1; i < n; ++i) {
1733 /* Test register R vs immediate bits I, setting Z flag for EQ/NE. */
1734 static void __attribute__((unused))
1735 tcg_out_testi(TCGContext *s, TCGReg r, uint32_t i)
1738 * This is used for testing alignment, so we can usually use testb.
1739 * For i686, we have to use testl for %esi/%edi.
1741 if (i <= 0xff && (TCG_TARGET_REG_BITS == 64 || r < 4)) {
1742 tcg_out_modrm(s, OPC_GRP3_Eb | P_REXB_RM, EXT3_TESTi, r);
1745 tcg_out_modrm(s, OPC_GRP3_Ev, EXT3_TESTi, r);
1758 bool tcg_target_has_memory_bswap(MemOp memop)
1765 if ((memop & MO_SIZE) < MO_128) {
1770 * Reject 16-byte memop with 16-byte atomicity, i.e. VMOVDQA,
1771 * but do allow a pair of 64-bit operations, i.e. MOVBEQ.
1773 aa = atom_and_align_for_opc(tcg_ctx, memop, MO_ATOM_IFALIGN, true);
1774 return aa.atom < MO_128;
1778 * Because i686 has no register parameters and because x86_64 has xchg
1779 * to handle addr/data register overlap, we have placed all input arguments
1780 * before we need might need a scratch reg.
1782 * Even then, a scratch is only needed for l->raddr. Rather than expose
1783 * a general-purpose scratch when we don't actually know it's available,
1784 * use the ra_gen hook to load into RAX if needed.
1786 #if TCG_TARGET_REG_BITS == 64
1787 static TCGReg ldst_ra_gen(TCGContext *s, const TCGLabelQemuLdst *l, int arg)
1792 tcg_out_movi(s, TCG_TYPE_PTR, arg, (uintptr_t)l->raddr);
1795 static const TCGLdstHelperParam ldst_helper_param = {
1796 .ra_gen = ldst_ra_gen
1799 static const TCGLdstHelperParam ldst_helper_param = { };
1802 static void tcg_out_vec_to_pair(TCGContext *s, TCGType type,
1803 TCGReg l, TCGReg h, TCGReg v)
1805 int rexw = type == TCG_TYPE_I32 ? 0 : P_REXW;
1807 /* vpmov{d,q} %v, %l */
1808 tcg_out_vex_modrm(s, OPC_MOVD_EyVy + rexw, v, 0, l);
1809 /* vpextr{d,q} $1, %v, %h */
1810 tcg_out_vex_modrm(s, OPC_PEXTRD + rexw, v, 0, h);
1814 static void tcg_out_pair_to_vec(TCGContext *s, TCGType type,
1815 TCGReg v, TCGReg l, TCGReg h)
1817 int rexw = type == TCG_TYPE_I32 ? 0 : P_REXW;
1819 /* vmov{d,q} %l, %v */
1820 tcg_out_vex_modrm(s, OPC_MOVD_VyEy + rexw, v, 0, l);
1821 /* vpinsr{d,q} $1, %h, %v, %v */
1822 tcg_out_vex_modrm(s, OPC_PINSRD + rexw, v, v, h);
1827 * Generate code for the slow path for a load at the end of block
1829 static bool tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
1831 MemOp opc = get_memop(l->oi);
1832 tcg_insn_unit **label_ptr = &l->label_ptr[0];
1834 /* resolve label address */
1835 tcg_patch32(label_ptr[0], s->code_ptr - label_ptr[0] - 4);
1837 tcg_patch32(label_ptr[1], s->code_ptr - label_ptr[1] - 4);
1840 tcg_out_ld_helper_args(s, l, &ldst_helper_param);
1841 tcg_out_branch(s, 1, qemu_ld_helpers[opc & MO_SIZE]);
1842 tcg_out_ld_helper_ret(s, l, false, &ldst_helper_param);
1844 tcg_out_jmp(s, l->raddr);
1849 * Generate code for the slow path for a store at the end of block
1851 static bool tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
1853 MemOp opc = get_memop(l->oi);
1854 tcg_insn_unit **label_ptr = &l->label_ptr[0];
1856 /* resolve label address */
1857 tcg_patch32(label_ptr[0], s->code_ptr - label_ptr[0] - 4);
1859 tcg_patch32(label_ptr[1], s->code_ptr - label_ptr[1] - 4);
1862 tcg_out_st_helper_args(s, l, &ldst_helper_param);
1863 tcg_out_branch(s, 1, qemu_st_helpers[opc & MO_SIZE]);
1865 tcg_out_jmp(s, l->raddr);
1869 #ifndef CONFIG_SOFTMMU
1870 static HostAddress x86_guest_base = {
1874 #if defined(__x86_64__) && defined(__linux__)
1875 # include <asm/prctl.h>
1876 # include <sys/prctl.h>
1877 int arch_prctl(int code, unsigned long addr);
1878 static inline int setup_guest_base_seg(void)
1880 if (arch_prctl(ARCH_SET_GS, guest_base) == 0) {
1885 #elif defined(__x86_64__) && \
1886 (defined (__FreeBSD__) || defined (__FreeBSD_kernel__))
1887 # include <machine/sysarch.h>
1888 static inline int setup_guest_base_seg(void)
1890 if (sysarch(AMD64_SET_GSBASE, &guest_base) == 0) {
1896 static inline int setup_guest_base_seg(void)
1900 #endif /* setup_guest_base_seg */
1901 #endif /* !SOFTMMU */
1903 #define MIN_TLB_MASK_TABLE_OFS INT_MIN
1906 * For softmmu, perform the TLB load and compare.
1907 * For useronly, perform any required alignment tests.
1908 * In both cases, return a TCGLabelQemuLdst structure if the slow path
1909 * is required and fill in @h with the host address for the fast path.
1911 static TCGLabelQemuLdst *prepare_host_addr(TCGContext *s, HostAddress *h,
1912 TCGReg addrlo, TCGReg addrhi,
1913 MemOpIdx oi, bool is_ld)
1915 TCGLabelQemuLdst *ldst = NULL;
1916 MemOp opc = get_memop(oi);
1917 MemOp s_bits = opc & MO_SIZE;
1920 #ifdef CONFIG_SOFTMMU
1921 h->index = TCG_REG_L0;
1925 *h = x86_guest_base;
1928 h->aa = atom_and_align_for_opc(s, opc, MO_ATOM_IFALIGN, s_bits == MO_128);
1929 a_mask = (1 << h->aa.align) - 1;
1931 #ifdef CONFIG_SOFTMMU
1932 int cmp_ofs = is_ld ? offsetof(CPUTLBEntry, addr_read)
1933 : offsetof(CPUTLBEntry, addr_write);
1934 TCGType ttype = TCG_TYPE_I32;
1935 TCGType tlbtype = TCG_TYPE_I32;
1936 int trexw = 0, hrexw = 0, tlbrexw = 0;
1937 unsigned mem_index = get_mmuidx(oi);
1938 unsigned s_mask = (1 << s_bits) - 1;
1939 int fast_ofs = tlb_mask_table_ofs(s, mem_index);
1942 ldst = new_ldst_label(s);
1943 ldst->is_ld = is_ld;
1945 ldst->addrlo_reg = addrlo;
1946 ldst->addrhi_reg = addrhi;
1948 if (TCG_TARGET_REG_BITS == 64) {
1949 ttype = s->addr_type;
1950 trexw = (ttype == TCG_TYPE_I32 ? 0 : P_REXW);
1951 if (TCG_TYPE_PTR == TCG_TYPE_I64) {
1953 if (s->page_bits + s->tlb_dyn_max_bits > 32) {
1954 tlbtype = TCG_TYPE_I64;
1960 tcg_out_mov(s, tlbtype, TCG_REG_L0, addrlo);
1961 tcg_out_shifti(s, SHIFT_SHR + tlbrexw, TCG_REG_L0,
1962 s->page_bits - CPU_TLB_ENTRY_BITS);
1964 tcg_out_modrm_offset(s, OPC_AND_GvEv + trexw, TCG_REG_L0, TCG_AREG0,
1965 fast_ofs + offsetof(CPUTLBDescFast, mask));
1967 tcg_out_modrm_offset(s, OPC_ADD_GvEv + hrexw, TCG_REG_L0, TCG_AREG0,
1968 fast_ofs + offsetof(CPUTLBDescFast, table));
1971 * If the required alignment is at least as large as the access, simply
1972 * copy the address and mask. For lesser alignments, check that we don't
1973 * cross pages for the complete access.
1975 if (a_mask >= s_mask) {
1976 tcg_out_mov(s, ttype, TCG_REG_L1, addrlo);
1978 tcg_out_modrm_offset(s, OPC_LEA + trexw, TCG_REG_L1,
1979 addrlo, s_mask - a_mask);
1981 tlb_mask = s->page_mask | a_mask;
1982 tgen_arithi(s, ARITH_AND + trexw, TCG_REG_L1, tlb_mask, 0);
1984 /* cmp 0(TCG_REG_L0), TCG_REG_L1 */
1985 tcg_out_modrm_offset(s, OPC_CMP_GvEv + trexw,
1986 TCG_REG_L1, TCG_REG_L0, cmp_ofs);
1989 tcg_out_opc(s, OPC_JCC_long + JCC_JNE, 0, 0, 0);
1990 ldst->label_ptr[0] = s->code_ptr;
1993 if (TCG_TARGET_REG_BITS == 32 && s->addr_type == TCG_TYPE_I64) {
1994 /* cmp 4(TCG_REG_L0), addrhi */
1995 tcg_out_modrm_offset(s, OPC_CMP_GvEv, addrhi, TCG_REG_L0, cmp_ofs + 4);
1998 tcg_out_opc(s, OPC_JCC_long + JCC_JNE, 0, 0, 0);
1999 ldst->label_ptr[1] = s->code_ptr;
2004 tcg_out_ld(s, TCG_TYPE_PTR, TCG_REG_L0, TCG_REG_L0,
2005 offsetof(CPUTLBEntry, addend));
2008 ldst = new_ldst_label(s);
2010 ldst->is_ld = is_ld;
2012 ldst->addrlo_reg = addrlo;
2013 ldst->addrhi_reg = addrhi;
2015 tcg_out_testi(s, addrlo, a_mask);
2017 tcg_out_opc(s, OPC_JCC_long + JCC_JNE, 0, 0, 0);
2018 ldst->label_ptr[0] = s->code_ptr;
2026 static void tcg_out_qemu_ld_direct(TCGContext *s, TCGReg datalo, TCGReg datahi,
2027 HostAddress h, TCGType type, MemOp memop)
2029 bool use_movbe = false;
2030 int rexw = (type == TCG_TYPE_I32 ? 0 : P_REXW);
2031 int movop = OPC_MOVL_GvEv;
2033 /* Do big-endian loads with movbe. */
2034 if (memop & MO_BSWAP) {
2035 tcg_debug_assert(have_movbe);
2037 movop = OPC_MOVBE_GyMy;
2040 switch (memop & MO_SSIZE) {
2042 tcg_out_modrm_sib_offset(s, OPC_MOVZBL + h.seg, datalo,
2043 h.base, h.index, 0, h.ofs);
2046 tcg_out_modrm_sib_offset(s, OPC_MOVSBL + rexw + h.seg, datalo,
2047 h.base, h.index, 0, h.ofs);
2051 /* There is no extending movbe; only low 16-bits are modified. */
2052 if (datalo != h.base && datalo != h.index) {
2053 /* XOR breaks dependency chains. */
2054 tgen_arithr(s, ARITH_XOR, datalo, datalo);
2055 tcg_out_modrm_sib_offset(s, OPC_MOVBE_GyMy + P_DATA16 + h.seg,
2056 datalo, h.base, h.index, 0, h.ofs);
2058 tcg_out_modrm_sib_offset(s, OPC_MOVBE_GyMy + P_DATA16 + h.seg,
2059 datalo, h.base, h.index, 0, h.ofs);
2060 tcg_out_ext16u(s, datalo, datalo);
2063 tcg_out_modrm_sib_offset(s, OPC_MOVZWL + h.seg, datalo,
2064 h.base, h.index, 0, h.ofs);
2069 tcg_out_modrm_sib_offset(s, OPC_MOVBE_GyMy + P_DATA16 + h.seg,
2070 datalo, h.base, h.index, 0, h.ofs);
2071 tcg_out_ext16s(s, type, datalo, datalo);
2073 tcg_out_modrm_sib_offset(s, OPC_MOVSWL + rexw + h.seg,
2074 datalo, h.base, h.index, 0, h.ofs);
2078 tcg_out_modrm_sib_offset(s, movop + h.seg, datalo,
2079 h.base, h.index, 0, h.ofs);
2081 #if TCG_TARGET_REG_BITS == 64
2084 tcg_out_modrm_sib_offset(s, OPC_MOVBE_GyMy + h.seg, datalo,
2085 h.base, h.index, 0, h.ofs);
2086 tcg_out_ext32s(s, datalo, datalo);
2088 tcg_out_modrm_sib_offset(s, OPC_MOVSLQ + h.seg, datalo,
2089 h.base, h.index, 0, h.ofs);
2094 if (TCG_TARGET_REG_BITS == 64) {
2095 tcg_out_modrm_sib_offset(s, movop + P_REXW + h.seg, datalo,
2096 h.base, h.index, 0, h.ofs);
2104 if (h.base == datalo || h.index == datalo) {
2105 tcg_out_modrm_sib_offset(s, OPC_LEA, datahi,
2106 h.base, h.index, 0, h.ofs);
2107 tcg_out_modrm_offset(s, movop + h.seg, datalo, datahi, 0);
2108 tcg_out_modrm_offset(s, movop + h.seg, datahi, datahi, 4);
2110 tcg_out_modrm_sib_offset(s, movop + h.seg, datalo,
2111 h.base, h.index, 0, h.ofs);
2112 tcg_out_modrm_sib_offset(s, movop + h.seg, datahi,
2113 h.base, h.index, 0, h.ofs + 4);
2118 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
2121 * Without 16-byte atomicity, use integer regs.
2122 * That is where we want the data, and it allows bswaps.
2124 if (h.aa.atom < MO_128) {
2130 if (h.base == datalo || h.index == datalo) {
2131 tcg_out_modrm_sib_offset(s, OPC_LEA + P_REXW, datahi,
2132 h.base, h.index, 0, h.ofs);
2133 tcg_out_modrm_offset(s, movop + P_REXW + h.seg,
2135 tcg_out_modrm_offset(s, movop + P_REXW + h.seg,
2138 tcg_out_modrm_sib_offset(s, movop + P_REXW + h.seg, datalo,
2139 h.base, h.index, 0, h.ofs);
2140 tcg_out_modrm_sib_offset(s, movop + P_REXW + h.seg, datahi,
2141 h.base, h.index, 0, h.ofs + 8);
2147 * With 16-byte atomicity, a vector load is required.
2148 * If we already have 16-byte alignment, then VMOVDQA always works.
2149 * Else if VMOVDQU has atomicity with dynamic alignment, use that.
2150 * Else use we require a runtime test for alignment for VMOVDQA;
2151 * use VMOVDQU on the unaligned nonatomic path for simplicity.
2153 if (h.aa.align >= MO_128) {
2154 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQA_VxWx + h.seg,
2156 h.base, h.index, 0, h.ofs);
2157 } else if (cpuinfo & CPUINFO_ATOMIC_VMOVDQU) {
2158 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQU_VxWx + h.seg,
2160 h.base, h.index, 0, h.ofs);
2162 TCGLabel *l1 = gen_new_label();
2163 TCGLabel *l2 = gen_new_label();
2165 tcg_out_testi(s, h.base, 15);
2166 tcg_out_jxx(s, JCC_JNE, l1, true);
2168 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQA_VxWx + h.seg,
2170 h.base, h.index, 0, h.ofs);
2171 tcg_out_jxx(s, JCC_JMP, l2, true);
2173 tcg_out_label(s, l1);
2174 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQU_VxWx + h.seg,
2176 h.base, h.index, 0, h.ofs);
2177 tcg_out_label(s, l2);
2179 tcg_out_vec_to_pair(s, TCG_TYPE_I64, datalo, datahi, TCG_TMP_VEC);
2183 g_assert_not_reached();
2187 static void tcg_out_qemu_ld(TCGContext *s, TCGReg datalo, TCGReg datahi,
2188 TCGReg addrlo, TCGReg addrhi,
2189 MemOpIdx oi, TCGType data_type)
2191 TCGLabelQemuLdst *ldst;
2194 ldst = prepare_host_addr(s, &h, addrlo, addrhi, oi, true);
2195 tcg_out_qemu_ld_direct(s, datalo, datahi, h, data_type, get_memop(oi));
2198 ldst->type = data_type;
2199 ldst->datalo_reg = datalo;
2200 ldst->datahi_reg = datahi;
2201 ldst->raddr = tcg_splitwx_to_rx(s->code_ptr);
2205 static void tcg_out_qemu_st_direct(TCGContext *s, TCGReg datalo, TCGReg datahi,
2206 HostAddress h, MemOp memop)
2208 bool use_movbe = false;
2209 int movop = OPC_MOVL_EvGv;
2212 * Do big-endian stores with movbe or softmmu.
2213 * User-only without movbe will have its swapping done generically.
2215 if (memop & MO_BSWAP) {
2216 tcg_debug_assert(have_movbe);
2218 movop = OPC_MOVBE_MyGy;
2221 switch (memop & MO_SIZE) {
2223 /* This is handled with constraints on INDEX_op_qemu_st8_i32. */
2224 tcg_debug_assert(TCG_TARGET_REG_BITS == 64 || datalo < 4);
2225 tcg_out_modrm_sib_offset(s, OPC_MOVB_EvGv + P_REXB_R + h.seg,
2226 datalo, h.base, h.index, 0, h.ofs);
2229 tcg_out_modrm_sib_offset(s, movop + P_DATA16 + h.seg, datalo,
2230 h.base, h.index, 0, h.ofs);
2233 tcg_out_modrm_sib_offset(s, movop + h.seg, datalo,
2234 h.base, h.index, 0, h.ofs);
2237 if (TCG_TARGET_REG_BITS == 64) {
2238 tcg_out_modrm_sib_offset(s, movop + P_REXW + h.seg, datalo,
2239 h.base, h.index, 0, h.ofs);
2246 tcg_out_modrm_sib_offset(s, movop + h.seg, datalo,
2247 h.base, h.index, 0, h.ofs);
2248 tcg_out_modrm_sib_offset(s, movop + h.seg, datahi,
2249 h.base, h.index, 0, h.ofs + 4);
2254 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
2257 * Without 16-byte atomicity, use integer regs.
2258 * That is where we have the data, and it allows bswaps.
2260 if (h.aa.atom < MO_128) {
2266 tcg_out_modrm_sib_offset(s, movop + P_REXW + h.seg, datalo,
2267 h.base, h.index, 0, h.ofs);
2268 tcg_out_modrm_sib_offset(s, movop + P_REXW + h.seg, datahi,
2269 h.base, h.index, 0, h.ofs + 8);
2274 * With 16-byte atomicity, a vector store is required.
2275 * If we already have 16-byte alignment, then VMOVDQA always works.
2276 * Else if VMOVDQU has atomicity with dynamic alignment, use that.
2277 * Else use we require a runtime test for alignment for VMOVDQA;
2278 * use VMOVDQU on the unaligned nonatomic path for simplicity.
2280 tcg_out_pair_to_vec(s, TCG_TYPE_I64, TCG_TMP_VEC, datalo, datahi);
2281 if (h.aa.align >= MO_128) {
2282 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQA_WxVx + h.seg,
2284 h.base, h.index, 0, h.ofs);
2285 } else if (cpuinfo & CPUINFO_ATOMIC_VMOVDQU) {
2286 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQU_WxVx + h.seg,
2288 h.base, h.index, 0, h.ofs);
2290 TCGLabel *l1 = gen_new_label();
2291 TCGLabel *l2 = gen_new_label();
2293 tcg_out_testi(s, h.base, 15);
2294 tcg_out_jxx(s, JCC_JNE, l1, true);
2296 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQA_WxVx + h.seg,
2298 h.base, h.index, 0, h.ofs);
2299 tcg_out_jxx(s, JCC_JMP, l2, true);
2301 tcg_out_label(s, l1);
2302 tcg_out_vex_modrm_sib_offset(s, OPC_MOVDQU_WxVx + h.seg,
2304 h.base, h.index, 0, h.ofs);
2305 tcg_out_label(s, l2);
2310 g_assert_not_reached();
2314 static void tcg_out_qemu_st(TCGContext *s, TCGReg datalo, TCGReg datahi,
2315 TCGReg addrlo, TCGReg addrhi,
2316 MemOpIdx oi, TCGType data_type)
2318 TCGLabelQemuLdst *ldst;
2321 ldst = prepare_host_addr(s, &h, addrlo, addrhi, oi, false);
2322 tcg_out_qemu_st_direct(s, datalo, datahi, h, get_memop(oi));
2325 ldst->type = data_type;
2326 ldst->datalo_reg = datalo;
2327 ldst->datahi_reg = datahi;
2328 ldst->raddr = tcg_splitwx_to_rx(s->code_ptr);
2332 static void tcg_out_exit_tb(TCGContext *s, uintptr_t a0)
2334 /* Reuse the zeroing that exists for goto_ptr. */
2336 tcg_out_jmp(s, tcg_code_gen_epilogue);
2338 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_EAX, a0);
2339 tcg_out_jmp(s, tb_ret_addr);
2343 static void tcg_out_goto_tb(TCGContext *s, int which)
2346 * Jump displacement must be aligned for atomic patching;
2347 * see if we need to add extra nops before jump
2349 int gap = QEMU_ALIGN_PTR_UP(s->code_ptr + 1, 4) - s->code_ptr;
2351 tcg_out_nopn(s, gap - 1);
2353 tcg_out8(s, OPC_JMP_long); /* jmp im */
2354 set_jmp_insn_offset(s, which);
2356 set_jmp_reset_offset(s, which);
2359 void tb_target_set_jmp_target(const TranslationBlock *tb, int n,
2360 uintptr_t jmp_rx, uintptr_t jmp_rw)
2362 /* patch the branch destination */
2363 uintptr_t addr = tb->jmp_target_addr[n];
2364 qatomic_set((int32_t *)jmp_rw, addr - (jmp_rx + 4));
2365 /* no need to flush icache explicitly */
2368 static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
2369 const TCGArg args[TCG_MAX_OP_ARGS],
2370 const int const_args[TCG_MAX_OP_ARGS])
2373 int c, const_a2, vexop, rexw = 0;
2375 #if TCG_TARGET_REG_BITS == 64
2376 # define OP_32_64(x) \
2377 case glue(glue(INDEX_op_, x), _i64): \
2378 rexw = P_REXW; /* FALLTHRU */ \
2379 case glue(glue(INDEX_op_, x), _i32)
2381 # define OP_32_64(x) \
2382 case glue(glue(INDEX_op_, x), _i32)
2385 /* Hoist the loads of the most common arguments. */
2389 const_a2 = const_args[2];
2392 case INDEX_op_goto_ptr:
2393 /* jmp to the given host address (could be epilogue) */
2394 tcg_out_modrm(s, OPC_GRP5, EXT5_JMPN_Ev, a0);
2397 tcg_out_jxx(s, JCC_JMP, arg_label(a0), 0);
2400 /* Note that we can ignore REXW for the zero-extend to 64-bit. */
2401 tcg_out_modrm_offset(s, OPC_MOVZBL, a0, a1, a2);
2404 tcg_out_modrm_offset(s, OPC_MOVSBL + rexw, a0, a1, a2);
2407 /* Note that we can ignore REXW for the zero-extend to 64-bit. */
2408 tcg_out_modrm_offset(s, OPC_MOVZWL, a0, a1, a2);
2411 tcg_out_modrm_offset(s, OPC_MOVSWL + rexw, a0, a1, a2);
2413 #if TCG_TARGET_REG_BITS == 64
2414 case INDEX_op_ld32u_i64:
2416 case INDEX_op_ld_i32:
2417 tcg_out_ld(s, TCG_TYPE_I32, a0, a1, a2);
2421 if (const_args[0]) {
2422 tcg_out_modrm_offset(s, OPC_MOVB_EvIz, 0, a1, a2);
2425 tcg_out_modrm_offset(s, OPC_MOVB_EvGv | P_REXB_R, a0, a1, a2);
2429 if (const_args[0]) {
2430 tcg_out_modrm_offset(s, OPC_MOVL_EvIz | P_DATA16, 0, a1, a2);
2433 tcg_out_modrm_offset(s, OPC_MOVL_EvGv | P_DATA16, a0, a1, a2);
2436 #if TCG_TARGET_REG_BITS == 64
2437 case INDEX_op_st32_i64:
2439 case INDEX_op_st_i32:
2440 if (const_args[0]) {
2441 tcg_out_modrm_offset(s, OPC_MOVL_EvIz, 0, a1, a2);
2444 tcg_out_st(s, TCG_TYPE_I32, a0, a1, a2);
2449 /* For 3-operand addition, use LEA. */
2454 } else if (a0 == a2) {
2455 /* Watch out for dest = src + dest, since we've removed
2456 the matching constraint on the add. */
2457 tgen_arithr(s, ARITH_ADD + rexw, a0, a1);
2461 tcg_out_modrm_sib_offset(s, OPC_LEA + rexw, a0, a1, a2, 0, c3);
2480 tgen_arithi(s, c + rexw, a0, a2, 0);
2482 tgen_arithr(s, c + rexw, a0, a2);
2488 tcg_out_mov(s, rexw ? TCG_TYPE_I64 : TCG_TYPE_I32, a0, a1);
2489 tgen_arithi(s, ARITH_AND + rexw, a0, ~a2, 0);
2491 tcg_out_vex_modrm(s, OPC_ANDN + rexw, a0, a2, a1);
2499 if (val == (int8_t)val) {
2500 tcg_out_modrm(s, OPC_IMUL_GvEvIb + rexw, a0, a0);
2503 tcg_out_modrm(s, OPC_IMUL_GvEvIz + rexw, a0, a0);
2507 tcg_out_modrm(s, OPC_IMUL_GvEv + rexw, a0, a2);
2512 tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_IDIV, args[4]);
2515 tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_DIV, args[4]);
2519 /* For small constant 3-operand shift, use LEA. */
2520 if (const_a2 && a0 != a1 && (a2 - 1) < 3) {
2522 /* shl $1,a1,a0 -> lea (a1,a1),a0 */
2523 tcg_out_modrm_sib_offset(s, OPC_LEA + rexw, a0, a1, a1, 0, 0);
2525 /* shl $n,a1,a0 -> lea 0(,a1,n),a0 */
2526 tcg_out_modrm_sib_offset(s, OPC_LEA + rexw, a0, -1, a1, a2, 0);
2532 goto gen_shift_maybe_vex;
2536 goto gen_shift_maybe_vex;
2540 goto gen_shift_maybe_vex;
2547 gen_shift_maybe_vex:
2550 tcg_out_vex_modrm(s, vexop + rexw, a0, a2, a1);
2553 tcg_out_mov(s, rexw ? TCG_TYPE_I64 : TCG_TYPE_I32, a0, a1);
2558 tcg_out_shifti(s, c + rexw, a0, a2);
2560 tcg_out_modrm(s, OPC_SHIFT_cl + rexw, c, a0);
2565 tcg_out_ctz(s, rexw, args[0], args[1], args[2], const_args[2]);
2568 tcg_out_clz(s, rexw, args[0], args[1], args[2], const_args[2]);
2571 tcg_out_modrm(s, OPC_POPCNT + rexw, a0, a1);
2574 case INDEX_op_brcond_i32:
2575 tcg_out_brcond32(s, a2, a0, a1, const_args[1], arg_label(args[3]), 0);
2577 case INDEX_op_setcond_i32:
2578 tcg_out_setcond32(s, args[3], a0, a1, a2, const_a2);
2580 case INDEX_op_movcond_i32:
2581 tcg_out_movcond32(s, args[5], a0, a1, a2, const_a2, args[3]);
2585 if (a2 & TCG_BSWAP_OS) {
2586 /* Output must be sign-extended. */
2588 tcg_out_bswap64(s, a0);
2589 tcg_out_shifti(s, SHIFT_SAR + rexw, a0, 48);
2591 tcg_out_bswap32(s, a0);
2592 tcg_out_shifti(s, SHIFT_SAR, a0, 16);
2594 } else if ((a2 & (TCG_BSWAP_IZ | TCG_BSWAP_OZ)) == TCG_BSWAP_OZ) {
2595 /* Output must be zero-extended, but input isn't. */
2596 tcg_out_bswap32(s, a0);
2597 tcg_out_shifti(s, SHIFT_SHR, a0, 16);
2599 tcg_out_rolw_8(s, a0);
2603 tcg_out_bswap32(s, a0);
2604 if (rexw && (a2 & TCG_BSWAP_OS)) {
2605 tcg_out_ext32s(s, a0, a0);
2610 tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_NEG, a0);
2613 tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_NOT, a0);
2616 case INDEX_op_qemu_ld_a64_i32:
2617 if (TCG_TARGET_REG_BITS == 32) {
2618 tcg_out_qemu_ld(s, a0, -1, a1, a2, args[3], TCG_TYPE_I32);
2622 case INDEX_op_qemu_ld_a32_i32:
2623 tcg_out_qemu_ld(s, a0, -1, a1, -1, a2, TCG_TYPE_I32);
2625 case INDEX_op_qemu_ld_a32_i64:
2626 if (TCG_TARGET_REG_BITS == 64) {
2627 tcg_out_qemu_ld(s, a0, -1, a1, -1, a2, TCG_TYPE_I64);
2629 tcg_out_qemu_ld(s, a0, a1, a2, -1, args[3], TCG_TYPE_I64);
2632 case INDEX_op_qemu_ld_a64_i64:
2633 if (TCG_TARGET_REG_BITS == 64) {
2634 tcg_out_qemu_ld(s, a0, -1, a1, -1, a2, TCG_TYPE_I64);
2636 tcg_out_qemu_ld(s, a0, a1, a2, args[3], args[4], TCG_TYPE_I64);
2639 case INDEX_op_qemu_ld_a32_i128:
2640 case INDEX_op_qemu_ld_a64_i128:
2641 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
2642 tcg_out_qemu_ld(s, a0, a1, a2, -1, args[3], TCG_TYPE_I128);
2645 case INDEX_op_qemu_st_a64_i32:
2646 case INDEX_op_qemu_st8_a64_i32:
2647 if (TCG_TARGET_REG_BITS == 32) {
2648 tcg_out_qemu_st(s, a0, -1, a1, a2, args[3], TCG_TYPE_I32);
2652 case INDEX_op_qemu_st_a32_i32:
2653 case INDEX_op_qemu_st8_a32_i32:
2654 tcg_out_qemu_st(s, a0, -1, a1, -1, a2, TCG_TYPE_I32);
2656 case INDEX_op_qemu_st_a32_i64:
2657 if (TCG_TARGET_REG_BITS == 64) {
2658 tcg_out_qemu_st(s, a0, -1, a1, -1, a2, TCG_TYPE_I64);
2660 tcg_out_qemu_st(s, a0, a1, a2, -1, args[3], TCG_TYPE_I64);
2663 case INDEX_op_qemu_st_a64_i64:
2664 if (TCG_TARGET_REG_BITS == 64) {
2665 tcg_out_qemu_st(s, a0, -1, a1, -1, a2, TCG_TYPE_I64);
2667 tcg_out_qemu_st(s, a0, a1, a2, args[3], args[4], TCG_TYPE_I64);
2670 case INDEX_op_qemu_st_a32_i128:
2671 case INDEX_op_qemu_st_a64_i128:
2672 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
2673 tcg_out_qemu_st(s, a0, a1, a2, -1, args[3], TCG_TYPE_I128);
2677 tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_MUL, args[3]);
2680 tcg_out_modrm(s, OPC_GRP3_Ev + rexw, EXT3_IMUL, args[3]);
2683 if (const_args[4]) {
2684 tgen_arithi(s, ARITH_ADD + rexw, a0, args[4], 1);
2686 tgen_arithr(s, ARITH_ADD + rexw, a0, args[4]);
2688 if (const_args[5]) {
2689 tgen_arithi(s, ARITH_ADC + rexw, a1, args[5], 1);
2691 tgen_arithr(s, ARITH_ADC + rexw, a1, args[5]);
2695 if (const_args[4]) {
2696 tgen_arithi(s, ARITH_SUB + rexw, a0, args[4], 1);
2698 tgen_arithr(s, ARITH_SUB + rexw, a0, args[4]);
2700 if (const_args[5]) {
2701 tgen_arithi(s, ARITH_SBB + rexw, a1, args[5], 1);
2703 tgen_arithr(s, ARITH_SBB + rexw, a1, args[5]);
2707 #if TCG_TARGET_REG_BITS == 32
2708 case INDEX_op_brcond2_i32:
2709 tcg_out_brcond2(s, args, const_args, 0);
2711 case INDEX_op_setcond2_i32:
2712 tcg_out_setcond2(s, args, const_args);
2714 #else /* TCG_TARGET_REG_BITS == 64 */
2715 case INDEX_op_ld32s_i64:
2716 tcg_out_modrm_offset(s, OPC_MOVSLQ, a0, a1, a2);
2718 case INDEX_op_ld_i64:
2719 tcg_out_ld(s, TCG_TYPE_I64, a0, a1, a2);
2721 case INDEX_op_st_i64:
2722 if (const_args[0]) {
2723 tcg_out_modrm_offset(s, OPC_MOVL_EvIz | P_REXW, 0, a1, a2);
2726 tcg_out_st(s, TCG_TYPE_I64, a0, a1, a2);
2730 case INDEX_op_brcond_i64:
2731 tcg_out_brcond64(s, a2, a0, a1, const_args[1], arg_label(args[3]), 0);
2733 case INDEX_op_setcond_i64:
2734 tcg_out_setcond64(s, args[3], a0, a1, a2, const_a2);
2736 case INDEX_op_movcond_i64:
2737 tcg_out_movcond64(s, args[5], a0, a1, a2, const_a2, args[3]);
2740 case INDEX_op_bswap64_i64:
2741 tcg_out_bswap64(s, a0);
2743 case INDEX_op_extrh_i64_i32:
2744 tcg_out_shifti(s, SHIFT_SHR + P_REXW, a0, 32);
2749 if (args[3] == 0 && args[4] == 8) {
2750 /* load bits 0..7 */
2751 tcg_out_modrm(s, OPC_MOVB_EvGv | P_REXB_R | P_REXB_RM, a2, a0);
2752 } else if (args[3] == 8 && args[4] == 8) {
2753 /* load bits 8..15 */
2754 tcg_out_modrm(s, OPC_MOVB_EvGv, a2, a0 + 4);
2755 } else if (args[3] == 0 && args[4] == 16) {
2756 /* load bits 0..15 */
2757 tcg_out_modrm(s, OPC_MOVL_EvGv | P_DATA16, a2, a0);
2759 g_assert_not_reached();
2763 case INDEX_op_extract_i64:
2764 if (a2 + args[3] == 32) {
2765 /* This is a 32-bit zero-extending right shift. */
2766 tcg_out_mov(s, TCG_TYPE_I32, a0, a1);
2767 tcg_out_shifti(s, SHIFT_SHR, a0, a2);
2771 case INDEX_op_extract_i32:
2772 /* On the off-chance that we can use the high-byte registers.
2773 Otherwise we emit the same ext16 + shift pattern that we
2774 would have gotten from the normal tcg-op.c expansion. */
2775 tcg_debug_assert(a2 == 8 && args[3] == 8);
2776 if (a1 < 4 && a0 < 8) {
2777 tcg_out_modrm(s, OPC_MOVZBL, a0, a1 + 4);
2779 tcg_out_ext16u(s, a0, a1);
2780 tcg_out_shifti(s, SHIFT_SHR, a0, 8);
2784 case INDEX_op_sextract_i32:
2785 /* We don't implement sextract_i64, as we cannot sign-extend to
2786 64-bits without using the REX prefix that explicitly excludes
2787 access to the high-byte registers. */
2788 tcg_debug_assert(a2 == 8 && args[3] == 8);
2789 if (a1 < 4 && a0 < 8) {
2790 tcg_out_modrm(s, OPC_MOVSBL, a0, a1 + 4);
2792 tcg_out_ext16s(s, TCG_TYPE_I32, a0, a1);
2793 tcg_out_shifti(s, SHIFT_SAR, a0, 8);
2798 /* Note that SHRD outputs to the r/m operand. */
2799 tcg_out_modrm(s, OPC_SHRD_Ib + rexw, a2, a0);
2800 tcg_out8(s, args[3]);
2806 case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */
2807 case INDEX_op_mov_i64:
2808 case INDEX_op_call: /* Always emitted via tcg_out_call. */
2809 case INDEX_op_exit_tb: /* Always emitted via tcg_out_exit_tb. */
2810 case INDEX_op_goto_tb: /* Always emitted via tcg_out_goto_tb. */
2811 case INDEX_op_ext8s_i32: /* Always emitted via tcg_reg_alloc_op. */
2812 case INDEX_op_ext8s_i64:
2813 case INDEX_op_ext8u_i32:
2814 case INDEX_op_ext8u_i64:
2815 case INDEX_op_ext16s_i32:
2816 case INDEX_op_ext16s_i64:
2817 case INDEX_op_ext16u_i32:
2818 case INDEX_op_ext16u_i64:
2819 case INDEX_op_ext32s_i64:
2820 case INDEX_op_ext32u_i64:
2821 case INDEX_op_ext_i32_i64:
2822 case INDEX_op_extu_i32_i64:
2823 case INDEX_op_extrl_i64_i32:
2825 g_assert_not_reached();
2831 static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc,
2832 unsigned vecl, unsigned vece,
2833 const TCGArg args[TCG_MAX_OP_ARGS],
2834 const int const_args[TCG_MAX_OP_ARGS])
2836 static int const add_insn[4] = {
2837 OPC_PADDB, OPC_PADDW, OPC_PADDD, OPC_PADDQ
2839 static int const ssadd_insn[4] = {
2840 OPC_PADDSB, OPC_PADDSW, OPC_UD2, OPC_UD2
2842 static int const usadd_insn[4] = {
2843 OPC_PADDUB, OPC_PADDUW, OPC_UD2, OPC_UD2
2845 static int const sub_insn[4] = {
2846 OPC_PSUBB, OPC_PSUBW, OPC_PSUBD, OPC_PSUBQ
2848 static int const sssub_insn[4] = {
2849 OPC_PSUBSB, OPC_PSUBSW, OPC_UD2, OPC_UD2
2851 static int const ussub_insn[4] = {
2852 OPC_PSUBUB, OPC_PSUBUW, OPC_UD2, OPC_UD2
2854 static int const mul_insn[4] = {
2855 OPC_UD2, OPC_PMULLW, OPC_PMULLD, OPC_VPMULLQ
2857 static int const shift_imm_insn[4] = {
2858 OPC_UD2, OPC_PSHIFTW_Ib, OPC_PSHIFTD_Ib, OPC_PSHIFTQ_Ib
2860 static int const cmpeq_insn[4] = {
2861 OPC_PCMPEQB, OPC_PCMPEQW, OPC_PCMPEQD, OPC_PCMPEQQ
2863 static int const cmpgt_insn[4] = {
2864 OPC_PCMPGTB, OPC_PCMPGTW, OPC_PCMPGTD, OPC_PCMPGTQ
2866 static int const punpckl_insn[4] = {
2867 OPC_PUNPCKLBW, OPC_PUNPCKLWD, OPC_PUNPCKLDQ, OPC_PUNPCKLQDQ
2869 static int const punpckh_insn[4] = {
2870 OPC_PUNPCKHBW, OPC_PUNPCKHWD, OPC_PUNPCKHDQ, OPC_PUNPCKHQDQ
2872 static int const packss_insn[4] = {
2873 OPC_PACKSSWB, OPC_PACKSSDW, OPC_UD2, OPC_UD2
2875 static int const packus_insn[4] = {
2876 OPC_PACKUSWB, OPC_PACKUSDW, OPC_UD2, OPC_UD2
2878 static int const smin_insn[4] = {
2879 OPC_PMINSB, OPC_PMINSW, OPC_PMINSD, OPC_VPMINSQ
2881 static int const smax_insn[4] = {
2882 OPC_PMAXSB, OPC_PMAXSW, OPC_PMAXSD, OPC_VPMAXSQ
2884 static int const umin_insn[4] = {
2885 OPC_PMINUB, OPC_PMINUW, OPC_PMINUD, OPC_VPMINUQ
2887 static int const umax_insn[4] = {
2888 OPC_PMAXUB, OPC_PMAXUW, OPC_PMAXUD, OPC_VPMAXUQ
2890 static int const rotlv_insn[4] = {
2891 OPC_UD2, OPC_UD2, OPC_VPROLVD, OPC_VPROLVQ
2893 static int const rotrv_insn[4] = {
2894 OPC_UD2, OPC_UD2, OPC_VPRORVD, OPC_VPRORVQ
2896 static int const shlv_insn[4] = {
2897 OPC_UD2, OPC_VPSLLVW, OPC_VPSLLVD, OPC_VPSLLVQ
2899 static int const shrv_insn[4] = {
2900 OPC_UD2, OPC_VPSRLVW, OPC_VPSRLVD, OPC_VPSRLVQ
2902 static int const sarv_insn[4] = {
2903 OPC_UD2, OPC_VPSRAVW, OPC_VPSRAVD, OPC_VPSRAVQ
2905 static int const shls_insn[4] = {
2906 OPC_UD2, OPC_PSLLW, OPC_PSLLD, OPC_PSLLQ
2908 static int const shrs_insn[4] = {
2909 OPC_UD2, OPC_PSRLW, OPC_PSRLD, OPC_PSRLQ
2911 static int const sars_insn[4] = {
2912 OPC_UD2, OPC_PSRAW, OPC_PSRAD, OPC_VPSRAQ
2914 static int const vpshldi_insn[4] = {
2915 OPC_UD2, OPC_VPSHLDW, OPC_VPSHLDD, OPC_VPSHLDQ
2917 static int const vpshldv_insn[4] = {
2918 OPC_UD2, OPC_VPSHLDVW, OPC_VPSHLDVD, OPC_VPSHLDVQ
2920 static int const vpshrdv_insn[4] = {
2921 OPC_UD2, OPC_VPSHRDVW, OPC_VPSHRDVD, OPC_VPSHRDVQ
2923 static int const abs_insn[4] = {
2924 OPC_PABSB, OPC_PABSW, OPC_PABSD, OPC_VPABSQ
2927 TCGType type = vecl + TCG_TYPE_V64;
2929 TCGArg a0, a1, a2, a3;
2936 case INDEX_op_add_vec:
2937 insn = add_insn[vece];
2939 case INDEX_op_ssadd_vec:
2940 insn = ssadd_insn[vece];
2942 case INDEX_op_usadd_vec:
2943 insn = usadd_insn[vece];
2945 case INDEX_op_sub_vec:
2946 insn = sub_insn[vece];
2948 case INDEX_op_sssub_vec:
2949 insn = sssub_insn[vece];
2951 case INDEX_op_ussub_vec:
2952 insn = ussub_insn[vece];
2954 case INDEX_op_mul_vec:
2955 insn = mul_insn[vece];
2957 case INDEX_op_and_vec:
2960 case INDEX_op_or_vec:
2963 case INDEX_op_xor_vec:
2966 case INDEX_op_smin_vec:
2967 insn = smin_insn[vece];
2969 case INDEX_op_umin_vec:
2970 insn = umin_insn[vece];
2972 case INDEX_op_smax_vec:
2973 insn = smax_insn[vece];
2975 case INDEX_op_umax_vec:
2976 insn = umax_insn[vece];
2978 case INDEX_op_shlv_vec:
2979 insn = shlv_insn[vece];
2981 case INDEX_op_shrv_vec:
2982 insn = shrv_insn[vece];
2984 case INDEX_op_sarv_vec:
2985 insn = sarv_insn[vece];
2987 case INDEX_op_rotlv_vec:
2988 insn = rotlv_insn[vece];
2990 case INDEX_op_rotrv_vec:
2991 insn = rotrv_insn[vece];
2993 case INDEX_op_shls_vec:
2994 insn = shls_insn[vece];
2996 case INDEX_op_shrs_vec:
2997 insn = shrs_insn[vece];
2999 case INDEX_op_sars_vec:
3000 insn = sars_insn[vece];
3002 case INDEX_op_x86_punpckl_vec:
3003 insn = punpckl_insn[vece];
3005 case INDEX_op_x86_punpckh_vec:
3006 insn = punpckh_insn[vece];
3008 case INDEX_op_x86_packss_vec:
3009 insn = packss_insn[vece];
3011 case INDEX_op_x86_packus_vec:
3012 insn = packus_insn[vece];
3014 case INDEX_op_x86_vpshldv_vec:
3015 insn = vpshldv_insn[vece];
3019 case INDEX_op_x86_vpshrdv_vec:
3020 insn = vpshrdv_insn[vece];
3024 #if TCG_TARGET_REG_BITS == 32
3025 case INDEX_op_dup2_vec:
3026 /* First merge the two 32-bit inputs to a single 64-bit element. */
3027 tcg_out_vex_modrm(s, OPC_PUNPCKLDQ, a0, a1, a2);
3028 /* Then replicate the 64-bit elements across the rest of the vector. */
3029 if (type != TCG_TYPE_V64) {
3030 tcg_out_dup_vec(s, type, MO_64, a0, a0);
3034 case INDEX_op_abs_vec:
3035 insn = abs_insn[vece];
3040 tcg_debug_assert(insn != OPC_UD2);
3041 if (type == TCG_TYPE_V256) {
3044 tcg_out_vex_modrm(s, insn, a0, a1, a2);
3047 case INDEX_op_cmp_vec:
3049 if (sub == TCG_COND_EQ) {
3050 insn = cmpeq_insn[vece];
3051 } else if (sub == TCG_COND_GT) {
3052 insn = cmpgt_insn[vece];
3054 g_assert_not_reached();
3058 case INDEX_op_andc_vec:
3060 if (type == TCG_TYPE_V256) {
3063 tcg_out_vex_modrm(s, insn, a0, a2, a1);
3066 case INDEX_op_shli_vec:
3067 insn = shift_imm_insn[vece];
3070 case INDEX_op_shri_vec:
3071 insn = shift_imm_insn[vece];
3074 case INDEX_op_sari_vec:
3075 if (vece == MO_64) {
3076 insn = OPC_PSHIFTD_Ib | P_VEXW | P_EVEX;
3078 insn = shift_imm_insn[vece];
3082 case INDEX_op_rotli_vec:
3083 insn = OPC_PSHIFTD_Ib | P_EVEX; /* VPROL[DQ] */
3084 if (vece == MO_64) {
3090 tcg_debug_assert(vece != MO_8);
3091 if (type == TCG_TYPE_V256) {
3094 tcg_out_vex_modrm(s, insn, sub, a0, a1);
3098 case INDEX_op_ld_vec:
3099 tcg_out_ld(s, type, a0, a1, a2);
3101 case INDEX_op_st_vec:
3102 tcg_out_st(s, type, a0, a1, a2);
3104 case INDEX_op_dupm_vec:
3105 tcg_out_dupm_vec(s, type, vece, a0, a1, a2);
3108 case INDEX_op_x86_shufps_vec:
3112 case INDEX_op_x86_blend_vec:
3113 if (vece == MO_16) {
3115 } else if (vece == MO_32) {
3116 insn = (have_avx2 ? OPC_VPBLENDD : OPC_BLENDPS);
3118 g_assert_not_reached();
3122 case INDEX_op_x86_vperm2i128_vec:
3123 insn = OPC_VPERM2I128;
3126 case INDEX_op_x86_vpshldi_vec:
3127 insn = vpshldi_insn[vece];
3131 case INDEX_op_not_vec:
3132 insn = OPC_VPTERNLOGQ;
3134 sub = 0x33; /* !B */
3136 case INDEX_op_nor_vec:
3137 insn = OPC_VPTERNLOGQ;
3138 sub = 0x11; /* norCB */
3140 case INDEX_op_nand_vec:
3141 insn = OPC_VPTERNLOGQ;
3142 sub = 0x77; /* nandCB */
3144 case INDEX_op_eqv_vec:
3145 insn = OPC_VPTERNLOGQ;
3146 sub = 0x99; /* xnorCB */
3148 case INDEX_op_orc_vec:
3149 insn = OPC_VPTERNLOGQ;
3150 sub = 0xdd; /* orB!C */
3153 case INDEX_op_bitsel_vec:
3154 insn = OPC_VPTERNLOGQ;
3159 sub = 0xca; /* A?B:C */
3160 } else if (a0 == a2) {
3162 sub = 0xe2; /* B?A:C */
3164 tcg_out_mov(s, type, a0, a3);
3165 sub = 0xb8; /* B?C:A */
3170 tcg_debug_assert(insn != OPC_UD2);
3171 if (type == TCG_TYPE_V256) {
3174 tcg_out_vex_modrm(s, insn, a0, a1, a2);
3178 case INDEX_op_x86_vpblendvb_vec:
3179 insn = OPC_VPBLENDVB;
3180 if (type == TCG_TYPE_V256) {
3183 tcg_out_vex_modrm(s, insn, a0, a1, a2);
3184 tcg_out8(s, args[3] << 4);
3187 case INDEX_op_x86_psrldq_vec:
3188 tcg_out_vex_modrm(s, OPC_GRP14, 3, a0, a1);
3192 case INDEX_op_mov_vec: /* Always emitted via tcg_out_mov. */
3193 case INDEX_op_dup_vec: /* Always emitted via tcg_out_dup_vec. */
3195 g_assert_not_reached();
3199 static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)
3202 case INDEX_op_goto_ptr:
3205 case INDEX_op_ld8u_i32:
3206 case INDEX_op_ld8u_i64:
3207 case INDEX_op_ld8s_i32:
3208 case INDEX_op_ld8s_i64:
3209 case INDEX_op_ld16u_i32:
3210 case INDEX_op_ld16u_i64:
3211 case INDEX_op_ld16s_i32:
3212 case INDEX_op_ld16s_i64:
3213 case INDEX_op_ld_i32:
3214 case INDEX_op_ld32u_i64:
3215 case INDEX_op_ld32s_i64:
3216 case INDEX_op_ld_i64:
3217 return C_O1_I1(r, r);
3219 case INDEX_op_st8_i32:
3220 case INDEX_op_st8_i64:
3221 return C_O0_I2(qi, r);
3223 case INDEX_op_st16_i32:
3224 case INDEX_op_st16_i64:
3225 case INDEX_op_st_i32:
3226 case INDEX_op_st32_i64:
3227 return C_O0_I2(ri, r);
3229 case INDEX_op_st_i64:
3230 return C_O0_I2(re, r);
3232 case INDEX_op_add_i32:
3233 case INDEX_op_add_i64:
3234 return C_O1_I2(r, r, re);
3236 case INDEX_op_sub_i32:
3237 case INDEX_op_sub_i64:
3238 case INDEX_op_mul_i32:
3239 case INDEX_op_mul_i64:
3240 case INDEX_op_or_i32:
3241 case INDEX_op_or_i64:
3242 case INDEX_op_xor_i32:
3243 case INDEX_op_xor_i64:
3244 return C_O1_I2(r, 0, re);
3246 case INDEX_op_and_i32:
3247 case INDEX_op_and_i64:
3248 return C_O1_I2(r, 0, reZ);
3250 case INDEX_op_andc_i32:
3251 case INDEX_op_andc_i64:
3252 return C_O1_I2(r, r, rI);
3254 case INDEX_op_shl_i32:
3255 case INDEX_op_shl_i64:
3256 case INDEX_op_shr_i32:
3257 case INDEX_op_shr_i64:
3258 case INDEX_op_sar_i32:
3259 case INDEX_op_sar_i64:
3260 return have_bmi2 ? C_O1_I2(r, r, ri) : C_O1_I2(r, 0, ci);
3262 case INDEX_op_rotl_i32:
3263 case INDEX_op_rotl_i64:
3264 case INDEX_op_rotr_i32:
3265 case INDEX_op_rotr_i64:
3266 return C_O1_I2(r, 0, ci);
3268 case INDEX_op_brcond_i32:
3269 case INDEX_op_brcond_i64:
3270 return C_O0_I2(r, re);
3272 case INDEX_op_bswap16_i32:
3273 case INDEX_op_bswap16_i64:
3274 case INDEX_op_bswap32_i32:
3275 case INDEX_op_bswap32_i64:
3276 case INDEX_op_bswap64_i64:
3277 case INDEX_op_neg_i32:
3278 case INDEX_op_neg_i64:
3279 case INDEX_op_not_i32:
3280 case INDEX_op_not_i64:
3281 case INDEX_op_extrh_i64_i32:
3282 return C_O1_I1(r, 0);
3284 case INDEX_op_ext8s_i32:
3285 case INDEX_op_ext8s_i64:
3286 case INDEX_op_ext8u_i32:
3287 case INDEX_op_ext8u_i64:
3288 return C_O1_I1(r, q);
3290 case INDEX_op_ext16s_i32:
3291 case INDEX_op_ext16s_i64:
3292 case INDEX_op_ext16u_i32:
3293 case INDEX_op_ext16u_i64:
3294 case INDEX_op_ext32s_i64:
3295 case INDEX_op_ext32u_i64:
3296 case INDEX_op_ext_i32_i64:
3297 case INDEX_op_extu_i32_i64:
3298 case INDEX_op_extrl_i64_i32:
3299 case INDEX_op_extract_i32:
3300 case INDEX_op_extract_i64:
3301 case INDEX_op_sextract_i32:
3302 case INDEX_op_ctpop_i32:
3303 case INDEX_op_ctpop_i64:
3304 return C_O1_I1(r, r);
3306 case INDEX_op_extract2_i32:
3307 case INDEX_op_extract2_i64:
3308 return C_O1_I2(r, 0, r);
3310 case INDEX_op_deposit_i32:
3311 case INDEX_op_deposit_i64:
3312 return C_O1_I2(Q, 0, Q);
3314 case INDEX_op_setcond_i32:
3315 case INDEX_op_setcond_i64:
3316 return C_O1_I2(q, r, re);
3318 case INDEX_op_movcond_i32:
3319 case INDEX_op_movcond_i64:
3320 return C_O1_I4(r, r, re, r, 0);
3322 case INDEX_op_div2_i32:
3323 case INDEX_op_div2_i64:
3324 case INDEX_op_divu2_i32:
3325 case INDEX_op_divu2_i64:
3326 return C_O2_I3(a, d, 0, 1, r);
3328 case INDEX_op_mulu2_i32:
3329 case INDEX_op_mulu2_i64:
3330 case INDEX_op_muls2_i32:
3331 case INDEX_op_muls2_i64:
3332 return C_O2_I2(a, d, a, r);
3334 case INDEX_op_add2_i32:
3335 case INDEX_op_add2_i64:
3336 case INDEX_op_sub2_i32:
3337 case INDEX_op_sub2_i64:
3338 return C_N1_O1_I4(r, r, 0, 1, re, re);
3340 case INDEX_op_ctz_i32:
3341 case INDEX_op_ctz_i64:
3342 return have_bmi1 ? C_N1_I2(r, r, rW) : C_N1_I2(r, r, r);
3344 case INDEX_op_clz_i32:
3345 case INDEX_op_clz_i64:
3346 return have_lzcnt ? C_N1_I2(r, r, rW) : C_N1_I2(r, r, r);
3348 case INDEX_op_qemu_ld_a32_i32:
3349 return C_O1_I1(r, L);
3350 case INDEX_op_qemu_ld_a64_i32:
3351 return TCG_TARGET_REG_BITS == 64 ? C_O1_I1(r, L) : C_O1_I2(r, L, L);
3353 case INDEX_op_qemu_st_a32_i32:
3354 return C_O0_I2(L, L);
3355 case INDEX_op_qemu_st_a64_i32:
3356 return TCG_TARGET_REG_BITS == 64 ? C_O0_I2(L, L) : C_O0_I3(L, L, L);
3357 case INDEX_op_qemu_st8_a32_i32:
3358 return C_O0_I2(s, L);
3359 case INDEX_op_qemu_st8_a64_i32:
3360 return TCG_TARGET_REG_BITS == 64 ? C_O0_I2(s, L) : C_O0_I3(s, L, L);
3362 case INDEX_op_qemu_ld_a32_i64:
3363 return TCG_TARGET_REG_BITS == 64 ? C_O1_I1(r, L) : C_O2_I1(r, r, L);
3364 case INDEX_op_qemu_ld_a64_i64:
3365 return TCG_TARGET_REG_BITS == 64 ? C_O1_I1(r, L) : C_O2_I2(r, r, L, L);
3367 case INDEX_op_qemu_st_a32_i64:
3368 return TCG_TARGET_REG_BITS == 64 ? C_O0_I2(L, L) : C_O0_I3(L, L, L);
3369 case INDEX_op_qemu_st_a64_i64:
3370 return TCG_TARGET_REG_BITS == 64 ? C_O0_I2(L, L) : C_O0_I4(L, L, L, L);
3372 case INDEX_op_qemu_ld_a32_i128:
3373 case INDEX_op_qemu_ld_a64_i128:
3374 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
3375 return C_O2_I1(r, r, L);
3376 case INDEX_op_qemu_st_a32_i128:
3377 case INDEX_op_qemu_st_a64_i128:
3378 tcg_debug_assert(TCG_TARGET_REG_BITS == 64);
3379 return C_O0_I3(L, L, L);
3381 case INDEX_op_brcond2_i32:
3382 return C_O0_I4(r, r, ri, ri);
3384 case INDEX_op_setcond2_i32:
3385 return C_O1_I4(r, r, r, ri, ri);
3387 case INDEX_op_ld_vec:
3388 case INDEX_op_dupm_vec:
3389 return C_O1_I1(x, r);
3391 case INDEX_op_st_vec:
3392 return C_O0_I2(x, r);
3394 case INDEX_op_add_vec:
3395 case INDEX_op_sub_vec:
3396 case INDEX_op_mul_vec:
3397 case INDEX_op_and_vec:
3398 case INDEX_op_or_vec:
3399 case INDEX_op_xor_vec:
3400 case INDEX_op_andc_vec:
3401 case INDEX_op_orc_vec:
3402 case INDEX_op_nand_vec:
3403 case INDEX_op_nor_vec:
3404 case INDEX_op_eqv_vec:
3405 case INDEX_op_ssadd_vec:
3406 case INDEX_op_usadd_vec:
3407 case INDEX_op_sssub_vec:
3408 case INDEX_op_ussub_vec:
3409 case INDEX_op_smin_vec:
3410 case INDEX_op_umin_vec:
3411 case INDEX_op_smax_vec:
3412 case INDEX_op_umax_vec:
3413 case INDEX_op_shlv_vec:
3414 case INDEX_op_shrv_vec:
3415 case INDEX_op_sarv_vec:
3416 case INDEX_op_rotlv_vec:
3417 case INDEX_op_rotrv_vec:
3418 case INDEX_op_shls_vec:
3419 case INDEX_op_shrs_vec:
3420 case INDEX_op_sars_vec:
3421 case INDEX_op_cmp_vec:
3422 case INDEX_op_x86_shufps_vec:
3423 case INDEX_op_x86_blend_vec:
3424 case INDEX_op_x86_packss_vec:
3425 case INDEX_op_x86_packus_vec:
3426 case INDEX_op_x86_vperm2i128_vec:
3427 case INDEX_op_x86_punpckl_vec:
3428 case INDEX_op_x86_punpckh_vec:
3429 case INDEX_op_x86_vpshldi_vec:
3430 #if TCG_TARGET_REG_BITS == 32
3431 case INDEX_op_dup2_vec:
3433 return C_O1_I2(x, x, x);
3435 case INDEX_op_abs_vec:
3436 case INDEX_op_dup_vec:
3437 case INDEX_op_not_vec:
3438 case INDEX_op_shli_vec:
3439 case INDEX_op_shri_vec:
3440 case INDEX_op_sari_vec:
3441 case INDEX_op_rotli_vec:
3442 case INDEX_op_x86_psrldq_vec:
3443 return C_O1_I1(x, x);
3445 case INDEX_op_x86_vpshldv_vec:
3446 case INDEX_op_x86_vpshrdv_vec:
3447 return C_O1_I3(x, 0, x, x);
3449 case INDEX_op_bitsel_vec:
3450 case INDEX_op_x86_vpblendvb_vec:
3451 return C_O1_I3(x, x, x, x);
3454 g_assert_not_reached();
3458 int tcg_can_emit_vec_op(TCGOpcode opc, TCGType type, unsigned vece)
3461 case INDEX_op_add_vec:
3462 case INDEX_op_sub_vec:
3463 case INDEX_op_and_vec:
3464 case INDEX_op_or_vec:
3465 case INDEX_op_xor_vec:
3466 case INDEX_op_andc_vec:
3467 case INDEX_op_orc_vec:
3468 case INDEX_op_nand_vec:
3469 case INDEX_op_nor_vec:
3470 case INDEX_op_eqv_vec:
3471 case INDEX_op_not_vec:
3472 case INDEX_op_bitsel_vec:
3474 case INDEX_op_cmp_vec:
3475 case INDEX_op_cmpsel_vec:
3478 case INDEX_op_rotli_vec:
3479 return have_avx512vl && vece >= MO_32 ? 1 : -1;
3481 case INDEX_op_shli_vec:
3482 case INDEX_op_shri_vec:
3483 /* We must expand the operation for MO_8. */
3484 return vece == MO_8 ? -1 : 1;
3486 case INDEX_op_sari_vec:
3494 if (have_avx512vl) {
3498 * We can emulate this for MO_64, but it does not pay off
3499 * unless we're producing at least 4 values.
3501 return type >= TCG_TYPE_V256 ? -1 : 0;
3505 case INDEX_op_shls_vec:
3506 case INDEX_op_shrs_vec:
3507 return vece >= MO_16;
3508 case INDEX_op_sars_vec:
3514 return have_avx512vl;
3517 case INDEX_op_rotls_vec:
3518 return vece >= MO_16 ? -1 : 0;
3520 case INDEX_op_shlv_vec:
3521 case INDEX_op_shrv_vec:
3524 return have_avx512bw;
3530 case INDEX_op_sarv_vec:
3533 return have_avx512bw;
3537 return have_avx512vl;
3540 case INDEX_op_rotlv_vec:
3541 case INDEX_op_rotrv_vec:
3544 return have_avx512vbmi2 ? -1 : 0;
3547 return have_avx512vl ? 1 : have_avx2 ? -1 : 0;
3551 case INDEX_op_mul_vec:
3556 return have_avx512dq;
3560 case INDEX_op_ssadd_vec:
3561 case INDEX_op_usadd_vec:
3562 case INDEX_op_sssub_vec:
3563 case INDEX_op_ussub_vec:
3564 return vece <= MO_16;
3565 case INDEX_op_smin_vec:
3566 case INDEX_op_smax_vec:
3567 case INDEX_op_umin_vec:
3568 case INDEX_op_umax_vec:
3569 case INDEX_op_abs_vec:
3570 return vece <= MO_32 || have_avx512vl;
3577 static void expand_vec_shi(TCGType type, unsigned vece, TCGOpcode opc,
3578 TCGv_vec v0, TCGv_vec v1, TCGArg imm)
3582 tcg_debug_assert(vece == MO_8);
3584 t1 = tcg_temp_new_vec(type);
3585 t2 = tcg_temp_new_vec(type);
3588 * Unpack to W, shift, and repack. Tricky bits:
3589 * (1) Use punpck*bw x,x to produce DDCCBBAA,
3590 * i.e. duplicate in other half of the 16-bit lane.
3591 * (2) For right-shift, add 8 so that the high half of the lane
3592 * becomes zero. For left-shift, and left-rotate, we must
3593 * shift up and down again.
3594 * (3) Step 2 leaves high half zero such that PACKUSWB
3595 * (pack with unsigned saturation) does not modify
3598 vec_gen_3(INDEX_op_x86_punpckl_vec, type, MO_8,
3599 tcgv_vec_arg(t1), tcgv_vec_arg(v1), tcgv_vec_arg(v1));
3600 vec_gen_3(INDEX_op_x86_punpckh_vec, type, MO_8,
3601 tcgv_vec_arg(t2), tcgv_vec_arg(v1), tcgv_vec_arg(v1));
3603 if (opc != INDEX_op_rotli_vec) {
3606 if (opc == INDEX_op_shri_vec) {
3607 tcg_gen_shri_vec(MO_16, t1, t1, imm);
3608 tcg_gen_shri_vec(MO_16, t2, t2, imm);
3610 tcg_gen_shli_vec(MO_16, t1, t1, imm);
3611 tcg_gen_shli_vec(MO_16, t2, t2, imm);
3612 tcg_gen_shri_vec(MO_16, t1, t1, 8);
3613 tcg_gen_shri_vec(MO_16, t2, t2, 8);
3616 vec_gen_3(INDEX_op_x86_packus_vec, type, MO_8,
3617 tcgv_vec_arg(v0), tcgv_vec_arg(t1), tcgv_vec_arg(t2));
3618 tcg_temp_free_vec(t1);
3619 tcg_temp_free_vec(t2);
3622 static void expand_vec_sari(TCGType type, unsigned vece,
3623 TCGv_vec v0, TCGv_vec v1, TCGArg imm)
3629 /* Unpack to W, shift, and repack, as in expand_vec_shi. */
3630 t1 = tcg_temp_new_vec(type);
3631 t2 = tcg_temp_new_vec(type);
3632 vec_gen_3(INDEX_op_x86_punpckl_vec, type, MO_8,
3633 tcgv_vec_arg(t1), tcgv_vec_arg(v1), tcgv_vec_arg(v1));
3634 vec_gen_3(INDEX_op_x86_punpckh_vec, type, MO_8,
3635 tcgv_vec_arg(t2), tcgv_vec_arg(v1), tcgv_vec_arg(v1));
3636 tcg_gen_sari_vec(MO_16, t1, t1, imm + 8);
3637 tcg_gen_sari_vec(MO_16, t2, t2, imm + 8);
3638 vec_gen_3(INDEX_op_x86_packss_vec, type, MO_8,
3639 tcgv_vec_arg(v0), tcgv_vec_arg(t1), tcgv_vec_arg(t2));
3640 tcg_temp_free_vec(t1);
3641 tcg_temp_free_vec(t2);
3645 t1 = tcg_temp_new_vec(type);
3648 * We can emulate a small sign extend by performing an arithmetic
3649 * 32-bit shift and overwriting the high half of a 64-bit logical
3650 * shift. Note that the ISA says shift of 32 is valid, but TCG
3651 * does not, so we have to bound the smaller shift -- we get the
3652 * same result in the high half either way.
3654 tcg_gen_sari_vec(MO_32, t1, v1, MIN(imm, 31));
3655 tcg_gen_shri_vec(MO_64, v0, v1, imm);
3656 vec_gen_4(INDEX_op_x86_blend_vec, type, MO_32,
3657 tcgv_vec_arg(v0), tcgv_vec_arg(v0),
3658 tcgv_vec_arg(t1), 0xaa);
3660 /* Otherwise we will need to use a compare vs 0 to produce
3661 * the sign-extend, shift and merge.
3663 tcg_gen_cmp_vec(TCG_COND_GT, MO_64, t1,
3664 tcg_constant_vec(type, MO_64, 0), v1);
3665 tcg_gen_shri_vec(MO_64, v0, v1, imm);
3666 tcg_gen_shli_vec(MO_64, t1, t1, 64 - imm);
3667 tcg_gen_or_vec(MO_64, v0, v0, t1);
3669 tcg_temp_free_vec(t1);
3673 g_assert_not_reached();
3677 static void expand_vec_rotli(TCGType type, unsigned vece,
3678 TCGv_vec v0, TCGv_vec v1, TCGArg imm)
3683 expand_vec_shi(type, vece, INDEX_op_rotli_vec, v0, v1, imm);
3687 if (have_avx512vbmi2) {
3688 vec_gen_4(INDEX_op_x86_vpshldi_vec, type, vece,
3689 tcgv_vec_arg(v0), tcgv_vec_arg(v1), tcgv_vec_arg(v1), imm);
3693 t = tcg_temp_new_vec(type);
3694 tcg_gen_shli_vec(vece, t, v1, imm);
3695 tcg_gen_shri_vec(vece, v0, v1, (8 << vece) - imm);
3696 tcg_gen_or_vec(vece, v0, v0, t);
3697 tcg_temp_free_vec(t);
3700 static void expand_vec_rotv(TCGType type, unsigned vece, TCGv_vec v0,
3701 TCGv_vec v1, TCGv_vec sh, bool right)
3705 if (have_avx512vbmi2) {
3706 vec_gen_4(right ? INDEX_op_x86_vpshrdv_vec : INDEX_op_x86_vpshldv_vec,
3707 type, vece, tcgv_vec_arg(v0), tcgv_vec_arg(v1),
3708 tcgv_vec_arg(v1), tcgv_vec_arg(sh));
3712 t = tcg_temp_new_vec(type);
3713 tcg_gen_dupi_vec(vece, t, 8 << vece);
3714 tcg_gen_sub_vec(vece, t, t, sh);
3716 tcg_gen_shlv_vec(vece, t, v1, t);
3717 tcg_gen_shrv_vec(vece, v0, v1, sh);
3719 tcg_gen_shrv_vec(vece, t, v1, t);
3720 tcg_gen_shlv_vec(vece, v0, v1, sh);
3722 tcg_gen_or_vec(vece, v0, v0, t);
3723 tcg_temp_free_vec(t);
3726 static void expand_vec_rotls(TCGType type, unsigned vece,
3727 TCGv_vec v0, TCGv_vec v1, TCGv_i32 lsh)
3729 TCGv_vec t = tcg_temp_new_vec(type);
3731 tcg_debug_assert(vece != MO_8);
3733 if (vece >= MO_32 ? have_avx512vl : have_avx512vbmi2) {
3734 tcg_gen_dup_i32_vec(vece, t, lsh);
3735 if (vece >= MO_32) {
3736 tcg_gen_rotlv_vec(vece, v0, v1, t);
3738 expand_vec_rotv(type, vece, v0, v1, t, false);
3741 TCGv_i32 rsh = tcg_temp_new_i32();
3743 tcg_gen_neg_i32(rsh, lsh);
3744 tcg_gen_andi_i32(rsh, rsh, (8 << vece) - 1);
3745 tcg_gen_shls_vec(vece, t, v1, lsh);
3746 tcg_gen_shrs_vec(vece, v0, v1, rsh);
3747 tcg_gen_or_vec(vece, v0, v0, t);
3749 tcg_temp_free_i32(rsh);
3752 tcg_temp_free_vec(t);
3755 static void expand_vec_mul(TCGType type, unsigned vece,
3756 TCGv_vec v0, TCGv_vec v1, TCGv_vec v2)
3758 TCGv_vec t1, t2, t3, t4, zero;
3760 tcg_debug_assert(vece == MO_8);
3763 * Unpack v1 bytes to words, 0 | x.
3764 * Unpack v2 bytes to words, y | 0.
3765 * This leaves the 8-bit result, x * y, with 8 bits of right padding.
3766 * Shift logical right by 8 bits to clear the high 8 bytes before
3767 * using an unsigned saturated pack.
3769 * The difference between the V64, V128 and V256 cases is merely how
3770 * we distribute the expansion between temporaries.
3774 t1 = tcg_temp_new_vec(TCG_TYPE_V128);
3775 t2 = tcg_temp_new_vec(TCG_TYPE_V128);
3776 zero = tcg_constant_vec(TCG_TYPE_V128, MO_8, 0);
3777 vec_gen_3(INDEX_op_x86_punpckl_vec, TCG_TYPE_V128, MO_8,
3778 tcgv_vec_arg(t1), tcgv_vec_arg(v1), tcgv_vec_arg(zero));
3779 vec_gen_3(INDEX_op_x86_punpckl_vec, TCG_TYPE_V128, MO_8,
3780 tcgv_vec_arg(t2), tcgv_vec_arg(zero), tcgv_vec_arg(v2));
3781 tcg_gen_mul_vec(MO_16, t1, t1, t2);
3782 tcg_gen_shri_vec(MO_16, t1, t1, 8);
3783 vec_gen_3(INDEX_op_x86_packus_vec, TCG_TYPE_V128, MO_8,
3784 tcgv_vec_arg(v0), tcgv_vec_arg(t1), tcgv_vec_arg(t1));
3785 tcg_temp_free_vec(t1);
3786 tcg_temp_free_vec(t2);
3791 t1 = tcg_temp_new_vec(type);
3792 t2 = tcg_temp_new_vec(type);
3793 t3 = tcg_temp_new_vec(type);
3794 t4 = tcg_temp_new_vec(type);
3795 zero = tcg_constant_vec(TCG_TYPE_V128, MO_8, 0);
3796 vec_gen_3(INDEX_op_x86_punpckl_vec, type, MO_8,
3797 tcgv_vec_arg(t1), tcgv_vec_arg(v1), tcgv_vec_arg(zero));
3798 vec_gen_3(INDEX_op_x86_punpckl_vec, type, MO_8,
3799 tcgv_vec_arg(t2), tcgv_vec_arg(zero), tcgv_vec_arg(v2));
3800 vec_gen_3(INDEX_op_x86_punpckh_vec, type, MO_8,
3801 tcgv_vec_arg(t3), tcgv_vec_arg(v1), tcgv_vec_arg(zero));
3802 vec_gen_3(INDEX_op_x86_punpckh_vec, type, MO_8,
3803 tcgv_vec_arg(t4), tcgv_vec_arg(zero), tcgv_vec_arg(v2));
3804 tcg_gen_mul_vec(MO_16, t1, t1, t2);
3805 tcg_gen_mul_vec(MO_16, t3, t3, t4);
3806 tcg_gen_shri_vec(MO_16, t1, t1, 8);
3807 tcg_gen_shri_vec(MO_16, t3, t3, 8);
3808 vec_gen_3(INDEX_op_x86_packus_vec, type, MO_8,
3809 tcgv_vec_arg(v0), tcgv_vec_arg(t1), tcgv_vec_arg(t3));
3810 tcg_temp_free_vec(t1);
3811 tcg_temp_free_vec(t2);
3812 tcg_temp_free_vec(t3);
3813 tcg_temp_free_vec(t4);
3817 g_assert_not_reached();
3821 static bool expand_vec_cmp_noinv(TCGType type, unsigned vece, TCGv_vec v0,
3822 TCGv_vec v1, TCGv_vec v2, TCGCond cond)
3831 TCGv_vec t1, t2, t3;
3847 fixup = NEED_SWAP | NEED_INV;
3850 if (tcg_can_emit_vec_op(INDEX_op_umin_vec, type, vece)) {
3853 fixup = NEED_BIAS | NEED_INV;
3857 if (tcg_can_emit_vec_op(INDEX_op_umin_vec, type, vece)) {
3858 fixup = NEED_UMIN | NEED_INV;
3864 if (tcg_can_emit_vec_op(INDEX_op_umax_vec, type, vece)) {
3867 fixup = NEED_BIAS | NEED_SWAP | NEED_INV;
3871 if (tcg_can_emit_vec_op(INDEX_op_umax_vec, type, vece)) {
3872 fixup = NEED_UMAX | NEED_INV;
3874 fixup = NEED_BIAS | NEED_SWAP;
3878 g_assert_not_reached();
3881 if (fixup & NEED_INV) {
3882 cond = tcg_invert_cond(cond);
3884 if (fixup & NEED_SWAP) {
3885 t1 = v1, v1 = v2, v2 = t1;
3886 cond = tcg_swap_cond(cond);
3890 if (fixup & (NEED_UMIN | NEED_UMAX)) {
3891 t1 = tcg_temp_new_vec(type);
3892 if (fixup & NEED_UMIN) {
3893 tcg_gen_umin_vec(vece, t1, v1, v2);
3895 tcg_gen_umax_vec(vece, t1, v1, v2);
3899 } else if (fixup & NEED_BIAS) {
3900 t1 = tcg_temp_new_vec(type);
3901 t2 = tcg_temp_new_vec(type);
3902 t3 = tcg_constant_vec(type, vece, 1ull << ((8 << vece) - 1));
3903 tcg_gen_sub_vec(vece, t1, v1, t3);
3904 tcg_gen_sub_vec(vece, t2, v2, t3);
3907 cond = tcg_signed_cond(cond);
3910 tcg_debug_assert(cond == TCG_COND_EQ || cond == TCG_COND_GT);
3911 /* Expand directly; do not recurse. */
3912 vec_gen_4(INDEX_op_cmp_vec, type, vece,
3913 tcgv_vec_arg(v0), tcgv_vec_arg(v1), tcgv_vec_arg(v2), cond);
3916 tcg_temp_free_vec(t1);
3918 tcg_temp_free_vec(t2);
3921 return fixup & NEED_INV;
3924 static void expand_vec_cmp(TCGType type, unsigned vece, TCGv_vec v0,
3925 TCGv_vec v1, TCGv_vec v2, TCGCond cond)
3927 if (expand_vec_cmp_noinv(type, vece, v0, v1, v2, cond)) {
3928 tcg_gen_not_vec(vece, v0, v0);
3932 static void expand_vec_cmpsel(TCGType type, unsigned vece, TCGv_vec v0,
3933 TCGv_vec c1, TCGv_vec c2,
3934 TCGv_vec v3, TCGv_vec v4, TCGCond cond)
3936 TCGv_vec t = tcg_temp_new_vec(type);
3938 if (expand_vec_cmp_noinv(type, vece, t, c1, c2, cond)) {
3939 /* Invert the sense of the compare by swapping arguments. */
3941 x = v3, v3 = v4, v4 = x;
3943 vec_gen_4(INDEX_op_x86_vpblendvb_vec, type, vece,
3944 tcgv_vec_arg(v0), tcgv_vec_arg(v4),
3945 tcgv_vec_arg(v3), tcgv_vec_arg(t));
3946 tcg_temp_free_vec(t);
3949 void tcg_expand_vec_op(TCGOpcode opc, TCGType type, unsigned vece,
3954 TCGv_vec v0, v1, v2, v3, v4;
3957 v0 = temp_tcgv_vec(arg_temp(a0));
3958 v1 = temp_tcgv_vec(arg_temp(va_arg(va, TCGArg)));
3959 a2 = va_arg(va, TCGArg);
3962 case INDEX_op_shli_vec:
3963 case INDEX_op_shri_vec:
3964 expand_vec_shi(type, vece, opc, v0, v1, a2);
3967 case INDEX_op_sari_vec:
3968 expand_vec_sari(type, vece, v0, v1, a2);
3971 case INDEX_op_rotli_vec:
3972 expand_vec_rotli(type, vece, v0, v1, a2);
3975 case INDEX_op_rotls_vec:
3976 expand_vec_rotls(type, vece, v0, v1, temp_tcgv_i32(arg_temp(a2)));
3979 case INDEX_op_rotlv_vec:
3980 v2 = temp_tcgv_vec(arg_temp(a2));
3981 expand_vec_rotv(type, vece, v0, v1, v2, false);
3983 case INDEX_op_rotrv_vec:
3984 v2 = temp_tcgv_vec(arg_temp(a2));
3985 expand_vec_rotv(type, vece, v0, v1, v2, true);
3988 case INDEX_op_mul_vec:
3989 v2 = temp_tcgv_vec(arg_temp(a2));
3990 expand_vec_mul(type, vece, v0, v1, v2);
3993 case INDEX_op_cmp_vec:
3994 v2 = temp_tcgv_vec(arg_temp(a2));
3995 expand_vec_cmp(type, vece, v0, v1, v2, va_arg(va, TCGArg));
3998 case INDEX_op_cmpsel_vec:
3999 v2 = temp_tcgv_vec(arg_temp(a2));
4000 v3 = temp_tcgv_vec(arg_temp(va_arg(va, TCGArg)));
4001 v4 = temp_tcgv_vec(arg_temp(va_arg(va, TCGArg)));
4002 expand_vec_cmpsel(type, vece, v0, v1, v2, v3, v4, va_arg(va, TCGArg));
4012 static const int tcg_target_callee_save_regs[] = {
4013 #if TCG_TARGET_REG_BITS == 64
4022 TCG_REG_R14, /* Currently used for the global env. */
4025 TCG_REG_EBP, /* Currently used for the global env. */
4032 /* Compute frame size via macros, to share between tcg_target_qemu_prologue
4033 and tcg_register_jit. */
4036 ((1 + ARRAY_SIZE(tcg_target_callee_save_regs)) \
4037 * (TCG_TARGET_REG_BITS / 8))
4039 #define FRAME_SIZE \
4041 + TCG_STATIC_CALL_ARGS_SIZE \
4042 + CPU_TEMP_BUF_NLONGS * sizeof(long) \
4043 + TCG_TARGET_STACK_ALIGN - 1) \
4044 & ~(TCG_TARGET_STACK_ALIGN - 1))
4046 /* Generate global QEMU prologue and epilogue code */
4047 static void tcg_target_qemu_prologue(TCGContext *s)
4049 int i, stack_addend;
4053 /* Reserve some stack space, also for TCG temps. */
4054 stack_addend = FRAME_SIZE - PUSH_SIZE;
4055 tcg_set_frame(s, TCG_REG_CALL_STACK, TCG_STATIC_CALL_ARGS_SIZE,
4056 CPU_TEMP_BUF_NLONGS * sizeof(long));
4058 /* Save all callee saved registers. */
4059 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
4060 tcg_out_push(s, tcg_target_callee_save_regs[i]);
4063 #if TCG_TARGET_REG_BITS == 32
4064 tcg_out_ld(s, TCG_TYPE_PTR, TCG_AREG0, TCG_REG_ESP,
4065 (ARRAY_SIZE(tcg_target_callee_save_regs) + 1) * 4);
4066 tcg_out_addi(s, TCG_REG_ESP, -stack_addend);
4068 tcg_out_modrm_offset(s, OPC_GRP5, EXT5_JMPN_Ev, TCG_REG_ESP,
4069 (ARRAY_SIZE(tcg_target_callee_save_regs) + 2) * 4
4072 # if !defined(CONFIG_SOFTMMU)
4074 int seg = setup_guest_base_seg();
4076 x86_guest_base.seg = seg;
4077 } else if (guest_base == (int32_t)guest_base) {
4078 x86_guest_base.ofs = guest_base;
4080 /* Choose R12 because, as a base, it requires a SIB byte. */
4081 x86_guest_base.index = TCG_REG_R12;
4082 tcg_out_movi(s, TCG_TYPE_PTR, x86_guest_base.index, guest_base);
4083 tcg_regset_set_reg(s->reserved_regs, x86_guest_base.index);
4087 tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
4088 tcg_out_addi(s, TCG_REG_ESP, -stack_addend);
4090 tcg_out_modrm(s, OPC_GRP5, EXT5_JMPN_Ev, tcg_target_call_iarg_regs[1]);
4094 * Return path for goto_ptr. Set return value to 0, a-la exit_tb,
4095 * and fall through to the rest of the epilogue.
4097 tcg_code_gen_epilogue = tcg_splitwx_to_rx(s->code_ptr);
4098 tcg_out_movi(s, TCG_TYPE_REG, TCG_REG_EAX, 0);
4101 tb_ret_addr = tcg_splitwx_to_rx(s->code_ptr);
4103 tcg_out_addi(s, TCG_REG_CALL_STACK, stack_addend);
4106 tcg_out_vex_opc(s, OPC_VZEROUPPER, 0, 0, 0, 0);
4108 for (i = ARRAY_SIZE(tcg_target_callee_save_regs) - 1; i >= 0; i--) {
4109 tcg_out_pop(s, tcg_target_callee_save_regs[i]);
4111 tcg_out_opc(s, OPC_RET, 0, 0, 0);
4114 static void tcg_out_nop_fill(tcg_insn_unit *p, int count)
4116 memset(p, 0x90, count);
4119 static void tcg_target_init(TCGContext *s)
4121 tcg_target_available_regs[TCG_TYPE_I32] = ALL_GENERAL_REGS;
4122 if (TCG_TARGET_REG_BITS == 64) {
4123 tcg_target_available_regs[TCG_TYPE_I64] = ALL_GENERAL_REGS;
4126 tcg_target_available_regs[TCG_TYPE_V64] = ALL_VECTOR_REGS;
4127 tcg_target_available_regs[TCG_TYPE_V128] = ALL_VECTOR_REGS;
4130 tcg_target_available_regs[TCG_TYPE_V256] = ALL_VECTOR_REGS;
4133 tcg_target_call_clobber_regs = ALL_VECTOR_REGS;
4134 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_EAX);
4135 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_EDX);
4136 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_ECX);
4137 if (TCG_TARGET_REG_BITS == 64) {
4138 #if !defined(_WIN64)
4139 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_RDI);
4140 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_RSI);
4142 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R8);
4143 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R9);
4144 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R10);
4145 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R11);
4148 s->reserved_regs = 0;
4149 tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK);
4150 tcg_regset_set_reg(s->reserved_regs, TCG_TMP_VEC);
4152 /* These are call saved, and we don't save them, so don't use them. */
4153 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM6);
4154 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM7);
4155 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM8);
4156 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM9);
4157 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM10);
4158 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM11);
4159 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM12);
4160 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM13);
4161 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM14);
4162 tcg_regset_set_reg(s->reserved_regs, TCG_REG_XMM15);
4168 uint8_t fde_def_cfa[4];
4169 uint8_t fde_reg_ofs[14];
4172 /* We're expecting a 2 byte uleb128 encoded value. */
4173 QEMU_BUILD_BUG_ON(FRAME_SIZE >= (1 << 14));
4175 #if !defined(__ELF__)
4176 /* Host machine without ELF. */
4177 #elif TCG_TARGET_REG_BITS == 64
4178 #define ELF_HOST_MACHINE EM_X86_64
4179 static const DebugFrame debug_frame = {
4180 .h.cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */
4183 .h.cie.code_align = 1,
4184 .h.cie.data_align = 0x78, /* sleb128 -8 */
4185 .h.cie.return_column = 16,
4187 /* Total FDE size does not include the "len" member. */
4188 .h.fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, h.fde.cie_offset),
4191 12, 7, /* DW_CFA_def_cfa %rsp, ... */
4192 (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
4196 0x90, 1, /* DW_CFA_offset, %rip, -8 */
4197 /* The following ordering must match tcg_target_callee_save_regs. */
4198 0x86, 2, /* DW_CFA_offset, %rbp, -16 */
4199 0x83, 3, /* DW_CFA_offset, %rbx, -24 */
4200 0x8c, 4, /* DW_CFA_offset, %r12, -32 */
4201 0x8d, 5, /* DW_CFA_offset, %r13, -40 */
4202 0x8e, 6, /* DW_CFA_offset, %r14, -48 */
4203 0x8f, 7, /* DW_CFA_offset, %r15, -56 */
4207 #define ELF_HOST_MACHINE EM_386
4208 static const DebugFrame debug_frame = {
4209 .h.cie.len = sizeof(DebugFrameCIE)-4, /* length after .len member */
4212 .h.cie.code_align = 1,
4213 .h.cie.data_align = 0x7c, /* sleb128 -4 */
4214 .h.cie.return_column = 8,
4216 /* Total FDE size does not include the "len" member. */
4217 .h.fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, h.fde.cie_offset),
4220 12, 4, /* DW_CFA_def_cfa %esp, ... */
4221 (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
4225 0x88, 1, /* DW_CFA_offset, %eip, -4 */
4226 /* The following ordering must match tcg_target_callee_save_regs. */
4227 0x85, 2, /* DW_CFA_offset, %ebp, -8 */
4228 0x83, 3, /* DW_CFA_offset, %ebx, -12 */
4229 0x86, 4, /* DW_CFA_offset, %esi, -16 */
4230 0x87, 5, /* DW_CFA_offset, %edi, -20 */
4235 #if defined(ELF_HOST_MACHINE)
4236 void tcg_register_jit(const void *buf, size_t buf_size)
4238 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));