Chromium Code Reviews

Side by Side Diff: src/hydrogen.cc

Issue 817143002: Contribution of PowerPC port (continuation of 422063005) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
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 <sstream> 7 #include <sstream>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 33 matching lines...)
44 #include "src/typing.h" 44 #include "src/typing.h"
45 45
46 #if V8_TARGET_ARCH_IA32 46 #if V8_TARGET_ARCH_IA32
47 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT 47 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT
48 #elif V8_TARGET_ARCH_X64 48 #elif V8_TARGET_ARCH_X64
49 #include "src/x64/lithium-codegen-x64.h" // NOLINT 49 #include "src/x64/lithium-codegen-x64.h" // NOLINT
50 #elif V8_TARGET_ARCH_ARM64 50 #elif V8_TARGET_ARCH_ARM64
51 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT 51 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT
52 #elif V8_TARGET_ARCH_ARM 52 #elif V8_TARGET_ARCH_ARM
53 #include "src/arm/lithium-codegen-arm.h" // NOLINT 53 #include "src/arm/lithium-codegen-arm.h" // NOLINT
54 #elif V8_TARGET_ARCH_PPC
55 #include "src/ppc/lithium-codegen-ppc.h" // NOLINT
54 #elif V8_TARGET_ARCH_MIPS 56 #elif V8_TARGET_ARCH_MIPS
55 #include "src/mips/lithium-codegen-mips.h" // NOLINT 57 #include "src/mips/lithium-codegen-mips.h" // NOLINT
56 #elif V8_TARGET_ARCH_MIPS64 58 #elif V8_TARGET_ARCH_MIPS64
57 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT 59 #include "src/mips64/lithium-codegen-mips64.h" // NOLINT
58 #elif V8_TARGET_ARCH_X87 60 #elif V8_TARGET_ARCH_X87
59 #include "src/x87/lithium-codegen-x87.h" // NOLINT 61 #include "src/x87/lithium-codegen-x87.h" // NOLINT
60 #else 62 #else
61 #error Unsupported target architecture. 63 #error Unsupported target architecture.
62 #endif 64 #endif
63 65
(...skipping 13371 matching lines...)
13435 if (ShouldProduceTraceOutput()) { 13437 if (ShouldProduceTraceOutput()) {
13436 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 13438 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
13437 } 13439 }
13438 13440
13439 #ifdef DEBUG 13441 #ifdef DEBUG
13440 graph_->Verify(false); // No full verify. 13442 graph_->Verify(false); // No full verify.
13441 #endif 13443 #endif
13442 } 13444 }
13443 13445
13444 } } // namespace v8::internal 13446 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine