blob: fa7afea976dae0271b6231bc5395551500d45f3c [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 +0000223// def tLDRpci
224def tLDRspi : TIs<(ops GPR:$dst, t_addrmode_sp:$addr),
225 "ldr $dst, $addr",
226 [(set GPR:$dst, (load t_addrmode_sp:$addr))]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000227} // isLoad
228
229let isStore = 1 in {
Evan Chengc38f2bc2007-01-23 22:59:13 +0000230def tSTR : TI4<(ops GPR:$src, t_addrmode_s4:$addr),
231 "str $src, $addr",
232 [(store GPR:$src, t_addrmode_s4:$addr)]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000233
Evan Chengc38f2bc2007-01-23 22:59:13 +0000234def tSTRB : TI1<(ops GPR:$src, t_addrmode_s1:$addr),
235 "strb $src, $addr",
236 [(truncstorei8 GPR:$src, t_addrmode_s1:$addr)]>;
237
238def tSTRH : TI2<(ops GPR:$src, t_addrmode_s2:$addr),
239 "strh $src, $addr",
240 [(truncstorei16 GPR:$src, t_addrmode_s2:$addr)]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000241
242def tSTRspi : TIs<(ops GPR:$src, t_addrmode_sp:$addr),
243 "str $src, $addr",
244 [(store GPR:$src, t_addrmode_sp:$addr)]>;
Evan Chenga8e29892007-01-19 07:51:42 +0000245}
246
247//===----------------------------------------------------------------------===//
248// Load / store multiple Instructions.
249//
250
251// TODO: A7-44: LDMIA - load multiple
252
253let isLoad = 1 in
254def tPOP : TI<(ops reglist:$dst1, variable_ops),
255 "pop $dst1", []>;
256
257let isStore = 1 in
258def tPUSH : TI<(ops reglist:$src1, variable_ops),
259 "push $src1", []>;
260
261//===----------------------------------------------------------------------===//
262// Arithmetic Instructions.
263//
264
265def tADDi3 : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
266 "add $dst, $lhs, $rhs",
267 [(set GPR:$dst, (add GPR:$lhs, imm0_7:$rhs))]>;
268
269def tADDi8 : TIt<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
270 "add $dst, $rhs",
271 [(set GPR:$dst, (add GPR:$lhs, imm8_255:$rhs))]>;
272
273def tADDrr : TI<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
274 "add $dst, $lhs, $rhs",
275 [(set GPR:$dst, (add GPR:$lhs, GPR:$rhs))]>;
276
277def tADDhirr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
278 "add $dst, $rhs", []>;
279
280def tADDrPCi : TI<(ops GPR:$dst, i32imm:$rhs),
281 "add $dst, pc, $rhs * 4", []>;
282def tADDrSPi : TI<(ops GPR:$dst, GPR:$sp, i32imm:$rhs),
283 "add $dst, $sp, $rhs * 4", []>;
284def tADDspi : TI<(ops GPR:$sp, i32imm:$rhs),
285 "add $sp, $rhs * 4", []>;
286
287
288def tAND : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
289 "and $dst, $rhs",
290 [(set GPR:$dst, (and GPR:$lhs, GPR:$rhs))]>;
291
292def tASRri : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
293 "asr $dst, $lhs, $rhs",
294 [(set GPR:$dst, (sra GPR:$lhs, imm:$rhs))]>;
295
296def tASRrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
297 "asr $dst, $rhs",
298 [(set GPR:$dst, (sra GPR:$lhs, GPR:$rhs))]>;
299
300def tBIC : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
301 "bic $dst, $rhs",
302 [(set GPR:$dst, (and GPR:$lhs, (not GPR:$rhs)))]>;
303
304
305def tCMN : TI<(ops GPR:$lhs, GPR:$rhs),
306 "cmn $lhs, $rhs",
307 [(ARMcmp GPR:$lhs, (ineg GPR:$rhs))]>;
308
309def tCMPi8 : TI<(ops GPR:$lhs, i32imm:$rhs),
310 "cmp $lhs, $rhs",
311 [(ARMcmp GPR:$lhs, imm0_255:$rhs)]>;
312
313def tCMPr : TI<(ops GPR:$lhs, GPR:$rhs),
314 "cmp $lhs, $rhs",
315 [(ARMcmp GPR:$lhs, GPR:$rhs)]>;
316
317// TODO: A7-37: CMP(3) - cmp hi regs
318
319def tEOR : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
320 "eor $dst, $rhs",
321 [(set GPR:$dst, (xor GPR:$lhs, GPR:$rhs))]>;
322
323def tLSLri : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
324 "lsl $dst, $lhs, $rhs",
325 [(set GPR:$dst, (shl GPR:$lhs, imm:$rhs))]>;
326
327def tLSLrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
328 "lsl $dst, $rhs",
329 [(set GPR:$dst, (shl GPR:$lhs, GPR:$rhs))]>;
330
331def tLSRri : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
332 "lsr $dst, $lhs, $rhs",
333 [(set GPR:$dst, (srl GPR:$lhs, imm:$rhs))]>;
334
335def tLSRrr : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
336 "lsr $dst, $rhs",
337 [(set GPR:$dst, (srl GPR:$lhs, GPR:$rhs))]>;
338
339def tMOVri8 : TI<(ops GPR:$dst, i32imm:$src),
340 "mov $dst, $src",
341 [(set GPR:$dst, imm0_255:$src)]>;
342
343// TODO: A7-73: MOV(2) - mov setting flag.
344
345
346// Note: MOV(2) of two low regs updates the flags, so we emit this as 'cpy',
347// which is MOV(3). This also supports high registers.
348def tMOVrr : TI<(ops GPR:$dst, GPR:$src),
349 "cpy $dst, $src", []>;
350
351def tMUL : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
352 "mul $dst, $rhs",
353 [(set GPR:$dst, (mul GPR:$lhs, GPR:$rhs))]>;
354
355def tMVN : TI<(ops GPR:$dst, GPR:$src),
356 "mvn $dst, $src",
357 [(set GPR:$dst, (not GPR:$src))]>;
358
359def tNEG : TI<(ops GPR:$dst, GPR:$src),
360 "neg $dst, $src",
361 [(set GPR:$dst, (ineg GPR:$src))]>;
362
363def tORR : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
364 "orr $dst, $rhs",
365 [(set GPR:$dst, (or GPR:$lhs, GPR:$rhs))]>;
366
367
368def tREV : TI<(ops GPR:$dst, GPR:$src),
369 "rev $dst, $src",
370 [(set GPR:$dst, (bswap GPR:$src))]>,
371 Requires<[IsThumb, HasV6]>;
372
373def tREV16 : TI<(ops GPR:$dst, GPR:$src),
374 "rev16 $dst, $src",
375 [(set GPR:$dst,
376 (or (and (srl GPR:$src, 8), 0xFF),
377 (or (and (shl GPR:$src, 8), 0xFF00),
378 (or (and (srl GPR:$src, 8), 0xFF0000),
379 (and (shl GPR:$src, 8), 0xFF000000)))))]>,
380 Requires<[IsThumb, HasV6]>;
381
382def tREVSH : TI<(ops GPR:$dst, GPR:$src),
383 "revsh $dst, $src",
384 [(set GPR:$dst,
385 (sext_inreg
386 (or (srl (and GPR:$src, 0xFFFF), 8),
387 (shl GPR:$src, 8)), i16))]>,
388 Requires<[IsThumb, HasV6]>;
389
390def tROR : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
391 "ror $dst, $rhs",
392 [(set GPR:$dst, (rotr GPR:$lhs, GPR:$rhs))]>;
393
394def tSBC : TIt<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
395 "sbc $dst, $rhs",
396 [(set GPR:$dst, (sube GPR:$lhs, GPR:$rhs))]>;
397
398// TODO: A7-96: STMIA - store multiple.
399
400def tSUBi3 : TI<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
401 "sub $dst, $lhs, $rhs",
402 [(set GPR:$dst, (add GPR:$lhs, imm0_7_neg:$rhs))]>;
403
404def tSUBi8 : TIt<(ops GPR:$dst, GPR:$lhs, i32imm:$rhs),
405 "sub $dst, $rhs",
406 [(set GPR:$dst, (add GPR:$lhs, imm8_255_neg:$rhs))]>;
407
408def tSUBrr : TI<(ops GPR:$dst, GPR:$lhs, GPR:$rhs),
409 "sub $dst, $lhs, $rhs",
410 [(set GPR:$dst, (sub GPR:$lhs, GPR:$rhs))]>;
411
412def tSUBspi : TI<(ops GPR:$sp, i32imm:$rhs),
413 "sub $sp, $rhs * 4", []>;
414
415def tSXTB : TI<(ops GPR:$dst, GPR:$src),
416 "sxtb $dst, $src",
417 [(set GPR:$dst, (sext_inreg GPR:$src, i8))]>,
418 Requires<[IsThumb, HasV6]>;
419def tSXTH : TI<(ops GPR:$dst, GPR:$src),
420 "sxth $dst, $src",
421 [(set GPR:$dst, (sext_inreg GPR:$src, i16))]>,
422 Requires<[IsThumb, HasV6]>;
423
424// TODO: A7-122: TST - test.
425
426def tUXTB : TI<(ops GPR:$dst, GPR:$src),
427 "uxtb $dst, $src",
428 [(set GPR:$dst, (and GPR:$src, 0xFF))]>,
429 Requires<[IsThumb, HasV6]>;
430def tUXTH : TI<(ops GPR:$dst, GPR:$src),
431 "uxth $dst, $src",
432 [(set GPR:$dst, (and GPR:$src, 0xFFFF))]>,
433 Requires<[IsThumb, HasV6]>;
434
435
436// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation.
437// Expanded by the scheduler into a branch sequence.
438let usesCustomDAGSchedInserter = 1 in // Expanded by the scheduler.
439 def tMOVCCr :
440 PseudoInst<(ops GPR:$dst, GPR:$false, GPR:$true, CCOp:$cc),
441 "@ tMOVCCr $cc",
442 [(set GPR:$dst, (ARMcmov GPR:$false, GPR:$true, imm:$cc))]>;
443
444// tLEApcrel - Load a pc-relative address into a register without offending the
445// assembler.
446def tLEApcrel : TI<(ops GPR:$dst, i32imm:$label),
447 !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
448 "${:private}PCRELL${:uid}+4))\n"),
449 !strconcat("${:private}PCRELL${:uid}:\n\t",
450 "add $dst, pc, #PCRELV${:uid}")),
451 []>;
452
453def tLEApcrelCall : TI<(ops GPR:$dst, i32imm:$label),
454 !strconcat(!strconcat(".set PCRELV${:uid}, (${label:call}-(",
455 "${:private}PCRELL${:uid}+4))\n"),
456 !strconcat("${:private}PCRELL${:uid}:\n\t",
457 "add $dst, pc, #PCRELV${:uid}")),
458 []>;
459
460//===----------------------------------------------------------------------===//
461// Non-Instruction Patterns
462//
463
464// ConstantPool, GlobalAddress
465def : ThumbPat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
466def : ThumbPat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
467def : ThumbPat<(ARMWrapperCall tglobaladdr :$dst),
468 (tLEApcrelCall tglobaladdr :$dst)>;
469def : ThumbPat<(ARMWrapperCall texternalsym:$dst),
470 (tLEApcrelCall texternalsym:$dst)>;
471
472// Direct calls
473def : ThumbPat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>;
474def : ThumbV5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>;
475
476// Indirect calls to ARM routines
477def : ThumbV5Pat<(ARMcall GPR:$dst), (tBLXr GPR:$dst)>;
478
479// zextload i1 -> zextload i8
Evan Chengc38f2bc2007-01-23 22:59:13 +0000480def : ThumbPat<(zextloadi1 t_addrmode_s1:$addr),
481 (tLDRB t_addrmode_s1:$addr)>;
Evan Chenga8e29892007-01-19 07:51:42 +0000482
483// truncstore i1 -> truncstore i8
Evan Chengc38f2bc2007-01-23 22:59:13 +0000484def : ThumbPat<(truncstorei1 GPR:$src, t_addrmode_s1:$dst),
485 (tSTRB GPR:$src, t_addrmode_s1:$dst)>;
Evan Chenga8e29892007-01-19 07:51:42 +0000486
487// Large immediate handling.
488
489// Two piece imms.
490def : ThumbPat<(i32 thumb_immshifted:$src),
491 (tLSLri (tMOVri8 (thumb_immshifted_val imm:$src)),
492 (thumb_immshifted_shamt imm:$src))>;
493
494def : ThumbPat<(i32 imm0_255_comp:$src),
495 (tMVN (tMOVri8 (imm_comp_XFORM imm:$src)))>;