Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index 14905aa016a1067ca9832fd724ff125f1e4b4101..735b50c66e51d91aa970702a79442a64d3f3c372 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -2198,31 +2198,19 @@ void InstructionSelector::VisitI32x4UConvertI16x8High(Node* node) { |
void InstructionSelector::VisitI32x4LtU(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitI32x4LeU(Node* node) { UNIMPLEMENTED(); } |
+#endif // !V8_TARGET_ARCH_ARM |
+#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
void InstructionSelector::VisitI16x8Splat(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitI16x8ExtractLane(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitI16x8ReplaceLane(Node* node) { UNIMPLEMENTED(); } |
-void InstructionSelector::VisitI16x8SConvertI8x16Low(Node* node) { |
- UNIMPLEMENTED(); |
-} |
- |
-void InstructionSelector::VisitI16x8SConvertI8x16High(Node* node) { |
- UNIMPLEMENTED(); |
-} |
- |
-void InstructionSelector::VisitI16x8Neg(Node* node) { UNIMPLEMENTED(); } |
- |
void InstructionSelector::VisitI16x8Shl(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitI16x8ShrS(Node* node) { UNIMPLEMENTED(); } |
-void InstructionSelector::VisitI16x8SConvertI32x4(Node* node) { |
- UNIMPLEMENTED(); |
-} |
- |
void InstructionSelector::VisitI16x8Add(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitI16x8AddSaturateS(Node* node) { |
@@ -2245,35 +2233,51 @@ void InstructionSelector::VisitI16x8Eq(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitI16x8Ne(Node* node) { UNIMPLEMENTED(); } |
-void InstructionSelector::VisitI16x8LtS(Node* node) { UNIMPLEMENTED(); } |
+void InstructionSelector::VisitI16x8ShrU(Node* node) { UNIMPLEMENTED(); } |
-void InstructionSelector::VisitI16x8LeS(Node* node) { UNIMPLEMENTED(); } |
+void InstructionSelector::VisitI16x8AddSaturateU(Node* node) { |
+ UNIMPLEMENTED(); |
+} |
-void InstructionSelector::VisitI16x8UConvertI8x16Low(Node* node) { |
+void InstructionSelector::VisitI16x8SubSaturateU(Node* node) { |
UNIMPLEMENTED(); |
} |
-void InstructionSelector::VisitI16x8UConvertI8x16High(Node* node) { |
+void InstructionSelector::VisitI16x8MinU(Node* node) { UNIMPLEMENTED(); } |
+ |
+void InstructionSelector::VisitI16x8MaxU(Node* node) { UNIMPLEMENTED(); } |
+#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
+ |
+#if !V8_TARGET_ARCH_ARM |
+void InstructionSelector::VisitI16x8Neg(Node* node) { UNIMPLEMENTED(); } |
+ |
+void InstructionSelector::VisitI16x8SConvertI32x4(Node* node) { |
UNIMPLEMENTED(); |
} |
-void InstructionSelector::VisitI16x8ShrU(Node* node) { UNIMPLEMENTED(); } |
+void InstructionSelector::VisitI16x8SConvertI8x16Low(Node* node) { |
+ UNIMPLEMENTED(); |
+} |
-void InstructionSelector::VisitI16x8UConvertI32x4(Node* node) { |
+void InstructionSelector::VisitI16x8UConvertI8x16Low(Node* node) { |
UNIMPLEMENTED(); |
} |
-void InstructionSelector::VisitI16x8AddSaturateU(Node* node) { |
+void InstructionSelector::VisitI16x8UConvertI8x16High(Node* node) { |
UNIMPLEMENTED(); |
} |
-void InstructionSelector::VisitI16x8SubSaturateU(Node* node) { |
+void InstructionSelector::VisitI16x8SConvertI8x16High(Node* node) { |
UNIMPLEMENTED(); |
} |
-void InstructionSelector::VisitI16x8MinU(Node* node) { UNIMPLEMENTED(); } |
+void InstructionSelector::VisitI16x8LtS(Node* node) { UNIMPLEMENTED(); } |
-void InstructionSelector::VisitI16x8MaxU(Node* node) { UNIMPLEMENTED(); } |
+void InstructionSelector::VisitI16x8LeS(Node* node) { UNIMPLEMENTED(); } |
+ |
+void InstructionSelector::VisitI16x8UConvertI32x4(Node* node) { |
+ UNIMPLEMENTED(); |
+} |
void InstructionSelector::VisitI16x8LtU(Node* node) { UNIMPLEMENTED(); } |
@@ -2370,9 +2374,11 @@ void InstructionSelector::VisitS32x4Select(Node* node) { UNIMPLEMENTED(); } |
#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && |
// !V8_TARGET_ARCH_MIPS64 |
-#if !V8_TARGET_ARCH_ARM |
+#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
void InstructionSelector::VisitS16x8Select(Node* node) { UNIMPLEMENTED(); } |
+#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
+#if !V8_TARGET_ARCH_ARM |
void InstructionSelector::VisitS8x16Select(Node* node) { UNIMPLEMENTED(); } |
void InstructionSelector::VisitS1x4And(Node* node) { UNIMPLEMENTED(); } |