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

Side by Side Diff: src/arm64/interface-descriptors-arm64.cc

Issue 1622493002: [stubs] Introduce ToNameStub to implement %_ToName. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix BuildNumberToString type in Crankshaft. Created 4 years, 11 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/arm64/code-stubs-arm64.cc ('k') | src/code-factory.h » ('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/arm64/interface-descriptors-arm64.h" 5 #include "src/arm64/interface-descriptors-arm64.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 // static 110 // static
111 const Register ToLengthDescriptor::ReceiverRegister() { return x0; } 111 const Register ToLengthDescriptor::ReceiverRegister() { return x0; }
112 112
113 113
114 // static 114 // static
115 const Register ToStringDescriptor::ReceiverRegister() { return x0; } 115 const Register ToStringDescriptor::ReceiverRegister() { return x0; }
116 116
117 117
118 // static 118 // static
119 const Register ToNameDescriptor::ReceiverRegister() { return x0; }
120
121
122 // static
119 const Register ToObjectDescriptor::ReceiverRegister() { return x0; } 123 const Register ToObjectDescriptor::ReceiverRegister() { return x0; }
120 124
121 125
122 void NumberToStringDescriptor::InitializePlatformSpecific( 126 void NumberToStringDescriptor::InitializePlatformSpecific(
123 CallInterfaceDescriptorData* data) { 127 CallInterfaceDescriptorData* data) {
124 // x0: value 128 // x0: value
125 Register registers[] = {x0}; 129 Register registers[] = {x0};
126 data->InitializePlatformSpecific(arraysize(registers), registers); 130 data->InitializePlatformSpecific(arraysize(registers), registers);
127 } 131 }
128 132
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 x1 // the runtime function to call 494 x1 // the runtime function to call
491 }; 495 };
492 data->InitializePlatformSpecific(arraysize(registers), registers); 496 data->InitializePlatformSpecific(arraysize(registers), registers);
493 } 497 }
494 498
495 499
496 } // namespace internal 500 } // namespace internal
497 } // namespace v8 501 } // namespace v8
498 502
499 #endif // V8_TARGET_ARCH_ARM64 503 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/code-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698