2 ** Definitions for ARM CPUs.
3 ** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
6 #ifndef _LJ_TARGET_ARM_H
7 #define _LJ_TARGET_ARM_H
9 /* -- Registers IDs ------------------------------------------------------- */
12 _(R0) _(R1) _(R2) _(R3) _(R4) _(R5) _(R6) _(R7) \
13 _(R8) _(R9) _(R10) _(R11) _(R12) _(SP) _(LR) _(PC)
17 #error "NYI: hard-float support for ARM"
21 #define RIDENUM(name) RID_##name,
24 GPRDEF(RIDENUM
) /* General-purpose registers (GPRs). */
25 FPRDEF(RIDENUM
) /* Floating-point registers (FPRs). */
29 /* Calling conventions. */
35 /* These definitions must match with the *.dasc file(s): */
36 RID_BASE
= RID_R9
, /* Interpreter BASE. */
37 RID_LPC
= RID_R6
, /* Interpreter PC. */
38 RID_DISPATCH
= RID_R7
, /* Interpreter DISPATCH table. */
39 RID_LREG
= RID_R8
, /* Interpreter L. */
41 /* Register ranges [min, max) and number of registers. */
43 RID_MAX_GPR
= RID_PC
+1,
44 RID_MIN_FPR
= RID_MAX_GPR
,
46 RID_MAX_FPR
= RID_MIN_FPR
,
48 #error "NYI: VFP support for ARM"
50 RID_NUM_GPR
= RID_MAX_GPR
- RID_MIN_GPR
,
51 RID_NUM_FPR
= RID_MAX_FPR
- RID_MIN_FPR
54 #define RID_NUM_KREF RID_NUM_GPR
55 #define RID_MIN_KREF RID_R0
57 /* -- Register sets ------------------------------------------------------- */
59 /* Make use of all registers, except sp, lr and pc. */
60 #define RSET_GPR (RSET_RANGE(RID_MIN_GPR, RID_R12+1))
61 #define RSET_GPREVEN \
62 (RID2RSET(RID_R0)|RID2RSET(RID_R2)|RID2RSET(RID_R4)|RID2RSET(RID_R6)| \
63 RID2RSET(RID_R8)|RID2RSET(RID_R10))
65 (RID2RSET(RID_R1)|RID2RSET(RID_R3)|RID2RSET(RID_R5)|RID2RSET(RID_R7)| \
66 RID2RSET(RID_R9)|RID2RSET(RID_R11))
69 #define RSET_ALL RSET_GPR
71 #error "NYI: VFP support for ARM"
73 #define RSET_INIT RSET_ALL
75 /* ABI-specific register sets. lr is an implicit scratch register. */
76 #define RSET_SCRATCH_GPR_ (RSET_RANGE(RID_R0, RID_R3+1)|RID2RSET(RID_R12))
78 #define RSET_SCRATCH_GPR (RSET_SCRATCH_GPR_|RID2RSET(RID_R9))
80 #define RSET_SCRATCH_GPR RSET_SCRATCH_GPR_
83 #define RSET_SCRATCH_FPR 0
85 #error "NYI: VFP support for ARM"
87 #define RSET_SCRATCH (RSET_SCRATCH_GPR|RSET_SCRATCH_FPR)
88 #define REGARG_FIRSTGPR RID_R0
89 #define REGARG_LASTGPR RID_R3
90 #define REGARG_NUMGPR 4
92 /* -- Spill slots --------------------------------------------------------- */
94 /* Spill slots are 32 bit wide. An even/odd pair is used for FPRs.
96 ** SPS_FIXED: Available fixed spill slots in interpreter frame.
97 ** This definition must match with the *.dasc file(s).
99 ** SPS_FIRST: First spill slot for general use. Reserve min. two 32 bit slots.
104 #define sps_scale(slot) (4 * (int32_t)(slot))
105 #define sps_align(slot) (((slot) - SPS_FIXED + 1) & ~1)
107 /* -- Exit state ---------------------------------------------------------- */
109 /* This definition must match with the *.dasc file(s). */
112 lua_Number fpr
[RID_NUM_FPR
]; /* Floating-point registers. */
114 int32_t gpr
[RID_NUM_GPR
]; /* General-purpose registers. */
115 int32_t spill
[256]; /* Spill slots. */
118 /* PC after instruction that caused an exit. Used to find the trace number. */
119 #define EXITSTATE_PCREG RID_PC
120 /* Highest exit + 1 indicates stack check. */
121 #define EXITSTATE_CHECKEXIT 1
123 #define EXITSTUB_SPACING 4
124 #define EXITSTUBS_PER_GROUP 32
126 /* -- Instructions -------------------------------------------------------- */
128 /* Instruction fields. */
129 #define ARMF_CC(ai, cc) (((ai) ^ ARMI_CCAL) | ((cc) << 28))
130 #define ARMF_N(r) ((r) << 16)
131 #define ARMF_D(r) ((r) << 12)
132 #define ARMF_S(r) ((r) << 8)
133 #define ARMF_M(r) (r)
134 #define ARMF_SH(sh, n) (((sh) << 5) | ((n) << 7))
135 #define ARMF_RSH(sh, r) (0x10 | ((sh) << 5) | ARMF_S(r))
137 typedef enum ARMIns
{
138 ARMI_CCAL
= 0xe0000000,
139 ARMI_S
= 0x000100000,
140 ARMI_K12
= 0x02000000,
141 ARMI_KNEG
= 0x00200000,
142 ARMI_LS_W
= 0x00200000,
143 ARMI_LS_U
= 0x00800000,
144 ARMI_LS_P
= 0x01000000,
145 ARMI_LS_R
= 0x02000000,
146 ARMI_LSX_I
= 0x00400000,
148 ARMI_AND
= 0xe0000000,
149 ARMI_EOR
= 0xe0200000,
150 ARMI_SUB
= 0xe0400000,
151 ARMI_RSB
= 0xe0600000,
152 ARMI_ADD
= 0xe0800000,
153 ARMI_ADC
= 0xe0a00000,
154 ARMI_SBC
= 0xe0c00000,
155 ARMI_RSC
= 0xe0e00000,
156 ARMI_TST
= 0xe1100000,
157 ARMI_TEQ
= 0xe1300000,
158 ARMI_CMP
= 0xe1500000,
159 ARMI_CMN
= 0xe1700000,
160 ARMI_ORR
= 0xe1800000,
161 ARMI_MOV
= 0xe1a00000,
162 ARMI_BIC
= 0xe1c00000,
163 ARMI_MVN
= 0xe1e00000,
165 ARMI_NOP
= 0xe1a00000,
167 ARMI_MUL
= 0xe0000090,
168 ARMI_SMULL
= 0xe0c00090,
170 ARMI_LDR
= 0xe4100000,
171 ARMI_LDRB
= 0xe4500000,
172 ARMI_LDRH
= 0xe01000b0,
173 ARMI_LDRSB
= 0xe01000d0,
174 ARMI_LDRSH
= 0xe01000f0,
175 ARMI_LDRD
= 0xe00000d0,
176 ARMI_STR
= 0xe4000000,
177 ARMI_STRB
= 0xe4400000,
178 ARMI_STRH
= 0xe00000b0,
179 ARMI_STRD
= 0xe00000f0,
180 ARMI_PUSH
= 0xe92d0000,
183 ARMI_BL
= 0xeb000000,
184 ARMI_BLX
= 0xfa000000,
185 ARMI_BLXr
= 0xe12fff30,
188 ARMI_REV
= 0xe6bf0f30,
189 ARMI_SXTB
= 0xe6af0070,
190 ARMI_SXTH
= 0xe6bf0070,
191 ARMI_UXTB
= 0xe6ef0070,
192 ARMI_UXTH
= 0xe6ff0070,
195 ARMI_MOVW
= 0xe3000000,
196 ARMI_MOVT
= 0xe3400000,
199 typedef enum ARMShift
{
200 ARMSH_LSL
, ARMSH_LSR
, ARMSH_ASR
, ARMSH_ROR
203 /* ARM condition codes. */
205 CC_EQ
, CC_NE
, CC_CS
, CC_CC
, CC_MI
, CC_PL
, CC_VS
, CC_VC
,
206 CC_HI
, CC_LS
, CC_GE
, CC_LT
, CC_GT
, CC_LE
, CC_AL
,
207 CC_HS
= CC_CS
, CC_LO
= CC_CC