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

Side by Side Diff: src/arm/code-stubs-arm.cc

Issue 1250563004: HydrogenCodeStubs consume stack arguments via descriptor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 5 years, 5 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 | « no previous file | src/arm/interface-descriptors-arm.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 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 15 matching lines...) Expand all
26 Isolate* isolate, CodeStubDescriptor* descriptor, 26 Isolate* isolate, CodeStubDescriptor* descriptor,
27 int constant_stack_parameter_count) { 27 int constant_stack_parameter_count) {
28 Address deopt_handler = Runtime::FunctionForId( 28 Address deopt_handler = Runtime::FunctionForId(
29 Runtime::kArrayConstructor)->entry; 29 Runtime::kArrayConstructor)->entry;
30 30
31 if (constant_stack_parameter_count == 0) { 31 if (constant_stack_parameter_count == 0) {
32 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, 32 descriptor->Initialize(deopt_handler, constant_stack_parameter_count,
33 JS_FUNCTION_STUB_MODE); 33 JS_FUNCTION_STUB_MODE);
34 } else { 34 } else {
35 descriptor->Initialize(r0, deopt_handler, constant_stack_parameter_count, 35 descriptor->Initialize(r0, deopt_handler, constant_stack_parameter_count,
36 JS_FUNCTION_STUB_MODE, PASS_ARGUMENTS); 36 JS_FUNCTION_STUB_MODE);
37 } 37 }
38 } 38 }
39 39
40 40
41 static void InitializeInternalArrayConstructorDescriptor( 41 static void InitializeInternalArrayConstructorDescriptor(
42 Isolate* isolate, CodeStubDescriptor* descriptor, 42 Isolate* isolate, CodeStubDescriptor* descriptor,
43 int constant_stack_parameter_count) { 43 int constant_stack_parameter_count) {
44 Address deopt_handler = Runtime::FunctionForId( 44 Address deopt_handler = Runtime::FunctionForId(
45 Runtime::kInternalArrayConstructor)->entry; 45 Runtime::kInternalArrayConstructor)->entry;
46 46
47 if (constant_stack_parameter_count == 0) { 47 if (constant_stack_parameter_count == 0) {
48 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, 48 descriptor->Initialize(deopt_handler, constant_stack_parameter_count,
49 JS_FUNCTION_STUB_MODE); 49 JS_FUNCTION_STUB_MODE);
50 } else { 50 } else {
51 descriptor->Initialize(r0, deopt_handler, constant_stack_parameter_count, 51 descriptor->Initialize(r0, deopt_handler, constant_stack_parameter_count,
52 JS_FUNCTION_STUB_MODE, PASS_ARGUMENTS); 52 JS_FUNCTION_STUB_MODE);
53 } 53 }
54 } 54 }
55 55
56 56
57 void ArrayNoArgumentConstructorStub::InitializeDescriptor( 57 void ArrayNoArgumentConstructorStub::InitializeDescriptor(
58 CodeStubDescriptor* descriptor) { 58 CodeStubDescriptor* descriptor) {
59 InitializeArrayConstructorDescriptor(isolate(), descriptor, 0); 59 InitializeArrayConstructorDescriptor(isolate(), descriptor, 0);
60 } 60 }
61 61
62 62
(...skipping 5316 matching lines...) Expand 10 before | Expand all | Expand 10 after
5379 MemOperand(fp, 6 * kPointerSize), NULL); 5379 MemOperand(fp, 6 * kPointerSize), NULL);
5380 } 5380 }
5381 5381
5382 5382
5383 #undef __ 5383 #undef __
5384 5384
5385 } // namespace internal 5385 } // namespace internal
5386 } // namespace v8 5386 } // namespace v8
5387 5387
5388 #endif // V8_TARGET_ARCH_ARM 5388 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/interface-descriptors-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698