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 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1808 | 1808 |
1809 | 1809 |
1810 void LCodeGen::DoConstantD(LConstantD* instr) { | 1810 void LCodeGen::DoConstantD(LConstantD* instr) { |
1811 ASSERT(instr->result()->IsDoubleRegister()); | 1811 ASSERT(instr->result()->IsDoubleRegister()); |
1812 DwVfpRegister result = ToDoubleRegister(instr->result()); | 1812 DwVfpRegister result = ToDoubleRegister(instr->result()); |
1813 double v = instr->value(); | 1813 double v = instr->value(); |
1814 __ Vmov(result, v, scratch0()); | 1814 __ Vmov(result, v, scratch0()); |
1815 } | 1815 } |
1816 | 1816 |
1817 | 1817 |
| 1818 void LCodeGen::DoConstantE(LConstantE* instr) { |
| 1819 __ mov(ToRegister(instr->result()), Operand(instr->value())); |
| 1820 } |
| 1821 |
| 1822 |
1818 void LCodeGen::DoConstantT(LConstantT* instr) { | 1823 void LCodeGen::DoConstantT(LConstantT* instr) { |
1819 Handle<Object> value = instr->value(); | 1824 Handle<Object> value = instr->value(); |
1820 AllowDeferredHandleDereference smi_check; | 1825 AllowDeferredHandleDereference smi_check; |
1821 __ LoadObject(ToRegister(instr->result()), value); | 1826 __ LoadObject(ToRegister(instr->result()), value); |
1822 } | 1827 } |
1823 | 1828 |
1824 | 1829 |
1825 void LCodeGen::DoMapEnumLength(LMapEnumLength* instr) { | 1830 void LCodeGen::DoMapEnumLength(LMapEnumLength* instr) { |
1826 Register result = ToRegister(instr->result()); | 1831 Register result = ToRegister(instr->result()); |
1827 Register map = ToRegister(instr->value()); | 1832 Register map = ToRegister(instr->value()); |
(...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2988 } | 2993 } |
2989 | 2994 |
2990 __ bind(&skip_assignment); | 2995 __ bind(&skip_assignment); |
2991 } | 2996 } |
2992 | 2997 |
2993 | 2998 |
2994 void LCodeGen::DoLoadNamedField(LLoadNamedField* instr) { | 2999 void LCodeGen::DoLoadNamedField(LLoadNamedField* instr) { |
2995 HObjectAccess access = instr->hydrogen()->access(); | 3000 HObjectAccess access = instr->hydrogen()->access(); |
2996 int offset = access.offset(); | 3001 int offset = access.offset(); |
2997 Register object = ToRegister(instr->object()); | 3002 Register object = ToRegister(instr->object()); |
| 3003 |
| 3004 if (access.IsExternalMemory()) { |
| 3005 Register result = ToRegister(instr->result()); |
| 3006 __ ldr(result, MemOperand(object, offset)); |
| 3007 return; |
| 3008 } |
| 3009 |
2998 if (instr->hydrogen()->representation().IsDouble()) { | 3010 if (instr->hydrogen()->representation().IsDouble()) { |
2999 DwVfpRegister result = ToDoubleRegister(instr->result()); | 3011 DwVfpRegister result = ToDoubleRegister(instr->result()); |
3000 __ vldr(result, FieldMemOperand(object, offset)); | 3012 __ vldr(result, FieldMemOperand(object, offset)); |
3001 return; | 3013 return; |
3002 } | 3014 } |
3003 | 3015 |
3004 Register result = ToRegister(instr->result()); | 3016 Register result = ToRegister(instr->result()); |
3005 if (access.IsInobject()) { | 3017 if (access.IsInobject()) { |
3006 __ ldr(result, FieldMemOperand(object, offset)); | 3018 __ ldr(result, FieldMemOperand(object, offset)); |
3007 } else { | 3019 } else { |
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4167 Register base = ToRegister(instr->base_object()); | 4179 Register base = ToRegister(instr->base_object()); |
4168 __ add(result, base, Operand(instr->offset())); | 4180 __ add(result, base, Operand(instr->offset())); |
4169 } | 4181 } |
4170 | 4182 |
4171 | 4183 |
4172 void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) { | 4184 void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) { |
4173 Representation representation = instr->representation(); | 4185 Representation representation = instr->representation(); |
4174 | 4186 |
4175 Register object = ToRegister(instr->object()); | 4187 Register object = ToRegister(instr->object()); |
4176 Register scratch = scratch0(); | 4188 Register scratch = scratch0(); |
4177 | |
4178 HObjectAccess access = instr->hydrogen()->access(); | 4189 HObjectAccess access = instr->hydrogen()->access(); |
4179 int offset = access.offset(); | 4190 int offset = access.offset(); |
4180 | 4191 |
| 4192 if (access.IsExternalMemory()) { |
| 4193 Register value = ToRegister(instr->value()); |
| 4194 __ str(value, MemOperand(object, offset)); |
| 4195 return; |
| 4196 } |
| 4197 |
4181 Handle<Map> transition = instr->transition(); | 4198 Handle<Map> transition = instr->transition(); |
4182 | 4199 |
4183 if (FLAG_track_heap_object_fields && representation.IsHeapObject()) { | 4200 if (FLAG_track_heap_object_fields && representation.IsHeapObject()) { |
4184 Register value = ToRegister(instr->value()); | 4201 Register value = ToRegister(instr->value()); |
4185 if (!instr->hydrogen()->value()->type().IsHeapObject()) { | 4202 if (!instr->hydrogen()->value()->type().IsHeapObject()) { |
4186 __ SmiTst(value); | 4203 __ SmiTst(value); |
4187 DeoptimizeIf(eq, instr->environment()); | 4204 DeoptimizeIf(eq, instr->environment()); |
4188 } | 4205 } |
4189 } else if (FLAG_track_double_fields && representation.IsDouble()) { | 4206 } else if (FLAG_track_double_fields && representation.IsDouble()) { |
4190 ASSERT(transition.is_null()); | 4207 ASSERT(transition.is_null()); |
(...skipping 1643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5834 __ sub(scratch, result, Operand::PointerOffsetFromSmiKey(index)); | 5851 __ sub(scratch, result, Operand::PointerOffsetFromSmiKey(index)); |
5835 __ ldr(result, FieldMemOperand(scratch, | 5852 __ ldr(result, FieldMemOperand(scratch, |
5836 FixedArray::kHeaderSize - kPointerSize)); | 5853 FixedArray::kHeaderSize - kPointerSize)); |
5837 __ bind(&done); | 5854 __ bind(&done); |
5838 } | 5855 } |
5839 | 5856 |
5840 | 5857 |
5841 #undef __ | 5858 #undef __ |
5842 | 5859 |
5843 } } // namespace v8::internal | 5860 } } // namespace v8::internal |
OLD | NEW |