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

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

Issue 1319973007: [runtime] Add %ToString and %_ToString and remove the TO_STRING builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/builtins-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 #if V8_TARGET_ARCH_ARM 5 #if V8_TARGET_ARCH_ARM
6 6
7 #include "src/interface-descriptors.h" 7 #include "src/interface-descriptors.h"
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 93
94 void ToNumberDescriptor::InitializePlatformSpecific( 94 void ToNumberDescriptor::InitializePlatformSpecific(
95 CallInterfaceDescriptorData* data) { 95 CallInterfaceDescriptorData* data) {
96 Register registers[] = {r0}; 96 Register registers[] = {r0};
97 data->InitializePlatformSpecific(arraysize(registers), registers); 97 data->InitializePlatformSpecific(arraysize(registers), registers);
98 } 98 }
99 99
100 100
101 // static 101 // static
102 const Register ToStringDescriptor::ReceiverRegister() { return r0; }
103
104
105 // static
102 const Register ToObjectDescriptor::ReceiverRegister() { return r0; } 106 const Register ToObjectDescriptor::ReceiverRegister() { return r0; }
103 107
104 108
105 void NumberToStringDescriptor::InitializePlatformSpecific( 109 void NumberToStringDescriptor::InitializePlatformSpecific(
106 CallInterfaceDescriptorData* data) { 110 CallInterfaceDescriptorData* data) {
107 Register registers[] = {r0}; 111 Register registers[] = {r0};
108 data->InitializePlatformSpecific(arraysize(registers), registers); 112 data->InitializePlatformSpecific(arraysize(registers), registers);
109 } 113 }
110 114
111 115
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 r1, // math rounding function 392 r1, // math rounding function
389 r3, // vector slot id 393 r3, // vector slot id
390 r4, // type vector 394 r4, // type vector
391 }; 395 };
392 data->InitializePlatformSpecific(arraysize(registers), registers); 396 data->InitializePlatformSpecific(arraysize(registers), registers);
393 } 397 }
394 } // namespace internal 398 } // namespace internal
395 } // namespace v8 399 } // namespace v8
396 400
397 #endif // V8_TARGET_ARCH_ARM 401 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm64/builtins-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698