| 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" | 9 #include "src/v8.h" |
| 10 | 10 |
| 11 #include "src/allocation-site-scopes.h" | 11 #include "src/allocation-site-scopes.h" |
| 12 #include "src/ast-numbering.h" | 12 #include "src/ast-numbering.h" |
| 13 #include "src/full-codegen.h" | 13 #include "src/full-codegen/full-codegen.h" |
| 14 #include "src/hydrogen-bce.h" | 14 #include "src/hydrogen-bce.h" |
| 15 #include "src/hydrogen-bch.h" | 15 #include "src/hydrogen-bch.h" |
| 16 #include "src/hydrogen-canonicalize.h" | 16 #include "src/hydrogen-canonicalize.h" |
| 17 #include "src/hydrogen-check-elimination.h" | 17 #include "src/hydrogen-check-elimination.h" |
| 18 #include "src/hydrogen-dce.h" | 18 #include "src/hydrogen-dce.h" |
| 19 #include "src/hydrogen-dehoist.h" | 19 #include "src/hydrogen-dehoist.h" |
| 20 #include "src/hydrogen-environment-liveness.h" | 20 #include "src/hydrogen-environment-liveness.h" |
| 21 #include "src/hydrogen-escape-analysis.h" | 21 #include "src/hydrogen-escape-analysis.h" |
| 22 #include "src/hydrogen-gvn.h" | 22 #include "src/hydrogen-gvn.h" |
| 23 #include "src/hydrogen-infer-representation.h" | 23 #include "src/hydrogen-infer-representation.h" |
| (...skipping 13311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13335 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13335 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 13336 } | 13336 } |
| 13337 | 13337 |
| 13338 #ifdef DEBUG | 13338 #ifdef DEBUG |
| 13339 graph_->Verify(false); // No full verify. | 13339 graph_->Verify(false); // No full verify. |
| 13340 #endif | 13340 #endif |
| 13341 } | 13341 } |
| 13342 | 13342 |
| 13343 } // namespace internal | 13343 } // namespace internal |
| 13344 } // namespace v8 | 13344 } // namespace v8 |
| OLD | NEW |