| 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 // ------------------------------------------------------------------------- | 1083 // Frame restart support. |
| 1084 // Debugger Support. | |
| 1085 | |
| 1086 void DebugBreak(); | |
| 1087 void MaybeDropFrames(); | 1084 void MaybeDropFrames(); |
| 1088 | 1085 |
| 1089 // ------------------------------------------------------------------------- | |
| 1090 // Exception handling. | 1086 // Exception handling. |
| 1091 | 1087 |
| 1092 // Push a new stack handler and link into stack handler chain. | 1088 // Push a new stack handler and link into stack handler chain. |
| 1093 void PushStackHandler(); | 1089 void PushStackHandler(); |
| 1094 | 1090 |
| 1095 // Unlink the stack handler on top of the stack from the stack handler chain. | 1091 // Unlink the stack handler on top of the stack from the stack handler chain. |
| 1096 // Must preserve the result register. | 1092 // Must preserve the result register. |
| 1097 void PopStackHandler(); | 1093 void PopStackHandler(); |
| 1098 | 1094 |
| 1099 // Initialize fields with filler values. Fields starting at |current_address| | 1095 // Initialize fields with filler values. Fields starting at |current_address| |
| (...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1825 dd(GetLabelFunction(index)); | 1821 dd(GetLabelFunction(index)); |
| 1826 } | 1822 } |
| 1827 } | 1823 } |
| 1828 | 1824 |
| 1829 #define ACCESS_MASM(masm) masm-> | 1825 #define ACCESS_MASM(masm) masm-> |
| 1830 | 1826 |
| 1831 } // namespace internal | 1827 } // namespace internal |
| 1832 } // namespace v8 | 1828 } // namespace v8 |
| 1833 | 1829 |
| 1834 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1830 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
| OLD | NEW |