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     _(AsmJSCompareExchangeCallout) \
21     _(AsmJSAtomicExchangeCallout) \
22     _(AsmJSAtomicBinopCallout)
23 
24 #endif /* jit_arm_LOpcodes_arm_h */
25