| 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 #include "src/hydrogen-bch.h" | 5 #include "src/hydrogen-bch.h" |
| 6 | 6 |
| 7 namespace v8 { | 7 namespace v8 { |
| 8 namespace internal { | 8 namespace internal { |
| 9 | 9 |
| 10 /* | 10 /* |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 | 368 |
| 369 | 369 |
| 370 void HBoundsCheckHoistingPhase::HoistRedundantBoundsChecks() { | 370 void HBoundsCheckHoistingPhase::HoistRedundantBoundsChecks() { |
| 371 InductionVariableBlocksTable table(graph()); | 371 InductionVariableBlocksTable table(graph()); |
| 372 table.CollectInductionVariableData(graph()->entry_block()); | 372 table.CollectInductionVariableData(graph()->entry_block()); |
| 373 for (int i = 0; i < graph()->blocks()->length(); i++) { | 373 for (int i = 0; i < graph()->blocks()->length(); i++) { |
| 374 table.EliminateRedundantBoundsChecks(graph()->blocks()->at(i)); | 374 table.EliminateRedundantBoundsChecks(graph()->blocks()->at(i)); |
| 375 } | 375 } |
| 376 } | 376 } |
| 377 | 377 |
| 378 } } // namespace v8::internal | 378 } // namespace internal |
| 379 } // namespace v8 |
| OLD | NEW |