blob: beeb3adb72605fdcd2d4cc21511a85139622eb85 [file] [log] [blame]
buzbeecbd6d442012-11-17 14:11:25 -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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_COMPILER_DEX_COMPILER_ENUMS_H_
18#define ART_COMPILER_DEX_COMPILER_ENUMS_H_
buzbeecbd6d442012-11-17 14:11:25 -080019
20#include "dex_instruction.h"
21
22namespace art {
23
24enum RegisterClass {
Serban Constantinescu032d3772014-05-23 17:38:18 +010025 kInvalidRegClass,
buzbeecbd6d442012-11-17 14:11:25 -080026 kCoreReg,
27 kFPReg,
buzbeea0cd2d72014-06-01 09:33:49 -070028 kRefReg,
buzbeecbd6d442012-11-17 14:11:25 -080029 kAnyReg,
30};
31
buzbee091cc402014-03-31 10:14:40 -070032enum BitsUsed {
33 kSize32Bits,
34 kSize64Bits,
35 kSize128Bits,
36 kSize256Bits,
37 kSize512Bits,
38 kSize1024Bits,
39};
40
buzbeecbd6d442012-11-17 14:11:25 -080041enum SpecialTargetRegister {
buzbee02031b12012-11-23 09:41:35 -080042 kSelf, // Thread pointer.
43 kSuspend, // Used to reduce suspend checks for some targets.
buzbeecbd6d442012-11-17 14:11:25 -080044 kLr,
45 kPc,
46 kSp,
47 kArg0,
48 kArg1,
49 kArg2,
50 kArg3,
Dmitry Petrochenko58994cd2014-05-17 01:02:18 +070051 kArg4,
52 kArg5,
buzbee33ae5582014-06-12 14:56:32 -070053 kArg6,
54 kArg7,
buzbeecbd6d442012-11-17 14:11:25 -080055 kFArg0,
56 kFArg1,
57 kFArg2,
58 kFArg3,
Dmitry Petrochenko58994cd2014-05-17 01:02:18 +070059 kFArg4,
60 kFArg5,
61 kFArg6,
62 kFArg7,
Zheng Xu5667fdb2014-10-23 18:29:55 +080063 kFArg8,
64 kFArg9,
65 kFArg10,
66 kFArg11,
67 kFArg12,
68 kFArg13,
69 kFArg14,
70 kFArg15,
buzbeecbd6d442012-11-17 14:11:25 -080071 kRet0,
72 kRet1,
73 kInvokeTgt,
Jeff Hao88474b42013-10-23 16:24:40 -070074 kHiddenArg,
75 kHiddenFpArg,
buzbeecbd6d442012-11-17 14:11:25 -080076 kCount
77};
78
79enum RegLocationType {
Brian Carlstrom7934ac22013-07-26 10:54:15 -070080 kLocDalvikFrame = 0, // Normal Dalvik register
buzbeecbd6d442012-11-17 14:11:25 -080081 kLocPhysReg,
82 kLocCompilerTemp,
83 kLocInvalid
84};
85
86enum BBType {
buzbee0d829482013-10-11 15:24:55 -070087 kNullBlock,
buzbeecbd6d442012-11-17 14:11:25 -080088 kEntryBlock,
89 kDalvikByteCode,
90 kExitBlock,
91 kExceptionHandling,
92 kDead,
93};
94
buzbee02031b12012-11-23 09:41:35 -080095// Shared pseudo opcodes - must be < 0.
buzbeecbd6d442012-11-17 14:11:25 -080096enum LIRPseudoOpcode {
buzbeea169e1d2012-12-05 14:26:44 -080097 kPseudoExportedPC = -16,
98 kPseudoSafepointPC = -15,
99 kPseudoIntrinsicRetry = -14,
100 kPseudoSuspendTarget = -13,
101 kPseudoThrowTarget = -12,
102 kPseudoCaseLabel = -11,
103 kPseudoMethodEntry = -10,
104 kPseudoMethodExit = -9,
105 kPseudoBarrier = -8,
buzbeecbd6d442012-11-17 14:11:25 -0800106 kPseudoEntryBlock = -7,
107 kPseudoExitBlock = -6,
108 kPseudoTargetLabel = -5,
109 kPseudoDalvikByteCodeBoundary = -4,
110 kPseudoPseudoAlign4 = -3,
111 kPseudoEHBlockLabel = -2,
112 kPseudoNormalBlockLabel = -1,
113};
114
115enum ExtendedMIROpcode {
116 kMirOpFirst = kNumPackedOpcodes,
117 kMirOpPhi = kMirOpFirst,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700118
119 // @brief Copy from one VR to another.
120 // @details
121 // vA: destination VR
122 // vB: source VR
buzbeecbd6d442012-11-17 14:11:25 -0800123 kMirOpCopy,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700124
125 // @brief Used to do float comparison with less-than bias.
126 // @details Unlike cmpl-float, this does not store result of comparison in VR.
127 // vA: left-hand side VR for comparison.
128 // vB: right-hand side VR for comparison.
buzbeecbd6d442012-11-17 14:11:25 -0800129 kMirOpFusedCmplFloat,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700130
131 // @brief Used to do float comparison with greater-than bias.
132 // @details Unlike cmpg-float, this does not store result of comparison in VR.
133 // vA: left-hand side VR for comparison.
134 // vB: right-hand side VR for comparison.
buzbeecbd6d442012-11-17 14:11:25 -0800135 kMirOpFusedCmpgFloat,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700136
137 // @brief Used to do double comparison with less-than bias.
138 // @details Unlike cmpl-double, this does not store result of comparison in VR.
139 // vA: left-hand side wide VR for comparison.
140 // vB: right-hand side wide VR for comparison.
buzbeecbd6d442012-11-17 14:11:25 -0800141 kMirOpFusedCmplDouble,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700142
143 // @brief Used to do double comparison with greater-than bias.
144 // @details Unlike cmpl-double, this does not store result of comparison in VR.
145 // vA: left-hand side wide VR for comparison.
146 // vB: right-hand side wide VR for comparison.
buzbeecbd6d442012-11-17 14:11:25 -0800147 kMirOpFusedCmpgDouble,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700148
149 // @brief Used to do comparison of 64-bit long integers.
150 // @details Unlike cmp-long, this does not store result of comparison in VR.
151 // vA: left-hand side wide VR for comparison.
152 // vB: right-hand side wide VR for comparison.
buzbeecbd6d442012-11-17 14:11:25 -0800153 kMirOpFusedCmpLong,
Razvan A Lupusoru1500e6f2014-08-22 15:39:50 -0700154
155 // @brief This represents no-op.
buzbeecbd6d442012-11-17 14:11:25 -0800156 kMirOpNop,
Razvan A Lupusoru76423242014-08-04 09:38:46 -0700157
158 // @brief Do a null check on the object register.
159 // @details The backends may implement this implicitly or explicitly. This MIR is guaranteed
160 // to have the correct offset as an exception thrower.
161 // vA: object register
buzbeecbd6d442012-11-17 14:11:25 -0800162 kMirOpNullCheck,
Razvan A Lupusoru76423242014-08-04 09:38:46 -0700163
buzbeecbd6d442012-11-17 14:11:25 -0800164 kMirOpRangeCheck,
165 kMirOpDivZeroCheck,
166 kMirOpCheck,
buzbeea169e1d2012-12-05 14:26:44 -0800167 kMirOpCheckPart2,
buzbeef662a7c2013-02-12 16:19:43 -0800168 kMirOpSelect,
Mark Mendelld65c51a2014-04-29 16:55:20 -0400169
170 // Vector opcodes:
171 // TypeSize is an encoded field giving the element type and the vector size.
172 // It is encoded as OpSize << 16 | (number of bits in vector)
173 //
174 // Destination and source are integers that will be interpreted by the
175 // backend that supports Vector operations. Backends are permitted to support only
176 // certain vector register sizes.
177 //
178 // At this point, only two operand instructions are supported. Three operand instructions
179 // could be supported by using a bit in TypeSize and arg[0] where needed.
180
181 // @brief MIR to move constant data to a vector register
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700182 // vA: destination
183 // vB: number of bits in register
Mark Mendelld65c51a2014-04-29 16:55:20 -0400184 // args[0]~args[3]: up to 128 bits of data for initialization
185 kMirOpConstVector,
186
187 // @brief MIR to move a vectorized register to another
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700188 // vA: destination
189 // vB: source
190 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400191 kMirOpMoveVector,
192
193 // @brief Packed multiply of units in two vector registers: vB = vB .* vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700194 // vA: destination and source
195 // vB: source
196 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400197 kMirOpPackedMultiply,
198
199 // @brief Packed addition of units in two vector registers: vB = vB .+ vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700200 // vA: destination and source
201 // vB: source
202 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400203 kMirOpPackedAddition,
204
205 // @brief Packed subtraction of units in two vector registers: vB = vB .- vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700206 // vA: destination and source
207 // vB: source
208 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400209 kMirOpPackedSubtract,
210
211 // @brief Packed shift left of units in two vector registers: vB = vB .<< vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700212 // vA: destination and source
213 // vB: amount to shift
214 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400215 kMirOpPackedShiftLeft,
216
217 // @brief Packed signed shift right of units in two vector registers: vB = vB .>> vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700218 // vA: destination and source
219 // vB: amount to shift
220 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400221 kMirOpPackedSignedShiftRight,
222
223 // @brief Packed unsigned shift right of units in two vector registers: vB = vB .>>> vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700224 // vA: destination and source
225 // vB: amount to shift
226 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400227 kMirOpPackedUnsignedShiftRight,
228
229 // @brief Packed bitwise and of units in two vector registers: vB = vB .& vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700230 // vA: destination and source
231 // vB: source
232 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400233 kMirOpPackedAnd,
234
235 // @brief Packed bitwise or of units in two vector registers: vB = vB .| vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700236 // vA: destination and source
237 // vB: source
238 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400239 kMirOpPackedOr,
240
241 // @brief Packed bitwise xor of units in two vector registers: vB = vB .^ vC using vA to know the type of the vector.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700242 // vA: destination and source
243 // vB: source
244 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400245 kMirOpPackedXor,
246
247 // @brief Reduce a 128-bit packed element into a single VR by taking lower bits
248 // @details Instruction does a horizontal addition of the packed elements and then adds it to VR
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700249 // vA: destination and source VR (not vector register)
250 // vB: source (vector register)
251 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400252 kMirOpPackedAddReduce,
253
254 // @brief Extract a packed element into a single VR.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700255 // vA: destination VR (not vector register)
256 // vB: source (vector register)
257 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400258 // arg[0]: The index to use for extraction from vector register (which packed element)
259 kMirOpPackedReduce,
260
261 // @brief Create a vector value, with all TypeSize values equal to vC
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700262 // vA: destination vector register
263 // vB: source VR (not vector register)
264 // vC: TypeSize
Mark Mendelld65c51a2014-04-29 16:55:20 -0400265 kMirOpPackedSet,
266
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700267 // @brief Reserve a range of vector registers.
268 // vA: Start vector register to reserve.
269 // vB: Inclusive end vector register to reserve.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700270 // @note: The backend may choose to map vector numbers used in vector opcodes.
271 // Reserved registers are removed from the list of backend temporary pool.
272 kMirOpReserveVectorRegisters,
273
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700274 // @brief Free a range of reserved vector registers
275 // vA: Start vector register to unreserve.
276 // vB: Inclusive end vector register to unreserve.
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700277 // @note: All currently reserved vector registers are returned to the temporary pool.
278 kMirOpReturnVectorRegisters,
279
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700280 // @brief Create a memory barrier.
281 // vA: a constant defined by enum MemBarrierKind.
282 kMirOpMemBarrier,
283
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700284 // @brief Used to fill a vector register with array values.
285 // @details Just as with normal arrays, access on null object register must ensure NullPointerException
286 // and invalid index must ensure ArrayIndexOutOfBoundsException. Exception behavior must be the same
287 // as the aget it replaced and must happen at same index. Therefore, it is generally recommended that
288 // before using this MIR, it is proven that exception is guaranteed to not be thrown and marked with
289 // MIR_IGNORE_NULL_CHECK and MIR_IGNORE_RANGE_CHECK.
290 // vA: destination vector register
291 // vB: array register
292 // vC: index register
293 // arg[0]: TypeSize (most other vector opcodes have this in vC)
294 kMirOpPackedArrayGet,
295
296 // @brief Used to store a vector register into array.
297 // @details Just as with normal arrays, access on null object register must ensure NullPointerException
298 // and invalid index must ensure ArrayIndexOutOfBoundsException. Exception behavior must be the same
299 // as the aget it replaced and must happen at same index. Therefore, it is generally recommended that
300 // before using this MIR, it is proven that exception is guaranteed to not be thrown and marked with
301 // MIR_IGNORE_NULL_CHECK and MIR_IGNORE_RANGE_CHECK.
302 // vA: source vector register
303 // vB: array register
304 // vC: index register
305 // arg[0]: TypeSize (most other vector opcodes have this in vC)
306 kMirOpPackedArrayPut,
307
buzbeecbd6d442012-11-17 14:11:25 -0800308 kMirOpLast,
309};
310
Jean Christophe Beyler89fde262014-04-30 11:40:07 -0700311enum MIROptimizationFlagPositions {
buzbeecbd6d442012-11-17 14:11:25 -0800312 kMIRIgnoreNullCheck = 0,
313 kMIRNullCheckOnly,
314 kMIRIgnoreRangeCheck,
315 kMIRRangeCheckOnly,
Vladimir Markobfea9c22014-01-17 17:49:33 +0000316 kMIRIgnoreClInitCheck,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -0700317 kMirIgnoreDivZeroCheck,
buzbee02031b12012-11-23 09:41:35 -0800318 kMIRInlined, // Invoke is inlined (ie dead).
319 kMIRInlinedPred, // Invoke is inlined via prediction.
320 kMIRCallee, // Instruction is inlined from callee.
buzbeecbd6d442012-11-17 14:11:25 -0800321 kMIRIgnoreSuspendCheck,
322 kMIRDup,
Yevgeny Rouban423b1372014-10-15 17:32:25 +0700323 kMIRMark, // Temporary node mark can be used by
324 // opt passes for their private needs.
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700325 kMIRStoreNonTemporal,
Jean Christophe Beyler89fde262014-04-30 11:40:07 -0700326 kMIRLastMIRFlag,
buzbeecbd6d442012-11-17 14:11:25 -0800327};
328
buzbee02031b12012-11-23 09:41:35 -0800329// For successor_block_list.
buzbeecbd6d442012-11-17 14:11:25 -0800330enum BlockListType {
331 kNotUsed = 0,
332 kCatch,
333 kPackedSwitch,
334 kSparseSwitch,
335};
336
337enum AssemblerStatus {
338 kSuccess,
339 kRetryAll,
340};
341
342enum OpSize {
buzbee695d13a2014-04-19 13:32:20 -0700343 kWord, // Natural word size of target (32/64).
344 k32,
345 k64,
346 kReference, // Object reference; compressed on 64-bit targets.
buzbeecbd6d442012-11-17 14:11:25 -0800347 kSingle,
348 kDouble,
349 kUnsignedHalf,
350 kSignedHalf,
351 kUnsignedByte,
352 kSignedByte,
353};
354
355std::ostream& operator<<(std::ostream& os, const OpSize& kind);
356
357enum OpKind {
358 kOpMov,
Razvan A Lupusorubd288c22013-12-20 17:27:23 -0800359 kOpCmov,
buzbeecbd6d442012-11-17 14:11:25 -0800360 kOpMvn,
361 kOpCmp,
362 kOpLsl,
363 kOpLsr,
364 kOpAsr,
365 kOpRor,
366 kOpNot,
367 kOpAnd,
368 kOpOr,
369 kOpXor,
370 kOpNeg,
371 kOpAdd,
372 kOpAdc,
373 kOpSub,
374 kOpSbc,
375 kOpRsub,
376 kOpMul,
377 kOpDiv,
378 kOpRem,
379 kOpBic,
380 kOpCmn,
381 kOpTst,
Vladimir Markoa8b4caf2013-10-24 15:08:57 +0100382 kOpRev,
383 kOpRevsh,
buzbeecbd6d442012-11-17 14:11:25 -0800384 kOpBkpt,
385 kOpBlx,
386 kOpPush,
387 kOpPop,
388 kOp2Char,
389 kOp2Short,
390 kOp2Byte,
391 kOpCondBr,
392 kOpUncondBr,
393 kOpBx,
394 kOpInvalid,
395};
396
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800397enum MoveType {
398 kMov8GP, // Move 8-bit general purpose register.
399 kMov16GP, // Move 16-bit general purpose register.
400 kMov32GP, // Move 32-bit general purpose register.
401 kMov64GP, // Move 64-bit general purpose register.
402 kMov32FP, // Move 32-bit FP register.
403 kMov64FP, // Move 64-bit FP register.
404 kMovLo64FP, // Move low 32-bits of 64-bit FP register.
405 kMovHi64FP, // Move high 32-bits of 64-bit FP register.
406 kMovU128FP, // Move 128-bit FP register to/from possibly unaligned region.
407 kMov128FP = kMovU128FP,
408 kMovA128FP, // Move 128-bit FP register to/from region surely aligned to 16-bytes.
409 kMovLo128FP, // Move low 64-bits of 128-bit FP register.
410 kMovHi128FP, // Move high 64-bits of 128-bit FP register.
411};
412
buzbeecbd6d442012-11-17 14:11:25 -0800413std::ostream& operator<<(std::ostream& os, const OpKind& kind);
414
415enum ConditionCode {
416 kCondEq, // equal
417 kCondNe, // not equal
Vladimir Marko58af1f92013-12-19 13:31:15 +0000418 kCondCs, // carry set
419 kCondCc, // carry clear
Vladimir Marko459f4df2013-12-20 17:03:09 +0000420 kCondUlt, // unsigned less than
421 kCondUge, // unsigned greater than or same
buzbeecbd6d442012-11-17 14:11:25 -0800422 kCondMi, // minus
423 kCondPl, // plus, positive or zero
424 kCondVs, // overflow
425 kCondVc, // no overflow
426 kCondHi, // unsigned greater than
427 kCondLs, // unsigned lower or same
428 kCondGe, // signed greater than or equal
429 kCondLt, // signed less than
430 kCondGt, // signed greater than
431 kCondLe, // signed less than or equal
432 kCondAl, // always
433 kCondNv, // never
434};
435
436std::ostream& operator<<(std::ostream& os, const ConditionCode& kind);
437
438// Target specific condition encodings
439enum ArmConditionCode {
440 kArmCondEq = 0x0, // 0000
441 kArmCondNe = 0x1, // 0001
442 kArmCondCs = 0x2, // 0010
443 kArmCondCc = 0x3, // 0011
444 kArmCondMi = 0x4, // 0100
445 kArmCondPl = 0x5, // 0101
446 kArmCondVs = 0x6, // 0110
447 kArmCondVc = 0x7, // 0111
448 kArmCondHi = 0x8, // 1000
449 kArmCondLs = 0x9, // 1001
450 kArmCondGe = 0xa, // 1010
451 kArmCondLt = 0xb, // 1011
452 kArmCondGt = 0xc, // 1100
453 kArmCondLe = 0xd, // 1101
454 kArmCondAl = 0xe, // 1110
455 kArmCondNv = 0xf, // 1111
456};
457
458std::ostream& operator<<(std::ostream& os, const ArmConditionCode& kind);
459
460enum X86ConditionCode {
461 kX86CondO = 0x0, // overflow
462 kX86CondNo = 0x1, // not overflow
463
464 kX86CondB = 0x2, // below
465 kX86CondNae = kX86CondB, // not-above-equal
466 kX86CondC = kX86CondB, // carry
467
468 kX86CondNb = 0x3, // not-below
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700469 kX86CondAe = kX86CondNb, // above-equal
470 kX86CondNc = kX86CondNb, // not-carry
buzbeecbd6d442012-11-17 14:11:25 -0800471
472 kX86CondZ = 0x4, // zero
473 kX86CondEq = kX86CondZ, // equal
474
475 kX86CondNz = 0x5, // not-zero
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700476 kX86CondNe = kX86CondNz, // not-equal
buzbeecbd6d442012-11-17 14:11:25 -0800477
478 kX86CondBe = 0x6, // below-equal
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700479 kX86CondNa = kX86CondBe, // not-above
buzbeecbd6d442012-11-17 14:11:25 -0800480
481 kX86CondNbe = 0x7, // not-below-equal
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700482 kX86CondA = kX86CondNbe, // above
buzbeecbd6d442012-11-17 14:11:25 -0800483
484 kX86CondS = 0x8, // sign
485 kX86CondNs = 0x9, // not-sign
486
487 kX86CondP = 0xa, // 8-bit parity even
488 kX86CondPE = kX86CondP,
489
490 kX86CondNp = 0xb, // 8-bit parity odd
491 kX86CondPo = kX86CondNp,
492
493 kX86CondL = 0xc, // less-than
494 kX86CondNge = kX86CondL, // not-greater-equal
495
496 kX86CondNl = 0xd, // not-less-than
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700497 kX86CondGe = kX86CondNl, // not-greater-equal
buzbeecbd6d442012-11-17 14:11:25 -0800498
499 kX86CondLe = 0xe, // less-than-equal
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700500 kX86CondNg = kX86CondLe, // not-greater
buzbeecbd6d442012-11-17 14:11:25 -0800501
502 kX86CondNle = 0xf, // not-less-than
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700503 kX86CondG = kX86CondNle, // greater
buzbeecbd6d442012-11-17 14:11:25 -0800504};
505
506std::ostream& operator<<(std::ostream& os, const X86ConditionCode& kind);
507
buzbeecbd6d442012-11-17 14:11:25 -0800508enum DividePattern {
509 DivideNone,
510 Divide3,
511 Divide5,
512 Divide7,
513};
514
515std::ostream& operator<<(std::ostream& os, const DividePattern& pattern);
516
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800517/**
518 * @brief Memory barrier types (see "The JSR-133 Cookbook for Compiler Writers").
Hans Boehm48f5c472014-06-27 14:50:10 -0700519 * @details We define the combined barrier types that are actually required
520 * by the Java Memory Model, rather than using exactly the terminology from
521 * the JSR-133 cookbook. These should, in many cases, be replaced by acquire/release
522 * primitives. Note that the JSR-133 cookbook generally does not deal with
523 * store atomicity issues, and the recipes there are not always entirely sufficient.
524 * The current recipe is as follows:
525 * -# Use AnyStore ~= (LoadStore | StoreStore) ~= release barrier before volatile store.
526 * -# Use AnyAny barrier after volatile store. (StoreLoad is as expensive.)
527 * -# Use LoadAny barrier ~= (LoadLoad | LoadStore) ~= acquire barrierafter each volatile load.
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800528 * -# Use StoreStore barrier after all stores but before return from any constructor whose
Hans Boehm48f5c472014-06-27 14:50:10 -0700529 * class has final fields.
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700530 * -# Use NTStoreStore to order non-temporal stores with respect to all later
531 * store-to-memory instructions. Only generated together with non-temporal stores.
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800532 */
buzbee1bc37c62012-11-20 13:35:41 -0800533enum MemBarrierKind {
Hans Boehm48f5c472014-06-27 14:50:10 -0700534 kAnyStore,
535 kLoadAny,
buzbee1bc37c62012-11-20 13:35:41 -0800536 kStoreStore,
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700537 kAnyAny,
538 kNTStoreStore,
buzbee1bc37c62012-11-20 13:35:41 -0800539};
540
541std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind);
542
buzbee02031b12012-11-23 09:41:35 -0800543enum OpFeatureFlags {
544 kIsBranch = 0,
545 kNoOperand,
546 kIsUnaryOp,
547 kIsBinaryOp,
548 kIsTertiaryOp,
549 kIsQuadOp,
550 kIsQuinOp,
551 kIsSextupleOp,
552 kIsIT,
Serban Constantinescu63999682014-07-15 17:44:21 +0100553 kIsMoveOp,
buzbee02031b12012-11-23 09:41:35 -0800554 kMemLoad,
555 kMemStore,
Serban Constantinescu63999682014-07-15 17:44:21 +0100556 kMemVolatile,
557 kMemScaledx0,
558 kMemScaledx2,
559 kMemScaledx4,
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700560 kPCRelFixup, // x86 FIXME: add NEEDS_FIXUP to instruction attributes.
buzbee02031b12012-11-23 09:41:35 -0800561 kRegDef0,
562 kRegDef1,
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800563 kRegDef2,
buzbee02031b12012-11-23 09:41:35 -0800564 kRegDefA,
565 kRegDefD,
566 kRegDefFPCSList0,
567 kRegDefFPCSList2,
568 kRegDefList0,
569 kRegDefList1,
570 kRegDefList2,
571 kRegDefLR,
572 kRegDefSP,
573 kRegUse0,
574 kRegUse1,
575 kRegUse2,
576 kRegUse3,
577 kRegUse4,
578 kRegUseA,
579 kRegUseC,
580 kRegUseD,
Vladimir Marko70b797d2013-12-03 15:25:24 +0000581 kRegUseB,
buzbee02031b12012-11-23 09:41:35 -0800582 kRegUseFPCSList0,
583 kRegUseFPCSList2,
584 kRegUseList0,
585 kRegUseList1,
586 kRegUseLR,
587 kRegUsePC,
588 kRegUseSP,
589 kSetsCCodes,
Serguei Katkove90501d2014-03-12 15:56:54 +0700590 kUsesCCodes,
buzbee9da5c102014-03-28 12:59:18 -0700591 kUseFpStack,
592 kUseHi,
593 kUseLo,
594 kDefHi,
595 kDefLo
buzbee02031b12012-11-23 09:41:35 -0800596};
597
buzbeef662a7c2013-02-12 16:19:43 -0800598enum SelectInstructionKind {
599 kSelectNone,
600 kSelectConst,
601 kSelectMove,
602 kSelectGoto
603};
604
buzbeea5abf702013-04-12 14:39:29 -0700605std::ostream& operator<<(std::ostream& os, const SelectInstructionKind& kind);
606
buzbeeb48819d2013-09-14 16:15:25 -0700607// LIR fixup kinds for Arm
608enum FixupKind {
609 kFixupNone,
610 kFixupLabel, // For labels we just adjust the offset.
Vladimir Marko306f0172014-01-07 18:21:20 +0000611 kFixupLoad, // Mostly for immediates.
buzbeeb48819d2013-09-14 16:15:25 -0700612 kFixupVLoad, // FP load which *may* be pc-relative.
613 kFixupCBxZ, // Cbz, Cbnz.
Zheng Xu5d7cdec2014-08-18 17:28:22 +0800614 kFixupTBxZ, // Tbz, Tbnz.
buzbeeb48819d2013-09-14 16:15:25 -0700615 kFixupPushPop, // Not really pc relative, but changes size based on args.
616 kFixupCondBranch, // Conditional branch
617 kFixupT1Branch, // Thumb1 Unconditional branch
618 kFixupT2Branch, // Thumb2 Unconditional branch
619 kFixupBlx1, // Blx1 (start of Blx1/Blx2 pair).
620 kFixupBl1, // Bl1 (start of Bl1/Bl2 pair).
621 kFixupAdr, // Adr.
622 kFixupMovImmLST, // kThumb2MovImm16LST.
623 kFixupMovImmHST, // kThumb2MovImm16HST.
624 kFixupAlign4, // Align to 4-byte boundary.
625};
626
627std::ostream& operator<<(std::ostream& os, const FixupKind& kind);
628
Andreas Gampe3c12c512014-06-24 18:46:29 +0000629enum VolatileKind {
630 kNotVolatile, // Load/Store is not volatile
631 kVolatile // Load/Store is volatile
632};
633
634std::ostream& operator<<(std::ostream& os, const VolatileKind& kind);
635
Andreas Gampeccc60262014-07-04 18:02:38 -0700636enum WideKind {
637 kNotWide, // Non-wide view
638 kWide, // Wide view
639 kRef // Ref width
640};
641
642std::ostream& operator<<(std::ostream& os, const WideKind& kind);
643
buzbeecbd6d442012-11-17 14:11:25 -0800644} // namespace art
645
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700646#endif // ART_COMPILER_DEX_COMPILER_ENUMS_H_