Searched refs:P_REXW (Results 1 - 2 of 2) sorted by relevance

/external/qemu/tcg/x86_64/
H A Dtcg-target.c221 #define P_REXW 0x200 /* set rex.w = 1 */ macro
242 rex |= (opc & P_REXW) >> 6; /* REX.W */
359 tcg_out_modrm(s, 0x8b | P_REXW, ret, arg);
371 tcg_out_modrm(s, 0xc7 | P_REXW, 0, ret);
374 tcg_out_opc(s, (0xb8 + (ret & 7)) | P_REXW, 0, ret, 0);
400 tcg_out_modrm_offset(s, 0x8b | P_REXW, ret, arg1, arg2); /* movq */
409 tcg_out_modrm_offset(s, 0x89 | P_REXW, arg, arg1, arg2); /* movq */
439 tcg_out_modrm(s, 0xff | P_REXW, 0, r0);
442 tcg_out_modrm(s, 0xff | P_REXW, 1, r0);
450 tcg_out_modrm(s, 0x83 | P_REXW,
738 tcg_out_opc(s, (0xc8 + (data_reg & 7)) | P_EXT | P_REXW, 0, data_reg, 0); local
890 tcg_out_opc(s, (0xc8 + r1) | P_EXT | P_REXW, 0, r1, 0); local
1176 tcg_out_opc(s, (0xc8 + (args[0] & 7)) | P_EXT | P_REXW, 0, args[0], 0); local
[all...]
/external/qemu/tcg/i386/
H A Dtcg-target.c234 # define P_REXW 0x800 /* Set REX.W = 1 */ macro
239 # define P_REXW 0 macro
268 #define OPC_MOVSLQ (0x63 | P_REXW)
357 assert((opc & P_REXW) == 0);
365 rex |= (opc & P_REXW) >> 8; /* REX.W */
508 /* Propagate an opcode prefix, such as P_REXW. */
518 int opc = OPC_MOVL_GvEv + (type == TCG_TYPE_I64 ? P_REXW : 0);
533 tcg_out_modrm(s, OPC_MOVL_EvIz + P_REXW, 0, ret);
536 tcg_out_opc(s, OPC_MOVL_Iv + P_REXW + LOWREGMASK(ret), 0, ret, 0);
568 int opc = OPC_MOVL_GvEv + (type == TCG_TYPE_I64 ? P_REXW
[all...]

Completed in 81 milliseconds