Home | History | Annotate | Download | only in coregrind

Lines Matching defs:w1

940 static Bool looks_like_Thumb_call32 ( UShort w0, UShort w1 )
943 VG_(printf)("isT32call %04x %04x\n", (UInt)w0, (UInt)w1);
945 if ((w0 & 0xF800) == 0xF000 && (w1 & 0xC000) == 0xC000) return True;
947 if ((w0 & 0xF800) == 0xF000 && (w1 & 0xC000) == 0xC000) return True;
976 UShort w1 = in_same_page(ra, ra+2) ? *(UShort*)(ra+2) : 0;
977 if (looks_like_Thumb_call16(w1) || looks_like_Thumb_call32(w0,w1))