Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1535)

Side by Side Diff: src/mips/macro-assembler-mips.h

Issue 96743002: Revert r18144, r18143. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
927 void InvokeFunction(Handle<JSFunction> function, 920 void InvokeFunction(Handle<JSFunction> function,
928 const ParameterCount& expected, 921 const ParameterCount& expected,
929 const ParameterCount& actual, 922 const ParameterCount& actual,
930 InvokeFlag flag, 923 InvokeFlag flag,
931 const CallWrapper& call_wrapper, 924 const CallWrapper& call_wrapper,
932 CallKind call_kind); 925 CallKind call_kind);
933 926
934 927
935 void IsObjectJSObjectType(Register heap_object, 928 void IsObjectJSObjectType(Register heap_object,
936 Register map, 929 Register map,
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
1693 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1686 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1694 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1687 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1695 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1688 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1696 #else 1689 #else
1697 #define ACCESS_MASM(masm) masm-> 1690 #define ACCESS_MASM(masm) masm->
1698 #endif 1691 #endif
1699 1692
1700 } } // namespace v8::internal 1693 } } // namespace v8::internal
1701 1694
1702 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1695 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698