blob: 9305c8ad6b636f7f1d7066477c45e0fba0524643 [file] [log] [blame]
Anton Korobeynikovf2e14752009-05-29 23:41:08 +00001//===- ARMInstrThumb2.td - Thumb2 support for ARM -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the Thumb2 instruction set.
11//
12//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000013
Evan Chengd5b67fa2009-07-10 01:54:42 +000014// IT block predicate field
15def it_pred : Operand<i32> {
16 let PrintMethod = "printPredicateOperand";
17}
18
19// IT block condition mask
20def it_mask : Operand<i32> {
21 let PrintMethod = "printThumbITMask";
22}
23
Evan Cheng1b2b3e22009-07-29 02:18:14 +000024// Table branch address
25def tb_addrmode : Operand<i32> {
26 let PrintMethod = "printTBAddrMode";
27}
28
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000029// Shifted operands. No register controlled shifts for Thumb2.
30// Note: We do not support rrx shifted operands yet.
31def t2_so_reg : Operand<i32>, // reg imm
Evan Cheng19bb7c72009-06-27 02:26:13 +000032 ComplexPattern<i32, 2, "SelectT2ShifterOperandReg",
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000033 [shl,srl,sra,rotr]> {
Evan Cheng19bb7c72009-06-27 02:26:13 +000034 let PrintMethod = "printT2SOOperand";
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000035 let MIOperandInfo = (ops GPR, i32imm);
36}
37
Evan Cheng36173712009-06-23 17:48:47 +000038// t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
39def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000040 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000041}]>;
42
Evan Cheng36173712009-06-23 17:48:47 +000043// t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
44def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000045 return CurDAG->getTargetConstant(-((int)N->getZExtValue()), MVT::i32);
Evan Cheng36173712009-06-23 17:48:47 +000046}]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000047
Evan Cheng36173712009-06-23 17:48:47 +000048// t2_so_imm - Match a 32-bit immediate operand, which is an
49// 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
50// immediate splatted into multiple bytes of the word. t2_so_imm values are
51// represented in the imm field in the same 12-bit form that they are encoded
52// into t2_so_imm instructions: the 8-bit immediate is the least significant bits
53// [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11].
54def t2_so_imm : Operand<i32>,
55 PatLeaf<(imm), [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000056 return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1;
57}]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000058
Evan Cheng36173712009-06-23 17:48:47 +000059// t2_so_imm_not - Match an immediate that is a complement
60// of a t2_so_imm.
61def t2_so_imm_not : Operand<i32>,
62 PatLeaf<(imm), [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000063 return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
64}], t2_so_imm_not_XFORM>;
Evan Cheng36173712009-06-23 17:48:47 +000065
66// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
67def t2_so_imm_neg : Operand<i32>,
68 PatLeaf<(imm), [{
Evan Cheng8be2a5b2009-07-08 21:03:57 +000069 return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
70}], t2_so_imm_neg_XFORM>;
Evan Cheng36173712009-06-23 17:48:47 +000071
Evan Chengf7f986d2009-06-23 19:39:13 +000072/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
73def imm1_31 : PatLeaf<(i32 imm), [{
74 return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
75}]>;
76
Evan Cheng36173712009-06-23 17:48:47 +000077/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
78def imm0_4095 : PatLeaf<(i32 imm), [{
79 return (uint32_t)N->getZExtValue() < 4096;
80}]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000081
82def imm0_4095_neg : PatLeaf<(i32 imm), [{
Evan Cheng36173712009-06-23 17:48:47 +000083 return (uint32_t)(-N->getZExtValue()) < 4096;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000084}], imm_neg_XFORM>;
85
Evan Cheng809fadb2009-08-04 01:41:15 +000086def imm0_255_neg : PatLeaf<(i32 imm), [{
87 return (uint32_t)(-N->getZExtValue()) < 255;
88}], imm_neg_XFORM>;
89
Evan Cheng36173712009-06-23 17:48:47 +000090/// imm0_65535 predicate - True if the 32-bit immediate is in the range
91/// [0.65535].
92def imm0_65535 : PatLeaf<(i32 imm), [{
93 return (uint32_t)N->getZExtValue() < 65536;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +000094}]>;
95
Evan Cheng36173712009-06-23 17:48:47 +000096/// Split a 32-bit immediate into two 16 bit parts.
97def t2_lo16 : SDNodeXForm<imm, [{
98 return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() & 0xffff,
99 MVT::i32);
100}]>;
101
102def t2_hi16 : SDNodeXForm<imm, [{
103 return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() >> 16, MVT::i32);
104}]>;
105
106def t2_lo16AllZero : PatLeaf<(i32 imm), [{
107 // Returns true if all low 16-bits are 0.
108 return (((uint32_t)N->getZExtValue()) & 0xFFFFUL) == 0;
109 }], t2_hi16>;
110
Evan Cheng19bb7c72009-06-27 02:26:13 +0000111
Evan Cheng532cdc52009-06-29 07:51:04 +0000112// Define Thumb2 specific addressing modes.
113
114// t2addrmode_imm12 := reg + imm12
115def t2addrmode_imm12 : Operand<i32>,
116 ComplexPattern<i32, 2, "SelectT2AddrModeImm12", []> {
117 let PrintMethod = "printT2AddrModeImm12Operand";
118 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
119}
120
David Goodwin7938afc2009-07-24 00:16:18 +0000121// t2addrmode_imm8 := reg - imm8
Evan Cheng532cdc52009-06-29 07:51:04 +0000122def t2addrmode_imm8 : Operand<i32>,
123 ComplexPattern<i32, 2, "SelectT2AddrModeImm8", []> {
124 let PrintMethod = "printT2AddrModeImm8Operand";
125 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
126}
127
Evan Cheng24f87d82009-07-03 00:06:39 +0000128def t2am_imm8_offset : Operand<i32>,
129 ComplexPattern<i32, 1, "SelectT2AddrModeImm8Offset", []>{
Evan Chenga90942e2009-07-02 07:28:31 +0000130 let PrintMethod = "printT2AddrModeImm8OffsetOperand";
131}
132
Evan Cheng6bc67202009-07-09 22:21:59 +0000133// t2addrmode_imm8s4 := reg +/- (imm8 << 2)
David Goodwin2af7ed82009-06-30 22:50:01 +0000134def t2addrmode_imm8s4 : Operand<i32>,
135 ComplexPattern<i32, 2, "SelectT2AddrModeImm8s4", []> {
Evan Cheng6bc67202009-07-09 22:21:59 +0000136 let PrintMethod = "printT2AddrModeImm8s4Operand";
David Goodwin2af7ed82009-06-30 22:50:01 +0000137 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
138}
139
Evan Cheng4df2ea72009-07-09 20:40:44 +0000140// t2addrmode_so_reg := reg + (reg << imm2)
Evan Cheng532cdc52009-06-29 07:51:04 +0000141def t2addrmode_so_reg : Operand<i32>,
142 ComplexPattern<i32, 3, "SelectT2AddrModeSoReg", []> {
143 let PrintMethod = "printT2AddrModeSoRegOperand";
144 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
145}
146
147
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000148//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000149// Multiclass helpers...
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000150//
151
Evan Chengf7f986d2009-06-23 19:39:13 +0000152/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000153/// unary operation that produces a value. These are predicable and can be
154/// changed to modify CPSR.
Evan Chengf7f986d2009-06-23 19:39:13 +0000155multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{
156 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000157 def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000158 opc, " $dst, $src",
Evan Chengf7f986d2009-06-23 19:39:13 +0000159 [(set GPR:$dst, (opnode t2_so_imm:$src))]> {
160 let isAsCheapAsAMove = Cheap;
161 let isReMaterializable = ReMat;
162 }
163 // register
David Goodwincfd67652009-08-06 16:52:47 +0000164 def r : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000165 opc, ".w $dst, $src",
Evan Chengf7f986d2009-06-23 19:39:13 +0000166 [(set GPR:$dst, (opnode GPR:$src))]>;
167 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000168 def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000169 opc, ".w $dst, $src",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000170 [(set GPR:$dst, (opnode t2_so_reg:$src))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000171}
172
173/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000174// binary operation that produces a value. These are predicable and can be
175/// changed to modify CPSR.
David Goodwin87affb92009-07-27 23:34:12 +0000176multiclass T2I_bin_irs<string opc, PatFrag opnode,
177 bit Commutable = 0, string wide =""> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000178 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000179 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000180 opc, " $dst, $lhs, $rhs",
181 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000182 // register
David Goodwincfd67652009-08-06 16:52:47 +0000183 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin87affb92009-07-27 23:34:12 +0000184 opc, !strconcat(wide, " $dst, $lhs, $rhs"),
Evan Chengbdd679a2009-06-26 00:19:44 +0000185 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
186 let isCommutable = Commutable;
187 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000188 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000189 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin87affb92009-07-27 23:34:12 +0000190 opc, !strconcat(wide, " $dst, $lhs, $rhs"),
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000191 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000192}
193
David Goodwin87affb92009-07-27 23:34:12 +0000194/// T2I_bin_w_irs - Same as T2I_bin_irs except these operations need
195// the ".w" prefix to indicate that they are wide.
196multiclass T2I_bin_w_irs<string opc, PatFrag opnode, bit Commutable = 0> :
197 T2I_bin_irs<opc, opnode, Commutable, ".w">;
198
Evan Chengd4e2f052009-06-25 20:59:23 +0000199/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
200/// reversed. It doesn't define the 'rr' form since it's handled by its
201/// T2I_bin_irs counterpart.
202multiclass T2I_rbin_is<string opc, PatFrag opnode> {
Evan Cheng36173712009-06-23 17:48:47 +0000203 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000204 def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000205 opc, ".w $dst, $rhs, $lhs",
Evan Cheng36173712009-06-23 17:48:47 +0000206 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
207 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000208 def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000209 opc, " $dst, $rhs, $lhs",
Evan Cheng36173712009-06-23 17:48:47 +0000210 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
211}
212
Evan Chengf7f986d2009-06-23 19:39:13 +0000213/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000214/// instruction modifies the CPSR register.
215let Defs = [CPSR] in {
Evan Chengbdd679a2009-06-26 00:19:44 +0000216multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000217 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000218 def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000219 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000220 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000221 // register
David Goodwincfd67652009-08-06 16:52:47 +0000222 def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000223 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Chengbdd679a2009-06-26 00:19:44 +0000224 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
225 let isCommutable = Commutable;
226 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000227 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000228 def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000229 !strconcat(opc, "s"), ".w $dst, $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000230 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000231}
232}
233
Evan Chengf7f986d2009-06-23 19:39:13 +0000234/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
235/// patterns for a binary operation that produces a value.
Evan Chengbdd679a2009-06-26 00:19:44 +0000236multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> {
Evan Cheng36173712009-06-23 17:48:47 +0000237 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000238 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000239 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000240 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000241 // 12-bit imm
David Goodwincfd67652009-08-06 16:52:47 +0000242 def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000243 !strconcat(opc, "w"), " $dst, $lhs, $rhs",
244 [(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000245 // register
David Goodwincfd67652009-08-06 16:52:47 +0000246 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000247 opc, ".w $dst, $lhs, $rhs",
Evan Chengbdd679a2009-06-26 00:19:44 +0000248 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
249 let isCommutable = Commutable;
250 }
Evan Cheng36173712009-06-23 17:48:47 +0000251 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000252 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000253 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000254 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000255}
256
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000257/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
Evan Chengd4e2f052009-06-25 20:59:23 +0000258/// binary operation that produces a value and use and define the carry bit.
259/// It's not predicable.
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000260let Uses = [CPSR] in {
Evan Chengbdd679a2009-06-26 00:19:44 +0000261multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> {
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000262 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000263 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin3536d172009-06-26 20:45:56 +0000264 opc, " $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000265 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000266 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000267 // register
David Goodwincfd67652009-08-06 16:52:47 +0000268 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000269 opc, ".w $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000270 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000271 Requires<[IsThumb2, CarryDefIsUnused]> {
Evan Chengbdd679a2009-06-26 00:19:44 +0000272 let isCommutable = Commutable;
273 }
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000274 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000275 def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000276 opc, ".w $dst, $lhs, $rhs",
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000277 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000278 Requires<[IsThumb2, CarryDefIsUnused]>;
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000279 // Carry setting variants
280 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000281 def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000282 !strconcat(opc, "s $dst, $lhs, $rhs"),
283 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000284 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000285 let Defs = [CPSR];
286 }
287 // register
David Goodwincfd67652009-08-06 16:52:47 +0000288 def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000289 !strconcat(opc, "s.w $dst, $lhs, $rhs"),
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000290 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000291 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000292 let Defs = [CPSR];
Evan Chengbdd679a2009-06-26 00:19:44 +0000293 let isCommutable = Commutable;
294 }
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000295 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000296 def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000297 !strconcat(opc, "s.w $dst, $lhs, $rhs"),
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000298 [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
Evan Chengb1b2abc2009-07-02 06:38:40 +0000299 Requires<[IsThumb2, CarryDefIsUsed]> {
Evan Cheng9b4d26f2009-06-25 23:34:10 +0000300 let Defs = [CPSR];
Evan Chengbdd679a2009-06-26 00:19:44 +0000301 }
Evan Cheng36173712009-06-23 17:48:47 +0000302}
303}
304
David Goodwin2f6f1132009-07-27 16:31:55 +0000305/// T2I_rbin_s_is - Same as T2I_rbin_is except sets 's' bit.
Evan Chengd4e2f052009-06-25 20:59:23 +0000306let Defs = [CPSR] in {
307multiclass T2I_rbin_s_is<string opc, PatFrag opnode> {
Evan Cheng36173712009-06-23 17:48:47 +0000308 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000309 def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000310 !strconcat(opc, "${s}.w $dst, $rhs, $lhs"),
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000311 [(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000312 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000313 def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000314 !strconcat(opc, "${s} $dst, $rhs, $lhs"),
315 [(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
Evan Cheng36173712009-06-23 17:48:47 +0000316}
317}
318
Evan Chengf7f986d2009-06-23 19:39:13 +0000319/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
320// rotate operation that produces a value.
321multiclass T2I_sh_ir<string opc, PatFrag opnode> {
322 // 5-bit imm
David Goodwincfd67652009-08-06 16:52:47 +0000323 def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000324 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000325 [(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000326 // register
David Goodwincfd67652009-08-06 16:52:47 +0000327 def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000328 opc, ".w $dst, $lhs, $rhs",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000329 [(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000330}
Evan Cheng36173712009-06-23 17:48:47 +0000331
Evan Chengf7f986d2009-06-23 19:39:13 +0000332/// T21_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
333/// patterns. Similar to T2I_bin_irs except the instruction does not produce
Evan Cheng36173712009-06-23 17:48:47 +0000334/// a explicit result, only implicitly set CPSR.
David Goodwin97eb10c2009-07-20 22:13:31 +0000335let Defs = [CPSR] in {
Evan Cheng36173712009-06-23 17:48:47 +0000336multiclass T2I_cmp_is<string opc, PatFrag opnode> {
337 // shifted imm
David Goodwincfd67652009-08-06 16:52:47 +0000338 def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000339 opc, ".w $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000340 [(opnode GPR:$lhs, t2_so_imm:$rhs)]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000341 // register
David Goodwincfd67652009-08-06 16:52:47 +0000342 def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000343 opc, ".w $lhs, $rhs",
Evan Chengf7f986d2009-06-23 19:39:13 +0000344 [(opnode GPR:$lhs, GPR:$rhs)]>;
Evan Cheng36173712009-06-23 17:48:47 +0000345 // shifted register
David Goodwincfd67652009-08-06 16:52:47 +0000346 def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000347 opc, ".w $lhs, $rhs",
Evan Cheng36173712009-06-23 17:48:47 +0000348 [(opnode GPR:$lhs, t2_so_reg:$rhs)]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000349}
350}
351
Evan Cheng503be112009-06-30 02:15:48 +0000352/// T2I_ld - Defines a set of (op r, {imm12|imm8|so_reg}) load patterns.
353multiclass T2I_ld<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000354 def i12 : T2Ii12<(outs GPR:$dst), (ins t2addrmode_imm12:$addr), IIC_iLoad,
David Goodwin2f6f1132009-07-27 16:31:55 +0000355 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000356 [(set GPR:$dst, (opnode t2addrmode_imm12:$addr))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000357 def i8 : T2Ii8 <(outs GPR:$dst), (ins t2addrmode_imm8:$addr), IIC_iLoad,
Evan Cheng503be112009-06-30 02:15:48 +0000358 opc, " $dst, $addr",
359 [(set GPR:$dst, (opnode t2addrmode_imm8:$addr))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000360 def s : T2Iso <(outs GPR:$dst), (ins t2addrmode_so_reg:$addr), IIC_iLoad,
David Goodwin2f6f1132009-07-27 16:31:55 +0000361 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000362 [(set GPR:$dst, (opnode t2addrmode_so_reg:$addr))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000363 def pci : T2Ipc <(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoad,
David Goodwin2f6f1132009-07-27 16:31:55 +0000364 opc, ".w $dst, $addr",
Evan Cheng503be112009-06-30 02:15:48 +0000365 [(set GPR:$dst, (opnode (ARMWrapper tconstpool:$addr)))]>;
366}
367
David Goodwinbab5da12009-06-30 22:11:34 +0000368/// T2I_st - Defines a set of (op r, {imm12|imm8|so_reg}) store patterns.
369multiclass T2I_st<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000370 def i12 : T2Ii12<(outs), (ins GPR:$src, t2addrmode_imm12:$addr), IIC_iStore,
David Goodwin2f6f1132009-07-27 16:31:55 +0000371 opc, ".w $src, $addr",
David Goodwinbab5da12009-06-30 22:11:34 +0000372 [(opnode GPR:$src, t2addrmode_imm12:$addr)]>;
David Goodwincfd67652009-08-06 16:52:47 +0000373 def i8 : T2Ii8 <(outs), (ins GPR:$src, t2addrmode_imm8:$addr), IIC_iStore,
David Goodwinbab5da12009-06-30 22:11:34 +0000374 opc, " $src, $addr",
375 [(opnode GPR:$src, t2addrmode_imm8:$addr)]>;
David Goodwincfd67652009-08-06 16:52:47 +0000376 def s : T2Iso <(outs), (ins GPR:$src, t2addrmode_so_reg:$addr), IIC_iStore,
David Goodwin2f6f1132009-07-27 16:31:55 +0000377 opc, ".w $src, $addr",
David Goodwinbab5da12009-06-30 22:11:34 +0000378 [(opnode GPR:$src, t2addrmode_so_reg:$addr)]>;
379}
380
David Goodwin5811e5c2009-07-01 00:01:13 +0000381/// T2I_picld - Defines the PIC load pattern.
382class T2I_picld<string opc, PatFrag opnode> :
David Goodwincfd67652009-08-06 16:52:47 +0000383 T2I<(outs GPR:$dst), (ins addrmodepc:$addr), IIC_iLoad,
David Goodwin5811e5c2009-07-01 00:01:13 +0000384 !strconcat("${addr:label}:\n\t", opc), " $dst, $addr",
385 [(set GPR:$dst, (opnode addrmodepc:$addr))]>;
386
387/// T2I_picst - Defines the PIC store pattern.
388class T2I_picst<string opc, PatFrag opnode> :
David Goodwincfd67652009-08-06 16:52:47 +0000389 T2I<(outs), (ins GPR:$src, addrmodepc:$addr), IIC_iStore,
David Goodwin5811e5c2009-07-01 00:01:13 +0000390 !strconcat("${addr:label}:\n\t", opc), " $src, $addr",
391 [(opnode GPR:$src, addrmodepc:$addr)]>;
392
Evan Cheng0f994ed2009-07-03 01:43:10 +0000393
394/// T2I_unary_rrot - A unary operation with two forms: one whose operand is a
395/// register and one whose operand is a register rotated by 8/16/24.
396multiclass T2I_unary_rrot<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000397 def r : T2I<(outs GPR:$dst), (ins GPR:$Src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000398 opc, ".w $dst, $Src",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000399 [(set GPR:$dst, (opnode GPR:$Src))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000400 def r_rot : T2I<(outs GPR:$dst), (ins GPR:$Src, i32imm:$rot), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000401 opc, ".w $dst, $Src, ror $rot",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000402 [(set GPR:$dst, (opnode (rotr GPR:$Src, rot_imm:$rot)))]>;
403}
404
405/// T2I_bin_rrot - A binary operation with two forms: one whose operand is a
406/// register and one whose operand is a register rotated by 8/16/24.
407multiclass T2I_bin_rrot<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000408 def rr : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS), IIC_iALU,
Evan Cheng0f994ed2009-07-03 01:43:10 +0000409 opc, " $dst, $LHS, $RHS",
410 [(set GPR:$dst, (opnode GPR:$LHS, GPR:$RHS))]>;
411 def rr_rot : T2I<(outs GPR:$dst), (ins GPR:$LHS, GPR:$RHS, i32imm:$rot),
David Goodwincfd67652009-08-06 16:52:47 +0000412 IIC_iALU, opc, " $dst, $LHS, $RHS, ror $rot",
Evan Cheng0f994ed2009-07-03 01:43:10 +0000413 [(set GPR:$dst, (opnode GPR:$LHS,
414 (rotr GPR:$RHS, rot_imm:$rot)))]>;
415}
416
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000417//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000418// Instructions
419//===----------------------------------------------------------------------===//
420
421//===----------------------------------------------------------------------===//
Evan Cheng41799702009-06-24 23:47:58 +0000422// Miscellaneous Instructions.
423//
424
Evan Cheng41799702009-06-24 23:47:58 +0000425// LEApcrel - Load a pc-relative address into a register without offending the
426// assembler.
David Goodwincfd67652009-08-06 16:52:47 +0000427def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000428 "adr$p.w $dst, #$label", []>;
Evan Cheng41799702009-06-24 23:47:58 +0000429
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000430def t2LEApcrelJT : T2XI<(outs GPR:$dst),
David Goodwincfd67652009-08-06 16:52:47 +0000431 (ins i32imm:$label, i32imm:$id, pred:$p), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000432 "adr$p.w $dst, #${label}_${id:no_hash}", []>;
Evan Cheng41799702009-06-24 23:47:58 +0000433
434//===----------------------------------------------------------------------===//
Evan Cheng19bb7c72009-06-27 02:26:13 +0000435// Load / store Instructions.
436//
437
Evan Cheng532cdc52009-06-29 07:51:04 +0000438// Load
Evan Cheng503be112009-06-30 02:15:48 +0000439let canFoldAsLoad = 1 in
440defm t2LDR : T2I_ld<"ldr", UnOpFrag<(load node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000441
Evan Cheng503be112009-06-30 02:15:48 +0000442// Loads with zero extension
443defm t2LDRH : T2I_ld<"ldrh", UnOpFrag<(zextloadi16 node:$Src)>>;
444defm t2LDRB : T2I_ld<"ldrb", UnOpFrag<(zextloadi8 node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000445
Evan Cheng503be112009-06-30 02:15:48 +0000446// Loads with sign extension
447defm t2LDRSH : T2I_ld<"ldrsh", UnOpFrag<(sextloadi16 node:$Src)>>;
448defm t2LDRSB : T2I_ld<"ldrsb", UnOpFrag<(sextloadi8 node:$Src)>>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000449
Evan Cheng503be112009-06-30 02:15:48 +0000450let mayLoad = 1 in {
451// Load doubleword
David Goodwin2af7ed82009-06-30 22:50:01 +0000452def t2LDRDi8 : T2Ii8s4<(outs GPR:$dst), (ins t2addrmode_imm8s4:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000453 IIC_iLoad, "ldrd", " $dst, $addr", []>;
454def t2LDRDpci : T2Ii8s4<(outs GPR:$dst), (ins i32imm:$addr), IIC_iLoad,
Evan Cheng503be112009-06-30 02:15:48 +0000455 "ldrd", " $dst, $addr", []>;
456}
457
458// zextload i1 -> zextload i8
459def : T2Pat<(zextloadi1 t2addrmode_imm12:$addr),
460 (t2LDRBi12 t2addrmode_imm12:$addr)>;
461def : T2Pat<(zextloadi1 t2addrmode_imm8:$addr),
462 (t2LDRBi8 t2addrmode_imm8:$addr)>;
463def : T2Pat<(zextloadi1 t2addrmode_so_reg:$addr),
464 (t2LDRBs t2addrmode_so_reg:$addr)>;
465def : T2Pat<(zextloadi1 (ARMWrapper tconstpool:$addr)),
466 (t2LDRBpci tconstpool:$addr)>;
467
468// extload -> zextload
469// FIXME: Reduce the number of patterns by legalizing extload to zextload
470// earlier?
471def : T2Pat<(extloadi1 t2addrmode_imm12:$addr),
472 (t2LDRBi12 t2addrmode_imm12:$addr)>;
473def : T2Pat<(extloadi1 t2addrmode_imm8:$addr),
474 (t2LDRBi8 t2addrmode_imm8:$addr)>;
475def : T2Pat<(extloadi1 t2addrmode_so_reg:$addr),
476 (t2LDRBs t2addrmode_so_reg:$addr)>;
477def : T2Pat<(extloadi1 (ARMWrapper tconstpool:$addr)),
478 (t2LDRBpci tconstpool:$addr)>;
479
480def : T2Pat<(extloadi8 t2addrmode_imm12:$addr),
481 (t2LDRBi12 t2addrmode_imm12:$addr)>;
482def : T2Pat<(extloadi8 t2addrmode_imm8:$addr),
483 (t2LDRBi8 t2addrmode_imm8:$addr)>;
484def : T2Pat<(extloadi8 t2addrmode_so_reg:$addr),
485 (t2LDRBs t2addrmode_so_reg:$addr)>;
486def : T2Pat<(extloadi8 (ARMWrapper tconstpool:$addr)),
487 (t2LDRBpci tconstpool:$addr)>;
488
489def : T2Pat<(extloadi16 t2addrmode_imm12:$addr),
490 (t2LDRHi12 t2addrmode_imm12:$addr)>;
491def : T2Pat<(extloadi16 t2addrmode_imm8:$addr),
492 (t2LDRHi8 t2addrmode_imm8:$addr)>;
493def : T2Pat<(extloadi16 t2addrmode_so_reg:$addr),
494 (t2LDRHs t2addrmode_so_reg:$addr)>;
495def : T2Pat<(extloadi16 (ARMWrapper tconstpool:$addr)),
496 (t2LDRHpci tconstpool:$addr)>;
Evan Cheng532cdc52009-06-29 07:51:04 +0000497
Evan Chenga90942e2009-07-02 07:28:31 +0000498// Indexed loads
Evan Chengd72edde2009-07-03 00:08:19 +0000499let mayLoad = 1 in {
Evan Chenga90942e2009-07-02 07:28:31 +0000500def t2LDR_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
501 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000502 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000503 "ldr", " $dst, $addr!", "$addr.base = $base_wb",
504 []>;
505
506def t2LDR_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
507 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000508 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000509 "ldr", " $dst, [$base], $offset", "$base = $base_wb",
510 []>;
511
512def t2LDRB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
513 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000514 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000515 "ldrb", " $dst, $addr!", "$addr.base = $base_wb",
516 []>;
517def t2LDRB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
518 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000519 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000520 "ldrb", " $dst, [$base], $offset", "$base = $base_wb",
521 []>;
522
523def t2LDRH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
524 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000525 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000526 "ldrh", " $dst, $addr!", "$addr.base = $base_wb",
527 []>;
528def t2LDRH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
529 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000530 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Chenga90942e2009-07-02 07:28:31 +0000531 "ldrh", " $dst, [$base], $offset", "$base = $base_wb",
532 []>;
533
Evan Cheng40995c92009-07-02 23:16:11 +0000534def t2LDRSB_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
535 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000536 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000537 "ldrsb", " $dst, $addr!", "$addr.base = $base_wb",
538 []>;
539def t2LDRSB_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
540 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000541 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000542 "ldrsb", " $dst, [$base], $offset", "$base = $base_wb",
543 []>;
544
545def t2LDRSH_PRE : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
546 (ins t2addrmode_imm8:$addr),
David Goodwincfd67652009-08-06 16:52:47 +0000547 AddrModeT2_i8, IndexModePre, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000548 "ldrsh", " $dst, $addr!", "$addr.base = $base_wb",
549 []>;
550def t2LDRSH_POST : T2Iidxldst<(outs GPR:$dst, GPR:$base_wb),
551 (ins GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000552 AddrModeT2_i8, IndexModePost, IIC_iLoad,
Evan Cheng40995c92009-07-02 23:16:11 +0000553 "ldrsh", " $dst, [$base], $offset", "$base = $base_wb",
554 []>;
Evan Chengd72edde2009-07-03 00:08:19 +0000555}
Evan Cheng40995c92009-07-02 23:16:11 +0000556
David Goodwinbab5da12009-06-30 22:11:34 +0000557// Store
Evan Chenga90942e2009-07-02 07:28:31 +0000558defm t2STR : T2I_st<"str", BinOpFrag<(store node:$LHS, node:$RHS)>>;
559defm t2STRB : T2I_st<"strb", BinOpFrag<(truncstorei8 node:$LHS, node:$RHS)>>;
560defm t2STRH : T2I_st<"strh", BinOpFrag<(truncstorei16 node:$LHS, node:$RHS)>>;
David Goodwinbab5da12009-06-30 22:11:34 +0000561
David Goodwin2af7ed82009-06-30 22:50:01 +0000562// Store doubleword
563let mayLoad = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000564def t2STRDi8 : T2Ii8s4<(outs), (ins GPR:$src, t2addrmode_imm8s4:$addr), IIC_iStore,
David Goodwin2af7ed82009-06-30 22:50:01 +0000565 "strd", " $src, $addr", []>;
566
Evan Cheng24f87d82009-07-03 00:06:39 +0000567// Indexed stores
568def t2STR_PRE : T2Iidxldst<(outs GPR:$base_wb),
569 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000570 AddrModeT2_i8, IndexModePre, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000571 "str", " $src, [$base, $offset]!", "$base = $base_wb",
572 [(set GPR:$base_wb,
573 (pre_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
574
575def t2STR_POST : T2Iidxldst<(outs GPR:$base_wb),
576 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000577 AddrModeT2_i8, IndexModePost, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000578 "str", " $src, [$base], $offset", "$base = $base_wb",
579 [(set GPR:$base_wb,
580 (post_store GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
581
582def t2STRH_PRE : T2Iidxldst<(outs GPR:$base_wb),
583 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000584 AddrModeT2_i8, IndexModePre, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000585 "strh", " $src, [$base, $offset]!", "$base = $base_wb",
586 [(set GPR:$base_wb,
587 (pre_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
588
589def t2STRH_POST : T2Iidxldst<(outs GPR:$base_wb),
590 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000591 AddrModeT2_i8, IndexModePost, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000592 "strh", " $src, [$base], $offset", "$base = $base_wb",
593 [(set GPR:$base_wb,
594 (post_truncsti16 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
595
596def t2STRB_PRE : T2Iidxldst<(outs GPR:$base_wb),
597 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000598 AddrModeT2_i8, IndexModePre, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000599 "strb", " $src, [$base, $offset]!", "$base = $base_wb",
600 [(set GPR:$base_wb,
601 (pre_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
602
603def t2STRB_POST : T2Iidxldst<(outs GPR:$base_wb),
604 (ins GPR:$src, GPR:$base, t2am_imm8_offset:$offset),
David Goodwincfd67652009-08-06 16:52:47 +0000605 AddrModeT2_i8, IndexModePost, IIC_iStore,
Evan Cheng24f87d82009-07-03 00:06:39 +0000606 "strb", " $src, [$base], $offset", "$base = $base_wb",
607 [(set GPR:$base_wb,
608 (post_truncsti8 GPR:$src, GPR:$base, t2am_imm8_offset:$offset))]>;
609
David Goodwin5811e5c2009-07-01 00:01:13 +0000610
Evan Cheng6bc67202009-07-09 22:21:59 +0000611// FIXME: ldrd / strd pre / post variants
Evan Cheng2832edf2009-07-03 00:18:36 +0000612
613//===----------------------------------------------------------------------===//
614// Load / store multiple Instructions.
615//
616
617let mayLoad = 1 in
618def t2LDM : T2XI<(outs),
619 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
David Goodwincfd67652009-08-06 16:52:47 +0000620 IIC_iLoad, "ldm${addr:submode}${p} $addr, $dst1", []>;
Evan Cheng2832edf2009-07-03 00:18:36 +0000621
622let mayStore = 1 in
623def t2STM : T2XI<(outs),
624 (ins addrmode4:$addr, pred:$p, reglist:$src1, variable_ops),
David Goodwincfd67652009-08-06 16:52:47 +0000625 IIC_iStore, "stm${addr:submode}${p} $addr, $src1", []>;
Evan Cheng2832edf2009-07-03 00:18:36 +0000626
Evan Cheng19bb7c72009-06-27 02:26:13 +0000627//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000628// Move Instructions.
629//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000630
Evan Cheng36173712009-06-23 17:48:47 +0000631let neverHasSideEffects = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000632def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000633 "mov", ".w $dst, $src", []>;
Evan Cheng36173712009-06-23 17:48:47 +0000634
Evan Chengf7f986d2009-06-23 19:39:13 +0000635let isReMaterializable = 1, isAsCheapAsAMove = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000636def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000637 "mov", ".w $dst, $src",
David Goodwin2dbffd42009-06-26 16:10:07 +0000638 [(set GPR:$dst, t2_so_imm:$src)]>;
639
640let isReMaterializable = 1, isAsCheapAsAMove = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000641def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), IIC_iALU,
David Goodwin2dbffd42009-06-26 16:10:07 +0000642 "movw", " $dst, $src",
643 [(set GPR:$dst, imm0_65535:$src)]>;
Evan Cheng36173712009-06-23 17:48:47 +0000644
Evan Cheng36173712009-06-23 17:48:47 +0000645// FIXME: Also available in ARM mode.
Evan Cheng42e6ce92009-06-23 05:23:49 +0000646let Constraints = "$src = $dst" in
David Goodwincfd67652009-08-06 16:52:47 +0000647def t2MOVTi16 : T2sI<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000648 "movt", " $dst, $imm",
649 [(set GPR:$dst,
650 (or (and GPR:$src, 0xffff), t2_lo16AllZero:$imm))]>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000651
652//===----------------------------------------------------------------------===//
Evan Cheng0f994ed2009-07-03 01:43:10 +0000653// Extend Instructions.
654//
655
656// Sign extenders
657
658defm t2SXTB : T2I_unary_rrot<"sxtb", UnOpFrag<(sext_inreg node:$Src, i8)>>;
659defm t2SXTH : T2I_unary_rrot<"sxth", UnOpFrag<(sext_inreg node:$Src, i16)>>;
660
661defm t2SXTAB : T2I_bin_rrot<"sxtab",
662 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS, i8))>>;
663defm t2SXTAH : T2I_bin_rrot<"sxtah",
664 BinOpFrag<(add node:$LHS, (sext_inreg node:$RHS,i16))>>;
665
666// TODO: SXT(A){B|H}16
667
668// Zero extenders
669
670let AddedComplexity = 16 in {
671defm t2UXTB : T2I_unary_rrot<"uxtb" , UnOpFrag<(and node:$Src, 0x000000FF)>>;
672defm t2UXTH : T2I_unary_rrot<"uxth" , UnOpFrag<(and node:$Src, 0x0000FFFF)>>;
673defm t2UXTB16 : T2I_unary_rrot<"uxtb16", UnOpFrag<(and node:$Src, 0x00FF00FF)>>;
674
675def : T2Pat<(and (shl GPR:$Src, (i32 8)), 0xFF00FF),
676 (t2UXTB16r_rot GPR:$Src, 24)>;
677def : T2Pat<(and (srl GPR:$Src, (i32 8)), 0xFF00FF),
678 (t2UXTB16r_rot GPR:$Src, 8)>;
679
680defm t2UXTAB : T2I_bin_rrot<"uxtab",
681 BinOpFrag<(add node:$LHS, (and node:$RHS, 0x00FF))>>;
682defm t2UXTAH : T2I_bin_rrot<"uxtah",
683 BinOpFrag<(add node:$LHS, (and node:$RHS, 0xFFFF))>>;
684}
685
686//===----------------------------------------------------------------------===//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000687// Arithmetic Instructions.
688//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000689
Evan Chengbdd679a2009-06-26 00:19:44 +0000690defm t2ADD : T2I_bin_ii12rs<"add", BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000691defm t2SUB : T2I_bin_ii12rs<"sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000692
Evan Cheng36173712009-06-23 17:48:47 +0000693// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
Evan Chengbdd679a2009-06-26 00:19:44 +0000694defm t2ADDS : T2I_bin_s_irs <"add", BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
Evan Chengd4e2f052009-06-25 20:59:23 +0000695defm t2SUBS : T2I_bin_s_irs <"sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000696
Evan Chengbdd679a2009-06-26 00:19:44 +0000697defm t2ADC : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>;
698defm t2SBC : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000699
David Goodwin3bc1afe2009-07-27 16:39:05 +0000700// RSB
Evan Chengd4e2f052009-06-25 20:59:23 +0000701defm t2RSB : T2I_rbin_is <"rsb", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
702defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000703
704// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
Evan Cheng809fadb2009-08-04 01:41:15 +0000705let AddedComplexity = 1 in
706def : T2Pat<(add GPR:$src, imm0_255_neg:$imm),
707 (t2SUBri GPR:$src, imm0_255_neg:$imm)>;
Evan Cheng19bb7c72009-06-27 02:26:13 +0000708def : T2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
709 (t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
710def : T2Pat<(add GPR:$src, imm0_4095_neg:$imm),
711 (t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000712
713
Evan Cheng36173712009-06-23 17:48:47 +0000714//===----------------------------------------------------------------------===//
Evan Chengf7f986d2009-06-23 19:39:13 +0000715// Shift and rotate Instructions.
716//
717
718defm t2LSL : T2I_sh_ir<"lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
719defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
720defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
721defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
722
David Goodwincfd67652009-08-06 16:52:47 +0000723def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin1f697672009-07-30 21:38:40 +0000724 "rrx", ".w $dst, $src",
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000725 [(set GPR:$dst, (ARMrrx GPR:$src))]>;
Evan Chengf7f986d2009-06-23 19:39:13 +0000726
David Goodwin7cdd24c2009-07-28 17:06:49 +0000727let Defs = [CPSR] in {
David Goodwincfd67652009-08-06 16:52:47 +0000728def t2MOVsrl_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin7cdd24c2009-07-28 17:06:49 +0000729 "lsrs.w $dst, $src, #1",
730 [(set GPR:$dst, (ARMsrl_flag GPR:$src))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000731def t2MOVsra_flag : T2XI<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin7cdd24c2009-07-28 17:06:49 +0000732 "asrs.w $dst, $src, #1",
733 [(set GPR:$dst, (ARMsra_flag GPR:$src))]>;
734}
735
Evan Chengf7f986d2009-06-23 19:39:13 +0000736//===----------------------------------------------------------------------===//
Evan Cheng36173712009-06-23 17:48:47 +0000737// Bitwise Instructions.
738//
Anton Korobeynikovac869fc2009-06-17 18:13:58 +0000739
David Goodwin87affb92009-07-27 23:34:12 +0000740defm t2AND : T2I_bin_w_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
741defm t2ORR : T2I_bin_w_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
742defm t2EOR : T2I_bin_w_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
Evan Cheng36173712009-06-23 17:48:47 +0000743
David Goodwin87affb92009-07-27 23:34:12 +0000744defm t2BIC : T2I_bin_w_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
Evan Cheng36173712009-06-23 17:48:47 +0000745
Evan Cheng36173712009-06-23 17:48:47 +0000746let Constraints = "$src = $dst" in
David Goodwincfd67652009-08-06 16:52:47 +0000747def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000748 "bfc", " $dst, $imm",
Evan Cheng36173712009-06-23 17:48:47 +0000749 [(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>;
750
751// FIXME: A8.6.18 BFI - Bitfield insert (Encoding T1)
752
Evan Cheng04f40fa2009-08-01 06:13:52 +0000753/*
David Goodwin481216a2009-07-30 21:51:41 +0000754defm t2ORN : T2I_bin_irs<"orn", BinOpFrag<(or node:$LHS, (not node:$RHS))>>;
Evan Cheng04f40fa2009-08-01 06:13:52 +0000755*/
756// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
David Goodwincfd67652009-08-06 16:52:47 +0000757def t2ORNri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs), IIC_iALU,
Evan Cheng04f40fa2009-08-01 06:13:52 +0000758 "orn", " $dst, $lhs, $rhs",
759 [(set GPR:$dst, (or GPR:$lhs, (not t2_so_imm:$rhs)))]>,
760 Requires<[IsThumb2, IsNotDarwin]>;
761
David Goodwincfd67652009-08-06 16:52:47 +0000762def t2ORNrr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALU,
Evan Cheng04f40fa2009-08-01 06:13:52 +0000763 "orn", " $dst, $lhs, $rhs",
764 [(set GPR:$dst, (or GPR:$lhs, (not GPR:$rhs)))]>;
David Goodwincfd67652009-08-06 16:52:47 +0000765def t2ORNrs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs), IIC_iALU,
Evan Cheng04f40fa2009-08-01 06:13:52 +0000766 "orn", " $dst, $lhs, $rhs",
767 [(set GPR:$dst, (or GPR:$lhs, (not t2_so_reg:$rhs)))]>;
Evan Cheng299ee652009-07-06 22:23:46 +0000768
769// Prefer over of t2EORri ra, rb, -1 because mvn has 16-bit version
770let AddedComplexity = 1 in
771defm t2MVN : T2I_un_irs <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
772
773
774def : T2Pat<(and GPR:$src, t2_so_imm_not:$imm),
775 (t2BICri GPR:$src, t2_so_imm_not:$imm)>;
776
Evan Cheng04f40fa2009-08-01 06:13:52 +0000777// FIXME: Disable this pattern on Darwin to workaround an assembler bug.
David Goodwin481216a2009-07-30 21:51:41 +0000778def : T2Pat<(or GPR:$src, t2_so_imm_not:$imm),
Evan Cheng04f40fa2009-08-01 06:13:52 +0000779 (t2ORNri GPR:$src, t2_so_imm_not:$imm)>,
780 Requires<[IsThumb2, IsNotDarwin]>;
Evan Cheng299ee652009-07-06 22:23:46 +0000781
782def : T2Pat<(t2_so_imm_not:$src),
783 (t2MVNi t2_so_imm_not:$src)>;
784
Evan Cheng36173712009-06-23 17:48:47 +0000785//===----------------------------------------------------------------------===//
786// Multiply Instructions.
787//
Evan Chengbdd679a2009-06-26 00:19:44 +0000788let isCommutable = 1 in
David Goodwincfd67652009-08-06 16:52:47 +0000789def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000790 "mul", " $dst, $a, $b",
Evan Cheng36173712009-06-23 17:48:47 +0000791 [(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
792
David Goodwincfd67652009-08-06 16:52:47 +0000793def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000794 "mla", " $dst, $a, $b, $c",
Evan Cheng36173712009-06-23 17:48:47 +0000795 [(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
796
David Goodwincfd67652009-08-06 16:52:47 +0000797def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000798 "mls", " $dst, $a, $b, $c",
Evan Cheng36173712009-06-23 17:48:47 +0000799 [(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>;
800
Evan Chenga5626262009-07-07 01:17:28 +0000801// Extra precision multiplies with low / high results
802let neverHasSideEffects = 1 in {
803let isCommutable = 1 in {
David Goodwincfd67652009-08-06 16:52:47 +0000804def t2SMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000805 "smull", " $ldst, $hdst, $a, $b", []>;
806
David Goodwincfd67652009-08-06 16:52:47 +0000807def t2UMULL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000808 "umull", " $ldst, $hdst, $a, $b", []>;
809}
810
811// Multiply + accumulate
David Goodwincfd67652009-08-06 16:52:47 +0000812def t2SMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000813 "smlal", " $ldst, $hdst, $a, $b", []>;
814
David Goodwincfd67652009-08-06 16:52:47 +0000815def t2UMLAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000816 "umlal", " $ldst, $hdst, $a, $b", []>;
817
David Goodwincfd67652009-08-06 16:52:47 +0000818def t2UMAAL : T2I<(outs GPR:$ldst, GPR:$hdst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000819 "umaal", " $ldst, $hdst, $a, $b", []>;
820} // neverHasSideEffects
821
822// Most significant word multiply
David Goodwincfd67652009-08-06 16:52:47 +0000823def t2SMMUL : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000824 "smmul", " $dst, $a, $b",
825 [(set GPR:$dst, (mulhs GPR:$a, GPR:$b))]>;
826
David Goodwincfd67652009-08-06 16:52:47 +0000827def t2SMMLA : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000828 "smmla", " $dst, $a, $b, $c",
829 [(set GPR:$dst, (add (mulhs GPR:$a, GPR:$b), GPR:$c))]>;
830
831
David Goodwincfd67652009-08-06 16:52:47 +0000832def t2SMMLS : T2I <(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000833 "smmls", " $dst, $a, $b, $c",
834 [(set GPR:$dst, (sub GPR:$c, (mulhs GPR:$a, GPR:$b)))]>;
835
836multiclass T2I_smul<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000837 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000838 !strconcat(opc, "bb"), " $dst, $a, $b",
839 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
840 (sext_inreg GPR:$b, i16)))]>;
841
David Goodwincfd67652009-08-06 16:52:47 +0000842 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000843 !strconcat(opc, "bt"), " $dst, $a, $b",
844 [(set GPR:$dst, (opnode (sext_inreg GPR:$a, i16),
845 (sra GPR:$b, (i32 16))))]>;
846
David Goodwincfd67652009-08-06 16:52:47 +0000847 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000848 !strconcat(opc, "tb"), " $dst, $a, $b",
849 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
850 (sext_inreg GPR:$b, i16)))]>;
851
David Goodwincfd67652009-08-06 16:52:47 +0000852 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000853 !strconcat(opc, "tt"), " $dst, $a, $b",
854 [(set GPR:$dst, (opnode (sra GPR:$a, (i32 16)),
855 (sra GPR:$b, (i32 16))))]>;
856
David Goodwincfd67652009-08-06 16:52:47 +0000857 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000858 !strconcat(opc, "wb"), " $dst, $a, $b",
859 [(set GPR:$dst, (sra (opnode GPR:$a,
860 (sext_inreg GPR:$b, i16)), (i32 16)))]>;
861
David Goodwincfd67652009-08-06 16:52:47 +0000862 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000863 !strconcat(opc, "wt"), " $dst, $a, $b",
864 [(set GPR:$dst, (sra (opnode GPR:$a,
865 (sra GPR:$b, (i32 16))), (i32 16)))]>;
866}
867
868
869multiclass T2I_smla<string opc, PatFrag opnode> {
David Goodwincfd67652009-08-06 16:52:47 +0000870 def BB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000871 !strconcat(opc, "bb"), " $dst, $a, $b, $acc",
872 [(set GPR:$dst, (add GPR:$acc,
873 (opnode (sext_inreg GPR:$a, i16),
874 (sext_inreg GPR:$b, i16))))]>;
875
David Goodwincfd67652009-08-06 16:52:47 +0000876 def BT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000877 !strconcat(opc, "bt"), " $dst, $a, $b, $acc",
878 [(set GPR:$dst, (add GPR:$acc, (opnode (sext_inreg GPR:$a, i16),
879 (sra GPR:$b, (i32 16)))))]>;
880
David Goodwincfd67652009-08-06 16:52:47 +0000881 def TB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000882 !strconcat(opc, "tb"), " $dst, $a, $b, $acc",
883 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
884 (sext_inreg GPR:$b, i16))))]>;
885
David Goodwincfd67652009-08-06 16:52:47 +0000886 def TT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000887 !strconcat(opc, "tt"), " $dst, $a, $b, $acc",
888 [(set GPR:$dst, (add GPR:$acc, (opnode (sra GPR:$a, (i32 16)),
889 (sra GPR:$b, (i32 16)))))]>;
890
David Goodwincfd67652009-08-06 16:52:47 +0000891 def WB : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000892 !strconcat(opc, "wb"), " $dst, $a, $b, $acc",
893 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
894 (sext_inreg GPR:$b, i16)), (i32 16))))]>;
895
David Goodwincfd67652009-08-06 16:52:47 +0000896 def WT : T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$acc), IIC_iALU,
Evan Chenga5626262009-07-07 01:17:28 +0000897 !strconcat(opc, "wt"), " $dst, $a, $b, $acc",
898 [(set GPR:$dst, (add GPR:$acc, (sra (opnode GPR:$a,
899 (sra GPR:$b, (i32 16))), (i32 16))))]>;
900}
901
902defm t2SMUL : T2I_smul<"smul", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
903defm t2SMLA : T2I_smla<"smla", BinOpFrag<(mul node:$LHS, node:$RHS)>>;
904
905// TODO: Halfword multiple accumulate long: SMLAL<x><y>
906// TODO: Dual halfword multiple: SMUAD, SMUSD, SMLAD, SMLSD, SMLALD, SMLSLD
907
Evan Cheng36173712009-06-23 17:48:47 +0000908
909//===----------------------------------------------------------------------===//
910// Misc. Arithmetic Instructions.
911//
912
David Goodwincfd67652009-08-06 16:52:47 +0000913def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
Evan Cheng3d92dfd2009-06-25 02:08:06 +0000914 "clz", " $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000915 [(set GPR:$dst, (ctlz GPR:$src))]>;
916
David Goodwincfd67652009-08-06 16:52:47 +0000917def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000918 "rev", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000919 [(set GPR:$dst, (bswap GPR:$src))]>;
920
David Goodwincfd67652009-08-06 16:52:47 +0000921def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000922 "rev16", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000923 [(set GPR:$dst,
924 (or (and (srl GPR:$src, (i32 8)), 0xFF),
925 (or (and (shl GPR:$src, (i32 8)), 0xFF00),
926 (or (and (srl GPR:$src, (i32 8)), 0xFF0000),
927 (and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>;
928
David Goodwincfd67652009-08-06 16:52:47 +0000929def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src), IIC_iALU,
David Goodwin2f6f1132009-07-27 16:31:55 +0000930 "revsh", ".w $dst, $src",
Evan Cheng36173712009-06-23 17:48:47 +0000931 [(set GPR:$dst,
932 (sext_inreg
933 (or (srl (and GPR:$src, 0xFFFF), (i32 8)),
934 (shl GPR:$src, (i32 8))), i16))]>;
935
Evan Chengcd0ae282009-07-07 05:35:52 +0000936def t2PKHBT : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
David Goodwincfd67652009-08-06 16:52:47 +0000937 IIC_iALU, "pkhbt", " $dst, $src1, $src2, LSL $shamt",
Evan Chengcd0ae282009-07-07 05:35:52 +0000938 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF),
939 (and (shl GPR:$src2, (i32 imm:$shamt)),
940 0xFFFF0000)))]>;
941
942// Alternate cases for PKHBT where identities eliminate some nodes.
943def : T2Pat<(or (and GPR:$src1, 0xFFFF), (and GPR:$src2, 0xFFFF0000)),
944 (t2PKHBT GPR:$src1, GPR:$src2, 0)>;
945def : T2Pat<(or (and GPR:$src1, 0xFFFF), (shl GPR:$src2, imm16_31:$shamt)),
946 (t2PKHBT GPR:$src1, GPR:$src2, imm16_31:$shamt)>;
947
948def t2PKHTB : T2I<(outs GPR:$dst), (ins GPR:$src1, GPR:$src2, i32imm:$shamt),
David Goodwincfd67652009-08-06 16:52:47 +0000949 IIC_iALU, "pkhtb", " $dst, $src1, $src2, ASR $shamt",
Evan Chengcd0ae282009-07-07 05:35:52 +0000950 [(set GPR:$dst, (or (and GPR:$src1, 0xFFFF0000),
951 (and (sra GPR:$src2, imm16_31:$shamt),
952 0xFFFF)))]>;
953
954// Alternate cases for PKHTB where identities eliminate some nodes. Note that
955// a shift amount of 0 is *not legal* here, it is PKHBT instead.
956def : T2Pat<(or (and GPR:$src1, 0xFFFF0000), (srl GPR:$src2, (i32 16))),
957 (t2PKHTB GPR:$src1, GPR:$src2, 16)>;
958def : T2Pat<(or (and GPR:$src1, 0xFFFF0000),
959 (and (srl GPR:$src2, imm1_15:$shamt), 0xFFFF)),
960 (t2PKHTB GPR:$src1, GPR:$src2, imm1_15:$shamt)>;
Evan Cheng36173712009-06-23 17:48:47 +0000961
962//===----------------------------------------------------------------------===//
963// Comparison Instructions...
964//
965
966defm t2CMP : T2I_cmp_is<"cmp",
967 BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
David Goodwin8bdcbb32009-06-29 15:33:01 +0000968defm t2CMPz : T2I_cmp_is<"cmp",
969 BinOpFrag<(ARMcmpZ node:$LHS, node:$RHS)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000970
971defm t2CMN : T2I_cmp_is<"cmn",
972 BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
David Goodwin8bdcbb32009-06-29 15:33:01 +0000973defm t2CMNz : T2I_cmp_is<"cmn",
974 BinOpFrag<(ARMcmpZ node:$LHS,(ineg node:$RHS))>>;
Evan Cheng36173712009-06-23 17:48:47 +0000975
Evan Cheng19bb7c72009-06-27 02:26:13 +0000976def : T2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
977 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Cheng36173712009-06-23 17:48:47 +0000978
David Goodwin8bdcbb32009-06-29 15:33:01 +0000979def : T2Pat<(ARMcmpZ GPR:$src, t2_so_imm_neg:$imm),
Evan Cheng19bb7c72009-06-27 02:26:13 +0000980 (t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
Evan Cheng36173712009-06-23 17:48:47 +0000981
David Goodwinec52c892009-06-29 22:49:42 +0000982defm t2TST : T2I_cmp_is<"tst",
983 BinOpFrag<(ARMcmpZ (and node:$LHS, node:$RHS), 0)>>;
984defm t2TEQ : T2I_cmp_is<"teq",
985 BinOpFrag<(ARMcmpZ (xor node:$LHS, node:$RHS), 0)>>;
Evan Cheng36173712009-06-23 17:48:47 +0000986
987// A8.6.27 CBNZ, CBZ - Compare and branch on (non)zero.
988// Short range conditional branch. Looks awesome for loops. Need to figure
989// out how to use this one.
990
Evan Cheng03137672009-07-07 20:39:03 +0000991
992// Conditional moves
993// FIXME: should be able to write a pattern for ARMcmov, but can't use
994// a two-value operand where a dag node expects two operands. :(
David Goodwincfd67652009-08-06 16:52:47 +0000995def t2MOVCCr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true), IIC_iALU,
Evan Chengdec08242009-07-31 22:21:55 +0000996 "mov", ".w $dst, $true",
Evan Cheng03137672009-07-07 20:39:03 +0000997 [/*(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc, CCR:$ccr))*/]>,
998 RegConstraint<"$false = $dst">;
999
David Goodwincfd67652009-08-06 16:52:47 +00001000def t2MOVCCi : T2I<(outs GPR:$dst), (ins GPR:$false, t2_so_imm:$true), IIC_iALU,
Evan Chengdec08242009-07-31 22:21:55 +00001001 "mov", ".w $dst, $true",
Evan Cheng03137672009-07-07 20:39:03 +00001002[/*(set GPR:$dst, (ARMcmov GPR:$false, t2_so_imm:$true, imm:$cc, CCR:$ccr))*/]>,
1003 RegConstraint<"$false = $dst">;
Evan Cheng36173712009-06-23 17:48:47 +00001004
Evan Cheng7c002f32009-08-01 01:43:45 +00001005def t2MOVCClsl : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001006 IIC_iALU, "lsl", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001007 RegConstraint<"$false = $dst">;
1008def t2MOVCClsr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001009 IIC_iALU, "lsr", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001010 RegConstraint<"$false = $dst">;
1011def t2MOVCCasr : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001012 IIC_iALU, "asr", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001013 RegConstraint<"$false = $dst">;
1014def t2MOVCCror : T2I<(outs GPR:$dst), (ins GPR:$false, GPR:$true, i32imm:$rhs),
David Goodwincfd67652009-08-06 16:52:47 +00001015 IIC_iALU, "ror", ".w $dst, $true, $rhs", []>,
Evan Cheng7c002f32009-08-01 01:43:45 +00001016 RegConstraint<"$false = $dst">;
1017
David Goodwinf6154702009-06-30 18:04:13 +00001018//===----------------------------------------------------------------------===//
David Goodwin41afec22009-07-08 16:09:28 +00001019// TLS Instructions
1020//
1021
1022// __aeabi_read_tp preserves the registers r1-r3.
1023let isCall = 1,
1024 Defs = [R0, R12, LR, CPSR] in {
David Goodwincfd67652009-08-06 16:52:47 +00001025 def t2TPsoft : T2XI<(outs), (ins), IIC_Br,
David Goodwin41afec22009-07-08 16:09:28 +00001026 "bl __aeabi_read_tp",
1027 [(set R0, ARMthread_pointer)]>;
1028}
1029
1030//===----------------------------------------------------------------------===//
David Goodwinf6154702009-06-30 18:04:13 +00001031// Control-Flow Instructions
1032//
1033
Evan Chengad877c82009-07-09 22:58:39 +00001034// FIXME: remove when we have a way to marking a MI with these properties.
1035// FIXME: $dst1 should be a def. But the extra ops must be in the end of the
1036// operand list.
1037// FIXME: Should pc be an implicit operand like PICADD, etc?
1038let isReturn = 1, isTerminator = 1, mayLoad = 1 in
1039 def t2LDM_RET : T2XI<(outs),
1040 (ins addrmode4:$addr, pred:$p, reglist:$dst1, variable_ops),
David Goodwincfd67652009-08-06 16:52:47 +00001041 IIC_iLoad, "ldm${addr:submode}${p} $addr, $dst1",
Evan Chengad877c82009-07-09 22:58:39 +00001042 []>;
1043
David Goodwinf6154702009-06-30 18:04:13 +00001044let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
1045let isPredicable = 1 in
David Goodwincfd67652009-08-06 16:52:47 +00001046def t2B : T2XI<(outs), (ins brtarget:$target), IIC_Br,
David Goodwin2f6f1132009-07-27 16:31:55 +00001047 "b.w $target",
David Goodwinf6154702009-06-30 18:04:13 +00001048 [(br bb:$target)]>;
1049
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001050let isNotDuplicable = 1, isIndirectBranch = 1 in {
Evan Cheng6e2ebc92009-07-25 00:33:29 +00001051def t2BR_JT :
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001052 T2JTI<(outs),
1053 (ins GPR:$target, GPR:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001054 IIC_Br, "mov pc, $target\n$jt",
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001055 [(ARMbr2jt GPR:$target, GPR:$index, tjumptable:$jt, imm:$id)]>;
1056
Evan Cheng04f40fa2009-08-01 06:13:52 +00001057// FIXME: Add a non-pc based case that can be predicated.
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001058def t2TBB :
Evan Cheng04f40fa2009-08-01 06:13:52 +00001059 T2JTI<(outs),
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001060 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001061 IIC_Br, "tbb $index\n$jt", []>;
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001062
1063def t2TBH :
Evan Cheng04f40fa2009-08-01 06:13:52 +00001064 T2JTI<(outs),
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001065 (ins tb_addrmode:$index, jt2block_operand:$jt, i32imm:$id),
David Goodwincfd67652009-08-06 16:52:47 +00001066 IIC_Br, "tbh $index\n$jt", []>;
Evan Cheng1b2b3e22009-07-29 02:18:14 +00001067} // isNotDuplicable, isIndirectBranch
1068
David Goodwin13d2f4e2009-06-30 19:50:22 +00001069} // isBranch, isTerminator, isBarrier
David Goodwinf6154702009-06-30 18:04:13 +00001070
1071// FIXME: should be able to write a pattern for ARMBrcond, but can't use
1072// a two-value operand where a dag node expects two operands. :(
1073let isBranch = 1, isTerminator = 1 in
David Goodwincfd67652009-08-06 16:52:47 +00001074def t2Bcc : T2I<(outs), (ins brtarget:$target), IIC_Br,
David Goodwin2f6f1132009-07-27 16:31:55 +00001075 "b", ".w $target",
David Goodwinf6154702009-06-30 18:04:13 +00001076 [/*(ARMbrcond bb:$target, imm:$cc)*/]>;
Evan Cheng36173712009-06-23 17:48:47 +00001077
Evan Chengd5b67fa2009-07-10 01:54:42 +00001078
1079// IT block
1080def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
David Goodwincfd67652009-08-06 16:52:47 +00001081 AddrModeNone, Size2Bytes, IIC_iALU,
Evan Chengd5b67fa2009-07-10 01:54:42 +00001082 "it$mask $cc", "", []>;
1083
Evan Cheng36173712009-06-23 17:48:47 +00001084//===----------------------------------------------------------------------===//
1085// Non-Instruction Patterns
1086//
1087
Evan Cheng41799702009-06-24 23:47:58 +00001088// ConstantPool, GlobalAddress, and JumpTable
Evan Cheng19bb7c72009-06-27 02:26:13 +00001089def : T2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>;
1090def : T2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
1091def : T2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
1092 (t2LEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Cheng41799702009-06-24 23:47:58 +00001093
Evan Cheng36173712009-06-23 17:48:47 +00001094// Large immediate handling.
1095
Evan Cheng19bb7c72009-06-27 02:26:13 +00001096def : T2Pat<(i32 imm:$src),
1097 (t2MOVTi16 (t2MOVi16 (t2_lo16 imm:$src)), (t2_hi16 imm:$src))>;