Revision: 5484
Author: [email protected]
Date: Fri Sep 17 05:08:50 2010
Log: Add missing x87 instructions fisttp and fst to the disassembler.

Review URL: http://codereview.chromium.org/3408011
http://code.google.com/p/v8/source/detail?r=5484

Modified:
 /branches/bleeding_edge/src/ia32/disasm-ia32.cc

=======================================
--- /branches/bleeding_edge/src/ia32/disasm-ia32.cc     Mon Aug 16 04:18:42 2010
+++ /branches/bleeding_edge/src/ia32/disasm-ia32.cc     Fri Sep 17 05:08:50 2010
@@ -685,7 +685,8 @@

     case 0xDD: switch (regop) {
         case 0: mnem = "fld_d"; break;
-        case 2: mnem = "fstp"; break;
+        case 1: mnem = "fisttp_d"; break;
+        case 2: mnem = "fst_d"; break;
         case 3: mnem = "fstp_d"; break;
         default: UnimplementedInstruction();
       }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to