OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_ARM64 | 5 #if V8_TARGET_ARCH_ARM64 |
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" |
11 | 11 |
12 namespace v8 { | 12 namespace v8 { |
13 namespace internal { | 13 namespace internal { |
14 | 14 |
15 | 15 |
16 #define __ ACCESS_MASM(masm) | 16 #define __ ACCESS_MASM(masm) |
17 | 17 |
18 | 18 |
19 // Probe primary or secondary table. | 19 // Probe primary or secondary table. |
20 // If the entry is found in the cache, the generated code jump to the first | 20 // If the entry is found in the cache, the generated code jump to the first |
21 // instruction of the stub in the cache. | 21 // instruction of the stub in the cache. |
22 // If there is a miss the code fall trough. | 22 // If there is a miss the code fall trough. |
23 // | 23 // |
24 // 'receiver', 'name' and 'offset' registers are preserved on miss. | 24 // 'receiver', 'name' and 'offset' registers are preserved on miss. |
25 static void ProbeTable(StubCache* stub_cache, MacroAssembler* masm, | 25 static void ProbeTable(StubCache* stub_cache, MacroAssembler* masm, |
26 StubCache::Table table, Register receiver, Register name, | 26 Code::Flags flags, StubCache::Table table, |
27 Register offset, Register scratch, Register scratch2, | 27 Register receiver, Register name, Register offset, |
28 Register scratch3) { | 28 Register scratch, Register scratch2, Register scratch3) { |
29 // Some code below relies on the fact that the Entry struct contains | 29 // Some code below relies on the fact that the Entry struct contains |
30 // 3 pointers (name, code, map). | 30 // 3 pointers (name, code, map). |
31 STATIC_ASSERT(sizeof(StubCache::Entry) == (3 * kPointerSize)); | 31 STATIC_ASSERT(sizeof(StubCache::Entry) == (3 * kPointerSize)); |
32 | 32 |
33 ExternalReference key_offset(stub_cache->key_reference(table)); | 33 ExternalReference key_offset(stub_cache->key_reference(table)); |
34 ExternalReference value_offset(stub_cache->value_reference(table)); | 34 ExternalReference value_offset(stub_cache->value_reference(table)); |
35 ExternalReference map_offset(stub_cache->map_reference(table)); | 35 ExternalReference map_offset(stub_cache->map_reference(table)); |
36 | 36 |
37 uintptr_t key_off_addr = reinterpret_cast<uintptr_t>(key_offset.address()); | 37 uintptr_t key_off_addr = reinterpret_cast<uintptr_t>(key_offset.address()); |
38 uintptr_t value_off_addr = | 38 uintptr_t value_off_addr = |
(...skipping 18 matching lines...) Expand all Loading... |
57 | 57 |
58 // Check the map matches. | 58 // Check the map matches. |
59 __ Ldr(scratch2, MemOperand(scratch, map_off_addr - key_off_addr)); | 59 __ Ldr(scratch2, MemOperand(scratch, map_off_addr - key_off_addr)); |
60 __ Ldr(scratch3, FieldMemOperand(receiver, HeapObject::kMapOffset)); | 60 __ Ldr(scratch3, FieldMemOperand(receiver, HeapObject::kMapOffset)); |
61 __ Cmp(scratch2, scratch3); | 61 __ Cmp(scratch2, scratch3); |
62 __ B(ne, &miss); | 62 __ B(ne, &miss); |
63 | 63 |
64 // Get the code entry from the cache. | 64 // Get the code entry from the cache. |
65 __ Ldr(scratch, MemOperand(scratch, value_off_addr - key_off_addr)); | 65 __ Ldr(scratch, MemOperand(scratch, value_off_addr - key_off_addr)); |
66 | 66 |
67 #ifdef DEBUG | |
68 // Check that the flags match what we're looking for. | 67 // Check that the flags match what we're looking for. |
69 Code::Flags flags = Code::RemoveHolderFromFlags( | |
70 Code::ComputeHandlerFlags(stub_cache->ic_kind())); | |
71 __ Ldr(scratch2.W(), FieldMemOperand(scratch, Code::kFlagsOffset)); | 68 __ Ldr(scratch2.W(), FieldMemOperand(scratch, Code::kFlagsOffset)); |
72 __ Bic(scratch2.W(), scratch2.W(), Code::kFlagsNotUsedInLookup); | 69 __ Bic(scratch2.W(), scratch2.W(), Code::kFlagsNotUsedInLookup); |
73 __ Cmp(scratch2.W(), flags); | 70 __ Cmp(scratch2.W(), flags); |
74 __ B(ne, &miss); | 71 __ B(ne, &miss); |
75 __ Check(eq, kUnexpectedValue); | |
76 | 72 |
| 73 #ifdef DEBUG |
77 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { | 74 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { |
78 __ B(&miss); | 75 __ B(&miss); |
79 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { | 76 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { |
80 __ B(&miss); | 77 __ B(&miss); |
81 } | 78 } |
82 #endif | 79 #endif |
83 | 80 |
84 // Jump to the first instruction in the code stub. | 81 // Jump to the first instruction in the code stub. |
85 __ Add(scratch, scratch, Code::kHeaderSize - kHeapObjectTag); | 82 __ Add(scratch, scratch, Code::kHeaderSize - kHeapObjectTag); |
86 __ Br(scratch); | 83 __ Br(scratch); |
87 | 84 |
88 // Miss: fall through. | 85 // Miss: fall through. |
89 __ Bind(&miss); | 86 __ Bind(&miss); |
90 } | 87 } |
91 | 88 |
92 void StubCache::GenerateProbe(MacroAssembler* masm, Register receiver, | 89 void StubCache::GenerateProbe(MacroAssembler* masm, Register receiver, |
93 Register name, Register scratch, Register extra, | 90 Register name, Register scratch, Register extra, |
94 Register extra2, Register extra3) { | 91 Register extra2, Register extra3) { |
| 92 Code::Flags flags = |
| 93 Code::RemoveHolderFromFlags(Code::ComputeHandlerFlags(ic_kind_)); |
| 94 |
95 Label miss; | 95 Label miss; |
96 | 96 |
97 // Make sure that there are no register conflicts. | 97 // Make sure that there are no register conflicts. |
98 DCHECK(!AreAliased(receiver, name, scratch, extra, extra2, extra3)); | 98 DCHECK(!AreAliased(receiver, name, scratch, extra, extra2, extra3)); |
99 | 99 |
100 // Make sure extra and extra2 registers are valid. | 100 // Make sure extra and extra2 registers are valid. |
101 DCHECK(!extra.is(no_reg)); | 101 DCHECK(!extra.is(no_reg)); |
102 DCHECK(!extra2.is(no_reg)); | 102 DCHECK(!extra2.is(no_reg)); |
103 DCHECK(!extra3.is(no_reg)); | 103 DCHECK(!extra3.is(no_reg)); |
104 | 104 |
(...skipping 19 matching lines...) Expand all Loading... |
124 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, | 124 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, |
125 extra3); | 125 extra3); |
126 | 126 |
127 // Check that the receiver isn't a smi. | 127 // Check that the receiver isn't a smi. |
128 __ JumpIfSmi(receiver, &miss); | 128 __ JumpIfSmi(receiver, &miss); |
129 | 129 |
130 // Compute the hash for primary table. | 130 // Compute the hash for primary table. |
131 __ Ldr(scratch, FieldMemOperand(name, Name::kHashFieldOffset)); | 131 __ Ldr(scratch, FieldMemOperand(name, Name::kHashFieldOffset)); |
132 __ Ldr(extra, FieldMemOperand(receiver, HeapObject::kMapOffset)); | 132 __ Ldr(extra, FieldMemOperand(receiver, HeapObject::kMapOffset)); |
133 __ Add(scratch, scratch, extra); | 133 __ Add(scratch, scratch, extra); |
| 134 __ Eor(scratch, scratch, flags); |
134 // We shift out the last two bits because they are not part of the hash. | 135 // We shift out the last two bits because they are not part of the hash. |
135 __ Ubfx(scratch, scratch, kCacheIndexShift, | 136 __ Ubfx(scratch, scratch, kCacheIndexShift, |
136 CountTrailingZeros(kPrimaryTableSize, 64)); | 137 CountTrailingZeros(kPrimaryTableSize, 64)); |
137 | 138 |
138 // Probe the primary table. | 139 // Probe the primary table. |
139 ProbeTable(this, masm, kPrimary, receiver, name, scratch, extra, extra2, | 140 ProbeTable(this, masm, flags, kPrimary, receiver, name, scratch, extra, |
140 extra3); | 141 extra2, extra3); |
141 | 142 |
142 // Primary miss: Compute hash for secondary table. | 143 // Primary miss: Compute hash for secondary table. |
143 __ Sub(scratch, scratch, Operand(name, LSR, kCacheIndexShift)); | 144 __ Sub(scratch, scratch, Operand(name, LSR, kCacheIndexShift)); |
| 145 __ Add(scratch, scratch, flags >> kCacheIndexShift); |
144 __ And(scratch, scratch, kSecondaryTableSize - 1); | 146 __ And(scratch, scratch, kSecondaryTableSize - 1); |
145 | 147 |
146 // Probe the secondary table. | 148 // Probe the secondary table. |
147 ProbeTable(this, masm, kSecondary, receiver, name, scratch, extra, extra2, | 149 ProbeTable(this, masm, flags, kSecondary, receiver, name, scratch, extra, |
148 extra3); | 150 extra2, extra3); |
149 | 151 |
150 // Cache miss: Fall-through and let caller handle the miss by | 152 // Cache miss: Fall-through and let caller handle the miss by |
151 // entering the runtime system. | 153 // entering the runtime system. |
152 __ Bind(&miss); | 154 __ Bind(&miss); |
153 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, | 155 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, |
154 extra3); | 156 extra3); |
155 } | 157 } |
156 } // namespace internal | 158 } // namespace internal |
157 } // namespace v8 | 159 } // namespace v8 |
158 | 160 |
159 #endif // V8_TARGET_ARCH_ARM64 | 161 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |