| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/lithium.h" | 7 #include "src/lithium.h" |
| 8 #include "src/scopes.h" | 8 #include "src/scopes.h" |
| 9 #include "src/serialize.h" | 9 #include "src/serialize.h" |
| 10 | 10 |
| 11 #if V8_TARGET_ARCH_IA32 | 11 #if V8_TARGET_ARCH_IA32 |
| 12 #include "src/ia32/lithium-ia32.h" // NOLINT | 12 #include "src/ia32/lithium-ia32.h" // NOLINT |
| 13 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT | 13 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT |
| 14 #elif V8_TARGET_ARCH_X64 | 14 #elif V8_TARGET_ARCH_X64 |
| 15 #include "src/x64/lithium-x64.h" // NOLINT | 15 #include "src/x64/lithium-x64.h" // NOLINT |
| 16 #include "src/x64/lithium-codegen-x64.h" // NOLINT | 16 #include "src/x64/lithium-codegen-x64.h" // NOLINT |
| 17 #elif V8_TARGET_ARCH_ARM | 17 #elif V8_TARGET_ARCH_ARM |
| 18 #include "src/arm/lithium-arm.h" // NOLINT | 18 #include "src/arm/lithium-arm.h" // NOLINT |
| 19 #include "src/arm/lithium-codegen-arm.h" // NOLINT | 19 #include "src/arm/lithium-codegen-arm.h" // NOLINT |
| 20 #elif V8_TARGET_ARCH_PPC |
| 21 #include "src/ppc/lithium-ppc.h" // NOLINT |
| 22 #include "src/ppc/lithium-codegen-ppc.h" // NOLINT |
| 20 #elif V8_TARGET_ARCH_MIPS | 23 #elif V8_TARGET_ARCH_MIPS |
| 21 #include "src/mips/lithium-mips.h" // NOLINT | 24 #include "src/mips/lithium-mips.h" // NOLINT |
| 22 #include "src/mips/lithium-codegen-mips.h" // NOLINT | 25 #include "src/mips/lithium-codegen-mips.h" // NOLINT |
| 23 #elif V8_TARGET_ARCH_ARM64 | 26 #elif V8_TARGET_ARCH_ARM64 |
| 24 #include "src/arm64/lithium-arm64.h" // NOLINT | 27 #include "src/arm64/lithium-arm64.h" // NOLINT |
| 25 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT | 28 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT |
| 26 #elif V8_TARGET_ARCH_MIPS64 | 29 #elif V8_TARGET_ARCH_MIPS64 |
| 27 #include "src/mips64/lithium-mips64.h" // NOLINT | 30 #include "src/mips64/lithium-mips64.h" // NOLINT |
| 28 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT | 31 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT |
| 29 #elif V8_TARGET_ARCH_X87 | 32 #elif V8_TARGET_ARCH_X87 |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 | 645 |
| 643 | 646 |
| 644 LPhase::~LPhase() { | 647 LPhase::~LPhase() { |
| 645 if (ShouldProduceTraceOutput()) { | 648 if (ShouldProduceTraceOutput()) { |
| 646 isolate()->GetHTracer()->TraceLithium(name(), chunk_); | 649 isolate()->GetHTracer()->TraceLithium(name(), chunk_); |
| 647 } | 650 } |
| 648 } | 651 } |
| 649 | 652 |
| 650 | 653 |
| 651 } } // namespace v8::internal | 654 } } // namespace v8::internal |
| OLD | NEW |