blob: 7f68c8109431decada2fa6ea23e5d1902d42375d [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===- ARMAddressingModes.h - ARM Addressing Modes --------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenga8e29892007-01-19 07:51:42 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the ARM addressing mode implementation stuff.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_TARGET_ARM_ARMADDRESSINGMODES_H
15#define LLVM_TARGET_ARM_ARMADDRESSINGMODES_H
16
17#include "llvm/CodeGen/SelectionDAGNodes.h"
18#include "llvm/Support/MathExtras.h"
19#include <cassert>
20
21namespace llvm {
Jim Grosbach764ab522009-08-11 15:33:49 +000022
Evan Chenga8e29892007-01-19 07:51:42 +000023/// ARM_AM - ARM Addressing Mode Stuff
24namespace ARM_AM {
25 enum ShiftOpc {
26 no_shift = 0,
27 asr,
28 lsl,
29 lsr,
30 ror,
31 rrx
32 };
Jim Grosbach764ab522009-08-11 15:33:49 +000033
Evan Chenga8e29892007-01-19 07:51:42 +000034 enum AddrOpc {
35 add = '+', sub = '-'
36 };
Jim Grosbach764ab522009-08-11 15:33:49 +000037
Johnny Chen9e088762010-03-17 17:52:21 +000038 static inline const char *getAddrOpcStr(AddrOpc Op) {
39 return Op == sub ? "-" : "";
40 }
41
Evan Chenga8e29892007-01-19 07:51:42 +000042 static inline const char *getShiftOpcStr(ShiftOpc Op) {
43 switch (Op) {
Chris Lattner8514e212009-10-19 21:23:15 +000044 default: assert(0 && "Unknown shift opc!");
Evan Chenga8e29892007-01-19 07:51:42 +000045 case ARM_AM::asr: return "asr";
46 case ARM_AM::lsl: return "lsl";
47 case ARM_AM::lsr: return "lsr";
48 case ARM_AM::ror: return "ror";
49 case ARM_AM::rrx: return "rrx";
50 }
51 }
Jim Grosbach764ab522009-08-11 15:33:49 +000052
Jim Grosbach42fac8e2010-10-11 23:16:21 +000053 static inline unsigned getShiftOpcEncoding(ShiftOpc Op) {
54 switch (Op) {
55 default: assert(0 && "Unknown shift opc!");
56 case ARM_AM::asr: return 2;
57 case ARM_AM::lsl: return 0;
58 case ARM_AM::lsr: return 1;
59 case ARM_AM::ror: return 3;
60 }
61 }
62
Dan Gohman475871a2008-07-27 21:46:04 +000063 static inline ShiftOpc getShiftOpcForNode(SDValue N) {
Evan Chenga8e29892007-01-19 07:51:42 +000064 switch (N.getOpcode()) {
65 default: return ARM_AM::no_shift;
66 case ISD::SHL: return ARM_AM::lsl;
67 case ISD::SRL: return ARM_AM::lsr;
68 case ISD::SRA: return ARM_AM::asr;
69 case ISD::ROTR: return ARM_AM::ror;
70 //case ISD::ROTL: // Only if imm -> turn into ROTR.
71 // Can't handle RRX here, because it would require folding a flag into
72 // the addressing mode. :( This causes us to miss certain things.
73 //case ARMISD::RRX: return ARM_AM::rrx;
74 }
75 }
76
77 enum AMSubMode {
78 bad_am_submode = 0,
79 ia,
80 ib,
81 da,
82 db
83 };
84
85 static inline const char *getAMSubModeStr(AMSubMode Mode) {
86 switch (Mode) {
Chris Lattner8514e212009-10-19 21:23:15 +000087 default: assert(0 && "Unknown addressing sub-mode!");
Evan Chenga8e29892007-01-19 07:51:42 +000088 case ARM_AM::ia: return "ia";
89 case ARM_AM::ib: return "ib";
90 case ARM_AM::da: return "da";
91 case ARM_AM::db: return "db";
92 }
93 }
94
Evan Chenga8e29892007-01-19 07:51:42 +000095 /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits.
96 ///
97 static inline unsigned rotr32(unsigned Val, unsigned Amt) {
98 assert(Amt < 32 && "Invalid rotate amount");
99 return (Val >> Amt) | (Val << ((32-Amt)&31));
100 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000101
Evan Chenga8e29892007-01-19 07:51:42 +0000102 /// rotl32 - Rotate a 32-bit unsigned value left by a specified # bits.
103 ///
104 static inline unsigned rotl32(unsigned Val, unsigned Amt) {
105 assert(Amt < 32 && "Invalid rotate amount");
106 return (Val << Amt) | (Val >> ((32-Amt)&31));
107 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000108
Evan Chenga8e29892007-01-19 07:51:42 +0000109 //===--------------------------------------------------------------------===//
110 // Addressing Mode #1: shift_operand with registers
111 //===--------------------------------------------------------------------===//
112 //
113 // This 'addressing mode' is used for arithmetic instructions. It can
114 // represent things like:
115 // reg
116 // reg [asr|lsl|lsr|ror|rrx] reg
117 // reg [asr|lsl|lsr|ror|rrx] imm
118 //
119 // This is stored three operands [rega, regb, opc]. The first is the base
120 // reg, the second is the shift amount (or reg0 if not present or imm). The
121 // third operand encodes the shift opcode and the imm if a reg isn't present.
122 //
123 static inline unsigned getSORegOpc(ShiftOpc ShOp, unsigned Imm) {
124 return ShOp | (Imm << 3);
125 }
126 static inline unsigned getSORegOffset(unsigned Op) {
127 return Op >> 3;
128 }
129 static inline ShiftOpc getSORegShOp(unsigned Op) {
130 return (ShiftOpc)(Op & 7);
131 }
132
133 /// getSOImmValImm - Given an encoded imm field for the reg/imm form, return
134 /// the 8-bit imm value.
135 static inline unsigned getSOImmValImm(unsigned Imm) {
136 return Imm & 0xFF;
137 }
Bob Wilsond83712a2009-03-30 18:49:37 +0000138 /// getSOImmValRot - Given an encoded imm field for the reg/imm form, return
Evan Chenga8e29892007-01-19 07:51:42 +0000139 /// the rotate amount.
140 static inline unsigned getSOImmValRot(unsigned Imm) {
141 return (Imm >> 8) * 2;
142 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000143
Evan Chenga8e29892007-01-19 07:51:42 +0000144 /// getSOImmValRotate - Try to handle Imm with an immediate shifter operand,
145 /// computing the rotate amount to use. If this immediate value cannot be
146 /// handled with a single shifter-op, determine a good rotate amount that will
147 /// take a maximal chunk of bits out of the immediate.
148 static inline unsigned getSOImmValRotate(unsigned Imm) {
149 // 8-bit (or less) immediates are trivially shifter_operands with a rotate
150 // of zero.
151 if ((Imm & ~255U) == 0) return 0;
Jim Grosbach764ab522009-08-11 15:33:49 +0000152
Evan Chenga8e29892007-01-19 07:51:42 +0000153 // Use CTZ to compute the rotate amount.
154 unsigned TZ = CountTrailingZeros_32(Imm);
Jim Grosbach764ab522009-08-11 15:33:49 +0000155
Evan Chenga8e29892007-01-19 07:51:42 +0000156 // Rotate amount must be even. Something like 0x200 must be rotated 8 bits,
157 // not 9.
158 unsigned RotAmt = TZ & ~1;
Jim Grosbach764ab522009-08-11 15:33:49 +0000159
Evan Chenga8e29892007-01-19 07:51:42 +0000160 // If we can handle this spread, return it.
161 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
162 return (32-RotAmt)&31; // HW rotates right, not left.
163
Johnny Chen8a87ffb2010-04-13 20:35:16 +0000164 // For values like 0xF000000F, we should ignore the low 6 bits, then
Evan Chenga8e29892007-01-19 07:51:42 +0000165 // retry the hunt.
Johnny Chen8a87ffb2010-04-13 20:35:16 +0000166 if (Imm & 63U) {
167 unsigned TZ2 = CountTrailingZeros_32(Imm & ~63U);
Bob Wilsonb123b8b2010-04-13 02:11:48 +0000168 unsigned RotAmt2 = TZ2 & ~1;
169 if ((rotr32(Imm, RotAmt2) & ~255U) == 0)
170 return (32-RotAmt2)&31; // HW rotates right, not left.
Evan Chenga8e29892007-01-19 07:51:42 +0000171 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000172
Evan Chenga8e29892007-01-19 07:51:42 +0000173 // Otherwise, we have no way to cover this span of bits with a single
174 // shifter_op immediate. Return a chunk of bits that will be useful to
175 // handle.
176 return (32-RotAmt)&31; // HW rotates right, not left.
177 }
178
179 /// getSOImmVal - Given a 32-bit immediate, if it is something that can fit
180 /// into an shifter_operand immediate operand, return the 12-bit encoding for
181 /// it. If not, return -1.
182 static inline int getSOImmVal(unsigned Arg) {
183 // 8-bit (or less) immediates are trivially shifter_operands with a rotate
184 // of zero.
185 if ((Arg & ~255U) == 0) return Arg;
Jim Grosbach764ab522009-08-11 15:33:49 +0000186
Johnny Chene6f83872010-03-17 18:32:39 +0000187 unsigned RotAmt = getSOImmValRotate(Arg);
Evan Chenga8e29892007-01-19 07:51:42 +0000188
189 // If this cannot be handled with a single shifter_op, bail out.
190 if (rotr32(~255U, RotAmt) & Arg)
191 return -1;
Jim Grosbach764ab522009-08-11 15:33:49 +0000192
Evan Chenga8e29892007-01-19 07:51:42 +0000193 // Encode this correctly.
194 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
195 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000196
Evan Chenga8e29892007-01-19 07:51:42 +0000197 /// isSOImmTwoPartVal - Return true if the specified value can be obtained by
198 /// or'ing together two SOImmVal's.
199 static inline bool isSOImmTwoPartVal(unsigned V) {
200 // If this can be handled with a single shifter_op, bail out.
201 V = rotr32(~255U, getSOImmValRotate(V)) & V;
202 if (V == 0)
203 return false;
Jim Grosbach764ab522009-08-11 15:33:49 +0000204
Evan Chenga8e29892007-01-19 07:51:42 +0000205 // If this can be handled with two shifter_op's, accept.
206 V = rotr32(~255U, getSOImmValRotate(V)) & V;
207 return V == 0;
208 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000209
Evan Chenga8e29892007-01-19 07:51:42 +0000210 /// getSOImmTwoPartFirst - If V is a value that satisfies isSOImmTwoPartVal,
211 /// return the first chunk of it.
212 static inline unsigned getSOImmTwoPartFirst(unsigned V) {
213 return rotr32(255U, getSOImmValRotate(V)) & V;
214 }
215
216 /// getSOImmTwoPartSecond - If V is a value that satisfies isSOImmTwoPartVal,
217 /// return the second chunk of it.
218 static inline unsigned getSOImmTwoPartSecond(unsigned V) {
Jim Grosbach764ab522009-08-11 15:33:49 +0000219 // Mask out the first hunk.
Evan Chenga8e29892007-01-19 07:51:42 +0000220 V = rotr32(~255U, getSOImmValRotate(V)) & V;
Jim Grosbach764ab522009-08-11 15:33:49 +0000221
Evan Chenga8e29892007-01-19 07:51:42 +0000222 // Take what's left.
223 assert(V == (rotr32(255U, getSOImmValRotate(V)) & V));
224 return V;
225 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000226
Evan Chenga8e29892007-01-19 07:51:42 +0000227 /// getThumbImmValShift - Try to handle Imm with a 8-bit immediate followed
228 /// by a left shift. Returns the shift amount to use.
229 static inline unsigned getThumbImmValShift(unsigned Imm) {
230 // 8-bit (or less) immediates are trivially immediate operand with a shift
231 // of zero.
232 if ((Imm & ~255U) == 0) return 0;
233
234 // Use CTZ to compute the shift amount.
235 return CountTrailingZeros_32(Imm);
236 }
237
238 /// isThumbImmShiftedVal - Return true if the specified value can be obtained
239 /// by left shifting a 8-bit immediate.
240 static inline bool isThumbImmShiftedVal(unsigned V) {
Jim Grosbach764ab522009-08-11 15:33:49 +0000241 // If this can be handled with
Evan Chenga8e29892007-01-19 07:51:42 +0000242 V = (~255U << getThumbImmValShift(V)) & V;
243 return V == 0;
244 }
245
Evan Chengf49810c2009-06-23 17:48:47 +0000246 /// getThumbImm16ValShift - Try to handle Imm with a 16-bit immediate followed
247 /// by a left shift. Returns the shift amount to use.
248 static inline unsigned getThumbImm16ValShift(unsigned Imm) {
249 // 16-bit (or less) immediates are trivially immediate operand with a shift
250 // of zero.
251 if ((Imm & ~65535U) == 0) return 0;
252
253 // Use CTZ to compute the shift amount.
254 return CountTrailingZeros_32(Imm);
255 }
256
Jim Grosbach764ab522009-08-11 15:33:49 +0000257 /// isThumbImm16ShiftedVal - Return true if the specified value can be
Evan Chengf49810c2009-06-23 17:48:47 +0000258 /// obtained by left shifting a 16-bit immediate.
259 static inline bool isThumbImm16ShiftedVal(unsigned V) {
Jim Grosbach764ab522009-08-11 15:33:49 +0000260 // If this can be handled with
Evan Chengf49810c2009-06-23 17:48:47 +0000261 V = (~65535U << getThumbImm16ValShift(V)) & V;
262 return V == 0;
263 }
264
Evan Chenga8e29892007-01-19 07:51:42 +0000265 /// getThumbImmNonShiftedVal - If V is a value that satisfies
266 /// isThumbImmShiftedVal, return the non-shiftd value.
267 static inline unsigned getThumbImmNonShiftedVal(unsigned V) {
268 return V >> getThumbImmValShift(V);
269 }
270
Evan Cheng6495f632009-07-28 05:48:47 +0000271
Evan Chengf49810c2009-06-23 17:48:47 +0000272 /// getT2SOImmValSplat - Return the 12-bit encoded representation
273 /// if the specified value can be obtained by splatting the low 8 bits
274 /// into every other byte or every byte of a 32-bit value. i.e.,
275 /// 00000000 00000000 00000000 abcdefgh control = 0
276 /// 00000000 abcdefgh 00000000 abcdefgh control = 1
277 /// abcdefgh 00000000 abcdefgh 00000000 control = 2
278 /// abcdefgh abcdefgh abcdefgh abcdefgh control = 3
279 /// Return -1 if none of the above apply.
280 /// See ARM Reference Manual A6.3.2.
Evan Cheng6495f632009-07-28 05:48:47 +0000281 static inline int getT2SOImmValSplatVal(unsigned V) {
Evan Chengf49810c2009-06-23 17:48:47 +0000282 unsigned u, Vs, Imm;
283 // control = 0
Jim Grosbach764ab522009-08-11 15:33:49 +0000284 if ((V & 0xffffff00) == 0)
Evan Chengf49810c2009-06-23 17:48:47 +0000285 return V;
Jim Grosbach764ab522009-08-11 15:33:49 +0000286
Evan Chengf49810c2009-06-23 17:48:47 +0000287 // If the value is zeroes in the first byte, just shift those off
288 Vs = ((V & 0xff) == 0) ? V >> 8 : V;
289 // Any passing value only has 8 bits of payload, splatted across the word
290 Imm = Vs & 0xff;
291 // Likewise, any passing values have the payload splatted into the 3rd byte
292 u = Imm | (Imm << 16);
293
294 // control = 1 or 2
295 if (Vs == u)
296 return (((Vs == V) ? 1 : 2) << 8) | Imm;
297
298 // control = 3
299 if (Vs == (u | (u << 8)))
300 return (3 << 8) | Imm;
301
302 return -1;
303 }
304
Evan Cheng6495f632009-07-28 05:48:47 +0000305 /// getT2SOImmValRotateVal - Return the 12-bit encoded representation if the
Evan Chengf49810c2009-06-23 17:48:47 +0000306 /// specified value is a rotated 8-bit value. Return -1 if no rotation
307 /// encoding is possible.
308 /// See ARM Reference Manual A6.3.2.
Evan Cheng6495f632009-07-28 05:48:47 +0000309 static inline int getT2SOImmValRotateVal(unsigned V) {
Evan Chengf49810c2009-06-23 17:48:47 +0000310 unsigned RotAmt = CountLeadingZeros_32(V);
311 if (RotAmt >= 24)
312 return -1;
313
314 // If 'Arg' can be handled with a single shifter_op return the value.
315 if ((rotr32(0xff000000U, RotAmt) & V) == V)
316 return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7);
317
318 return -1;
319 }
320
321 /// getT2SOImmVal - Given a 32-bit immediate, if it is something that can fit
Jim Grosbach764ab522009-08-11 15:33:49 +0000322 /// into a Thumb-2 shifter_operand immediate operand, return the 12-bit
Evan Chengf49810c2009-06-23 17:48:47 +0000323 /// encoding for it. If not, return -1.
324 /// See ARM Reference Manual A6.3.2.
325 static inline int getT2SOImmVal(unsigned Arg) {
326 // If 'Arg' is an 8-bit splat, then get the encoded value.
Evan Cheng6495f632009-07-28 05:48:47 +0000327 int Splat = getT2SOImmValSplatVal(Arg);
Evan Chengf49810c2009-06-23 17:48:47 +0000328 if (Splat != -1)
329 return Splat;
Jim Grosbach764ab522009-08-11 15:33:49 +0000330
Evan Chengf49810c2009-06-23 17:48:47 +0000331 // If 'Arg' can be handled with a single shifter_op return the value.
Evan Cheng6495f632009-07-28 05:48:47 +0000332 int Rot = getT2SOImmValRotateVal(Arg);
Evan Chengf49810c2009-06-23 17:48:47 +0000333 if (Rot != -1)
334 return Rot;
335
336 return -1;
337 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000338
Jim Grosbach65b7f3a2009-10-21 20:44:34 +0000339 static inline unsigned getT2SOImmValRotate(unsigned V) {
340 if ((V & ~255U) == 0) return 0;
341 // Use CTZ to compute the rotate amount.
342 unsigned RotAmt = CountTrailingZeros_32(V);
343 return (32 - RotAmt) & 31;
344 }
345
346 static inline bool isT2SOImmTwoPartVal (unsigned Imm) {
347 unsigned V = Imm;
348 // Passing values can be any combination of splat values and shifter
349 // values. If this can be handled with a single shifter or splat, bail
350 // out. Those should be handled directly, not with a two-part val.
351 if (getT2SOImmValSplatVal(V) != -1)
352 return false;
353 V = rotr32 (~255U, getT2SOImmValRotate(V)) & V;
354 if (V == 0)
355 return false;
356
357 // If this can be handled as an immediate, accept.
358 if (getT2SOImmVal(V) != -1) return true;
359
360 // Likewise, try masking out a splat value first.
361 V = Imm;
362 if (getT2SOImmValSplatVal(V & 0xff00ff00U) != -1)
363 V &= ~0xff00ff00U;
364 else if (getT2SOImmValSplatVal(V & 0x00ff00ffU) != -1)
365 V &= ~0x00ff00ffU;
366 // If what's left can be handled as an immediate, accept.
367 if (getT2SOImmVal(V) != -1) return true;
368
369 // Otherwise, do not accept.
370 return false;
371 }
372
373 static inline unsigned getT2SOImmTwoPartFirst(unsigned Imm) {
374 assert (isT2SOImmTwoPartVal(Imm) &&
375 "Immedate cannot be encoded as two part immediate!");
376 // Try a shifter operand as one part
377 unsigned V = rotr32 (~255, getT2SOImmValRotate(Imm)) & Imm;
378 // If the rest is encodable as an immediate, then return it.
379 if (getT2SOImmVal(V) != -1) return V;
380
381 // Try masking out a splat value first.
382 if (getT2SOImmValSplatVal(Imm & 0xff00ff00U) != -1)
383 return Imm & 0xff00ff00U;
384
385 // The other splat is all that's left as an option.
386 assert (getT2SOImmValSplatVal(Imm & 0x00ff00ffU) != -1);
387 return Imm & 0x00ff00ffU;
388 }
389
390 static inline unsigned getT2SOImmTwoPartSecond(unsigned Imm) {
391 // Mask out the first hunk
392 Imm ^= getT2SOImmTwoPartFirst(Imm);
393 // Return what's left
394 assert (getT2SOImmVal(Imm) != -1 &&
395 "Unable to encode second part of T2 two part SO immediate");
396 return Imm;
397 }
398
Evan Chengf49810c2009-06-23 17:48:47 +0000399
Evan Chenga8e29892007-01-19 07:51:42 +0000400 //===--------------------------------------------------------------------===//
401 // Addressing Mode #2
402 //===--------------------------------------------------------------------===//
403 //
404 // This is used for most simple load/store instructions.
405 //
406 // addrmode2 := reg +/- reg shop imm
407 // addrmode2 := reg +/- imm12
408 //
409 // The first operand is always a Reg. The second operand is a reg if in
410 // reg/reg form, otherwise it's reg#0. The third field encodes the operation
411 // in bit 12, the immediate in bits 0-11, and the shift op in 13-15.
412 //
413 // If this addressing mode is a frame index (before prolog/epilog insertion
414 // and code rewriting), this operand will have the form: FI#, reg0, <offs>
415 // with no shift amount for the frame offset.
Jim Grosbach764ab522009-08-11 15:33:49 +0000416 //
Evan Chenga8e29892007-01-19 07:51:42 +0000417 static inline unsigned getAM2Opc(AddrOpc Opc, unsigned Imm12, ShiftOpc SO) {
418 assert(Imm12 < (1 << 12) && "Imm too large!");
419 bool isSub = Opc == sub;
420 return Imm12 | ((int)isSub << 12) | (SO << 13);
421 }
422 static inline unsigned getAM2Offset(unsigned AM2Opc) {
423 return AM2Opc & ((1 << 12)-1);
424 }
425 static inline AddrOpc getAM2Op(unsigned AM2Opc) {
426 return ((AM2Opc >> 12) & 1) ? sub : add;
427 }
428 static inline ShiftOpc getAM2ShiftOpc(unsigned AM2Opc) {
429 return (ShiftOpc)(AM2Opc >> 13);
430 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000431
432
Evan Chenga8e29892007-01-19 07:51:42 +0000433 //===--------------------------------------------------------------------===//
434 // Addressing Mode #3
435 //===--------------------------------------------------------------------===//
436 //
437 // This is used for sign-extending loads, and load/store-pair instructions.
438 //
439 // addrmode3 := reg +/- reg
440 // addrmode3 := reg +/- imm8
441 //
442 // The first operand is always a Reg. The second operand is a reg if in
443 // reg/reg form, otherwise it's reg#0. The third field encodes the operation
444 // in bit 8, the immediate in bits 0-7.
Jim Grosbach764ab522009-08-11 15:33:49 +0000445
Evan Chenga8e29892007-01-19 07:51:42 +0000446 /// getAM3Opc - This function encodes the addrmode3 opc field.
447 static inline unsigned getAM3Opc(AddrOpc Opc, unsigned char Offset) {
448 bool isSub = Opc == sub;
449 return ((int)isSub << 8) | Offset;
450 }
451 static inline unsigned char getAM3Offset(unsigned AM3Opc) {
452 return AM3Opc & 0xFF;
453 }
454 static inline AddrOpc getAM3Op(unsigned AM3Opc) {
455 return ((AM3Opc >> 8) & 1) ? sub : add;
456 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000457
Evan Chenga8e29892007-01-19 07:51:42 +0000458 //===--------------------------------------------------------------------===//
459 // Addressing Mode #4
460 //===--------------------------------------------------------------------===//
461 //
462 // This is used for load / store multiple instructions.
463 //
464 // addrmode4 := reg, <mode>
465 //
466 // The four modes are:
467 // IA - Increment after
468 // IB - Increment before
469 // DA - Decrement after
470 // DB - Decrement before
Bob Wilsond4bfd542010-08-27 23:18:17 +0000471 // For VFP instructions, only the IA and DB modes are valid.
Evan Chenga8e29892007-01-19 07:51:42 +0000472
473 static inline AMSubMode getAM4SubMode(unsigned Mode) {
474 return (AMSubMode)(Mode & 0x7);
475 }
476
Bob Wilsonab346052010-03-16 17:46:45 +0000477 static inline unsigned getAM4ModeImm(AMSubMode SubMode) {
478 return (int)SubMode;
Evan Chenga8e29892007-01-19 07:51:42 +0000479 }
480
481 //===--------------------------------------------------------------------===//
482 // Addressing Mode #5
483 //===--------------------------------------------------------------------===//
484 //
485 // This is used for coprocessor instructions, such as FP load/stores.
486 //
487 // addrmode5 := reg +/- imm8*4
488 //
Bob Wilsond4d826e2009-07-01 21:22:45 +0000489 // The first operand is always a Reg. The second operand encodes the
490 // operation in bit 8 and the immediate in bits 0-7.
Jim Grosbach764ab522009-08-11 15:33:49 +0000491
Evan Chenga8e29892007-01-19 07:51:42 +0000492 /// getAM5Opc - This function encodes the addrmode5 opc field.
493 static inline unsigned getAM5Opc(AddrOpc Opc, unsigned char Offset) {
494 bool isSub = Opc == sub;
495 return ((int)isSub << 8) | Offset;
496 }
497 static inline unsigned char getAM5Offset(unsigned AM5Opc) {
498 return AM5Opc & 0xFF;
499 }
500 static inline AddrOpc getAM5Op(unsigned AM5Opc) {
501 return ((AM5Opc >> 8) & 1) ? sub : add;
502 }
503
Bob Wilson8b024a52009-07-01 23:16:05 +0000504 //===--------------------------------------------------------------------===//
505 // Addressing Mode #6
506 //===--------------------------------------------------------------------===//
507 //
508 // This is used for NEON load / store instructions.
509 //
Bob Wilson226036e2010-03-20 22:13:40 +0000510 // addrmode6 := reg with optional alignment
Bob Wilson8b024a52009-07-01 23:16:05 +0000511 //
Bob Wilson226036e2010-03-20 22:13:40 +0000512 // This is stored in two operands [regaddr, align]. The first is the
513 // address register. The second operand is the value of the alignment
Bob Wilson273ff312010-07-14 23:54:43 +0000514 // specifier in bytes or zero if no explicit alignment.
515 // Valid alignments depend on the specific instruction.
Bob Wilson8b024a52009-07-01 23:16:05 +0000516
Bob Wilson6dce00c2010-07-13 04:44:34 +0000517 //===--------------------------------------------------------------------===//
518 // NEON Modified Immediates
519 //===--------------------------------------------------------------------===//
520 //
521 // Several NEON instructions (e.g., VMOV) take a "modified immediate"
522 // vector operand, where a small immediate encoded in the instruction
523 // specifies a full NEON vector value. These modified immediates are
524 // represented here as encoded integers. The low 8 bits hold the immediate
525 // value; bit 12 holds the "Op" field of the instruction, and bits 11-8 hold
526 // the "Cmode" field of the instruction. The interfaces below treat the
527 // Op and Cmode values as a single 5-bit value.
528
529 static inline unsigned createNEONModImm(unsigned OpCmode, unsigned Val) {
530 return (OpCmode << 8) | Val;
531 }
532 static inline unsigned getNEONModImmOpCmode(unsigned ModImm) {
533 return (ModImm >> 8) & 0x1f;
534 }
535 static inline unsigned getNEONModImmVal(unsigned ModImm) {
536 return ModImm & 0xff;
537 }
538
539 /// decodeNEONModImm - Decode a NEON modified immediate value into the
540 /// element value and the element size in bits. (If the element size is
541 /// smaller than the vector, it is splatted into all the elements.)
542 static inline uint64_t decodeNEONModImm(unsigned ModImm, unsigned &EltBits) {
543 unsigned OpCmode = getNEONModImmOpCmode(ModImm);
544 unsigned Imm8 = getNEONModImmVal(ModImm);
545 uint64_t Val = 0;
546
547 if (OpCmode == 0xe) {
548 // 8-bit vector elements
549 Val = Imm8;
550 EltBits = 8;
551 } else if ((OpCmode & 0xc) == 0x8) {
552 // 16-bit vector elements
553 unsigned ByteNum = (OpCmode & 0x6) >> 1;
554 Val = Imm8 << (8 * ByteNum);
555 EltBits = 16;
556 } else if ((OpCmode & 0x8) == 0) {
557 // 32-bit vector elements, zero with one byte set
558 unsigned ByteNum = (OpCmode & 0x6) >> 1;
559 Val = Imm8 << (8 * ByteNum);
560 EltBits = 32;
561 } else if ((OpCmode & 0xe) == 0xc) {
562 // 32-bit vector elements, one byte with low bits set
563 unsigned ByteNum = 1 + (OpCmode & 0x1);
564 Val = (Imm8 << (8 * ByteNum)) | (0xffff >> (8 * (2 - ByteNum)));
565 EltBits = 32;
566 } else if (OpCmode == 0x1e) {
567 // 64-bit vector elements
568 for (unsigned ByteNum = 0; ByteNum < 8; ++ByteNum) {
569 if ((ModImm >> ByteNum) & 1)
570 Val |= (uint64_t)0xff << (8 * ByteNum);
571 }
572 EltBits = 64;
573 } else {
574 assert(false && "Unsupported NEON immediate");
575 }
576 return Val;
577 }
578
Evan Chenga8e29892007-01-19 07:51:42 +0000579} // end namespace ARM_AM
580} // end namespace llvm
581
582#endif
583