Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: src/ia32/builtins-ia32.cc

Issue 1460503008: [turbofan] Switch passing of new.target to register. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_turbofan-pass-new-target-6
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_IA32 5 #if V8_TARGET_ARCH_IA32
6 6
7 #include "src/code-factory.h" 7 #include "src/code-factory.h"
8 #include "src/codegen.h" 8 #include "src/codegen.h"
9 #include "src/deoptimizer.h" 9 #include "src/deoptimizer.h"
10 #include "src/full-codegen/full-codegen.h" 10 #include "src/full-codegen/full-codegen.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 __ bind(&argc); 68 __ bind(&argc);
69 __ add(eax, Immediate(num_extra_args + 1)); 69 __ add(eax, Immediate(num_extra_args + 1));
70 __ bind(&done_argc); 70 __ bind(&done_argc);
71 71
72 __ JumpToExternalReference(ExternalReference(id, masm->isolate())); 72 __ JumpToExternalReference(ExternalReference(id, masm->isolate()));
73 } 73 }
74 74
75 75
76 static void CallRuntimePassFunction( 76 static void CallRuntimePassFunction(
77 MacroAssembler* masm, Runtime::FunctionId function_id) { 77 MacroAssembler* masm, Runtime::FunctionId function_id) {
78 // ----------- S t a t e -------------
79 // -- edx : new target (preserved for callee)
80 // -- edi : target function (preserved for callee)
81 // -----------------------------------
82
78 FrameScope scope(masm, StackFrame::INTERNAL); 83 FrameScope scope(masm, StackFrame::INTERNAL);
79 // Push a copy of the function. 84 // Push a copy of the target function and the new target.
80 __ push(edi); 85 __ push(edi);
86 __ push(edx);
81 // Function is also the parameter to the runtime call. 87 // Function is also the parameter to the runtime call.
82 __ push(edi); 88 __ push(edi);
83 89
84 __ CallRuntime(function_id, 1); 90 __ CallRuntime(function_id, 1);
85 // Restore receiver. 91 // Restore target function and new target.
92 __ pop(edx);
86 __ pop(edi); 93 __ pop(edi);
87 } 94 }
88 95
89 96
90 static void GenerateTailCallToSharedCode(MacroAssembler* masm) { 97 static void GenerateTailCallToSharedCode(MacroAssembler* masm) {
91 __ mov(eax, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset)); 98 __ mov(eax, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
92 __ mov(eax, FieldOperand(eax, SharedFunctionInfo::kCodeOffset)); 99 __ mov(eax, FieldOperand(eax, SharedFunctionInfo::kCodeOffset));
93 __ lea(eax, FieldOperand(eax, Code::kHeaderSize)); 100 __ lea(eax, FieldOperand(eax, Code::kHeaderSize));
94 __ jmp(eax); 101 __ jmp(eax);
95 } 102 }
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 __ j(greater_equal, &loop); 338 __ j(greater_equal, &loop);
332 339
333 // Call the function. 340 // Call the function.
334 if (is_api_function) { 341 if (is_api_function) {
335 __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset)); 342 __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));
336 Handle<Code> code = 343 Handle<Code> code =
337 masm->isolate()->builtins()->HandleApiCallConstruct(); 344 masm->isolate()->builtins()->HandleApiCallConstruct();
338 __ call(code, RelocInfo::CODE_TARGET); 345 __ call(code, RelocInfo::CODE_TARGET);
339 } else { 346 } else {
340 ParameterCount actual(eax); 347 ParameterCount actual(eax);
341 __ InvokeFunction(edi, actual, CALL_FUNCTION, 348 __ InvokeFunction(edi, edx, actual, CALL_FUNCTION, NullCallWrapper());
342 NullCallWrapper());
343 } 349 }
344 350
345 // Store offset of return address for deoptimizer. 351 // Store offset of return address for deoptimizer.
346 if (create_implicit_receiver && !is_api_function) { 352 if (create_implicit_receiver && !is_api_function) {
347 masm->isolate()->heap()->SetConstructStubDeoptPCOffset(masm->pc_offset()); 353 masm->isolate()->heap()->SetConstructStubDeoptPCOffset(masm->pc_offset());
348 } 354 }
349 355
350 // Restore context from the frame. 356 // Restore context from the frame.
351 __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); 357 __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
352 358
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1527 // -- edx : the shared function info. 1533 // -- edx : the shared function info.
1528 // -- edi : the function to call (checked to be a JSFunction) 1534 // -- edi : the function to call (checked to be a JSFunction)
1529 // -- esi : the function context. 1535 // -- esi : the function context.
1530 // ----------------------------------- 1536 // -----------------------------------
1531 1537
1532 __ mov(ebx, 1538 __ mov(ebx,
1533 FieldOperand(edx, SharedFunctionInfo::kFormalParameterCountOffset)); 1539 FieldOperand(edx, SharedFunctionInfo::kFormalParameterCountOffset));
1534 __ SmiUntag(ebx); 1540 __ SmiUntag(ebx);
1535 ParameterCount actual(eax); 1541 ParameterCount actual(eax);
1536 ParameterCount expected(ebx); 1542 ParameterCount expected(ebx);
1537 __ InvokeCode(FieldOperand(edi, JSFunction::kCodeEntryOffset), expected, 1543 __ InvokeCode(FieldOperand(edi, JSFunction::kCodeEntryOffset), no_reg,
1538 actual, JUMP_FUNCTION, NullCallWrapper()); 1544 expected, actual, JUMP_FUNCTION, NullCallWrapper());
1539 1545
1540 // The function is a "classConstructor", need to raise an exception. 1546 // The function is a "classConstructor", need to raise an exception.
1541 __ bind(&class_constructor); 1547 __ bind(&class_constructor);
1542 { 1548 {
1543 FrameScope frame(masm, StackFrame::INTERNAL); 1549 FrameScope frame(masm, StackFrame::INTERNAL);
1544 __ CallRuntime(Runtime::kThrowConstructorNonCallableError, 0); 1550 __ CallRuntime(Runtime::kThrowConstructorNonCallableError, 0);
1545 } 1551 }
1546 } 1552 }
1547 1553
1548 1554
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 1863
1858 __ bind(&ok); 1864 __ bind(&ok);
1859 __ ret(0); 1865 __ ret(0);
1860 } 1866 }
1861 1867
1862 #undef __ 1868 #undef __
1863 } // namespace internal 1869 } // namespace internal
1864 } // namespace v8 1870 } // namespace v8
1865 1871
1866 #endif // V8_TARGET_ARCH_IA32 1872 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698