| 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 1633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1644 ASSERT(r.IsDouble()); | 1644 ASSERT(r.IsDouble()); |
| 1645 ASSERT(instr->left()->representation().IsDouble()); | 1645 ASSERT(instr->left()->representation().IsDouble()); |
| 1646 ASSERT(instr->right()->representation().IsDouble()); | 1646 ASSERT(instr->right()->representation().IsDouble()); |
| 1647 LOperand* left = UseRegisterAtStart(instr->left()); | 1647 LOperand* left = UseRegisterAtStart(instr->left()); |
| 1648 LOperand* right = UseRegisterAtStart(instr->right()); | 1648 LOperand* right = UseRegisterAtStart(instr->right()); |
| 1649 return new(zone()) LCompareNumericAndBranch(left, right); | 1649 return new(zone()) LCompareNumericAndBranch(left, right); |
| 1650 } | 1650 } |
| 1651 } | 1651 } |
| 1652 | 1652 |
| 1653 | 1653 |
| 1654 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( | 1654 LInstruction* LChunkBuilder::DoCompareObjectAndBranch( |
| 1655 HCompareObjectEqAndBranch* instr) { | 1655 HCompareObjectAndBranch* instr) { |
| 1656 LOperand* left = UseRegisterAtStart(instr->left()); | 1656 LOperand* left = UseRegisterAtStart(instr->left()); |
| 1657 LOperand* right = UseRegisterAtStart(instr->right()); | 1657 LOperand* right = UseRegisterAtStart(instr->right()); |
| 1658 return new(zone()) LCmpObjectEqAndBranch(left, right); | 1658 return new(zone()) LCmpObjectAndBranch(left, right); |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 | 1661 |
| 1662 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { | 1662 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
| 1663 ASSERT(instr->value()->representation().IsTagged()); | 1663 ASSERT(instr->value()->representation().IsTagged()); |
| 1664 LOperand* temp = TempRegister(); | 1664 LOperand* temp = TempRegister(); |
| 1665 return new(zone()) LIsObjectAndBranch(UseRegisterAtStart(instr->value()), | 1665 return new(zone()) LIsObjectAndBranch(UseRegisterAtStart(instr->value()), |
| 1666 temp); | 1666 temp); |
| 1667 } | 1667 } |
| 1668 | 1668 |
| (...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2560 | 2560 |
| 2561 | 2561 |
| 2562 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2562 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2563 LOperand* object = UseRegister(instr->object()); | 2563 LOperand* object = UseRegister(instr->object()); |
| 2564 LOperand* index = UseRegister(instr->index()); | 2564 LOperand* index = UseRegister(instr->index()); |
| 2565 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2565 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
| 2566 } | 2566 } |
| 2567 | 2567 |
| 2568 | 2568 |
| 2569 } } // namespace v8::internal | 2569 } } // namespace v8::internal |
| OLD | NEW |