Index: src/x64/builtins-x64.cc |
diff --git a/src/x64/builtins-x64.cc b/src/x64/builtins-x64.cc |
index ba7647bf307bd9cdebe8b3d27d3069d74fb50aa1..ab01fbb4fefa88c63a6cd68cbdc6386a85e0ab6f 100644 |
--- a/src/x64/builtins-x64.cc |
+++ b/src/x64/builtins-x64.cc |
@@ -1287,8 +1287,7 @@ static void AllocateJSArray(MacroAssembler* masm, |
// entering the generic code. In both cases argc in rax needs to be preserved. |
// Both registers are preserved by this code so no need to differentiate between |
// a construct call and a normal call. |
-static void ArrayNativeCode(MacroAssembler* masm, |
- Label* call_generic_code) { |
+void ArrayNativeCode(MacroAssembler* masm, Label* call_generic_code) { |
Label argc_one_or_more, argc_two_or_more, empty_array, not_empty_array, |
has_non_smi_element, finish, cant_transition_map, not_double; |
@@ -1522,7 +1521,7 @@ void Builtins::Generate_ArrayCode(MacroAssembler* masm) { |
} |
-void Builtins::Generate_ArrayConstructCode(MacroAssembler* masm) { |
+void Builtins::Generate_CommonArrayConstructCode(MacroAssembler* masm) { |
// ----------- S t a t e ------------- |
// -- rax : argc |
// -- rdi : constructor |
@@ -1541,53 +1540,21 @@ void Builtins::Generate_ArrayConstructCode(MacroAssembler* masm) { |
__ Check(not_smi, "Unexpected initial map for Array function"); |
__ CmpObjectType(rcx, MAP_TYPE, rcx); |
__ Check(equal, "Unexpected initial map for Array function"); |
- |
- if (FLAG_optimize_constructed_arrays) { |
- // We should either have undefined in ebx or a valid jsglobalpropertycell |
- Label okay_here; |
- Handle<Object> undefined_sentinel( |
- masm->isolate()->factory()->undefined_value()); |
- Handle<Map> global_property_cell_map( |
- masm->isolate()->heap()->global_property_cell_map()); |
- __ Cmp(rbx, undefined_sentinel); |
- __ j(equal, &okay_here); |
- __ Cmp(FieldOperand(rbx, 0), global_property_cell_map); |
- __ Assert(equal, "Expected property cell in register rbx"); |
- __ bind(&okay_here); |
- } |
} |
- if (FLAG_optimize_constructed_arrays) { |
- Label not_zero_case, not_one_case; |
- __ testq(rax, rax); |
- __ j(not_zero, ¬_zero_case); |
- ArrayNoArgumentConstructorStub no_argument_stub; |
- __ TailCallStub(&no_argument_stub); |
- |
- __ bind(¬_zero_case); |
- __ cmpq(rax, Immediate(1)); |
- __ j(greater, ¬_one_case); |
- ArraySingleArgumentConstructorStub single_argument_stub; |
- __ TailCallStub(&single_argument_stub); |
- |
- __ bind(¬_one_case); |
- ArrayNArgumentsConstructorStub n_argument_stub; |
- __ TailCallStub(&n_argument_stub); |
- } else { |
- Label generic_constructor; |
- // Run the native code for the Array function called as constructor. |
- ArrayNativeCode(masm, &generic_constructor); |
- |
- // Jump to the generic construct code in case the specialized code cannot |
- // handle the construction. |
- __ bind(&generic_constructor); |
- Handle<Code> generic_construct_stub = |
- masm->isolate()->builtins()->JSConstructStubGeneric(); |
- __ Jump(generic_construct_stub, RelocInfo::CODE_TARGET); |
- } |
+ Label generic_constructor; |
+ // Run the native code for the Array function called as constructor. |
+ ArrayNativeCode(masm, &generic_constructor); |
+ // Jump to the generic construct code in case the specialized code cannot |
+ // handle the construction. |
+ __ bind(&generic_constructor); |
+ Handle<Code> generic_construct_stub = |
+ masm->isolate()->builtins()->JSConstructStubGeneric(); |
+ __ Jump(generic_construct_stub, RelocInfo::CODE_TARGET); |
} |
+ |
void Builtins::Generate_StringConstructCode(MacroAssembler* masm) { |
// ----------- S t a t e ------------- |
// -- rax : number of arguments |