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

Side by Side Diff: src/arm/interface-descriptors-arm.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/arm/code-stubs-arm.cc ('k') | src/arm64/code-stubs-arm64.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/arm/interface-descriptors-arm.h" 5 #include "src/arm/interface-descriptors-arm.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 // static 109 // static
110 const Register ToLengthDescriptor::ReceiverRegister() { return r0; } 110 const Register ToLengthDescriptor::ReceiverRegister() { return r0; }
111 111
112 112
113 // static 113 // static
114 const Register ToStringDescriptor::ReceiverRegister() { return r0; } 114 const Register ToStringDescriptor::ReceiverRegister() { return r0; }
115 115
116 116
117 // static 117 // static
118 const Register ToNameDescriptor::ReceiverRegister() { return r0; }
119
120
121 // static
118 const Register ToObjectDescriptor::ReceiverRegister() { return r0; } 122 const Register ToObjectDescriptor::ReceiverRegister() { return r0; }
119 123
120 124
121 void NumberToStringDescriptor::InitializePlatformSpecific( 125 void NumberToStringDescriptor::InitializePlatformSpecific(
122 CallInterfaceDescriptorData* data) { 126 CallInterfaceDescriptorData* data) {
123 Register registers[] = {r0}; 127 Register registers[] = {r0};
124 data->InitializePlatformSpecific(arraysize(registers), registers); 128 data->InitializePlatformSpecific(arraysize(registers), registers);
125 } 129 }
126 130
127 131
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 r2, // address of first argument (argv) 460 r2, // address of first argument (argv)
457 r1 // the runtime function to call 461 r1 // the runtime function to call
458 }; 462 };
459 data->InitializePlatformSpecific(arraysize(registers), registers); 463 data->InitializePlatformSpecific(arraysize(registers), registers);
460 } 464 }
461 465
462 } // namespace internal 466 } // namespace internal
463 } // namespace v8 467 } // namespace v8
464 468
465 #endif // V8_TARGET_ARCH_ARM 469 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm64/code-stubs-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698