Lines Matching refs:MulL
848 i->Pin.MulL.syned = syned; in PPCInstr_MulL()
849 i->Pin.MulL.hi = hi; in PPCInstr_MulL()
850 i->Pin.MulL.sz32 = sz32; in PPCInstr_MulL()
851 i->Pin.MulL.dst = dst; in PPCInstr_MulL()
852 i->Pin.MulL.srcL = srcL; in PPCInstr_MulL()
853 i->Pin.MulL.srcR = srcR; in PPCInstr_MulL()
1603 i->Pin.MulL.hi ? 'h' : 'l', in ppPPCInstr()
1604 i->Pin.MulL.sz32 ? 'w' : 'd', in ppPPCInstr()
1605 i->Pin.MulL.hi ? (i->Pin.MulL.syned ? "s" : "u") : ""); in ppPPCInstr()
1606 ppHRegPPC(i->Pin.MulL.dst); in ppPPCInstr()
1608 ppHRegPPC(i->Pin.MulL.srcL); in ppPPCInstr()
1610 ppHRegPPC(i->Pin.MulL.srcR); in ppPPCInstr()
2299 addHRegUse(u, HRmWrite, i->Pin.MulL.dst); in getRegUsage_PPCInstr()
2300 addHRegUse(u, HRmRead, i->Pin.MulL.srcL); in getRegUsage_PPCInstr()
2301 addHRegUse(u, HRmRead, i->Pin.MulL.srcR); in getRegUsage_PPCInstr()
2699 mapReg(m, &i->Pin.MulL.dst); in mapRegs_PPCInstr()
2700 mapReg(m, &i->Pin.MulL.srcL); in mapRegs_PPCInstr()
2701 mapReg(m, &i->Pin.MulL.srcR); in mapRegs_PPCInstr()
4016 Bool syned = i->Pin.MulL.syned; in emit_PPCInstr()
4017 Bool sz32 = i->Pin.MulL.sz32; in emit_PPCInstr()
4018 UInt r_dst = iregNo(i->Pin.MulL.dst, mode64); in emit_PPCInstr()
4019 UInt r_srcL = iregNo(i->Pin.MulL.srcL, mode64); in emit_PPCInstr()
4020 UInt r_srcR = iregNo(i->Pin.MulL.srcR, mode64); in emit_PPCInstr()
4025 if (i->Pin.MulL.hi) { in emit_PPCInstr()
4040 vassert(!i->Pin.MulL.syned); in emit_PPCInstr()