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 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1636 | 1636 |
1637 | 1637 |
1638 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( | 1638 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( |
1639 HCompareObjectEqAndBranch* instr) { | 1639 HCompareObjectEqAndBranch* instr) { |
1640 LOperand* left = UseRegisterAtStart(instr->left()); | 1640 LOperand* left = UseRegisterAtStart(instr->left()); |
1641 LOperand* right = UseRegisterOrConstantAtStart(instr->right()); | 1641 LOperand* right = UseRegisterOrConstantAtStart(instr->right()); |
1642 return new(zone()) LCmpObjectEqAndBranch(left, right); | 1642 return new(zone()) LCmpObjectEqAndBranch(left, right); |
1643 } | 1643 } |
1644 | 1644 |
1645 | 1645 |
| 1646 LInstruction* LChunkBuilder::DoCompareHoleAndBranch( |
| 1647 HCompareHoleAndBranch* instr) { |
| 1648 LOperand* object = UseRegisterAtStart(instr->object()); |
| 1649 return new(zone()) LCmpHoleAndBranch(object); |
| 1650 } |
| 1651 |
| 1652 |
1646 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { | 1653 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
1647 ASSERT(instr->value()->representation().IsTagged()); | 1654 ASSERT(instr->value()->representation().IsTagged()); |
1648 return new(zone()) LIsObjectAndBranch(UseRegisterAtStart(instr->value())); | 1655 return new(zone()) LIsObjectAndBranch(UseRegisterAtStart(instr->value())); |
1649 } | 1656 } |
1650 | 1657 |
1651 | 1658 |
1652 LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) { | 1659 LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) { |
1653 ASSERT(instr->value()->representation().IsTagged()); | 1660 ASSERT(instr->value()->representation().IsTagged()); |
1654 LOperand* value = UseRegisterAtStart(instr->value()); | 1661 LOperand* value = UseRegisterAtStart(instr->value()); |
1655 LOperand* temp = TempRegister(); | 1662 LOperand* temp = TempRegister(); |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2542 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2549 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2543 LOperand* object = UseRegister(instr->object()); | 2550 LOperand* object = UseRegister(instr->object()); |
2544 LOperand* index = UseTempRegister(instr->index()); | 2551 LOperand* index = UseTempRegister(instr->index()); |
2545 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2552 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2546 } | 2553 } |
2547 | 2554 |
2548 | 2555 |
2549 } } // namespace v8::internal | 2556 } } // namespace v8::internal |
2550 | 2557 |
2551 #endif // V8_TARGET_ARCH_X64 | 2558 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |