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/mips64/assembler-mips64.h" | 10 #include "src/mips64/assembler-mips64.h" |
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1131 Label* fail); | 1131 Label* fail); |
1132 | 1132 |
1133 void IsObjectNameType(Register object, | 1133 void IsObjectNameType(Register object, |
1134 Register scratch, | 1134 Register scratch, |
1135 Label* fail); | 1135 Label* fail); |
1136 | 1136 |
1137 // ------------------------------------------------------------------------- | 1137 // ------------------------------------------------------------------------- |
1138 // Debugger Support. | 1138 // Debugger Support. |
1139 | 1139 |
1140 void DebugBreak(); | 1140 void DebugBreak(); |
| 1141 void MaybeDropFrames(); |
1141 | 1142 |
1142 // ------------------------------------------------------------------------- | 1143 // ------------------------------------------------------------------------- |
1143 // Exception handling. | 1144 // Exception handling. |
1144 | 1145 |
1145 // Push a new stack handler and link into stack handler chain. | 1146 // Push a new stack handler and link into stack handler chain. |
1146 void PushStackHandler(); | 1147 void PushStackHandler(); |
1147 | 1148 |
1148 // Unlink the stack handler on top of the stack from the stack handler chain. | 1149 // Unlink the stack handler on top of the stack from the stack handler chain. |
1149 // Must preserve the result register. | 1150 // Must preserve the result register. |
1150 void PopStackHandler(); | 1151 void PopStackHandler(); |
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1982 dd(GetLabelFunction(index)); | 1983 dd(GetLabelFunction(index)); |
1983 } | 1984 } |
1984 } | 1985 } |
1985 | 1986 |
1986 #define ACCESS_MASM(masm) masm-> | 1987 #define ACCESS_MASM(masm) masm-> |
1987 | 1988 |
1988 } // namespace internal | 1989 } // namespace internal |
1989 } // namespace v8 | 1990 } // namespace v8 |
1990 | 1991 |
1991 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1992 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |