OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_ARM64 | 7 #if V8_TARGET_ARCH_ARM64 |
8 | 8 |
9 #include "src/ic/ic.h" | 9 #include "src/ic/ic.h" |
10 #include "src/ic/ic-compiler.h" | 10 #include "src/ic/ic-compiler.h" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 } | 58 } |
59 } | 59 } |
60 | 60 |
61 Label number_case; | 61 Label number_case; |
62 Label* smi_target = IncludesNumberMap(maps) ? &number_case : &miss; | 62 Label* smi_target = IncludesNumberMap(maps) ? &number_case : &miss; |
63 __ JumpIfSmi(receiver(), smi_target); | 63 __ JumpIfSmi(receiver(), smi_target); |
64 | 64 |
65 // Polymorphic keyed stores may use the map register | 65 // Polymorphic keyed stores may use the map register |
66 Register map_reg = scratch1(); | 66 Register map_reg = scratch1(); |
67 DCHECK(kind() != Code::KEYED_STORE_IC || | 67 DCHECK(kind() != Code::KEYED_STORE_IC || |
68 map_reg.is(ElementTransitionAndStoreDescriptor::MapRegister())); | 68 map_reg.is(StoreTransitionDescriptor::MapRegister())); |
69 __ Ldr(map_reg, FieldMemOperand(receiver(), HeapObject::kMapOffset)); | 69 __ Ldr(map_reg, FieldMemOperand(receiver(), HeapObject::kMapOffset)); |
70 int receiver_count = maps->length(); | 70 int receiver_count = maps->length(); |
71 int number_of_handled_maps = 0; | 71 int number_of_handled_maps = 0; |
72 for (int current = 0; current < receiver_count; ++current) { | 72 for (int current = 0; current < receiver_count; ++current) { |
73 Handle<Map> map = maps->at(current); | 73 Handle<Map> map = maps->at(current); |
74 if (!map->is_deprecated()) { | 74 if (!map->is_deprecated()) { |
75 number_of_handled_maps++; | 75 number_of_handled_maps++; |
76 Handle<WeakCell> cell = Map::WeakCellForMap(map); | 76 Handle<WeakCell> cell = Map::WeakCellForMap(map); |
77 __ CmpWeakValue(map_reg, cell, scratch2()); | 77 __ CmpWeakValue(map_reg, cell, scratch2()); |
78 Label try_next; | 78 Label try_next; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 129 |
130 return GetCode(kind(), Code::NORMAL, factory()->empty_string(), POLYMORPHIC); | 130 return GetCode(kind(), Code::NORMAL, factory()->empty_string(), POLYMORPHIC); |
131 } | 131 } |
132 | 132 |
133 | 133 |
134 #undef __ | 134 #undef __ |
135 } // namespace internal | 135 } // namespace internal |
136 } // namespace v8 | 136 } // namespace v8 |
137 | 137 |
138 #endif // V8_TARGET_ARCH_ARM64 | 138 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |