simulator.h 860 Bytes
Newer Older
1
// Copyright 2009 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4 5 6 7 8

#ifndef V8_SIMULATOR_H_
#define V8_SIMULATOR_H_

#if V8_TARGET_ARCH_IA32
9
#include "src/ia32/simulator-ia32.h"
10
#elif V8_TARGET_ARCH_X64
11
#include "src/x64/simulator-x64.h"
12
#elif V8_TARGET_ARCH_ARM64
13
#include "src/arm64/simulator-arm64.h"
14
#elif V8_TARGET_ARCH_ARM
15
#include "src/arm/simulator-arm.h"
16 17
#elif V8_TARGET_ARCH_PPC
#include "src/ppc/simulator-ppc.h"
18
#elif V8_TARGET_ARCH_MIPS
19
#include "src/mips/simulator-mips.h"
20 21
#elif V8_TARGET_ARCH_MIPS64
#include "src/mips64/simulator-mips64.h"
22 23
#elif V8_TARGET_ARCH_S390
#include "src/s390/simulator-s390.h"
danno@chromium.org's avatar
danno@chromium.org committed
24
#elif V8_TARGET_ARCH_X87
25
#include "src/x87/simulator-x87.h"
26 27 28 29 30
#else
#error Unsupported target architecture.
#endif

#endif  // V8_SIMULATOR_H_