| 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 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1859 } | 1859 } |
| 1860 | 1860 |
| 1861 | 1861 |
| 1862 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( | 1862 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( |
| 1863 HBoundsCheckBaseIndexInformation* instr) { | 1863 HBoundsCheckBaseIndexInformation* instr) { |
| 1864 UNREACHABLE(); | 1864 UNREACHABLE(); |
| 1865 return NULL; | 1865 return NULL; |
| 1866 } | 1866 } |
| 1867 | 1867 |
| 1868 | 1868 |
| 1869 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { | |
| 1870 // The control instruction marking the end of a block that completed | |
| 1871 // abruptly (e.g., threw an exception). There is nothing specific to do. | |
| 1872 return NULL; | |
| 1873 } | |
| 1874 | |
| 1875 | |
| 1876 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { | 1869 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { |
| 1877 LOperand* value = UseFixed(instr->value(), r0); | 1870 LOperand* value = UseFixed(instr->value(), r0); |
| 1878 return MarkAsCall(new(zone()) LThrow(value), instr); | 1871 return MarkAsCall(new(zone()) LThrow(value), instr); |
| 1879 } | 1872 } |
| 1880 | 1873 |
| 1881 | 1874 |
| 1882 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { | 1875 LInstruction* LChunkBuilder::DoUseConst(HUseConst* instr) { |
| 1883 return NULL; | 1876 return NULL; |
| 1884 } | 1877 } |
| 1885 | 1878 |
| (...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2599 | 2592 |
| 2600 | 2593 |
| 2601 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2594 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2602 LOperand* object = UseRegister(instr->object()); | 2595 LOperand* object = UseRegister(instr->object()); |
| 2603 LOperand* index = UseRegister(instr->index()); | 2596 LOperand* index = UseRegister(instr->index()); |
| 2604 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2597 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
| 2605 } | 2598 } |
| 2606 | 2599 |
| 2607 | 2600 |
| 2608 } } // namespace v8::internal | 2601 } } // namespace v8::internal |
| OLD | NEW |