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 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
970 const ParameterCount& actual, | 970 const ParameterCount& actual, |
971 InvokeFlag flag, | 971 InvokeFlag flag, |
972 const CallWrapper& call_wrapper); | 972 const CallWrapper& call_wrapper); |
973 | 973 |
974 void InvokeFunction(Handle<JSFunction> function, | 974 void InvokeFunction(Handle<JSFunction> function, |
975 const ParameterCount& expected, | 975 const ParameterCount& expected, |
976 const ParameterCount& actual, | 976 const ParameterCount& actual, |
977 InvokeFlag flag, | 977 InvokeFlag flag, |
978 const CallWrapper& call_wrapper); | 978 const CallWrapper& call_wrapper); |
979 | 979 |
| 980 |
| 981 void IsObjectJSObjectType(Register heap_object, |
| 982 Register map, |
| 983 Register scratch, |
| 984 Label* fail); |
| 985 |
| 986 void IsInstanceJSObjectType(Register map, |
| 987 Register scratch, |
| 988 Label* fail); |
| 989 |
980 void IsObjectJSStringType(Register object, | 990 void IsObjectJSStringType(Register object, |
981 Register scratch, | 991 Register scratch, |
982 Label* fail); | 992 Label* fail); |
983 | 993 |
984 void IsObjectNameType(Register object, | 994 void IsObjectNameType(Register object, |
985 Register scratch, | 995 Register scratch, |
986 Label* fail); | 996 Label* fail); |
987 | 997 |
988 // ------------------------------------------------------------------------- | 998 // ------------------------------------------------------------------------- |
989 // Debugger Support. | 999 // Debugger Support. |
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1728 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1738 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
1729 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1739 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1730 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1740 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1731 #else | 1741 #else |
1732 #define ACCESS_MASM(masm) masm-> | 1742 #define ACCESS_MASM(masm) masm-> |
1733 #endif | 1743 #endif |
1734 | 1744 |
1735 } } // namespace v8::internal | 1745 } } // namespace v8::internal |
1736 | 1746 |
1737 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1747 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |