Searched defs:P_REXB_RM (Results 1 - 2 of 2) sorted by relevance

/external/qemu/tcg/x86_64/
H A Dtcg-target.c223 #define P_REXB_RM 0x800 /* R/M field as byte register */ macro
253 rex |= opc & (rm >= 4 ? P_REXB_RM : 0);
425 tcg_out_modrm(s, 0xb6 | P_EXT | P_REXB_RM, r0, r0);
534 tcg_out_modrm(s, 0x90 | tcg_cond_to_jcc[cond] | P_EXT | P_REXB_RM, 0, dest);
809 tcg_out_modrm(s, 0xb6 | P_EXT | P_REXB_RM, TCG_REG_RSI, data_reg);
1194 tcg_out_modrm(s, 0xbe | P_EXT | P_REXB_RM, args[0], args[1]);
1210 tcg_out_modrm(s, 0xb6 | P_EXT | P_REXB_RM, args[0], args[1]);
/external/qemu/tcg/i386/
H A Dtcg-target.c236 # define P_REXB_RM 0x2000 /* R/M field as byte register */ macro
241 # define P_REXB_RM 0 macro
276 #define OPC_SETCC (0x90 | P_EXT | P_REXB_RM) /* ... plus cc */
376 rex |= opc & (rm >= 4 ? P_REXB_RM : 0);
607 tcg_out_modrm(s, OPC_MOVZBL + P_REXB_RM, dest, src);
614 tcg_out_modrm(s, OPC_MOVSBL + P_REXB_RM + rexw, dest, src);

Completed in 374 milliseconds