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

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

Issue 2672823007: Revert of [debugger] remove debugger statement support from FCG/CS. (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 | « no previous file | src/arm/macro-assembler-arm.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 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 const CallWrapper& call_wrapper); 707 const CallWrapper& call_wrapper);
708 708
709 void IsObjectJSStringType(Register object, 709 void IsObjectJSStringType(Register object,
710 Register scratch, 710 Register scratch,
711 Label* fail); 711 Label* fail);
712 712
713 void IsObjectNameType(Register object, 713 void IsObjectNameType(Register object,
714 Register scratch, 714 Register scratch,
715 Label* fail); 715 Label* fail);
716 716
717 // Frame restart support 717 // ---------------------------------------------------------------------------
718 // Debugger Support
719
720 void DebugBreak();
718 void MaybeDropFrames(); 721 void MaybeDropFrames();
719 722
723 // ---------------------------------------------------------------------------
720 // Exception handling 724 // Exception handling
721 725
722 // Push a new stack handler and link into stack handler chain. 726 // Push a new stack handler and link into stack handler chain.
723 void PushStackHandler(); 727 void PushStackHandler();
724 728
725 // Unlink the stack handler on top of the stack from the stack handler chain. 729 // Unlink the stack handler on top of the stack from the stack handler chain.
726 // Must preserve the result register. 730 // Must preserve the result register.
727 void PopStackHandler(); 731 void PopStackHandler();
728 732
729 // --------------------------------------------------------------------------- 733 // ---------------------------------------------------------------------------
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
1520 inline MemOperand NativeContextMemOperand() { 1524 inline MemOperand NativeContextMemOperand() {
1521 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1525 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1522 } 1526 }
1523 1527
1524 #define ACCESS_MASM(masm) masm-> 1528 #define ACCESS_MASM(masm) masm->
1525 1529
1526 } // namespace internal 1530 } // namespace internal
1527 } // namespace v8 1531 } // namespace v8
1528 1532
1529 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1533 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698