OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/compiler/ast-loop-assignment-analyzer.h" | 5 #include "src/compiler/ast-loop-assignment-analyzer.h" |
6 #include "src/compiler.h" | 6 #include "src/compiler.h" |
7 #include "src/parsing/parser.h" | 7 #include "src/parsing/parser.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 Visit(e->right()); | 191 Visit(e->right()); |
192 } | 192 } |
193 | 193 |
194 | 194 |
195 void ALAA::VisitCompareOperation(CompareOperation* e) { | 195 void ALAA::VisitCompareOperation(CompareOperation* e) { |
196 Visit(e->left()); | 196 Visit(e->left()); |
197 Visit(e->right()); | 197 Visit(e->right()); |
198 } | 198 } |
199 | 199 |
200 | 200 |
201 void ALAA::VisitSpread(Spread* e) { Visit(e->expression()); } | 201 void ALAA::VisitSpread(Spread* e) { UNREACHABLE(); } |
202 | 202 |
203 | 203 |
204 void ALAA::VisitEmptyParentheses(EmptyParentheses* e) { UNREACHABLE(); } | 204 void ALAA::VisitEmptyParentheses(EmptyParentheses* e) { UNREACHABLE(); } |
205 | 205 |
206 | 206 |
207 void ALAA::VisitCaseClause(CaseClause* cc) { | 207 void ALAA::VisitCaseClause(CaseClause* cc) { |
208 if (!cc->is_default()) Visit(cc->label()); | 208 if (!cc->is_default()) Visit(cc->label()); |
209 VisitStatements(cc->statements()); | 209 VisitStatements(cc->statements()); |
210 } | 210 } |
211 | 211 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 int count = 0; | 314 int count = 0; |
315 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var); | 315 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var); |
316 for (size_t i = 0; i < list_.size(); i++) { | 316 for (size_t i = 0; i < list_.size(); i++) { |
317 if (list_[i].second->Contains(var_index)) count++; | 317 if (list_[i].second->Contains(var_index)) count++; |
318 } | 318 } |
319 return count; | 319 return count; |
320 } | 320 } |
321 } // namespace compiler | 321 } // namespace compiler |
322 } // namespace internal | 322 } // namespace internal |
323 } // namespace v8 | 323 } // namespace v8 |
OLD | NEW |