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

Side by Side Diff: src/ppc/macro-assembler-ppc.h

Issue 2663453004: PPC/s390: [liveedit] reimplement frame restarting. (Closed)
Patch Set: 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/ppc/interface-descriptors-ppc.cc ('k') | src/ppc/macro-assembler-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_PPC_MACRO_ASSEMBLER_PPC_H_ 5 #ifndef V8_PPC_MACRO_ASSEMBLER_PPC_H_
6 #define V8_PPC_MACRO_ASSEMBLER_PPC_H_ 6 #define V8_PPC_MACRO_ASSEMBLER_PPC_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 const CallWrapper& call_wrapper); 632 const CallWrapper& call_wrapper);
633 633
634 void IsObjectJSStringType(Register object, Register scratch, Label* fail); 634 void IsObjectJSStringType(Register object, Register scratch, Label* fail);
635 635
636 void IsObjectNameType(Register object, Register scratch, Label* fail); 636 void IsObjectNameType(Register object, Register scratch, Label* fail);
637 637
638 // --------------------------------------------------------------------------- 638 // ---------------------------------------------------------------------------
639 // Debugger Support 639 // Debugger Support
640 640
641 void DebugBreak(); 641 void DebugBreak();
642 void MaybeDropFrames();
642 643
643 // --------------------------------------------------------------------------- 644 // ---------------------------------------------------------------------------
644 // Exception handling 645 // Exception handling
645 646
646 // Push a new stack handler and link into stack handler chain. 647 // Push a new stack handler and link into stack handler chain.
647 void PushStackHandler(); 648 void PushStackHandler();
648 649
649 // Unlink the stack handler on top of the stack from the stack handler chain. 650 // Unlink the stack handler on top of the stack from the stack handler chain.
650 // Must preserve the result register. 651 // Must preserve the result register.
651 void PopStackHandler(); 652 void PopStackHandler();
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 inline MemOperand NativeContextMemOperand() { 1580 inline MemOperand NativeContextMemOperand() {
1580 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1581 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1581 } 1582 }
1582 1583
1583 #define ACCESS_MASM(masm) masm-> 1584 #define ACCESS_MASM(masm) masm->
1584 1585
1585 } // namespace internal 1586 } // namespace internal
1586 } // namespace v8 1587 } // namespace v8
1587 1588
1588 #endif // V8_PPC_MACRO_ASSEMBLER_PPC_H_ 1589 #endif // V8_PPC_MACRO_ASSEMBLER_PPC_H_
OLDNEW
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | src/ppc/macro-assembler-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698