Index: src/mips64/full-codegen-mips64.cc |
diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc |
index ef0590036e4299416a0e35bd2f3fa18b427c0df5..ac56219cea8edef17e99b7a208b93a44802e5027 100644 |
--- a/src/mips64/full-codegen-mips64.cc |
+++ b/src/mips64/full-codegen-mips64.cc |
@@ -3897,6 +3897,28 @@ void FullCodeGenerator::EmitValueOf(CallRuntime* expr) { |
} |
+void FullCodeGenerator::EmitThrowIfNotADate(CallRuntime* expr) { |
+ ZoneList<Expression*>* args = expr->arguments(); |
+ DCHECK_EQ(1, args->length()); |
+ |
+ VisitForAccumulatorValue(args->at(0)); // Load the object. |
+ |
+ Label done, not_date_object; |
+ Register object = v0; |
+ Register result = v0; |
+ Register scratch1 = a1; |
+ |
+ __ JumpIfSmi(object, ¬_date_object); |
+ __ GetObjectType(object, scratch1, scratch1); |
+ __ Branch(&done, eq, scratch1, Operand(JS_DATE_TYPE)); |
+ __ bind(¬_date_object); |
+ __ CallRuntime(Runtime::kThrowNotDateError, 0); |
+ |
+ __ bind(&done); |
+ context()->Plug(result); |
+} |
+ |
+ |
void FullCodeGenerator::EmitDateField(CallRuntime* expr) { |
ZoneList<Expression*>* args = expr->arguments(); |
DCHECK(args->length() == 2); |
@@ -3905,20 +3927,15 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) { |
VisitForAccumulatorValue(args->at(0)); // Load the object. |
- Label runtime, done, not_date_object; |
Register object = v0; |
Register result = v0; |
Register scratch0 = t1; |
Register scratch1 = a1; |
- __ JumpIfSmi(object, ¬_date_object); |
- __ GetObjectType(object, scratch1, scratch1); |
- __ Branch(¬_date_object, ne, scratch1, Operand(JS_DATE_TYPE)); |
- |
if (index->value() == 0) { |
__ ld(result, FieldMemOperand(object, JSDate::kValueOffset)); |
- __ jmp(&done); |
} else { |
+ Label runtime, done; |
if (index->value() < JSDate::kFirstUncachedField) { |
ExternalReference stamp = ExternalReference::date_cache_stamp(isolate()); |
__ li(scratch1, Operand(stamp)); |
@@ -3934,13 +3951,10 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) { |
__ li(a1, Operand(index)); |
__ Move(a0, object); |
__ CallCFunction(ExternalReference::get_date_field_function(isolate()), 2); |
- __ jmp(&done); |
+ __ bind(&done); |
} |
- __ bind(¬_date_object); |
- __ CallRuntime(Runtime::kThrowNotDateError, 0); |
- __ bind(&done); |
- context()->Plug(v0); |
+ context()->Plug(result); |
} |