| 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 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1772 } | 1772 } |
| 1773 | 1773 |
| 1774 | 1774 |
| 1775 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { | 1775 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { |
| 1776 LOperand* value = UseRegisterOrConstantAtStart(instr->index()); | 1776 LOperand* value = UseRegisterOrConstantAtStart(instr->index()); |
| 1777 LOperand* length = UseRegister(instr->length()); | 1777 LOperand* length = UseRegister(instr->length()); |
| 1778 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); | 1778 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); |
| 1779 } | 1779 } |
| 1780 | 1780 |
| 1781 | 1781 |
| 1782 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( |
| 1783 HBoundsCheckBaseIndexInformation* instr) { |
| 1784 UNREACHABLE(); |
| 1785 return NULL; |
| 1786 } |
| 1787 |
| 1788 |
| 1782 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { | 1789 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { |
| 1783 // The control instruction marking the end of a block that completed | 1790 // The control instruction marking the end of a block that completed |
| 1784 // abruptly (e.g., threw an exception). There is nothing specific to do. | 1791 // abruptly (e.g., threw an exception). There is nothing specific to do. |
| 1785 return NULL; | 1792 return NULL; |
| 1786 } | 1793 } |
| 1787 | 1794 |
| 1788 | 1795 |
| 1789 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { | 1796 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { |
| 1790 LOperand* value = UseFixed(instr->value(), r0); | 1797 LOperand* value = UseFixed(instr->value(), r0); |
| 1791 return MarkAsCall(new(zone()) LThrow(value), instr); | 1798 return MarkAsCall(new(zone()) LThrow(value), instr); |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2533 | 2540 |
| 2534 | 2541 |
| 2535 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2542 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2536 LOperand* object = UseRegister(instr->object()); | 2543 LOperand* object = UseRegister(instr->object()); |
| 2537 LOperand* index = UseRegister(instr->index()); | 2544 LOperand* index = UseRegister(instr->index()); |
| 2538 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2545 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
| 2539 } | 2546 } |
| 2540 | 2547 |
| 2541 | 2548 |
| 2542 } } // namespace v8::internal | 2549 } } // namespace v8::internal |
| OLD | NEW |