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

Side by Side Diff: src/x64/interface-descriptors-x64.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/x64/code-stubs-x64.cc ('k') | test/mjsunit/harmony/to-string.js » ('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_X64 5 #if V8_TARGET_ARCH_X64
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 void ToNumberDescriptor::InitializePlatformSpecific( 101 void ToNumberDescriptor::InitializePlatformSpecific(
102 CallInterfaceDescriptorData* data) { 102 CallInterfaceDescriptorData* data) {
103 // ToNumberStub invokes a function, and therefore needs a context. 103 // ToNumberStub invokes a function, and therefore needs a context.
104 Register registers[] = {rax}; 104 Register registers[] = {rax};
105 data->InitializePlatformSpecific(arraysize(registers), registers); 105 data->InitializePlatformSpecific(arraysize(registers), registers);
106 } 106 }
107 107
108 108
109 // static 109 // static
110 const Register ToStringDescriptor::ReceiverRegister() { return rax; }
111
112
113 // static
110 const Register ToObjectDescriptor::ReceiverRegister() { return rax; } 114 const Register ToObjectDescriptor::ReceiverRegister() { return rax; }
111 115
112 116
113 void NumberToStringDescriptor::InitializePlatformSpecific( 117 void NumberToStringDescriptor::InitializePlatformSpecific(
114 CallInterfaceDescriptorData* data) { 118 CallInterfaceDescriptorData* data) {
115 Register registers[] = {rax}; 119 Register registers[] = {rax};
116 data->InitializePlatformSpecific(arraysize(registers), registers); 120 data->InitializePlatformSpecific(arraysize(registers), registers);
117 } 121 }
118 122
119 123
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 rdi, // math rounding function 369 rdi, // math rounding function
366 rdx, // vector slot id 370 rdx, // vector slot id
367 rbx // type vector 371 rbx // type vector
368 }; 372 };
369 data->InitializePlatformSpecific(arraysize(registers), registers); 373 data->InitializePlatformSpecific(arraysize(registers), registers);
370 } 374 }
371 } // namespace internal 375 } // namespace internal
372 } // namespace v8 376 } // namespace v8
373 377
374 #endif // V8_TARGET_ARCH_X64 378 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/code-stubs-x64.cc ('k') | test/mjsunit/harmony/to-string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698