| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index bf2630b94474f1f06ce0a63654f6a6fd13122ab6..026a310b08fb626e171cd4efd6887b4604d3153a 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -1694,6 +1694,7 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) {
|
| Immediate(isolate()->factory()->heap_number_map()));
|
| __ j(equal, &generic_heap_number_comparison, Label::kNear);
|
| if (cc != equal) {
|
| + Label not_simd;
|
| __ mov(ecx, FieldOperand(eax, HeapObject::kMapOffset));
|
| __ movzx_b(ecx, FieldOperand(ecx, Map::kInstanceTypeOffset));
|
| // Call runtime on identical JSObjects. Otherwise return equal.
|
| @@ -1703,8 +1704,11 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) {
|
| __ cmpb(ecx, static_cast<uint8_t>(SYMBOL_TYPE));
|
| __ j(equal, &runtime_call, Label::kFar);
|
| // Call runtime on identical SIMD values since we must throw a TypeError.
|
| - __ cmpb(ecx, static_cast<uint8_t>(FLOAT32X4_TYPE));
|
| - __ j(equal, &runtime_call, Label::kFar);
|
| + __ cmpb(ecx, static_cast<uint8_t>(FIRST_SIMD_VALUE_TYPE));
|
| + __ j(less, ¬_simd, Label::kFar);
|
| + __ cmpb(ecx, static_cast<uint8_t>(LAST_SIMD_VALUE_TYPE));
|
| + __ j(less_equal, &runtime_call, Label::kFar);
|
| + __ bind(¬_simd);
|
| if (is_strong(strength())) {
|
| // We have already tested for smis and heap numbers, so if both
|
| // arguments are not strings we must proceed to the slow case.
|
|
|