| Index: src/x64/disasm-x64.cc
|
| ===================================================================
|
| --- src/x64/disasm-x64.cc (revision 7031)
|
| +++ src/x64/disasm-x64.cc (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2009 the V8 project authors. All rights reserved.
|
| +// Copyright 2011 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -1041,14 +1041,18 @@
|
| AppendToBuffer(", %s", NameOfXMMRegister(regop));
|
| } else {
|
| const char* mnemonic = "?";
|
| - if (opcode == 0x57) {
|
| + if (opcode == 0x50) {
|
| + mnemonic = "movmskpd";
|
| + } else if (opcode == 0x54) {
|
| + mnemonic = "andpd";
|
| + } else if (opcode == 0x56) {
|
| + mnemonic = "orpd";
|
| + } else if (opcode == 0x57) {
|
| mnemonic = "xorpd";
|
| } else if (opcode == 0x2E) {
|
| mnemonic = "ucomisd";
|
| } else if (opcode == 0x2F) {
|
| mnemonic = "comisd";
|
| - } else if (opcode == 0x50) {
|
| - mnemonic = "movmskpd";
|
| } else {
|
| UnimplementedInstruction();
|
| }
|
|
|