Lines Matching refs:CMov
901 i->Pin.CMov.cond = cond; in PPCInstr_CMov()
902 i->Pin.CMov.src = src; in PPCInstr_CMov()
903 i->Pin.CMov.dst = dst; in PPCInstr_CMov()
1718 vex_printf("cmov (%s) ", showPPCCondCode(i->Pin.CMov.cond)); in ppPPCInstr()
1719 ppHRegPPC(i->Pin.CMov.dst); in ppPPCInstr()
1721 ppPPCRI(i->Pin.CMov.src); in ppPPCInstr()
1723 if (i->Pin.CMov.cond.test != Pct_ALWAYS) { in ppPPCInstr()
1724 vex_printf("if (%s) ", showPPCCondCode(i->Pin.CMov.cond)); in ppPPCInstr()
1727 if (i->Pin.CMov.src->tag == Pri_Imm) { in ppPPCInstr()
1728 ppLoadImm(i->Pin.CMov.dst, i->Pin.CMov.src->Pri.Imm, mode64); in ppPPCInstr()
1730 ppMovReg(i->Pin.CMov.dst, i->Pin.CMov.src->Pri.Reg); in ppPPCInstr()
2458 addRegUsage_PPCRI(u, i->Pin.CMov.src); in getRegUsage_PPCInstr()
2459 addHRegUse(u, HRmWrite, i->Pin.CMov.dst); in getRegUsage_PPCInstr()
2829 mapRegs_PPCRI(m, i->Pin.CMov.src); in mapRegs_PPCInstr()
2830 mapReg(m, &i->Pin.CMov.dst); in mapRegs_PPCInstr()
4593 vassert(i->Pin.CMov.cond.test != Pct_ALWAYS); in emit_PPCInstr()
4595 r_dst = iregEnc(i->Pin.CMov.dst, mode64); in emit_PPCInstr()
4596 cond = i->Pin.CMov.cond; in emit_PPCInstr()
4608 switch (i->Pin.CMov.src->tag) { in emit_PPCInstr()
4610 imm_src = i->Pin.CMov.src->Pri.Imm; in emit_PPCInstr()
4614 r_src = iregEnc(i->Pin.CMov.src->Pri.Reg, mode64); in emit_PPCInstr()