| 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.h" | 5 #include "src/hydrogen.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "src/v8.h" | |
| 10 | |
| 11 #include "src/allocation-site-scopes.h" | 9 #include "src/allocation-site-scopes.h" |
| 12 #include "src/ast-numbering.h" | 10 #include "src/ast-numbering.h" |
| 13 #include "src/full-codegen/full-codegen.h" | 11 #include "src/full-codegen/full-codegen.h" |
| 14 #include "src/hydrogen-bce.h" | 12 #include "src/hydrogen-bce.h" |
| 15 #include "src/hydrogen-bch.h" | 13 #include "src/hydrogen-bch.h" |
| 16 #include "src/hydrogen-canonicalize.h" | 14 #include "src/hydrogen-canonicalize.h" |
| 17 #include "src/hydrogen-check-elimination.h" | 15 #include "src/hydrogen-check-elimination.h" |
| 18 #include "src/hydrogen-dce.h" | 16 #include "src/hydrogen-dce.h" |
| 19 #include "src/hydrogen-dehoist.h" | 17 #include "src/hydrogen-dehoist.h" |
| 20 #include "src/hydrogen-environment-liveness.h" | 18 #include "src/hydrogen-environment-liveness.h" |
| (...skipping 13416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13437 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13435 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 13438 } | 13436 } |
| 13439 | 13437 |
| 13440 #ifdef DEBUG | 13438 #ifdef DEBUG |
| 13441 graph_->Verify(false); // No full verify. | 13439 graph_->Verify(false); // No full verify. |
| 13442 #endif | 13440 #endif |
| 13443 } | 13441 } |
| 13444 | 13442 |
| 13445 } // namespace internal | 13443 } // namespace internal |
| 13446 } // namespace v8 | 13444 } // namespace v8 |
| OLD | NEW |