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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
939 | 939 |
940 void InvokeFunction(Handle<JSFunction> function, | 940 void InvokeFunction(Handle<JSFunction> function, |
941 const ParameterCount& expected, | 941 const ParameterCount& expected, |
942 const ParameterCount& actual, InvokeFlag flag, | 942 const ParameterCount& actual, InvokeFlag flag, |
943 const CallWrapper& call_wrapper); | 943 const CallWrapper& call_wrapper); |
944 | 944 |
945 void IsObjectJSStringType(Register object, Register scratch, Label* fail); | 945 void IsObjectJSStringType(Register object, Register scratch, Label* fail); |
946 | 946 |
947 void IsObjectNameType(Register object, Register scratch, Label* fail); | 947 void IsObjectNameType(Register object, Register scratch, Label* fail); |
948 | 948 |
949 // Frame restart support | 949 // --------------------------------------------------------------------------- |
| 950 // Debugger Support |
| 951 |
| 952 void DebugBreak(); |
950 void MaybeDropFrames(); | 953 void MaybeDropFrames(); |
951 | 954 |
| 955 // --------------------------------------------------------------------------- |
952 // Exception handling | 956 // Exception handling |
953 | 957 |
954 // Push a new stack handler and link into stack handler chain. | 958 // Push a new stack handler and link into stack handler chain. |
955 void PushStackHandler(); | 959 void PushStackHandler(); |
956 | 960 |
957 // Unlink the stack handler on top of the stack from the stack handler chain. | 961 // Unlink the stack handler on top of the stack from the stack handler chain. |
958 // Must preserve the result register. | 962 // Must preserve the result register. |
959 void PopStackHandler(); | 963 void PopStackHandler(); |
960 | 964 |
961 // --------------------------------------------------------------------------- | 965 // --------------------------------------------------------------------------- |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1849 inline MemOperand NativeContextMemOperand() { | 1853 inline MemOperand NativeContextMemOperand() { |
1850 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1854 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
1851 } | 1855 } |
1852 | 1856 |
1853 #define ACCESS_MASM(masm) masm-> | 1857 #define ACCESS_MASM(masm) masm-> |
1854 | 1858 |
1855 } // namespace internal | 1859 } // namespace internal |
1856 } // namespace v8 | 1860 } // namespace v8 |
1857 | 1861 |
1858 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1862 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
OLD | NEW |