OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 1762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1773 } | 1773 } |
1774 | 1774 |
1775 | 1775 |
1776 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( | 1776 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( |
1777 HBoundsCheckBaseIndexInformation* instr) { | 1777 HBoundsCheckBaseIndexInformation* instr) { |
1778 UNREACHABLE(); | 1778 UNREACHABLE(); |
1779 return NULL; | 1779 return NULL; |
1780 } | 1780 } |
1781 | 1781 |
1782 | 1782 |
| 1783 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { |
| 1784 // The control instruction marking the end of a block that completed |
| 1785 // abruptly (e.g., threw an exception). There is nothing specific to do. |
| 1786 return NULL; |
| 1787 } |
| 1788 |
| 1789 |
1783 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { | 1790 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { |
1784 LOperand* value = UseFixed(instr->value(), rax); | 1791 LOperand* value = UseFixed(instr->value(), rax); |
1785 return MarkAsCall(new(zone()) LThrow(value), instr); | 1792 return MarkAsCall(new(zone()) LThrow(value), instr); |
1786 } | 1793 } |
1787 | 1794 |
1788 | 1795 |
1789 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { | 1796 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { |
1790 return NULL; | 1797 return NULL; |
1791 } | 1798 } |
1792 | 1799 |
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2524 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2531 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2525 LOperand* object = UseRegister(instr->object()); | 2532 LOperand* object = UseRegister(instr->object()); |
2526 LOperand* index = UseTempRegister(instr->index()); | 2533 LOperand* index = UseTempRegister(instr->index()); |
2527 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2534 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2528 } | 2535 } |
2529 | 2536 |
2530 | 2537 |
2531 } } // namespace v8::internal | 2538 } } // namespace v8::internal |
2532 | 2539 |
2533 #endif // V8_TARGET_ARCH_X64 | 2540 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |