| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 bool generating_stub_; | 639 bool generating_stub_; |
| 640 bool allow_stub_calls_; | 640 bool allow_stub_calls_; |
| 641 // This handle will be patched with the code object on installation. | 641 // This handle will be patched with the code object on installation. |
| 642 Handle<Object> code_object_; | 642 Handle<Object> code_object_; |
| 643 | 643 |
| 644 // Helper functions for generating invokes. | 644 // Helper functions for generating invokes. |
| 645 void InvokePrologue(const ParameterCount& expected, | 645 void InvokePrologue(const ParameterCount& expected, |
| 646 const ParameterCount& actual, | 646 const ParameterCount& actual, |
| 647 Handle<Code> code_constant, | 647 Handle<Code> code_constant, |
| 648 const Operand& code_operand, | 648 const Operand& code_operand, |
| 649 Label* done, | 649 NearLabel* done, |
| 650 InvokeFlag flag, | 650 InvokeFlag flag, |
| 651 PostCallGenerator* post_call_generator = NULL); | 651 PostCallGenerator* post_call_generator = NULL); |
| 652 | 652 |
| 653 // Activation support. | 653 // Activation support. |
| 654 void EnterFrame(StackFrame::Type type); | 654 void EnterFrame(StackFrame::Type type); |
| 655 void LeaveFrame(StackFrame::Type type); | 655 void LeaveFrame(StackFrame::Type type); |
| 656 | 656 |
| 657 void EnterExitFramePrologue(); | 657 void EnterExitFramePrologue(); |
| 658 void EnterExitFrameEpilogue(int argc, bool save_doubles); | 658 void EnterExitFrameEpilogue(int argc, bool save_doubles); |
| 659 | 659 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 } \ | 789 } \ |
| 790 masm-> | 790 masm-> |
| 791 #else | 791 #else |
| 792 #define ACCESS_MASM(masm) masm-> | 792 #define ACCESS_MASM(masm) masm-> |
| 793 #endif | 793 #endif |
| 794 | 794 |
| 795 | 795 |
| 796 } } // namespace v8::internal | 796 } } // namespace v8::internal |
| 797 | 797 |
| 798 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 798 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| OLD | NEW |