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 #if V8_TARGET_ARCH_ARM | 5 #if V8_TARGET_ARCH_ARM |
6 | 6 |
7 #include "src/codegen.h" | 7 #include "src/codegen.h" |
8 #include "src/ic/ic.h" | 8 #include "src/ic/ic.h" |
9 #include "src/ic/stub-cache.h" | 9 #include "src/ic/stub-cache.h" |
10 #include "src/interface-descriptors.h" | 10 #include "src/interface-descriptors.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 DCHECK(!scratch.is(no_reg)); | 113 DCHECK(!scratch.is(no_reg)); |
114 DCHECK(!extra.is(no_reg)); | 114 DCHECK(!extra.is(no_reg)); |
115 DCHECK(!extra2.is(no_reg)); | 115 DCHECK(!extra2.is(no_reg)); |
116 DCHECK(!extra3.is(no_reg)); | 116 DCHECK(!extra3.is(no_reg)); |
117 | 117 |
118 #ifdef DEBUG | 118 #ifdef DEBUG |
119 // If vector-based ics are in use, ensure that scratch, extra, extra2 and | 119 // If vector-based ics are in use, ensure that scratch, extra, extra2 and |
120 // extra3 don't conflict with the vector and slot registers, which need | 120 // extra3 don't conflict with the vector and slot registers, which need |
121 // to be preserved for a handler call or miss. | 121 // to be preserved for a handler call or miss. |
122 if (IC::ICUseVector(ic_kind)) { | 122 if (IC::ICUseVector(ic_kind)) { |
123 Register vector = LoadWithVectorDescriptor::VectorRegister(); | 123 Register vector, slot; |
124 Register slot = LoadWithVectorDescriptor::SlotRegister(); | 124 if (ic_kind == Code::STORE_IC || ic_kind == Code::KEYED_STORE_IC) { |
| 125 vector = VectorStoreICDescriptor::VectorRegister(); |
| 126 slot = VectorStoreICDescriptor::SlotRegister(); |
| 127 } else { |
| 128 vector = LoadWithVectorDescriptor::VectorRegister(); |
| 129 slot = LoadWithVectorDescriptor::SlotRegister(); |
| 130 } |
125 DCHECK(!AreAliased(vector, slot, scratch, extra, extra2, extra3)); | 131 DCHECK(!AreAliased(vector, slot, scratch, extra, extra2, extra3)); |
126 } | 132 } |
127 #endif | 133 #endif |
128 | 134 |
129 Counters* counters = masm->isolate()->counters(); | 135 Counters* counters = masm->isolate()->counters(); |
130 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, | 136 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, |
131 extra3); | 137 extra3); |
132 | 138 |
133 // Check that the receiver isn't a smi. | 139 // Check that the receiver isn't a smi. |
134 __ JumpIfSmi(receiver, &miss); | 140 __ JumpIfSmi(receiver, &miss); |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, | 173 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, |
168 extra3); | 174 extra3); |
169 } | 175 } |
170 | 176 |
171 | 177 |
172 #undef __ | 178 #undef __ |
173 } // namespace internal | 179 } // namespace internal |
174 } // namespace v8 | 180 } // namespace v8 |
175 | 181 |
176 #endif // V8_TARGET_ARCH_ARM | 182 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |