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 // --------------------------------------------------------------------------- | 949 // Frame restart support |
950 // Debugger Support | |
951 | |
952 void DebugBreak(); | |
953 void MaybeDropFrames(); | 950 void MaybeDropFrames(); |
954 | 951 |
955 // --------------------------------------------------------------------------- | |
956 // Exception handling | 952 // Exception handling |
957 | 953 |
958 // Push a new stack handler and link into stack handler chain. | 954 // Push a new stack handler and link into stack handler chain. |
959 void PushStackHandler(); | 955 void PushStackHandler(); |
960 | 956 |
961 // Unlink the stack handler on top of the stack from the stack handler chain. | 957 // Unlink the stack handler on top of the stack from the stack handler chain. |
962 // Must preserve the result register. | 958 // Must preserve the result register. |
963 void PopStackHandler(); | 959 void PopStackHandler(); |
964 | 960 |
965 // --------------------------------------------------------------------------- | 961 // --------------------------------------------------------------------------- |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1853 inline MemOperand NativeContextMemOperand() { | 1849 inline MemOperand NativeContextMemOperand() { |
1854 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1850 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
1855 } | 1851 } |
1856 | 1852 |
1857 #define ACCESS_MASM(masm) masm-> | 1853 #define ACCESS_MASM(masm) masm-> |
1858 | 1854 |
1859 } // namespace internal | 1855 } // namespace internal |
1860 } // namespace v8 | 1856 } // namespace v8 |
1861 | 1857 |
1862 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1858 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
OLD | NEW |