Home | History | Annotate | Download | only in priv

Lines Matching refs:sz32

597 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") :
773 PPCInstr* PPCInstr_Shft ( PPCShftOp op, Bool sz32,
778 i->Pin.Shft.sz32 = sz32;
795 PPCInstr* PPCInstr_Cmp ( Bool syned, Bool sz32,
800 i->Pin.Cmp.sz32 = sz32;
814 PPCInstr* PPCInstr_MulL ( Bool syned, Bool hi, Bool sz32,
820 i->Pin.MulL.sz32 = sz32;
829 PPCInstr* PPCInstr_Div ( Bool extended, Bool syned, Bool sz32,
835 i->Pin.Div.sz32 = sz32;
1484 i->Pin.Shft.sz32));
1505 i->Pin.Cmp.sz32 ? 'w' : 'd',
1521 i->Pin.MulL.sz32 ? 'w' : 'd',
1531 i->Pin.Div.sz32 ? 'w' : 'd',
3638 Bool sz32 = i->Pin.Shft.sz32;
3645 vassert(sz32);
3649 if (sz32) {
3681 if (sz32) {
3713 if (sz32) {
3774 Bool sz32 = i->Pin.Cmp.sz32;
3781 vassert(sz32);
3782 else if (!sz32) // mode64 && cmp64: set L=1
3838 Bool sz32 = i->Pin.MulL.sz32;
3844 vassert(sz32);
3848 if (sz32) {
3862 if (sz32) // mullw r_dst,r_srcL,r_srcR
3872 Bool sz32 = i->Pin.Div.sz32;
3878 vassert(sz32);
3881 if (sz32) {
3896 } else if (sz32) {