| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |