Lines Matching refs:AddSubC
738 i->Pin.AddSubC.isAdd = isAdd; in PPCInstr_AddSubC()
739 i->Pin.AddSubC.setC = setC; in PPCInstr_AddSubC()
740 i->Pin.AddSubC.dst = dst; in PPCInstr_AddSubC()
741 i->Pin.AddSubC.srcL = srcL; in PPCInstr_AddSubC()
742 i->Pin.AddSubC.srcR = srcR; in PPCInstr_AddSubC()
1505 i->Pin.AddSubC.isAdd ? "add" : "sub", in ppPPCInstr()
1506 i->Pin.AddSubC.setC ? "c" : "e"); in ppPPCInstr()
1507 ppHRegPPC(i->Pin.AddSubC.dst); in ppPPCInstr()
1509 ppHRegPPC(i->Pin.AddSubC.srcL); in ppPPCInstr()
1511 ppHRegPPC(i->Pin.AddSubC.srcR); in ppPPCInstr()
2244 addHRegUse(u, HRmWrite, i->Pin.AddSubC.dst); in getRegUsage_PPCInstr()
2245 addHRegUse(u, HRmRead, i->Pin.AddSubC.srcL); in getRegUsage_PPCInstr()
2246 addHRegUse(u, HRmRead, i->Pin.AddSubC.srcR); in getRegUsage_PPCInstr()
2650 mapReg(m, &i->Pin.AddSubC.dst); in mapRegs_PPCInstr()
2651 mapReg(m, &i->Pin.AddSubC.srcL); in mapRegs_PPCInstr()
2652 mapReg(m, &i->Pin.AddSubC.srcR); in mapRegs_PPCInstr()
3942 Bool isAdd = i->Pin.AddSubC.isAdd; in emit_PPCInstr()
3943 Bool setC = i->Pin.AddSubC.setC; in emit_PPCInstr()
3944 UInt r_srcL = iregEnc(i->Pin.AddSubC.srcL, mode64); in emit_PPCInstr()
3945 UInt r_srcR = iregEnc(i->Pin.AddSubC.srcR, mode64); in emit_PPCInstr()
3946 UInt r_dst = iregEnc(i->Pin.AddSubC.dst, mode64); in emit_PPCInstr()