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

Side by Side Diff: src/ia32/interface-descriptors-ia32.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/ia32/code-stubs-ia32.cc ('k') | src/interface-descriptors.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 #if V8_TARGET_ARCH_IA32 5 #if V8_TARGET_ARCH_IA32
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[] = {eax}; 104 Register registers[] = {eax};
105 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); 105 data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
106 } 106 }
107 107
108 108
109 // static 109 // static
110 const Register ToStringDescriptor::ReceiverRegister() { return eax; }
111
112
113 // static
110 const Register ToObjectDescriptor::ReceiverRegister() { return eax; } 114 const Register ToObjectDescriptor::ReceiverRegister() { return eax; }
111 115
112 116
113 void NumberToStringDescriptor::InitializePlatformSpecific( 117 void NumberToStringDescriptor::InitializePlatformSpecific(
114 CallInterfaceDescriptorData* data) { 118 CallInterfaceDescriptorData* data) {
115 Register registers[] = {eax}; 119 Register registers[] = {eax};
116 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); 120 data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
117 } 121 }
118 122
119 123
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 edi, // math rounding function 377 edi, // math rounding function
374 edx, // vector slot id 378 edx, // vector slot id
375 ebx // type vector 379 ebx // type vector
376 }; 380 };
377 data->InitializePlatformSpecific(arraysize(registers), registers); 381 data->InitializePlatformSpecific(arraysize(registers), registers);
378 } 382 }
379 } // namespace internal 383 } // namespace internal
380 } // namespace v8 384 } // namespace v8
381 385
382 #endif // V8_TARGET_ARCH_IA32 386 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/interface-descriptors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698