Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index b654390c2b78c8bd7830bba2c36430aca0437833..0a130a1d01cb2dc050971f4242cdb79663a54b35 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -4573,30 +4573,46 @@ void StackCheckStub::Generate(MacroAssembler* masm) { |
} |
-void CallFunctionStub::FinishCode(Handle<Code> code) { |
- code->set_has_function_cache(RecordCallTarget()); |
-} |
- |
- |
-void CallFunctionStub::Clear(Heap* heap, Address address) { |
- ASSERT(Memory::uint8_at(address + kPointerSize) == Assembler::kTestEaxByte); |
- // 1 ~ size of the test eax opcode. |
- Object* cell = Memory::Object_at(address + kPointerSize + 1); |
- // Low-level because clearing happens during GC. |
- reinterpret_cast<JSGlobalPropertyCell*>(cell)->set_value( |
- RawUninitializedSentinel(heap)); |
-} |
+static void GenerateRecordCallTarget(MacroAssembler* masm) { |
+ // Cache the called function in a global property cell. Cache states |
+ // are uninitialized, monomorphic (indicated by a JSFunction), and |
+ // megamorphic. |
+ // ebx : cache cell for call target |
+ // edi : the function to call |
+ Isolate* isolate = masm->isolate(); |
+ Label initialize, done; |
+ |
+ // Load the cache state into ecx. |
+ __ mov(ecx, FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset)); |
+ |
+ // A monomorphic cache hit or an already megamorphic state: invoke the |
+ // function without changing the state. |
+ __ cmp(ecx, edi); |
+ __ j(equal, &done, Label::kNear); |
+ __ cmp(ecx, Immediate(TypeFeedbackCells::MegamorphicSentinel(isolate))); |
+ __ j(equal, &done, Label::kNear); |
+ |
+ // A monomorphic miss (i.e, here the cache is not uninitialized) goes |
+ // megamorphic. |
+ __ cmp(ecx, Immediate(TypeFeedbackCells::UninitializedSentinel(isolate))); |
+ __ j(equal, &initialize, Label::kNear); |
+ // MegamorphicSentinel is an immortal immovable object (undefined) so no |
+ // write-barrier is needed. |
+ __ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset), |
+ Immediate(TypeFeedbackCells::MegamorphicSentinel(isolate))); |
+ __ jmp(&done, Label::kNear); |
+ // An uninitialized cache is patched with the function. |
+ __ bind(&initialize); |
+ __ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset), edi); |
+ // No need for a write barrier here - cells are rescanned. |
-Object* CallFunctionStub::GetCachedValue(Address address) { |
- ASSERT(Memory::uint8_at(address + kPointerSize) == Assembler::kTestEaxByte); |
- // 1 ~ size of the test eax opcode. |
- Object* cell = Memory::Object_at(address + kPointerSize + 1); |
- return JSGlobalPropertyCell::cast(cell)->value(); |
+ __ bind(&done); |
} |
void CallFunctionStub::Generate(MacroAssembler* masm) { |
+ // ebx : cache cell for call target |
// edi : the function to call |
Isolate* isolate = masm->isolate(); |
Label slow, non_function; |
@@ -4613,9 +4629,9 @@ void CallFunctionStub::Generate(MacroAssembler* masm) { |
__ cmp(eax, isolate->factory()->the_hole_value()); |
__ j(not_equal, &receiver_ok, Label::kNear); |
// Patch the receiver on the stack with the global receiver object. |
- __ mov(ebx, GlobalObjectOperand()); |
- __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalReceiverOffset)); |
- __ mov(Operand(esp, (argc_ + 1) * kPointerSize), ebx); |
+ __ mov(ecx, GlobalObjectOperand()); |
+ __ mov(ecx, FieldOperand(ecx, GlobalObject::kGlobalReceiverOffset)); |
+ __ mov(Operand(esp, (argc_ + 1) * kPointerSize), ecx); |
__ bind(&receiver_ok); |
} |
@@ -4626,38 +4642,7 @@ void CallFunctionStub::Generate(MacroAssembler* masm) { |
__ j(not_equal, &slow); |
if (RecordCallTarget()) { |
- // Cache the called function in a global property cell in the |
- // instruction stream after the call. Cache states are uninitialized, |
- // monomorphic (indicated by a JSFunction), and megamorphic. |
- Label initialize, call; |
- // Load the cache cell address into ebx and the cache state into ecx. |
- __ mov(ebx, Operand(esp, 0)); // Return address. |
- __ mov(ebx, Operand(ebx, 1)); // 1 ~ sizeof 'test eax' opcode in bytes. |
- __ mov(ecx, FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset)); |
- |
- // A monomorphic cache hit or an already megamorphic state: invoke the |
- // function without changing the state. |
- __ cmp(ecx, edi); |
- __ j(equal, &call, Label::kNear); |
- __ cmp(ecx, Immediate(MegamorphicSentinel(isolate))); |
- __ j(equal, &call, Label::kNear); |
- |
- // A monomorphic miss (i.e, here the cache is not uninitialized) goes |
- // megamorphic. |
- __ cmp(ecx, Immediate(UninitializedSentinel(isolate))); |
- __ j(equal, &initialize, Label::kNear); |
- // MegamorphicSentinel is an immortal immovable object (undefined) so no |
- // write-barrier is needed. |
- __ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset), |
- Immediate(MegamorphicSentinel(isolate))); |
- __ jmp(&call, Label::kNear); |
- |
- // An uninitialized cache is patched with the function. |
- __ bind(&initialize); |
- __ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset), edi); |
- // No need for a write barrier here - cells are rescanned. |
- |
- __ bind(&call); |
+ GenerateRecordCallTarget(masm); |
} |
// Fast-case: Just invoke the function. |
@@ -4684,13 +4669,10 @@ void CallFunctionStub::Generate(MacroAssembler* masm) { |
__ bind(&slow); |
if (RecordCallTarget()) { |
// If there is a call target cache, mark it megamorphic in the |
- // non-function case. |
- __ mov(ebx, Operand(esp, 0)); |
- __ mov(ebx, Operand(ebx, 1)); |
- // MegamorphicSentinel is an immortal immovable object (undefined) so no |
- // write barrier is needed. |
+ // non-function case. MegamorphicSentinel is an immortal immovable |
+ // object (undefined) so no write barrier is needed. |
__ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset), |
- Immediate(MegamorphicSentinel(isolate))); |
+ Immediate(TypeFeedbackCells::MegamorphicSentinel(isolate))); |
} |
// Check for function proxy. |
__ CmpInstanceType(ecx, JS_FUNCTION_PROXY_TYPE); |
@@ -4720,6 +4702,50 @@ void CallFunctionStub::Generate(MacroAssembler* masm) { |
} |
+void CallConstructStub::Generate(MacroAssembler* masm) { |
+ // eax : number of arguments |
+ // ebx : cache cell for call target |
+ // edi : constructor function |
+ Label slow, non_function_call; |
+ |
+ // Check that function is not a smi. |
+ __ JumpIfSmi(edi, &non_function_call); |
+ // Check that function is a JSFunction. |
+ __ CmpObjectType(edi, JS_FUNCTION_TYPE, ecx); |
+ __ j(not_equal, &slow); |
+ |
+ if (RecordCallTarget()) { |
+ GenerateRecordCallTarget(masm); |
+ } |
+ |
+ // Jump to the function-specific construct stub. |
+ __ mov(ebx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset)); |
+ __ mov(ebx, FieldOperand(ebx, SharedFunctionInfo::kConstructStubOffset)); |
+ __ lea(ebx, FieldOperand(ebx, Code::kHeaderSize)); |
+ __ jmp(ebx); |
+ |
+ // edi: called object |
+ // eax: number of arguments |
+ // ecx: object map |
+ Label do_call; |
+ __ bind(&slow); |
+ __ CmpInstanceType(ecx, JS_FUNCTION_PROXY_TYPE); |
+ __ j(not_equal, &non_function_call); |
+ __ GetBuiltinEntry(edx, Builtins::CALL_FUNCTION_PROXY_AS_CONSTRUCTOR); |
+ __ jmp(&do_call); |
+ |
+ __ bind(&non_function_call); |
+ __ GetBuiltinEntry(edx, Builtins::CALL_NON_FUNCTION_AS_CONSTRUCTOR); |
+ __ bind(&do_call); |
+ // Set expected number of arguments to zero (not changing eax). |
+ __ Set(ebx, Immediate(0)); |
+ Handle<Code> arguments_adaptor = |
+ masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(); |
+ __ SetCallKind(ecx, CALL_AS_METHOD); |
+ __ jmp(arguments_adaptor, RelocInfo::CODE_TARGET); |
+} |
+ |
+ |
bool CEntryStub::NeedsImmovableCode() { |
return false; |
} |