blob: 1dcea26bc535dc02d20bee63291eae655a673be6 [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===- ARMInstrThumb.td - Thumb support for ARM ---------------------------===//
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 describes the Thumb instruction set.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15// Thumb specific DAG Nodes.
16//
17
18def ARMtcall : SDNode<"ARMISD::tCALL", SDT_ARMcall,
19 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
20
Evan Chenga8e29892007-01-19 07:51:42 +000021def imm_neg_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000022 return CurDAG->getTargetConstant(-(int)N->getZExtValue(), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000023}]>;
24def imm_comp_XFORM : SDNodeXForm<imm, [{
Owen Anderson825b72b2009-08-11 20:47:22 +000025 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000026}]>;
27
28
29/// imm0_7 predicate - True if the 32-bit immediate is in the range [0,7].
30def imm0_7 : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000031 return (uint32_t)N->getZExtValue() < 8;
Evan Chenga8e29892007-01-19 07:51:42 +000032}]>;
33def imm0_7_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000034 return (uint32_t)-N->getZExtValue() < 8;
Evan Chenga8e29892007-01-19 07:51:42 +000035}], imm_neg_XFORM>;
36
37def imm0_255 : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000038 return (uint32_t)N->getZExtValue() < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000039}]>;
40def imm0_255_comp : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000041 return ~((uint32_t)N->getZExtValue()) < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000042}]>;
43
44def imm8_255 : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000045 return (uint32_t)N->getZExtValue() >= 8 && (uint32_t)N->getZExtValue() < 256;
Evan Chenga8e29892007-01-19 07:51:42 +000046}]>;
47def imm8_255_neg : PatLeaf<(i32 imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000048 unsigned Val = -N->getZExtValue();
Evan Chenga8e29892007-01-19 07:51:42 +000049 return Val >= 8 && Val < 256;
50}], imm_neg_XFORM>;
51
52// Break imm's up into two pieces: an immediate + a left shift.
53// This uses thumb_immshifted to match and thumb_immshifted_val and
54// thumb_immshifted_shamt to get the val/shift pieces.
55def thumb_immshifted : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000056 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue());
Evan Chenga8e29892007-01-19 07:51:42 +000057}]>;
58
59def thumb_immshifted_val : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000060 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000061 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000062}]>;
63
64def thumb_immshifted_shamt : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000065 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue());
Owen Anderson825b72b2009-08-11 20:47:22 +000066 return CurDAG->getTargetConstant(V, MVT::i32);
Evan Chenga8e29892007-01-19 07:51:42 +000067}]>;
68
Evan Cheng2ef9c8a2009-11-19 06:57:41 +000069// Scaled 4 immediate.
70def t_imm_s4 : Operand<i32> {
71 let PrintMethod = "printThumbS4ImmOperand";
72}
73
Evan Chenga8e29892007-01-19 07:51:42 +000074// Define Thumb specific addressing modes.
75
76// t_addrmode_rr := reg + reg
77//
78def t_addrmode_rr : Operand<i32>,
79 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
80 let PrintMethod = "printThumbAddrModeRROperand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +000081 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +000082}
83
Evan Chengc38f2bc2007-01-23 22:59:13 +000084// t_addrmode_s4 := reg + reg
85// reg + imm5 * 4
Evan Chenga8e29892007-01-19 07:51:42 +000086//
Evan Chengc38f2bc2007-01-23 22:59:13 +000087def t_addrmode_s4 : Operand<i32>,
88 ComplexPattern<i32, 3, "SelectThumbAddrModeS4", []> {
89 let PrintMethod = "printThumbAddrModeS4Operand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +000090 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +000091}
Evan Chengc38f2bc2007-01-23 22:59:13 +000092
93// t_addrmode_s2 := reg + reg
94// reg + imm5 * 2
95//
96def t_addrmode_s2 : Operand<i32>,
97 ComplexPattern<i32, 3, "SelectThumbAddrModeS2", []> {
98 let PrintMethod = "printThumbAddrModeS2Operand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +000099 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000100}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000101
102// t_addrmode_s1 := reg + reg
103// reg + imm5
104//
105def t_addrmode_s1 : Operand<i32>,
106 ComplexPattern<i32, 3, "SelectThumbAddrModeS1", []> {
107 let PrintMethod = "printThumbAddrModeS1Operand";
Jim Grosbach30eae3c2009-04-07 20:34:09 +0000108 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm, tGPR:$offsreg);
Evan Chenga8e29892007-01-19 07:51:42 +0000109}
110
111// t_addrmode_sp := sp + imm8 * 4
112//
113def t_addrmode_sp : Operand<i32>,
114 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
115 let PrintMethod = "printThumbAddrModeSPOperand";
Jakob Stoklund Olesenc5b7ef12010-01-13 00:43:06 +0000116 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000117}
118
119//===----------------------------------------------------------------------===//
120// Miscellaneous Instructions.
121//
122
Evan Cheng071a2792007-09-11 19:55:27 +0000123let Defs = [SP], Uses = [SP] in {
Evan Cheng44bec522007-05-15 01:29:07 +0000124def tADJCALLSTACKUP :
David Goodwin8b7d7ad2009-08-06 16:52:47 +0000125PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2), NoItinerary,
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000126 "@ tADJCALLSTACKUP $amt1",
David Goodwinf1daf7d2009-07-08 23:10:31 +0000127 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>, Requires<[IsThumb1Only]>;
Evan Cheng44bec522007-05-15 01:29:07 +0000128
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000129def tADJCALLSTACKDOWN :
David Goodwin8b7d7ad2009-08-06 16:52:47 +0000130PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
Evan Cheng44bec522007-05-15 01:29:07 +0000131 "@ tADJCALLSTACKDOWN $amt",
David Goodwinf1daf7d2009-07-08 23:10:31 +0000132 [(ARMcallseq_start imm:$amt)]>, Requires<[IsThumb1Only]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000133}
Evan Cheng44bec522007-05-15 01:29:07 +0000134
Evan Cheng35d6c412009-08-04 23:47:55 +0000135// For both thumb1 and thumb2.
Evan Chengeaa91b02007-06-19 01:26:51 +0000136let isNotDuplicable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000137def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000138 "\n$cp:\n\tadd\t$dst, pc",
Johnny Chend68e1192009-12-15 17:24:14 +0000139 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
140 T1Special<{0,0,?,?}> {
141 let Inst{6-3} = 0b1111; // A8.6.6 Rm = pc
142}
Evan Chenga8e29892007-01-19 07:51:42 +0000143
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000144// PC relative add.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000145def tADDrPCi : T1I<(outs tGPR:$dst), (ins t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000146 "add\t$dst, pc, $rhs", []>,
147 T1Encoding<{1,0,1,0,0,?}>; // A6.2 & A8.6.10
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000148
149// ADD rd, sp, #imm8
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000150def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000151 "add\t$dst, $sp, $rhs", []>,
152 T1Encoding<{1,0,1,0,1,?}>; // A6.2 & A8.6.8
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000153
154// ADD sp, sp, #imm7
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000155def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000156 "add\t$dst, $rhs", []>,
157 T1Misc<{0,0,0,0,0,?,?}>; // A6.2.5 & A8.6.8
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000158
Evan Cheng86198642009-08-07 00:34:42 +0000159// SUB sp, sp, #imm7
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000160def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000161 "sub\t$dst, $rhs", []>,
162 T1Misc<{0,0,0,0,1,?,?}>; // A6.2.5 & A8.6.215
Evan Cheng86198642009-08-07 00:34:42 +0000163
Evan Chengb89030a2009-08-11 23:00:31 +0000164// ADD rm, sp
David Goodwin5d598aa2009-08-19 18:00:44 +0000165def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000166 "add\t$dst, $rhs", []>,
167 T1Special<{0,0,?,?}> {
168 let Inst{6-3} = 0b1101; // A8.6.9 Encoding T1
169}
Evan Cheng86198642009-08-07 00:34:42 +0000170
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000171// ADD sp, rm
David Goodwin5d598aa2009-08-19 18:00:44 +0000172def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000173 "add\t$dst, $rhs", []>,
174 T1Special<{0,0,?,?}> {
175 // A8.6.9 Encoding T2
176 let Inst{7} = 1;
177 let Inst{2-0} = 0b101;
178}
Evan Cheng86198642009-08-07 00:34:42 +0000179
180// Pseudo instruction that will expand into a tSUBspi + a copy.
Dan Gohman533297b2009-10-29 18:10:34 +0000181let usesCustomInserter = 1 in { // Expanded after instruction selection.
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000182def tSUBspi_ : PseudoInst<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs),
183 NoItinerary, "@ sub\t$dst, $rhs", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000184
185def tADDspr_ : PseudoInst<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +0000186 NoItinerary, "@ add\t$dst, $rhs", []>;
Evan Cheng86198642009-08-07 00:34:42 +0000187
188let Defs = [CPSR] in
189def tANDsp : PseudoInst<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
Evan Cheng699beba2009-10-27 00:08:59 +0000190 NoItinerary, "@ and\t$dst, $rhs", []>;
Dan Gohman533297b2009-10-29 18:10:34 +0000191} // usesCustomInserter
Evan Cheng7dcf4a82009-06-25 01:05:06 +0000192
Evan Chenga8e29892007-01-19 07:51:42 +0000193//===----------------------------------------------------------------------===//
194// Control Flow Instructions.
195//
196
Jim Grosbachc732adf2009-09-30 01:35:11 +0000197let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
Johnny Chend68e1192009-12-15 17:24:14 +0000198 def tBX_RET : TI<(outs), (ins), IIC_Br, "bx\tlr", [(ARMretflag)]>,
199 T1Special<{1,1,0,?}> { // A6.2.3 & A8.6.25
200 let Inst{6-3} = 0b1110; // Rm = lr
201 }
Evan Cheng9d945f72007-02-01 01:49:46 +0000202 // Alternative return instruction used by vararg functions.
Johnny Chend68e1192009-12-15 17:24:14 +0000203 def tBX_RET_vararg : TI<(outs), (ins tGPR:$target), IIC_Br, "bx\t$target", []>,
204 T1Special<{1,1,0,?}>; // A6.2.3 & A8.6.25
Evan Cheng9d945f72007-02-01 01:49:46 +0000205}
Evan Chenga8e29892007-01-19 07:51:42 +0000206
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000207// Indirect branches
208let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Bob Wilsonaf14e662009-11-03 06:29:56 +0000209 def tBRIND : TI<(outs), (ins GPR:$dst), IIC_Br, "mov\tpc, $dst",
Johnny Chend68e1192009-12-15 17:24:14 +0000210 [(brind GPR:$dst)]>,
Johnny Cheneb231ce2010-01-18 20:15:56 +0000211 T1Special<{1,0,1,?}> {
Johnny Chen12360912010-01-13 21:00:26 +0000212 // <Rd> = Inst{7:2-0} = pc
Johnny Chend68e1192009-12-15 17:24:14 +0000213 let Inst{2-0} = 0b111;
214 }
Bob Wilson8d4de5a2009-10-28 18:26:41 +0000215}
216
Evan Chenga8e29892007-01-19 07:51:42 +0000217// FIXME: remove when we have a way to marking a MI with these properties.
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000218let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
219 hasExtraDefRegAllocReq = 1 in
Evan Chengd20d6582009-10-01 01:33:39 +0000220def tPOP_RET : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000221 "pop${p}\t$wb", []>,
222 T1Misc<{1,1,0,?,?,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000223
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000224let isCall = 1,
Evan Cheng756da122009-07-22 06:46:53 +0000225 Defs = [R0, R1, R2, R3, R12, LR,
226 D0, D1, D2, D3, D4, D5, D6, D7,
227 D16, D17, D18, D19, D20, D21, D22, D23,
David Goodwine8d82c02009-09-03 22:12:28 +0000228 D24, D25, D26, D27, D28, D29, D30, D31, CPSR, FPSCR] in {
Evan Chengb6207242009-08-01 00:16:10 +0000229 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000230 def tBL : TIx2<0b11110, 0b11, 1,
231 (outs), (ins i32imm:$func, variable_ops), IIC_Br,
232 "bl\t${func:call}",
233 [(ARMtcall tglobaladdr:$func)]>,
Evan Chengb6207242009-08-01 00:16:10 +0000234 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000235
Evan Chengb6207242009-08-01 00:16:10 +0000236 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000237 def tBLXi : TIx2<0b11110, 0b11, 0,
238 (outs), (ins i32imm:$func, variable_ops), IIC_Br,
239 "blx\t${func:call}",
240 [(ARMcall tglobaladdr:$func)]>,
Evan Chengb6207242009-08-01 00:16:10 +0000241 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000242
Evan Chengb6207242009-08-01 00:16:10 +0000243 // Also used for Thumb2
David Goodwin8b7d7ad2009-08-06 16:52:47 +0000244 def tBLXr : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000245 "blx\t$func",
Evan Chengb6207242009-08-01 00:16:10 +0000246 [(ARMtcall GPR:$func)]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000247 Requires<[IsThumb, HasV5T, IsNotDarwin]>,
248 T1Special<{1,1,1,?}>; // A6.2.3 & A8.6.24;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000249
Lauro Ramos Venanciob8a93a42007-03-27 16:19:21 +0000250 // ARMv4T
Johnny Chend68e1192009-12-15 17:24:14 +0000251 def tBX : TIx2<{?,?,?,?,?}, {?,?}, ?,
252 (outs), (ins tGPR:$func, variable_ops), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000253 "mov\tlr, pc\n\tbx\t$func",
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000254 [(ARMcall_nolink tGPR:$func)]>,
255 Requires<[IsThumb1Only, IsNotDarwin]>;
256}
257
258// On Darwin R9 is call-clobbered.
259let isCall = 1,
260 Defs = [R0, R1, R2, R3, R9, R12, LR,
261 D0, D1, D2, D3, D4, D5, D6, D7,
262 D16, D17, D18, D19, D20, D21, D22, D23,
David Goodwine8d82c02009-09-03 22:12:28 +0000263 D24, D25, D26, D27, D28, D29, D30, D31, CPSR, FPSCR] in {
Evan Chengb6207242009-08-01 00:16:10 +0000264 // Also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000265 def tBLr9 : TIx2<0b11110, 0b11, 1,
266 (outs), (ins i32imm:$func, variable_ops), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000267 "bl\t${func:call}",
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000268 [(ARMtcall tglobaladdr:$func)]>,
Evan Chengb6207242009-08-01 00:16:10 +0000269 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000270
Evan Chengb6207242009-08-01 00:16:10 +0000271 // ARMv5T and above, also used for Thumb2
Johnny Chend68e1192009-12-15 17:24:14 +0000272 def tBLXi_r9 : TIx2<0b11110, 0b11, 0,
273 (outs), (ins i32imm:$func, variable_ops), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000274 "blx\t${func:call}",
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000275 [(ARMcall tglobaladdr:$func)]>,
Evan Chengb6207242009-08-01 00:16:10 +0000276 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000277
Evan Chengb6207242009-08-01 00:16:10 +0000278 // Also used for Thumb2
David Goodwin8b7d7ad2009-08-06 16:52:47 +0000279 def tBLXr_r9 : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000280 "blx\t$func",
281 [(ARMtcall GPR:$func)]>,
282 Requires<[IsThumb, HasV5T, IsDarwin]>,
283 T1Special<{1,1,1,?}>; // A6.2.3 & A8.6.24
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000284
285 // ARMv4T
Johnny Chend68e1192009-12-15 17:24:14 +0000286 def tBXr9 : TIx2<{?,?,?,?,?}, {?,?}, ?,
287 (outs), (ins tGPR:$func, variable_ops), IIC_Br,
288 "mov\tlr, pc\n\tbx\t$func",
289 [(ARMcall_nolink tGPR:$func)]>,
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000290 Requires<[IsThumb1Only, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000291}
292
Evan Chengffbacca2007-07-21 00:34:19 +0000293let isBranch = 1, isTerminator = 1 in {
Evan Cheng3f8602c2007-05-16 21:53:43 +0000294 let isBarrier = 1 in {
295 let isPredicable = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +0000296 def tB : T1I<(outs), (ins brtarget:$target), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000297 "b\t$target", [(br bb:$target)]>,
298 T1Encoding<{1,1,1,0,0,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000299
Evan Cheng225dfe92007-01-30 01:13:37 +0000300 // Far jump
Evan Cheng53c67c02009-08-07 05:45:07 +0000301 let Defs = [LR] in
Johnny Chend68e1192009-12-15 17:24:14 +0000302 def tBfar : TIx2<0b11110, 0b11, 1, (outs), (ins brtarget:$target), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000303 "bl\t$target\t@ far jump",[]>;
Evan Cheng225dfe92007-01-30 01:13:37 +0000304
David Goodwin5e47a9a2009-06-30 18:04:13 +0000305 def tBR_JTr : T1JTI<(outs),
306 (ins tGPR:$target, jtblock_operand:$jt, i32imm:$id),
Evan Cheng699beba2009-10-27 00:08:59 +0000307 IIC_Br, "mov\tpc, $target\n\t.align\t2\n$jt",
Johnny Chenbbc71b22009-12-16 02:32:54 +0000308 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]>,
309 Encoding16 {
310 let Inst{15-7} = 0b010001101;
311 let Inst{2-0} = 0b111;
312 }
Evan Cheng3f8602c2007-05-16 21:53:43 +0000313 }
Evan Chengd85ac4d2007-01-27 02:29:45 +0000314}
315
Evan Chengc85e8322007-07-05 07:13:32 +0000316// FIXME: should be able to write a pattern for ARMBrcond, but can't use
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000317// a two-value operand where a dag node expects two operands. :(
Evan Chengffbacca2007-07-21 00:34:19 +0000318let isBranch = 1, isTerminator = 1 in
David Goodwin8b7d7ad2009-08-06 16:52:47 +0000319 def tBcc : T1I<(outs), (ins brtarget:$target, pred:$cc), IIC_Br,
Evan Cheng699beba2009-10-27 00:08:59 +0000320 "b$cc\t$target",
Johnny Chend68e1192009-12-15 17:24:14 +0000321 [/*(ARMbrcond bb:$target, imm:$cc)*/]>,
322 T1Encoding<{1,1,0,1,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000323
Evan Chengde17fb62009-10-31 23:46:45 +0000324// Compare and branch on zero / non-zero
325let isBranch = 1, isTerminator = 1 in {
326 def tCBZ : T1I<(outs), (ins tGPR:$cmp, brtarget:$target), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000327 "cbz\t$cmp, $target", []>,
328 T1Misc<{0,0,?,1,?,?,?}>;
Evan Chengde17fb62009-10-31 23:46:45 +0000329
330 def tCBNZ : T1I<(outs), (ins tGPR:$cmp, brtarget:$target), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000331 "cbnz\t$cmp, $target", []>,
332 T1Misc<{1,0,?,1,?,?,?}>;
Evan Chengde17fb62009-10-31 23:46:45 +0000333}
334
Evan Chenga8e29892007-01-19 07:51:42 +0000335//===----------------------------------------------------------------------===//
336// Load Store Instructions.
337//
338
Evan Cheng4aedb612009-11-20 19:57:15 +0000339let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000340def tLDR : T1pI4<(outs tGPR:$dst), (ins t_addrmode_s4:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000341 "ldr", "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000342 [(set tGPR:$dst, (load t_addrmode_s4:$addr))]>,
343 T1LdSt<0b100>;
Johnny Chen51bc5612010-01-14 22:42:17 +0000344def tLDRi: T1pI4<(outs tGPR:$dst), (ins t_addrmode_s4:$addr), IIC_iLoadr,
345 "ldr", "\t$dst, $addr",
346 []>,
347 T1LdSt4Imm<{1,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000348
David Goodwin5d598aa2009-08-19 18:00:44 +0000349def tLDRB : T1pI1<(outs tGPR:$dst), (ins t_addrmode_s1:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000350 "ldrb", "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000351 [(set tGPR:$dst, (zextloadi8 t_addrmode_s1:$addr))]>,
352 T1LdSt<0b110>;
Johnny Chen51bc5612010-01-14 22:42:17 +0000353def tLDRBi: T1pI1<(outs tGPR:$dst), (ins t_addrmode_s1:$addr), IIC_iLoadr,
354 "ldrb", "\t$dst, $addr",
355 []>,
356 T1LdSt1Imm<{1,?,?}>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000357
David Goodwin5d598aa2009-08-19 18:00:44 +0000358def tLDRH : T1pI2<(outs tGPR:$dst), (ins t_addrmode_s2:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000359 "ldrh", "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000360 [(set tGPR:$dst, (zextloadi16 t_addrmode_s2:$addr))]>,
361 T1LdSt<0b101>;
Johnny Chen51bc5612010-01-14 22:42:17 +0000362def tLDRHi: T1pI2<(outs tGPR:$dst), (ins t_addrmode_s2:$addr), IIC_iLoadr,
363 "ldrh", "\t$dst, $addr",
364 []>,
365 T1LdSt2Imm<{1,?,?}>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000366
Evan Cheng2f297df2009-07-11 07:08:13 +0000367let AddedComplexity = 10 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000368def tLDRSB : T1pI1<(outs tGPR:$dst), (ins t_addrmode_rr:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000369 "ldrsb", "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000370 [(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>,
371 T1LdSt<0b011>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000372
Evan Cheng2f297df2009-07-11 07:08:13 +0000373let AddedComplexity = 10 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000374def tLDRSH : T1pI2<(outs tGPR:$dst), (ins t_addrmode_rr:$addr), IIC_iLoadr,
Evan Cheng699beba2009-10-27 00:08:59 +0000375 "ldrsh", "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000376 [(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>,
377 T1LdSt<0b111>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000378
Dan Gohman15511cf2008-12-03 18:15:48 +0000379let canFoldAsLoad = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000380def tLDRspi : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
Evan Cheng699beba2009-10-27 00:08:59 +0000381 "ldr", "\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000382 [(set tGPR:$dst, (load t_addrmode_sp:$addr))]>,
383 T1LdStSP<{1,?,?}>;
Evan Cheng012f2d92007-01-24 08:53:17 +0000384
Evan Cheng8e59ea92007-02-07 00:06:56 +0000385// Special instruction for restore. It cannot clobber condition register
386// when it's expanded by eliminateCallFramePseudoInstr().
Dan Gohman15511cf2008-12-03 18:15:48 +0000387let canFoldAsLoad = 1, mayLoad = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000388def tRestore : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
Johnny Chend68e1192009-12-15 17:24:14 +0000389 "ldr", "\t$dst, $addr", []>,
390 T1LdStSP<{1,?,?}>;
Evan Cheng8e59ea92007-02-07 00:06:56 +0000391
Evan Cheng012f2d92007-01-24 08:53:17 +0000392// Load tconstpool
Evan Cheng7883fa92009-11-04 00:00:39 +0000393// FIXME: Use ldr.n to work around a Darwin assembler bug.
Evan Cheng4aedb612009-11-20 19:57:15 +0000394let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000395def tLDRpci : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Evan Chengb9f51cb2009-11-04 07:38:48 +0000396 "ldr", ".n\t$dst, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000397 [(set tGPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>,
398 T1Encoding<{0,1,0,0,1,?}>; // A6.2 & A8.6.59
Evan Chengfa775d02007-03-19 07:20:03 +0000399
400// Special LDR for loads from non-pc-relative constpools.
Evan Cheng4aedb612009-11-20 19:57:15 +0000401let canFoldAsLoad = 1, mayLoad = 1, isReMaterializable = 1,
402 mayHaveSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000403def tLDRcp : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
Johnny Chend68e1192009-12-15 17:24:14 +0000404 "ldr", "\t$dst, $addr", []>,
405 T1LdStSP<{1,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000406
David Goodwin5d598aa2009-08-19 18:00:44 +0000407def tSTR : T1pI4<(outs), (ins tGPR:$src, t_addrmode_s4:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000408 "str", "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000409 [(store tGPR:$src, t_addrmode_s4:$addr)]>,
410 T1LdSt<0b000>;
Johnny Chen51bc5612010-01-14 22:42:17 +0000411def tSTRi: T1pI4<(outs), (ins tGPR:$src, t_addrmode_s4:$addr), IIC_iStorer,
412 "str", "\t$src, $addr",
413 []>,
414 T1LdSt4Imm<{0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000415
David Goodwin5d598aa2009-08-19 18:00:44 +0000416def tSTRB : T1pI1<(outs), (ins tGPR:$src, t_addrmode_s1:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000417 "strb", "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000418 [(truncstorei8 tGPR:$src, t_addrmode_s1:$addr)]>,
419 T1LdSt<0b010>;
Johnny Chen51bc5612010-01-14 22:42:17 +0000420def tSTRBi: T1pI1<(outs), (ins tGPR:$src, t_addrmode_s1:$addr), IIC_iStorer,
421 "strb", "\t$src, $addr",
422 []>,
423 T1LdSt1Imm<{0,?,?}>;
Evan Chengc38f2bc2007-01-23 22:59:13 +0000424
David Goodwin5d598aa2009-08-19 18:00:44 +0000425def tSTRH : T1pI2<(outs), (ins tGPR:$src, t_addrmode_s2:$addr), IIC_iStorer,
Evan Cheng699beba2009-10-27 00:08:59 +0000426 "strh", "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000427 [(truncstorei16 tGPR:$src, t_addrmode_s2:$addr)]>,
428 T1LdSt<0b001>;
Johnny Chen51bc5612010-01-14 22:42:17 +0000429def tSTRHi: T1pI2<(outs), (ins tGPR:$src, t_addrmode_s2:$addr), IIC_iStorer,
430 "strh", "\t$src, $addr",
431 []>,
432 T1LdSt2Imm<{0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000433
David Goodwin5d598aa2009-08-19 18:00:44 +0000434def tSTRspi : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStorei,
Evan Cheng699beba2009-10-27 00:08:59 +0000435 "str", "\t$src, $addr",
Johnny Chend68e1192009-12-15 17:24:14 +0000436 [(store tGPR:$src, t_addrmode_sp:$addr)]>,
437 T1LdStSP<{0,?,?}>;
Evan Cheng8e59ea92007-02-07 00:06:56 +0000438
Chris Lattner2e48a702008-01-06 08:36:04 +0000439let mayStore = 1 in {
Evan Cheng8e59ea92007-02-07 00:06:56 +0000440// Special instruction for spill. It cannot clobber condition register
441// when it's expanded by eliminateCallFramePseudoInstr().
David Goodwin5d598aa2009-08-19 18:00:44 +0000442def tSpill : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStorei,
Johnny Chend68e1192009-12-15 17:24:14 +0000443 "str", "\t$src, $addr", []>,
444 T1LdStSP<{0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000445}
446
447//===----------------------------------------------------------------------===//
448// Load / store multiple Instructions.
449//
450
Evan Cheng4b322e52009-08-11 21:11:32 +0000451// These requires base address to be written back or one of the loaded regs.
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000452let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
Evan Cheng4b322e52009-08-11 21:11:32 +0000453def tLDM : T1I<(outs),
Evan Chengd20d6582009-10-01 01:33:39 +0000454 (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
David Goodwin5d598aa2009-08-19 18:00:44 +0000455 IIC_iLoadm,
Johnny Chend68e1192009-12-15 17:24:14 +0000456 "ldm${addr:submode}${p}\t$addr, $wb", []>,
457 T1Encoding<{1,1,0,0,1,?}>; // A6.2 & A8.6.53
Evan Chenga8e29892007-01-19 07:51:42 +0000458
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000459let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
Evan Cheng4b322e52009-08-11 21:11:32 +0000460def tSTM : T1I<(outs),
Evan Chengd20d6582009-10-01 01:33:39 +0000461 (ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
David Goodwin5d598aa2009-08-19 18:00:44 +0000462 IIC_iStorem,
Johnny Chend68e1192009-12-15 17:24:14 +0000463 "stm${addr:submode}${p}\t$addr, $wb", []>,
464 T1Encoding<{1,1,0,0,0,?}>; // A6.2 & A8.6.189
Evan Cheng4b322e52009-08-11 21:11:32 +0000465
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000466let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
Evan Chengd20d6582009-10-01 01:33:39 +0000467def tPOP : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000468 "pop${p}\t$wb", []>,
469 T1Misc<{1,1,0,?,?,?,?}>;
Evan Cheng4b322e52009-08-11 21:11:32 +0000470
Evan Cheng0d92f5f2009-10-01 08:22:27 +0000471let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
Evan Chengd20d6582009-10-01 01:33:39 +0000472def tPUSH : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
Johnny Chend68e1192009-12-15 17:24:14 +0000473 "push${p}\t$wb", []>,
474 T1Misc<{0,1,0,?,?,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000475
476//===----------------------------------------------------------------------===//
477// Arithmetic Instructions.
478//
479
David Goodwinc9ee1182009-06-25 22:49:55 +0000480// Add with carry register
Evan Cheng446c4282009-07-11 06:43:01 +0000481let isCommutable = 1, Uses = [CPSR] in
David Goodwin5d598aa2009-08-19 18:00:44 +0000482def tADC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000483 "adc", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000484 [(set tGPR:$dst, (adde tGPR:$lhs, tGPR:$rhs))]>,
485 T1DataProcessing<0b0101>;
Evan Cheng53d7dba2007-01-27 00:07:15 +0000486
David Goodwinc9ee1182009-06-25 22:49:55 +0000487// Add immediate
David Goodwin5d598aa2009-08-19 18:00:44 +0000488def tADDi3 : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000489 "add", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000490 [(set tGPR:$dst, (add tGPR:$lhs, imm0_7:$rhs))]>,
491 T1General<0b01110>;
Evan Chenga8e29892007-01-19 07:51:42 +0000492
David Goodwin5d598aa2009-08-19 18:00:44 +0000493def tADDi8 : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000494 "add", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000495 [(set tGPR:$dst, (add tGPR:$lhs, imm8_255:$rhs))]>,
496 T1General<{1,1,0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000497
David Goodwinc9ee1182009-06-25 22:49:55 +0000498// Add register
Evan Cheng446c4282009-07-11 06:43:01 +0000499let isCommutable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000500def tADDrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000501 "add", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000502 [(set tGPR:$dst, (add tGPR:$lhs, tGPR:$rhs))]>,
503 T1General<0b01100>;
Evan Chenga8e29892007-01-19 07:51:42 +0000504
Evan Chengcd799b92009-06-12 20:46:18 +0000505let neverHasSideEffects = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000506def tADDhirr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
Johnny Chend68e1192009-12-15 17:24:14 +0000507 "add", "\t$dst, $rhs", []>,
508 T1Special<{0,0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000509
David Goodwinc9ee1182009-06-25 22:49:55 +0000510// And register
Evan Cheng446c4282009-07-11 06:43:01 +0000511let isCommutable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000512def tAND : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000513 "and", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000514 [(set tGPR:$dst, (and tGPR:$lhs, tGPR:$rhs))]>,
515 T1DataProcessing<0b0000>;
Evan Chenga8e29892007-01-19 07:51:42 +0000516
David Goodwinc9ee1182009-06-25 22:49:55 +0000517// ASR immediate
David Goodwin5d598aa2009-08-19 18:00:44 +0000518def tASRri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000519 "asr", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000520 [(set tGPR:$dst, (sra tGPR:$lhs, (i32 imm:$rhs)))]>,
521 T1General<{0,1,0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000522
David Goodwinc9ee1182009-06-25 22:49:55 +0000523// ASR register
David Goodwin5d598aa2009-08-19 18:00:44 +0000524def tASRrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000525 "asr", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000526 [(set tGPR:$dst, (sra tGPR:$lhs, tGPR:$rhs))]>,
527 T1DataProcessing<0b0100>;
Evan Chenga8e29892007-01-19 07:51:42 +0000528
David Goodwinc9ee1182009-06-25 22:49:55 +0000529// BIC register
David Goodwin5d598aa2009-08-19 18:00:44 +0000530def tBIC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000531 "bic", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000532 [(set tGPR:$dst, (and tGPR:$lhs, (not tGPR:$rhs)))]>,
533 T1DataProcessing<0b1110>;
Evan Chenga8e29892007-01-19 07:51:42 +0000534
David Goodwinc9ee1182009-06-25 22:49:55 +0000535// CMN register
536let Defs = [CPSR] in {
Jim Grosbachd5d2bae2010-01-22 00:08:13 +0000537//FIXME: Disable CMN, as CCodes are backwards from compare expectations
538// Compare-to-zero still works out, just not the relationals
539//def tCMN : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
540// "cmn", "\t$lhs, $rhs",
541// [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>,
542// T1DataProcessing<0b1011>;
Johnny Chencaedfbc2009-12-16 23:36:52 +0000543def tCMNz : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000544 "cmn", "\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000545 [(ARMcmpZ tGPR:$lhs, (ineg tGPR:$rhs))]>,
546 T1DataProcessing<0b1011>;
David Goodwinc9ee1182009-06-25 22:49:55 +0000547}
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000548
David Goodwinc9ee1182009-06-25 22:49:55 +0000549// CMP immediate
550let Defs = [CPSR] in {
David Goodwin5d598aa2009-08-19 18:00:44 +0000551def tCMPi8 : T1pI<(outs), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000552 "cmp", "\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000553 [(ARMcmp tGPR:$lhs, imm0_255:$rhs)]>,
554 T1General<{1,0,1,?,?}>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000555def tCMPzi8 : T1pI<(outs), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMPi,
Evan Cheng699beba2009-10-27 00:08:59 +0000556 "cmp", "\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000557 [(ARMcmpZ tGPR:$lhs, imm0_255:$rhs)]>,
558 T1General<{1,0,1,?,?}>;
David Goodwinc9ee1182009-06-25 22:49:55 +0000559}
560
561// CMP register
562let Defs = [CPSR] in {
David Goodwin5d598aa2009-08-19 18:00:44 +0000563def tCMPr : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000564 "cmp", "\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000565 [(ARMcmp tGPR:$lhs, tGPR:$rhs)]>,
566 T1DataProcessing<0b1010>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000567def tCMPzr : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000568 "cmp", "\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000569 [(ARMcmpZ tGPR:$lhs, tGPR:$rhs)]>,
570 T1DataProcessing<0b1010>;
Evan Cheng446c4282009-07-11 06:43:01 +0000571
David Goodwin5d598aa2009-08-19 18:00:44 +0000572def tCMPhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
Johnny Chend68e1192009-12-15 17:24:14 +0000573 "cmp", "\t$lhs, $rhs", []>,
574 T1Special<{0,1,?,?}>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000575def tCMPzhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
Johnny Chend68e1192009-12-15 17:24:14 +0000576 "cmp", "\t$lhs, $rhs", []>,
577 T1Special<{0,1,?,?}>;
David Goodwinc9ee1182009-06-25 22:49:55 +0000578}
Lauro Ramos Venancio99966632007-04-02 01:30:03 +0000579
Evan Chenga8e29892007-01-19 07:51:42 +0000580
David Goodwinc9ee1182009-06-25 22:49:55 +0000581// XOR register
Evan Cheng446c4282009-07-11 06:43:01 +0000582let isCommutable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000583def tEOR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000584 "eor", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000585 [(set tGPR:$dst, (xor tGPR:$lhs, tGPR:$rhs))]>,
586 T1DataProcessing<0b0001>;
Evan Chenga8e29892007-01-19 07:51:42 +0000587
David Goodwinc9ee1182009-06-25 22:49:55 +0000588// LSL immediate
David Goodwin5d598aa2009-08-19 18:00:44 +0000589def tLSLri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000590 "lsl", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000591 [(set tGPR:$dst, (shl tGPR:$lhs, (i32 imm:$rhs)))]>,
592 T1General<{0,0,0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000593
David Goodwinc9ee1182009-06-25 22:49:55 +0000594// LSL register
David Goodwin5d598aa2009-08-19 18:00:44 +0000595def tLSLrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000596 "lsl", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000597 [(set tGPR:$dst, (shl tGPR:$lhs, tGPR:$rhs))]>,
598 T1DataProcessing<0b0010>;
Evan Chenga8e29892007-01-19 07:51:42 +0000599
David Goodwinc9ee1182009-06-25 22:49:55 +0000600// LSR immediate
David Goodwin5d598aa2009-08-19 18:00:44 +0000601def tLSRri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
Evan Cheng699beba2009-10-27 00:08:59 +0000602 "lsr", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000603 [(set tGPR:$dst, (srl tGPR:$lhs, (i32 imm:$rhs)))]>,
604 T1General<{0,0,1,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000605
David Goodwinc9ee1182009-06-25 22:49:55 +0000606// LSR register
David Goodwin5d598aa2009-08-19 18:00:44 +0000607def tLSRrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000608 "lsr", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000609 [(set tGPR:$dst, (srl tGPR:$lhs, tGPR:$rhs))]>,
610 T1DataProcessing<0b0011>;
Evan Chenga8e29892007-01-19 07:51:42 +0000611
David Goodwinc9ee1182009-06-25 22:49:55 +0000612// move register
David Goodwin5d598aa2009-08-19 18:00:44 +0000613def tMOVi8 : T1sI<(outs tGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
Evan Cheng699beba2009-10-27 00:08:59 +0000614 "mov", "\t$dst, $src",
Johnny Chend68e1192009-12-15 17:24:14 +0000615 [(set tGPR:$dst, imm0_255:$src)]>,
616 T1General<{1,0,0,?,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000617
618// TODO: A7-73: MOV(2) - mov setting flag.
619
620
Evan Chengcd799b92009-06-12 20:46:18 +0000621let neverHasSideEffects = 1 in {
Evan Cheng446c4282009-07-11 06:43:01 +0000622// FIXME: Make this predicable.
David Goodwin5d598aa2009-08-19 18:00:44 +0000623def tMOVr : T1I<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +0000624 "mov\t$dst, $src", []>,
625 T1Special<0b1000>;
Evan Cheng446c4282009-07-11 06:43:01 +0000626let Defs = [CPSR] in
David Goodwin5d598aa2009-08-19 18:00:44 +0000627def tMOVSr : T1I<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
Johnny Chenbbc71b22009-12-16 02:32:54 +0000628 "movs\t$dst, $src", []>, Encoding16 {
Johnny Chend68e1192009-12-15 17:24:14 +0000629 let Inst{15-6} = 0b0000000000;
630}
Evan Cheng446c4282009-07-11 06:43:01 +0000631
632// FIXME: Make these predicable.
David Goodwin5d598aa2009-08-19 18:00:44 +0000633def tMOVgpr2tgpr : T1I<(outs tGPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +0000634 "mov\t$dst, $src", []>,
Johnny Cheneb231ce2010-01-18 20:15:56 +0000635 T1Special<{1,0,0,?}>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000636def tMOVtgpr2gpr : T1I<(outs GPR:$dst), (ins tGPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +0000637 "mov\t$dst, $src", []>,
Johnny Cheneb231ce2010-01-18 20:15:56 +0000638 T1Special<{1,0,?,0}>;
David Goodwin5d598aa2009-08-19 18:00:44 +0000639def tMOVgpr2gpr : T1I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +0000640 "mov\t$dst, $src", []>,
Johnny Cheneb231ce2010-01-18 20:15:56 +0000641 T1Special<{1,0,?,?}>;
Evan Chengcd799b92009-06-12 20:46:18 +0000642} // neverHasSideEffects
Evan Chenga8e29892007-01-19 07:51:42 +0000643
David Goodwinc9ee1182009-06-25 22:49:55 +0000644// multiply register
Evan Cheng446c4282009-07-11 06:43:01 +0000645let isCommutable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000646def tMUL : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMUL32,
Evan Cheng699beba2009-10-27 00:08:59 +0000647 "mul", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000648 [(set tGPR:$dst, (mul tGPR:$lhs, tGPR:$rhs))]>,
649 T1DataProcessing<0b1101>;
Evan Chenga8e29892007-01-19 07:51:42 +0000650
David Goodwinc9ee1182009-06-25 22:49:55 +0000651// move inverse register
David Goodwin5d598aa2009-08-19 18:00:44 +0000652def tMVN : T1sI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
Evan Cheng699beba2009-10-27 00:08:59 +0000653 "mvn", "\t$dst, $src",
Johnny Chend68e1192009-12-15 17:24:14 +0000654 [(set tGPR:$dst, (not tGPR:$src))]>,
655 T1DataProcessing<0b1111>;
Evan Chenga8e29892007-01-19 07:51:42 +0000656
David Goodwinc9ee1182009-06-25 22:49:55 +0000657// bitwise or register
Evan Cheng446c4282009-07-11 06:43:01 +0000658let isCommutable = 1 in
David Goodwin5d598aa2009-08-19 18:00:44 +0000659def tORR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000660 "orr", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000661 [(set tGPR:$dst, (or tGPR:$lhs, tGPR:$rhs))]>,
662 T1DataProcessing<0b1100>;
Evan Chenga8e29892007-01-19 07:51:42 +0000663
David Goodwinc9ee1182009-06-25 22:49:55 +0000664// swaps
David Goodwin5d598aa2009-08-19 18:00:44 +0000665def tREV : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000666 "rev", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000667 [(set tGPR:$dst, (bswap tGPR:$src))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000668 Requires<[IsThumb1Only, HasV6]>,
669 T1Misc<{1,0,1,0,0,0,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000670
David Goodwin5d598aa2009-08-19 18:00:44 +0000671def tREV16 : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000672 "rev16", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000673 [(set tGPR:$dst,
674 (or (and (srl tGPR:$src, (i32 8)), 0xFF),
675 (or (and (shl tGPR:$src, (i32 8)), 0xFF00),
676 (or (and (srl tGPR:$src, (i32 8)), 0xFF0000),
677 (and (shl tGPR:$src, (i32 8)), 0xFF000000)))))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000678 Requires<[IsThumb1Only, HasV6]>,
679 T1Misc<{1,0,1,0,0,1,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000680
David Goodwin5d598aa2009-08-19 18:00:44 +0000681def tREVSH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000682 "revsh", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000683 [(set tGPR:$dst,
684 (sext_inreg
Evan Cheng51f39962009-08-18 05:43:23 +0000685 (or (srl (and tGPR:$src, 0xFF00), (i32 8)),
Evan Cheng446c4282009-07-11 06:43:01 +0000686 (shl tGPR:$src, (i32 8))), i16))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000687 Requires<[IsThumb1Only, HasV6]>,
688 T1Misc<{1,0,1,0,1,1,?}>;
Evan Cheng446c4282009-07-11 06:43:01 +0000689
David Goodwinc9ee1182009-06-25 22:49:55 +0000690// rotate right register
David Goodwin5d598aa2009-08-19 18:00:44 +0000691def tROR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
Evan Cheng699beba2009-10-27 00:08:59 +0000692 "ror", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000693 [(set tGPR:$dst, (rotr tGPR:$lhs, tGPR:$rhs))]>,
694 T1DataProcessing<0b0111>;
Evan Cheng446c4282009-07-11 06:43:01 +0000695
696// negate register
David Goodwin5d598aa2009-08-19 18:00:44 +0000697def tRSB : T1sI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000698 "rsb", "\t$dst, $src, #0",
Johnny Chend68e1192009-12-15 17:24:14 +0000699 [(set tGPR:$dst, (ineg tGPR:$src))]>,
700 T1DataProcessing<0b1001>;
Evan Chenga8e29892007-01-19 07:51:42 +0000701
David Goodwinc9ee1182009-06-25 22:49:55 +0000702// Subtract with carry register
Evan Cheng446c4282009-07-11 06:43:01 +0000703let Uses = [CPSR] in
David Goodwin5d598aa2009-08-19 18:00:44 +0000704def tSBC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000705 "sbc", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000706 [(set tGPR:$dst, (sube tGPR:$lhs, tGPR:$rhs))]>,
707 T1DataProcessing<0b0110>;
Evan Chenga8e29892007-01-19 07:51:42 +0000708
David Goodwinc9ee1182009-06-25 22:49:55 +0000709// Subtract immediate
David Goodwin5d598aa2009-08-19 18:00:44 +0000710def tSUBi3 : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000711 "sub", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000712 [(set tGPR:$dst, (add tGPR:$lhs, imm0_7_neg:$rhs))]>,
713 T1General<0b01111>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000714
David Goodwin5d598aa2009-08-19 18:00:44 +0000715def tSUBi8 : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
Evan Cheng699beba2009-10-27 00:08:59 +0000716 "sub", "\t$dst, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000717 [(set tGPR:$dst, (add tGPR:$lhs, imm8_255_neg:$rhs))]>,
718 T1General<{1,1,1,?,?}>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000719
David Goodwinc9ee1182009-06-25 22:49:55 +0000720// subtract register
David Goodwin5d598aa2009-08-19 18:00:44 +0000721def tSUBrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
Evan Cheng699beba2009-10-27 00:08:59 +0000722 "sub", "\t$dst, $lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000723 [(set tGPR:$dst, (sub tGPR:$lhs, tGPR:$rhs))]>,
724 T1General<0b01101>;
David Goodwinc9ee1182009-06-25 22:49:55 +0000725
726// TODO: A7-96: STMIA - store multiple.
Evan Chenga8e29892007-01-19 07:51:42 +0000727
David Goodwinc9ee1182009-06-25 22:49:55 +0000728// sign-extend byte
David Goodwin5d598aa2009-08-19 18:00:44 +0000729def tSXTB : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000730 "sxtb", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000731 [(set tGPR:$dst, (sext_inreg tGPR:$src, i8))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000732 Requires<[IsThumb1Only, HasV6]>,
733 T1Misc<{0,0,1,0,0,1,?}>;
David Goodwinc9ee1182009-06-25 22:49:55 +0000734
735// sign-extend short
David Goodwin5d598aa2009-08-19 18:00:44 +0000736def tSXTH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000737 "sxth", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000738 [(set tGPR:$dst, (sext_inreg tGPR:$src, i16))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000739 Requires<[IsThumb1Only, HasV6]>,
740 T1Misc<{0,0,1,0,0,0,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000741
David Goodwinc9ee1182009-06-25 22:49:55 +0000742// test
Evan Chenge864b742009-06-26 00:19:07 +0000743let isCommutable = 1, Defs = [CPSR] in
David Goodwin5d598aa2009-08-19 18:00:44 +0000744def tTST : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
Evan Cheng699beba2009-10-27 00:08:59 +0000745 "tst", "\t$lhs, $rhs",
Johnny Chend68e1192009-12-15 17:24:14 +0000746 [(ARMcmpZ (and tGPR:$lhs, tGPR:$rhs), 0)]>,
747 T1DataProcessing<0b1000>;
Evan Chenga8e29892007-01-19 07:51:42 +0000748
David Goodwinc9ee1182009-06-25 22:49:55 +0000749// zero-extend byte
David Goodwin5d598aa2009-08-19 18:00:44 +0000750def tUXTB : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000751 "uxtb", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000752 [(set tGPR:$dst, (and tGPR:$src, 0xFF))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000753 Requires<[IsThumb1Only, HasV6]>,
754 T1Misc<{0,0,1,0,1,1,?}>;
David Goodwinc9ee1182009-06-25 22:49:55 +0000755
756// zero-extend short
David Goodwin5d598aa2009-08-19 18:00:44 +0000757def tUXTH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
Evan Cheng699beba2009-10-27 00:08:59 +0000758 "uxth", "\t$dst, $src",
Evan Cheng446c4282009-07-11 06:43:01 +0000759 [(set tGPR:$dst, (and tGPR:$src, 0xFFFF))]>,
Johnny Chend68e1192009-12-15 17:24:14 +0000760 Requires<[IsThumb1Only, HasV6]>,
761 T1Misc<{0,0,1,0,1,0,?}>;
Evan Chenga8e29892007-01-19 07:51:42 +0000762
763
764// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation.
Dan Gohman533297b2009-10-29 18:10:34 +0000765// Expanded after instruction selection into a branch sequence.
766let usesCustomInserter = 1 in // Expanded after instruction selection.
Evan Cheng007ea272009-08-12 05:17:19 +0000767 def tMOVCCr_pseudo :
Evan Chengc9721652009-08-12 02:03:03 +0000768 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
769 NoItinerary, "@ tMOVCCr $cc",
770 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000771
Evan Cheng007ea272009-08-12 05:17:19 +0000772
773// 16-bit movcc in IT blocks for Thumb2.
David Goodwin5d598aa2009-08-19 18:00:44 +0000774def tMOVCCr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iCMOVr,
Johnny Chend68e1192009-12-15 17:24:14 +0000775 "mov", "\t$dst, $rhs", []>,
Johnny Cheneb231ce2010-01-18 20:15:56 +0000776 T1Special<{1,0,?,?}>;
Evan Cheng007ea272009-08-12 05:17:19 +0000777
Jim Grosbach41527782010-02-09 19:51:37 +0000778def tMOVCCi : T1pIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMOVi,
Johnny Chend68e1192009-12-15 17:24:14 +0000779 "mov", "\t$dst, $rhs", []>,
780 T1General<{1,0,0,?,?}>;
Evan Cheng007ea272009-08-12 05:17:19 +0000781
Evan Chenga8e29892007-01-19 07:51:42 +0000782// tLEApcrel - Load a pc-relative address into a register without offending the
783// assembler.
David Goodwin5d598aa2009-08-19 18:00:44 +0000784def tLEApcrel : T1I<(outs tGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
Johnny Chend68e1192009-12-15 17:24:14 +0000785 "adr$p\t$dst, #$label", []>,
786 T1Encoding<{1,0,1,0,0,?}>; // A6.2 & A8.6.10
Evan Chenga8e29892007-01-19 07:51:42 +0000787
Evan Chenga1efbbd2009-08-14 00:32:16 +0000788def tLEApcrelJT : T1I<(outs tGPR:$dst),
Bob Wilson4f38b382009-08-21 21:58:55 +0000789 (ins i32imm:$label, nohash_imm:$id, pred:$p),
Johnny Chend68e1192009-12-15 17:24:14 +0000790 IIC_iALUi, "adr$p\t$dst, #${label}_${id}", []>,
791 T1Encoding<{1,0,1,0,0,?}>; // A6.2 & A8.6.10
Evan Chengd85ac4d2007-01-27 02:29:45 +0000792
Evan Chenga8e29892007-01-19 07:51:42 +0000793//===----------------------------------------------------------------------===//
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000794// TLS Instructions
795//
796
797// __aeabi_read_tp preserves the registers r1-r3.
798let isCall = 1,
799 Defs = [R0, LR] in {
Johnny Chend68e1192009-12-15 17:24:14 +0000800 def tTPsoft : TIx2<0b11110, 0b11, 1, (outs), (ins), IIC_Br,
801 "bl\t__aeabi_read_tp",
802 [(set R0, ARMthread_pointer)]>;
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000803}
804
Jim Grosbachd1228742009-12-01 18:10:36 +0000805// SJLJ Exception handling intrinsics
806// eh_sjlj_setjmp() is an instruction sequence to store the return
807// address and save #0 in R0 for the non-longjmp case.
808// Since by its nature we may be coming from some other function to get
809// here, and we're using the stack frame for the containing function to
810// save/restore registers, we can't keep anything live in regs across
811// the eh_sjlj_setjmp(), else it will almost certainly have been tromped upon
812// when we get here from a longjmp(). We force everthing out of registers
813// except for our own input by listing the relevant registers in Defs. By
814// doing so, we also cause the prologue/epilogue code to actively preserve
815// all of the callee-saved resgisters, which is exactly what we want.
Jim Grosbacha87ded22010-02-08 23:22:00 +0000816// The current SP is passed in $val, and we reuse the reg as a scratch.
Jim Grosbachd1228742009-12-01 18:10:36 +0000817let Defs =
818 [ R0, R1, R2, R3, R4, R5, R6, R7, R12 ] in {
Jim Grosbacha87ded22010-02-08 23:22:00 +0000819 def tInt_eh_sjlj_setjmp : ThumbXI<(outs),(ins tGPR:$src, tGPR:$val),
Jim Grosbachd1228742009-12-01 18:10:36 +0000820 AddrModeNone, SizeSpecial, NoItinerary,
Jim Grosbacha87ded22010-02-08 23:22:00 +0000821 "str\t$val, [$src, #8]\t@ begin eh.setjmp\n"
822 "\tmov\t$val, pc\n"
823 "\tadds\t$val, #9\n"
824 "\tstr\t$val, [$src, #4]\n"
Jim Grosbachd1228742009-12-01 18:10:36 +0000825 "\tmovs\tr0, #0\n"
826 "\tb\t1f\n"
Jim Grosbachc90a1532010-01-27 00:07:20 +0000827 "\tmovs\tr0, #1\t@ end eh.setjmp\n"
Jim Grosbachd1228742009-12-01 18:10:36 +0000828 "1:", "",
Jim Grosbacha87ded22010-02-08 23:22:00 +0000829 [(set R0, (ARMeh_sjlj_setjmp tGPR:$src, tGPR:$val))]>;
Jim Grosbachd1228742009-12-01 18:10:36 +0000830}
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000831//===----------------------------------------------------------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +0000832// Non-Instruction Patterns
833//
834
Evan Cheng892837a2009-07-10 02:09:04 +0000835// Add with carry
David Goodwinc9d138f2009-07-27 19:59:26 +0000836def : T1Pat<(addc tGPR:$lhs, imm0_7:$rhs),
837 (tADDi3 tGPR:$lhs, imm0_7:$rhs)>;
838def : T1Pat<(addc tGPR:$lhs, imm8_255:$rhs),
Evan Cheng89d177f2009-08-20 17:01:04 +0000839 (tADDi8 tGPR:$lhs, imm8_255:$rhs)>;
David Goodwinc9d138f2009-07-27 19:59:26 +0000840def : T1Pat<(addc tGPR:$lhs, tGPR:$rhs),
841 (tADDrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +0000842
843// Subtract with carry
David Goodwinc9d138f2009-07-27 19:59:26 +0000844def : T1Pat<(addc tGPR:$lhs, imm0_7_neg:$rhs),
845 (tSUBi3 tGPR:$lhs, imm0_7_neg:$rhs)>;
846def : T1Pat<(addc tGPR:$lhs, imm8_255_neg:$rhs),
847 (tSUBi8 tGPR:$lhs, imm8_255_neg:$rhs)>;
848def : T1Pat<(subc tGPR:$lhs, tGPR:$rhs),
849 (tSUBrr tGPR:$lhs, tGPR:$rhs)>;
Evan Cheng892837a2009-07-10 02:09:04 +0000850
Evan Chenga8e29892007-01-19 07:51:42 +0000851// ConstantPool, GlobalAddress
David Goodwinc9d138f2009-07-27 19:59:26 +0000852def : T1Pat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
853def : T1Pat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +0000854
Evan Chengd85ac4d2007-01-27 02:29:45 +0000855// JumpTable
David Goodwinc9d138f2009-07-27 19:59:26 +0000856def : T1Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
857 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
Evan Chengd85ac4d2007-01-27 02:29:45 +0000858
Evan Chenga8e29892007-01-19 07:51:42 +0000859// Direct calls
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000860def : T1Pat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +0000861 Requires<[IsThumb, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000862def : T1Pat<(ARMtcall texternalsym:$func), (tBLr9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +0000863 Requires<[IsThumb, IsDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000864
865def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +0000866 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
Evan Cheng20a2a0a2009-07-29 21:26:42 +0000867def : Tv5Pat<(ARMcall texternalsym:$func), (tBLXi_r9 texternalsym:$func)>,
Evan Chengb6207242009-08-01 00:16:10 +0000868 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000869
870// Indirect calls to ARM routines
Evan Chengb6207242009-08-01 00:16:10 +0000871def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>,
872 Requires<[IsThumb, HasV5T, IsNotDarwin]>;
873def : Tv5Pat<(ARMcall GPR:$dst), (tBLXr_r9 GPR:$dst)>,
874 Requires<[IsThumb, HasV5T, IsDarwin]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000875
876// zextload i1 -> zextload i8
Evan Chengf3c21b82009-06-30 02:15:48 +0000877def : T1Pat<(zextloadi1 t_addrmode_s1:$addr),
878 (tLDRB t_addrmode_s1:$addr)>;
Jim Grosbach0ede14f2009-03-27 23:06:27 +0000879
Evan Chengb60c02e2007-01-26 19:13:16 +0000880// extload -> zextload
Evan Chengf3c21b82009-06-30 02:15:48 +0000881def : T1Pat<(extloadi1 t_addrmode_s1:$addr), (tLDRB t_addrmode_s1:$addr)>;
882def : T1Pat<(extloadi8 t_addrmode_s1:$addr), (tLDRB t_addrmode_s1:$addr)>;
883def : T1Pat<(extloadi16 t_addrmode_s2:$addr), (tLDRH t_addrmode_s2:$addr)>;
Evan Chengb60c02e2007-01-26 19:13:16 +0000884
Evan Cheng0e87e232009-08-28 00:31:43 +0000885// If it's impossible to use [r,r] address mode for sextload, select to
Evan Cheng2f297df2009-07-11 07:08:13 +0000886// ldr{b|h} + sxt{b|h} instead.
Evan Cheng3ecadc82009-07-21 18:15:26 +0000887def : T1Pat<(sextloadi8 t_addrmode_s1:$addr),
Evan Cheng0e87e232009-08-28 00:31:43 +0000888 (tSXTB (tLDRB t_addrmode_s1:$addr))>,
889 Requires<[IsThumb1Only, HasV6]>;
Evan Cheng3ecadc82009-07-21 18:15:26 +0000890def : T1Pat<(sextloadi16 t_addrmode_s2:$addr),
Evan Cheng0e87e232009-08-28 00:31:43 +0000891 (tSXTH (tLDRH t_addrmode_s2:$addr))>,
892 Requires<[IsThumb1Only, HasV6]>;
Evan Cheng2f297df2009-07-11 07:08:13 +0000893
Evan Cheng0e87e232009-08-28 00:31:43 +0000894def : T1Pat<(sextloadi8 t_addrmode_s1:$addr),
895 (tASRri (tLSLri (tLDRB t_addrmode_s1:$addr), 24), 24)>;
896def : T1Pat<(sextloadi16 t_addrmode_s1:$addr),
897 (tASRri (tLSLri (tLDRH t_addrmode_s1:$addr), 16), 16)>;
Evan Cheng2f297df2009-07-11 07:08:13 +0000898
Evan Chenga8e29892007-01-19 07:51:42 +0000899// Large immediate handling.
900
901// Two piece imms.
Evan Cheng9cb9e672009-06-27 02:26:13 +0000902def : T1Pat<(i32 thumb_immshifted:$src),
903 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
904 (thumb_immshifted_shamt imm:$src))>;
Evan Chenga8e29892007-01-19 07:51:42 +0000905
Evan Cheng9cb9e672009-06-27 02:26:13 +0000906def : T1Pat<(i32 imm0_255_comp:$src),
907 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;
Evan Chengb9803a82009-11-06 23:52:48 +0000908
909// Pseudo instruction that combines ldr from constpool and add pc. This should
910// be expanded into two instructions late to allow if-conversion and
911// scheduling.
912let isReMaterializable = 1 in
913def tLDRpci_pic : PseudoInst<(outs GPR:$dst), (ins i32imm:$addr, pclabel:$cp),
914 NoItinerary, "@ ldr.n\t$dst, $addr\n$cp:\n\tadd\t$dst, pc",
915 [(set GPR:$dst, (ARMpic_add (load (ARMWrapper tconstpool:$addr)),
916 imm:$cp))]>,
917 Requires<[IsThumb1Only]>;