Lines Matching defs:sz32
597 const HChar* showPPCShftOp ( PPCShftOp op, Bool immR, Bool sz32 ) {
599 case Pshft_SHL: return sz32 ? (immR ? "slwi" : "slw") :
601 case Pshft_SHR: return sz32 ? (immR ? "srwi" : "srw") :
603 case Pshft_SAR: return sz32 ? (immR ? "srawi" : "sraw") :
803 PPCInstr* PPCInstr_Shft ( PPCShftOp op, Bool sz32,
808 i->Pin.Shft.sz32 = sz32;
825 PPCInstr* PPCInstr_Cmp ( Bool syned, Bool sz32,
830 i->Pin.Cmp.sz32 = sz32;
844 PPCInstr* PPCInstr_MulL ( Bool syned, Bool hi, Bool sz32,
850 i->Pin.MulL.sz32 = sz32;
859 PPCInstr* PPCInstr_Div ( Bool extended, Bool syned, Bool sz32,
865 i->Pin.Div.sz32 = sz32;
1567 i->Pin.Shft.sz32));
1588 i->Pin.Cmp.sz32 ? 'w' : 'd',
1604 i->Pin.MulL.sz32 ? 'w' : 'd',
1614 i->Pin.Div.sz32 ? 'w' : 'd',
3817 Bool sz32 = i->Pin.Shft.sz32;
3824 vassert(sz32);
3828 if (sz32) {
3860 if (sz32) {
3892 if (sz32) {
3953 Bool sz32 = i->Pin.Cmp.sz32;
3960 vassert(sz32);
3961 else if (!sz32) // mode64 && cmp64: set L=1
4017 Bool sz32 = i->Pin.MulL.sz32;
4023 vassert(sz32);
4027 if (sz32) {
4041 if (sz32) // mullw r_dst,r_srcL,r_srcR
4051 Bool sz32 = i->Pin.Div.sz32;
4057 vassert(sz32);
4060 if (sz32) {
4075 } else if (sz32) {