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 | |
990 void IsObjectJSStringType(Register object, | 980 void IsObjectJSStringType(Register object, |
991 Register scratch, | 981 Register scratch, |
992 Label* fail); | 982 Label* fail); |
993 | 983 |
994 void IsObjectNameType(Register object, | 984 void IsObjectNameType(Register object, |
995 Register scratch, | 985 Register scratch, |
996 Label* fail); | 986 Label* fail); |
997 | 987 |
998 // ------------------------------------------------------------------------- | 988 // ------------------------------------------------------------------------- |
999 // Debugger Support. | 989 // Debugger Support. |
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1738 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1728 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
1739 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1729 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1740 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1730 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1741 #else | 1731 #else |
1742 #define ACCESS_MASM(masm) masm-> | 1732 #define ACCESS_MASM(masm) masm-> |
1743 #endif | 1733 #endif |
1744 | 1734 |
1745 } } // namespace v8::internal | 1735 } } // namespace v8::internal |
1746 | 1736 |
1747 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1737 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |