v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
assembler-inl.h
Go to the documentation of this file.
1// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef V8_CODEGEN_ASSEMBLER_INL_H_
6#define V8_CODEGEN_ASSEMBLER_INL_H_
7
9// Include the non-inl header before the rest of the headers.
10
11#if V8_TARGET_ARCH_IA32
13#elif V8_TARGET_ARCH_X64
15#elif V8_TARGET_ARCH_ARM64
17#elif V8_TARGET_ARCH_ARM
19#elif V8_TARGET_ARCH_PPC64
21#elif V8_TARGET_ARCH_MIPS64
23#elif V8_TARGET_ARCH_LOONG64
25#elif V8_TARGET_ARCH_S390X
27#elif V8_TARGET_ARCH_RISCV32 || V8_TARGET_ARCH_RISCV64
29#else
30#error Unknown architecture.
31#endif
32
33#endif // V8_CODEGEN_ASSEMBLER_INL_H_