| 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 #include "src/crankshaft/mips64/lithium-mips64.h" | 5 #include "src/crankshaft/mips64/lithium-mips64.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #if V8_TARGET_ARCH_MIPS64 | 9 #if V8_TARGET_ARCH_MIPS64 |
| 10 | 10 |
| (...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1771 ? UseRegisterOrConstantAtStart(instr->length()) | 1771 ? UseRegisterOrConstantAtStart(instr->length()) |
| 1772 : UseRegisterAtStart(instr->length()); | 1772 : UseRegisterAtStart(instr->length()); |
| 1773 LInstruction* result = new(zone()) LBoundsCheck(index, length); | 1773 LInstruction* result = new(zone()) LBoundsCheck(index, length); |
| 1774 if (!FLAG_debug_code || !instr->skip_check()) { | 1774 if (!FLAG_debug_code || !instr->skip_check()) { |
| 1775 result = AssignEnvironment(result); | 1775 result = AssignEnvironment(result); |
| 1776 } | 1776 } |
| 1777 return result; | 1777 return result; |
| 1778 } | 1778 } |
| 1779 | 1779 |
| 1780 | 1780 |
| 1781 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( | |
| 1782 HBoundsCheckBaseIndexInformation* instr) { | |
| 1783 UNREACHABLE(); | |
| 1784 return NULL; | |
| 1785 } | |
| 1786 | |
| 1787 | |
| 1788 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { | 1781 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { |
| 1789 // The control instruction marking the end of a block that completed | 1782 // The control instruction marking the end of a block that completed |
| 1790 // abruptly (e.g., threw an exception). There is nothing specific to do. | 1783 // abruptly (e.g., threw an exception). There is nothing specific to do. |
| 1791 return NULL; | 1784 return NULL; |
| 1792 } | 1785 } |
| 1793 | 1786 |
| 1794 | 1787 |
| 1795 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { | 1788 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { |
| 1796 return NULL; | 1789 return NULL; |
| 1797 } | 1790 } |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2527 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { | 2520 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { |
| 2528 LOperand* context = UseRegisterAtStart(instr->context()); | 2521 LOperand* context = UseRegisterAtStart(instr->context()); |
| 2529 return new(zone()) LStoreFrameContext(context); | 2522 return new(zone()) LStoreFrameContext(context); |
| 2530 } | 2523 } |
| 2531 | 2524 |
| 2532 | 2525 |
| 2533 } // namespace internal | 2526 } // namespace internal |
| 2534 } // namespace v8 | 2527 } // namespace v8 |
| 2535 | 2528 |
| 2536 #endif // V8_TARGET_ARCH_MIPS64 | 2529 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |