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 #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 Loading... |
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 Loading... |
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_ |
OLD | NEW |