mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
Add SQRTSS: square root of scalar float
MERGE TO STABLE git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1959
This commit is contained in:
parent
e188968404
commit
660e549669
@ -4622,6 +4622,15 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
|
||||
goto decode_success;
|
||||
}
|
||||
|
||||
/* SQRTSS: square root of scalar float. */
|
||||
if (insn[0] == 0xF3 && insn[1] == 0x0F && insn[2] == 0x51) {
|
||||
vg_assert(sz == 4);
|
||||
eip = dis_SSE3_reg_or_mem ( cb, sorb, eip+3, 4,
|
||||
"sqrtss",
|
||||
insn[0], insn[1], insn[2] );
|
||||
goto decode_success;
|
||||
}
|
||||
|
||||
/* MOVLPS -- 8-byte load/store. How is this different from MOVLPS
|
||||
? */
|
||||
if (insn[0] == 0x0F
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user