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/crankshaft/hydrogen.h" | 5 #include "src/crankshaft/hydrogen.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <sstream> | 8 #include <sstream> |
9 | 9 |
10 #include "src/allocation-site-scopes.h" | 10 #include "src/allocation-site-scopes.h" |
11 #include "src/ast/ast-numbering.h" | 11 #include "src/ast/ast-numbering.h" |
| 12 #include "src/ast/scopes.h" |
12 #include "src/code-factory.h" | 13 #include "src/code-factory.h" |
13 #include "src/crankshaft/hydrogen-bce.h" | 14 #include "src/crankshaft/hydrogen-bce.h" |
14 #include "src/crankshaft/hydrogen-canonicalize.h" | 15 #include "src/crankshaft/hydrogen-canonicalize.h" |
15 #include "src/crankshaft/hydrogen-check-elimination.h" | 16 #include "src/crankshaft/hydrogen-check-elimination.h" |
16 #include "src/crankshaft/hydrogen-dce.h" | 17 #include "src/crankshaft/hydrogen-dce.h" |
17 #include "src/crankshaft/hydrogen-dehoist.h" | 18 #include "src/crankshaft/hydrogen-dehoist.h" |
18 #include "src/crankshaft/hydrogen-environment-liveness.h" | 19 #include "src/crankshaft/hydrogen-environment-liveness.h" |
19 #include "src/crankshaft/hydrogen-escape-analysis.h" | 20 #include "src/crankshaft/hydrogen-escape-analysis.h" |
20 #include "src/crankshaft/hydrogen-gvn.h" | 21 #include "src/crankshaft/hydrogen-gvn.h" |
21 #include "src/crankshaft/hydrogen-infer-representation.h" | 22 #include "src/crankshaft/hydrogen-infer-representation.h" |
(...skipping 13410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13432 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13433 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
13433 } | 13434 } |
13434 | 13435 |
13435 #ifdef DEBUG | 13436 #ifdef DEBUG |
13436 graph_->Verify(false); // No full verify. | 13437 graph_->Verify(false); // No full verify. |
13437 #endif | 13438 #endif |
13438 } | 13439 } |
13439 | 13440 |
13440 } // namespace internal | 13441 } // namespace internal |
13441 } // namespace v8 | 13442 } // namespace v8 |
OLD | NEW |