OLD | NEW |
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 const Operand& code_operand, | 602 const Operand& code_operand, |
603 Label* done, | 603 Label* done, |
604 InvokeFlag flag); | 604 InvokeFlag flag); |
605 | 605 |
606 // Activation support. | 606 // Activation support. |
607 void EnterFrame(StackFrame::Type type); | 607 void EnterFrame(StackFrame::Type type); |
608 void LeaveFrame(StackFrame::Type type); | 608 void LeaveFrame(StackFrame::Type type); |
609 | 609 |
610 void EnterExitFramePrologue(); | 610 void EnterExitFramePrologue(); |
611 void EnterExitFrameEpilogue(int argc); | 611 void EnterExitFrameEpilogue(int argc); |
612 | 612 |
613 void LeaveExitFrameEpilogue(); | 613 void LeaveExitFrameEpilogue(); |
614 | 614 |
615 // Allocation support helpers. | 615 // Allocation support helpers. |
616 void LoadAllocationTopHelper(Register result, | 616 void LoadAllocationTopHelper(Register result, |
617 Register result_end, | 617 Register result_end, |
618 Register scratch, | 618 Register scratch, |
619 AllocationFlags flags); | 619 AllocationFlags flags); |
620 void UpdateAllocationTopHelper(Register result_end, Register scratch); | 620 void UpdateAllocationTopHelper(Register result_end, Register scratch); |
621 | 621 |
622 // Helper for PopHandleScope. Allowed to perform a GC and returns | 622 // Helper for PopHandleScope. Allowed to perform a GC and returns |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 } \ | 698 } \ |
699 masm-> | 699 masm-> |
700 #else | 700 #else |
701 #define ACCESS_MASM(masm) masm-> | 701 #define ACCESS_MASM(masm) masm-> |
702 #endif | 702 #endif |
703 | 703 |
704 | 704 |
705 } } // namespace v8::internal | 705 } } // namespace v8::internal |
706 | 706 |
707 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 707 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
OLD | NEW |