| Index: src/x87/full-codegen-x87.cc
|
| diff --git a/src/x87/full-codegen-x87.cc b/src/x87/full-codegen-x87.cc
|
| index 603799d4e02af53823ccad66328e1d1795d7bc95..d9de70ee2379a61634baddc4097f12df13f17be2 100644
|
| --- a/src/x87/full-codegen-x87.cc
|
| +++ b/src/x87/full-codegen-x87.cc
|
| @@ -3796,25 +3796,25 @@ void FullCodeGenerator::EmitValueOf(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitThrowIfNotADate(CallRuntime* expr) {
|
| +void FullCodeGenerator::EmitIsDate(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK_EQ(1, args->length());
|
|
|
| - VisitForAccumulatorValue(args->at(0)); // Load the object.
|
| + VisitForAccumulatorValue(args->at(0));
|
|
|
| - Label done, not_date_object;
|
| - Register object = eax;
|
| - Register result = eax;
|
| - Register scratch = ecx;
|
| + Label materialize_true, materialize_false;
|
| + Label* if_true = nullptr;
|
| + Label* if_false = nullptr;
|
| + Label* fall_through = nullptr;
|
| + context()->PrepareTest(&materialize_true, &materialize_false, &if_true,
|
| + &if_false, &fall_through);
|
|
|
| - __ JumpIfSmi(object, ¬_date_object, Label::kNear);
|
| - __ CmpObjectType(object, JS_DATE_TYPE, scratch);
|
| - __ j(equal, &done, Label::kNear);
|
| - __ bind(¬_date_object);
|
| - __ CallRuntime(Runtime::kThrowNotDateError, 0);
|
| + __ JumpIfSmi(eax, if_false);
|
| + __ CmpObjectType(eax, JS_DATE_TYPE, ebx);
|
| + PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| + Split(equal, if_true, if_false, fall_through);
|
|
|
| - __ bind(&done);
|
| - context()->Plug(result);
|
| + context()->Plug(if_true, if_false);
|
| }
|
|
|
|
|
|
|