| 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/ast-numbering.h" | 10 #include "src/ast/ast-numbering.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #elif V8_TARGET_ARCH_ARM64 | 51 #elif V8_TARGET_ARCH_ARM64 |
| 52 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" // NOLINT | 52 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" // NOLINT |
| 53 #elif V8_TARGET_ARCH_ARM | 53 #elif V8_TARGET_ARCH_ARM |
| 54 #include "src/crankshaft/arm/lithium-codegen-arm.h" // NOLINT | 54 #include "src/crankshaft/arm/lithium-codegen-arm.h" // NOLINT |
| 55 #elif V8_TARGET_ARCH_PPC | 55 #elif V8_TARGET_ARCH_PPC |
| 56 #include "src/crankshaft/ppc/lithium-codegen-ppc.h" // NOLINT | 56 #include "src/crankshaft/ppc/lithium-codegen-ppc.h" // NOLINT |
| 57 #elif V8_TARGET_ARCH_MIPS | 57 #elif V8_TARGET_ARCH_MIPS |
| 58 #include "src/crankshaft/mips/lithium-codegen-mips.h" // NOLINT | 58 #include "src/crankshaft/mips/lithium-codegen-mips.h" // NOLINT |
| 59 #elif V8_TARGET_ARCH_MIPS64 | 59 #elif V8_TARGET_ARCH_MIPS64 |
| 60 #include "src/crankshaft/mips64/lithium-codegen-mips64.h" // NOLINT | 60 #include "src/crankshaft/mips64/lithium-codegen-mips64.h" // NOLINT |
| 61 #elif V8_TARGET_ARCH_S390 |
| 62 #include "src/crankshaft/s390/lithium-codegen-s390.h" // NOLINT |
| 61 #elif V8_TARGET_ARCH_X87 | 63 #elif V8_TARGET_ARCH_X87 |
| 62 #include "src/crankshaft/x87/lithium-codegen-x87.h" // NOLINT | 64 #include "src/crankshaft/x87/lithium-codegen-x87.h" // NOLINT |
| 63 #else | 65 #else |
| 64 #error Unsupported target architecture. | 66 #error Unsupported target architecture. |
| 65 #endif | 67 #endif |
| 66 | 68 |
| 67 namespace v8 { | 69 namespace v8 { |
| 68 namespace internal { | 70 namespace internal { |
| 69 | 71 |
| 70 HBasicBlock::HBasicBlock(HGraph* graph) | 72 HBasicBlock::HBasicBlock(HGraph* graph) |
| (...skipping 13455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13526 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13528 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 13527 } | 13529 } |
| 13528 | 13530 |
| 13529 #ifdef DEBUG | 13531 #ifdef DEBUG |
| 13530 graph_->Verify(false); // No full verify. | 13532 graph_->Verify(false); // No full verify. |
| 13531 #endif | 13533 #endif |
| 13532 } | 13534 } |
| 13533 | 13535 |
| 13534 } // namespace internal | 13536 } // namespace internal |
| 13535 } // namespace v8 | 13537 } // namespace v8 |
| OLD | NEW |