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 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1580 } | 1580 } |
1581 | 1581 |
1582 | 1582 |
1583 LInstruction* LChunkBuilder::DoFixedArrayBaseLength( | 1583 LInstruction* LChunkBuilder::DoFixedArrayBaseLength( |
1584 HFixedArrayBaseLength* instr) { | 1584 HFixedArrayBaseLength* instr) { |
1585 LOperand* array = UseRegisterAtStart(instr->value()); | 1585 LOperand* array = UseRegisterAtStart(instr->value()); |
1586 return DefineAsRegister(new(zone()) LFixedArrayBaseLength(array)); | 1586 return DefineAsRegister(new(zone()) LFixedArrayBaseLength(array)); |
1587 } | 1587 } |
1588 | 1588 |
1589 | 1589 |
| 1590 LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { |
| 1591 LOperand* map = UseRegisterAtStart(instr->value()); |
| 1592 return DefineAsRegister(new(zone()) LMapEnumLength(map)); |
| 1593 } |
| 1594 |
| 1595 |
1590 LInstruction* LChunkBuilder::DoElementsKind(HElementsKind* instr) { | 1596 LInstruction* LChunkBuilder::DoElementsKind(HElementsKind* instr) { |
1591 LOperand* object = UseRegisterAtStart(instr->value()); | 1597 LOperand* object = UseRegisterAtStart(instr->value()); |
1592 return DefineAsRegister(new(zone()) LElementsKind(object)); | 1598 return DefineAsRegister(new(zone()) LElementsKind(object)); |
1593 } | 1599 } |
1594 | 1600 |
1595 | 1601 |
1596 LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { | 1602 LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { |
1597 LOperand* object = UseRegister(instr->value()); | 1603 LOperand* object = UseRegister(instr->value()); |
1598 LValueOf* result = new(zone()) LValueOf(object, TempRegister()); | 1604 LValueOf* result = new(zone()) LValueOf(object, TempRegister()); |
1599 return DefineSameAsFirst(result); | 1605 return DefineSameAsFirst(result); |
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2422 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2428 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2423 LOperand* object = UseRegister(instr->object()); | 2429 LOperand* object = UseRegister(instr->object()); |
2424 LOperand* index = UseTempRegister(instr->index()); | 2430 LOperand* index = UseTempRegister(instr->index()); |
2425 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2431 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2426 } | 2432 } |
2427 | 2433 |
2428 | 2434 |
2429 } } // namespace v8::internal | 2435 } } // namespace v8::internal |
2430 | 2436 |
2431 #endif // V8_TARGET_ARCH_IA32 | 2437 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |