OLD | NEW |
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_IA32_MACRO_ASSEMBLER_IA32_H_ | 5 #ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
6 #define V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 6 #define V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/bailout-reason.h" | 9 #include "src/bailout-reason.h" |
10 #include "src/frames.h" | 10 #include "src/frames.h" |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 | 352 |
353 // --------------------------------------------------------------------------- | 353 // --------------------------------------------------------------------------- |
354 // JavaScript invokes | 354 // JavaScript invokes |
355 | 355 |
356 // Invoke the JavaScript function code by either calling or jumping. | 356 // Invoke the JavaScript function code by either calling or jumping. |
357 void InvokeCode(Register code, | 357 void InvokeCode(Register code, |
358 const ParameterCount& expected, | 358 const ParameterCount& expected, |
359 const ParameterCount& actual, | 359 const ParameterCount& actual, |
360 InvokeFlag flag, | 360 InvokeFlag flag, |
361 const CallWrapper& call_wrapper) { | 361 const CallWrapper& call_wrapper) { |
362 InvokeCode(Operand(code), expected, actual, flag, call_wrapper); | 362 InvokeCode(Operand(code), no_reg, expected, actual, flag, call_wrapper); |
363 } | 363 } |
364 | 364 |
365 void InvokeCode(const Operand& code, | 365 void InvokeCode(const Operand& code, |
| 366 Register new_target, |
366 const ParameterCount& expected, | 367 const ParameterCount& expected, |
367 const ParameterCount& actual, | 368 const ParameterCount& actual, |
368 InvokeFlag flag, | 369 InvokeFlag flag, |
369 const CallWrapper& call_wrapper); | 370 const CallWrapper& call_wrapper); |
370 | 371 |
371 // Invoke the JavaScript function in the given register. Changes the | 372 // Invoke the JavaScript function in the given register. Changes the |
372 // current context to the context in the function before invoking. | 373 // current context to the context in the function before invoking. |
373 void InvokeFunction(Register function, | 374 void InvokeFunction(Register function, |
| 375 Register new_target, |
374 const ParameterCount& actual, | 376 const ParameterCount& actual, |
375 InvokeFlag flag, | 377 InvokeFlag flag, |
376 const CallWrapper& call_wrapper); | 378 const CallWrapper& call_wrapper); |
377 | 379 |
378 void InvokeFunction(Register function, | 380 void InvokeFunction(Register function, |
379 const ParameterCount& expected, | 381 const ParameterCount& expected, |
380 const ParameterCount& actual, | 382 const ParameterCount& actual, |
381 InvokeFlag flag, | 383 InvokeFlag flag, |
382 const CallWrapper& call_wrapper); | 384 const CallWrapper& call_wrapper); |
383 | 385 |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 // This handle will be patched with the code object on installation. | 1006 // This handle will be patched with the code object on installation. |
1005 Handle<Object> code_object_; | 1007 Handle<Object> code_object_; |
1006 | 1008 |
1007 // Helper functions for generating invokes. | 1009 // Helper functions for generating invokes. |
1008 void InvokePrologue(const ParameterCount& expected, | 1010 void InvokePrologue(const ParameterCount& expected, |
1009 const ParameterCount& actual, | 1011 const ParameterCount& actual, |
1010 Label* done, | 1012 Label* done, |
1011 bool* definitely_mismatches, | 1013 bool* definitely_mismatches, |
1012 InvokeFlag flag, | 1014 InvokeFlag flag, |
1013 Label::Distance done_distance, | 1015 Label::Distance done_distance, |
1014 const CallWrapper& call_wrapper = NullCallWrapper()); | 1016 const CallWrapper& call_wrapper); |
1015 | 1017 |
1016 void EnterExitFramePrologue(); | 1018 void EnterExitFramePrologue(); |
1017 void EnterExitFrameEpilogue(int argc, bool save_doubles); | 1019 void EnterExitFrameEpilogue(int argc, bool save_doubles); |
1018 | 1020 |
1019 void LeaveExitFrameEpilogue(bool restore_context); | 1021 void LeaveExitFrameEpilogue(bool restore_context); |
1020 | 1022 |
1021 // Allocation support helpers. | 1023 // Allocation support helpers. |
1022 void LoadAllocationTopHelper(Register result, | 1024 void LoadAllocationTopHelper(Register result, |
1023 Register scratch, | 1025 Register scratch, |
1024 AllocationFlags flags); | 1026 AllocationFlags flags); |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1132 masm-> | 1134 masm-> |
1133 #else | 1135 #else |
1134 #define ACCESS_MASM(masm) masm-> | 1136 #define ACCESS_MASM(masm) masm-> |
1135 #endif | 1137 #endif |
1136 | 1138 |
1137 | 1139 |
1138 } // namespace internal | 1140 } // namespace internal |
1139 } // namespace v8 | 1141 } // namespace v8 |
1140 | 1142 |
1141 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 1143 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
OLD | NEW |