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

Side by Side Diff: src/full-codegen/s390/full-codegen-s390.cc

Issue 2200263003: PPC/s390: Make FastNewFunctionContextStub take slots parameter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/full-codegen/ppc/full-codegen-ppc.cc ('k') | src/ppc/interface-descriptors-ppc.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_S390 5 #if V8_TARGET_ARCH_S390
6 6
7 #include "src/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 __ Push(info->scope()->GetScopeInfo(info->isolate())); 188 __ Push(info->scope()->GetScopeInfo(info->isolate()));
189 __ CallRuntime(Runtime::kNewScriptContext); 189 __ CallRuntime(Runtime::kNewScriptContext);
190 PrepareForBailoutForId(BailoutId::ScriptContext(), 190 PrepareForBailoutForId(BailoutId::ScriptContext(),
191 BailoutState::TOS_REGISTER); 191 BailoutState::TOS_REGISTER);
192 // The new target value is not used, clobbering is safe. 192 // The new target value is not used, clobbering is safe.
193 DCHECK_NULL(info->scope()->new_target_var()); 193 DCHECK_NULL(info->scope()->new_target_var());
194 } else { 194 } else {
195 if (info->scope()->new_target_var() != nullptr) { 195 if (info->scope()->new_target_var() != nullptr) {
196 __ push(r5); // Preserve new target. 196 __ push(r5); // Preserve new target.
197 } 197 }
198 if (slots <= FastNewFunctionContextStub::kMaximumSlots) { 198 FastNewFunctionContextStub stub(isolate());
199 FastNewFunctionContextStub stub(isolate(), slots); 199 __ mov(FastNewFunctionContextDescriptor::SlotsRegister(), Operand(slots));
200 __ CallStub(&stub); 200 __ CallStub(&stub);
201 // Result of FastNewFunctionContextStub is always in new space. 201 // Result of FastNewFunctionContextStub is always in new space.
202 need_write_barrier = false; 202 need_write_barrier = false;
203 } else {
204 __ push(r3);
205 __ CallRuntime(Runtime::kNewFunctionContext);
206 }
207 if (info->scope()->new_target_var() != nullptr) { 203 if (info->scope()->new_target_var() != nullptr) {
208 __ pop(r5); // Preserve new target. 204 __ pop(r5); // Preserve new target.
209 } 205 }
210 } 206 }
211 function_in_register_r3 = false; 207 function_in_register_r3 = false;
212 // Context is returned in r2. It replaces the context passed to us. 208 // Context is returned in r2. It replaces the context passed to us.
213 // It's saved in the stack and kept live in cp. 209 // It's saved in the stack and kept live in cp.
214 __ LoadRR(cp, r2); 210 __ LoadRR(cp, r2);
215 __ StoreP(r2, MemOperand(fp, StandardFrameConstants::kContextOffset)); 211 __ StoreP(r2, MemOperand(fp, StandardFrameConstants::kContextOffset));
216 // Copy any necessary parameters into the context. 212 // Copy any necessary parameters into the context.
(...skipping 3460 matching lines...) Expand 10 before | Expand all | Expand 10 after
3677 DCHECK(kOSRBranchInstruction == br_instr); 3673 DCHECK(kOSRBranchInstruction == br_instr);
3678 3674
3679 DCHECK(interrupt_address == 3675 DCHECK(interrupt_address ==
3680 isolate->builtins()->OnStackReplacement()->entry()); 3676 isolate->builtins()->OnStackReplacement()->entry());
3681 return ON_STACK_REPLACEMENT; 3677 return ON_STACK_REPLACEMENT;
3682 } 3678 }
3683 3679
3684 } // namespace internal 3680 } // namespace internal
3685 } // namespace v8 3681 } // namespace v8
3686 #endif // V8_TARGET_ARCH_S390 3682 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/full-codegen/ppc/full-codegen-ppc.cc ('k') | src/ppc/interface-descriptors-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698