Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index d8c3972f8bc8d5eb4ccc2ae31b0ef15219bf77c4..9a1f181dbefa47014b2756eff581c87611720175 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -1273,6 +1273,7 @@ void LCodeGen::DoValueOf(LValueOf* instr) { |
Register result = ToRegister(instr->result()); |
Register map = ToRegister(instr->TempAt(0)); |
ASSERT(input.is(result)); |
+ |
Label done; |
// If the object is a smi return the object. |
__ JumpIfSmi(input, &done, Label::kNear); |
@@ -1286,6 +1287,36 @@ void LCodeGen::DoValueOf(LValueOf* instr) { |
} |
+void LCodeGen::DoDateField(LDateField* instr) { |
+ Register object = ToRegister(instr->InputAt(0)); |
+ Register result = ToRegister(instr->result()); |
+ Register scratch = ToRegister(instr->TempAt(0)); |
+ Smi* index = instr->index(); |
+ Label runtime, done; |
+ ASSERT(object.is(result)); |
+ ASSERT(object.is(eax)); |
+ if (index->value() == 0) { |
+ __ mov(result, FieldOperand(object, JSDate::kValueOffset)); |
+ } else { |
+ if (index->value() < JSDate::kFirstUncachedField) { |
+ ExternalReference stamp = ExternalReference::date_cache_stamp(isolate()); |
+ __ mov(scratch, Operand::StaticVariable(stamp)); |
+ __ cmp(scratch, FieldOperand(object, JSDate::kCacheStampOffset)); |
+ __ j(not_equal, &runtime, Label::kNear); |
+ __ mov(result, FieldOperand(object, JSDate::kValueOffset + |
+ kPointerSize * index->value())); |
+ __ jmp(&done); |
+ } |
+ __ bind(&runtime); |
+ __ PrepareCallCFunction(2, scratch); |
+ __ mov(Operand(esp, 0), object); |
+ __ mov(Operand(esp, 1 * kPointerSize), Immediate(index)); |
+ __ CallCFunction(ExternalReference::get_date_field_function(isolate()), 2); |
+ __ bind(&done); |
+ } |
+} |
+ |
+ |
void LCodeGen::DoBitNotI(LBitNotI* instr) { |
LOperand* input = instr->InputAt(0); |
ASSERT(input->Equals(instr->result())); |