| 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 d62177028fee1afb501084dbd24f73e2248f35c1..79c390fef10df2fe5ccc632ee1409ee365a9f0b1 100644
|
| --- a/src/full-codegen/mips/full-codegen-mips.cc
|
| +++ b/src/full-codegen/mips/full-codegen-mips.cc
|
| @@ -2985,28 +2985,6 @@ void FullCodeGenerator::EmitIsJSReceiver(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitIsSimdValue(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK(args->length() == 1);
|
| -
|
| - VisitForAccumulatorValue(args->at(0));
|
| -
|
| - Label materialize_true, materialize_false;
|
| - Label* if_true = NULL;
|
| - Label* if_false = NULL;
|
| - Label* fall_through = NULL;
|
| - context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
|
| - &if_false, &fall_through);
|
| -
|
| - __ JumpIfSmi(v0, if_false);
|
| - __ GetObjectType(v0, a1, a1);
|
| - PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| - Split(eq, a1, Operand(SIMD128_VALUE_TYPE), if_true, if_false, fall_through);
|
| -
|
| - context()->Plug(if_true, if_false);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitIsArray(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK(args->length() == 1);
|
|
|