OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/globals.h" | 9 #include "src/globals.h" |
10 #include "src/mips/assembler-mips.h" | 10 #include "src/mips/assembler-mips.h" |
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 const CallWrapper& call_wrapper); | 1073 const CallWrapper& call_wrapper); |
1074 | 1074 |
1075 void IsObjectJSStringType(Register object, | 1075 void IsObjectJSStringType(Register object, |
1076 Register scratch, | 1076 Register scratch, |
1077 Label* fail); | 1077 Label* fail); |
1078 | 1078 |
1079 void IsObjectNameType(Register object, | 1079 void IsObjectNameType(Register object, |
1080 Register scratch, | 1080 Register scratch, |
1081 Label* fail); | 1081 Label* fail); |
1082 | 1082 |
1083 // Frame restart support. | 1083 // ------------------------------------------------------------------------- |
| 1084 // Debugger Support. |
| 1085 |
| 1086 void DebugBreak(); |
1084 void MaybeDropFrames(); | 1087 void MaybeDropFrames(); |
1085 | 1088 |
| 1089 // ------------------------------------------------------------------------- |
1086 // Exception handling. | 1090 // Exception handling. |
1087 | 1091 |
1088 // Push a new stack handler and link into stack handler chain. | 1092 // Push a new stack handler and link into stack handler chain. |
1089 void PushStackHandler(); | 1093 void PushStackHandler(); |
1090 | 1094 |
1091 // Unlink the stack handler on top of the stack from the stack handler chain. | 1095 // Unlink the stack handler on top of the stack from the stack handler chain. |
1092 // Must preserve the result register. | 1096 // Must preserve the result register. |
1093 void PopStackHandler(); | 1097 void PopStackHandler(); |
1094 | 1098 |
1095 // Initialize fields with filler values. Fields starting at |current_address| | 1099 // Initialize fields with filler values. Fields starting at |current_address| |
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1835 dd(GetLabelFunction(index)); | 1839 dd(GetLabelFunction(index)); |
1836 } | 1840 } |
1837 } | 1841 } |
1838 | 1842 |
1839 #define ACCESS_MASM(masm) masm-> | 1843 #define ACCESS_MASM(masm) masm-> |
1840 | 1844 |
1841 } // namespace internal | 1845 } // namespace internal |
1842 } // namespace v8 | 1846 } // namespace v8 |
1843 | 1847 |
1844 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1848 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |