| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 } | 677 } |
| 678 | 678 |
| 679 void VirtualFrame::SyncElementByPushing(int a) { | 679 void VirtualFrame::SyncElementByPushing(int a) { |
| 680 UNIMPLEMENTED(); | 680 UNIMPLEMENTED(); |
| 681 } | 681 } |
| 682 | 682 |
| 683 void VirtualFrame::SyncRange(int a, int b) { | 683 void VirtualFrame::SyncRange(int a, int b) { |
| 684 UNIMPLEMENTED(); | 684 UNIMPLEMENTED(); |
| 685 } | 685 } |
| 686 | 686 |
| 687 VirtualFrame::VirtualFrame(CodeGenerator* cgen) | 687 VirtualFrame::VirtualFrame() : elements_(0) { |
| 688 : cgen_(cgen), | |
| 689 masm_(NULL), | |
| 690 elements_(0), | |
| 691 parameter_count_(0), | |
| 692 local_count_(0), | |
| 693 stack_pointer_(0), | |
| 694 frame_pointer_(kIllegalIndex) { | |
| 695 UNIMPLEMENTED(); | 688 UNIMPLEMENTED(); |
| 696 } | 689 } |
| 697 | 690 |
| 698 byte* ArgumentsAdaptorFrame::GetCallerStackPointer() const { | 691 byte* ArgumentsAdaptorFrame::GetCallerStackPointer() const { |
| 699 UNIMPLEMENTED(); | 692 UNIMPLEMENTED(); |
| 700 return NULL; | 693 return NULL; |
| 701 } | 694 } |
| 702 | 695 |
| 703 void Builtins::Generate_Adaptor(MacroAssembler* a, Builtins::CFunctionId b) { | 696 void Builtins::Generate_Adaptor(MacroAssembler* a, Builtins::CFunctionId b) { |
| 704 UNIMPLEMENTED(); | 697 UNIMPLEMENTED(); |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 UNIMPLEMENTED(); | 769 UNIMPLEMENTED(); |
| 777 return NULL; | 770 return NULL; |
| 778 } | 771 } |
| 779 | 772 |
| 780 byte* JavaScriptFrame::GetCallerStackPointer() const { | 773 byte* JavaScriptFrame::GetCallerStackPointer() const { |
| 781 UNIMPLEMENTED(); | 774 UNIMPLEMENTED(); |
| 782 return NULL; | 775 return NULL; |
| 783 } | 776 } |
| 784 | 777 |
| 785 } } // namespace v8::internal | 778 } } // namespace v8::internal |
| OLD | NEW |