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

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

Issue 2448463002: [regexp] Remove unused code (Closed)
Patch Set: Created 4 years, 1 month 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/mips/interface-descriptors-mips.cc ('k') | src/ppc/interface-descriptors-ppc.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_MIPS64 5 #if V8_TARGET_ARCH_MIPS64
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 void ConstructTrampolineDescriptor::InitializePlatformSpecific( 198 void ConstructTrampolineDescriptor::InitializePlatformSpecific(
199 CallInterfaceDescriptorData* data) { 199 CallInterfaceDescriptorData* data) {
200 // a1: target 200 // a1: target
201 // a3: new target 201 // a3: new target
202 // a0: number of arguments 202 // a0: number of arguments
203 Register registers[] = {a1, a3, a0}; 203 Register registers[] = {a1, a3, a0};
204 data->InitializePlatformSpecific(arraysize(registers), registers); 204 data->InitializePlatformSpecific(arraysize(registers), registers);
205 } 205 }
206 206
207 207
208 void RegExpConstructResultDescriptor::InitializePlatformSpecific(
209 CallInterfaceDescriptorData* data) {
210 Register registers[] = {a2, a1, a0};
211 data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
212 }
213
214
215 void TransitionElementsKindDescriptor::InitializePlatformSpecific( 208 void TransitionElementsKindDescriptor::InitializePlatformSpecific(
216 CallInterfaceDescriptorData* data) { 209 CallInterfaceDescriptorData* data) {
217 Register registers[] = {a0, a1}; 210 Register registers[] = {a0, a1};
218 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); 211 data->InitializePlatformSpecific(arraysize(registers), registers, NULL);
219 } 212 }
220 213
221 214
222 void AllocateHeapNumberDescriptor::InitializePlatformSpecific( 215 void AllocateHeapNumberDescriptor::InitializePlatformSpecific(
223 CallInterfaceDescriptorData* data) { 216 CallInterfaceDescriptorData* data) {
224 // register state 217 // register state
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 a1, // the JSGeneratorObject to resume 410 a1, // the JSGeneratorObject to resume
418 a2 // the resume mode (tagged) 411 a2 // the resume mode (tagged)
419 }; 412 };
420 data->InitializePlatformSpecific(arraysize(registers), registers); 413 data->InitializePlatformSpecific(arraysize(registers), registers);
421 } 414 }
422 415
423 } // namespace internal 416 } // namespace internal
424 } // namespace v8 417 } // namespace v8
425 418
426 #endif // V8_TARGET_ARCH_MIPS64 419 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/ppc/interface-descriptors-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698