Index: test/cctest/test-disasm-ia32.cc |
diff --git a/test/cctest/test-disasm-ia32.cc b/test/cctest/test-disasm-ia32.cc |
index 2d6e6bcd5a3e75a8b3f7ecd48893c32de2261187..777f004e8c3d152b80b2c0a413211a0eae1db6c7 100644 |
--- a/test/cctest/test-disasm-ia32.cc |
+++ b/test/cctest/test-disasm-ia32.cc |
@@ -462,9 +462,6 @@ TEST(DisasmIa320) { |
__ psllq(xmm0, xmm1); |
__ psrlq(xmm0, 17); |
__ psrlq(xmm0, xmm1); |
- __ por(xmm0, xmm1); |
- |
- __ pcmpeqd(xmm1, xmm0); |
__ punpckldq(xmm1, xmm6); |
__ punpckhdq(xmm7, xmm5); |
@@ -506,6 +503,13 @@ TEST(DisasmIa320) { |
__ pextrd(eax, xmm0, 1); |
__ pinsrd(xmm1, eax, 0); |
__ extractps(eax, xmm1, 0); |
+ |
+#define EMIT_SSE4_INSTR(instruction, notUsed1, notUsed2, notUsed3, notUsed4) \ |
+ __ instruction(xmm5, xmm1); \ |
+ __ instruction(xmm5, Operand(edx, 4)); |
+ |
+ SSE4_INSTRUCTION_LIST(EMIT_SSE4_INSTR) |
+#undef EMIT_SSE4_INSTR |
} |
} |
@@ -555,6 +559,14 @@ TEST(DisasmIa320) { |
SSE2_INSTRUCTION_LIST(EMIT_SSE2_AVXINSTR) |
#undef EMIT_SSE2_AVXINSTR |
+ |
+#define EMIT_SSE4_AVXINSTR(instruction, notUsed1, notUsed2, notUsed3, \ |
+ notUsed4) \ |
+ __ v##instruction(xmm7, xmm5, xmm1); \ |
+ __ v##instruction(xmm7, xmm5, Operand(edx, 4)); |
+ |
+ SSE4_INSTRUCTION_LIST(EMIT_SSE4_AVXINSTR) |
+#undef EMIT_SSE4_AVXINSTR |
} |
} |