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 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1597 } | 1597 } |
1598 | 1598 |
1599 | 1599 |
1600 LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { | 1600 LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { |
1601 LOperand* object = UseRegister(instr->value()); | 1601 LOperand* object = UseRegister(instr->value()); |
1602 LValueOf* result = new(zone()) LValueOf(object, TempRegister()); | 1602 LValueOf* result = new(zone()) LValueOf(object, TempRegister()); |
1603 return DefineAsRegister(result); | 1603 return DefineAsRegister(result); |
1604 } | 1604 } |
1605 | 1605 |
1606 | 1606 |
| 1607 LInstruction* LChunkBuilder::DoDateField(HDateField* instr) { |
| 1608 LOperand* object = UseFixed(instr->value(), a0); |
| 1609 LDateField* result = new LDateField(object, FixedTemp(a1), instr->index()); |
| 1610 return MarkAsCall(DefineFixed(result, v0), instr); |
| 1611 } |
| 1612 |
| 1613 |
1607 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { | 1614 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { |
1608 LOperand* value = UseRegisterAtStart(instr->index()); | 1615 LOperand* value = UseRegisterAtStart(instr->index()); |
1609 LOperand* length = UseRegister(instr->length()); | 1616 LOperand* length = UseRegister(instr->length()); |
1610 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); | 1617 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); |
1611 } | 1618 } |
1612 | 1619 |
1613 | 1620 |
1614 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { | 1621 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { |
1615 // The control instruction marking the end of a block that completed | 1622 // The control instruction marking the end of a block that completed |
1616 // abruptly (e.g., threw an exception). There is nothing specific to do. | 1623 // abruptly (e.g., threw an exception). There is nothing specific to do. |
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2306 | 2313 |
2307 | 2314 |
2308 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2315 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2309 LOperand* object = UseRegister(instr->object()); | 2316 LOperand* object = UseRegister(instr->object()); |
2310 LOperand* index = UseRegister(instr->index()); | 2317 LOperand* index = UseRegister(instr->index()); |
2311 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2318 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
2312 } | 2319 } |
2313 | 2320 |
2314 | 2321 |
2315 } } // namespace v8::internal | 2322 } } // namespace v8::internal |
OLD | NEW |