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

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

Issue 1901083002: [Interpreter] Introduce IncStub and DecStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 8 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 | « no previous file | src/arm64/interface-descriptors-arm64.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/arm/interface-descriptors-arm.h" 5 #include "src/arm/interface-descriptors-arm.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 data->InitializePlatformSpecific(arraysize(registers), registers); 310 data->InitializePlatformSpecific(arraysize(registers), registers);
311 } 311 }
312 312
313 313
314 void BinaryOpWithAllocationSiteDescriptor::InitializePlatformSpecific( 314 void BinaryOpWithAllocationSiteDescriptor::InitializePlatformSpecific(
315 CallInterfaceDescriptorData* data) { 315 CallInterfaceDescriptorData* data) {
316 Register registers[] = {r2, r1, r0}; 316 Register registers[] = {r2, r1, r0};
317 data->InitializePlatformSpecific(arraysize(registers), registers); 317 data->InitializePlatformSpecific(arraysize(registers), registers);
318 } 318 }
319 319
320 void CountOpDescriptor::InitializePlatformSpecific(
321 CallInterfaceDescriptorData* data) {
322 Register registers[] = {r1};
323 data->InitializePlatformSpecific(arraysize(registers), registers);
324 }
320 325
321 void StringAddDescriptor::InitializePlatformSpecific( 326 void StringAddDescriptor::InitializePlatformSpecific(
322 CallInterfaceDescriptorData* data) { 327 CallInterfaceDescriptorData* data) {
323 Register registers[] = {r1, r0}; 328 Register registers[] = {r1, r0};
324 data->InitializePlatformSpecific(arraysize(registers), registers); 329 data->InitializePlatformSpecific(arraysize(registers), registers);
325 } 330 }
326 331
327 332
328 void KeyedDescriptor::InitializePlatformSpecific( 333 void KeyedDescriptor::InitializePlatformSpecific(
329 CallInterfaceDescriptorData* data) { 334 CallInterfaceDescriptorData* data) {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 r1, // the JSGeneratorObject to resume 445 r1, // the JSGeneratorObject to resume
441 r2 // the resume mode (tagged) 446 r2 // the resume mode (tagged)
442 }; 447 };
443 data->InitializePlatformSpecific(arraysize(registers), registers); 448 data->InitializePlatformSpecific(arraysize(registers), registers);
444 } 449 }
445 450
446 } // namespace internal 451 } // namespace internal
447 } // namespace v8 452 } // namespace v8
448 453
449 #endif // V8_TARGET_ARCH_ARM 454 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm64/interface-descriptors-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698