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

Side by Side Diff: src/crankshaft/arm64/lithium-codegen-arm64.cc

Issue 2177273002: Make FastNewFunctionContextStub take slots parameter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased Created 4 years, 4 months 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
« no previous file with comments | « src/crankshaft/arm/lithium-codegen-arm.cc ('k') | src/crankshaft/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" 5 #include "src/crankshaft/arm64/lithium-codegen-arm64.h"
6 6
7 #include "src/arm64/frames-arm64.h" 7 #include "src/arm64/frames-arm64.h"
8 #include "src/base/bits.h" 8 #include "src/base/bits.h"
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 Comment(";;; Allocate local context"); 587 Comment(";;; Allocate local context");
588 bool need_write_barrier = true; 588 bool need_write_barrier = true;
589 // Argument to NewContext is the function, which is in x1. 589 // Argument to NewContext is the function, which is in x1.
590 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 590 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
591 Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt; 591 Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt;
592 if (info()->scope()->is_script_scope()) { 592 if (info()->scope()->is_script_scope()) {
593 __ Mov(x10, Operand(info()->scope()->GetScopeInfo(info()->isolate()))); 593 __ Mov(x10, Operand(info()->scope()->GetScopeInfo(info()->isolate())));
594 __ Push(x1, x10); 594 __ Push(x1, x10);
595 __ CallRuntime(Runtime::kNewScriptContext); 595 __ CallRuntime(Runtime::kNewScriptContext);
596 deopt_mode = Safepoint::kLazyDeopt; 596 deopt_mode = Safepoint::kLazyDeopt;
597 } else if (slots <= FastNewFunctionContextStub::kMaximumSlots) { 597 } else {
598 FastNewFunctionContextStub stub(isolate(), slots); 598 FastNewFunctionContextStub stub(isolate());
599 __ Mov(FastNewFunctionContextDescriptor::SlotsRegister(), slots);
599 __ CallStub(&stub); 600 __ CallStub(&stub);
600 // Result of FastNewFunctionContextStub is always in new space. 601 // Result of FastNewFunctionContextStub is always in new space.
601 need_write_barrier = false; 602 need_write_barrier = false;
602 } else {
603 __ Push(x1);
604 __ CallRuntime(Runtime::kNewFunctionContext);
605 } 603 }
606 RecordSafepoint(deopt_mode); 604 RecordSafepoint(deopt_mode);
607 // Context is returned in x0. It replaces the context passed to us. It's 605 // Context is returned in x0. It replaces the context passed to us. It's
608 // saved in the stack and kept live in cp. 606 // saved in the stack and kept live in cp.
609 __ Mov(cp, x0); 607 __ Mov(cp, x0);
610 __ Str(x0, MemOperand(fp, StandardFrameConstants::kContextOffset)); 608 __ Str(x0, MemOperand(fp, StandardFrameConstants::kContextOffset));
611 // Copy any necessary parameters into the context. 609 // Copy any necessary parameters into the context.
612 int num_parameters = scope()->num_parameters(); 610 int num_parameters = scope()->num_parameters();
613 int first_parameter = scope()->has_this_declaration() ? -1 : 0; 611 int first_parameter = scope()->has_this_declaration() ? -1 : 0;
614 for (int i = first_parameter; i < num_parameters; i++) { 612 for (int i = first_parameter; i < num_parameters; i++) {
(...skipping 5084 matching lines...) Expand 10 before | Expand all | Expand 10 after
5699 // Index is equal to negated out of object property index plus 1. 5697 // Index is equal to negated out of object property index plus 1.
5700 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); 5698 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2));
5701 __ Ldr(result, FieldMemOperand(result, 5699 __ Ldr(result, FieldMemOperand(result,
5702 FixedArray::kHeaderSize - kPointerSize)); 5700 FixedArray::kHeaderSize - kPointerSize));
5703 __ Bind(deferred->exit()); 5701 __ Bind(deferred->exit());
5704 __ Bind(&done); 5702 __ Bind(&done);
5705 } 5703 }
5706 5704
5707 } // namespace internal 5705 } // namespace internal
5708 } // namespace v8 5706 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/arm/lithium-codegen-arm.cc ('k') | src/crankshaft/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698