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

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

Issue 2209573002: Separate Scope into DeclarationScope and Scope (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Cleanup diff 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
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 #if V8_TARGET_ARCH_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/crankshaft/x64/lithium-codegen-x64.h" 7 #include "src/crankshaft/x64/lithium-codegen-x64.h"
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/code-factory.h" 10 #include "src/code-factory.h"
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 if (info()->saves_caller_doubles()) { 161 if (info()->saves_caller_doubles()) {
162 SaveCallerDoubles(); 162 SaveCallerDoubles();
163 } 163 }
164 } 164 }
165 return !is_aborted(); 165 return !is_aborted();
166 } 166 }
167 167
168 168
169 void LCodeGen::DoPrologue(LPrologue* instr) { 169 void LCodeGen::DoPrologue(LPrologue* instr) {
170 Comment(";;; Prologue begin"); 170 Comment(";;; Prologue begin");
171 DCHECK_EQ(scope(), info_->scope());
171 172
172 // Possibly allocate a local context. 173 // Possibly allocate a local context.
173 if (info_->scope()->num_heap_slots() > 0) { 174 if (info_->scope()->num_heap_slots() > 0) {
174 Comment(";;; Allocate local context"); 175 Comment(";;; Allocate local context");
175 bool need_write_barrier = true; 176 bool need_write_barrier = true;
176 // Argument to NewContext is the function, which is still in rdi. 177 // Argument to NewContext is the function, which is still in rdi.
177 int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 178 int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
178 Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt; 179 Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt;
179 if (info()->scope()->is_script_scope()) { 180 if (info()->scope()->is_script_scope()) {
180 __ Push(rdi); 181 __ Push(rdi);
181 __ Push(info()->scope()->GetScopeInfo(info()->isolate())); 182 __ Push(info()->scope()->GetScopeInfo(info()->isolate()));
182 __ CallRuntime(Runtime::kNewScriptContext); 183 __ CallRuntime(Runtime::kNewScriptContext);
183 deopt_mode = Safepoint::kLazyDeopt; 184 deopt_mode = Safepoint::kLazyDeopt;
184 } else { 185 } else {
185 FastNewFunctionContextStub stub(isolate()); 186 FastNewFunctionContextStub stub(isolate());
186 __ Set(FastNewFunctionContextDescriptor::SlotsRegister(), slots); 187 __ Set(FastNewFunctionContextDescriptor::SlotsRegister(), slots);
187 __ CallStub(&stub); 188 __ CallStub(&stub);
188 // Result of FastNewFunctionContextStub is always in new space. 189 // Result of FastNewFunctionContextStub is always in new space.
189 need_write_barrier = false; 190 need_write_barrier = false;
190 } 191 }
191 RecordSafepoint(deopt_mode); 192 RecordSafepoint(deopt_mode);
192 193
193 // Context is returned in rax. It replaces the context passed to us. 194 // Context is returned in rax. It replaces the context passed to us.
194 // It's saved in the stack and kept live in rsi. 195 // It's saved in the stack and kept live in rsi.
195 __ movp(rsi, rax); 196 __ movp(rsi, rax);
196 __ movp(Operand(rbp, StandardFrameConstants::kContextOffset), rax); 197 __ movp(Operand(rbp, StandardFrameConstants::kContextOffset), rax);
197 198
198 // Copy any necessary parameters into the context. 199 // Copy any necessary parameters into the context.
199 int num_parameters = scope()->num_parameters(); 200 int num_parameters = info_->scope()->num_parameters();
200 int first_parameter = scope()->has_this_declaration() ? -1 : 0; 201 int first_parameter = info_->scope()->has_this_declaration() ? -1 : 0;
201 for (int i = first_parameter; i < num_parameters; i++) { 202 for (int i = first_parameter; i < num_parameters; i++) {
202 Variable* var = (i == -1) ? scope()->receiver() : scope()->parameter(i); 203 Variable* var =
204 (i == -1) ? info_->scope()->receiver() : info_->scope()->parameter(i);
203 if (var->IsContextSlot()) { 205 if (var->IsContextSlot()) {
204 int parameter_offset = StandardFrameConstants::kCallerSPOffset + 206 int parameter_offset = StandardFrameConstants::kCallerSPOffset +
205 (num_parameters - 1 - i) * kPointerSize; 207 (num_parameters - 1 - i) * kPointerSize;
206 // Load parameter from stack. 208 // Load parameter from stack.
207 __ movp(rax, Operand(rbp, parameter_offset)); 209 __ movp(rax, Operand(rbp, parameter_offset));
208 // Store it in the context. 210 // Store it in the context.
209 int context_offset = Context::SlotOffset(var->index()); 211 int context_offset = Context::SlotOffset(var->index());
210 __ movp(Operand(rsi, context_offset), rax); 212 __ movp(Operand(rsi, context_offset), rax);
211 // Update the write barrier. This clobbers rax and rbx. 213 // Update the write barrier. This clobbers rax and rbx.
212 if (need_write_barrier) { 214 if (need_write_barrier) {
(...skipping 5353 matching lines...) Expand 10 before | Expand all | Expand 10 after
5566 __ bind(deferred->exit()); 5568 __ bind(deferred->exit());
5567 __ bind(&done); 5569 __ bind(&done);
5568 } 5570 }
5569 5571
5570 #undef __ 5572 #undef __
5571 5573
5572 } // namespace internal 5574 } // namespace internal
5573 } // namespace v8 5575 } // namespace v8
5574 5576
5575 #endif // V8_TARGET_ARCH_X64 5577 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698