OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1641 return NULL; | 1641 return NULL; |
1642 } | 1642 } |
1643 | 1643 |
1644 | 1644 |
1645 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { | 1645 LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { |
1646 LOperand* value = UseFixed(instr->value(), rax); | 1646 LOperand* value = UseFixed(instr->value(), rax); |
1647 return MarkAsCall(new LThrow(value), instr); | 1647 return MarkAsCall(new LThrow(value), instr); |
1648 } | 1648 } |
1649 | 1649 |
1650 | 1650 |
| 1651 LInstruction* LChunkBuilder::DoForceRepresentation(HForceRepresentation* bad) { |
| 1652 // All HForceRepresentation instructions should be eliminated in the |
| 1653 // representation change phase of Hydrogen. |
| 1654 UNREACHABLE(); |
| 1655 return NULL; |
| 1656 } |
| 1657 |
| 1658 |
1651 LInstruction* LChunkBuilder::DoChange(HChange* instr) { | 1659 LInstruction* LChunkBuilder::DoChange(HChange* instr) { |
1652 Representation from = instr->from(); | 1660 Representation from = instr->from(); |
1653 Representation to = instr->to(); | 1661 Representation to = instr->to(); |
1654 if (from.IsTagged()) { | 1662 if (from.IsTagged()) { |
1655 if (to.IsDouble()) { | 1663 if (to.IsDouble()) { |
1656 LOperand* value = UseRegister(instr->value()); | 1664 LOperand* value = UseRegister(instr->value()); |
1657 LNumberUntagD* res = new LNumberUntagD(value); | 1665 LNumberUntagD* res = new LNumberUntagD(value); |
1658 return AssignEnvironment(DefineAsRegister(res)); | 1666 return AssignEnvironment(DefineAsRegister(res)); |
1659 } else { | 1667 } else { |
1660 ASSERT(to.IsInteger32()); | 1668 ASSERT(to.IsInteger32()); |
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2198 LOperand* key = UseOrConstantAtStart(instr->key()); | 2206 LOperand* key = UseOrConstantAtStart(instr->key()); |
2199 LOperand* object = UseOrConstantAtStart(instr->object()); | 2207 LOperand* object = UseOrConstantAtStart(instr->object()); |
2200 LIn* result = new LIn(key, object); | 2208 LIn* result = new LIn(key, object); |
2201 return MarkAsCall(DefineFixed(result, rax), instr); | 2209 return MarkAsCall(DefineFixed(result, rax), instr); |
2202 } | 2210 } |
2203 | 2211 |
2204 | 2212 |
2205 } } // namespace v8::internal | 2213 } } // namespace v8::internal |
2206 | 2214 |
2207 #endif // V8_TARGET_ARCH_X64 | 2215 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |