Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: src/codegen.h

Issue 1777593003: S390: Platform specific includes in common files (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use new Macro for object in roots array too. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/code-stubs.h ('k') | src/frames-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef V8_CODEGEN_H_ 5 #ifndef V8_CODEGEN_H_
6 #define V8_CODEGEN_H_ 6 #define V8_CODEGEN_H_
7 7
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/runtime/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #elif V8_TARGET_ARCH_ARM64 49 #elif V8_TARGET_ARCH_ARM64
50 #include "src/arm64/codegen-arm64.h" // NOLINT 50 #include "src/arm64/codegen-arm64.h" // NOLINT
51 #elif V8_TARGET_ARCH_ARM 51 #elif V8_TARGET_ARCH_ARM
52 #include "src/arm/codegen-arm.h" // NOLINT 52 #include "src/arm/codegen-arm.h" // NOLINT
53 #elif V8_TARGET_ARCH_PPC 53 #elif V8_TARGET_ARCH_PPC
54 #include "src/ppc/codegen-ppc.h" // NOLINT 54 #include "src/ppc/codegen-ppc.h" // NOLINT
55 #elif V8_TARGET_ARCH_MIPS 55 #elif V8_TARGET_ARCH_MIPS
56 #include "src/mips/codegen-mips.h" // NOLINT 56 #include "src/mips/codegen-mips.h" // NOLINT
57 #elif V8_TARGET_ARCH_MIPS64 57 #elif V8_TARGET_ARCH_MIPS64
58 #include "src/mips64/codegen-mips64.h" // NOLINT 58 #include "src/mips64/codegen-mips64.h" // NOLINT
59 #elif V8_TARGET_ARCH_S390
60 #include "src/s390/codegen-s390.h" // NOLINT
59 #elif V8_TARGET_ARCH_X87 61 #elif V8_TARGET_ARCH_X87
60 #include "src/x87/codegen-x87.h" // NOLINT 62 #include "src/x87/codegen-x87.h" // NOLINT
61 #else 63 #else
62 #error Unsupported target architecture. 64 #error Unsupported target architecture.
63 #endif 65 #endif
64 66
65 namespace v8 { 67 namespace v8 {
66 namespace internal { 68 namespace internal {
67 69
68 70
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 #ifdef V8_TARGET_ARCH_ARM64 166 #ifdef V8_TARGET_ARCH_ARM64
165 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; 167 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_;
166 #endif 168 #endif
167 #endif 169 #endif
168 }; 170 };
169 171
170 } // namespace internal 172 } // namespace internal
171 } // namespace v8 173 } // namespace v8
172 174
173 #endif // V8_CODEGEN_H_ 175 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/frames-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698