OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/crankshaft/ia32/lithium-ia32.h" | 5 #include "src/crankshaft/ia32/lithium-ia32.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #if V8_TARGET_ARCH_IA32 | 9 #if V8_TARGET_ARCH_IA32 |
10 | 10 |
(...skipping 1770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1781 | 1781 |
1782 LInstruction* LChunkBuilder::DoClassOfTestAndBranch( | 1782 LInstruction* LChunkBuilder::DoClassOfTestAndBranch( |
1783 HClassOfTestAndBranch* instr) { | 1783 HClassOfTestAndBranch* instr) { |
1784 DCHECK(instr->value()->representation().IsTagged()); | 1784 DCHECK(instr->value()->representation().IsTagged()); |
1785 return new(zone()) LClassOfTestAndBranch(UseRegister(instr->value()), | 1785 return new(zone()) LClassOfTestAndBranch(UseRegister(instr->value()), |
1786 TempRegister(), | 1786 TempRegister(), |
1787 TempRegister()); | 1787 TempRegister()); |
1788 } | 1788 } |
1789 | 1789 |
1790 | 1790 |
1791 LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { | |
1792 LOperand* map = UseRegisterAtStart(instr->value()); | |
1793 return DefineAsRegister(new(zone()) LMapEnumLength(map)); | |
1794 } | |
1795 | |
1796 | |
1797 LInstruction* LChunkBuilder::DoSeqStringGetChar(HSeqStringGetChar* instr) { | 1791 LInstruction* LChunkBuilder::DoSeqStringGetChar(HSeqStringGetChar* instr) { |
1798 LOperand* string = UseRegisterAtStart(instr->string()); | 1792 LOperand* string = UseRegisterAtStart(instr->string()); |
1799 LOperand* index = UseRegisterOrConstantAtStart(instr->index()); | 1793 LOperand* index = UseRegisterOrConstantAtStart(instr->index()); |
1800 return DefineAsRegister(new(zone()) LSeqStringGetChar(string, index)); | 1794 return DefineAsRegister(new(zone()) LSeqStringGetChar(string, index)); |
1801 } | 1795 } |
1802 | 1796 |
1803 | 1797 |
1804 LOperand* LChunkBuilder::GetSeqStringSetCharOperand(HSeqStringSetChar* instr) { | 1798 LOperand* LChunkBuilder::GetSeqStringSetCharOperand(HSeqStringSetChar* instr) { |
1805 if (instr->encoding() == String::ONE_BYTE_ENCODING) { | 1799 if (instr->encoding() == String::ONE_BYTE_ENCODING) { |
1806 if (FLAG_debug_code) { | 1800 if (FLAG_debug_code) { |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2694 LAllocateBlockContext* result = | 2688 LAllocateBlockContext* result = |
2695 new(zone()) LAllocateBlockContext(context, function); | 2689 new(zone()) LAllocateBlockContext(context, function); |
2696 return MarkAsCall(DefineFixed(result, esi), instr); | 2690 return MarkAsCall(DefineFixed(result, esi), instr); |
2697 } | 2691 } |
2698 | 2692 |
2699 | 2693 |
2700 } // namespace internal | 2694 } // namespace internal |
2701 } // namespace v8 | 2695 } // namespace v8 |
2702 | 2696 |
2703 #endif // V8_TARGET_ARCH_IA32 | 2697 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |