OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 } | 784 } |
785 | 785 |
786 | 786 |
787 LOperand* LChunkBuilder::FixedTemp(XMMRegister reg) { | 787 LOperand* LChunkBuilder::FixedTemp(XMMRegister reg) { |
788 LUnallocated* operand = ToUnallocated(reg); | 788 LUnallocated* operand = ToUnallocated(reg); |
789 allocator_->RecordTemporary(operand); | 789 allocator_->RecordTemporary(operand); |
790 return operand; | 790 return operand; |
791 } | 791 } |
792 | 792 |
793 | 793 |
| 794 LInstruction* LChunkBuilder::DoPhi(HPhi* instr) { |
| 795 UNREACHABLE(); |
| 796 return NULL; |
| 797 } |
| 798 |
| 799 |
794 LInstruction* LChunkBuilder::DoBlockEntry(HBlockEntry* instr) { | 800 LInstruction* LChunkBuilder::DoBlockEntry(HBlockEntry* instr) { |
795 return new LLabel(instr->block()); | 801 return new LLabel(instr->block()); |
796 } | 802 } |
797 | 803 |
798 | 804 |
799 LInstruction* LChunkBuilder::DoDeoptimize(HDeoptimize* instr) { | 805 LInstruction* LChunkBuilder::DoDeoptimize(HDeoptimize* instr) { |
800 return AssignEnvironment(new LDeoptimize); | 806 return AssignEnvironment(new LDeoptimize); |
801 } | 807 } |
802 | 808 |
803 | 809 |
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2128 | 2134 |
2129 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { | 2135 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { |
2130 HEnvironment* outer = current_block_->last_environment()->outer(); | 2136 HEnvironment* outer = current_block_->last_environment()->outer(); |
2131 current_block_->UpdateEnvironment(outer); | 2137 current_block_->UpdateEnvironment(outer); |
2132 return NULL; | 2138 return NULL; |
2133 } | 2139 } |
2134 | 2140 |
2135 } } // namespace v8::internal | 2141 } } // namespace v8::internal |
2136 | 2142 |
2137 #endif // V8_TARGET_ARCH_X64 | 2143 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |