blob: 4b604d2ab83070b87be092c329b6459705be251b [file] [log] [blame]
buzbeee3acd072012-02-25 17:03:10 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_COMPILER_COMPILER_CODEGEN_MIPS_MIPSLIR_H_
18#define ART_COMPILER_COMPILER_CODEGEN_MIPS_MIPSLIR_H_
19
buzbeeefc63692012-11-14 16:31:52 -080020#include "../../compiler_internals.h"
buzbeee3acd072012-02-25 17:03:10 -080021
22namespace art {
23
buzbeee3acd072012-02-25 17:03:10 -080024/*
25 * Runtime register conventions.
26 *
27 * zero is always the value 0
28 * at is scratch (normally used as temp reg by assembler)
29 * v0, v1 are scratch (normally hold subroutine return values)
30 * a0-a3 are scratch (normally hold subroutine arguments)
31 * t0-t8 are scratch
32 * t9 is scratch (normally used for function calls)
buzbeef0504cd2012-11-13 16:31:10 -080033 * s0 (rMIPS_SUSPEND) is reserved [holds suspend-check counter]
34 * s1 (rMIPS_SELF) is reserved [holds current &Thread]
buzbeee3acd072012-02-25 17:03:10 -080035 * s2-s7 are callee save (promotion target)
36 * k0, k1 are reserved for use by interrupt handlers
37 * gp is reserved for global pointer
38 * sp is reserved
39 * s8 is callee save (promotion target)
40 * ra is scratch (normally holds the return addr)
41 *
42 * Preserved across C calls: s0-s8
43 * Trashed across C calls: at, v0-v1, a0-a3, t0-t9, gp, ra
44 *
45 * Floating pointer registers
46 * NOTE: there are 32 fp registers (16 df pairs), but currently
47 * only support 16 fp registers (8 df pairs).
48 * f0-f15
49 * df0-df7, where df0={f0,f1}, df1={f2,f3}, ... , df7={f14,f15}
50 *
51 * f0-f15 (df0-df7) trashed across C calls
52 *
53 * For mips32 code use:
54 * a0-a3 to hold operands
55 * v0-v1 to hold results
56 * t0-t9 for temps
57 *
58 * All jump/branch instructions have a delay slot after it.
59 *
60 * Stack frame diagram (stack grows down, higher addresses at top):
61 *
62 * +------------------------+
63 * | IN[ins-1] | {Note: resides in caller's frame}
64 * | . |
65 * | IN[0] |
66 * | caller's Method* |
67 * +========================+ {Note: start of callee's frame}
68 * | spill region | {variable sized - will include lr if non-leaf.}
69 * +------------------------+
70 * | ...filler word... | {Note: used as 2nd word of V[locals-1] if long]
71 * +------------------------+
72 * | V[locals-1] |
73 * | V[locals-2] |
74 * | . |
75 * | . |
76 * | V[1] |
77 * | V[0] |
78 * +------------------------+
79 * | 0 to 3 words padding |
80 * +------------------------+
81 * | OUT[outs-1] |
82 * | OUT[outs-2] |
83 * | . |
84 * | OUT[0] |
85 * | curMethod* | <<== sp w/ 16-byte alignment
86 * +========================+
87 */
88
89/* Offset to distingish FP regs */
buzbeef0504cd2012-11-13 16:31:10 -080090#define MIPS_FP_REG_OFFSET 32
buzbeee3acd072012-02-25 17:03:10 -080091/* Offset to distinguish DP FP regs */
buzbeef0504cd2012-11-13 16:31:10 -080092#define MIPS_FP_DOUBLE 64
buzbeee3acd072012-02-25 17:03:10 -080093/* Offset to distingish the extra regs */
buzbeef0504cd2012-11-13 16:31:10 -080094#define MIPS_EXTRA_REG_OFFSET 128
buzbeee3acd072012-02-25 17:03:10 -080095/* Reg types */
buzbeef0504cd2012-11-13 16:31:10 -080096#define MIPS_REGTYPE(x) (x & (MIPS_FP_REG_OFFSET | MIPS_FP_DOUBLE))
97#define MIPS_FPREG(x) ((x & MIPS_FP_REG_OFFSET) == MIPS_FP_REG_OFFSET)
98#define MIPS_EXTRAREG(x) ((x & MIPS_EXTRA_REG_OFFSET) == MIPS_EXTRA_REG_OFFSET)
99#define MIPS_DOUBLEREG(x) ((x & MIPS_FP_DOUBLE) == MIPS_FP_DOUBLE)
100#define MIPS_SINGLEREG(x) (MIPS_FPREG(x) && !MIPS_DOUBLEREG(x))
buzbeee3acd072012-02-25 17:03:10 -0800101/*
102 * Note: the low register of a floating point pair is sufficient to
103 * create the name of a double, but require both names to be passed to
104 * allow for asserts to verify that the pair is consecutive if significant
105 * rework is done in this area. Also, it is a good reminder in the calling
106 * code that reg locations always describe doubles as a pair of singles.
107 */
buzbeef0504cd2012-11-13 16:31:10 -0800108#define MIPS_S2D(x,y) ((x) | MIPS_FP_DOUBLE)
buzbeee3acd072012-02-25 17:03:10 -0800109/* Mask to strip off fp flags */
buzbeef0504cd2012-11-13 16:31:10 -0800110#define MIPS_FP_REG_MASK (MIPS_FP_REG_OFFSET-1)
buzbeee3acd072012-02-25 17:03:10 -0800111
112#ifdef HAVE_LITTLE_ENDIAN
113#define LOWORD_OFFSET 0
114#define HIWORD_OFFSET 4
115#define r_ARG0 r_A0
116#define r_ARG1 r_A1
117#define r_ARG2 r_A2
118#define r_ARG3 r_A3
119#define r_RESULT0 r_V0
120#define r_RESULT1 r_V1
121#else
122#define LOWORD_OFFSET 4
123#define HIWORD_OFFSET 0
124#define r_ARG0 r_A1
125#define r_ARG1 r_A0
126#define r_ARG2 r_A3
127#define r_ARG3 r_A2
128#define r_RESULT0 r_V1
129#define r_RESULT1 r_V0
130#endif
131
132/* These are the same for both big and little endian. */
133#define r_FARG0 r_F12
134#define r_FARG1 r_F13
jeffhaofc6a30e2012-10-18 18:24:15 -0700135#define r_FARG2 r_F14
136#define r_FARG3 r_F15
buzbeee3acd072012-02-25 17:03:10 -0800137#define r_FRESULT0 r_F0
138#define r_FRESULT1 r_F1
139
buzbeeb046e162012-10-30 15:48:42 -0700140/* Regs not used for Mips */
buzbeef0504cd2012-11-13 16:31:10 -0800141#define rMIPS_LR INVALID_REG
142#define rMIPS_PC INVALID_REG
buzbeeb046e162012-10-30 15:48:42 -0700143
buzbeee3acd072012-02-25 17:03:10 -0800144/* RegisterLocation templates return values (r_V0, or r_V0/r_V1) */
buzbeef0504cd2012-11-13 16:31:10 -0800145#define MIPS_LOC_C_RETURN {kLocPhysReg, 0, 0, 0, 0, 0, 0, 0, 1, r_V0, INVALID_REG, \
146 INVALID_SREG, INVALID_SREG}
147#define MIPS_LOC_C_RETURN_FLOAT {kLocPhysReg, 0, 0, 0, 0, 0, 0, 0, 1, r_FRESULT0, \
148 INVALID_REG, INVALID_SREG, INVALID_SREG}
149#define MIPS_LOC_C_RETURN_WIDE {kLocPhysReg, 1, 0, 0, 0, 0, 0, 0, 1, r_RESULT0, \
150 r_RESULT1, INVALID_SREG, INVALID_SREG}
151#define MIPS_LOC_C_RETURN_DOUBLE {kLocPhysReg, 1, 0, 0, 0, 0, 0, 0, 1, r_FRESULT0,\
jeffhao4f8f04a2012-10-02 18:10:35 -0700152 r_FRESULT1, INVALID_SREG, INVALID_SREG}
buzbeee3acd072012-02-25 17:03:10 -0800153
buzbeeec137432012-11-13 12:13:16 -0800154enum MipsResourceEncodingPos {
155 kMipsGPReg0 = 0,
156 kMipsRegSP = 29,
157 kMipsRegLR = 31,
158 kMipsFPReg0 = 32, /* only 16 fp regs supported currently */
159 kMipsFPRegEnd = 48,
160 kMipsRegHI = kMipsFPRegEnd,
161 kMipsRegLO,
162 kMipsRegPC,
163 kMipsRegEnd = 51,
Elliott Hughes719ace42012-03-09 18:06:03 -0800164};
buzbeee3acd072012-02-25 17:03:10 -0800165
buzbeeeaf09bc2012-11-15 14:51:41 -0800166#define ENCODE_MIPS_REG_LIST(N) ((uint64_t) N)
buzbeeec137432012-11-13 12:13:16 -0800167#define ENCODE_MIPS_REG_SP (1ULL << kMipsRegSP)
168#define ENCODE_MIPS_REG_LR (1ULL << kMipsRegLR)
169#define ENCODE_MIPS_REG_PC (1ULL << kMipsRegPC)
buzbeee3acd072012-02-25 17:03:10 -0800170
buzbeee3acd072012-02-25 17:03:10 -0800171/*
buzbeee3acd072012-02-25 17:03:10 -0800172 * Annotate special-purpose core registers:
173 */
174
buzbeef0504cd2012-11-13 16:31:10 -0800175enum MipsNativeRegisterPool {
Bill Buzbeea114add2012-05-03 15:00:40 -0700176 r_ZERO = 0,
177 r_AT = 1,
178 r_V0 = 2,
179 r_V1 = 3,
180 r_A0 = 4,
181 r_A1 = 5,
182 r_A2 = 6,
183 r_A3 = 7,
184 r_T0 = 8,
185 r_T1 = 9,
186 r_T2 = 10,
187 r_T3 = 11,
188 r_T4 = 12,
189 r_T5 = 13,
190 r_T6 = 14,
191 r_T7 = 15,
192 r_S0 = 16,
193 r_S1 = 17,
194 r_S2 = 18,
195 r_S3 = 19,
196 r_S4 = 20,
197 r_S5 = 21,
198 r_S6 = 22,
199 r_S7 = 23,
200 r_T8 = 24,
201 r_T9 = 25,
202 r_K0 = 26,
203 r_K1 = 27,
204 r_GP = 28,
205 r_SP = 29,
206 r_FP = 30,
207 r_RA = 31,
buzbeee3acd072012-02-25 17:03:10 -0800208
buzbeef0504cd2012-11-13 16:31:10 -0800209 r_F0 = 0 + MIPS_FP_REG_OFFSET,
Bill Buzbeea114add2012-05-03 15:00:40 -0700210 r_F1,
211 r_F2,
212 r_F3,
213 r_F4,
214 r_F5,
215 r_F6,
216 r_F7,
217 r_F8,
218 r_F9,
219 r_F10,
220 r_F11,
221 r_F12,
222 r_F13,
223 r_F14,
224 r_F15,
buzbeee3acd072012-02-25 17:03:10 -0800225#if 0 /* only 16 fp regs supported currently */
Bill Buzbeea114add2012-05-03 15:00:40 -0700226 r_F16,
227 r_F17,
228 r_F18,
229 r_F19,
230 r_F20,
231 r_F21,
232 r_F22,
233 r_F23,
234 r_F24,
235 r_F25,
236 r_F26,
237 r_F27,
238 r_F28,
239 r_F29,
240 r_F30,
241 r_F31,
buzbeee3acd072012-02-25 17:03:10 -0800242#endif
buzbeef0504cd2012-11-13 16:31:10 -0800243 r_DF0 = r_F0 + MIPS_FP_DOUBLE,
244 r_DF1 = r_F2 + MIPS_FP_DOUBLE,
245 r_DF2 = r_F4 + MIPS_FP_DOUBLE,
246 r_DF3 = r_F6 + MIPS_FP_DOUBLE,
247 r_DF4 = r_F8 + MIPS_FP_DOUBLE,
248 r_DF5 = r_F10 + MIPS_FP_DOUBLE,
249 r_DF6 = r_F12 + MIPS_FP_DOUBLE,
250 r_DF7 = r_F14 + MIPS_FP_DOUBLE,
buzbeee3acd072012-02-25 17:03:10 -0800251#if 0 /* only 16 fp regs supported currently */
buzbeef0504cd2012-11-13 16:31:10 -0800252 r_DF8 = r_F16 + MIPS_FP_DOUBLE,
253 r_DF9 = r_F18 + MIPS_FP_DOUBLE,
254 r_DF10 = r_F20 + MIPS_FP_DOUBLE,
255 r_DF11 = r_F22 + MIPS_FP_DOUBLE,
256 r_DF12 = r_F24 + MIPS_FP_DOUBLE,
257 r_DF13 = r_F26 + MIPS_FP_DOUBLE,
258 r_DF14 = r_F28 + MIPS_FP_DOUBLE,
259 r_DF15 = r_F30 + MIPS_FP_DOUBLE,
buzbeee3acd072012-02-25 17:03:10 -0800260#endif
buzbeef0504cd2012-11-13 16:31:10 -0800261 r_HI = MIPS_EXTRA_REG_OFFSET,
Bill Buzbeea114add2012-05-03 15:00:40 -0700262 r_LO,
263 r_PC,
Elliott Hughes719ace42012-03-09 18:06:03 -0800264};
buzbeee3acd072012-02-25 17:03:10 -0800265
buzbee5de34942012-03-01 14:51:57 -0800266/*
267 * Target-independent aliases
268 */
269
buzbeef0504cd2012-11-13 16:31:10 -0800270#define rMIPS_SUSPEND r_S0
271#define rMIPS_SELF r_S1
272#define rMIPS_SP r_SP
273#define rMIPS_ARG0 r_ARG0
274#define rMIPS_ARG1 r_ARG1
275#define rMIPS_ARG2 r_ARG2
276#define rMIPS_ARG3 r_ARG3
277#define rMIPS_FARG0 r_FARG0
278#define rMIPS_FARG1 r_FARG1
279#define rMIPS_FARG2 r_FARG2
280#define rMIPS_FARG3 r_FARG3
281#define rMIPS_RET0 r_RESULT0
282#define rMIPS_RET1 r_RESULT1
283#define rMIPS_INVOKE_TGT r_T9
284#define rMIPS_COUNT INVALID_REG
buzbee5de34942012-03-01 14:51:57 -0800285
buzbeee3acd072012-02-25 17:03:10 -0800286/* Shift encodings */
Elliott Hughes719ace42012-03-09 18:06:03 -0800287enum MipsShiftEncodings {
Bill Buzbeea114add2012-05-03 15:00:40 -0700288 kMipsLsl = 0x0,
289 kMipsLsr = 0x1,
290 kMipsAsr = 0x2,
291 kMipsRor = 0x3
Elliott Hughes719ace42012-03-09 18:06:03 -0800292};
buzbeee3acd072012-02-25 17:03:10 -0800293
buzbeea2ebdd72012-03-04 14:57:06 -0800294// MIPS sync kinds (Note: support for kinds other than kSYNC0 may not exist)
295#define kSYNC0 0x00
296#define kSYNC_WMB 0x04
297#define kSYNC_MB 0x01
298#define kSYNC_ACQUIRE 0x11
299#define kSYNC_RELEASE 0x12
300#define kSYNC_RMB 0x13
301
302// TODO: Use smaller hammer when appropriate for target CPU
303#define kST kSYNC0
304#define kSY kSYNC0
buzbeee3acd072012-02-25 17:03:10 -0800305
buzbee31a4a6f2012-02-28 15:36:15 -0800306#define isPseudoOpcode(opCode) ((int)(opCode) < 0)
buzbeee3acd072012-02-25 17:03:10 -0800307
308/*
309 * The following enum defines the list of supported Thumb instructions by the
Ian Rogersde797832012-03-06 10:18:10 -0800310 * assembler. Their corresponding EncodingMap positions will be defined in
311 * Assemble.cc.
buzbeee3acd072012-02-25 17:03:10 -0800312 */
Elliott Hughes719ace42012-03-09 18:06:03 -0800313enum MipsOpCode {
buzbeeb046e162012-10-30 15:48:42 -0700314 kMipsFirst = 0,
Bill Buzbeea114add2012-05-03 15:00:40 -0700315 kMips32BitData = kMipsFirst, /* data [31..0] */
316 kMipsAddiu, /* addiu t,s,imm16 [001001] s[25..21] t[20..16] imm16[15..0] */
317 kMipsAddu, /* add d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100001] */
318 kMipsAnd, /* and d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100100] */
319 kMipsAndi, /* andi t,s,imm16 [001100] s[25..21] t[20..16] imm16[15..0] */
320 kMipsB, /* b o [0001000000000000] o[15..0] */
321 kMipsBal, /* bal o [0000010000010001] o[15..0] */
322 /* NOTE: the code tests the range kMipsBeq thru kMipsBne, so
323 adding an instruction in this range may require updates */
324 kMipsBeq, /* beq s,t,o [000100] s[25..21] t[20..16] o[15..0] */
325 kMipsBeqz, /* beqz s,o [000100] s[25..21] [00000] o[15..0] */
326 kMipsBgez, /* bgez s,o [000001] s[25..21] [00001] o[15..0] */
327 kMipsBgtz, /* bgtz s,o [000111] s[25..21] [00000] o[15..0] */
328 kMipsBlez, /* blez s,o [000110] s[25..21] [00000] o[15..0] */
329 kMipsBltz, /* bltz s,o [000001] s[25..21] [00000] o[15..0] */
330 kMipsBnez, /* bnez s,o [000101] s[25..21] [00000] o[15..0] */
331 kMipsBne, /* bne s,t,o [000101] s[25..21] t[20..16] o[15..0] */
332 kMipsDiv, /* div s,t [000000] s[25..21] t[20..16] [0000000000011010] */
buzbeee3acd072012-02-25 17:03:10 -0800333#if __mips_isa_rev>=2
Bill Buzbeea114add2012-05-03 15:00:40 -0700334 kMipsExt, /* ext t,s,p,z [011111] s[25..21] t[20..16] z[15..11] p[10..6] [000000] */
buzbeee3acd072012-02-25 17:03:10 -0800335#endif
Bill Buzbeea114add2012-05-03 15:00:40 -0700336 kMipsJal, /* jal t [000011] t[25..0] */
337 kMipsJalr, /* jalr d,s [000000] s[25..21] [00000] d[15..11]
338 hint[10..6] [001001] */
339 kMipsJr, /* jr s [000000] s[25..21] [0000000000] hint[10..6] [001000] */
340 kMipsLahi, /* lui t,imm16 [00111100000] t[20..16] imm16[15..0] load addr hi */
341 kMipsLalo, /* ori t,s,imm16 [001001] s[25..21] t[20..16] imm16[15..0] load addr lo */
342 kMipsLui, /* lui t,imm16 [00111100000] t[20..16] imm16[15..0] */
343 kMipsLb, /* lb t,o(b) [100000] b[25..21] t[20..16] o[15..0] */
344 kMipsLbu, /* lbu t,o(b) [100100] b[25..21] t[20..16] o[15..0] */
345 kMipsLh, /* lh t,o(b) [100001] b[25..21] t[20..16] o[15..0] */
346 kMipsLhu, /* lhu t,o(b) [100101] b[25..21] t[20..16] o[15..0] */
347 kMipsLw, /* lw t,o(b) [100011] b[25..21] t[20..16] o[15..0] */
348 kMipsMfhi, /* mfhi d [0000000000000000] d[15..11] [00000010000] */
349 kMipsMflo, /* mflo d [0000000000000000] d[15..11] [00000010010] */
350 kMipsMove, /* move d,s [000000] s[25..21] [00000] d[15..11] [00000100101] */
351 kMipsMovz, /* movz d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000001010] */
352 kMipsMul, /* mul d,s,t [011100] s[25..21] t[20..16] d[15..11] [00000000010] */
353 kMipsNop, /* nop [00000000000000000000000000000000] */
354 kMipsNor, /* nor d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100111] */
355 kMipsOr, /* or d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100101] */
356 kMipsOri, /* ori t,s,imm16 [001001] s[25..21] t[20..16] imm16[15..0] */
357 kMipsPref, /* pref h,o(b) [101011] b[25..21] h[20..16] o[15..0] */
358 kMipsSb, /* sb t,o(b) [101000] b[25..21] t[20..16] o[15..0] */
buzbeee3acd072012-02-25 17:03:10 -0800359#if __mips_isa_rev>=2
Bill Buzbeea114add2012-05-03 15:00:40 -0700360 kMipsSeb, /* seb d,t [01111100000] t[20..16] d[15..11] [10000100000] */
361 kMipsSeh, /* seh d,t [01111100000] t[20..16] d[15..11] [11000100000] */
buzbeee3acd072012-02-25 17:03:10 -0800362#endif
Bill Buzbeea114add2012-05-03 15:00:40 -0700363 kMipsSh, /* sh t,o(b) [101001] b[25..21] t[20..16] o[15..0] */
364 kMipsSll, /* sll d,t,a [00000000000] t[20..16] d[15..11] a[10..6] [000000] */
365 kMipsSllv, /* sllv d,t,s [000000] s[25..21] t[20..16] d[15..11] [00000000100] */
366 kMipsSlt, /* slt d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000101010] */
367 kMipsSlti, /* slti t,s,imm16 [001010] s[25..21] t[20..16] imm16[15..0] */
368 kMipsSltu, /* sltu d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000101011] */
369 kMipsSra, /* sra d,s,imm5 [00000000000] t[20..16] d[15..11] imm5[10..6] [000011] */
370 kMipsSrav, /* srav d,t,s [000000] s[25..21] t[20..16] d[15..11] [00000000111] */
371 kMipsSrl, /* srl d,t,a [00000000000] t[20..16] d[20..16] a[10..6] [000010] */
372 kMipsSrlv, /* srlv d,t,s [000000] s[25..21] t[20..16] d[15..11] [00000000110] */
373 kMipsSubu, /* subu d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100011] */
374 kMipsSw, /* sw t,o(b) [101011] b[25..21] t[20..16] o[15..0] */
375 kMipsXor, /* xor d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100110] */
376 kMipsXori, /* xori t,s,imm16 [001110] s[25..21] t[20..16] imm16[15..0] */
buzbeee3acd072012-02-25 17:03:10 -0800377#ifdef __mips_hard_float
Bill Buzbeea114add2012-05-03 15:00:40 -0700378 kMipsFadds, /* add.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000000] */
379 kMipsFsubs, /* sub.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000001] */
380 kMipsFmuls, /* mul.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000010] */
381 kMipsFdivs, /* div.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000011] */
382 kMipsFaddd, /* add.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000000] */
383 kMipsFsubd, /* sub.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000001] */
384 kMipsFmuld, /* mul.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000010] */
385 kMipsFdivd, /* div.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000011] */
386 kMipsFcvtsd,/* cvt.s.d d,s [01000110001] [00000] s[15..11] d[10..6] [100000] */
387 kMipsFcvtsw,/* cvt.s.w d,s [01000110100] [00000] s[15..11] d[10..6] [100000] */
388 kMipsFcvtds,/* cvt.d.s d,s [01000110000] [00000] s[15..11] d[10..6] [100001] */
389 kMipsFcvtdw,/* cvt.d.w d,s [01000110100] [00000] s[15..11] d[10..6] [100001] */
390 kMipsFcvtws,/* cvt.w.d d,s [01000110000] [00000] s[15..11] d[10..6] [100100] */
391 kMipsFcvtwd,/* cvt.w.d d,s [01000110001] [00000] s[15..11] d[10..6] [100100] */
392 kMipsFmovs, /* mov.s d,s [01000110000] [00000] s[15..11] d[10..6] [000110] */
393 kMipsFmovd, /* mov.d d,s [01000110001] [00000] s[15..11] d[10..6] [000110] */
394 kMipsFlwc1, /* lwc1 t,o(b) [110001] b[25..21] t[20..16] o[15..0] */
395 kMipsFldc1, /* ldc1 t,o(b) [110101] b[25..21] t[20..16] o[15..0] */
396 kMipsFswc1, /* swc1 t,o(b) [111001] b[25..21] t[20..16] o[15..0] */
397 kMipsFsdc1, /* sdc1 t,o(b) [111101] b[25..21] t[20..16] o[15..0] */
398 kMipsMfc1, /* mfc1 t,s [01000100000] t[20..16] s[15..11] [00000000000] */
399 kMipsMtc1, /* mtc1 t,s [01000100100] t[20..16] s[15..11] [00000000000] */
buzbeee3acd072012-02-25 17:03:10 -0800400#endif
Bill Buzbeea114add2012-05-03 15:00:40 -0700401 kMipsDelta, /* Psuedo for ori t, s, <label>-<label> */
402 kMipsDeltaHi, /* Pseudo for lui t, high16(<label>-<label>) */
403 kMipsDeltaLo, /* Pseudo for ori t, s, low16(<label>-<label>) */
404 kMipsCurrPC, /* jal to .+8 to materialize pc */
405 kMipsSync, /* sync kind [000000] [0000000000000000] s[10..6] [001111] */
406 kMipsUndefined, /* undefined [011001xxxxxxxxxxxxxxxx] */
407 kMipsLast
Elliott Hughes719ace42012-03-09 18:06:03 -0800408};
buzbeee3acd072012-02-25 17:03:10 -0800409
410/* Bit flags describing the behavior of each native opcode */
buzbeee3acd072012-02-25 17:03:10 -0800411/* Instruction assembly fieldLoc kind */
Elliott Hughes719ace42012-03-09 18:06:03 -0800412enum MipsEncodingKind {
Bill Buzbeea114add2012-05-03 15:00:40 -0700413 kFmtUnused,
414 kFmtBitBlt, /* Bit string using end/start */
415 kFmtDfp, /* Double FP reg */
416 kFmtSfp, /* Single FP reg */
417 kFmtBlt5_2, /* Same 5-bit field to 2 locations */
Elliott Hughes719ace42012-03-09 18:06:03 -0800418};
buzbeee3acd072012-02-25 17:03:10 -0800419
Ian Rogerscad96062012-03-04 10:33:52 -0800420/* Struct used to define the snippet positions for each MIPS opcode */
Elliott Hughes719ace42012-03-09 18:06:03 -0800421struct MipsEncodingMap {
buzbeeeaf09bc2012-11-15 14:51:41 -0800422 uint32_t skeleton;
Bill Buzbeea114add2012-05-03 15:00:40 -0700423 struct {
424 MipsEncodingKind kind;
425 int end; /* end for kFmtBitBlt, 1-bit slice end for FP regs */
426 int start; /* start for kFmtBitBlt, 4-bit slice end for FP regs */
427 } fieldLoc[4];
428 MipsOpCode opcode;
buzbeeec137432012-11-13 12:13:16 -0800429 uint64_t flags;
Bill Buzbeea114add2012-05-03 15:00:40 -0700430 const char *name;
431 const char* fmt;
432 int size; /* Size in bytes */
Elliott Hughes719ace42012-03-09 18:06:03 -0800433};
buzbeee3acd072012-02-25 17:03:10 -0800434
buzbeee3acd072012-02-25 17:03:10 -0800435extern MipsEncodingMap EncodingMap[kMipsLast];
436
buzbeee3acd072012-02-25 17:03:10 -0800437#define IS_UIMM16(v) ((0 <= (v)) && ((v) <= 65535))
438#define IS_SIMM16(v) ((-32768 <= (v)) && ((v) <= 32766))
439#define IS_SIMM16_2WORD(v) ((-32764 <= (v)) && ((v) <= 32763)) /* 2 offsets must fit */
440
441} // namespace art
442
443#endif // ART_COMPILER_COMPILER_CODEGEN_MIPS_MIPSLIR_H_