You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This modification tries to solve issue #252: APP CRASH (1.5.0.1 okular)
It fails in instr_encode_check_reachability for instruction
0x00007f3aefba3682: movq 0x6115d7(%rip),%mm3 # 0x7f3af01b4c60
and is because a bug in mangle_rel_addr.
Register %mm3 is a 64 bit register but cannot be used in OP_mov_imm instr.
Fixed by
replace check register size with check if register is general register.
From [email protected] on January 25, 2010 01:55:54
This modification tries to solve issue #252: APP CRASH (1.5.0.1 okular)
It fails in instr_encode_check_reachability for instruction
0x00007f3aefba3682: movq 0x6115d7(%rip),%mm3 # 0x7f3af01b4c60
and is because a bug in mangle_rel_addr.
Register %mm3 is a 64 bit register but cannot be used in OP_mov_imm instr.
Fixed by
replace check register size with check if register is general register.
stats: 27 diff lines
Original issue: http://code.google.com/p/dynamorio/issues/detail?id=254
The text was updated successfully, but these errors were encountered: