| // Copyright 2018 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef V8_CODEGEN_REGISTER_ARCH_H_ |
| #define V8_CODEGEN_REGISTER_ARCH_H_ |
| |
| #include "src/codegen/register.h" |
| #include "src/codegen/reglist.h" |
| |
| #if V8_TARGET_ARCH_IA32 |
| #include "src/codegen/ia32/register-ia32.h" |
| #elif V8_TARGET_ARCH_X64 |
| #include "src/codegen/x64/register-x64.h" |
| #elif V8_TARGET_ARCH_ARM64 |
| #include "src/codegen/arm64/register-arm64.h" |
| #elif V8_TARGET_ARCH_ARM |
| #include "src/codegen/arm/register-arm.h" |
| #elif V8_TARGET_ARCH_PPC || V8_TARGET_ARCH_PPC64 |
| #include "src/codegen/ppc/register-ppc.h" |
| #elif V8_TARGET_ARCH_MIPS |
| #include "src/codegen/mips/register-mips.h" |
| #elif V8_TARGET_ARCH_MIPS64 |
| #include "src/codegen/mips64/register-mips64.h" |
| #elif V8_TARGET_ARCH_S390 |
| #include "src/codegen/s390/register-s390.h" |
| #else |
| #error Unknown architecture. |
| #endif |
| |
| #endif // V8_CODEGEN_REGISTER_ARCH_H_ |