| 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_S390_MACRO_ASSEMBLER_S390_H_ | 5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_ |
| 6 #define V8_S390_MACRO_ASSEMBLER_S390_H_ | 6 #define V8_S390_MACRO_ASSEMBLER_S390_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 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 const CallWrapper& call_wrapper); | 925 const CallWrapper& call_wrapper); |
| 926 | 926 |
| 927 void IsObjectJSStringType(Register object, Register scratch, Label* fail); | 927 void IsObjectJSStringType(Register object, Register scratch, Label* fail); |
| 928 | 928 |
| 929 void IsObjectNameType(Register object, Register scratch, Label* fail); | 929 void IsObjectNameType(Register object, Register scratch, Label* fail); |
| 930 | 930 |
| 931 // --------------------------------------------------------------------------- | 931 // --------------------------------------------------------------------------- |
| 932 // Debugger Support | 932 // Debugger Support |
| 933 | 933 |
| 934 void DebugBreak(); | 934 void DebugBreak(); |
| 935 void MaybeDropFrames(); |
| 935 | 936 |
| 936 // --------------------------------------------------------------------------- | 937 // --------------------------------------------------------------------------- |
| 937 // Exception handling | 938 // Exception handling |
| 938 | 939 |
| 939 // Push a new stack handler and link into stack handler chain. | 940 // Push a new stack handler and link into stack handler chain. |
| 940 void PushStackHandler(); | 941 void PushStackHandler(); |
| 941 | 942 |
| 942 // Unlink the stack handler on top of the stack from the stack handler chain. | 943 // Unlink the stack handler on top of the stack from the stack handler chain. |
| 943 // Must preserve the result register. | 944 // Must preserve the result register. |
| 944 void PopStackHandler(); | 945 void PopStackHandler(); |
| (...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1834 inline MemOperand NativeContextMemOperand() { | 1835 inline MemOperand NativeContextMemOperand() { |
| 1835 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1836 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
| 1836 } | 1837 } |
| 1837 | 1838 |
| 1838 #define ACCESS_MASM(masm) masm-> | 1839 #define ACCESS_MASM(masm) masm-> |
| 1839 | 1840 |
| 1840 } // namespace internal | 1841 } // namespace internal |
| 1841 } // namespace v8 | 1842 } // namespace v8 |
| 1842 | 1843 |
| 1843 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1844 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
| OLD | NEW |