| Index: src/full-codegen/mips/full-codegen-mips.cc
|
| diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc
|
| index c0077cca7f9ab372714843818e56693ef2a38e9f..859563984551b85b06e64a7b819ff8e68d8d1d0f 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
|
| @@ -2634,6 +2634,16 @@
|
| __ And(a1, a1,
|
| Operand((1 << Map::kIsCallable) | (1 << Map::kIsUndetectable)));
|
| Split(eq, a1, Operand(zero_reg), if_true, if_false, fall_through);
|
| +// clang-format off
|
| +#define SIMD128_TYPE(TYPE, Type, type, lane_count, lane_type) \
|
| + } else if (String::Equals(check, factory->type##_string())) { \
|
| + __ JumpIfSmi(v0, if_false); \
|
| + __ lw(v0, FieldMemOperand(v0, HeapObject::kMapOffset)); \
|
| + __ LoadRoot(at, Heap::k##Type##MapRootIndex); \
|
| + Split(eq, v0, Operand(at), if_true, if_false, fall_through);
|
| + SIMD128_TYPES(SIMD128_TYPE)
|
| +#undef SIMD128_TYPE
|
| + // clang-format on
|
| } else {
|
| if (if_false != fall_through) __ jmp(if_false);
|
| }
|
|
|