Lines Matching refs:CMov
887 i->Pin.CMov.cond = cond; in PPCInstr_CMov()
888 i->Pin.CMov.src = src; in PPCInstr_CMov()
889 i->Pin.CMov.dst = dst; in PPCInstr_CMov()
1608 vex_printf("cmov (%s) ", showPPCCondCode(i->Pin.CMov.cond)); in ppPPCInstr()
1609 ppHRegPPC(i->Pin.CMov.dst); in ppPPCInstr()
1611 ppPPCRI(i->Pin.CMov.src); in ppPPCInstr()
1613 if (i->Pin.CMov.cond.test != Pct_ALWAYS) { in ppPPCInstr()
1614 vex_printf("if (%s) ", showPPCCondCode(i->Pin.CMov.cond)); in ppPPCInstr()
1617 if (i->Pin.CMov.src->tag == Pri_Imm) { in ppPPCInstr()
1618 ppLoadImm(i->Pin.CMov.dst, i->Pin.CMov.src->Pri.Imm, mode64); in ppPPCInstr()
1620 ppMovReg(i->Pin.CMov.dst, i->Pin.CMov.src->Pri.Reg); in ppPPCInstr()
2246 addRegUsage_PPCRI(u, i->Pin.CMov.src); in getRegUsage_PPCInstr()
2247 addHRegUse(u, HRmWrite, i->Pin.CMov.dst); in getRegUsage_PPCInstr()
2568 mapRegs_PPCRI(m, i->Pin.CMov.src); in mapRegs_PPCInstr()
2569 mapReg(m, &i->Pin.CMov.dst); in mapRegs_PPCInstr()
4124 vassert(i->Pin.CMov.cond.test != Pct_ALWAYS); in emit_PPCInstr()
4126 r_dst = iregNo(i->Pin.CMov.dst, mode64); in emit_PPCInstr()
4127 cond = i->Pin.CMov.cond; in emit_PPCInstr()
4139 switch (i->Pin.CMov.src->tag) { in emit_PPCInstr()
4141 imm_src = i->Pin.CMov.src->Pri.Imm; in emit_PPCInstr()
4145 r_src = iregNo(i->Pin.CMov.src->Pri.Reg, mode64); in emit_PPCInstr()