blob: 677b6f4133e12346a8db6740ff90cd76bc8c24fe [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===- ARMInstrThumb.td - Thumb support for ARM ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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
21// TI - Thumb instruction.
22
23// ThumbPat - Same as Pat<>, but requires that the compiler be in Thumb mode.
24class ThumbPat<dag pattern, dag result> : Pat<pattern, result> {
25 list<Predicate> Predicates = [IsThumb];
26}
27
28class ThumbV5Pat<dag pattern, dag result> : Pat<pattern, result> {
29 list<Predicate> Predicates = [IsThumb, HasV5T];
30}
31
32class ThumbI<dag ops, AddrMode am, SizeFlagVal sz,
33 string asm, string cstr, list<dag> pattern>
34 // FIXME: Set all opcodes to 0 for now.
35 : InstARM<0, am, sz, IndexModeNone, ops, asm, cstr> {
36 let Pattern = pattern;
37 list<Predicate> Predicates = [IsThumb];
38}
39
40class TI<dag ops, string asm, list<dag> pattern>
41 : ThumbI<ops, AddrModeNone, Size2Bytes, asm, "", pattern>;
42class TI1<dag ops, string asm, list<dag> pattern>
43 : ThumbI<ops, AddrModeT1, Size2Bytes, asm, "", pattern>;
44class TI2<dag ops, string asm, list<dag> pattern>
45 : ThumbI<ops, AddrModeT2, Size2Bytes, asm, "", pattern>;
46class TI4<dag ops, string asm, list<dag> pattern>
47 : ThumbI<ops, AddrModeT4, Size2Bytes, asm, "", pattern>;
48class TIs<dag ops, string asm, list<dag> pattern>
49 : ThumbI<ops, AddrModeTs, Size2Bytes, asm, "", pattern>;
50
51// Two-address instructions
52class TIt<dag ops, string asm, list<dag> pattern>
53 : ThumbI<ops, AddrModeNone, Size2Bytes, asm, "$lhs = $dst", pattern>;
54
55// BL, BLX(1) are translated by assembler into two instructions
56class TIx2<dag ops, string asm, list<dag> pattern>
57 : ThumbI<ops, AddrModeNone, Size4Bytes, asm, "", pattern>;
58
59def imm_neg_XFORM : SDNodeXForm<imm, [{
60 return CurDAG->getTargetConstant(-(int)N->getValue(), MVT::i32);
61}]>;
62def imm_comp_XFORM : SDNodeXForm<imm, [{
63 return CurDAG->getTargetConstant(~((uint32_t)N->getValue()), MVT::i32);
64}]>;
65
66
67/// imm0_7 predicate - True if the 32-bit immediate is in the range [0,7].
68def imm0_7 : PatLeaf<(i32 imm), [{
69 return (uint32_t)N->getValue() < 8;
70}]>;
71def imm0_7_neg : PatLeaf<(i32 imm), [{
72 return (uint32_t)-N->getValue() < 8;
73}], imm_neg_XFORM>;
74
75def imm0_255 : PatLeaf<(i32 imm), [{
76 return (uint32_t)N->getValue() < 256;
77}]>;
78def imm0_255_comp : PatLeaf<(i32 imm), [{
79 return ~((uint32_t)N->getValue()) < 256;
80}]>;
81
82def imm8_255 : PatLeaf<(i32 imm), [{
83 return (uint32_t)N->getValue() >= 8 && (uint32_t)N->getValue() < 256;
84}]>;
85def imm8_255_neg : PatLeaf<(i32 imm), [{
86 unsigned Val = -N->getValue();
87 return Val >= 8 && Val < 256;
88}], imm_neg_XFORM>;
89
90// Break imm's up into two pieces: an immediate + a left shift.
91// This uses thumb_immshifted to match and thumb_immshifted_val and
92// thumb_immshifted_shamt to get the val/shift pieces.
93def thumb_immshifted : PatLeaf<(imm), [{
94 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getValue());
95}]>;
96
97def thumb_immshifted_val : SDNodeXForm<imm, [{
98 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getValue());
99 return CurDAG->getTargetConstant(V, MVT::i32);
100}]>;
101
102def thumb_immshifted_shamt : SDNodeXForm<imm, [{
103 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getValue());
104 return CurDAG->getTargetConstant(V, MVT::i32);
105}]>;
106
107// Define Thumb specific addressing modes.
108
109// t_addrmode_rr := reg + reg
110//
111def t_addrmode_rr : Operand<i32>,
112 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
113 let PrintMethod = "printThumbAddrModeRROperand";
114 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg);
115}
116
Evan Chengc38f2bc2007-01-23 22:59:13 +0000117// t_addrmode_s4 := reg + reg
118// reg + imm5 * 4
Evan Chenga8e29892007-01-19 07:51:42 +0000119//
Evan Chengc38f2bc2007-01-23 22:59:13 +0000120def t_addrmode_s4 : Operand<i32>,
121 ComplexPattern<i32, 3, "SelectThumbAddrModeS4", []> {
122 let PrintMethod = "printThumbAddrModeS4Operand";
123 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000124}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000125
126// t_addrmode_s2 := reg + reg
127// reg + imm5 * 2
128//
129def t_addrmode_s2 : Operand<i32>,
130 ComplexPattern<i32, 3, "SelectThumbAddrModeS2", []> {
131 let PrintMethod = "printThumbAddrModeS2Operand";
132 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000133}
Evan Chengc38f2bc2007-01-23 22:59:13 +0000134
135// t_addrmode_s1 := reg + reg
136// reg + imm5
137//
138def t_addrmode_s1 : Operand<i32>,
139 ComplexPattern<i32, 3, "SelectThumbAddrModeS1", []> {
140 let PrintMethod = "printThumbAddrModeS1Operand";
141 let MIOperandInfo = (ops GPR:$base, GPR:$offsreg, i32imm:$offsimm);
Evan Chenga8e29892007-01-19 07:51:42 +0000142}
143
144// t_addrmode_sp := sp + imm8 * 4
145//
146def t_addrmode_sp : Operand<i32>,
147 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
148 let PrintMethod = "printThumbAddrModeSPOperand";
149 let MIOperandInfo = (ops GPR:$base, i32imm:$offsimm);
150}
151
152//===----------------------------------------------------------------------===//
153// Miscellaneous Instructions.
154//
155
156def tPICADD : TIt<(ops GPR:$dst, GPR:$lhs, pclabel:$cp),
157 "\n$cp:\n\tadd $dst, pc",
158 [(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>;
159
160//===----------------------------------------------------------------------===//
161// Control Flow Instructions.
162//
163
164let isReturn = 1, isTerminator = 1 in
165 def tBX_RET : TI<(ops), "bx lr", [(ARMretflag)]>;
166
167// FIXME: remove when we have a way to marking a MI with these properties.
168let isLoad = 1, isReturn = 1, isTerminator = 1 in
169def tPOP_RET : TI<(ops reglist:$dst1, variable_ops),
170 "pop $dst1", []>;
171
172let isCall = 1, noResults = 1,
173 Defs = [R0, R1, R2, R3, LR,
174 D0, D1, D2, D3, D4, D5, D6, D7] in {
175 def tBL : TIx2<(ops i32imm:$func, variable_ops),
176 "bl ${func:call}",
177 [(ARMtcall tglobaladdr:$func)]>;
178 // ARMv5T and above
179 def tBLXi : TIx2<(ops i32imm:$func, variable_ops),
180 "blx ${func:call}",
181 [(ARMcall tglobaladdr:$func)]>, Requires<[HasV5T]>;
182 def tBLXr : TI<(ops GPR:$dst, variable_ops),
183 "blx $dst",
184 [(ARMtcall GPR:$dst)]>, Requires<[HasV5T]>;
185 // ARMv4T
186 def tBX : TIx2<(ops GPR:$dst, variable_ops),
187 "cpy lr, pc\n\tbx $dst",
188 [(ARMcall_nolink GPR:$dst)]>;
189}
190
191let isBranch = 1, isTerminator = 1, isBarrier = 1 in
192 def tB : TI<(ops brtarget:$dst), "b $dst", [(br bb:$dst)]>;
193
194let isBranch = 1, isTerminator = 1, noResults = 1, isBarrier = 1 in
195 def tBcc : TI<(ops brtarget:$dst, CCOp:$cc), "b$cc $dst",
196 [(ARMbrcond bb:$dst, imm:$cc)]>;
197
198//===----------------------------------------------------------------------===//
199// Load Store Instructions.
200//
201
202let isLoad = 1 in {
Evan Chengc38f2bc2007-01-23 22:59:13 +0000203def tLDR : TI4<(ops GPR:$dst, t_addrmode_s4:$addr),
204 "ldr $dst, $addr",
205 [(set GPR:$dst, (load t_addrmode_s4:$addr))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000206
Evan Chengc38f2bc2007-01-23 22:59:13 +0000207def tLDRB : TI1<(ops GPR:$dst, t_addrmode_s1:$addr),
208 "ldrb $dst, $addr",
209 [(set GPR:$dst, (zextloadi8 t_addrmode_s1:$addr))]>;
210
211def tLDRH : TI2<(ops GPR:$dst, t_addrmode_s2:$addr),
212 "ldrh $dst, $addr",
213 [(set GPR:$dst, (zextloadi16 t_addrmode_s2:$addr))]>;
214
215def tLDRSB : TI1<(ops GPR:$dst, t_addrmode_rr:$addr),
216 "ldrsb $dst, $addr",
217 [(set GPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>;
218
219def tLDRSH : TI2<(ops GPR:$dst, t_addrmode_rr:$addr),
220 "ldrsh $dst, $addr",
221 [(set GPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>;
222
Evan Chenga8e29892007-01-19 07:51:42 +0000223def tLDRspi : TIs<(ops GPR:$dst, t_addrmode_sp:$addr),
224 "ldr $dst, $addr",
225 [(set GPR:$dst, (load t_addrmode_sp:$addr))]>;
Evan Cheng012f2d92007-01-24 08:53:17 +0000226
227// Load tconstpool
228def tLDRpci : TIs<(ops GPR:$dst, i32imm:$addr),
229 "ldr $dst, $addr",
230 [(set GPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000231} // isLoad
232
233let isStore = 1 in {
Evan Chengc38f2bc2007-01-23 22:59:13 +0000234def tSTR : TI4<(ops GPR:$src, t_addrmode_s4:$addr),
235 "str $src, $addr",
236 [(store GPR:$src, t_addrmode_s4:$addr)]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000237
Evan Chengc38f2bc2007-01-23 22:59:13 +0000238def tSTRB : TI1<(ops GPR:$src, t_addrmode_s1:$addr),
239 "strb $src, $addr",
240 [(truncstorei8 GPR:$src, t_addrmode_s1:$addr)]>;
241
242def tSTRH : TI2<(ops GPR:$src, t_addrmode_s2:$addr),
243 "strh $src, $addr",
244 [(truncstorei16 GPR:$src, t_addrmode_s2:$addr)]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000245
246def tSTRspi : TIs<(ops GPR:$src, t_addrmode_sp:$addr),
247 "str $src, $addr",
248 [(store GPR:$src, t_addrmode_sp:$addr)]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000249}
250
251//===----------------------------------------------------------------------===//
252// Load / store multiple Instructions.
253//
254
255// TODO: A7-44: LDMIA - load multiple
256
257let isLoad = 1 in
258def tPOP : TI<(ops reglist:$dst1, variable_ops),
259 "pop $dst1", []>;
260
261let isStore = 1 in
262def tPUSH : TI<(ops reglist:$src1, variable_ops),
263 "push $src1", []>;
264
265//===----------------------------------------------------------------------===//
266// Arithmetic Instructions.
267//
268
269def tADDi3 : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
270 "add $dst, $lhs, $rhs",
271 [(set GPR:$dst, (add GPR:$lhs, imm0_7:$rhs))]>;
272
273def tADDi8 : TIt<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
274 "add $dst, $rhs",
275 [(set GPR:$dst, (add GPR:$lhs, imm8_255:$rhs))]>;
276
277def tADDrr : TI<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
278 "add $dst, $lhs, $rhs",
279 [(set GPR:$dst, (add GPR:$lhs, GPR:$rhs))]>;
280
281def tADDhirr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
282 "add $dst, $rhs", []>;
283
284def tADDrPCi : TI<(ops GPR:$dst, i32imm:$rhs),
285 "add $dst, pc, $rhs * 4", []>;
286def tADDrSPi : TI<(ops GPR:$dst, GPR:$sp, i32imm:$rhs),
287 "add $dst, $sp, $rhs * 4", []>;
288def tADDspi : TI<(ops GPR:$sp, i32imm:$rhs),
289 "add $sp, $rhs * 4", []>;
290
291
292def tAND : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
293 "and $dst, $rhs",
294 [(set GPR:$dst, (and GPR:$lhs, GPR:$rhs))]>;
295
296def tASRri : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
297 "asr $dst, $lhs, $rhs",
298 [(set GPR:$dst, (sra GPR:$lhs, imm:$rhs))]>;
299
300def tASRrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
301 "asr $dst, $rhs",
302 [(set GPR:$dst, (sra GPR:$lhs, GPR:$rhs))]>;
303
304def tBIC : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
305 "bic $dst, $rhs",
306 [(set GPR:$dst, (and GPR:$lhs, (not GPR:$rhs)))]>;
307
308
309def tCMN : TI<(ops GPR:$lhs, GPR:$rhs),
310 "cmn $lhs, $rhs",
311 [(ARMcmp GPR:$lhs, (ineg GPR:$rhs))]>;
312
313def tCMPi8 : TI<(ops GPR:$lhs, i32imm:$rhs),
314 "cmp $lhs, $rhs",
315 [(ARMcmp GPR:$lhs, imm0_255:$rhs)]>;
316
317def tCMPr : TI<(ops GPR:$lhs, GPR:$rhs),
318 "cmp $lhs, $rhs",
319 [(ARMcmp GPR:$lhs, GPR:$rhs)]>;
320
321// TODO: A7-37: CMP(3) - cmp hi regs
322
323def tEOR : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
324 "eor $dst, $rhs",
325 [(set GPR:$dst, (xor GPR:$lhs, GPR:$rhs))]>;
326
327def tLSLri : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
328 "lsl $dst, $lhs, $rhs",
329 [(set GPR:$dst, (shl GPR:$lhs, imm:$rhs))]>;
330
331def tLSLrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
332 "lsl $dst, $rhs",
333 [(set GPR:$dst, (shl GPR:$lhs, GPR:$rhs))]>;
334
335def tLSRri : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
336 "lsr $dst, $lhs, $rhs",
337 [(set GPR:$dst, (srl GPR:$lhs, imm:$rhs))]>;
338
339def tLSRrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
340 "lsr $dst, $rhs",
341 [(set GPR:$dst, (srl GPR:$lhs, GPR:$rhs))]>;
342
343def tMOVri8 : TI<(ops GPR:$dst, i32imm:$src),
344 "mov $dst, $src",
345 [(set GPR:$dst, imm0_255:$src)]>;
346
347// TODO: A7-73: MOV(2) - mov setting flag.
348
349
350// Note: MOV(2) of two low regs updates the flags, so we emit this as 'cpy',
351// which is MOV(3). This also supports high registers.
352def tMOVrr : TI<(ops GPR:$dst, GPR:$src),
353 "cpy $dst, $src", []>;
354
355def tMUL : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
356 "mul $dst, $rhs",
357 [(set GPR:$dst, (mul GPR:$lhs, GPR:$rhs))]>;
358
359def tMVN : TI<(ops GPR:$dst, GPR:$src),
360 "mvn $dst, $src",
361 [(set GPR:$dst, (not GPR:$src))]>;
362
363def tNEG : TI<(ops GPR:$dst, GPR:$src),
364 "neg $dst, $src",
365 [(set GPR:$dst, (ineg GPR:$src))]>;
366
367def tORR : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
368 "orr $dst, $rhs",
369 [(set GPR:$dst, (or GPR:$lhs, GPR:$rhs))]>;
370
371
372def tREV : TI<(ops GPR:$dst, GPR:$src),
373 "rev $dst, $src",
374 [(set GPR:$dst, (bswap GPR:$src))]>,
375 Requires<[IsThumb, HasV6]>;
376
377def tREV16 : TI<(ops GPR:$dst, GPR:$src),
378 "rev16 $dst, $src",
379 [(set GPR:$dst,
380 (or (and (srl GPR:$src, 8), 0xFF),
381 (or (and (shl GPR:$src, 8), 0xFF00),
382 (or (and (srl GPR:$src, 8), 0xFF0000),
383 (and (shl GPR:$src, 8), 0xFF000000)))))]>,
384 Requires<[IsThumb, HasV6]>;
385
386def tREVSH : TI<(ops GPR:$dst, GPR:$src),
387 "revsh $dst, $src",
388 [(set GPR:$dst,
389 (sext_inreg
390 (or (srl (and GPR:$src, 0xFFFF), 8),
391 (shl GPR:$src, 8)), i16))]>,
392 Requires<[IsThumb, HasV6]>;
393
394def tROR : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
395 "ror $dst, $rhs",
396 [(set GPR:$dst, (rotr GPR:$lhs, GPR:$rhs))]>;
397
398def tSBC : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
399 "sbc $dst, $rhs",
400 [(set GPR:$dst, (sube GPR:$lhs, GPR:$rhs))]>;
401
402// TODO: A7-96: STMIA - store multiple.
403
404def tSUBi3 : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
405 "sub $dst, $lhs, $rhs",
406 [(set GPR:$dst, (add GPR:$lhs, imm0_7_neg:$rhs))]>;
407
408def tSUBi8 : TIt<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
409 "sub $dst, $rhs",
410 [(set GPR:$dst, (add GPR:$lhs, imm8_255_neg:$rhs))]>;
411
412def tSUBrr : TI<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
413 "sub $dst, $lhs, $rhs",
414 [(set GPR:$dst, (sub GPR:$lhs, GPR:$rhs))]>;
415
416def tSUBspi : TI<(ops GPR:$sp, i32imm:$rhs),
417 "sub $sp, $rhs * 4", []>;
418
419def tSXTB : TI<(ops GPR:$dst, GPR:$src),
420 "sxtb $dst, $src",
421 [(set GPR:$dst, (sext_inreg GPR:$src, i8))]>,
422 Requires<[IsThumb, HasV6]>;
423def tSXTH : TI<(ops GPR:$dst, GPR:$src),
424 "sxth $dst, $src",
425 [(set GPR:$dst, (sext_inreg GPR:$src, i16))]>,
426 Requires<[IsThumb, HasV6]>;
427
428// TODO: A7-122: TST - test.
429
430def tUXTB : TI<(ops GPR:$dst, GPR:$src),
431 "uxtb $dst, $src",
432 [(set GPR:$dst, (and GPR:$src, 0xFF))]>,
433 Requires<[IsThumb, HasV6]>;
434def tUXTH : TI<(ops GPR:$dst, GPR:$src),
435 "uxth $dst, $src",
436 [(set GPR:$dst, (and GPR:$src, 0xFFFF))]>,
437 Requires<[IsThumb, HasV6]>;
438
439
440// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation.
441// Expanded by the scheduler into a branch sequence.
442let usesCustomDAGSchedInserter = 1 in // Expanded by the scheduler.
443 def tMOVCCr :
444 PseudoInst<(ops GPR:$dst, GPR:$false, GPR:$true, CCOp:$cc),
445 "@ tMOVCCr $cc",
446 [(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc))]>;
447
448// tLEApcrel - Load a pc-relative address into a register without offending the
449// assembler.
450def tLEApcrel : TI<(ops GPR:$dst, i32imm:$label),
451 !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
452 "${:private}PCRELL${:uid}+4))\n"),
453 !strconcat("${:private}PCRELL${:uid}:\n\t",
454 "add $dst, pc, #PCRELV${:uid}")),
455 []>;
456
457def tLEApcrelCall : TI<(ops GPR:$dst, i32imm:$label),
458 !strconcat(!strconcat(".set PCRELV${:uid}, (${label:call}-(",
459 "${:private}PCRELL${:uid}+4))\n"),
460 !strconcat("${:private}PCRELL${:uid}:\n\t",
461 "add $dst, pc, #PCRELV${:uid}")),
462 []>;
463
464//===----------------------------------------------------------------------===//
465// Non-Instruction Patterns
466//
467
468// ConstantPool, GlobalAddress
469def : ThumbPat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
470def : ThumbPat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
471def : ThumbPat<(ARMWrapperCall tglobaladdr :$dst),
472 (tLEApcrelCall tglobaladdr :$dst)>;
473def : ThumbPat<(ARMWrapperCall texternalsym:$dst),
474 (tLEApcrelCall texternalsym:$dst)>;
475
476// Direct calls
477def : ThumbPat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>;
478def : ThumbV5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>;
479
480// Indirect calls to ARM routines
481def : ThumbV5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>;
482
483// zextload i1 -> zextload i8
Evan Chengc38f2bc2007-01-23 22:59:13 +0000484def : ThumbPat<(zextloadi1 t_addrmode_s1:$addr),
485 (tLDRB t_addrmode_s1:$addr)>;
Evan Chenga8e29892007-01-19 07:51:42 +0000486
487// truncstore i1 -> truncstore i8
Evan Chengc38f2bc2007-01-23 22:59:13 +0000488def : ThumbPat<(truncstorei1 GPR:$src, t_addrmode_s1:$dst),
489 (tSTRB GPR:$src, t_addrmode_s1:$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +0000490
491// Large immediate handling.
492
493// Two piece imms.
494def : ThumbPat<(i32 thumb_immshifted:$src),
495 (tLSLri (tMOVri8 (thumb_immshifted_val imm:$src)),
496 (thumb_immshifted_shamt imm:$src))>;
497
498def : ThumbPat<(i32 imm0_255_comp:$src),
499 (tMVN (tMOVri8 (imm_comp_XFORM imm:$src)))>;