| 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 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 | 1625 |
| 1626 LInstruction* LChunkBuilder::DoClassOfTestAndBranch( | 1626 LInstruction* LChunkBuilder::DoClassOfTestAndBranch( |
| 1627 HClassOfTestAndBranch* instr) { | 1627 HClassOfTestAndBranch* instr) { |
| 1628 LOperand* value = UseRegister(instr->value()); | 1628 LOperand* value = UseRegister(instr->value()); |
| 1629 return new(zone()) LClassOfTestAndBranch(value, | 1629 return new(zone()) LClassOfTestAndBranch(value, |
| 1630 TempRegister(), | 1630 TempRegister(), |
| 1631 TempRegister()); | 1631 TempRegister()); |
| 1632 } | 1632 } |
| 1633 | 1633 |
| 1634 | 1634 |
| 1635 LInstruction* LChunkBuilder::DoJSArrayLength(HJSArrayLength* instr) { | |
| 1636 LOperand* array = UseRegisterAtStart(instr->value()); | |
| 1637 return DefineAsRegister(new(zone()) LJSArrayLength(array)); | |
| 1638 } | |
| 1639 | |
| 1640 | |
| 1641 LInstruction* LChunkBuilder::DoFixedArrayBaseLength( | 1635 LInstruction* LChunkBuilder::DoFixedArrayBaseLength( |
| 1642 HFixedArrayBaseLength* instr) { | 1636 HFixedArrayBaseLength* instr) { |
| 1643 LOperand* array = UseRegisterAtStart(instr->value()); | 1637 LOperand* array = UseRegisterAtStart(instr->value()); |
| 1644 return DefineAsRegister(new(zone()) LFixedArrayBaseLength(array)); | 1638 return DefineAsRegister(new(zone()) LFixedArrayBaseLength(array)); |
| 1645 } | 1639 } |
| 1646 | 1640 |
| 1647 | 1641 |
| 1648 LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { | 1642 LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { |
| 1649 LOperand* map = UseRegisterAtStart(instr->value()); | 1643 LOperand* map = UseRegisterAtStart(instr->value()); |
| 1650 return DefineAsRegister(new(zone()) LMapEnumLength(map)); | 1644 return DefineAsRegister(new(zone()) LMapEnumLength(map)); |
| (...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2457 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2451 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2458 LOperand* object = UseRegister(instr->object()); | 2452 LOperand* object = UseRegister(instr->object()); |
| 2459 LOperand* index = UseTempRegister(instr->index()); | 2453 LOperand* index = UseTempRegister(instr->index()); |
| 2460 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2454 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2461 } | 2455 } |
| 2462 | 2456 |
| 2463 | 2457 |
| 2464 } } // namespace v8::internal | 2458 } } // namespace v8::internal |
| 2465 | 2459 |
| 2466 #endif // V8_TARGET_ARCH_X64 | 2460 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |