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 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1741 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( | 1741 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( |
1742 HCompareObjectEqAndBranch* instr) { | 1742 HCompareObjectEqAndBranch* instr) { |
1743 LOperand* left = UseRegisterAtStart(instr->left()); | 1743 LOperand* left = UseRegisterAtStart(instr->left()); |
1744 LOperand* right = UseOrConstantAtStart(instr->right()); | 1744 LOperand* right = UseOrConstantAtStart(instr->right()); |
1745 return new(zone()) LCmpObjectEqAndBranch(left, right); | 1745 return new(zone()) LCmpObjectEqAndBranch(left, right); |
1746 } | 1746 } |
1747 | 1747 |
1748 | 1748 |
1749 LInstruction* LChunkBuilder::DoCompareHoleAndBranch( | 1749 LInstruction* LChunkBuilder::DoCompareHoleAndBranch( |
1750 HCompareHoleAndBranch* instr) { | 1750 HCompareHoleAndBranch* instr) { |
1751 LOperand* object = UseRegisterAtStart(instr->object()); | 1751 LOperand* value = UseRegisterAtStart(instr->value()); |
1752 return new(zone()) LCmpHoleAndBranch(object); | 1752 return new(zone()) LCmpHoleAndBranch(value); |
1753 } | 1753 } |
1754 | 1754 |
1755 | 1755 |
1756 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { | 1756 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
1757 ASSERT(instr->value()->representation().IsSmiOrTagged()); | 1757 ASSERT(instr->value()->representation().IsSmiOrTagged()); |
1758 LOperand* temp = TempRegister(); | 1758 LOperand* temp = TempRegister(); |
1759 return new(zone()) LIsObjectAndBranch(UseRegister(instr->value()), temp); | 1759 return new(zone()) LIsObjectAndBranch(UseRegister(instr->value()), temp); |
1760 } | 1760 } |
1761 | 1761 |
1762 | 1762 |
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2714 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2714 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2715 LOperand* object = UseRegister(instr->object()); | 2715 LOperand* object = UseRegister(instr->object()); |
2716 LOperand* index = UseTempRegister(instr->index()); | 2716 LOperand* index = UseTempRegister(instr->index()); |
2717 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2717 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2718 } | 2718 } |
2719 | 2719 |
2720 | 2720 |
2721 } } // namespace v8::internal | 2721 } } // namespace v8::internal |
2722 | 2722 |
2723 #endif // V8_TARGET_ARCH_IA32 | 2723 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |