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

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

Issue 1114563003: Optimize the typeof operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 5 years, 7 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/full-codegen-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.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/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_IA32 7 #if V8_TARGET_ARCH_IA32
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 data->Initialize(arraysize(registers), registers, NULL); 79 data->Initialize(arraysize(registers), registers, NULL);
80 } 80 }
81 81
82 82
83 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) { 83 void NumberToStringDescriptor::Initialize(CallInterfaceDescriptorData* data) {
84 Register registers[] = {esi, eax}; 84 Register registers[] = {esi, eax};
85 data->Initialize(arraysize(registers), registers, NULL); 85 data->Initialize(arraysize(registers), registers, NULL);
86 } 86 }
87 87
88 88
89 void TypeofDescriptor::Initialize(CallInterfaceDescriptorData* data) {
90 Register registers[] = {esi, ebx};
91 data->Initialize(arraysize(registers), registers, NULL);
92 }
93
94
89 void FastCloneShallowArrayDescriptor::Initialize( 95 void FastCloneShallowArrayDescriptor::Initialize(
90 CallInterfaceDescriptorData* data) { 96 CallInterfaceDescriptorData* data) {
91 Register registers[] = {esi, eax, ebx, ecx}; 97 Register registers[] = {esi, eax, ebx, ecx};
92 Representation representations[] = { 98 Representation representations[] = {
93 Representation::Tagged(), Representation::Tagged(), Representation::Smi(), 99 Representation::Tagged(), Representation::Tagged(), Representation::Smi(),
94 Representation::Tagged()}; 100 Representation::Tagged()};
95 data->Initialize(arraysize(registers), registers, representations); 101 data->Initialize(arraysize(registers), registers, representations);
96 } 102 }
97 103
98 104
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 Representation::Tagged(), // call_data 367 Representation::Tagged(), // call_data
362 Representation::Tagged(), // holder 368 Representation::Tagged(), // holder
363 Representation::External(), // api_function_address 369 Representation::External(), // api_function_address
364 }; 370 };
365 data->Initialize(arraysize(registers), registers, representations); 371 data->Initialize(arraysize(registers), registers, representations);
366 } 372 }
367 } 373 }
368 } // namespace v8::internal 374 } // namespace v8::internal
369 375
370 #endif // V8_TARGET_ARCH_IA32 376 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698