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

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

Issue 1439693002: [runtime] Support Proxy setPrototypeOf trap (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-11-09_new_Proxy_1417063011
Patch Set: merging with master Created 5 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
« no previous file with comments | « src/mips/macro-assembler-mips.cc ('k') | src/mips64/macro-assembler-mips64.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 // 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 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1028 // JavaScript invokes. 1028 // JavaScript invokes.
1029 1029
1030 // Invoke the JavaScript function code by either calling or jumping. 1030 // Invoke the JavaScript function code by either calling or jumping.
1031 void InvokeFunctionCode(Register function, Register new_target, 1031 void InvokeFunctionCode(Register function, Register new_target,
1032 const ParameterCount& expected, 1032 const ParameterCount& expected,
1033 const ParameterCount& actual, InvokeFlag flag, 1033 const ParameterCount& actual, InvokeFlag flag,
1034 const CallWrapper& call_wrapper); 1034 const CallWrapper& call_wrapper);
1035 1035
1036 // Invoke the JavaScript function in the given register. Changes the 1036 // Invoke the JavaScript function in the given register. Changes the
1037 // current context to the context in the function before invoking. 1037 // current context to the context in the function before invoking.
1038 void InvokeFunction(Register function, 1038 void InvokeFunction(Register function, Register new_target,
1039 Register new_target, 1039 const ParameterCount& actual, InvokeFlag flag,
1040 const ParameterCount& actual,
1041 InvokeFlag flag,
1042 const CallWrapper& call_wrapper); 1040 const CallWrapper& call_wrapper);
1043 1041
1044 void InvokeFunction(Register function, 1042 void InvokeFunction(Register function,
1045 const ParameterCount& expected, 1043 const ParameterCount& expected,
1046 const ParameterCount& actual, 1044 const ParameterCount& actual,
1047 InvokeFlag flag, 1045 InvokeFlag flag,
1048 const CallWrapper& call_wrapper); 1046 const CallWrapper& call_wrapper);
1049 1047
1050 void InvokeFunction(Handle<JSFunction> function, 1048 void InvokeFunction(Handle<JSFunction> function,
1051 const ParameterCount& expected, 1049 const ParameterCount& expected,
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1848 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1846 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1849 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1847 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1850 #else 1848 #else
1851 #define ACCESS_MASM(masm) masm-> 1849 #define ACCESS_MASM(masm) masm->
1852 #endif 1850 #endif
1853 1851
1854 } // namespace internal 1852 } // namespace internal
1855 } // namespace v8 1853 } // namespace v8
1856 1854
1857 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1855 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/macro-assembler-mips.cc ('k') | src/mips64/macro-assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698