blob: 59f442c61adbf22008a7fa986269cdc162008f4b [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_COMPILER_DEX_QUICK_MIPS_MIPS_LIR_H_
18#define ART_COMPILER_DEX_QUICK_MIPS_MIPS_LIR_H_
Brian Carlstrom7940e442013-07-12 13:46:57 -070019
20#include "dex/compiler_internals.h"
21
22namespace art {
23
24/*
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)
33 * s0 (rMIPS_SUSPEND) is reserved [holds suspend-check counter]
34 * s1 (rMIPS_SELF) is reserved [holds current &Thread]
35 * 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 * | cur_method* | <<== sp w/ 16-byte alignment
86 * +========================+
87 */
88
89// Offset to distingish FP regs.
90#define MIPS_FP_REG_OFFSET 32
91// Offset to distinguish DP FP regs.
92#define MIPS_FP_DOUBLE 64
93// Offset to distingish the extra regs.
94#define MIPS_EXTRA_REG_OFFSET 128
95// Reg types.
96#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))
101/*
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 */
Brian Carlstromb1eba212013-07-17 18:07:19 -0700108#define MIPS_S2D(x, y) ((x) | MIPS_FP_DOUBLE)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700109// Mask to strip off fp flags.
110#define MIPS_FP_REG_MASK (MIPS_FP_REG_OFFSET-1)
111
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
135#define r_FARG2 r_F14
136#define r_FARG3 r_F15
137#define r_FRESULT0 r_F0
138#define r_FRESULT1 r_F1
139
140// Regs not used for Mips.
141#define rMIPS_LR INVALID_REG
142#define rMIPS_PC INVALID_REG
143
Brian Carlstrom7940e442013-07-12 13:46:57 -0700144enum MipsResourceEncodingPos {
145 kMipsGPReg0 = 0,
146 kMipsRegSP = 29,
147 kMipsRegLR = 31,
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700148 kMipsFPReg0 = 32, // only 16 fp regs supported currently.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700149 kMipsFPRegEnd = 48,
150 kMipsRegHI = kMipsFPRegEnd,
151 kMipsRegLO,
152 kMipsRegPC,
153 kMipsRegEnd = 51,
154};
155
156#define ENCODE_MIPS_REG_LIST(N) (static_cast<uint64_t>(N))
157#define ENCODE_MIPS_REG_SP (1ULL << kMipsRegSP)
158#define ENCODE_MIPS_REG_LR (1ULL << kMipsRegLR)
159#define ENCODE_MIPS_REG_PC (1ULL << kMipsRegPC)
160
161enum MipsNativeRegisterPool {
162 r_ZERO = 0,
163 r_AT = 1,
164 r_V0 = 2,
165 r_V1 = 3,
166 r_A0 = 4,
167 r_A1 = 5,
168 r_A2 = 6,
169 r_A3 = 7,
170 r_T0 = 8,
171 r_T1 = 9,
172 r_T2 = 10,
173 r_T3 = 11,
174 r_T4 = 12,
175 r_T5 = 13,
176 r_T6 = 14,
177 r_T7 = 15,
178 r_S0 = 16,
179 r_S1 = 17,
180 r_S2 = 18,
181 r_S3 = 19,
182 r_S4 = 20,
183 r_S5 = 21,
184 r_S6 = 22,
185 r_S7 = 23,
186 r_T8 = 24,
187 r_T9 = 25,
188 r_K0 = 26,
189 r_K1 = 27,
190 r_GP = 28,
191 r_SP = 29,
192 r_FP = 30,
193 r_RA = 31,
194
195 r_F0 = 0 + MIPS_FP_REG_OFFSET,
196 r_F1,
197 r_F2,
198 r_F3,
199 r_F4,
200 r_F5,
201 r_F6,
202 r_F7,
203 r_F8,
204 r_F9,
205 r_F10,
206 r_F11,
207 r_F12,
208 r_F13,
209 r_F14,
210 r_F15,
211#if 0
212 /*
213 * TODO: The shared resource mask doesn't have enough bit positions to describe all
214 * MIPS registers. Expand it and enable use of fp registers 16 through 31.
215 */
216 r_F16,
217 r_F17,
218 r_F18,
219 r_F19,
220 r_F20,
221 r_F21,
222 r_F22,
223 r_F23,
224 r_F24,
225 r_F25,
226 r_F26,
227 r_F27,
228 r_F28,
229 r_F29,
230 r_F30,
231 r_F31,
232#endif
233 r_DF0 = r_F0 + MIPS_FP_DOUBLE,
234 r_DF1 = r_F2 + MIPS_FP_DOUBLE,
235 r_DF2 = r_F4 + MIPS_FP_DOUBLE,
236 r_DF3 = r_F6 + MIPS_FP_DOUBLE,
237 r_DF4 = r_F8 + MIPS_FP_DOUBLE,
238 r_DF5 = r_F10 + MIPS_FP_DOUBLE,
239 r_DF6 = r_F12 + MIPS_FP_DOUBLE,
240 r_DF7 = r_F14 + MIPS_FP_DOUBLE,
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700241#if 0 // TODO: expand resource mask to enable use of all MIPS fp registers.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700242 r_DF8 = r_F16 + MIPS_FP_DOUBLE,
243 r_DF9 = r_F18 + MIPS_FP_DOUBLE,
244 r_DF10 = r_F20 + MIPS_FP_DOUBLE,
245 r_DF11 = r_F22 + MIPS_FP_DOUBLE,
246 r_DF12 = r_F24 + MIPS_FP_DOUBLE,
247 r_DF13 = r_F26 + MIPS_FP_DOUBLE,
248 r_DF14 = r_F28 + MIPS_FP_DOUBLE,
249 r_DF15 = r_F30 + MIPS_FP_DOUBLE,
250#endif
251 r_HI = MIPS_EXTRA_REG_OFFSET,
252 r_LO,
253 r_PC,
254};
255
256#define rMIPS_SUSPEND r_S0
257#define rMIPS_SELF r_S1
258#define rMIPS_SP r_SP
259#define rMIPS_ARG0 r_ARG0
260#define rMIPS_ARG1 r_ARG1
261#define rMIPS_ARG2 r_ARG2
262#define rMIPS_ARG3 r_ARG3
263#define rMIPS_FARG0 r_FARG0
264#define rMIPS_FARG1 r_FARG1
265#define rMIPS_FARG2 r_FARG2
266#define rMIPS_FARG3 r_FARG3
267#define rMIPS_RET0 r_RESULT0
268#define rMIPS_RET1 r_RESULT1
269#define rMIPS_INVOKE_TGT r_T9
270#define rMIPS_COUNT INVALID_REG
271
Bill Buzbee00e1ec62014-02-27 23:44:13 +0000272// RegisterLocation templates return values (r_V0, or r_V0/r_V1).
273const RegLocation mips_loc_c_return
274 {kLocPhysReg, 0, 0, 0, 0, 0, 0, 0, 1, kVectorNotUsed,
275 RegStorage(RegStorage::k32BitSolo, r_V0), INVALID_SREG, INVALID_SREG};
276const RegLocation mips_loc_c_return_wide
277 {kLocPhysReg, 1, 0, 0, 0, 0, 0, 0, 1, kVectorNotUsed,
278 RegStorage(RegStorage::k64BitPair, r_V0, r_V1), INVALID_SREG, INVALID_SREG};
279const RegLocation mips_loc_c_return_float
280 {kLocPhysReg, 0, 0, 0, 1, 0, 0, 0, 1, kVectorNotUsed,
281 RegStorage(RegStorage::k32BitSolo, r_F0), INVALID_SREG, INVALID_SREG};
282const RegLocation mips_loc_c_return_double
283 {kLocPhysReg, 1, 0, 0, 1, 0, 0, 0, 1, kVectorNotUsed,
284 RegStorage(RegStorage::k64BitPair, r_F0, r_F1), INVALID_SREG, INVALID_SREG};
285
Brian Carlstrom7940e442013-07-12 13:46:57 -0700286enum MipsShiftEncodings {
287 kMipsLsl = 0x0,
288 kMipsLsr = 0x1,
289 kMipsAsr = 0x2,
290 kMipsRor = 0x3
291};
292
293// MIPS sync kinds (Note: support for kinds other than kSYNC0 may not exist).
294#define kSYNC0 0x00
295#define kSYNC_WMB 0x04
296#define kSYNC_MB 0x01
297#define kSYNC_ACQUIRE 0x11
298#define kSYNC_RELEASE 0x12
299#define kSYNC_RMB 0x13
300
301// TODO: Use smaller hammer when appropriate for target CPU.
302#define kST kSYNC0
303#define kSY kSYNC0
304
305/*
306 * The following enum defines the list of supported Thumb instructions by the
307 * assembler. Their corresponding EncodingMap positions will be defined in
308 * Assemble.cc.
309 */
310enum MipsOpCode {
311 kMipsFirst = 0,
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700312 kMips32BitData = kMipsFirst, // data [31..0].
313 kMipsAddiu, // addiu t,s,imm16 [001001] s[25..21] t[20..16] imm16[15..0].
Brian Carlstrom7940e442013-07-12 13:46:57 -0700314 kMipsAddu, // add d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100001].
315 kMipsAnd, // and d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100100].
316 kMipsAndi, // andi t,s,imm16 [001100] s[25..21] t[20..16] imm16[15..0].
317 kMipsB, // b o [0001000000000000] o[15..0].
318 kMipsBal, // bal o [0000010000010001] o[15..0].
319 // NOTE: the code tests the range kMipsBeq thru kMipsBne, so adding an instruction in this
320 // range may require updates.
321 kMipsBeq, // beq s,t,o [000100] s[25..21] t[20..16] o[15..0].
322 kMipsBeqz, // beqz s,o [000100] s[25..21] [00000] o[15..0].
323 kMipsBgez, // bgez s,o [000001] s[25..21] [00001] o[15..0].
324 kMipsBgtz, // bgtz s,o [000111] s[25..21] [00000] o[15..0].
325 kMipsBlez, // blez s,o [000110] s[25..21] [00000] o[15..0].
326 kMipsBltz, // bltz s,o [000001] s[25..21] [00000] o[15..0].
327 kMipsBnez, // bnez s,o [000101] s[25..21] [00000] o[15..0].
328 kMipsBne, // bne s,t,o [000101] s[25..21] t[20..16] o[15..0].
329 kMipsDiv, // div s,t [000000] s[25..21] t[20..16] [0000000000011010].
Brian Carlstrom38f85e42013-07-18 14:45:22 -0700330#if __mips_isa_rev >= 2
Brian Carlstrom7940e442013-07-12 13:46:57 -0700331 kMipsExt, // ext t,s,p,z [011111] s[25..21] t[20..16] z[15..11] p[10..6] [000000].
332#endif
333 kMipsJal, // jal t [000011] t[25..0].
334 kMipsJalr, // jalr d,s [000000] s[25..21] [00000] d[15..11] hint[10..6] [001001].
335 kMipsJr, // jr s [000000] s[25..21] [0000000000] hint[10..6] [001000].
336 kMipsLahi, // lui t,imm16 [00111100000] t[20..16] imm16[15..0] load addr hi.
337 kMipsLalo, // ori t,s,imm16 [001001] s[25..21] t[20..16] imm16[15..0] load addr lo.
338 kMipsLui, // lui t,imm16 [00111100000] t[20..16] imm16[15..0].
339 kMipsLb, // lb t,o(b) [100000] b[25..21] t[20..16] o[15..0].
340 kMipsLbu, // lbu t,o(b) [100100] b[25..21] t[20..16] o[15..0].
341 kMipsLh, // lh t,o(b) [100001] b[25..21] t[20..16] o[15..0].
342 kMipsLhu, // lhu t,o(b) [100101] b[25..21] t[20..16] o[15..0].
343 kMipsLw, // lw t,o(b) [100011] b[25..21] t[20..16] o[15..0].
344 kMipsMfhi, // mfhi d [0000000000000000] d[15..11] [00000010000].
345 kMipsMflo, // mflo d [0000000000000000] d[15..11] [00000010010].
346 kMipsMove, // move d,s [000000] s[25..21] [00000] d[15..11] [00000100101].
347 kMipsMovz, // movz d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000001010].
348 kMipsMul, // mul d,s,t [011100] s[25..21] t[20..16] d[15..11] [00000000010].
349 kMipsNop, // nop [00000000000000000000000000000000].
350 kMipsNor, // nor d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100111].
351 kMipsOr, // or d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100101].
352 kMipsOri, // ori t,s,imm16 [001001] s[25..21] t[20..16] imm16[15..0].
353 kMipsPref, // pref h,o(b) [101011] b[25..21] h[20..16] o[15..0].
354 kMipsSb, // sb t,o(b) [101000] b[25..21] t[20..16] o[15..0].
Brian Carlstrom38f85e42013-07-18 14:45:22 -0700355#if __mips_isa_rev >= 2
Brian Carlstrom7940e442013-07-12 13:46:57 -0700356 kMipsSeb, // seb d,t [01111100000] t[20..16] d[15..11] [10000100000].
357 kMipsSeh, // seh d,t [01111100000] t[20..16] d[15..11] [11000100000].
358#endif
359 kMipsSh, // sh t,o(b) [101001] b[25..21] t[20..16] o[15..0].
360 kMipsSll, // sll d,t,a [00000000000] t[20..16] d[15..11] a[10..6] [000000].
361 kMipsSllv, // sllv d,t,s [000000] s[25..21] t[20..16] d[15..11] [00000000100].
362 kMipsSlt, // slt d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000101010].
363 kMipsSlti, // slti t,s,imm16 [001010] s[25..21] t[20..16] imm16[15..0].
364 kMipsSltu, // sltu d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000101011].
365 kMipsSra, // sra d,s,imm5 [00000000000] t[20..16] d[15..11] imm5[10..6] [000011].
366 kMipsSrav, // srav d,t,s [000000] s[25..21] t[20..16] d[15..11] [00000000111].
367 kMipsSrl, // srl d,t,a [00000000000] t[20..16] d[20..16] a[10..6] [000010].
368 kMipsSrlv, // srlv d,t,s [000000] s[25..21] t[20..16] d[15..11] [00000000110].
369 kMipsSubu, // subu d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100011].
370 kMipsSw, // sw t,o(b) [101011] b[25..21] t[20..16] o[15..0].
371 kMipsXor, // xor d,s,t [000000] s[25..21] t[20..16] d[15..11] [00000100110].
372 kMipsXori, // xori t,s,imm16 [001110] s[25..21] t[20..16] imm16[15..0].
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700373 kMipsFadds, // add.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000000].
374 kMipsFsubs, // sub.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000001].
375 kMipsFmuls, // mul.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000010].
376 kMipsFdivs, // div.s d,s,t [01000110000] t[20..16] s[15..11] d[10..6] [000011].
377 kMipsFaddd, // add.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000000].
378 kMipsFsubd, // sub.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000001].
379 kMipsFmuld, // mul.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000010].
380 kMipsFdivd, // div.d d,s,t [01000110001] t[20..16] s[15..11] d[10..6] [000011].
381 kMipsFcvtsd, // cvt.s.d d,s [01000110001] [00000] s[15..11] d[10..6] [100000].
382 kMipsFcvtsw, // cvt.s.w d,s [01000110100] [00000] s[15..11] d[10..6] [100000].
383 kMipsFcvtds, // cvt.d.s d,s [01000110000] [00000] s[15..11] d[10..6] [100001].
384 kMipsFcvtdw, // cvt.d.w d,s [01000110100] [00000] s[15..11] d[10..6] [100001].
385 kMipsFcvtws, // cvt.w.d d,s [01000110000] [00000] s[15..11] d[10..6] [100100].
386 kMipsFcvtwd, // cvt.w.d d,s [01000110001] [00000] s[15..11] d[10..6] [100100].
387 kMipsFmovs, // mov.s d,s [01000110000] [00000] s[15..11] d[10..6] [000110].
388 kMipsFmovd, // mov.d d,s [01000110001] [00000] s[15..11] d[10..6] [000110].
389 kMipsFlwc1, // lwc1 t,o(b) [110001] b[25..21] t[20..16] o[15..0].
390 kMipsFldc1, // ldc1 t,o(b) [110101] b[25..21] t[20..16] o[15..0].
391 kMipsFswc1, // swc1 t,o(b) [111001] b[25..21] t[20..16] o[15..0].
392 kMipsFsdc1, // sdc1 t,o(b) [111101] b[25..21] t[20..16] o[15..0].
Brian Carlstrom7940e442013-07-12 13:46:57 -0700393 kMipsMfc1, // mfc1 t,s [01000100000] t[20..16] s[15..11] [00000000000].
394 kMipsMtc1, // mtc1 t,s [01000100100] t[20..16] s[15..11] [00000000000].
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700395 kMipsDelta, // Psuedo for ori t, s, <label>-<label>.
396 kMipsDeltaHi, // Pseudo for lui t, high16(<label>-<label>).
397 kMipsDeltaLo, // Pseudo for ori t, s, low16(<label>-<label>).
Brian Carlstrom7940e442013-07-12 13:46:57 -0700398 kMipsCurrPC, // jal to .+8 to materialize pc.
399 kMipsSync, // sync kind [000000] [0000000000000000] s[10..6] [001111].
400 kMipsUndefined, // undefined [011001xxxxxxxxxxxxxxxx].
401 kMipsLast
402};
403
404// Instruction assembly field_loc kind.
405enum MipsEncodingKind {
406 kFmtUnused,
407 kFmtBitBlt, /* Bit string using end/start */
408 kFmtDfp, /* Double FP reg */
409 kFmtSfp, /* Single FP reg */
410 kFmtBlt5_2, /* Same 5-bit field to 2 locations */
411};
412
413// Struct used to define the snippet positions for each MIPS opcode.
414struct MipsEncodingMap {
415 uint32_t skeleton;
416 struct {
417 MipsEncodingKind kind;
418 int end; // end for kFmtBitBlt, 1-bit slice end for FP regs.
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700419 int start; // start for kFmtBitBlt, 4-bit slice end for FP regs.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700420 } field_loc[4];
421 MipsOpCode opcode;
422 uint64_t flags;
423 const char *name;
424 const char* fmt;
425 int size; // Note: size is in bytes.
426};
427
428extern MipsEncodingMap EncodingMap[kMipsLast];
429
430#define IS_UIMM16(v) ((0 <= (v)) && ((v) <= 65535))
431#define IS_SIMM16(v) ((-32768 <= (v)) && ((v) <= 32766))
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700432#define IS_SIMM16_2WORD(v) ((-32764 <= (v)) && ((v) <= 32763)) // 2 offsets must fit.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700433
434} // namespace art
435
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700436#endif // ART_COMPILER_DEX_QUICK_MIPS_MIPS_LIR_H_