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

Side by Side Diff: src/arm64/macro-assembler-arm64.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/arm64/codegen-arm64.cc ('k') | src/arm64/macro-assembler-arm64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_ARM64_MACRO_ASSEMBLER_ARM64_H_ 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/arm64/assembler-arm64.h" 10 #include "src/arm64/assembler-arm64.h"
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after
1168 const CallWrapper& call_wrapper); 1168 const CallWrapper& call_wrapper);
1169 void FloodFunctionIfStepping(Register fun, Register new_target, 1169 void FloodFunctionIfStepping(Register fun, Register new_target,
1170 const ParameterCount& expected, 1170 const ParameterCount& expected,
1171 const ParameterCount& actual); 1171 const ParameterCount& actual);
1172 void InvokeFunctionCode(Register function, Register new_target, 1172 void InvokeFunctionCode(Register function, Register new_target,
1173 const ParameterCount& expected, 1173 const ParameterCount& expected,
1174 const ParameterCount& actual, InvokeFlag flag, 1174 const ParameterCount& actual, InvokeFlag flag,
1175 const CallWrapper& call_wrapper); 1175 const CallWrapper& call_wrapper);
1176 // Invoke the JavaScript function in the given register. 1176 // Invoke the JavaScript function in the given register.
1177 // Changes the current context to the context in the function before invoking. 1177 // Changes the current context to the context in the function before invoking.
1178 void InvokeFunction(Register function, 1178 void InvokeFunction(Register function, Register new_target,
1179 Register new_target, 1179 const ParameterCount& actual, InvokeFlag flag,
1180 const ParameterCount& actual,
1181 InvokeFlag flag,
1182 const CallWrapper& call_wrapper); 1180 const CallWrapper& call_wrapper);
1183 void InvokeFunction(Register function, 1181 void InvokeFunction(Register function,
1184 const ParameterCount& expected, 1182 const ParameterCount& expected,
1185 const ParameterCount& actual, 1183 const ParameterCount& actual,
1186 InvokeFlag flag, 1184 InvokeFlag flag,
1187 const CallWrapper& call_wrapper); 1185 const CallWrapper& call_wrapper);
1188 void InvokeFunction(Handle<JSFunction> function, 1186 void InvokeFunction(Handle<JSFunction> function,
1189 const ParameterCount& expected, 1187 const ParameterCount& expected,
1190 const ParameterCount& actual, 1188 const ParameterCount& actual,
1191 InvokeFlag flag, 1189 InvokeFlag flag,
(...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after
2263 #error "Unsupported option" 2261 #error "Unsupported option"
2264 #define CODE_COVERAGE_STRINGIFY(x) #x 2262 #define CODE_COVERAGE_STRINGIFY(x) #x
2265 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 2263 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
2266 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 2264 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
2267 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 2265 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
2268 #else 2266 #else
2269 #define ACCESS_MASM(masm) masm-> 2267 #define ACCESS_MASM(masm) masm->
2270 #endif 2268 #endif
2271 2269
2272 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 2270 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm64/codegen-arm64.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698