1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  * vim: set ts=8 sts=4 et sw=4 tw=99:
3  * This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 #ifndef jit_arm_LOpcodes_arm_h
8 #define jit_arm_LOpcodes_arm_h
9 
10 #include "jit/shared/LOpcodes-shared.h"
11 
12 #define LIR_CPU_OPCODE_LIST(_) \
13   _(BoxFloatingPoint)          \
14   _(SoftDivI)                  \
15   _(SoftModI)                  \
16   _(ModMaskI)                  \
17   _(UDiv)                      \
18   _(UMod)                      \
19   _(SoftUDivOrMod)             \
20   _(DivOrModI64)               \
21   _(UDivOrModI64)              \
22   _(WasmTruncateToInt64)       \
23   _(WasmAtomicLoadI64)         \
24   _(WasmAtomicStoreI64)        \
25   _(WasmCompareExchangeI64)    \
26   _(WasmAtomicBinopI64)        \
27   _(WasmAtomicExchangeI64)     \
28   _(WasmUnalignedLoad)         \
29   _(WasmUnalignedStore)        \
30   _(WasmUnalignedLoadI64)      \
31   _(WasmUnalignedStoreI64)     \
32   _(Int64ToFloatingPointCall)
33 
34 #endif /* jit_arm_LOpcodes_arm_h */
35