OLD | NEW |
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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 // --------------------------------------------------------------------------- | 717 // --------------------------------------------------------------------------- |
718 // Debugger Support | |
719 | |
720 void DebugBreak(); | |
721 | |
722 // --------------------------------------------------------------------------- | |
723 // Exception handling | 718 // Exception handling |
724 | 719 |
725 // Push a new stack handler and link into stack handler chain. | 720 // Push a new stack handler and link into stack handler chain. |
726 void PushStackHandler(); | 721 void PushStackHandler(); |
727 | 722 |
728 // Unlink the stack handler on top of the stack from the stack handler chain. | 723 // Unlink the stack handler on top of the stack from the stack handler chain. |
729 // Must preserve the result register. | 724 // Must preserve the result register. |
730 void PopStackHandler(); | 725 void PopStackHandler(); |
731 | 726 |
732 // --------------------------------------------------------------------------- | 727 // --------------------------------------------------------------------------- |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1523 inline MemOperand NativeContextMemOperand() { | 1518 inline MemOperand NativeContextMemOperand() { |
1524 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1519 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
1525 } | 1520 } |
1526 | 1521 |
1527 #define ACCESS_MASM(masm) masm-> | 1522 #define ACCESS_MASM(masm) masm-> |
1528 | 1523 |
1529 } // namespace internal | 1524 } // namespace internal |
1530 } // namespace v8 | 1525 } // namespace v8 |
1531 | 1526 |
1532 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1527 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |