Index: src/x64/stub-cache-x64.cc |
diff --git a/src/x64/stub-cache-x64.cc b/src/x64/stub-cache-x64.cc |
index bded4b97968eb90cc8b8a82a5f159a59023bc292..f06372f3b363a465b62c871d092e4c3a5f298185 100644 |
--- a/src/x64/stub-cache-x64.cc |
+++ b/src/x64/stub-cache-x64.cc |
@@ -768,9 +768,9 @@ void StubCompiler::GenerateKeyedLoadMissForceGeneric(MacroAssembler* masm) { |
// Both name_reg and receiver_reg are preserved on jumps to miss_label, |
// but may be destroyed if store is successful. |
void StubCompiler::GenerateStoreField(MacroAssembler* masm, |
- JSObject* object, |
+ Handle<JSObject> object, |
int index, |
- Map* transition, |
+ Handle<Map> transition, |
Register receiver_reg, |
Register name_reg, |
Register scratch, |
@@ -793,12 +793,12 @@ void StubCompiler::GenerateStoreField(MacroAssembler* masm, |
ASSERT(object->IsJSGlobalProxy() || !object->IsAccessCheckNeeded()); |
// Perform map transition for the receiver if necessary. |
- if ((transition != NULL) && (object->map()->unused_property_fields() == 0)) { |
+ if (!transition.is_null() && (object->map()->unused_property_fields() == 0)) { |
// The properties must be extended before we can store the value. |
// We jump to a runtime call that extends the properties array. |
__ pop(scratch); // Return address. |
__ push(receiver_reg); |
- __ Push(Handle<Map>(transition)); |
+ __ Push(transition); |
__ push(rax); |
__ push(scratch); |
__ TailCallExternalReference( |
@@ -809,11 +809,10 @@ void StubCompiler::GenerateStoreField(MacroAssembler* masm, |
return; |
} |
- if (transition != NULL) { |
+ if (!transition.is_null()) { |
// Update the map of the object; no write barrier updating is |
// needed because the map is never in new space. |
- __ Move(FieldOperand(receiver_reg, HeapObject::kMapOffset), |
- Handle<Map>(transition)); |
+ __ Move(FieldOperand(receiver_reg, HeapObject::kMapOffset), transition); |
} |
// Adjust for the number of properties stored in the object. Even in the |
@@ -2569,10 +2568,10 @@ MaybeObject* CallStubCompiler::CompileCallGlobal(JSObject* object, |
} |
-MaybeObject* StoreStubCompiler::CompileStoreField(JSObject* object, |
+Handle<Code> StoreStubCompiler::CompileStoreField(Handle<JSObject> object, |
int index, |
- Map* transition, |
- String* name) { |
+ Handle<Map> transition, |
+ Handle<String> name) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : name |
@@ -2582,12 +2581,7 @@ MaybeObject* StoreStubCompiler::CompileStoreField(JSObject* object, |
Label miss; |
// Generate store field code. Preserves receiver and name on jump to miss. |
- GenerateStoreField(masm(), |
- object, |
- index, |
- transition, |
- rdx, rcx, rbx, |
- &miss); |
+ GenerateStoreField(masm(), object, index, transition, rdx, rcx, rbx, &miss); |
// Handle store cache miss. |
__ bind(&miss); |
@@ -2595,7 +2589,7 @@ MaybeObject* StoreStubCompiler::CompileStoreField(JSObject* object, |
__ Jump(ic, RelocInfo::CODE_TARGET); |
// Return the generated code. |
- return GetCode(transition == NULL ? FIELD : MAP_TRANSITION, name); |
+ return GetCode(transition.is_null() ? FIELD : MAP_TRANSITION, name); |
} |
@@ -2645,7 +2639,7 @@ MaybeObject* StoreStubCompiler::CompileStoreCallback(JSObject* object, |
__ Jump(ic, RelocInfo::CODE_TARGET); |
// Return the generated code. |
- return GetCode(CALLBACKS, name); |
+ return TryGetCode(CALLBACKS, name); |
} |
@@ -2694,13 +2688,14 @@ MaybeObject* StoreStubCompiler::CompileStoreInterceptor(JSObject* receiver, |
__ Jump(ic, RelocInfo::CODE_TARGET); |
// Return the generated code. |
- return GetCode(INTERCEPTOR, name); |
+ return TryGetCode(INTERCEPTOR, name); |
} |
-MaybeObject* StoreStubCompiler::CompileStoreGlobal(GlobalObject* object, |
- JSGlobalPropertyCell* cell, |
- String* name) { |
+Handle<Code> StoreStubCompiler::CompileStoreGlobal( |
+ Handle<GlobalObject> object, |
+ Handle<JSGlobalPropertyCell> cell, |
+ Handle<String> name) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : name |
@@ -2715,7 +2710,7 @@ MaybeObject* StoreStubCompiler::CompileStoreGlobal(GlobalObject* object, |
__ j(not_equal, &miss); |
// Compute the cell operand to use. |
- __ Move(rbx, Handle<JSGlobalPropertyCell>(cell)); |
+ __ Move(rbx, cell); |
Operand cell_operand = FieldOperand(rbx, JSGlobalPropertyCell::kValueOffset); |
// Check that the value in the cell is not the hole. If it is, this |
@@ -2759,10 +2754,10 @@ MaybeObject* StoreStubCompiler::CompileStoreGlobal(GlobalObject* object, |
} |
-MaybeObject* KeyedStoreStubCompiler::CompileStoreField(JSObject* object, |
+Handle<Code> KeyedStoreStubCompiler::CompileStoreField(Handle<JSObject> object, |
int index, |
- Map* transition, |
- String* name) { |
+ Handle<Map> transition, |
+ Handle<String> name) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : key |
@@ -2775,16 +2770,11 @@ MaybeObject* KeyedStoreStubCompiler::CompileStoreField(JSObject* object, |
__ IncrementCounter(counters->keyed_store_field(), 1); |
// Check that the name has not changed. |
- __ Cmp(rcx, Handle<String>(name)); |
+ __ Cmp(rcx, name); |
__ j(not_equal, &miss); |
// Generate store field code. Preserves receiver and name on jump to miss. |
- GenerateStoreField(masm(), |
- object, |
- index, |
- transition, |
- rdx, rcx, rbx, |
- &miss); |
+ GenerateStoreField(masm(), object, index, transition, rdx, rcx, rbx, &miss); |
// Handle store cache miss. |
__ bind(&miss); |
@@ -2793,40 +2783,38 @@ MaybeObject* KeyedStoreStubCompiler::CompileStoreField(JSObject* object, |
__ Jump(ic, RelocInfo::CODE_TARGET); |
// Return the generated code. |
- return GetCode(transition == NULL ? FIELD : MAP_TRANSITION, name); |
+ return GetCode(transition.is_null() ? FIELD : MAP_TRANSITION, name); |
} |
-MaybeObject* KeyedStoreStubCompiler::CompileStoreElement(Map* receiver_map) { |
+Handle<Code> KeyedStoreStubCompiler::CompileStoreElement( |
+ Handle<Map> receiver_map) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : key |
// -- rdx : receiver |
// -- rsp[0] : return address |
// ----------------------------------- |
- Code* stub; |
+ |
ElementsKind elements_kind = receiver_map->elements_kind(); |
bool is_js_array = receiver_map->instance_type() == JS_ARRAY_TYPE; |
- MaybeObject* maybe_stub = |
- KeyedStoreElementStub(is_js_array, elements_kind).TryGetCode(); |
- if (!maybe_stub->To(&stub)) return maybe_stub; |
- __ DispatchMap(rdx, |
- Handle<Map>(receiver_map), |
- Handle<Code>(stub), |
- DO_SMI_CHECK); |
+ Handle<Code> stub = |
+ KeyedStoreElementStub(is_js_array, elements_kind).GetCode(); |
+ |
+ __ DispatchMap(rdx, receiver_map, stub, DO_SMI_CHECK); |
Handle<Code> ic = isolate()->builtins()->KeyedStoreIC_Miss(); |
__ jmp(ic, RelocInfo::CODE_TARGET); |
// Return the generated code. |
- return GetCode(NORMAL, NULL); |
+ return GetCode(NORMAL, factory()->empty_string()); |
} |
-MaybeObject* KeyedStoreStubCompiler::CompileStorePolymorphic( |
- MapList* receiver_maps, |
- CodeList* handler_stubs, |
- MapList* transitioned_maps) { |
+Handle<Code> KeyedStoreStubCompiler::CompileStorePolymorphic( |
+ MapHandleList* receiver_maps, |
+ CodeHandleList* handler_stubs, |
+ MapHandleList* transitioned_maps) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : key |
@@ -2840,17 +2828,14 @@ MaybeObject* KeyedStoreStubCompiler::CompileStorePolymorphic( |
int receiver_count = receiver_maps->length(); |
for (int i = 0; i < receiver_count; ++i) { |
// Check map and tail call if there's a match |
- Handle<Map> map(receiver_maps->at(i)); |
- __ Cmp(rdi, map); |
- if (transitioned_maps->at(i) == NULL) { |
- __ j(equal, Handle<Code>(handler_stubs->at(i)), RelocInfo::CODE_TARGET); |
+ __ Cmp(rdi, receiver_maps->at(i)); |
+ if (transitioned_maps->at(i).is_null()) { |
+ __ j(equal, handler_stubs->at(i), RelocInfo::CODE_TARGET); |
} else { |
Label next_map; |
__ j(not_equal, &next_map, Label::kNear); |
- __ movq(rbx, |
- Handle<Map>(transitioned_maps->at(i)), |
- RelocInfo::EMBEDDED_OBJECT); |
- __ jmp(Handle<Code>(handler_stubs->at(i)), RelocInfo::CODE_TARGET); |
+ __ movq(rbx, transitioned_maps->at(i), RelocInfo::EMBEDDED_OBJECT); |
+ __ jmp(handler_stubs->at(i), RelocInfo::CODE_TARGET); |
__ bind(&next_map); |
} |
} |
@@ -2860,7 +2845,7 @@ MaybeObject* KeyedStoreStubCompiler::CompileStorePolymorphic( |
__ jmp(ic, RelocInfo::CODE_TARGET); |
// Return the generated code. |
- return GetCode(NORMAL, NULL, MEGAMORPHIC); |
+ return GetCode(NORMAL, factory()->empty_string(), MEGAMORPHIC); |
} |