| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 CallKind call_kind); | 910 CallKind call_kind); |
| 911 | 911 |
| 912 // Invoke the JavaScript function in the given register. Changes the | 912 // Invoke the JavaScript function in the given register. Changes the |
| 913 // current context to the context in the function before invoking. | 913 // current context to the context in the function before invoking. |
| 914 void InvokeFunction(Register function, | 914 void InvokeFunction(Register function, |
| 915 const ParameterCount& actual, | 915 const ParameterCount& actual, |
| 916 InvokeFlag flag, | 916 InvokeFlag flag, |
| 917 const CallWrapper& call_wrapper, | 917 const CallWrapper& call_wrapper, |
| 918 CallKind call_kind); | 918 CallKind call_kind); |
| 919 | 919 |
| 920 void InvokeFunction(Register function, |
| 921 const ParameterCount& expected, |
| 922 const ParameterCount& actual, |
| 923 InvokeFlag flag, |
| 924 const CallWrapper& call_wrapper, |
| 925 CallKind call_kind); |
| 926 |
| 920 void InvokeFunction(Handle<JSFunction> function, | 927 void InvokeFunction(Handle<JSFunction> function, |
| 921 const ParameterCount& expected, | 928 const ParameterCount& expected, |
| 922 const ParameterCount& actual, | 929 const ParameterCount& actual, |
| 923 InvokeFlag flag, | 930 InvokeFlag flag, |
| 924 const CallWrapper& call_wrapper, | 931 const CallWrapper& call_wrapper, |
| 925 CallKind call_kind); | 932 CallKind call_kind); |
| 926 | 933 |
| 927 | 934 |
| 928 void IsObjectJSObjectType(Register heap_object, | 935 void IsObjectJSObjectType(Register heap_object, |
| 929 Register map, | 936 Register map, |
| (...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1693 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
| 1687 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1694 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1688 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1695 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1689 #else | 1696 #else |
| 1690 #define ACCESS_MASM(masm) masm-> | 1697 #define ACCESS_MASM(masm) masm-> |
| 1691 #endif | 1698 #endif |
| 1692 | 1699 |
| 1693 } } // namespace v8::internal | 1700 } } // namespace v8::internal |
| 1694 | 1701 |
| 1695 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1702 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
| OLD | NEW |