| 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 1814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1825 LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) { | 1825 LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) { |
| 1826 LOperand* string = UseRegister(instr->string()); | 1826 LOperand* string = UseRegister(instr->string()); |
| 1827 LOperand* index = UseRegister(instr->index()); | 1827 LOperand* index = UseRegister(instr->index()); |
| 1828 LOperand* value = UseTempRegister(instr->value()); | 1828 LOperand* value = UseTempRegister(instr->value()); |
| 1829 LSeqStringSetChar* result = | 1829 LSeqStringSetChar* result = |
| 1830 new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value); | 1830 new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value); |
| 1831 return DefineAsRegister(result); | 1831 return DefineAsRegister(result); |
| 1832 } | 1832 } |
| 1833 | 1833 |
| 1834 | 1834 |
| 1835 LInstruction* LChunkBuilder::DoNumericConstraint(HNumericConstraint* instr) { | |
| 1836 return NULL; | |
| 1837 } | |
| 1838 | |
| 1839 | |
| 1840 LInstruction* LChunkBuilder::DoInductionVariableAnnotation( | |
| 1841 HInductionVariableAnnotation* instr) { | |
| 1842 return NULL; | |
| 1843 } | |
| 1844 | |
| 1845 | |
| 1846 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { | 1835 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { |
| 1847 LOperand* value = UseRegisterOrConstantAtStart(instr->index()); | 1836 LOperand* value = UseRegisterOrConstantAtStart(instr->index()); |
| 1848 LOperand* length = UseRegister(instr->length()); | 1837 LOperand* length = UseRegister(instr->length()); |
| 1849 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); | 1838 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); |
| 1850 } | 1839 } |
| 1851 | 1840 |
| 1852 | 1841 |
| 1853 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( | 1842 LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( |
| 1854 HBoundsCheckBaseIndexInformation* instr) { | 1843 HBoundsCheckBaseIndexInformation* instr) { |
| 1855 UNREACHABLE(); | 1844 UNREACHABLE(); |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2608 | 2597 |
| 2609 | 2598 |
| 2610 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2599 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2611 LOperand* object = UseRegister(instr->object()); | 2600 LOperand* object = UseRegister(instr->object()); |
| 2612 LOperand* index = UseRegister(instr->index()); | 2601 LOperand* index = UseRegister(instr->index()); |
| 2613 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2602 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
| 2614 } | 2603 } |
| 2615 | 2604 |
| 2616 | 2605 |
| 2617 } } // namespace v8::internal | 2606 } } // namespace v8::internal |
| OLD | NEW |