| 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" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 namespace internal { | 13 namespace internal { |
| 14 | 14 |
| 15 #define __ ACCESS_MASM(masm) | 15 #define __ ACCESS_MASM(masm) |
| 16 | 16 |
| 17 static void ProbeTable(StubCache* stub_cache, MacroAssembler* masm, | 17 static void ProbeTable(StubCache* stub_cache, MacroAssembler* masm, |
| 18 Code::Flags flags, StubCache::Table table, | 18 StubCache::Table table, Register receiver, Register name, |
| 19 Register receiver, Register name, | |
| 20 // Number of the cache entry, not scaled. | 19 // Number of the cache entry, not scaled. |
| 21 Register offset, Register scratch, Register scratch2, | 20 Register offset, Register scratch, Register scratch2, |
| 22 Register offset_scratch) { | 21 Register offset_scratch) { |
| 23 ExternalReference key_offset(stub_cache->key_reference(table)); | 22 ExternalReference key_offset(stub_cache->key_reference(table)); |
| 24 ExternalReference value_offset(stub_cache->value_reference(table)); | 23 ExternalReference value_offset(stub_cache->value_reference(table)); |
| 25 ExternalReference map_offset(stub_cache->map_reference(table)); | 24 ExternalReference map_offset(stub_cache->map_reference(table)); |
| 26 | 25 |
| 27 uint64_t key_off_addr = reinterpret_cast<uint64_t>(key_offset.address()); | 26 uint64_t key_off_addr = reinterpret_cast<uint64_t>(key_offset.address()); |
| 28 uint64_t value_off_addr = reinterpret_cast<uint64_t>(value_offset.address()); | 27 uint64_t value_off_addr = reinterpret_cast<uint64_t>(value_offset.address()); |
| 29 uint64_t map_off_addr = reinterpret_cast<uint64_t>(map_offset.address()); | 28 uint64_t map_off_addr = reinterpret_cast<uint64_t>(map_offset.address()); |
| 30 | 29 |
| 31 // Check the relative positions of the address fields. | 30 // Check the relative positions of the address fields. |
| 32 DCHECK(value_off_addr > key_off_addr); | 31 DCHECK(value_off_addr > key_off_addr); |
| 33 DCHECK((value_off_addr - key_off_addr) % 4 == 0); | 32 DCHECK((value_off_addr - key_off_addr) % 4 == 0); |
| 34 DCHECK((value_off_addr - key_off_addr) < (256 * 4)); | 33 DCHECK((value_off_addr - key_off_addr) < (256 * 4)); |
| 35 DCHECK(map_off_addr > key_off_addr); | 34 DCHECK(map_off_addr > key_off_addr); |
| 36 DCHECK((map_off_addr - key_off_addr) % 4 == 0); | 35 DCHECK((map_off_addr - key_off_addr) % 4 == 0); |
| 37 DCHECK((map_off_addr - key_off_addr) < (256 * 4)); | 36 DCHECK((map_off_addr - key_off_addr) < (256 * 4)); |
| 38 | 37 |
| 39 Label miss; | 38 Label miss; |
| 40 Register base_addr = scratch; | 39 Register base_addr = scratch; |
| 41 scratch = no_reg; | 40 scratch = no_reg; |
| 42 | 41 |
| 43 // Multiply by 3 because there are 3 fields per entry (name, code, map). | 42 // Multiply by 3 because there are 3 fields per entry (name, code, map). |
| 44 __ Dlsa(offset_scratch, offset, offset, 1); | 43 __ Dlsa(offset_scratch, offset, offset, 1); |
| 45 | 44 |
| 46 // Calculate the base address of the entry. | 45 // Calculate the base address of the entry. |
| 47 __ li(base_addr, Operand(key_offset)); | 46 __ li(base_addr, Operand(key_offset)); |
| 48 __ Dlsa(base_addr, base_addr, offset_scratch, kPointerSizeLog2); | 47 __ Dlsa(base_addr, base_addr, offset_scratch, |
| 48 kPointerSizeLog2 - StubCache::kCacheIndexShift); |
| 49 | 49 |
| 50 // Check that the key in the entry matches the name. | 50 // Check that the key in the entry matches the name. |
| 51 __ ld(at, MemOperand(base_addr, 0)); | 51 __ ld(at, MemOperand(base_addr, 0)); |
| 52 __ Branch(&miss, ne, name, Operand(at)); | 52 __ Branch(&miss, ne, name, Operand(at)); |
| 53 | 53 |
| 54 // Check the map matches. | 54 // Check the map matches. |
| 55 __ ld(at, MemOperand(base_addr, | 55 __ ld(at, MemOperand(base_addr, |
| 56 static_cast<int32_t>(map_off_addr - key_off_addr))); | 56 static_cast<int32_t>(map_off_addr - key_off_addr))); |
| 57 __ ld(scratch2, FieldMemOperand(receiver, HeapObject::kMapOffset)); | 57 __ ld(scratch2, FieldMemOperand(receiver, HeapObject::kMapOffset)); |
| 58 __ Branch(&miss, ne, at, Operand(scratch2)); | 58 __ Branch(&miss, ne, at, Operand(scratch2)); |
| 59 | 59 |
| 60 // Get the code entry from the cache. | 60 // Get the code entry from the cache. |
| 61 Register code = scratch2; | 61 Register code = scratch2; |
| 62 scratch2 = no_reg; | 62 scratch2 = no_reg; |
| 63 __ ld(code, MemOperand(base_addr, | 63 __ ld(code, MemOperand(base_addr, |
| 64 static_cast<int32_t>(value_off_addr - key_off_addr))); | 64 static_cast<int32_t>(value_off_addr - key_off_addr))); |
| 65 | 65 |
| 66 #ifdef DEBUG |
| 66 // Check that the flags match what we're looking for. | 67 // Check that the flags match what we're looking for. |
| 68 Code::Flags flags = Code::RemoveHolderFromFlags( |
| 69 Code::ComputeHandlerFlags(stub_cache->ic_kind())); |
| 67 Register flags_reg = base_addr; | 70 Register flags_reg = base_addr; |
| 68 base_addr = no_reg; | 71 base_addr = no_reg; |
| 69 __ lw(flags_reg, FieldMemOperand(code, Code::kFlagsOffset)); | 72 __ lw(flags_reg, FieldMemOperand(code, Code::kFlagsOffset)); |
| 70 __ And(flags_reg, flags_reg, Operand(~Code::kFlagsNotUsedInLookup)); | 73 __ And(flags_reg, flags_reg, Operand(~Code::kFlagsNotUsedInLookup)); |
| 71 __ Branch(&miss, ne, flags_reg, Operand(flags)); | 74 __ Check(eq, kUnexpectedValue, flags_reg, Operand(flags)); |
| 72 | 75 |
| 73 #ifdef DEBUG | |
| 74 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { | 76 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { |
| 75 __ jmp(&miss); | 77 __ jmp(&miss); |
| 76 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { | 78 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { |
| 77 __ jmp(&miss); | 79 __ jmp(&miss); |
| 78 } | 80 } |
| 79 #endif | 81 #endif |
| 80 | 82 |
| 81 // Jump to the first instruction in the code stub. | 83 // Jump to the first instruction in the code stub. |
| 82 __ Daddu(at, code, Operand(Code::kHeaderSize - kHeapObjectTag)); | 84 __ Daddu(at, code, Operand(Code::kHeaderSize - kHeapObjectTag)); |
| 83 __ Jump(at); | 85 __ Jump(at); |
| 84 | 86 |
| 85 // Miss: fall through. | 87 // Miss: fall through. |
| 86 __ bind(&miss); | 88 __ bind(&miss); |
| 87 } | 89 } |
| 88 | 90 |
| 89 void StubCache::GenerateProbe(MacroAssembler* masm, Register receiver, | 91 void StubCache::GenerateProbe(MacroAssembler* masm, Register receiver, |
| 90 Register name, Register scratch, Register extra, | 92 Register name, Register scratch, Register extra, |
| 91 Register extra2, Register extra3) { | 93 Register extra2, Register extra3) { |
| 92 Code::Flags flags = | |
| 93 Code::RemoveHolderFromFlags(Code::ComputeHandlerFlags(ic_kind_)); | |
| 94 | |
| 95 Label miss; | 94 Label miss; |
| 96 | 95 |
| 97 // Make sure that code is valid. The multiplying code relies on the | 96 // Make sure that code is valid. The multiplying code relies on the |
| 98 // entry size being 12. | 97 // entry size being 12. |
| 99 // DCHECK(sizeof(Entry) == 12); | 98 // DCHECK(sizeof(Entry) == 12); |
| 100 // DCHECK(sizeof(Entry) == 3 * kPointerSize); | 99 // DCHECK(sizeof(Entry) == 3 * kPointerSize); |
| 101 | 100 |
| 102 // Make sure that there are no register conflicts. | 101 // Make sure that there are no register conflicts. |
| 103 DCHECK(!AreAliased(receiver, name, scratch, extra, extra2, extra3)); | 102 DCHECK(!AreAliased(receiver, name, scratch, extra, extra2, extra3)); |
| 104 | 103 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 127 #endif | 126 #endif |
| 128 | 127 |
| 129 Counters* counters = masm->isolate()->counters(); | 128 Counters* counters = masm->isolate()->counters(); |
| 130 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, | 129 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, |
| 131 extra3); | 130 extra3); |
| 132 | 131 |
| 133 // Check that the receiver isn't a smi. | 132 // Check that the receiver isn't a smi. |
| 134 __ JumpIfSmi(receiver, &miss); | 133 __ JumpIfSmi(receiver, &miss); |
| 135 | 134 |
| 136 // Get the map of the receiver and compute the hash. | 135 // Get the map of the receiver and compute the hash. |
| 137 __ ld(scratch, FieldMemOperand(name, Name::kHashFieldOffset)); | 136 __ lwu(scratch, FieldMemOperand(name, Name::kHashFieldOffset)); |
| 138 __ ld(at, FieldMemOperand(receiver, HeapObject::kMapOffset)); | 137 __ ld(at, FieldMemOperand(receiver, HeapObject::kMapOffset)); |
| 139 __ Daddu(scratch, scratch, at); | 138 __ Addu(scratch, scratch, at); |
| 140 uint64_t mask = kPrimaryTableSize - 1; | 139 __ li(at, Operand(kPrimaryTableSize - 1)); |
| 141 // We shift out the last two bits because they are not part of the hash and | 140 __ sll(at, at, kCacheIndexShift); |
| 142 // they are always 01 for maps. | 141 __ And(scratch, scratch, at); |
| 143 __ dsrl(scratch, scratch, kCacheIndexShift); | |
| 144 __ Xor(scratch, scratch, Operand((flags >> kCacheIndexShift) & mask)); | |
| 145 __ And(scratch, scratch, Operand(mask)); | |
| 146 | 142 |
| 147 // Probe the primary table. | 143 // Probe the primary table. |
| 148 ProbeTable(this, masm, flags, kPrimary, receiver, name, scratch, extra, | 144 ProbeTable(this, masm, kPrimary, receiver, name, scratch, extra, extra2, |
| 149 extra2, extra3); | 145 extra3); |
| 150 | 146 |
| 151 // Primary miss: Compute hash for secondary probe. | 147 // Primary miss: Compute hash for secondary probe. |
| 152 __ dsrl(at, name, kCacheIndexShift); | 148 __ Subu(scratch, scratch, name); |
| 153 __ Dsubu(scratch, scratch, at); | 149 __ Addu(scratch, scratch, kSecondaryMagic); |
| 154 uint64_t mask2 = kSecondaryTableSize - 1; | 150 __ li(at, Operand(kSecondaryTableSize - 1)); |
| 155 __ Daddu(scratch, scratch, Operand((flags >> kCacheIndexShift) & mask2)); | 151 __ sll(at, at, kCacheIndexShift); |
| 156 __ And(scratch, scratch, Operand(mask2)); | 152 __ And(scratch, scratch, at); |
| 157 | 153 |
| 158 // Probe the secondary table. | 154 // Probe the secondary table. |
| 159 ProbeTable(this, masm, flags, kSecondary, receiver, name, scratch, extra, | 155 ProbeTable(this, masm, kSecondary, receiver, name, scratch, extra, extra2, |
| 160 extra2, extra3); | 156 extra3); |
| 161 | 157 |
| 162 // Cache miss: Fall-through and let caller handle the miss by | 158 // Cache miss: Fall-through and let caller handle the miss by |
| 163 // entering the runtime system. | 159 // entering the runtime system. |
| 164 __ bind(&miss); | 160 __ bind(&miss); |
| 165 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, | 161 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, |
| 166 extra3); | 162 extra3); |
| 167 } | 163 } |
| 168 | 164 |
| 169 | 165 |
| 170 #undef __ | 166 #undef __ |
| 171 } // namespace internal | 167 } // namespace internal |
| 172 } // namespace v8 | 168 } // namespace v8 |
| 173 | 169 |
| 174 #endif // V8_TARGET_ARCH_MIPS64 | 170 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |