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