OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |