| Index: src/mips64/full-codegen-mips64.cc
|
| diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc
|
| index 099e4313de094ba8b164189ab88409767a04b3d8..79eec06c4053bcfaa975dfe5500a929541d681d8 100644
|
| --- a/src/mips64/full-codegen-mips64.cc
|
| +++ b/src/mips64/full-codegen-mips64.cc
|
| @@ -3416,6 +3416,32 @@ void FullCodeGenerator::EmitIsRegExp(CallRuntime* expr) {
|
| }
|
|
|
|
|
| +void FullCodeGenerator::EmitIsJSProxy(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);
|
| + Register map = a1;
|
| + Register type_reg = a2;
|
| + __ GetObjectType(v0, map, type_reg);
|
| + __ Subu(type_reg, type_reg, Operand(FIRST_JS_PROXY_TYPE));
|
| + PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| + Split(ls, type_reg, Operand(LAST_JS_PROXY_TYPE - FIRST_JS_PROXY_TYPE),
|
| + if_true, if_false, fall_through);
|
| +
|
| + context()->Plug(if_true, if_false);
|
| +}
|
| +
|
| +
|
| void FullCodeGenerator::EmitIsConstructCall(CallRuntime* expr) {
|
| DCHECK(expr->arguments()->length() == 0);
|
|
|
|
|