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 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 InvokeFlag flag, | 1001 InvokeFlag flag, |
1002 const CallWrapper& call_wrapper); | 1002 const CallWrapper& call_wrapper); |
1003 | 1003 |
1004 void InvokeFunction(Handle<JSFunction> function, | 1004 void InvokeFunction(Handle<JSFunction> function, |
1005 const ParameterCount& expected, | 1005 const ParameterCount& expected, |
1006 const ParameterCount& actual, | 1006 const ParameterCount& actual, |
1007 InvokeFlag flag, | 1007 InvokeFlag flag, |
1008 const CallWrapper& call_wrapper); | 1008 const CallWrapper& call_wrapper); |
1009 | 1009 |
1010 | 1010 |
| 1011 void IsObjectJSObjectType(Register heap_object, |
| 1012 Register map, |
| 1013 Register scratch, |
| 1014 Label* fail); |
| 1015 |
| 1016 void IsInstanceJSObjectType(Register map, |
| 1017 Register scratch, |
| 1018 Label* fail); |
| 1019 |
1011 void IsObjectJSStringType(Register object, | 1020 void IsObjectJSStringType(Register object, |
1012 Register scratch, | 1021 Register scratch, |
1013 Label* fail); | 1022 Label* fail); |
1014 | 1023 |
1015 void IsObjectNameType(Register object, | 1024 void IsObjectNameType(Register object, |
1016 Register scratch, | 1025 Register scratch, |
1017 Label* fail); | 1026 Label* fail); |
1018 | 1027 |
1019 // ------------------------------------------------------------------------- | 1028 // ------------------------------------------------------------------------- |
1020 // Debugger Support. | 1029 // Debugger Support. |
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1815 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1824 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
1816 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1825 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1817 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1826 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1818 #else | 1827 #else |
1819 #define ACCESS_MASM(masm) masm-> | 1828 #define ACCESS_MASM(masm) masm-> |
1820 #endif | 1829 #endif |
1821 | 1830 |
1822 } } // namespace v8::internal | 1831 } } // namespace v8::internal |
1823 | 1832 |
1824 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1833 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |