| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index a9b935d5b64a356298f89d32727bdd39ccc5866f..14905aa016a1067ca9832fd724ff125f1e4b4101 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -2088,9 +2088,7 @@ void InstructionSelector::VisitF32x4SConvertI32x4(Node* node) {
|
| void InstructionSelector::VisitF32x4UConvertI32x4(Node* node) {
|
| UNIMPLEMENTED();
|
| }
|
| -#endif // !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
|
|
|
| -#if !V8_TARGET_ARCH_ARM
|
| void InstructionSelector::VisitF32x4Abs(Node* node) { UNIMPLEMENTED(); }
|
|
|
| void InstructionSelector::VisitF32x4Neg(Node* node) { UNIMPLEMENTED(); }
|
| @@ -2124,7 +2122,7 @@ void InstructionSelector::VisitF32x4Ne(Node* node) { UNIMPLEMENTED(); }
|
| void InstructionSelector::VisitF32x4Lt(Node* node) { UNIMPLEMENTED(); }
|
|
|
| void InstructionSelector::VisitF32x4Le(Node* node) { UNIMPLEMENTED(); }
|
| -#endif // V8_TARGET_ARCH_ARM
|
| +#endif // V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
|
|
|
| #if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 && \
|
| !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
|
| @@ -2164,11 +2162,17 @@ void InstructionSelector::VisitI32x4ShrU(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_ARM && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
|
| void InstructionSelector::VisitI32x4SConvertF32x4(Node* node) {
|
| UNIMPLEMENTED();
|
| }
|
|
|
| +void InstructionSelector::VisitI32x4UConvertF32x4(Node* node) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +#endif // !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64
|
| +
|
| +#if !V8_TARGET_ARCH_ARM
|
| void InstructionSelector::VisitI32x4SConvertI16x8Low(Node* node) {
|
| UNIMPLEMENTED();
|
| }
|
| @@ -2183,10 +2187,6 @@ void InstructionSelector::VisitI32x4LtS(Node* node) { UNIMPLEMENTED(); }
|
|
|
| void InstructionSelector::VisitI32x4LeS(Node* node) { UNIMPLEMENTED(); }
|
|
|
| -void InstructionSelector::VisitI32x4UConvertF32x4(Node* node) {
|
| - UNIMPLEMENTED();
|
| -}
|
| -
|
| void InstructionSelector::VisitI32x4UConvertI16x8Low(Node* node) {
|
| UNIMPLEMENTED();
|
| }
|
|
|