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

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

Issue 1987183002: [stubs] Convert Internal/ArraySingleArgumentsConstructor to a TurboFan stub (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 4 years, 6 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/mips/interface-descriptors-mips.cc ('k') | src/mips64/interface-descriptors-mips64.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 #if V8_TARGET_ARCH_MIPS64 5 #if V8_TARGET_ARCH_MIPS64
6 6
7 #include "src/code-stubs.h" 7 #include "src/code-stubs.h"
8 #include "src/api-arguments.h" 8 #include "src/api-arguments.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 if (constant_stack_parameter_count == 0) { 46 if (constant_stack_parameter_count == 0) {
47 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, 47 descriptor->Initialize(deopt_handler, constant_stack_parameter_count,
48 JS_FUNCTION_STUB_MODE); 48 JS_FUNCTION_STUB_MODE);
49 } else { 49 } else {
50 descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count, 50 descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count,
51 JS_FUNCTION_STUB_MODE); 51 JS_FUNCTION_STUB_MODE);
52 } 52 }
53 } 53 }
54 54
55 55
56 void ArraySingleArgumentConstructorStub::InitializeDescriptor(
57 CodeStubDescriptor* descriptor) {
58 InitializeArrayConstructorDescriptor(isolate(), descriptor, 1);
59 }
60
61
62 void ArrayNArgumentsConstructorStub::InitializeDescriptor( 56 void ArrayNArgumentsConstructorStub::InitializeDescriptor(
63 CodeStubDescriptor* descriptor) { 57 CodeStubDescriptor* descriptor) {
64 InitializeArrayConstructorDescriptor(isolate(), descriptor, -1); 58 InitializeArrayConstructorDescriptor(isolate(), descriptor, -1);
65 } 59 }
66 60
67 61
68 void FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { 62 void FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) {
69 Address deopt_handler = Runtime::FunctionForId(Runtime::kArrayPush)->entry; 63 Address deopt_handler = Runtime::FunctionForId(Runtime::kArrayPush)->entry;
70 descriptor->Initialize(a0, deopt_handler, -1, JS_FUNCTION_STUB_MODE); 64 descriptor->Initialize(a0, deopt_handler, -1, JS_FUNCTION_STUB_MODE);
71 } 65 }
72 66
73 void InternalArraySingleArgumentConstructorStub::InitializeDescriptor(
74 CodeStubDescriptor* descriptor) {
75 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, 1);
76 }
77
78
79 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor( 67 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor(
80 CodeStubDescriptor* descriptor) { 68 CodeStubDescriptor* descriptor) {
81 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1); 69 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1);
82 } 70 }
83 71
84 72
85 #define __ ACCESS_MASM(masm) 73 #define __ ACCESS_MASM(masm)
86 74
87 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, 75 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow,
88 Condition cc); 76 Condition cc);
(...skipping 5569 matching lines...) Expand 10 before | Expand all | Expand 10 after
5658 kStackUnwindSpace, kInvalidStackOffset, 5646 kStackUnwindSpace, kInvalidStackOffset,
5659 return_value_operand, NULL); 5647 return_value_operand, NULL);
5660 } 5648 }
5661 5649
5662 #undef __ 5650 #undef __
5663 5651
5664 } // namespace internal 5652 } // namespace internal
5665 } // namespace v8 5653 } // namespace v8
5666 5654
5667 #endif // V8_TARGET_ARCH_MIPS64 5655 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/mips64/interface-descriptors-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698