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 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1786 | 1786 |
1787 | 1787 |
1788 void LCodeGen::DoConstantD(LConstantD* instr) { | 1788 void LCodeGen::DoConstantD(LConstantD* instr) { |
1789 ASSERT(instr->result()->IsDoubleRegister()); | 1789 ASSERT(instr->result()->IsDoubleRegister()); |
1790 DwVfpRegister result = ToDoubleRegister(instr->result()); | 1790 DwVfpRegister result = ToDoubleRegister(instr->result()); |
1791 double v = instr->value(); | 1791 double v = instr->value(); |
1792 __ Vmov(result, v, scratch0()); | 1792 __ Vmov(result, v, scratch0()); |
1793 } | 1793 } |
1794 | 1794 |
1795 | 1795 |
| 1796 void LCodeGen::DoConstantE(LConstantE* instr) { |
| 1797 __ mov(ToRegister(instr->result()), Operand(instr->value())); |
| 1798 } |
| 1799 |
| 1800 |
1796 void LCodeGen::DoConstantT(LConstantT* instr) { | 1801 void LCodeGen::DoConstantT(LConstantT* instr) { |
1797 Handle<Object> value = instr->value(); | 1802 Handle<Object> value = instr->value(); |
1798 AllowDeferredHandleDereference smi_check; | 1803 AllowDeferredHandleDereference smi_check; |
1799 __ LoadObject(ToRegister(instr->result()), value); | 1804 __ LoadObject(ToRegister(instr->result()), value); |
1800 } | 1805 } |
1801 | 1806 |
1802 | 1807 |
1803 void LCodeGen::DoMapEnumLength(LMapEnumLength* instr) { | 1808 void LCodeGen::DoMapEnumLength(LMapEnumLength* instr) { |
1804 Register result = ToRegister(instr->result()); | 1809 Register result = ToRegister(instr->result()); |
1805 Register map = ToRegister(instr->value()); | 1810 Register map = ToRegister(instr->value()); |
(...skipping 4014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5820 __ sub(scratch, result, Operand::PointerOffsetFromSmiKey(index)); | 5825 __ sub(scratch, result, Operand::PointerOffsetFromSmiKey(index)); |
5821 __ ldr(result, FieldMemOperand(scratch, | 5826 __ ldr(result, FieldMemOperand(scratch, |
5822 FixedArray::kHeaderSize - kPointerSize)); | 5827 FixedArray::kHeaderSize - kPointerSize)); |
5823 __ bind(&done); | 5828 __ bind(&done); |
5824 } | 5829 } |
5825 | 5830 |
5826 | 5831 |
5827 #undef __ | 5832 #undef __ |
5828 | 5833 |
5829 } } // namespace v8::internal | 5834 } } // namespace v8::internal |
OLD | NEW |