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_MIPS | 20 #elif V8_TARGET_ARCH_MIPS |
21 #include "src/mips/lithium-mips.h" // NOLINT | 21 #include "src/mips/lithium-mips.h" // NOLINT |
22 #include "src/mips/lithium-codegen-mips.h" // NOLINT | 22 #include "src/mips/lithium-codegen-mips.h" // NOLINT |
23 #elif V8_TARGET_ARCH_ARM64 | 23 #elif V8_TARGET_ARCH_ARM64 |
24 #include "src/arm64/lithium-arm64.h" // NOLINT | 24 #include "src/arm64/lithium-arm64.h" // NOLINT |
25 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT | 25 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT |
| 26 #elif V8_TARGET_ARCH_MIPS64 |
| 27 #include "src/mips64/lithium-mips64.h" // NOLINT |
| 28 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT |
26 #elif V8_TARGET_ARCH_X87 | 29 #elif V8_TARGET_ARCH_X87 |
27 #include "src/x87/lithium-x87.h" // NOLINT | 30 #include "src/x87/lithium-x87.h" // NOLINT |
28 #include "src/x87/lithium-codegen-x87.h" // NOLINT | 31 #include "src/x87/lithium-codegen-x87.h" // NOLINT |
29 #else | 32 #else |
30 #error "Unknown architecture." | 33 #error "Unknown architecture." |
31 #endif | 34 #endif |
32 | 35 |
33 namespace v8 { | 36 namespace v8 { |
34 namespace internal { | 37 namespace internal { |
35 | 38 |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 | 617 |
615 | 618 |
616 LPhase::~LPhase() { | 619 LPhase::~LPhase() { |
617 if (ShouldProduceTraceOutput()) { | 620 if (ShouldProduceTraceOutput()) { |
618 isolate()->GetHTracer()->TraceLithium(name(), chunk_); | 621 isolate()->GetHTracer()->TraceLithium(name(), chunk_); |
619 } | 622 } |
620 } | 623 } |
621 | 624 |
622 | 625 |
623 } } // namespace v8::internal | 626 } } // namespace v8::internal |
OLD | NEW |