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/hydrogen.h" | 5 #include "src/hydrogen.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "src/v8.h" | 9 #include "src/v8.h" |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 #if V8_TARGET_ARCH_IA32 | 45 #if V8_TARGET_ARCH_IA32 |
46 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT | 46 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT |
47 #elif V8_TARGET_ARCH_X64 | 47 #elif V8_TARGET_ARCH_X64 |
48 #include "src/x64/lithium-codegen-x64.h" // NOLINT | 48 #include "src/x64/lithium-codegen-x64.h" // NOLINT |
49 #elif V8_TARGET_ARCH_ARM64 | 49 #elif V8_TARGET_ARCH_ARM64 |
50 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT | 50 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT |
51 #elif V8_TARGET_ARCH_ARM | 51 #elif V8_TARGET_ARCH_ARM |
52 #include "src/arm/lithium-codegen-arm.h" // NOLINT | 52 #include "src/arm/lithium-codegen-arm.h" // NOLINT |
53 #elif V8_TARGET_ARCH_MIPS | 53 #elif V8_TARGET_ARCH_MIPS |
54 #include "src/mips/lithium-codegen-mips.h" // NOLINT | 54 #include "src/mips/lithium-codegen-mips.h" // NOLINT |
| 55 #elif V8_TARGET_ARCH_MIPS64 |
| 56 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT |
55 #elif V8_TARGET_ARCH_X87 | 57 #elif V8_TARGET_ARCH_X87 |
56 #include "src/x87/lithium-codegen-x87.h" // NOLINT | 58 #include "src/x87/lithium-codegen-x87.h" // NOLINT |
57 #else | 59 #else |
58 #error Unsupported target architecture. | 60 #error Unsupported target architecture. |
59 #endif | 61 #endif |
60 | 62 |
61 namespace v8 { | 63 namespace v8 { |
62 namespace internal { | 64 namespace internal { |
63 | 65 |
64 HBasicBlock::HBasicBlock(HGraph* graph) | 66 HBasicBlock::HBasicBlock(HGraph* graph) |
(...skipping 12357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
12422 if (ShouldProduceTraceOutput()) { | 12424 if (ShouldProduceTraceOutput()) { |
12423 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 12425 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
12424 } | 12426 } |
12425 | 12427 |
12426 #ifdef DEBUG | 12428 #ifdef DEBUG |
12427 graph_->Verify(false); // No full verify. | 12429 graph_->Verify(false); // No full verify. |
12428 #endif | 12430 #endif |
12429 } | 12431 } |
12430 | 12432 |
12431 } } // namespace v8::internal | 12433 } } // namespace v8::internal |
OLD | NEW |