| 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 <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "src/allocation-site-scopes.h" | 9 #include "src/allocation-site-scopes.h" |
| 10 #include "src/ast-numbering.h" | 10 #include "src/ast/ast-numbering.h" |
| 11 #include "src/ast/scopeinfo.h" |
| 11 #include "src/code-factory.h" | 12 #include "src/code-factory.h" |
| 12 #include "src/crankshaft/hydrogen-bce.h" | 13 #include "src/crankshaft/hydrogen-bce.h" |
| 13 #include "src/crankshaft/hydrogen-bch.h" | 14 #include "src/crankshaft/hydrogen-bch.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" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 #include "src/crankshaft/hydrogen-store-elimination.h" | 33 #include "src/crankshaft/hydrogen-store-elimination.h" |
| 33 #include "src/crankshaft/hydrogen-uint32-analysis.h" | 34 #include "src/crankshaft/hydrogen-uint32-analysis.h" |
| 34 #include "src/crankshaft/lithium-allocator.h" | 35 #include "src/crankshaft/lithium-allocator.h" |
| 35 #include "src/crankshaft/typing.h" | 36 #include "src/crankshaft/typing.h" |
| 36 #include "src/full-codegen/full-codegen.h" | 37 #include "src/full-codegen/full-codegen.h" |
| 37 #include "src/ic/call-optimization.h" | 38 #include "src/ic/call-optimization.h" |
| 38 #include "src/ic/ic.h" | 39 #include "src/ic/ic.h" |
| 39 // GetRootConstructor | 40 // GetRootConstructor |
| 40 #include "src/ic/ic-inl.h" | 41 #include "src/ic/ic-inl.h" |
| 41 #include "src/isolate-inl.h" | 42 #include "src/isolate-inl.h" |
| 42 #include "src/parser.h" | 43 #include "src/parsing/parser.h" |
| 43 #include "src/runtime/runtime.h" | 44 #include "src/runtime/runtime.h" |
| 44 #include "src/scopeinfo.h" | |
| 45 | 45 |
| 46 #if V8_TARGET_ARCH_IA32 | 46 #if V8_TARGET_ARCH_IA32 |
| 47 #include "src/crankshaft/ia32/lithium-codegen-ia32.h" // NOLINT | 47 #include "src/crankshaft/ia32/lithium-codegen-ia32.h" // NOLINT |
| 48 #elif V8_TARGET_ARCH_X64 | 48 #elif V8_TARGET_ARCH_X64 |
| 49 #include "src/crankshaft/x64/lithium-codegen-x64.h" // NOLINT | 49 #include "src/crankshaft/x64/lithium-codegen-x64.h" // NOLINT |
| 50 #elif V8_TARGET_ARCH_ARM64 | 50 #elif V8_TARGET_ARCH_ARM64 |
| 51 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" // NOLINT | 51 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" // NOLINT |
| 52 #elif V8_TARGET_ARCH_ARM | 52 #elif V8_TARGET_ARCH_ARM |
| 53 #include "src/crankshaft/arm/lithium-codegen-arm.h" // NOLINT | 53 #include "src/crankshaft/arm/lithium-codegen-arm.h" // NOLINT |
| 54 #elif V8_TARGET_ARCH_PPC | 54 #elif V8_TARGET_ARCH_PPC |
| (...skipping 13582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13637 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13637 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 13638 } | 13638 } |
| 13639 | 13639 |
| 13640 #ifdef DEBUG | 13640 #ifdef DEBUG |
| 13641 graph_->Verify(false); // No full verify. | 13641 graph_->Verify(false); // No full verify. |
| 13642 #endif | 13642 #endif |
| 13643 } | 13643 } |
| 13644 | 13644 |
| 13645 } // namespace internal | 13645 } // namespace internal |
| 13646 } // namespace v8 | 13646 } // namespace v8 |
| OLD | NEW |