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

Side by Side Diff: src/mips64/lithium-gap-resolver-mips64.cc

Issue 430503007: Rename ASSERT* to DCHECK*. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE and fixes 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/mips64/lithium-codegen-mips64.cc ('k') | src/mips64/lithium-mips64.h » ('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 #include "src/mips64/lithium-codegen-mips64.h" 7 #include "src/mips64/lithium-codegen-mips64.h"
8 #include "src/mips64/lithium-gap-resolver-mips64.h" 8 #include "src/mips64/lithium-gap-resolver-mips64.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 12
13 LGapResolver::LGapResolver(LCodeGen* owner) 13 LGapResolver::LGapResolver(LCodeGen* owner)
14 : cgen_(owner), 14 : cgen_(owner),
15 moves_(32, owner->zone()), 15 moves_(32, owner->zone()),
16 root_index_(0), 16 root_index_(0),
17 in_cycle_(false), 17 in_cycle_(false),
18 saved_destination_(NULL) {} 18 saved_destination_(NULL) {}
19 19
20 20
21 void LGapResolver::Resolve(LParallelMove* parallel_move) { 21 void LGapResolver::Resolve(LParallelMove* parallel_move) {
22 ASSERT(moves_.is_empty()); 22 DCHECK(moves_.is_empty());
23 // Build up a worklist of moves. 23 // Build up a worklist of moves.
24 BuildInitialMoveList(parallel_move); 24 BuildInitialMoveList(parallel_move);
25 25
26 for (int i = 0; i < moves_.length(); ++i) { 26 for (int i = 0; i < moves_.length(); ++i) {
27 LMoveOperands move = moves_[i]; 27 LMoveOperands move = moves_[i];
28 // Skip constants to perform them last. They don't block other moves 28 // Skip constants to perform them last. They don't block other moves
29 // and skipping such moves with register destinations keeps those 29 // and skipping such moves with register destinations keeps those
30 // registers free for the whole algorithm. 30 // registers free for the whole algorithm.
31 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) { 31 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
32 root_index_ = i; // Any cycle is found when by reaching this move again. 32 root_index_ = i; // Any cycle is found when by reaching this move again.
33 PerformMove(i); 33 PerformMove(i);
34 if (in_cycle_) { 34 if (in_cycle_) {
35 RestoreValue(); 35 RestoreValue();
36 } 36 }
37 } 37 }
38 } 38 }
39 39
40 // Perform the moves with constant sources. 40 // Perform the moves with constant sources.
41 for (int i = 0; i < moves_.length(); ++i) { 41 for (int i = 0; i < moves_.length(); ++i) {
42 if (!moves_[i].IsEliminated()) { 42 if (!moves_[i].IsEliminated()) {
43 ASSERT(moves_[i].source()->IsConstantOperand()); 43 DCHECK(moves_[i].source()->IsConstantOperand());
44 EmitMove(i); 44 EmitMove(i);
45 } 45 }
46 } 46 }
47 47
48 moves_.Rewind(0); 48 moves_.Rewind(0);
49 } 49 }
50 50
51 51
52 void LGapResolver::BuildInitialMoveList(LParallelMove* parallel_move) { 52 void LGapResolver::BuildInitialMoveList(LParallelMove* parallel_move) {
53 // Perform a linear sweep of the moves to add them to the initial list of 53 // Perform a linear sweep of the moves to add them to the initial list of
(...skipping 17 matching lines...) Expand all
71 71
72 // We can only find a cycle, when doing a depth-first traversal of moves, 72 // We can only find a cycle, when doing a depth-first traversal of moves,
73 // be encountering the starting move again. So by spilling the source of 73 // be encountering the starting move again. So by spilling the source of
74 // the starting move, we break the cycle. All moves are then unblocked, 74 // the starting move, we break the cycle. All moves are then unblocked,
75 // and the starting move is completed by writing the spilled value to 75 // and the starting move is completed by writing the spilled value to
76 // its destination. All other moves from the spilled source have been 76 // its destination. All other moves from the spilled source have been
77 // completed prior to breaking the cycle. 77 // completed prior to breaking the cycle.
78 // An additional complication is that moves to MemOperands with large 78 // An additional complication is that moves to MemOperands with large
79 // offsets (more than 1K or 4K) require us to spill this spilled value to 79 // offsets (more than 1K or 4K) require us to spill this spilled value to
80 // the stack, to free up the register. 80 // the stack, to free up the register.
81 ASSERT(!moves_[index].IsPending()); 81 DCHECK(!moves_[index].IsPending());
82 ASSERT(!moves_[index].IsRedundant()); 82 DCHECK(!moves_[index].IsRedundant());
83 83
84 // Clear this move's destination to indicate a pending move. The actual 84 // Clear this move's destination to indicate a pending move. The actual
85 // destination is saved in a stack allocated local. Multiple moves can 85 // destination is saved in a stack allocated local. Multiple moves can
86 // be pending because this function is recursive. 86 // be pending because this function is recursive.
87 ASSERT(moves_[index].source() != NULL); // Or else it will look eliminated. 87 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
88 LOperand* destination = moves_[index].destination(); 88 LOperand* destination = moves_[index].destination();
89 moves_[index].set_destination(NULL); 89 moves_[index].set_destination(NULL);
90 90
91 // Perform a depth-first traversal of the move graph to resolve 91 // Perform a depth-first traversal of the move graph to resolve
92 // dependencies. Any unperformed, unpending move with a source the same 92 // dependencies. Any unperformed, unpending move with a source the same
93 // as this one's destination blocks this one so recursively perform all 93 // as this one's destination blocks this one so recursively perform all
94 // such moves. 94 // such moves.
95 for (int i = 0; i < moves_.length(); ++i) { 95 for (int i = 0; i < moves_.length(); ++i) {
96 LMoveOperands other_move = moves_[i]; 96 LMoveOperands other_move = moves_[i];
97 if (other_move.Blocks(destination) && !other_move.IsPending()) { 97 if (other_move.Blocks(destination) && !other_move.IsPending()) {
98 PerformMove(i); 98 PerformMove(i);
99 // If there is a blocking, pending move it must be moves_[root_index_] 99 // If there is a blocking, pending move it must be moves_[root_index_]
100 // and all other moves with the same source as moves_[root_index_] are 100 // and all other moves with the same source as moves_[root_index_] are
101 // sucessfully executed (because they are cycle-free) by this loop. 101 // sucessfully executed (because they are cycle-free) by this loop.
102 } 102 }
103 } 103 }
104 104
105 // We are about to resolve this move and don't need it marked as 105 // We are about to resolve this move and don't need it marked as
106 // pending, so restore its destination. 106 // pending, so restore its destination.
107 moves_[index].set_destination(destination); 107 moves_[index].set_destination(destination);
108 108
109 // The move may be blocked on a pending move, which must be the starting move. 109 // The move may be blocked on a pending move, which must be the starting move.
110 // In this case, we have a cycle, and we save the source of this move to 110 // In this case, we have a cycle, and we save the source of this move to
111 // a scratch register to break it. 111 // a scratch register to break it.
112 LMoveOperands other_move = moves_[root_index_]; 112 LMoveOperands other_move = moves_[root_index_];
113 if (other_move.Blocks(destination)) { 113 if (other_move.Blocks(destination)) {
114 ASSERT(other_move.IsPending()); 114 DCHECK(other_move.IsPending());
115 BreakCycle(index); 115 BreakCycle(index);
116 return; 116 return;
117 } 117 }
118 118
119 // This move is no longer blocked. 119 // This move is no longer blocked.
120 EmitMove(index); 120 EmitMove(index);
121 } 121 }
122 122
123 123
124 void LGapResolver::Verify() { 124 void LGapResolver::Verify() {
125 #ifdef ENABLE_SLOW_ASSERTS 125 #ifdef ENABLE_SLOW_DCHECKS
126 // No operand should be the destination for more than one move. 126 // No operand should be the destination for more than one move.
127 for (int i = 0; i < moves_.length(); ++i) { 127 for (int i = 0; i < moves_.length(); ++i) {
128 LOperand* destination = moves_[i].destination(); 128 LOperand* destination = moves_[i].destination();
129 for (int j = i + 1; j < moves_.length(); ++j) { 129 for (int j = i + 1; j < moves_.length(); ++j) {
130 SLOW_ASSERT(!destination->Equals(moves_[j].destination())); 130 SLOW_DCHECK(!destination->Equals(moves_[j].destination()));
131 } 131 }
132 } 132 }
133 #endif 133 #endif
134 } 134 }
135 135
136 #define __ ACCESS_MASM(cgen_->masm()) 136 #define __ ACCESS_MASM(cgen_->masm())
137 137
138 void LGapResolver::BreakCycle(int index) { 138 void LGapResolver::BreakCycle(int index) {
139 // We save in a register the value that should end up in the source of 139 // We save in a register the value that should end up in the source of
140 // moves_[root_index]. After performing all moves in the tree rooted 140 // moves_[root_index]. After performing all moves in the tree rooted
141 // in that move, we save the value to that source. 141 // in that move, we save the value to that source.
142 ASSERT(moves_[index].destination()->Equals(moves_[root_index_].source())); 142 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source()));
143 ASSERT(!in_cycle_); 143 DCHECK(!in_cycle_);
144 in_cycle_ = true; 144 in_cycle_ = true;
145 LOperand* source = moves_[index].source(); 145 LOperand* source = moves_[index].source();
146 saved_destination_ = moves_[index].destination(); 146 saved_destination_ = moves_[index].destination();
147 if (source->IsRegister()) { 147 if (source->IsRegister()) {
148 __ mov(kLithiumScratchReg, cgen_->ToRegister(source)); 148 __ mov(kLithiumScratchReg, cgen_->ToRegister(source));
149 } else if (source->IsStackSlot()) { 149 } else if (source->IsStackSlot()) {
150 __ ld(kLithiumScratchReg, cgen_->ToMemOperand(source)); 150 __ ld(kLithiumScratchReg, cgen_->ToMemOperand(source));
151 } else if (source->IsDoubleRegister()) { 151 } else if (source->IsDoubleRegister()) {
152 __ mov_d(kLithiumScratchDouble, cgen_->ToDoubleRegister(source)); 152 __ mov_d(kLithiumScratchDouble, cgen_->ToDoubleRegister(source));
153 } else if (source->IsDoubleStackSlot()) { 153 } else if (source->IsDoubleStackSlot()) {
154 __ ldc1(kLithiumScratchDouble, cgen_->ToMemOperand(source)); 154 __ ldc1(kLithiumScratchDouble, cgen_->ToMemOperand(source));
155 } else { 155 } else {
156 UNREACHABLE(); 156 UNREACHABLE();
157 } 157 }
158 // This move will be done by restoring the saved value to the destination. 158 // This move will be done by restoring the saved value to the destination.
159 moves_[index].Eliminate(); 159 moves_[index].Eliminate();
160 } 160 }
161 161
162 162
163 void LGapResolver::RestoreValue() { 163 void LGapResolver::RestoreValue() {
164 ASSERT(in_cycle_); 164 DCHECK(in_cycle_);
165 ASSERT(saved_destination_ != NULL); 165 DCHECK(saved_destination_ != NULL);
166 166
167 // Spilled value is in kLithiumScratchReg or kLithiumScratchDouble. 167 // Spilled value is in kLithiumScratchReg or kLithiumScratchDouble.
168 if (saved_destination_->IsRegister()) { 168 if (saved_destination_->IsRegister()) {
169 __ mov(cgen_->ToRegister(saved_destination_), kLithiumScratchReg); 169 __ mov(cgen_->ToRegister(saved_destination_), kLithiumScratchReg);
170 } else if (saved_destination_->IsStackSlot()) { 170 } else if (saved_destination_->IsStackSlot()) {
171 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_)); 171 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_));
172 } else if (saved_destination_->IsDoubleRegister()) { 172 } else if (saved_destination_->IsDoubleRegister()) {
173 __ mov_d(cgen_->ToDoubleRegister(saved_destination_), 173 __ mov_d(cgen_->ToDoubleRegister(saved_destination_),
174 kLithiumScratchDouble); 174 kLithiumScratchDouble);
175 } else if (saved_destination_->IsDoubleStackSlot()) { 175 } else if (saved_destination_->IsDoubleStackSlot()) {
(...skipping 13 matching lines...) Expand all
189 LOperand* destination = moves_[index].destination(); 189 LOperand* destination = moves_[index].destination();
190 190
191 // Dispatch on the source and destination operand kinds. Not all 191 // Dispatch on the source and destination operand kinds. Not all
192 // combinations are possible. 192 // combinations are possible.
193 193
194 if (source->IsRegister()) { 194 if (source->IsRegister()) {
195 Register source_register = cgen_->ToRegister(source); 195 Register source_register = cgen_->ToRegister(source);
196 if (destination->IsRegister()) { 196 if (destination->IsRegister()) {
197 __ mov(cgen_->ToRegister(destination), source_register); 197 __ mov(cgen_->ToRegister(destination), source_register);
198 } else { 198 } else {
199 ASSERT(destination->IsStackSlot()); 199 DCHECK(destination->IsStackSlot());
200 __ sd(source_register, cgen_->ToMemOperand(destination)); 200 __ sd(source_register, cgen_->ToMemOperand(destination));
201 } 201 }
202 } else if (source->IsStackSlot()) { 202 } else if (source->IsStackSlot()) {
203 MemOperand source_operand = cgen_->ToMemOperand(source); 203 MemOperand source_operand = cgen_->ToMemOperand(source);
204 if (destination->IsRegister()) { 204 if (destination->IsRegister()) {
205 __ ld(cgen_->ToRegister(destination), source_operand); 205 __ ld(cgen_->ToRegister(destination), source_operand);
206 } else { 206 } else {
207 ASSERT(destination->IsStackSlot()); 207 DCHECK(destination->IsStackSlot());
208 MemOperand destination_operand = cgen_->ToMemOperand(destination); 208 MemOperand destination_operand = cgen_->ToMemOperand(destination);
209 if (in_cycle_) { 209 if (in_cycle_) {
210 if (!destination_operand.OffsetIsInt16Encodable()) { 210 if (!destination_operand.OffsetIsInt16Encodable()) {
211 // 'at' is overwritten while saving the value to the destination. 211 // 'at' is overwritten while saving the value to the destination.
212 // Therefore we can't use 'at'. It is OK if the read from the source 212 // Therefore we can't use 'at'. It is OK if the read from the source
213 // destroys 'at', since that happens before the value is read. 213 // destroys 'at', since that happens before the value is read.
214 // This uses only a single reg of the double reg-pair. 214 // This uses only a single reg of the double reg-pair.
215 __ ldc1(kLithiumScratchDouble, source_operand); 215 __ ldc1(kLithiumScratchDouble, source_operand);
216 __ sdc1(kLithiumScratchDouble, destination_operand); 216 __ sdc1(kLithiumScratchDouble, destination_operand);
217 } else { 217 } else {
(...skipping 15 matching lines...) Expand all
233 } else if (cgen_->IsInteger32(constant_source)) { 233 } else if (cgen_->IsInteger32(constant_source)) {
234 __ li(dst, Operand(cgen_->ToInteger32(constant_source))); 234 __ li(dst, Operand(cgen_->ToInteger32(constant_source)));
235 } else { 235 } else {
236 __ li(dst, cgen_->ToHandle(constant_source)); 236 __ li(dst, cgen_->ToHandle(constant_source));
237 } 237 }
238 } else if (destination->IsDoubleRegister()) { 238 } else if (destination->IsDoubleRegister()) {
239 DoubleRegister result = cgen_->ToDoubleRegister(destination); 239 DoubleRegister result = cgen_->ToDoubleRegister(destination);
240 double v = cgen_->ToDouble(constant_source); 240 double v = cgen_->ToDouble(constant_source);
241 __ Move(result, v); 241 __ Move(result, v);
242 } else { 242 } else {
243 ASSERT(destination->IsStackSlot()); 243 DCHECK(destination->IsStackSlot());
244 ASSERT(!in_cycle_); // Constant moves happen after all cycles are gone. 244 DCHECK(!in_cycle_); // Constant moves happen after all cycles are gone.
245 if (cgen_->IsSmi(constant_source)) { 245 if (cgen_->IsSmi(constant_source)) {
246 __ li(kLithiumScratchReg, Operand(cgen_->ToSmi(constant_source))); 246 __ li(kLithiumScratchReg, Operand(cgen_->ToSmi(constant_source)));
247 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination)); 247 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination));
248 } else if (cgen_->IsInteger32(constant_source)) { 248 } else if (cgen_->IsInteger32(constant_source)) {
249 __ li(kLithiumScratchReg, Operand(cgen_->ToInteger32(constant_source))); 249 __ li(kLithiumScratchReg, Operand(cgen_->ToInteger32(constant_source)));
250 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination)); 250 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination));
251 } else { 251 } else {
252 __ li(kLithiumScratchReg, cgen_->ToHandle(constant_source)); 252 __ li(kLithiumScratchReg, cgen_->ToHandle(constant_source));
253 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination)); 253 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination));
254 } 254 }
255 } 255 }
256 256
257 } else if (source->IsDoubleRegister()) { 257 } else if (source->IsDoubleRegister()) {
258 DoubleRegister source_register = cgen_->ToDoubleRegister(source); 258 DoubleRegister source_register = cgen_->ToDoubleRegister(source);
259 if (destination->IsDoubleRegister()) { 259 if (destination->IsDoubleRegister()) {
260 __ mov_d(cgen_->ToDoubleRegister(destination), source_register); 260 __ mov_d(cgen_->ToDoubleRegister(destination), source_register);
261 } else { 261 } else {
262 ASSERT(destination->IsDoubleStackSlot()); 262 DCHECK(destination->IsDoubleStackSlot());
263 MemOperand destination_operand = cgen_->ToMemOperand(destination); 263 MemOperand destination_operand = cgen_->ToMemOperand(destination);
264 __ sdc1(source_register, destination_operand); 264 __ sdc1(source_register, destination_operand);
265 } 265 }
266 266
267 } else if (source->IsDoubleStackSlot()) { 267 } else if (source->IsDoubleStackSlot()) {
268 MemOperand source_operand = cgen_->ToMemOperand(source); 268 MemOperand source_operand = cgen_->ToMemOperand(source);
269 if (destination->IsDoubleRegister()) { 269 if (destination->IsDoubleRegister()) {
270 __ ldc1(cgen_->ToDoubleRegister(destination), source_operand); 270 __ ldc1(cgen_->ToDoubleRegister(destination), source_operand);
271 } else { 271 } else {
272 ASSERT(destination->IsDoubleStackSlot()); 272 DCHECK(destination->IsDoubleStackSlot());
273 MemOperand destination_operand = cgen_->ToMemOperand(destination); 273 MemOperand destination_operand = cgen_->ToMemOperand(destination);
274 if (in_cycle_) { 274 if (in_cycle_) {
275 // kLithiumScratchDouble was used to break the cycle, 275 // kLithiumScratchDouble was used to break the cycle,
276 // but kLithiumScratchReg is free. 276 // but kLithiumScratchReg is free.
277 MemOperand source_high_operand = 277 MemOperand source_high_operand =
278 cgen_->ToHighMemOperand(source); 278 cgen_->ToHighMemOperand(source);
279 MemOperand destination_high_operand = 279 MemOperand destination_high_operand =
280 cgen_->ToHighMemOperand(destination); 280 cgen_->ToHighMemOperand(destination);
281 __ lw(kLithiumScratchReg, source_operand); 281 __ lw(kLithiumScratchReg, source_operand);
282 __ sw(kLithiumScratchReg, destination_operand); 282 __ sw(kLithiumScratchReg, destination_operand);
283 __ lw(kLithiumScratchReg, source_high_operand); 283 __ lw(kLithiumScratchReg, source_high_operand);
284 __ sw(kLithiumScratchReg, destination_high_operand); 284 __ sw(kLithiumScratchReg, destination_high_operand);
285 } else { 285 } else {
286 __ ldc1(kLithiumScratchDouble, source_operand); 286 __ ldc1(kLithiumScratchDouble, source_operand);
287 __ sdc1(kLithiumScratchDouble, destination_operand); 287 __ sdc1(kLithiumScratchDouble, destination_operand);
288 } 288 }
289 } 289 }
290 } else { 290 } else {
291 UNREACHABLE(); 291 UNREACHABLE();
292 } 292 }
293 293
294 moves_[index].Eliminate(); 294 moves_[index].Eliminate();
295 } 295 }
296 296
297 297
298 #undef __ 298 #undef __
299 299
300 } } // namespace v8::internal 300 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips64/lithium-codegen-mips64.cc ('k') | src/mips64/lithium-mips64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698