| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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-variable-optimizer.h" | 5 #include "src/compiler/loop-variable-optimizer.h" |
| 6 | 6 |
| 7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/graph.h" | 8 #include "src/compiler/graph.h" |
| 9 #include "src/compiler/node-marker.h" | 9 #include "src/compiler/node-marker.h" |
| 10 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
| 11 #include "src/compiler/node.h" | 11 #include "src/compiler/node.h" |
| 12 #include "src/zone-containers.h" | 12 #include "src/zone/zone-containers.h" |
| 13 #include "src/zone.h" | 13 #include "src/zone/zone.h" |
| 14 | 14 |
| 15 namespace v8 { | 15 namespace v8 { |
| 16 namespace internal { | 16 namespace internal { |
| 17 namespace compiler { | 17 namespace compiler { |
| 18 | 18 |
| 19 // Macro for outputting trace information from representation inference. | 19 // Macro for outputting trace information from representation inference. |
| 20 #define TRACE(...) \ | 20 #define TRACE(...) \ |
| 21 do { \ | 21 do { \ |
| 22 if (FLAG_trace_turbo_loop) PrintF(__VA_ARGS__); \ | 22 if (FLAG_trace_turbo_loop) PrintF(__VA_ARGS__); \ |
| 23 } while (false) | 23 } while (false) |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 backedge_value, backedge_control); | 396 backedge_value, backedge_control); |
| 397 induction_var->phi()->ReplaceInput(1, rename); | 397 induction_var->phi()->ReplaceInput(1, rename); |
| 398 } | 398 } |
| 399 } | 399 } |
| 400 } | 400 } |
| 401 } | 401 } |
| 402 | 402 |
| 403 } // namespace compiler | 403 } // namespace compiler |
| 404 } // namespace internal | 404 } // namespace internal |
| 405 } // namespace v8 | 405 } // namespace v8 |
| OLD | NEW |