Chromium Code Reviews| Index: src/compiler/instruction-selector.cc |
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
| index 645dc719e2c16639cc29a0ef9280de68283a0ef3..c1ec377673299277dd908af10371e3dd4ce563f7 100644 |
| --- a/src/compiler/instruction-selector.cc |
| +++ b/src/compiler/instruction-selector.cc |
| @@ -2110,7 +2110,8 @@ void InstructionSelector::VisitI32x4Sub(Node* node) { UNIMPLEMENTED(); } |
| #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_IA32 && |
| // !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_MIPS64 |
| -#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| +#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && \ |
| + !V8_TARGET_ARCH_MIPS64 |
|
ivica.bogosavljevic
2017/04/05 13:00:53
What will happen if MIPS architecture doesn't supp
dusan.simicic
2017/04/05 13:36:32
If MSA instructions are not supported, SIMD operat
|
| void InstructionSelector::VisitI32x4Shl(Node* node) { UNIMPLEMENTED(); } |
| void InstructionSelector::VisitI32x4ShrS(Node* node) { UNIMPLEMENTED(); } |
| @@ -2130,7 +2131,8 @@ void InstructionSelector::VisitI32x4MinU(Node* node) { UNIMPLEMENTED(); } |
| void InstructionSelector::VisitI32x4MaxU(Node* node) { UNIMPLEMENTED(); } |
| void InstructionSelector::VisitI32x4ShrU(Node* node) { UNIMPLEMENTED(); } |
| -#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| +#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && |
| + // !V8_TARGET_ARCH_MIPS64 |
| #if !V8_TARGET_ARCH_ARM |
| void InstructionSelector::VisitI32x4SConvertF32x4(Node* node) { |
| @@ -2284,9 +2286,11 @@ void InstructionSelector::VisitS1x16Zero(Node* node) { UNIMPLEMENTED(); } |
| #endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && |
| // !V8_TARGET_ARCH_MIPS64 |
| -#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| +#if !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && \ |
| + !V8_TARGET_ARCH_MIPS64 |
| void InstructionSelector::VisitS32x4Select(Node* node) { UNIMPLEMENTED(); } |
| -#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM |
| +#endif // !V8_TARGET_ARCH_X64 && !V8_TARGET_ARCH_ARM && !V8_TARGET_ARCH_MIPS && |
| + // !V8_TARGET_ARCH_MIPS64 |
| #if !V8_TARGET_ARCH_ARM |
| void InstructionSelector::VisitS16x8Select(Node* node) { UNIMPLEMENTED(); } |