| 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 1679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1690 TempRegister()); | 1690 TempRegister()); |
| 1691 } | 1691 } |
| 1692 | 1692 |
| 1693 | 1693 |
| 1694 LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { | 1694 LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { |
| 1695 LOperand* map = UseRegisterAtStart(instr->value()); | 1695 LOperand* map = UseRegisterAtStart(instr->value()); |
| 1696 return DefineAsRegister(new(zone()) LMapEnumLength(map)); | 1696 return DefineAsRegister(new(zone()) LMapEnumLength(map)); |
| 1697 } | 1697 } |
| 1698 | 1698 |
| 1699 | 1699 |
| 1700 LInstruction* LChunkBuilder::DoElementsKind(HElementsKind* instr) { | |
| 1701 LOperand* object = UseRegisterAtStart(instr->value()); | |
| 1702 return DefineAsRegister(new(zone()) LElementsKind(object)); | |
| 1703 } | |
| 1704 | |
| 1705 | |
| 1706 LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { | 1700 LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { |
| 1707 LOperand* object = UseRegister(instr->value()); | 1701 LOperand* object = UseRegister(instr->value()); |
| 1708 LValueOf* result = new(zone()) LValueOf(object, TempRegister()); | 1702 LValueOf* result = new(zone()) LValueOf(object, TempRegister()); |
| 1709 return DefineSameAsFirst(result); | 1703 return DefineSameAsFirst(result); |
| 1710 } | 1704 } |
| 1711 | 1705 |
| 1712 | 1706 |
| 1713 LInstruction* LChunkBuilder::DoDateField(HDateField* instr) { | 1707 LInstruction* LChunkBuilder::DoDateField(HDateField* instr) { |
| 1714 LOperand* date = UseFixed(instr->value(), eax); | 1708 LOperand* date = UseFixed(instr->value(), eax); |
| 1715 LDateField* result = | 1709 LDateField* result = |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2601 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2595 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2602 LOperand* object = UseRegister(instr->object()); | 2596 LOperand* object = UseRegister(instr->object()); |
| 2603 LOperand* index = UseTempRegister(instr->index()); | 2597 LOperand* index = UseTempRegister(instr->index()); |
| 2604 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2598 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2605 } | 2599 } |
| 2606 | 2600 |
| 2607 | 2601 |
| 2608 } } // namespace v8::internal | 2602 } } // namespace v8::internal |
| 2609 | 2603 |
| 2610 #endif // V8_TARGET_ARCH_IA32 | 2604 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |