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