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

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

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: rebase Created 3 years, 10 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/arm/macro-assembler-arm.cc ('k') | src/arm64/macro-assembler-arm64.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 #include "src/arm64/interface-descriptors-arm64.h" 5 #include "src/arm64/interface-descriptors-arm64.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 void ResumeGeneratorDescriptor::InitializePlatformSpecific( 461 void ResumeGeneratorDescriptor::InitializePlatformSpecific(
462 CallInterfaceDescriptorData* data) { 462 CallInterfaceDescriptorData* data) {
463 Register registers[] = { 463 Register registers[] = {
464 x0, // the value to pass to the generator 464 x0, // the value to pass to the generator
465 x1, // the JSGeneratorObject to resume 465 x1, // the JSGeneratorObject to resume
466 x2 // the resume mode (tagged) 466 x2 // the resume mode (tagged)
467 }; 467 };
468 data->InitializePlatformSpecific(arraysize(registers), registers); 468 data->InitializePlatformSpecific(arraysize(registers), registers);
469 } 469 }
470 470
471 void FrameDropperTrampolineDescriptor::InitializePlatformSpecific(
472 CallInterfaceDescriptorData* data) {
473 Register registers[] = {
474 x1, // loaded new FP
475 };
476 data->InitializePlatformSpecific(arraysize(registers), registers);
477 }
478
471 } // namespace internal 479 } // namespace internal
472 } // namespace v8 480 } // namespace v8
473 481
474 #endif // V8_TARGET_ARCH_ARM64 482 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/arm64/macro-assembler-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698