Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: src/ic/mips/stub-cache-mips.cc

Issue 496393002: MIPS: Move IC code into a subdir and move ic-compilation related code from stub-cache into ic-compi… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix formatting Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ic/mips/ic-mips.cc ('k') | src/ic/mips64/ic-compiler-mips64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_MIPS
8 8
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/ic/stub-cache.h" 10 #include "src/ic/stub-cache.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 17
(...skipping 17 matching lines...) Expand all
35 DCHECK((value_off_addr - key_off_addr) < (256 * 4)); 35 DCHECK((value_off_addr - key_off_addr) < (256 * 4));
36 DCHECK(map_off_addr > key_off_addr); 36 DCHECK(map_off_addr > key_off_addr);
37 DCHECK((map_off_addr - key_off_addr) % 4 == 0); 37 DCHECK((map_off_addr - key_off_addr) % 4 == 0);
38 DCHECK((map_off_addr - key_off_addr) < (256 * 4)); 38 DCHECK((map_off_addr - key_off_addr) < (256 * 4));
39 39
40 Label miss; 40 Label miss;
41 Register base_addr = scratch; 41 Register base_addr = scratch;
42 scratch = no_reg; 42 scratch = no_reg;
43 43
44 // Multiply by 3 because there are 3 fields per entry (name, code, map). 44 // Multiply by 3 because there are 3 fields per entry (name, code, map).
45 __ add(offset_scratch, offset, Operand(offset, LSL, 1)); 45 __ sll(offset_scratch, offset, 1);
46 __ Addu(offset_scratch, offset_scratch, offset);
46 47
47 // Calculate the base address of the entry. 48 // Calculate the base address of the entry.
48 __ mov(base_addr, Operand(key_offset)); 49 __ li(base_addr, Operand(key_offset));
49 __ add(base_addr, base_addr, Operand(offset_scratch, LSL, kPointerSizeLog2)); 50 __ sll(at, offset_scratch, kPointerSizeLog2);
51 __ Addu(base_addr, base_addr, at);
50 52
51 // Check that the key in the entry matches the name. 53 // Check that the key in the entry matches the name.
52 __ ldr(ip, MemOperand(base_addr, 0)); 54 __ lw(at, MemOperand(base_addr, 0));
53 __ cmp(name, ip); 55 __ Branch(&miss, ne, name, Operand(at));
54 __ b(ne, &miss);
55 56
56 // Check the map matches. 57 // Check the map matches.
57 __ ldr(ip, MemOperand(base_addr, map_off_addr - key_off_addr)); 58 __ lw(at, MemOperand(base_addr, map_off_addr - key_off_addr));
58 __ ldr(scratch2, FieldMemOperand(receiver, HeapObject::kMapOffset)); 59 __ lw(scratch2, FieldMemOperand(receiver, HeapObject::kMapOffset));
59 __ cmp(ip, scratch2); 60 __ Branch(&miss, ne, at, Operand(scratch2));
60 __ b(ne, &miss);
61 61
62 // Get the code entry from the cache. 62 // Get the code entry from the cache.
63 Register code = scratch2; 63 Register code = scratch2;
64 scratch2 = no_reg; 64 scratch2 = no_reg;
65 __ ldr(code, MemOperand(base_addr, value_off_addr - key_off_addr)); 65 __ lw(code, MemOperand(base_addr, value_off_addr - key_off_addr));
66 66
67 // Check that the flags match what we're looking for. 67 // Check that the flags match what we're looking for.
68 Register flags_reg = base_addr; 68 Register flags_reg = base_addr;
69 base_addr = no_reg; 69 base_addr = no_reg;
70 __ ldr(flags_reg, FieldMemOperand(code, Code::kFlagsOffset)); 70 __ lw(flags_reg, FieldMemOperand(code, Code::kFlagsOffset));
71 // It's a nice optimization if this constant is encodable in the bic insn. 71 __ And(flags_reg, flags_reg, Operand(~Code::kFlagsNotUsedInLookup));
72 72 __ Branch(&miss, ne, flags_reg, Operand(flags));
73 uint32_t mask = Code::kFlagsNotUsedInLookup;
74 DCHECK(__ ImmediateFitsAddrMode1Instruction(mask));
75 __ bic(flags_reg, flags_reg, Operand(mask));
76 __ cmp(flags_reg, Operand(flags));
77 __ b(ne, &miss);
78 73
79 #ifdef DEBUG 74 #ifdef DEBUG
80 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 75 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) {
81 __ jmp(&miss); 76 __ jmp(&miss);
82 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 77 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) {
83 __ jmp(&miss); 78 __ jmp(&miss);
84 } 79 }
85 #endif 80 #endif
86 81
87 // Jump to the first instruction in the code stub. 82 // Jump to the first instruction in the code stub.
88 __ add(pc, code, Operand(Code::kHeaderSize - kHeapObjectTag)); 83 __ Addu(at, code, Operand(Code::kHeaderSize - kHeapObjectTag));
84 __ Jump(at);
89 85
90 // Miss: fall through. 86 // Miss: fall through.
91 __ bind(&miss); 87 __ bind(&miss);
92 } 88 }
93 89
94 90
95 void StubCache::GenerateProbe(MacroAssembler* masm, Code::Flags flags, 91 void StubCache::GenerateProbe(MacroAssembler* masm, Code::Flags flags,
96 Register receiver, Register name, 92 Register receiver, Register name,
97 Register scratch, Register extra, Register extra2, 93 Register scratch, Register extra, Register extra2,
98 Register extra3) { 94 Register extra3) {
(...skipping 11 matching lines...) Expand all
110 DCHECK(!scratch.is(receiver)); 106 DCHECK(!scratch.is(receiver));
111 DCHECK(!scratch.is(name)); 107 DCHECK(!scratch.is(name));
112 DCHECK(!extra.is(receiver)); 108 DCHECK(!extra.is(receiver));
113 DCHECK(!extra.is(name)); 109 DCHECK(!extra.is(name));
114 DCHECK(!extra.is(scratch)); 110 DCHECK(!extra.is(scratch));
115 DCHECK(!extra2.is(receiver)); 111 DCHECK(!extra2.is(receiver));
116 DCHECK(!extra2.is(name)); 112 DCHECK(!extra2.is(name));
117 DCHECK(!extra2.is(scratch)); 113 DCHECK(!extra2.is(scratch));
118 DCHECK(!extra2.is(extra)); 114 DCHECK(!extra2.is(extra));
119 115
120 // Check scratch, extra and extra2 registers are valid. 116 // Check register validity.
121 DCHECK(!scratch.is(no_reg)); 117 DCHECK(!scratch.is(no_reg));
122 DCHECK(!extra.is(no_reg)); 118 DCHECK(!extra.is(no_reg));
123 DCHECK(!extra2.is(no_reg)); 119 DCHECK(!extra2.is(no_reg));
124 DCHECK(!extra3.is(no_reg)); 120 DCHECK(!extra3.is(no_reg));
125 121
126 Counters* counters = masm->isolate()->counters(); 122 Counters* counters = masm->isolate()->counters();
127 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2, 123 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
128 extra3); 124 extra3);
129 125
130 // Check that the receiver isn't a smi. 126 // Check that the receiver isn't a smi.
131 __ JumpIfSmi(receiver, &miss); 127 __ JumpIfSmi(receiver, &miss);
132 128
133 // Get the map of the receiver and compute the hash. 129 // Get the map of the receiver and compute the hash.
134 __ ldr(scratch, FieldMemOperand(name, Name::kHashFieldOffset)); 130 __ lw(scratch, FieldMemOperand(name, Name::kHashFieldOffset));
135 __ ldr(ip, FieldMemOperand(receiver, HeapObject::kMapOffset)); 131 __ lw(at, FieldMemOperand(receiver, HeapObject::kMapOffset));
136 __ add(scratch, scratch, Operand(ip)); 132 __ Addu(scratch, scratch, at);
137 uint32_t mask = kPrimaryTableSize - 1; 133 uint32_t mask = kPrimaryTableSize - 1;
138 // We shift out the last two bits because they are not part of the hash and 134 // We shift out the last two bits because they are not part of the hash and
139 // they are always 01 for maps. 135 // they are always 01 for maps.
140 __ mov(scratch, Operand(scratch, LSR, kCacheIndexShift)); 136 __ srl(scratch, scratch, kCacheIndexShift);
141 // Mask down the eor argument to the minimum to keep the immediate 137 __ Xor(scratch, scratch, Operand((flags >> kCacheIndexShift) & mask));
142 // ARM-encodable. 138 __ And(scratch, scratch, Operand(mask));
143 __ eor(scratch, scratch, Operand((flags >> kCacheIndexShift) & mask));
144 // Prefer and_ to ubfx here because ubfx takes 2 cycles.
145 __ and_(scratch, scratch, Operand(mask));
146 139
147 // Probe the primary table. 140 // Probe the primary table.
148 ProbeTable(isolate, masm, flags, kPrimary, receiver, name, scratch, extra, 141 ProbeTable(isolate, masm, flags, kPrimary, receiver, name, scratch, extra,
149 extra2, extra3); 142 extra2, extra3);
150 143
151 // Primary miss: Compute hash for secondary probe. 144 // Primary miss: Compute hash for secondary probe.
152 __ sub(scratch, scratch, Operand(name, LSR, kCacheIndexShift)); 145 __ srl(at, name, kCacheIndexShift);
146 __ Subu(scratch, scratch, at);
153 uint32_t mask2 = kSecondaryTableSize - 1; 147 uint32_t mask2 = kSecondaryTableSize - 1;
154 __ add(scratch, scratch, Operand((flags >> kCacheIndexShift) & mask2)); 148 __ Addu(scratch, scratch, Operand((flags >> kCacheIndexShift) & mask2));
155 __ and_(scratch, scratch, Operand(mask2)); 149 __ And(scratch, scratch, Operand(mask2));
156 150
157 // Probe the secondary table. 151 // Probe the secondary table.
158 ProbeTable(isolate, masm, flags, kSecondary, receiver, name, scratch, extra, 152 ProbeTable(isolate, masm, flags, kSecondary, receiver, name, scratch, extra,
159 extra2, extra3); 153 extra2, extra3);
160 154
161 // Cache miss: Fall-through and let caller handle the miss by 155 // Cache miss: Fall-through and let caller handle the miss by
162 // entering the runtime system. 156 // entering the runtime system.
163 __ bind(&miss); 157 __ bind(&miss);
164 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2, 158 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
165 extra3); 159 extra3);
166 } 160 }
167 161
168 162
169 #undef __ 163 #undef __
170 } 164 }
171 } // namespace v8::internal 165 } // namespace v8::internal
172 166
173 #endif // V8_TARGET_ARCH_ARM 167 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/ic/mips/ic-mips.cc ('k') | src/ic/mips64/ic-compiler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698