1 //===- ARMInstrThumb.td - Thumb support for ARM ---------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file describes the Thumb instruction set.
12 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
15 // Thumb specific DAG Nodes.
18 def ARMtcall : SDNode<"ARMISD::tCALL", SDT_ARMcall,
19 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
21 def imm_neg_XFORM : SDNodeXForm<imm, [{
22 return CurDAG->getTargetConstant(-(int)N->getZExtValue(), MVT::i32);
24 def imm_comp_XFORM : SDNodeXForm<imm, [{
25 return CurDAG->getTargetConstant(~((uint32_t)N->getZExtValue()), MVT::i32);
29 /// imm0_7 predicate - True if the 32-bit immediate is in the range [0,7].
30 def imm0_7 : PatLeaf<(i32 imm), [{
31 return (uint32_t)N->getZExtValue() < 8;
33 def imm0_7_neg : PatLeaf<(i32 imm), [{
34 return (uint32_t)-N->getZExtValue() < 8;
37 def imm0_255 : PatLeaf<(i32 imm), [{
38 return (uint32_t)N->getZExtValue() < 256;
40 def imm0_255_comp : PatLeaf<(i32 imm), [{
41 return ~((uint32_t)N->getZExtValue()) < 256;
44 def imm8_255 : PatLeaf<(i32 imm), [{
45 return (uint32_t)N->getZExtValue() >= 8 && (uint32_t)N->getZExtValue() < 256;
47 def imm8_255_neg : PatLeaf<(i32 imm), [{
48 unsigned Val = -N->getZExtValue();
49 return Val >= 8 && Val < 256;
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.
55 def thumb_immshifted : PatLeaf<(imm), [{
56 return ARM_AM::isThumbImmShiftedVal((unsigned)N->getZExtValue());
59 def thumb_immshifted_val : SDNodeXForm<imm, [{
60 unsigned V = ARM_AM::getThumbImmNonShiftedVal((unsigned)N->getZExtValue());
61 return CurDAG->getTargetConstant(V, MVT::i32);
64 def thumb_immshifted_shamt : SDNodeXForm<imm, [{
65 unsigned V = ARM_AM::getThumbImmValShift((unsigned)N->getZExtValue());
66 return CurDAG->getTargetConstant(V, MVT::i32);
69 // Define Thumb specific addressing modes.
71 // t_addrmode_rr := reg + reg
73 def t_addrmode_rr : Operand<i32>,
74 ComplexPattern<i32, 2, "SelectThumbAddrModeRR", []> {
75 let PrintMethod = "printThumbAddrModeRROperand";
76 let MIOperandInfo = (ops tGPR:$base, tGPR:$offsreg);
79 // t_addrmode_s4 := reg + reg
82 def t_addrmode_s4 : Operand<i32>,
83 ComplexPattern<i32, 3, "SelectThumbAddrModeS4", []> {
84 let PrintMethod = "printThumbAddrModeS4Operand";
85 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm, tGPR:$offsreg);
88 // t_addrmode_s2 := reg + reg
91 def t_addrmode_s2 : Operand<i32>,
92 ComplexPattern<i32, 3, "SelectThumbAddrModeS2", []> {
93 let PrintMethod = "printThumbAddrModeS2Operand";
94 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm, tGPR:$offsreg);
97 // t_addrmode_s1 := reg + reg
100 def t_addrmode_s1 : Operand<i32>,
101 ComplexPattern<i32, 3, "SelectThumbAddrModeS1", []> {
102 let PrintMethod = "printThumbAddrModeS1Operand";
103 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm, tGPR:$offsreg);
106 // t_addrmode_sp := sp + imm8 * 4
108 def t_addrmode_sp : Operand<i32>,
109 ComplexPattern<i32, 2, "SelectThumbAddrModeSP", []> {
110 let PrintMethod = "printThumbAddrModeSPOperand";
111 let MIOperandInfo = (ops tGPR:$base, i32imm:$offsimm);
114 //===----------------------------------------------------------------------===//
115 // Miscellaneous Instructions.
118 let Defs = [SP], Uses = [SP] in {
119 def tADJCALLSTACKUP :
120 PseudoInst<(outs), (ins i32imm:$amt1, i32imm:$amt2),
121 "@ tADJCALLSTACKUP $amt1",
122 [(ARMcallseq_end imm:$amt1, imm:$amt2)]>, Requires<[IsThumb]>;
124 def tADJCALLSTACKDOWN :
125 PseudoInst<(outs), (ins i32imm:$amt),
126 "@ tADJCALLSTACKDOWN $amt",
127 [(ARMcallseq_start imm:$amt)]>, Requires<[IsThumb]>;
130 let isNotDuplicable = 1 in
131 def tPICADD : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, pclabel:$cp),
132 "$cp:\n\tadd $dst, pc",
133 [(set tGPR:$dst, (ARMpic_add tGPR:$lhs, imm:$cp))]>;
135 //===----------------------------------------------------------------------===//
136 // Control Flow Instructions.
139 let isReturn = 1, isTerminator = 1 in {
140 def tBX_RET : TI<(outs), (ins), "bx lr", [(ARMretflag)]>;
141 // Alternative return instruction used by vararg functions.
142 def tBX_RET_vararg : TI<(outs), (ins tGPR:$target), "bx $target", []>;
145 // FIXME: remove when we have a way to marking a MI with these properties.
146 let isReturn = 1, isTerminator = 1 in
147 def tPOP_RET : TI<(outs reglist:$dst1, variable_ops), (ins),
151 Defs = [R0, R1, R2, R3, LR,
152 D0, D1, D2, D3, D4, D5, D6, D7] in {
153 def tBL : TIx2<(outs), (ins i32imm:$func, variable_ops),
155 [(ARMtcall tglobaladdr:$func)]>;
157 def tBLXi : TIx2<(outs), (ins i32imm:$func, variable_ops),
159 [(ARMcall tglobaladdr:$func)]>, Requires<[HasV5T]>;
160 def tBLXr : TI<(outs), (ins tGPR:$func, variable_ops),
162 [(ARMtcall tGPR:$func)]>, Requires<[HasV5T]>;
164 def tBX : TIx2<(outs), (ins tGPR:$func, variable_ops),
165 "cpy lr, pc\n\tbx $func",
166 [(ARMcall_nolink tGPR:$func)]>;
169 let isBranch = 1, isTerminator = 1 in {
170 let isBarrier = 1 in {
171 let isPredicable = 1 in
172 def tB : TI<(outs), (ins brtarget:$target), "b $target",
176 def tBfar : TIx2<(outs), (ins brtarget:$target), "bl $target\t@ far jump",[]>;
178 def tBR_JTr : TJTI<(outs),
179 (ins tGPR:$target, jtblock_operand:$jt, i32imm:$id),
180 "cpy pc, $target \n\t.align\t2\n$jt",
181 [(ARMbrjt tGPR:$target, tjumptable:$jt, imm:$id)]>;
185 // FIXME: should be able to write a pattern for ARMBrcond, but can't use
186 // a two-value operand where a dag node expects two operands. :(
187 let isBranch = 1, isTerminator = 1 in
188 def tBcc : TI<(outs), (ins brtarget:$target, pred:$cc), "b$cc $target",
189 [/*(ARMbrcond bb:$target, imm:$cc)*/]>;
191 //===----------------------------------------------------------------------===//
192 // Load Store Instructions.
195 let canFoldAsLoad = 1 in
196 def tLDR : TI4<(outs tGPR:$dst), (ins t_addrmode_s4:$addr),
198 [(set tGPR:$dst, (load t_addrmode_s4:$addr))]>;
200 def tLDRB : TI1<(outs tGPR:$dst), (ins t_addrmode_s1:$addr),
202 [(set tGPR:$dst, (zextloadi8 t_addrmode_s1:$addr))]>;
204 def tLDRH : TI2<(outs tGPR:$dst), (ins t_addrmode_s2:$addr),
206 [(set tGPR:$dst, (zextloadi16 t_addrmode_s2:$addr))]>;
208 def tLDRSB : TI1<(outs tGPR:$dst), (ins t_addrmode_rr:$addr),
210 [(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>;
212 def tLDRSH : TI2<(outs tGPR:$dst), (ins t_addrmode_rr:$addr),
214 [(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>;
216 let canFoldAsLoad = 1 in
217 def tLDRspi : TIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr),
219 [(set tGPR:$dst, (load t_addrmode_sp:$addr))]>;
221 // Special instruction for restore. It cannot clobber condition register
222 // when it's expanded by eliminateCallFramePseudoInstr().
223 let canFoldAsLoad = 1, mayLoad = 1 in
224 def tRestore : TIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr),
225 "ldr $dst, $addr", []>;
228 let canFoldAsLoad = 1 in
229 def tLDRpci : TIs<(outs tGPR:$dst), (ins i32imm:$addr),
231 [(set tGPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>;
233 // Special LDR for loads from non-pc-relative constpools.
234 let canFoldAsLoad = 1, mayLoad = 1, isReMaterializable = 1 in
235 def tLDRcp : TIs<(outs tGPR:$dst), (ins i32imm:$addr),
236 "ldr $dst, $addr", []>;
238 def tSTR : TI4<(outs), (ins tGPR:$src, t_addrmode_s4:$addr),
240 [(store tGPR:$src, t_addrmode_s4:$addr)]>;
242 def tSTRB : TI1<(outs), (ins tGPR:$src, t_addrmode_s1:$addr),
244 [(truncstorei8 tGPR:$src, t_addrmode_s1:$addr)]>;
246 def tSTRH : TI2<(outs), (ins tGPR:$src, t_addrmode_s2:$addr),
248 [(truncstorei16 tGPR:$src, t_addrmode_s2:$addr)]>;
250 def tSTRspi : TIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr),
252 [(store tGPR:$src, t_addrmode_sp:$addr)]>;
254 let mayStore = 1 in {
255 // Special instruction for spill. It cannot clobber condition register
256 // when it's expanded by eliminateCallFramePseudoInstr().
257 def tSpill : TIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr),
258 "str $src, $addr", []>;
261 //===----------------------------------------------------------------------===//
262 // Load / store multiple Instructions.
265 // TODO: A7-44: LDMIA - load multiple
268 def tPOP : TI<(outs reglist:$dst1, variable_ops), (ins),
272 def tPUSH : TI<(outs), (ins reglist:$src1, variable_ops),
275 //===----------------------------------------------------------------------===//
276 // Arithmetic Instructions.
280 def tADC : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
282 [(set tGPR:$dst, (adde tGPR:$lhs, tGPR:$rhs))]>;
284 def tADDS : TI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
285 "add $dst, $lhs, $rhs",
286 [(set tGPR:$dst, (addc tGPR:$lhs, tGPR:$rhs))]>;
289 def tADDi3 : TI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
290 "add $dst, $lhs, $rhs",
291 [(set tGPR:$dst, (add tGPR:$lhs, imm0_7:$rhs))]>;
293 def tADDi8 : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
295 [(set tGPR:$dst, (add tGPR:$lhs, imm8_255:$rhs))]>;
297 def tADDrr : TI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
298 "add $dst, $lhs, $rhs",
299 [(set tGPR:$dst, (add tGPR:$lhs, tGPR:$rhs))]>;
301 def tADDhirr : TIt<(outs tGPR:$dst), (ins GPR:$lhs, GPR:$rhs),
302 "add $dst, $rhs @ addhirr", []>;
304 def tADDrPCi : TI<(outs tGPR:$dst), (ins i32imm:$rhs),
305 "add $dst, pc, $rhs * 4", []>;
307 def tADDrSPi : TI<(outs tGPR:$dst), (ins GPR:$sp, i32imm:$rhs),
308 "add $dst, $sp, $rhs * 4 @ addrspi", []>;
310 def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs),
311 "add $dst, $rhs * 4", []>;
313 def tAND : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
315 [(set tGPR:$dst, (and tGPR:$lhs, tGPR:$rhs))]>;
317 def tASRri : TI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
318 "asr $dst, $lhs, $rhs",
319 [(set tGPR:$dst, (sra tGPR:$lhs, imm:$rhs))]>;
321 def tASRrr : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
323 [(set tGPR:$dst, (sra tGPR:$lhs, tGPR:$rhs))]>;
325 def tBIC : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
327 [(set tGPR:$dst, (and tGPR:$lhs, (not tGPR:$rhs)))]>;
330 def tCMN : TI<(outs), (ins tGPR:$lhs, tGPR:$rhs),
332 [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
334 def tCMPi8 : TI<(outs), (ins tGPR:$lhs, i32imm:$rhs),
336 [(ARMcmp tGPR:$lhs, imm0_255:$rhs)]>;
338 def tCMPr : TI<(outs), (ins tGPR:$lhs, tGPR:$rhs),
340 [(ARMcmp tGPR:$lhs, tGPR:$rhs)]>;
342 def tTST : TI<(outs), (ins tGPR:$lhs, tGPR:$rhs),
344 [(ARMcmpNZ (and tGPR:$lhs, tGPR:$rhs), 0)]>;
346 def tCMNNZ : TI<(outs), (ins tGPR:$lhs, tGPR:$rhs),
348 [(ARMcmpNZ tGPR:$lhs, (ineg tGPR:$rhs))]>;
350 def tCMPNZi8 : TI<(outs), (ins tGPR:$lhs, i32imm:$rhs),
352 [(ARMcmpNZ tGPR:$lhs, imm0_255:$rhs)]>;
354 def tCMPNZr : TI<(outs), (ins tGPR:$lhs, tGPR:$rhs),
356 [(ARMcmpNZ tGPR:$lhs, tGPR:$rhs)]>;
358 // TODO: A7-37: CMP(3) - cmp hi regs
360 def tEOR : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
362 [(set tGPR:$dst, (xor tGPR:$lhs, tGPR:$rhs))]>;
364 def tLSLri : TI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
365 "lsl $dst, $lhs, $rhs",
366 [(set tGPR:$dst, (shl tGPR:$lhs, imm:$rhs))]>;
368 def tLSLrr : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
370 [(set tGPR:$dst, (shl tGPR:$lhs, tGPR:$rhs))]>;
372 def tLSRri : TI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
373 "lsr $dst, $lhs, $rhs",
374 [(set tGPR:$dst, (srl tGPR:$lhs, imm:$rhs))]>;
376 def tLSRrr : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
378 [(set tGPR:$dst, (srl tGPR:$lhs, tGPR:$rhs))]>;
380 // FIXME: This is not rematerializable because mov changes the condition code.
381 def tMOVi8 : TI<(outs tGPR:$dst), (ins i32imm:$src),
383 [(set tGPR:$dst, imm0_255:$src)]>;
385 // TODO: A7-73: MOV(2) - mov setting flag.
388 // Note: MOV(2) of two low regs updates the flags, so we emit this as 'cpy',
389 // which is MOV(3). This also supports high registers.
390 def tMOVr : TI<(outs tGPR:$dst), (ins tGPR:$src),
391 "cpy $dst, $src", []>;
392 def tMOVhir2lor : TI<(outs tGPR:$dst), (ins GPR:$src),
393 "cpy $dst, $src\t@ hir2lor", []>;
394 def tMOVlor2hir : TI<(outs GPR:$dst), (ins tGPR:$src),
395 "cpy $dst, $src\t@ lor2hir", []>;
396 def tMOVhir2hir : TI<(outs GPR:$dst), (ins GPR:$src),
397 "cpy $dst, $src\t@ hir2hir", []>;
399 def tMUL : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
401 [(set tGPR:$dst, (mul tGPR:$lhs, tGPR:$rhs))]>;
403 def tMVN : TI<(outs tGPR:$dst), (ins tGPR:$src),
405 [(set tGPR:$dst, (not tGPR:$src))]>;
407 def tNEG : TI<(outs tGPR:$dst), (ins tGPR:$src),
409 [(set tGPR:$dst, (ineg tGPR:$src))]>;
411 def tORR : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
413 [(set tGPR:$dst, (or tGPR:$lhs, tGPR:$rhs))]>;
416 def tREV : TI<(outs tGPR:$dst), (ins tGPR:$src),
418 [(set tGPR:$dst, (bswap tGPR:$src))]>,
419 Requires<[IsThumb, HasV6]>;
421 def tREV16 : TI<(outs tGPR:$dst), (ins tGPR:$src),
424 (or (and (srl tGPR:$src, 8), 0xFF),
425 (or (and (shl tGPR:$src, 8), 0xFF00),
426 (or (and (srl tGPR:$src, 8), 0xFF0000),
427 (and (shl tGPR:$src, 8), 0xFF000000)))))]>,
428 Requires<[IsThumb, HasV6]>;
430 def tREVSH : TI<(outs tGPR:$dst), (ins tGPR:$src),
434 (or (srl (and tGPR:$src, 0xFFFF), 8),
435 (shl tGPR:$src, 8)), i16))]>,
436 Requires<[IsThumb, HasV6]>;
438 def tROR : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
440 [(set tGPR:$dst, (rotr tGPR:$lhs, tGPR:$rhs))]>;
443 // Subtract with carry
444 def tSBC : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
446 [(set tGPR:$dst, (sube tGPR:$lhs, tGPR:$rhs))]>;
448 def tSUBS : TI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
449 "sub $dst, $lhs, $rhs",
450 [(set tGPR:$dst, (subc tGPR:$lhs, tGPR:$rhs))]>;
453 // TODO: A7-96: STMIA - store multiple.
455 def tSUBi3 : TI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
456 "sub $dst, $lhs, $rhs",
457 [(set tGPR:$dst, (add tGPR:$lhs, imm0_7_neg:$rhs))]>;
459 def tSUBi8 : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
461 [(set tGPR:$dst, (add tGPR:$lhs, imm8_255_neg:$rhs))]>;
463 def tSUBrr : TI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
464 "sub $dst, $lhs, $rhs",
465 [(set tGPR:$dst, (sub tGPR:$lhs, tGPR:$rhs))]>;
467 def tSUBspi : TIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs),
468 "sub $dst, $rhs * 4", []>;
470 def tSXTB : TI<(outs tGPR:$dst), (ins tGPR:$src),
472 [(set tGPR:$dst, (sext_inreg tGPR:$src, i8))]>,
473 Requires<[IsThumb, HasV6]>;
474 def tSXTH : TI<(outs tGPR:$dst), (ins tGPR:$src),
476 [(set tGPR:$dst, (sext_inreg tGPR:$src, i16))]>,
477 Requires<[IsThumb, HasV6]>;
480 def tUXTB : TI<(outs tGPR:$dst), (ins tGPR:$src),
482 [(set tGPR:$dst, (and tGPR:$src, 0xFF))]>,
483 Requires<[IsThumb, HasV6]>;
484 def tUXTH : TI<(outs tGPR:$dst), (ins tGPR:$src),
486 [(set tGPR:$dst, (and tGPR:$src, 0xFFFF))]>,
487 Requires<[IsThumb, HasV6]>;
490 // Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation.
491 // Expanded by the scheduler into a branch sequence.
492 let usesCustomDAGSchedInserter = 1 in // Expanded by the scheduler.
494 PseudoInst<(outs tGPR:$dst), (ins tGPR:$false, tGPR:$true, pred:$cc),
496 [/*(set tGPR:$dst, (ARMcmov tGPR:$false, tGPR:$true, imm:$cc))*/]>;
498 // tLEApcrel - Load a pc-relative address into a register without offending the
500 def tLEApcrel : TIx2<(outs tGPR:$dst), (ins i32imm:$label),
501 !strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
502 "${:private}PCRELL${:uid}+4))\n"),
503 !strconcat("\tmov $dst, #PCRELV${:uid}\n",
504 "${:private}PCRELL${:uid}:\n\tadd $dst, pc")),
507 def tLEApcrelJT : TIx2<(outs tGPR:$dst), (ins i32imm:$label, i32imm:$id),
508 !strconcat(!strconcat(".set PCRELV${:uid}, (${label}_${id:no_hash}-(",
509 "${:private}PCRELL${:uid}+4))\n"),
510 !strconcat("\tmov $dst, #PCRELV${:uid}\n",
511 "${:private}PCRELL${:uid}:\n\tadd $dst, pc")),
514 //===----------------------------------------------------------------------===//
518 // __aeabi_read_tp preserves the registers r1-r3.
521 def tTPsoft : TIx2<(outs), (ins),
522 "bl __aeabi_read_tp",
523 [(set R0, ARMthread_pointer)]>;
526 //===----------------------------------------------------------------------===//
527 // Non-Instruction Patterns
530 // ConstantPool, GlobalAddress
531 def : ThumbPat<(ARMWrapper tglobaladdr :$dst), (tLEApcrel tglobaladdr :$dst)>;
532 def : ThumbPat<(ARMWrapper tconstpool :$dst), (tLEApcrel tconstpool :$dst)>;
535 def : ThumbPat<(ARMWrapperJT tjumptable:$dst, imm:$id),
536 (tLEApcrelJT tjumptable:$dst, imm:$id)>;
539 def : ThumbPat<(ARMtcall texternalsym:$func), (tBL texternalsym:$func)>;
540 def : ThumbV5Pat<(ARMcall texternalsym:$func), (tBLXi texternalsym:$func)>;
542 // Indirect calls to ARM routines
543 def : ThumbV5Pat<(ARMcall tGPR:$dst), (tBLXr tGPR:$dst)>;
545 // zextload i1 -> zextload i8
546 def : ThumbPat<(zextloadi1 t_addrmode_s1:$addr),
547 (tLDRB t_addrmode_s1:$addr)>;
549 // extload -> zextload
550 def : ThumbPat<(extloadi1 t_addrmode_s1:$addr), (tLDRB t_addrmode_s1:$addr)>;
551 def : ThumbPat<(extloadi8 t_addrmode_s1:$addr), (tLDRB t_addrmode_s1:$addr)>;
552 def : ThumbPat<(extloadi16 t_addrmode_s2:$addr), (tLDRH t_addrmode_s2:$addr)>;
554 // Large immediate handling.
557 def : ThumbPat<(i32 thumb_immshifted:$src),
558 (tLSLri (tMOVi8 (thumb_immshifted_val imm:$src)),
559 (thumb_immshifted_shamt imm:$src))>;
561 def : ThumbPat<(i32 imm0_255_comp:$src),
562 (tMVN (tMOVi8 (imm_comp_XFORM imm:$src)))>;