| 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/compiler/loop-analysis.h" |
| 6 |
| 5 #include "src/compiler/graph.h" | 7 #include "src/compiler/graph.h" |
| 6 #include "src/compiler/loop-analysis.h" | |
| 7 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
| 9 #include "src/compiler/node-marker.h" |
| 8 #include "src/compiler/node-properties-inl.h" | 10 #include "src/compiler/node-properties-inl.h" |
| 9 #include "src/zone.h" | 11 #include "src/zone.h" |
| 10 | 12 |
| 11 namespace v8 { | 13 namespace v8 { |
| 12 namespace internal { | 14 namespace internal { |
| 13 namespace compiler { | 15 namespace compiler { |
| 14 | 16 |
| 15 typedef uint32_t LoopMarks; | 17 typedef uint32_t LoopMarks; |
| 16 | 18 |
| 17 | 19 |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 finder.Run(); | 404 finder.Run(); |
| 403 if (FLAG_trace_turbo_graph) { | 405 if (FLAG_trace_turbo_graph) { |
| 404 finder.Print(); | 406 finder.Print(); |
| 405 } | 407 } |
| 406 return loop_tree; | 408 return loop_tree; |
| 407 } | 409 } |
| 408 | 410 |
| 409 } // namespace compiler | 411 } // namespace compiler |
| 410 } // namespace internal | 412 } // namespace internal |
| 411 } // namespace v8 | 413 } // namespace v8 |
| OLD | NEW |