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

Side by Side Diff: src/ia32/interface-descriptors-ia32.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/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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 // static 113 // static
114 const Register ToLengthDescriptor::ReceiverRegister() { return eax; } 114 const Register ToLengthDescriptor::ReceiverRegister() { return eax; }
115 115
116 116
117 // static 117 // static
118 const Register ToStringDescriptor::ReceiverRegister() { return eax; } 118 const Register ToStringDescriptor::ReceiverRegister() { return eax; }
119 119
120 120
121 // static 121 // static
122 const Register ToNameDescriptor::ReceiverRegister() { return eax; }
123
124
125 // static
122 const Register ToObjectDescriptor::ReceiverRegister() { return eax; } 126 const Register ToObjectDescriptor::ReceiverRegister() { return eax; }
123 127
124 128
125 void NumberToStringDescriptor::InitializePlatformSpecific( 129 void NumberToStringDescriptor::InitializePlatformSpecific(
126 CallInterfaceDescriptorData* data) { 130 CallInterfaceDescriptorData* data) {
127 Register registers[] = {eax}; 131 Register registers[] = {eax};
128 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); 132 data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
129 } 133 }
130 134
131 135
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 ecx, // address of first argument (argv) 441 ecx, // address of first argument (argv)
438 ebx // the runtime function to call 442 ebx // the runtime function to call
439 }; 443 };
440 data->InitializePlatformSpecific(arraysize(registers), registers); 444 data->InitializePlatformSpecific(arraysize(registers), registers);
441 } 445 }
442 446
443 } // namespace internal 447 } // namespace internal
444 } // namespace v8 448 } // namespace v8
445 449
446 #endif // V8_TARGET_ARCH_IA32 450 #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