thumb2.md (*thumb2_addsi3_compare0): New.
[gcc.git] / gcc / config / arm / thumb2.md
1 ;; ARM Thumb-2 Machine Description
2 ;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
3 ;; Written by CodeSourcery, LLC.
4 ;;
5 ;; This file is part of GCC.
6 ;;
7 ;; GCC is free software; you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 3, or (at your option)
10 ;; any later version.
11 ;;
12 ;; GCC is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GCC; see the file COPYING3. If not see
19 ;; <http://www.gnu.org/licenses/>. */
20
21 ;; Note: Thumb-2 is the variant of the Thumb architecture that adds
22 ;; 32-bit encodings of [almost all of] the Arm instruction set.
23 ;; Some old documents refer to the relatively minor interworking
24 ;; changes made in armv5t as "thumb2". These are considered part
25 ;; the 16-bit Thumb-1 instruction set.
26
27 (define_insn "*thumb2_incscc"
28 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
29 (plus:SI (match_operator:SI 2 "arm_comparison_operator"
30 [(match_operand:CC 3 "cc_register" "") (const_int 0)])
31 (match_operand:SI 1 "s_register_operand" "0,?r")))]
32 "TARGET_THUMB2"
33 "@
34 it\\t%d2\;add%d2\\t%0, %1, #1
35 ite\\t%D2\;mov%D2\\t%0, %1\;add%d2\\t%0, %1, #1"
36 [(set_attr "conds" "use")
37 (set_attr "length" "6,10")]
38 )
39
40 (define_insn "*thumb2_decscc"
41 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
42 (minus:SI (match_operand:SI 1 "s_register_operand" "0,?r")
43 (match_operator:SI 2 "arm_comparison_operator"
44 [(match_operand 3 "cc_register" "") (const_int 0)])))]
45 "TARGET_THUMB2"
46 "@
47 it\\t%d2\;sub%d2\\t%0, %1, #1
48 ite\\t%D2\;mov%D2\\t%0, %1\;sub%d2\\t%0, %1, #1"
49 [(set_attr "conds" "use")
50 (set_attr "length" "6,10")]
51 )
52
53 ;; Thumb-2 only allows shift by constant on data processing instructions
54 (define_insn "*thumb_andsi_not_shiftsi_si"
55 [(set (match_operand:SI 0 "s_register_operand" "=r")
56 (and:SI (not:SI (match_operator:SI 4 "shift_operator"
57 [(match_operand:SI 2 "s_register_operand" "r")
58 (match_operand:SI 3 "const_int_operand" "M")]))
59 (match_operand:SI 1 "s_register_operand" "r")))]
60 "TARGET_THUMB2"
61 "bic%?\\t%0, %1, %2%S4"
62 [(set_attr "predicable" "yes")
63 (set_attr "shift" "2")
64 (set_attr "type" "alu_shift")]
65 )
66
67 (define_insn "*thumb2_smaxsi3"
68 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
69 (smax:SI (match_operand:SI 1 "s_register_operand" "0,r,?r")
70 (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))
71 (clobber (reg:CC CC_REGNUM))]
72 "TARGET_THUMB2"
73 "@
74 cmp\\t%1, %2\;it\\tlt\;movlt\\t%0, %2
75 cmp\\t%1, %2\;it\\tge\;movge\\t%0, %1
76 cmp\\t%1, %2\;ite\\tge\;movge\\t%0, %1\;movlt\\t%0, %2"
77 [(set_attr "conds" "clob")
78 (set_attr "length" "10,10,14")]
79 )
80
81 (define_insn "*thumb2_sminsi3"
82 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
83 (smin:SI (match_operand:SI 1 "s_register_operand" "0,r,?r")
84 (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))
85 (clobber (reg:CC CC_REGNUM))]
86 "TARGET_THUMB2"
87 "@
88 cmp\\t%1, %2\;it\\tge\;movge\\t%0, %2
89 cmp\\t%1, %2\;it\\tlt\;movlt\\t%0, %1
90 cmp\\t%1, %2\;ite\\tlt\;movlt\\t%0, %1\;movge\\t%0, %2"
91 [(set_attr "conds" "clob")
92 (set_attr "length" "10,10,14")]
93 )
94
95 (define_insn "*thumb32_umaxsi3"
96 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
97 (umax:SI (match_operand:SI 1 "s_register_operand" "0,r,?r")
98 (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))
99 (clobber (reg:CC CC_REGNUM))]
100 "TARGET_THUMB2"
101 "@
102 cmp\\t%1, %2\;it\\tcc\;movcc\\t%0, %2
103 cmp\\t%1, %2\;it\\tcs\;movcs\\t%0, %1
104 cmp\\t%1, %2\;ite\\tcs\;movcs\\t%0, %1\;movcc\\t%0, %2"
105 [(set_attr "conds" "clob")
106 (set_attr "length" "10,10,14")]
107 )
108
109 (define_insn "*thumb2_uminsi3"
110 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
111 (umin:SI (match_operand:SI 1 "s_register_operand" "0,r,?r")
112 (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))
113 (clobber (reg:CC CC_REGNUM))]
114 "TARGET_THUMB2"
115 "@
116 cmp\\t%1, %2\;it\\tcs\;movcs\\t%0, %2
117 cmp\\t%1, %2\;it\\tcc\;movcc\\t%0, %1
118 cmp\\t%1, %2\;ite\\tcc\;movcc\\t%0, %1\;movcs\\t%0, %2"
119 [(set_attr "conds" "clob")
120 (set_attr "length" "10,10,14")]
121 )
122
123 (define_insn "*thumb2_notsi_shiftsi"
124 [(set (match_operand:SI 0 "s_register_operand" "=r")
125 (not:SI (match_operator:SI 3 "shift_operator"
126 [(match_operand:SI 1 "s_register_operand" "r")
127 (match_operand:SI 2 "const_int_operand" "M")])))]
128 "TARGET_THUMB2"
129 "mvn%?\\t%0, %1%S3"
130 [(set_attr "predicable" "yes")
131 (set_attr "shift" "1")
132 (set_attr "type" "alu_shift")]
133 )
134
135 (define_insn "*thumb2_notsi_shiftsi_compare0"
136 [(set (reg:CC_NOOV CC_REGNUM)
137 (compare:CC_NOOV (not:SI (match_operator:SI 3 "shift_operator"
138 [(match_operand:SI 1 "s_register_operand" "r")
139 (match_operand:SI 2 "const_int_operand" "M")]))
140 (const_int 0)))
141 (set (match_operand:SI 0 "s_register_operand" "=r")
142 (not:SI (match_op_dup 3 [(match_dup 1) (match_dup 2)])))]
143 "TARGET_THUMB2"
144 "mvn%.\\t%0, %1%S3"
145 [(set_attr "conds" "set")
146 (set_attr "shift" "1")
147 (set_attr "type" "alu_shift")]
148 )
149
150 (define_insn "*thumb2_not_shiftsi_compare0_scratch"
151 [(set (reg:CC_NOOV CC_REGNUM)
152 (compare:CC_NOOV (not:SI (match_operator:SI 3 "shift_operator"
153 [(match_operand:SI 1 "s_register_operand" "r")
154 (match_operand:SI 2 "const_int_operand" "M")]))
155 (const_int 0)))
156 (clobber (match_scratch:SI 0 "=r"))]
157 "TARGET_THUMB2"
158 "mvn%.\\t%0, %1%S3"
159 [(set_attr "conds" "set")
160 (set_attr "shift" "1")
161 (set_attr "type" "alu_shift")]
162 )
163
164 ;; Thumb-2 does not have rsc, so use a clever trick with shifter operands.
165 (define_insn "*thumb2_negdi2"
166 [(set (match_operand:DI 0 "s_register_operand" "=&r,r")
167 (neg:DI (match_operand:DI 1 "s_register_operand" "?r,0")))
168 (clobber (reg:CC CC_REGNUM))]
169 "TARGET_THUMB2"
170 "negs\\t%Q0, %Q1\;sbc\\t%R0, %R1, %R1, lsl #1"
171 [(set_attr "conds" "clob")
172 (set_attr "length" "8")]
173 )
174
175 (define_insn "*thumb2_abssi2"
176 [(set (match_operand:SI 0 "s_register_operand" "=r,&r")
177 (abs:SI (match_operand:SI 1 "s_register_operand" "0,r")))
178 (clobber (reg:CC CC_REGNUM))]
179 "TARGET_THUMB2"
180 "@
181 cmp\\t%0, #0\;it\tlt\;rsblt\\t%0, %0, #0
182 eor%?\\t%0, %1, %1, asr #31\;sub%?\\t%0, %0, %1, asr #31"
183 [(set_attr "conds" "clob,*")
184 (set_attr "shift" "1")
185 ;; predicable can't be set based on the variant, so left as no
186 (set_attr "length" "10,8")]
187 )
188
189 (define_insn "*thumb2_neg_abssi2"
190 [(set (match_operand:SI 0 "s_register_operand" "=r,&r")
191 (neg:SI (abs:SI (match_operand:SI 1 "s_register_operand" "0,r"))))
192 (clobber (reg:CC CC_REGNUM))]
193 "TARGET_THUMB2"
194 "@
195 cmp\\t%0, #0\;it\\tgt\;rsbgt\\t%0, %0, #0
196 eor%?\\t%0, %1, %1, asr #31\;rsb%?\\t%0, %0, %1, asr #31"
197 [(set_attr "conds" "clob,*")
198 (set_attr "shift" "1")
199 ;; predicable can't be set based on the variant, so left as no
200 (set_attr "length" "10,8")]
201 )
202
203 (define_insn "*thumb2_movdi"
204 [(set (match_operand:DI 0 "nonimmediate_di_operand" "=r, r, r, r, m")
205 (match_operand:DI 1 "di_operand" "rDa,Db,Dc,mi,r"))]
206 "TARGET_THUMB2
207 && !(TARGET_HARD_FLOAT && (TARGET_MAVERICK || TARGET_VFP))
208 && !TARGET_IWMMXT"
209 "*
210 switch (which_alternative)
211 {
212 case 0:
213 case 1:
214 case 2:
215 return \"#\";
216 default:
217 return output_move_double (operands);
218 }
219 "
220 [(set_attr "length" "8,12,16,8,8")
221 (set_attr "type" "*,*,*,load2,store2")
222 (set_attr "pool_range" "*,*,*,4096,*")
223 (set_attr "neg_pool_range" "*,*,*,0,*")]
224 )
225
226 ;; We have two alternatives here for memory loads (and similarly for stores)
227 ;; to reflect the fact that the permissible constant pool ranges differ
228 ;; between ldr instructions taking low regs and ldr instructions taking high
229 ;; regs. The high register alternatives are not taken into account when
230 ;; choosing register preferences in order to reflect their expense.
231 (define_insn "*thumb2_movsi_insn"
232 [(set (match_operand:SI 0 "nonimmediate_operand" "=rk,r,r,r,l ,*hk,m,*m")
233 (match_operand:SI 1 "general_operand" "rk ,I,K,j,mi,*mi,l,*hk"))]
234 "TARGET_THUMB2 && ! TARGET_IWMMXT
235 && !(TARGET_HARD_FLOAT && TARGET_VFP)
236 && ( register_operand (operands[0], SImode)
237 || register_operand (operands[1], SImode))"
238 "@
239 mov%?\\t%0, %1
240 mov%?\\t%0, %1
241 mvn%?\\t%0, #%B1
242 movw%?\\t%0, %1
243 ldr%?\\t%0, %1
244 ldr%?\\t%0, %1
245 str%?\\t%1, %0
246 str%?\\t%1, %0"
247 [(set_attr "type" "*,*,*,*,load1,load1,store1,store1")
248 (set_attr "predicable" "yes")
249 (set_attr "pool_range" "*,*,*,*,1020,4096,*,*")
250 (set_attr "neg_pool_range" "*,*,*,*,0,0,*,*")]
251 )
252
253 (define_insn "tls_load_dot_plus_four"
254 [(set (match_operand:SI 0 "register_operand" "=l,l,r,r")
255 (mem:SI (unspec:SI [(match_operand:SI 2 "register_operand" "0,1,0,1")
256 (const_int 4)
257 (match_operand 3 "" "")]
258 UNSPEC_PIC_BASE)))
259 (clobber (match_scratch:SI 1 "=X,l,X,r"))]
260 "TARGET_THUMB2"
261 "*
262 (*targetm.asm_out.internal_label) (asm_out_file, \"LPIC\",
263 INTVAL (operands[3]));
264 return \"add\\t%2, %|pc\;ldr%?\\t%0, [%2]\";
265 "
266 [(set_attr "length" "4,4,6,6")]
267 )
268
269 ;; Thumb-2 always has load/store halfword instructions, so we can avoid a lot
270 ;; of the messiness associated with the ARM patterns.
271 (define_insn "*thumb2_movhi_insn"
272 [(set (match_operand:HI 0 "nonimmediate_operand" "=r,r,m,r")
273 (match_operand:HI 1 "general_operand" "rI,n,r,m"))]
274 "TARGET_THUMB2"
275 "@
276 mov%?\\t%0, %1\\t%@ movhi
277 movw%?\\t%0, %L1\\t%@ movhi
278 str%(h%)\\t%1, %0\\t%@ movhi
279 ldr%(h%)\\t%0, %1\\t%@ movhi"
280 [(set_attr "type" "*,*,store1,load1")
281 (set_attr "predicable" "yes")
282 (set_attr "pool_range" "*,*,*,4096")
283 (set_attr "neg_pool_range" "*,*,*,250")]
284 )
285
286 (define_insn "*thumb2_movsf_soft_insn"
287 [(set (match_operand:SF 0 "nonimmediate_operand" "=r,r,m")
288 (match_operand:SF 1 "general_operand" "r,mE,r"))]
289 "TARGET_THUMB2
290 && TARGET_SOFT_FLOAT
291 && (GET_CODE (operands[0]) != MEM
292 || register_operand (operands[1], SFmode))"
293 "@
294 mov%?\\t%0, %1
295 ldr%?\\t%0, %1\\t%@ float
296 str%?\\t%1, %0\\t%@ float"
297 [(set_attr "predicable" "yes")
298 (set_attr "type" "*,load1,store1")
299 (set_attr "pool_range" "*,4096,*")
300 (set_attr "neg_pool_range" "*,0,*")]
301 )
302
303 (define_insn "*thumb2_movdf_soft_insn"
304 [(set (match_operand:DF 0 "nonimmediate_soft_df_operand" "=r,r,r,r,m")
305 (match_operand:DF 1 "soft_df_operand" "rDa,Db,Dc,mF,r"))]
306 "TARGET_THUMB2 && TARGET_SOFT_FLOAT
307 && ( register_operand (operands[0], DFmode)
308 || register_operand (operands[1], DFmode))"
309 "*
310 switch (which_alternative)
311 {
312 case 0:
313 case 1:
314 case 2:
315 return \"#\";
316 default:
317 return output_move_double (operands);
318 }
319 "
320 [(set_attr "length" "8,12,16,8,8")
321 (set_attr "type" "*,*,*,load2,store2")
322 (set_attr "pool_range" "1020")
323 (set_attr "neg_pool_range" "0")]
324 )
325
326 (define_insn "*thumb2_cmpsi_shiftsi"
327 [(set (reg:CC CC_REGNUM)
328 (compare:CC (match_operand:SI 0 "s_register_operand" "r")
329 (match_operator:SI 3 "shift_operator"
330 [(match_operand:SI 1 "s_register_operand" "r")
331 (match_operand:SI 2 "const_int_operand" "M")])))]
332 "TARGET_THUMB2"
333 "cmp%?\\t%0, %1%S3"
334 [(set_attr "conds" "set")
335 (set_attr "shift" "1")
336 (set_attr "type" "alu_shift")]
337 )
338
339 (define_insn "*thumb2_cmpsi_shiftsi_swp"
340 [(set (reg:CC_SWP CC_REGNUM)
341 (compare:CC_SWP (match_operator:SI 3 "shift_operator"
342 [(match_operand:SI 1 "s_register_operand" "r")
343 (match_operand:SI 2 "const_int_operand" "M")])
344 (match_operand:SI 0 "s_register_operand" "r")))]
345 "TARGET_THUMB2"
346 "cmp%?\\t%0, %1%S3"
347 [(set_attr "conds" "set")
348 (set_attr "shift" "1")
349 (set_attr "type" "alu_shift")]
350 )
351
352 (define_insn "*thumb2_cmpsi_neg_shiftsi"
353 [(set (reg:CC CC_REGNUM)
354 (compare:CC (match_operand:SI 0 "s_register_operand" "r")
355 (neg:SI (match_operator:SI 3 "shift_operator"
356 [(match_operand:SI 1 "s_register_operand" "r")
357 (match_operand:SI 2 "const_int_operand" "M")]))))]
358 "TARGET_THUMB2"
359 "cmn%?\\t%0, %1%S3"
360 [(set_attr "conds" "set")
361 (set_attr "shift" "1")
362 (set_attr "type" "alu_shift")]
363 )
364
365 (define_insn "*thumb2_mov_scc"
366 [(set (match_operand:SI 0 "s_register_operand" "=r")
367 (match_operator:SI 1 "arm_comparison_operator"
368 [(match_operand 2 "cc_register" "") (const_int 0)]))]
369 "TARGET_THUMB2"
370 "ite\\t%D1\;mov%D1\\t%0, #0\;mov%d1\\t%0, #1"
371 [(set_attr "conds" "use")
372 (set_attr "length" "10")]
373 )
374
375 (define_insn "*thumb2_mov_negscc"
376 [(set (match_operand:SI 0 "s_register_operand" "=r")
377 (neg:SI (match_operator:SI 1 "arm_comparison_operator"
378 [(match_operand 2 "cc_register" "") (const_int 0)])))]
379 "TARGET_THUMB2"
380 "ite\\t%D1\;mov%D1\\t%0, #0\;mvn%d1\\t%0, #0"
381 [(set_attr "conds" "use")
382 (set_attr "length" "10")]
383 )
384
385 (define_insn "*thumb2_mov_notscc"
386 [(set (match_operand:SI 0 "s_register_operand" "=r")
387 (not:SI (match_operator:SI 1 "arm_comparison_operator"
388 [(match_operand 2 "cc_register" "") (const_int 0)])))]
389 "TARGET_THUMB2"
390 "ite\\t%D1\;mov%D1\\t%0, #0\;mvn%d1\\t%0, #1"
391 [(set_attr "conds" "use")
392 (set_attr "length" "10")]
393 )
394
395 (define_insn "*thumb2_movsicc_insn"
396 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r,r,r,r,r,r")
397 (if_then_else:SI
398 (match_operator 3 "arm_comparison_operator"
399 [(match_operand 4 "cc_register" "") (const_int 0)])
400 (match_operand:SI 1 "arm_not_operand" "0,0,rI,K,rI,rI,K,K")
401 (match_operand:SI 2 "arm_not_operand" "rI,K,0,0,rI,K,rI,K")))]
402 "TARGET_THUMB2"
403 "@
404 it\\t%D3\;mov%D3\\t%0, %2
405 it\\t%D3\;mvn%D3\\t%0, #%B2
406 it\\t%d3\;mov%d3\\t%0, %1
407 it\\t%d3\;mvn%d3\\t%0, #%B1
408 ite\\t%d3\;mov%d3\\t%0, %1\;mov%D3\\t%0, %2
409 ite\\t%d3\;mov%d3\\t%0, %1\;mvn%D3\\t%0, #%B2
410 ite\\t%d3\;mvn%d3\\t%0, #%B1\;mov%D3\\t%0, %2
411 ite\\t%d3\;mvn%d3\\t%0, #%B1\;mvn%D3\\t%0, #%B2"
412 [(set_attr "length" "6,6,6,6,10,10,10,10")
413 (set_attr "conds" "use")]
414 )
415
416 (define_insn "*thumb2_movsfcc_soft_insn"
417 [(set (match_operand:SF 0 "s_register_operand" "=r,r")
418 (if_then_else:SF (match_operator 3 "arm_comparison_operator"
419 [(match_operand 4 "cc_register" "") (const_int 0)])
420 (match_operand:SF 1 "s_register_operand" "0,r")
421 (match_operand:SF 2 "s_register_operand" "r,0")))]
422 "TARGET_THUMB2 && TARGET_SOFT_FLOAT"
423 "@
424 it\\t%D3\;mov%D3\\t%0, %2
425 it\\t%d3\;mov%d3\\t%0, %1"
426 [(set_attr "length" "6,6")
427 (set_attr "conds" "use")]
428 )
429
430 (define_insn "*call_reg_thumb2"
431 [(call (mem:SI (match_operand:SI 0 "s_register_operand" "r"))
432 (match_operand 1 "" ""))
433 (use (match_operand 2 "" ""))
434 (clobber (reg:SI LR_REGNUM))]
435 "TARGET_THUMB2"
436 "blx%?\\t%0"
437 [(set_attr "type" "call")]
438 )
439
440 (define_insn "*call_value_reg_thumb2"
441 [(set (match_operand 0 "" "")
442 (call (mem:SI (match_operand:SI 1 "register_operand" "l*r"))
443 (match_operand 2 "" "")))
444 (use (match_operand 3 "" ""))
445 (clobber (reg:SI LR_REGNUM))]
446 "TARGET_THUMB2"
447 "blx\\t%1"
448 [(set_attr "type" "call")]
449 )
450
451 (define_insn "*thumb2_indirect_jump"
452 [(set (pc)
453 (match_operand:SI 0 "register_operand" "l*r"))]
454 "TARGET_THUMB2"
455 "bx\\t%0"
456 [(set_attr "conds" "clob")]
457 )
458 ;; Don't define thumb2_load_indirect_jump because we can't guarantee label
459 ;; addresses will have the thumb bit set correctly.
460
461
462 ;; Patterns to allow combination of arithmetic, cond code and shifts
463
464 (define_insn "*thumb2_arith_shiftsi"
465 [(set (match_operand:SI 0 "s_register_operand" "=r")
466 (match_operator:SI 1 "shiftable_operator"
467 [(match_operator:SI 3 "shift_operator"
468 [(match_operand:SI 4 "s_register_operand" "r")
469 (match_operand:SI 5 "const_int_operand" "M")])
470 (match_operand:SI 2 "s_register_operand" "r")]))]
471 "TARGET_THUMB2"
472 "%i1%?\\t%0, %2, %4%S3"
473 [(set_attr "predicable" "yes")
474 (set_attr "shift" "4")
475 (set_attr "type" "alu_shift")]
476 )
477
478 ;; ??? What does this splitter do? Copied from the ARM version
479 (define_split
480 [(set (match_operand:SI 0 "s_register_operand" "")
481 (match_operator:SI 1 "shiftable_operator"
482 [(match_operator:SI 2 "shiftable_operator"
483 [(match_operator:SI 3 "shift_operator"
484 [(match_operand:SI 4 "s_register_operand" "")
485 (match_operand:SI 5 "const_int_operand" "")])
486 (match_operand:SI 6 "s_register_operand" "")])
487 (match_operand:SI 7 "arm_rhs_operand" "")]))
488 (clobber (match_operand:SI 8 "s_register_operand" ""))]
489 "TARGET_32BIT"
490 [(set (match_dup 8)
491 (match_op_dup 2 [(match_op_dup 3 [(match_dup 4) (match_dup 5)])
492 (match_dup 6)]))
493 (set (match_dup 0)
494 (match_op_dup 1 [(match_dup 8) (match_dup 7)]))]
495 "")
496
497 (define_insn "*thumb2_arith_shiftsi_compare0"
498 [(set (reg:CC_NOOV CC_REGNUM)
499 (compare:CC_NOOV (match_operator:SI 1 "shiftable_operator"
500 [(match_operator:SI 3 "shift_operator"
501 [(match_operand:SI 4 "s_register_operand" "r")
502 (match_operand:SI 5 "const_int_operand" "M")])
503 (match_operand:SI 2 "s_register_operand" "r")])
504 (const_int 0)))
505 (set (match_operand:SI 0 "s_register_operand" "=r")
506 (match_op_dup 1 [(match_op_dup 3 [(match_dup 4) (match_dup 5)])
507 (match_dup 2)]))]
508 "TARGET_32BIT"
509 "%i1%.\\t%0, %2, %4%S3"
510 [(set_attr "conds" "set")
511 (set_attr "shift" "4")
512 (set_attr "type" "alu_shift")]
513 )
514
515 (define_insn "*thumb2_arith_shiftsi_compare0_scratch"
516 [(set (reg:CC_NOOV CC_REGNUM)
517 (compare:CC_NOOV (match_operator:SI 1 "shiftable_operator"
518 [(match_operator:SI 3 "shift_operator"
519 [(match_operand:SI 4 "s_register_operand" "r")
520 (match_operand:SI 5 "const_int_operand" "M")])
521 (match_operand:SI 2 "s_register_operand" "r")])
522 (const_int 0)))
523 (clobber (match_scratch:SI 0 "=r"))]
524 "TARGET_THUMB2"
525 "%i1%.\\t%0, %2, %4%S3"
526 [(set_attr "conds" "set")
527 (set_attr "shift" "4")
528 (set_attr "type" "alu_shift")]
529 )
530
531 (define_insn "*thumb2_sub_shiftsi"
532 [(set (match_operand:SI 0 "s_register_operand" "=r")
533 (minus:SI (match_operand:SI 1 "s_register_operand" "r")
534 (match_operator:SI 2 "shift_operator"
535 [(match_operand:SI 3 "s_register_operand" "r")
536 (match_operand:SI 4 "const_int_operand" "M")])))]
537 "TARGET_THUMB2"
538 "sub%?\\t%0, %1, %3%S2"
539 [(set_attr "predicable" "yes")
540 (set_attr "shift" "3")
541 (set_attr "type" "alu_shift")]
542 )
543
544 (define_insn "*thumb2_sub_shiftsi_compare0"
545 [(set (reg:CC_NOOV CC_REGNUM)
546 (compare:CC_NOOV
547 (minus:SI (match_operand:SI 1 "s_register_operand" "r")
548 (match_operator:SI 2 "shift_operator"
549 [(match_operand:SI 3 "s_register_operand" "r")
550 (match_operand:SI 4 "const_int_operand" "M")]))
551 (const_int 0)))
552 (set (match_operand:SI 0 "s_register_operand" "=r")
553 (minus:SI (match_dup 1) (match_op_dup 2 [(match_dup 3)
554 (match_dup 4)])))]
555 "TARGET_THUMB2"
556 "sub%.\\t%0, %1, %3%S2"
557 [(set_attr "conds" "set")
558 (set_attr "shift" "3")
559 (set_attr "type" "alu_shift")]
560 )
561
562 (define_insn "*thumb2_sub_shiftsi_compare0_scratch"
563 [(set (reg:CC_NOOV CC_REGNUM)
564 (compare:CC_NOOV
565 (minus:SI (match_operand:SI 1 "s_register_operand" "r")
566 (match_operator:SI 2 "shift_operator"
567 [(match_operand:SI 3 "s_register_operand" "r")
568 (match_operand:SI 4 "const_int_operand" "M")]))
569 (const_int 0)))
570 (clobber (match_scratch:SI 0 "=r"))]
571 "TARGET_THUMB2"
572 "sub%.\\t%0, %1, %3%S2"
573 [(set_attr "conds" "set")
574 (set_attr "shift" "3")
575 (set_attr "type" "alu_shift")]
576 )
577
578 (define_insn "*thumb2_and_scc"
579 [(set (match_operand:SI 0 "s_register_operand" "=r")
580 (and:SI (match_operator:SI 1 "arm_comparison_operator"
581 [(match_operand 3 "cc_register" "") (const_int 0)])
582 (match_operand:SI 2 "s_register_operand" "r")))]
583 "TARGET_THUMB2"
584 "ite\\t%D1\;mov%D1\\t%0, #0\;and%d1\\t%0, %2, #1"
585 [(set_attr "conds" "use")
586 (set_attr "length" "10")]
587 )
588
589 (define_insn "*thumb2_ior_scc"
590 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
591 (ior:SI (match_operator:SI 2 "arm_comparison_operator"
592 [(match_operand 3 "cc_register" "") (const_int 0)])
593 (match_operand:SI 1 "s_register_operand" "0,?r")))]
594 "TARGET_THUMB2"
595 "@
596 it\\t%d2\;orr%d2\\t%0, %1, #1
597 ite\\t%D2\;mov%D2\\t%0, %1\;orr%d2\\t%0, %1, #1"
598 [(set_attr "conds" "use")
599 (set_attr "length" "6,10")]
600 )
601
602 (define_insn "*thumb2_compare_scc"
603 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
604 (match_operator:SI 1 "arm_comparison_operator"
605 [(match_operand:SI 2 "s_register_operand" "r,r")
606 (match_operand:SI 3 "arm_add_operand" "rI,L")]))
607 (clobber (reg:CC CC_REGNUM))]
608 "TARGET_THUMB2"
609 "*
610 if (operands[3] == const0_rtx)
611 {
612 if (GET_CODE (operands[1]) == LT)
613 return \"lsr\\t%0, %2, #31\";
614
615 if (GET_CODE (operands[1]) == GE)
616 return \"mvn\\t%0, %2\;lsr\\t%0, %0, #31\";
617
618 if (GET_CODE (operands[1]) == EQ)
619 return \"rsbs\\t%0, %2, #1\;it\\tcc\;movcc\\t%0, #0\";
620 }
621
622 if (GET_CODE (operands[1]) == NE)
623 {
624 if (which_alternative == 1)
625 return \"adds\\t%0, %2, #%n3\;it\\tne\;movne\\t%0, #1\";
626 return \"subs\\t%0, %2, %3\;it\\tne\;movne\\t%0, #1\";
627 }
628 if (which_alternative == 1)
629 output_asm_insn (\"cmn\\t%2, #%n3\", operands);
630 else
631 output_asm_insn (\"cmp\\t%2, %3\", operands);
632 return \"ite\\t%D1\;mov%D1\\t%0, #0\;mov%d1\\t%0, #1\";
633 "
634 [(set_attr "conds" "clob")
635 (set_attr "length" "14")]
636 )
637
638 (define_insn "*thumb2_cond_move"
639 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
640 (if_then_else:SI (match_operator 3 "equality_operator"
641 [(match_operator 4 "arm_comparison_operator"
642 [(match_operand 5 "cc_register" "") (const_int 0)])
643 (const_int 0)])
644 (match_operand:SI 1 "arm_rhs_operand" "0,rI,?rI")
645 (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))]
646 "TARGET_THUMB2"
647 "*
648 if (GET_CODE (operands[3]) == NE)
649 {
650 if (which_alternative != 1)
651 output_asm_insn (\"it\\t%D4\;mov%D4\\t%0, %2\", operands);
652 if (which_alternative != 0)
653 output_asm_insn (\"it\\t%d4\;mov%d4\\t%0, %1\", operands);
654 return \"\";
655 }
656 switch (which_alternative)
657 {
658 case 0:
659 output_asm_insn (\"it\\t%d4\", operands);
660 break;
661 case 1:
662 output_asm_insn (\"it\\t%D4\", operands);
663 break;
664 case 2:
665 output_asm_insn (\"ite\\t%D4\", operands);
666 break;
667 default:
668 abort();
669 }
670 if (which_alternative != 0)
671 output_asm_insn (\"mov%D4\\t%0, %1\", operands);
672 if (which_alternative != 1)
673 output_asm_insn (\"mov%d4\\t%0, %2\", operands);
674 return \"\";
675 "
676 [(set_attr "conds" "use")
677 (set_attr "length" "6,6,10")]
678 )
679
680 (define_insn "*thumb2_cond_arith"
681 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
682 (match_operator:SI 5 "shiftable_operator"
683 [(match_operator:SI 4 "arm_comparison_operator"
684 [(match_operand:SI 2 "s_register_operand" "r,r")
685 (match_operand:SI 3 "arm_rhs_operand" "rI,rI")])
686 (match_operand:SI 1 "s_register_operand" "0,?r")]))
687 (clobber (reg:CC CC_REGNUM))]
688 "TARGET_THUMB2"
689 "*
690 if (GET_CODE (operands[4]) == LT && operands[3] == const0_rtx)
691 return \"%i5\\t%0, %1, %2, lsr #31\";
692
693 output_asm_insn (\"cmp\\t%2, %3\", operands);
694 if (GET_CODE (operands[5]) == AND)
695 {
696 output_asm_insn (\"ite\\t%D4\", operands);
697 output_asm_insn (\"mov%D4\\t%0, #0\", operands);
698 }
699 else if (GET_CODE (operands[5]) == MINUS)
700 {
701 output_asm_insn (\"ite\\t%D4\", operands);
702 output_asm_insn (\"rsb%D4\\t%0, %1, #0\", operands);
703 }
704 else if (which_alternative != 0)
705 {
706 output_asm_insn (\"ite\\t%D4\", operands);
707 output_asm_insn (\"mov%D4\\t%0, %1\", operands);
708 }
709 else
710 output_asm_insn (\"it\\t%d4\", operands);
711 return \"%i5%d4\\t%0, %1, #1\";
712 "
713 [(set_attr "conds" "clob")
714 (set_attr "length" "14")]
715 )
716
717 (define_insn "*thumb2_cond_sub"
718 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
719 (minus:SI (match_operand:SI 1 "s_register_operand" "0,?r")
720 (match_operator:SI 4 "arm_comparison_operator"
721 [(match_operand:SI 2 "s_register_operand" "r,r")
722 (match_operand:SI 3 "arm_rhs_operand" "rI,rI")])))
723 (clobber (reg:CC CC_REGNUM))]
724 "TARGET_THUMB2"
725 "*
726 output_asm_insn (\"cmp\\t%2, %3\", operands);
727 if (which_alternative != 0)
728 {
729 output_asm_insn (\"ite\\t%D4\", operands);
730 output_asm_insn (\"mov%D4\\t%0, %1\", operands);
731 }
732 else
733 output_asm_insn (\"it\\t%d4\", operands);
734 return \"sub%d4\\t%0, %1, #1\";
735 "
736 [(set_attr "conds" "clob")
737 (set_attr "length" "10,14")]
738 )
739
740 (define_insn "*thumb2_negscc"
741 [(set (match_operand:SI 0 "s_register_operand" "=r")
742 (neg:SI (match_operator 3 "arm_comparison_operator"
743 [(match_operand:SI 1 "s_register_operand" "r")
744 (match_operand:SI 2 "arm_rhs_operand" "rI")])))
745 (clobber (reg:CC CC_REGNUM))]
746 "TARGET_THUMB2"
747 "*
748 if (GET_CODE (operands[3]) == LT && operands[2] == const0_rtx)
749 return \"asr\\t%0, %1, #31\";
750
751 if (GET_CODE (operands[3]) == NE)
752 return \"subs\\t%0, %1, %2\;it\\tne\;mvnne\\t%0, #0\";
753
754 output_asm_insn (\"cmp\\t%1, %2\", operands);
755 output_asm_insn (\"ite\\t%D3\", operands);
756 output_asm_insn (\"mov%D3\\t%0, #0\", operands);
757 return \"mvn%d3\\t%0, #0\";
758 "
759 [(set_attr "conds" "clob")
760 (set_attr "length" "14")]
761 )
762
763 (define_insn "*thumb2_movcond"
764 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
765 (if_then_else:SI
766 (match_operator 5 "arm_comparison_operator"
767 [(match_operand:SI 3 "s_register_operand" "r,r,r")
768 (match_operand:SI 4 "arm_add_operand" "rIL,rIL,rIL")])
769 (match_operand:SI 1 "arm_rhs_operand" "0,rI,?rI")
770 (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))
771 (clobber (reg:CC CC_REGNUM))]
772 "TARGET_THUMB2"
773 "*
774 if (GET_CODE (operands[5]) == LT
775 && (operands[4] == const0_rtx))
776 {
777 if (which_alternative != 1 && GET_CODE (operands[1]) == REG)
778 {
779 if (operands[2] == const0_rtx)
780 return \"and\\t%0, %1, %3, asr #31\";
781 return \"ands\\t%0, %1, %3, asr #32\;it\\tcc\;movcc\\t%0, %2\";
782 }
783 else if (which_alternative != 0 && GET_CODE (operands[2]) == REG)
784 {
785 if (operands[1] == const0_rtx)
786 return \"bic\\t%0, %2, %3, asr #31\";
787 return \"bics\\t%0, %2, %3, asr #32\;it\\tcs\;movcs\\t%0, %1\";
788 }
789 /* The only case that falls through to here is when both ops 1 & 2
790 are constants. */
791 }
792
793 if (GET_CODE (operands[5]) == GE
794 && (operands[4] == const0_rtx))
795 {
796 if (which_alternative != 1 && GET_CODE (operands[1]) == REG)
797 {
798 if (operands[2] == const0_rtx)
799 return \"bic\\t%0, %1, %3, asr #31\";
800 return \"bics\\t%0, %1, %3, asr #32\;it\\tcs\;movcs\\t%0, %2\";
801 }
802 else if (which_alternative != 0 && GET_CODE (operands[2]) == REG)
803 {
804 if (operands[1] == const0_rtx)
805 return \"and\\t%0, %2, %3, asr #31\";
806 return \"ands\\t%0, %2, %3, asr #32\;it\tcc\;movcc\\t%0, %1\";
807 }
808 /* The only case that falls through to here is when both ops 1 & 2
809 are constants. */
810 }
811 if (GET_CODE (operands[4]) == CONST_INT
812 && !const_ok_for_arm (INTVAL (operands[4])))
813 output_asm_insn (\"cmn\\t%3, #%n4\", operands);
814 else
815 output_asm_insn (\"cmp\\t%3, %4\", operands);
816 switch (which_alternative)
817 {
818 case 0:
819 output_asm_insn (\"it\\t%D5\", operands);
820 break;
821 case 1:
822 output_asm_insn (\"it\\t%d5\", operands);
823 break;
824 case 2:
825 output_asm_insn (\"ite\\t%d5\", operands);
826 break;
827 default:
828 abort();
829 }
830 if (which_alternative != 0)
831 output_asm_insn (\"mov%d5\\t%0, %1\", operands);
832 if (which_alternative != 1)
833 output_asm_insn (\"mov%D5\\t%0, %2\", operands);
834 return \"\";
835 "
836 [(set_attr "conds" "clob")
837 (set_attr "length" "10,10,14")]
838 )
839
840 ;; Zero and sign extension instructions.
841
842 (define_insn_and_split "*thumb2_zero_extendsidi2"
843 [(set (match_operand:DI 0 "s_register_operand" "=r")
844 (zero_extend:DI (match_operand:SI 1 "s_register_operand" "r")))]
845 "TARGET_THUMB2"
846 "mov%?\\t%Q0, %1\;mov%?\\t%R0, #0"
847 "&& reload_completed"
848 [(set (match_dup 0) (match_dup 1))]
849 "
850 {
851 rtx lo_part = gen_lowpart (SImode, operands[0]);
852 if (!REG_P (lo_part) || REGNO (lo_part) != REGNO (operands[1]))
853 emit_move_insn (lo_part, operands[1]);
854 operands[0] = gen_highpart (SImode, operands[0]);
855 operands[1] = const0_rtx;
856 }
857 "
858 [(set_attr "length" "8")
859 (set_attr "ce_count" "2")
860 (set_attr "predicable" "yes")]
861 )
862
863 (define_insn_and_split "*thumb2_zero_extendhidi2"
864 [(set (match_operand:DI 0 "s_register_operand" "=r,r")
865 (zero_extend:DI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
866 "TARGET_THUMB2"
867 "@
868 uxth%?\\t%Q0, %1\;mov%?\\t%R0, #0
869 ldr%(h%)\\t%Q0, %1\;mov%?\\t%R0, #0"
870 "&& reload_completed"
871 [(set (match_dup 0) (zero_extend:SI (match_dup 1)))
872 (set (match_dup 2) (match_dup 3))]
873 "
874 {
875 operands[2] = gen_highpart (SImode, operands[0]);
876 operands[0] = gen_lowpart (SImode, operands[0]);
877 operands[3] = const0_rtx;
878 }
879 "
880 [(set_attr "length" "8")
881 (set_attr "ce_count" "2")
882 (set_attr "predicable" "yes")
883 (set_attr "type" "*,load_byte")
884 (set_attr "pool_range" "*,4092")
885 (set_attr "neg_pool_range" "*,250")]
886 )
887
888 (define_insn_and_split "*thumb2_zero_extendqidi2"
889 [(set (match_operand:DI 0 "s_register_operand" "=r,r")
890 (zero_extend:DI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
891 "TARGET_THUMB2"
892 "@
893 uxtb%?\\t%Q0, %1\;mov%?\\t%R0, #0
894 ldr%(b%)\\t%Q0, %1\;mov%?\\t%R0, #0"
895 "&& reload_completed"
896 [(set (match_dup 0) (zero_extend:SI (match_dup 1)))
897 (set (match_dup 2) (match_dup 3))]
898 "
899 {
900 operands[2] = gen_highpart (SImode, operands[0]);
901 operands[0] = gen_lowpart (SImode, operands[0]);
902 operands[3] = const0_rtx;
903 }
904 "
905 [(set_attr "length" "8")
906 (set_attr "ce_count" "2")
907 (set_attr "predicable" "yes")
908 (set_attr "type" "*,load_byte")
909 (set_attr "pool_range" "*,4092")
910 (set_attr "neg_pool_range" "*,250")]
911 )
912
913 (define_insn_and_split "*thumb2_extendsidi2"
914 [(set (match_operand:DI 0 "s_register_operand" "=r")
915 (sign_extend:DI (match_operand:SI 1 "s_register_operand" "r")))]
916 "TARGET_THUMB2"
917 "mov%?\\t%Q0, %1\;asr?\\t%R0, %1, #31"
918 "&& reload_completed"
919 [(set (match_dup 0) (ashiftrt:SI (match_dup 1) (const_int 31)))]
920 {
921 rtx lo_part = gen_lowpart (SImode, operands[0]);
922
923 if (!REG_P (lo_part) || REGNO (lo_part) != REGNO (operands[1]))
924 emit_move_insn (lo_part, operands[1]);
925 operands[0] = gen_highpart (SImode, operands[0]);
926 }
927 [(set_attr "length" "8")
928 (set_attr "ce_count" "2")
929 (set_attr "shift" "1")
930 (set_attr "predicable" "yes")]
931 )
932
933 (define_insn_and_split "*thumb2_extendhidi2"
934 [(set (match_operand:DI 0 "s_register_operand" "=r,r")
935 (sign_extend:DI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
936 "TARGET_THUMB2"
937 "@
938 sxth%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31
939 ldrsh%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31"
940 "&& reload_completed"
941 [(set (match_dup 0) (sign_extend:SI (match_dup 1)))
942 (set (match_dup 2) (ashiftrt:SI (match_dup 0) (const_int 31)))]
943 "
944 {
945 operands[2] = gen_highpart (SImode, operands[0]);
946 operands[0] = gen_lowpart (SImode, operands[0]);
947 }
948 "
949 [(set_attr "length" "8")
950 (set_attr "ce_count" "2")
951 (set_attr "predicable" "yes")
952 (set_attr "type" "*,load_byte")
953 (set_attr "pool_range" "*,4092")
954 (set_attr "neg_pool_range" "*,250")]
955 )
956
957 (define_insn_and_split "*thumb2_extendqidi2"
958 [(set (match_operand:DI 0 "s_register_operand" "=r,r")
959 (sign_extend:DI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
960 "TARGET_THUMB2"
961 "@
962 sxtb%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31
963 ldrsb%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31"
964 "&& reload_completed"
965 [(set (match_dup 0) (sign_extend:SI (match_dup 1)))
966 (set (match_dup 2) (ashiftrt:SI (match_dup 0) (const_int 31)))]
967 "
968 {
969 operands[2] = gen_highpart (SImode, operands[0]);
970 operands[0] = gen_lowpart (SImode, operands[0]);
971 }
972 "
973 [(set_attr "length" "8")
974 (set_attr "ce_count" "2")
975 (set_attr "predicable" "yes")
976 (set_attr "type" "*,load_byte")
977 (set_attr "pool_range" "*,4092")
978 (set_attr "neg_pool_range" "*,250")]
979 )
980
981 ;; All supported Thumb2 implementations are armv6, so only that case is
982 ;; provided.
983 (define_insn "*thumb2_extendqisi_v6"
984 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
985 (sign_extend:SI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
986 "TARGET_THUMB2 && arm_arch6"
987 "@
988 sxtb%?\\t%0, %1
989 ldr%(sb%)\\t%0, %1"
990 [(set_attr "type" "alu_shift,load_byte")
991 (set_attr "predicable" "yes")
992 (set_attr "pool_range" "*,4096")
993 (set_attr "neg_pool_range" "*,250")]
994 )
995
996 (define_insn "*thumb2_zero_extendhisi2_v6"
997 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
998 (zero_extend:SI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
999 "TARGET_THUMB2 && arm_arch6"
1000 "@
1001 uxth%?\\t%0, %1
1002 ldr%(h%)\\t%0, %1"
1003 [(set_attr "type" "alu_shift,load_byte")
1004 (set_attr "predicable" "yes")
1005 (set_attr "pool_range" "*,4096")
1006 (set_attr "neg_pool_range" "*,250")]
1007 )
1008
1009 (define_insn "*thumb2_zero_extendqisi2_v6"
1010 [(set (match_operand:SI 0 "s_register_operand" "=r,r")
1011 (zero_extend:SI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
1012 "TARGET_THUMB2 && arm_arch6"
1013 "@
1014 uxtb%(%)\\t%0, %1
1015 ldr%(b%)\\t%0, %1\\t%@ zero_extendqisi2"
1016 [(set_attr "type" "alu_shift,load_byte")
1017 (set_attr "predicable" "yes")
1018 (set_attr "pool_range" "*,4096")
1019 (set_attr "neg_pool_range" "*,250")]
1020 )
1021
1022 (define_insn "thumb2_casesi_internal"
1023 [(parallel [(set (pc)
1024 (if_then_else
1025 (leu (match_operand:SI 0 "s_register_operand" "r")
1026 (match_operand:SI 1 "arm_rhs_operand" "rI"))
1027 (mem:SI (plus:SI (mult:SI (match_dup 0) (const_int 4))
1028 (label_ref (match_operand 2 "" ""))))
1029 (label_ref (match_operand 3 "" ""))))
1030 (clobber (reg:CC CC_REGNUM))
1031 (clobber (match_scratch:SI 4 "=&r"))
1032 (use (label_ref (match_dup 2)))])]
1033 "TARGET_THUMB2 && !flag_pic"
1034 "* return thumb2_output_casesi(operands);"
1035 [(set_attr "conds" "clob")
1036 (set_attr "length" "16")]
1037 )
1038
1039 (define_insn "thumb2_casesi_internal_pic"
1040 [(parallel [(set (pc)
1041 (if_then_else
1042 (leu (match_operand:SI 0 "s_register_operand" "r")
1043 (match_operand:SI 1 "arm_rhs_operand" "rI"))
1044 (mem:SI (plus:SI (mult:SI (match_dup 0) (const_int 4))
1045 (label_ref (match_operand 2 "" ""))))
1046 (label_ref (match_operand 3 "" ""))))
1047 (clobber (reg:CC CC_REGNUM))
1048 (clobber (match_scratch:SI 4 "=&r"))
1049 (clobber (match_scratch:SI 5 "=r"))
1050 (use (label_ref (match_dup 2)))])]
1051 "TARGET_THUMB2 && flag_pic"
1052 "* return thumb2_output_casesi(operands);"
1053 [(set_attr "conds" "clob")
1054 (set_attr "length" "20")]
1055 )
1056
1057 ;; Note: this is not predicable, to avoid issues with linker-generated
1058 ;; interworking stubs.
1059 (define_insn "*thumb2_return"
1060 [(return)]
1061 "TARGET_THUMB2 && USE_RETURN_INSN (FALSE)"
1062 "*
1063 {
1064 return output_return_instruction (const_true_rtx, TRUE, FALSE);
1065 }"
1066 [(set_attr "type" "load1")
1067 (set_attr "length" "12")]
1068 )
1069
1070 (define_insn_and_split "thumb2_eh_return"
1071 [(unspec_volatile [(match_operand:SI 0 "s_register_operand" "r")]
1072 VUNSPEC_EH_RETURN)
1073 (clobber (match_scratch:SI 1 "=&r"))]
1074 "TARGET_THUMB2"
1075 "#"
1076 "&& reload_completed"
1077 [(const_int 0)]
1078 "
1079 {
1080 thumb_set_return_address (operands[0], operands[1]);
1081 DONE;
1082 }"
1083 )
1084
1085 ;; Peepholes and insns for 16-bit flag clobbering instructions.
1086 ;; The conditional forms of these instructions do not clobber CC.
1087 ;; However by the time peepholes are run it is probably too late to do
1088 ;; anything useful with this information.
1089 (define_peephole2
1090 [(set (match_operand:SI 0 "low_register_operand" "")
1091 (match_operator:SI 3 "thumb_16bit_operator"
1092 [(match_operand:SI 1 "low_register_operand" "")
1093 (match_operand:SI 2 "low_register_operand" "")]))]
1094 "TARGET_THUMB2
1095 && (rtx_equal_p(operands[0], operands[1])
1096 || GET_CODE(operands[3]) == PLUS
1097 || GET_CODE(operands[3]) == MINUS)
1098 && peep2_regno_dead_p(0, CC_REGNUM)"
1099 [(parallel
1100 [(set (match_dup 0)
1101 (match_op_dup 3
1102 [(match_dup 1)
1103 (match_dup 2)]))
1104 (clobber (reg:CC CC_REGNUM))])]
1105 ""
1106 )
1107
1108 (define_insn "*thumb2_alusi3_short"
1109 [(set (match_operand:SI 0 "s_register_operand" "=l")
1110 (match_operator:SI 3 "thumb_16bit_operator"
1111 [(match_operand:SI 1 "s_register_operand" "0")
1112 (match_operand:SI 2 "s_register_operand" "l")]))
1113 (clobber (reg:CC CC_REGNUM))]
1114 "TARGET_THUMB2 && reload_completed
1115 && GET_CODE(operands[3]) != PLUS
1116 && GET_CODE(operands[3]) != MINUS"
1117 "%I3%!\\t%0, %1, %2"
1118 [(set_attr "predicable" "yes")
1119 (set_attr "length" "2")]
1120 )
1121
1122 ;; Similarly for 16-bit shift instructions
1123 ;; There is no 16-bit rotate by immediate instruction.
1124 (define_peephole2
1125 [(set (match_operand:SI 0 "low_register_operand" "")
1126 (match_operator:SI 3 "shift_operator"
1127 [(match_operand:SI 1 "low_register_operand" "")
1128 (match_operand:SI 2 "low_reg_or_int_operand" "")]))]
1129 "TARGET_THUMB2
1130 && peep2_regno_dead_p(0, CC_REGNUM)
1131 && ((GET_CODE(operands[3]) != ROTATE && GET_CODE(operands[3]) != ROTATERT)
1132 || REG_P(operands[2]))"
1133 [(parallel
1134 [(set (match_dup 0)
1135 (match_op_dup 3
1136 [(match_dup 1)
1137 (match_dup 2)]))
1138 (clobber (reg:CC CC_REGNUM))])]
1139 ""
1140 )
1141
1142 (define_insn "*thumb2_shiftsi3_short"
1143 [(set (match_operand:SI 0 "low_register_operand" "=l")
1144 (match_operator:SI 3 "shift_operator"
1145 [(match_operand:SI 1 "low_register_operand" "l")
1146 (match_operand:SI 2 "low_reg_or_int_operand" "lM")]))
1147 (clobber (reg:CC CC_REGNUM))]
1148 "TARGET_THUMB2 && reload_completed
1149 && ((GET_CODE(operands[3]) != ROTATE && GET_CODE(operands[3]) != ROTATERT)
1150 || REG_P(operands[2]))"
1151 "* return arm_output_shift(operands, 2);"
1152 [(set_attr "predicable" "yes")
1153 (set_attr "shift" "1")
1154 (set_attr "length" "2")
1155 (set (attr "type") (if_then_else (match_operand 2 "const_int_operand" "")
1156 (const_string "alu_shift")
1157 (const_string "alu_shift_reg")))]
1158 )
1159
1160 ;; 16-bit load immediate
1161 (define_peephole2
1162 [(set (match_operand:QHSI 0 "low_register_operand" "")
1163 (match_operand:QHSI 1 "const_int_operand" ""))]
1164 "TARGET_THUMB2
1165 && peep2_regno_dead_p(0, CC_REGNUM)
1166 && (unsigned HOST_WIDE_INT) INTVAL(operands[1]) < 256"
1167 [(parallel
1168 [(set (match_dup 0)
1169 (match_dup 1))
1170 (clobber (reg:CC CC_REGNUM))])]
1171 ""
1172 )
1173
1174 (define_insn "*thumb2_mov<mode>_shortim"
1175 [(set (match_operand:QHSI 0 "low_register_operand" "=l")
1176 (match_operand:QHSI 1 "const_int_operand" "I"))
1177 (clobber (reg:CC CC_REGNUM))]
1178 "TARGET_THUMB2 && reload_completed"
1179 "mov%!\t%0, %1"
1180 [(set_attr "predicable" "yes")
1181 (set_attr "length" "2")]
1182 )
1183
1184 ;; 16-bit add/sub immediate
1185 (define_peephole2
1186 [(set (match_operand:SI 0 "low_register_operand" "")
1187 (plus:SI (match_operand:SI 1 "low_register_operand" "")
1188 (match_operand:SI 2 "const_int_operand" "")))]
1189 "TARGET_THUMB2
1190 && peep2_regno_dead_p(0, CC_REGNUM)
1191 && ((rtx_equal_p(operands[0], operands[1])
1192 && INTVAL(operands[2]) > -256 && INTVAL(operands[2]) < 256)
1193 || (INTVAL(operands[2]) > -8 && INTVAL(operands[2]) < 8))"
1194 [(parallel
1195 [(set (match_dup 0)
1196 (plus:SI (match_dup 1)
1197 (match_dup 2)))
1198 (clobber (reg:CC CC_REGNUM))])]
1199 ""
1200 )
1201
1202 (define_insn "*thumb2_addsi_short"
1203 [(set (match_operand:SI 0 "low_register_operand" "=l,l")
1204 (plus:SI (match_operand:SI 1 "low_register_operand" "l,0")
1205 (match_operand:SI 2 "low_reg_or_int_operand" "lPt,Ps")))
1206 (clobber (reg:CC CC_REGNUM))]
1207 "TARGET_THUMB2 && reload_completed"
1208 "*
1209 HOST_WIDE_INT val;
1210
1211 if (GET_CODE (operands[2]) == CONST_INT)
1212 val = INTVAL(operands[2]);
1213 else
1214 val = 0;
1215
1216 /* We prefer eg. subs rn, rn, #1 over adds rn, rn, #0xffffffff. */
1217 if (val < 0 && const_ok_for_arm(ARM_SIGN_EXTEND (-val)))
1218 return \"sub%!\\t%0, %1, #%n2\";
1219 else
1220 return \"add%!\\t%0, %1, %2\";
1221 "
1222 [(set_attr "predicable" "yes")
1223 (set_attr "length" "2")]
1224 )
1225
1226 (define_insn "divsi3"
1227 [(set (match_operand:SI 0 "s_register_operand" "=r")
1228 (div:SI (match_operand:SI 1 "s_register_operand" "r")
1229 (match_operand:SI 2 "s_register_operand" "r")))]
1230 "TARGET_THUMB2 && arm_arch_hwdiv"
1231 "sdiv%?\t%0, %1, %2"
1232 [(set_attr "predicable" "yes")
1233 (set_attr "insn" "sdiv")]
1234 )
1235
1236 (define_insn "udivsi3"
1237 [(set (match_operand:SI 0 "s_register_operand" "=r")
1238 (udiv:SI (match_operand:SI 1 "s_register_operand" "r")
1239 (match_operand:SI 2 "s_register_operand" "r")))]
1240 "TARGET_THUMB2 && arm_arch_hwdiv"
1241 "udiv%?\t%0, %1, %2"
1242 [(set_attr "predicable" "yes")
1243 (set_attr "insn" "udiv")]
1244 )
1245
1246 (define_insn "*thumb2_subsi_short"
1247 [(set (match_operand:SI 0 "low_register_operand" "=l")
1248 (minus:SI (match_operand:SI 1 "low_register_operand" "l")
1249 (match_operand:SI 2 "low_register_operand" "l")))
1250 (clobber (reg:CC CC_REGNUM))]
1251 "TARGET_THUMB2 && reload_completed"
1252 "sub%!\\t%0, %1, %2"
1253 [(set_attr "predicable" "yes")
1254 (set_attr "length" "2")]
1255 )
1256
1257 (define_insn "*thumb2_addsi3_compare0"
1258 [(set (reg:CC_NOOV CC_REGNUM)
1259 (compare:CC_NOOV
1260 (plus:SI (match_operand:SI 1 "s_register_operand" "l, 0, r")
1261 (match_operand:SI 2 "arm_add_operand" "lPt,Ps,rIL"))
1262 (const_int 0)))
1263 (set (match_operand:SI 0 "s_register_operand" "=l,l,r")
1264 (plus:SI (match_dup 1) (match_dup 2)))]
1265 "TARGET_THUMB2"
1266 "*
1267 HOST_WIDE_INT val;
1268
1269 if (GET_CODE (operands[2]) == CONST_INT)
1270 val = INTVAL (operands[2]);
1271 else
1272 val = 0;
1273
1274 if (val < 0 && const_ok_for_arm (ARM_SIGN_EXTEND (-val)))
1275 return \"subs\\t%0, %1, #%n2\";
1276 else
1277 return \"adds\\t%0, %1, %2\";
1278 "
1279 [(set_attr "conds" "set")
1280 (set_attr "length" "2,2,4")]
1281 )
1282
1283 (define_insn "*thumb2_addsi3_compare0_scratch"
1284 [(set (reg:CC_NOOV CC_REGNUM)
1285 (compare:CC_NOOV
1286 (plus:SI (match_operand:SI 0 "s_register_operand" "l, r")
1287 (match_operand:SI 1 "arm_add_operand" "lPv,rIL"))
1288 (const_int 0)))]
1289 "TARGET_THUMB2"
1290 "*
1291 HOST_WIDE_INT val;
1292
1293 if (GET_CODE (operands[1]) == CONST_INT)
1294 val = INTVAL (operands[1]);
1295 else
1296 val = 0;
1297
1298 if (val < 0 && const_ok_for_arm (ARM_SIGN_EXTEND (-val)))
1299 return \"cmp\\t%0, #%n1\";
1300 else
1301 return \"cmn\\t%0, %1\";
1302 "
1303 [(set_attr "conds" "set")
1304 (set_attr "length" "2,4")]
1305 )
1306
1307 ;; 16-bit encodings of "muls" and "mul<c>". We only use these when
1308 ;; optimizing for size since "muls" is slow on all known
1309 ;; implementations and since "mul<c>" will be generated by
1310 ;; "*arm_mulsi3_v6" anyhow. The assembler will use a 16-bit encoding
1311 ;; for "mul<c>" whenever possible anyhow.
1312 (define_peephole2
1313 [(set (match_operand:SI 0 "low_register_operand" "")
1314 (mult:SI (match_operand:SI 1 "low_register_operand" "")
1315 (match_dup 0)))]
1316 "TARGET_THUMB2 && optimize_size && peep2_regno_dead_p (0, CC_REGNUM)"
1317 [(parallel
1318 [(set (match_dup 0)
1319 (mult:SI (match_dup 0) (match_dup 1)))
1320 (clobber (reg:CC CC_REGNUM))])]
1321 ""
1322 )
1323
1324 (define_peephole2
1325 [(set (match_operand:SI 0 "low_register_operand" "")
1326 (mult:SI (match_dup 0)
1327 (match_operand:SI 1 "low_register_operand" "")))]
1328 "TARGET_THUMB2 && optimize_size && peep2_regno_dead_p (0, CC_REGNUM)"
1329 [(parallel
1330 [(set (match_dup 0)
1331 (mult:SI (match_dup 0) (match_dup 1)))
1332 (clobber (reg:CC CC_REGNUM))])]
1333 ""
1334 )
1335
1336 (define_insn "*thumb2_mulsi_short"
1337 [(set (match_operand:SI 0 "low_register_operand" "=l")
1338 (mult:SI (match_operand:SI 1 "low_register_operand" "%0")
1339 (match_operand:SI 2 "low_register_operand" "l")))
1340 (clobber (reg:CC CC_REGNUM))]
1341 "TARGET_THUMB2 && optimize_size && reload_completed"
1342 "mul%!\\t%0, %2, %0"
1343 [(set_attr "predicable" "yes")
1344 (set_attr "length" "2")
1345 (set_attr "insn" "muls")])
1346
1347 (define_insn "*thumb2_mulsi_short_compare0"
1348 [(set (reg:CC_NOOV CC_REGNUM)
1349 (compare:CC_NOOV
1350 (mult:SI (match_operand:SI 1 "register_operand" "%0")
1351 (match_operand:SI 2 "register_operand" "l"))
1352 (const_int 0)))
1353 (set (match_operand:SI 0 "register_operand" "=l")
1354 (mult:SI (match_dup 1) (match_dup 2)))]
1355 "TARGET_THUMB2 && optimize_size"
1356 "muls\\t%0, %2, %0"
1357 [(set_attr "length" "2")
1358 (set_attr "insn" "muls")])
1359
1360 (define_insn "*thumb2_mulsi_short_compare0_scratch"
1361 [(set (reg:CC_NOOV CC_REGNUM)
1362 (compare:CC_NOOV
1363 (mult:SI (match_operand:SI 1 "register_operand" "%0")
1364 (match_operand:SI 2 "register_operand" "l"))
1365 (const_int 0)))
1366 (clobber (match_scratch:SI 0 "=l"))]
1367 "TARGET_THUMB2 && optimize_size"
1368 "muls\\t%0, %2, %0"
1369 [(set_attr "length" "2")
1370 (set_attr "insn" "muls")])
1371
1372 (define_insn "*thumb2_cbz"
1373 [(set (pc) (if_then_else
1374 (eq (match_operand:SI 0 "s_register_operand" "l,?r")
1375 (const_int 0))
1376 (label_ref (match_operand 1 "" ""))
1377 (pc)))
1378 (clobber (reg:CC CC_REGNUM))]
1379 "TARGET_THUMB2"
1380 "*
1381 if (get_attr_length (insn) == 2)
1382 return \"cbz\\t%0, %l1\";
1383 else
1384 return \"cmp\\t%0, #0\;beq\\t%l1\";
1385 "
1386 [(set (attr "length")
1387 (if_then_else
1388 (and (ge (minus (match_dup 1) (pc)) (const_int 2))
1389 (le (minus (match_dup 1) (pc)) (const_int 128))
1390 (eq (symbol_ref ("which_alternative")) (const_int 0)))
1391 (const_int 2)
1392 (const_int 8)))]
1393 )
1394
1395 (define_insn "*thumb2_cbnz"
1396 [(set (pc) (if_then_else
1397 (ne (match_operand:SI 0 "s_register_operand" "l,?r")
1398 (const_int 0))
1399 (label_ref (match_operand 1 "" ""))
1400 (pc)))
1401 (clobber (reg:CC CC_REGNUM))]
1402 "TARGET_THUMB2"
1403 "*
1404 if (get_attr_length (insn) == 2)
1405 return \"cbnz\\t%0, %l1\";
1406 else
1407 return \"cmp\\t%0, #0\;bne\\t%l1\";
1408 "
1409 [(set (attr "length")
1410 (if_then_else
1411 (and (ge (minus (match_dup 1) (pc)) (const_int 2))
1412 (le (minus (match_dup 1) (pc)) (const_int 128))
1413 (eq (symbol_ref ("which_alternative")) (const_int 0)))
1414 (const_int 2)
1415 (const_int 8)))]
1416 )
1417
1418 ;; 16-bit complement
1419 (define_peephole2
1420 [(set (match_operand:SI 0 "low_register_operand" "")
1421 (not:SI (match_operand:SI 1 "low_register_operand" "")))]
1422 "TARGET_THUMB2
1423 && peep2_regno_dead_p(0, CC_REGNUM)"
1424 [(parallel
1425 [(set (match_dup 0)
1426 (not:SI (match_dup 1)))
1427 (clobber (reg:CC CC_REGNUM))])]
1428 ""
1429 )
1430
1431 (define_insn "*thumb2_one_cmplsi2_short"
1432 [(set (match_operand:SI 0 "low_register_operand" "=l")
1433 (not:SI (match_operand:SI 1 "low_register_operand" "l")))
1434 (clobber (reg:CC CC_REGNUM))]
1435 "TARGET_THUMB2 && reload_completed"
1436 "mvn%!\t%0, %1"
1437 [(set_attr "predicable" "yes")
1438 (set_attr "length" "2")]
1439 )
1440
1441 ;; 16-bit negate
1442 (define_peephole2
1443 [(set (match_operand:SI 0 "low_register_operand" "")
1444 (neg:SI (match_operand:SI 1 "low_register_operand" "")))]
1445 "TARGET_THUMB2
1446 && peep2_regno_dead_p(0, CC_REGNUM)"
1447 [(parallel
1448 [(set (match_dup 0)
1449 (neg:SI (match_dup 1)))
1450 (clobber (reg:CC CC_REGNUM))])]
1451 ""
1452 )
1453
1454 (define_insn "*thumb2_negsi2_short"
1455 [(set (match_operand:SI 0 "low_register_operand" "=l")
1456 (neg:SI (match_operand:SI 1 "low_register_operand" "l")))
1457 (clobber (reg:CC CC_REGNUM))]
1458 "TARGET_THUMB2 && reload_completed"
1459 "neg%!\t%0, %1"
1460 [(set_attr "predicable" "yes")
1461 (set_attr "length" "2")]
1462 )
1463
1464 (define_insn "orsi_notsi_si"
1465 [(set (match_operand:SI 0 "s_register_operand" "=r")
1466 (ior:SI (not:SI (match_operand:SI 2 "s_register_operand" "r"))
1467 (match_operand:SI 1 "s_register_operand" "r")))]
1468 "TARGET_THUMB2"
1469 "orn%?\\t%0, %1, %2"
1470 [(set_attr "predicable" "yes")]
1471 )
1472
1473 (define_insn "*thumb_orsi_not_shiftsi_si"
1474 [(set (match_operand:SI 0 "s_register_operand" "=r")
1475 (ior:SI (not:SI (match_operator:SI 4 "shift_operator"
1476 [(match_operand:SI 2 "s_register_operand" "r")
1477 (match_operand:SI 3 "const_int_operand" "M")]))
1478 (match_operand:SI 1 "s_register_operand" "r")))]
1479 "TARGET_THUMB2"
1480 "orn%?\\t%0, %1, %2%S4"
1481 [(set_attr "predicable" "yes")
1482 (set_attr "shift" "2")
1483 (set_attr "type" "alu_shift")]
1484 )
1485
1486 (define_insn_and_split "*thumb2_iorsi3"
1487 [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
1488 (ior:SI (match_operand:SI 1 "s_register_operand" "r,r,r")
1489 (match_operand:SI 2 "reg_or_int_operand" "rI,K,?n")))]
1490 "TARGET_THUMB2"
1491 "@
1492 orr%?\\t%0, %1, %2
1493 orn%?\\t%0, %1, #%B2
1494 #"
1495 "TARGET_THUMB2
1496 && GET_CODE (operands[2]) == CONST_INT
1497 && !(const_ok_for_arm (INTVAL (operands[2]))
1498 || const_ok_for_arm (~INTVAL (operands[2])))"
1499 [(clobber (const_int 0))]
1500 "
1501 arm_split_constant (IOR, SImode, curr_insn,
1502 INTVAL (operands[2]), operands[0], operands[1], 0);
1503 DONE;
1504 "
1505 [(set_attr "length" "4,4,16")
1506 (set_attr "predicable" "yes")]
1507 )
1508
1509 (define_insn "*thumb2_tlobits_cbranch"
1510 [(set (pc)
1511 (if_then_else
1512 (match_operator 0 "equality_operator"
1513 [(zero_extract:SI (match_operand:SI 1 "s_register_operand" "l,h,h")
1514 (match_operand:SI 2 "const_int_operand" "i,Pu,i")
1515 (const_int 0))
1516 (const_int 0)])
1517 (label_ref (match_operand 3 "" ""))
1518 (pc)))
1519 (clobber (match_scratch:SI 4 "=l,X,r"))
1520 (clobber (reg:CC CC_REGNUM))]
1521 "TARGET_THUMB2"
1522 "*
1523 {
1524 if (which_alternative == 0)
1525 {
1526 rtx op[3];
1527 op[0] = operands[4];
1528 op[1] = operands[1];
1529 op[2] = GEN_INT (32 - INTVAL (operands[2]));
1530
1531 output_asm_insn (\"lsls\\t%0, %1, %2\", op);
1532 switch (get_attr_length (insn))
1533 {
1534 case 4: return \"b%d0\\t%l3\";
1535 case 6: return \"b%D0\\t.LCB%=\;b\\t%l3\\t%@long jump\\n.LCB%=:\";
1536 default: return \"b%D0\\t.LCB%=\;bl\\t%l3\\t%@far jump\\n.LCB%=:\";
1537 }
1538 }
1539 else
1540 {
1541 rtx op[3];
1542
1543 if (which_alternative == 1)
1544 {
1545 op[0] = operands[1];
1546 op[1] = GEN_INT ((1 << INTVAL (operands[2])) - 1);
1547 output_asm_insn (\"tst\\t%0, %1\", op);
1548 }
1549 else
1550 {
1551 op[0] = operands[4];
1552 op[1] = operands[1];
1553 op[2] = GEN_INT (32 - INTVAL (operands[2]));
1554 output_asm_insn (\"lsls\\t%0, %1, %2\", op);
1555 }
1556
1557 switch (get_attr_length (insn))
1558 {
1559 case 6: return \"b%d0\\t%l3\";
1560 case 8: return \"b%D0\\t.LCB%=\;b\\t%l3\\t%@long jump\\n.LCB%=:\";
1561 default: return \"b%D0\\t.LCB%=\;bl\\t%l3\\t%@far jump\\n.LCB%=:\";
1562 }
1563 }
1564 }"
1565 [(set (attr "far_jump")
1566 (if_then_else
1567 (and (ge (minus (match_dup 3) (pc)) (const_int -2040))
1568 (le (minus (match_dup 3) (pc)) (const_int 2048)))
1569 (const_string "no")
1570 (const_string "yes")))
1571 (set (attr "length")
1572 (if_then_else
1573 (eq (symbol_ref ("which_alternative"))
1574 (const_int 0))
1575 (if_then_else
1576 (and (ge (minus (match_dup 3) (pc)) (const_int -250))
1577 (le (minus (match_dup 3) (pc)) (const_int 256)))
1578 (const_int 4)
1579 (if_then_else
1580 (and (ge (minus (match_dup 3) (pc)) (const_int -2040))
1581 (le (minus (match_dup 3) (pc)) (const_int 2048)))
1582 (const_int 6)
1583 (const_int 8)))
1584 (if_then_else
1585 (and (ge (minus (match_dup 3) (pc)) (const_int -250))
1586 (le (minus (match_dup 3) (pc)) (const_int 256)))
1587 (const_int 6)
1588 (if_then_else
1589 (and (ge (minus (match_dup 3) (pc)) (const_int -2040))
1590 (le (minus (match_dup 3) (pc)) (const_int 2048)))
1591 (const_int 8)
1592 (const_int 10)))))]
1593 )