Lines Matching refs:CMov64
723 i->Ain.CMov64.cond = cond; in AMD64Instr_CMov64()
724 i->Ain.CMov64.src = src; in AMD64Instr_CMov64()
725 i->Ain.CMov64.dst = dst; in AMD64Instr_CMov64()
1144 vex_printf("cmov%s ", showAMD64CondCode(i->Ain.CMov64.cond)); in ppAMD64Instr()
1145 ppHRegAMD64(i->Ain.CMov64.src); in ppAMD64Instr()
1147 ppHRegAMD64(i->Ain.CMov64.dst); in ppAMD64Instr()
1527 addHRegUse(u, HRmRead, i->Ain.CMov64.src); in getRegUsage_AMD64Instr()
1528 addHRegUse(u, HRmModify, i->Ain.CMov64.dst); in getRegUsage_AMD64Instr()
1775 mapReg(m, &i->Ain.CMov64.src); in mapRegs_AMD64Instr()
1776 mapReg(m, &i->Ain.CMov64.dst); in mapRegs_AMD64Instr()
3123 vassert(i->Ain.CMov64.cond != Acc_ALWAYS); in emit_AMD64Instr()
3124 *p++ = rexAMode_R(i->Ain.CMov64.dst, i->Ain.CMov64.src); in emit_AMD64Instr()
3126 *p++ = toUChar(0x40 + (0xF & i->Ain.CMov64.cond)); in emit_AMD64Instr()
3127 p = doAMode_R(p, i->Ain.CMov64.dst, i->Ain.CMov64.src); in emit_AMD64Instr()