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/compile-time-value.h" |
12 #include "src/ast/scopes.h" | 13 #include "src/ast/scopes.h" |
13 #include "src/code-factory.h" | 14 #include "src/code-factory.h" |
14 #include "src/crankshaft/hydrogen-bce.h" | 15 #include "src/crankshaft/hydrogen-bce.h" |
15 #include "src/crankshaft/hydrogen-canonicalize.h" | 16 #include "src/crankshaft/hydrogen-canonicalize.h" |
16 #include "src/crankshaft/hydrogen-check-elimination.h" | 17 #include "src/crankshaft/hydrogen-check-elimination.h" |
17 #include "src/crankshaft/hydrogen-dce.h" | 18 #include "src/crankshaft/hydrogen-dce.h" |
18 #include "src/crankshaft/hydrogen-dehoist.h" | 19 #include "src/crankshaft/hydrogen-dehoist.h" |
19 #include "src/crankshaft/hydrogen-environment-liveness.h" | 20 #include "src/crankshaft/hydrogen-environment-liveness.h" |
20 #include "src/crankshaft/hydrogen-escape-analysis.h" | 21 #include "src/crankshaft/hydrogen-escape-analysis.h" |
21 #include "src/crankshaft/hydrogen-gvn.h" | 22 #include "src/crankshaft/hydrogen-gvn.h" |
(...skipping 13 matching lines...) Expand all Loading... |
35 #include "src/crankshaft/lithium-allocator.h" | 36 #include "src/crankshaft/lithium-allocator.h" |
36 #include "src/crankshaft/typing.h" | 37 #include "src/crankshaft/typing.h" |
37 #include "src/field-type.h" | 38 #include "src/field-type.h" |
38 #include "src/full-codegen/full-codegen.h" | 39 #include "src/full-codegen/full-codegen.h" |
39 #include "src/globals.h" | 40 #include "src/globals.h" |
40 #include "src/ic/call-optimization.h" | 41 #include "src/ic/call-optimization.h" |
41 #include "src/ic/ic.h" | 42 #include "src/ic/ic.h" |
42 // GetRootConstructor | 43 // GetRootConstructor |
43 #include "src/ic/ic-inl.h" | 44 #include "src/ic/ic-inl.h" |
44 #include "src/isolate-inl.h" | 45 #include "src/isolate-inl.h" |
45 #include "src/parsing/parser.h" | |
46 #include "src/runtime/runtime.h" | 46 #include "src/runtime/runtime.h" |
47 | 47 |
48 #if V8_TARGET_ARCH_IA32 | 48 #if V8_TARGET_ARCH_IA32 |
49 #include "src/crankshaft/ia32/lithium-codegen-ia32.h" // NOLINT | 49 #include "src/crankshaft/ia32/lithium-codegen-ia32.h" // NOLINT |
50 #elif V8_TARGET_ARCH_X64 | 50 #elif V8_TARGET_ARCH_X64 |
51 #include "src/crankshaft/x64/lithium-codegen-x64.h" // NOLINT | 51 #include "src/crankshaft/x64/lithium-codegen-x64.h" // NOLINT |
52 #elif V8_TARGET_ARCH_ARM64 | 52 #elif V8_TARGET_ARCH_ARM64 |
53 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" // NOLINT | 53 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" // NOLINT |
54 #elif V8_TARGET_ARCH_ARM | 54 #elif V8_TARGET_ARCH_ARM |
55 #include "src/crankshaft/arm/lithium-codegen-arm.h" // NOLINT | 55 #include "src/crankshaft/arm/lithium-codegen-arm.h" // NOLINT |
(...skipping 13346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13402 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13402 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
13403 } | 13403 } |
13404 | 13404 |
13405 #ifdef DEBUG | 13405 #ifdef DEBUG |
13406 graph_->Verify(false); // No full verify. | 13406 graph_->Verify(false); // No full verify. |
13407 #endif | 13407 #endif |
13408 } | 13408 } |
13409 | 13409 |
13410 } // namespace internal | 13410 } // namespace internal |
13411 } // namespace v8 | 13411 } // namespace v8 |
OLD | NEW |