OSDN Git Service

5e4eeedd1b60300830a5bfe1a0979537b9782e85
[pf3gnuchains/gcc-fork.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 (define_insn "*thumb2_movsi_insn"
227   [(set (match_operand:SI 0 "nonimmediate_operand" "=rk,r,r,r,rk,m")
228         (match_operand:SI 1 "general_operand"      "rk ,I,K,j,mi,rk"))]
229   "TARGET_THUMB2 && ! TARGET_IWMMXT
230    && !(TARGET_HARD_FLOAT && TARGET_VFP)
231    && (   register_operand (operands[0], SImode)
232        || register_operand (operands[1], SImode))"
233   "@
234    mov%?\\t%0, %1
235    mov%?\\t%0, %1
236    mvn%?\\t%0, #%B1
237    movw%?\\t%0, %1
238    ldr%?\\t%0, %1
239    str%?\\t%1, %0"
240   [(set_attr "type" "*,*,*,*,load1,store1")
241    (set_attr "predicable" "yes")
242    (set_attr "pool_range" "*,*,*,*,4096,*")
243    (set_attr "neg_pool_range" "*,*,*,*,0,*")]
244 )
245
246 ;; ??? We can probably do better with thumb2
247 (define_insn "pic_load_addr_thumb2"
248   [(set (match_operand:SI 0 "s_register_operand" "=r")
249         (unspec:SI [(match_operand:SI 1 "" "mX")] UNSPEC_PIC_SYM))]
250   "TARGET_THUMB2 && flag_pic"
251   "ldr%?\\t%0, %1"
252   [(set_attr "type" "load1")
253    (set_attr "pool_range" "4096")
254    (set_attr "neg_pool_range" "0")]
255 )
256
257 ;; Set reg to the address of this instruction plus four.  The low two
258 ;; bits of the PC are always read as zero, so ensure the instructions is
259 ;; word aligned.
260 (define_insn "pic_load_dot_plus_four"
261   [(set (match_operand:SI 0 "register_operand" "=r")
262         (unspec:SI [(const_int 4)
263                     (match_operand 1 "" "")]
264                    UNSPEC_PIC_BASE))]
265   "TARGET_THUMB2"
266   "*
267   assemble_align(BITS_PER_WORD);
268   (*targetm.asm_out.internal_label) (asm_out_file, \"LPIC\",
269                              INTVAL (operands[1]));
270   /* We use adr because some buggy gas assemble add r8, pc, #0
271      to add.w r8, pc, #0, not addw r8, pc, #0.  */
272   asm_fprintf (asm_out_file, \"\\tadr\\t%r, %LLPIC%d + 4\\n\",
273                REGNO(operands[0]), (int)INTVAL (operands[1]));
274   return \"\";
275   "
276   [(set_attr "length" "6")]
277 )
278
279 ;; Thumb-2 always has load/store halfword instructions, so we can avoid a lot
280 ;; of the messiness associated with the ARM patterns.
281 (define_insn "*thumb2_movhi_insn"
282   [(set (match_operand:HI 0 "nonimmediate_operand" "=r,r,m,r")    
283         (match_operand:HI 1 "general_operand"      "rI,n,r,m"))]
284   "TARGET_THUMB2"
285   "@
286    mov%?\\t%0, %1\\t%@ movhi
287    movw%?\\t%0, %L1\\t%@ movhi
288    str%(h%)\\t%1, %0\\t%@ movhi
289    ldr%(h%)\\t%0, %1\\t%@ movhi"
290   [(set_attr "type" "*,*,store1,load1")
291    (set_attr "predicable" "yes")
292    (set_attr "pool_range" "*,*,*,4096")
293    (set_attr "neg_pool_range" "*,*,*,250")]
294 )
295
296 (define_insn "*thumb2_movsf_soft_insn"
297   [(set (match_operand:SF 0 "nonimmediate_operand" "=r,r,m")
298         (match_operand:SF 1 "general_operand"  "r,mE,r"))]
299   "TARGET_THUMB2
300    && TARGET_SOFT_FLOAT
301    && (GET_CODE (operands[0]) != MEM
302        || register_operand (operands[1], SFmode))"
303   "@
304    mov%?\\t%0, %1
305    ldr%?\\t%0, %1\\t%@ float
306    str%?\\t%1, %0\\t%@ float"
307   [(set_attr "predicable" "yes")
308    (set_attr "type" "*,load1,store1")
309    (set_attr "pool_range" "*,4096,*")
310    (set_attr "neg_pool_range" "*,0,*")]
311 )
312
313 (define_insn "*thumb2_movdf_soft_insn"
314   [(set (match_operand:DF 0 "nonimmediate_soft_df_operand" "=r,r,r,r,m")
315         (match_operand:DF 1 "soft_df_operand" "rDa,Db,Dc,mF,r"))]
316   "TARGET_THUMB2 && TARGET_SOFT_FLOAT
317    && (   register_operand (operands[0], DFmode)
318        || register_operand (operands[1], DFmode))"
319   "*
320   switch (which_alternative)
321     {
322     case 0:
323     case 1:
324     case 2:
325       return \"#\";
326     default:
327       return output_move_double (operands);
328     }
329   "
330   [(set_attr "length" "8,12,16,8,8")
331    (set_attr "type" "*,*,*,load2,store2")
332    (set_attr "pool_range" "1020")
333    (set_attr "neg_pool_range" "0")]
334 )
335
336 (define_insn "*thumb2_cmpsi_shiftsi"
337   [(set (reg:CC CC_REGNUM)
338         (compare:CC (match_operand:SI   0 "s_register_operand" "r")
339                     (match_operator:SI  3 "shift_operator"
340                      [(match_operand:SI 1 "s_register_operand" "r")
341                       (match_operand:SI 2 "const_int_operand"  "M")])))]
342   "TARGET_THUMB2"
343   "cmp%?\\t%0, %1%S3"
344   [(set_attr "conds" "set")
345    (set_attr "shift" "1")
346    (set_attr "type" "alu_shift")]
347 )
348
349 (define_insn "*thumb2_cmpsi_shiftsi_swp"
350   [(set (reg:CC_SWP CC_REGNUM)
351         (compare:CC_SWP (match_operator:SI 3 "shift_operator"
352                          [(match_operand:SI 1 "s_register_operand" "r")
353                           (match_operand:SI 2 "const_int_operand" "M")])
354                         (match_operand:SI 0 "s_register_operand" "r")))]
355   "TARGET_THUMB2"
356   "cmp%?\\t%0, %1%S3"
357   [(set_attr "conds" "set")
358    (set_attr "shift" "1")
359    (set_attr "type" "alu_shift")]
360 )
361
362 (define_insn "*thumb2_cmpsi_neg_shiftsi"
363   [(set (reg:CC CC_REGNUM)
364         (compare:CC (match_operand:SI 0 "s_register_operand" "r")
365                     (neg:SI (match_operator:SI 3 "shift_operator"
366                              [(match_operand:SI 1 "s_register_operand" "r")
367                               (match_operand:SI 2 "const_int_operand" "M")]))))]
368   "TARGET_THUMB2"
369   "cmn%?\\t%0, %1%S3"
370   [(set_attr "conds" "set")
371    (set_attr "shift" "1")
372    (set_attr "type" "alu_shift")]
373 )
374
375 (define_insn "*thumb2_mov_scc"
376   [(set (match_operand:SI 0 "s_register_operand" "=r")
377         (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\;mov%d1\\t%0, #1"
381   [(set_attr "conds" "use")
382    (set_attr "length" "10")]
383 )
384
385 (define_insn "*thumb2_mov_negscc"
386   [(set (match_operand:SI 0 "s_register_operand" "=r")
387         (neg: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, #0"
391   [(set_attr "conds" "use")
392    (set_attr "length" "10")]
393 )
394
395 (define_insn "*thumb2_mov_notscc"
396   [(set (match_operand:SI 0 "s_register_operand" "=r")
397         (not:SI (match_operator:SI 1 "arm_comparison_operator"
398                  [(match_operand 2 "cc_register" "") (const_int 0)])))]
399   "TARGET_THUMB2"
400   "ite\\t%D1\;mov%D1\\t%0, #0\;mvn%d1\\t%0, #1"
401   [(set_attr "conds" "use")
402    (set_attr "length" "10")]
403 )
404
405 (define_insn "*thumb2_movsicc_insn"
406   [(set (match_operand:SI 0 "s_register_operand" "=r,r,r,r,r,r,r,r")
407         (if_then_else:SI
408          (match_operator 3 "arm_comparison_operator"
409           [(match_operand 4 "cc_register" "") (const_int 0)])
410          (match_operand:SI 1 "arm_not_operand" "0,0,rI,K,rI,rI,K,K")
411          (match_operand:SI 2 "arm_not_operand" "rI,K,0,0,rI,K,rI,K")))]
412   "TARGET_THUMB2"
413   "@
414    it\\t%D3\;mov%D3\\t%0, %2
415    it\\t%D3\;mvn%D3\\t%0, #%B2
416    it\\t%d3\;mov%d3\\t%0, %1
417    it\\t%d3\;mvn%d3\\t%0, #%B1
418    ite\\t%d3\;mov%d3\\t%0, %1\;mov%D3\\t%0, %2
419    ite\\t%d3\;mov%d3\\t%0, %1\;mvn%D3\\t%0, #%B2
420    ite\\t%d3\;mvn%d3\\t%0, #%B1\;mov%D3\\t%0, %2
421    ite\\t%d3\;mvn%d3\\t%0, #%B1\;mvn%D3\\t%0, #%B2"
422   [(set_attr "length" "6,6,6,6,10,10,10,10")
423    (set_attr "conds" "use")]
424 )
425
426 (define_insn "*thumb2_movsfcc_soft_insn"
427   [(set (match_operand:SF 0 "s_register_operand" "=r,r")
428         (if_then_else:SF (match_operator 3 "arm_comparison_operator"
429                           [(match_operand 4 "cc_register" "") (const_int 0)])
430                          (match_operand:SF 1 "s_register_operand" "0,r")
431                          (match_operand:SF 2 "s_register_operand" "r,0")))]
432   "TARGET_THUMB2 && TARGET_SOFT_FLOAT"
433   "@
434    it\\t%D3\;mov%D3\\t%0, %2
435    it\\t%d3\;mov%d3\\t%0, %1"
436   [(set_attr "length" "6,6")
437    (set_attr "conds" "use")]
438 )
439
440 (define_insn "*call_reg_thumb2"
441   [(call (mem:SI (match_operand:SI 0 "s_register_operand" "r"))
442          (match_operand 1 "" ""))
443    (use (match_operand 2 "" ""))
444    (clobber (reg:SI LR_REGNUM))]
445   "TARGET_THUMB2"
446   "blx%?\\t%0"
447   [(set_attr "type" "call")]
448 )
449
450 (define_insn "*call_value_reg_thumb2"
451   [(set (match_operand 0 "" "")
452         (call (mem:SI (match_operand:SI 1 "register_operand" "l*r"))
453               (match_operand 2 "" "")))
454    (use (match_operand 3 "" ""))
455    (clobber (reg:SI LR_REGNUM))]
456   "TARGET_THUMB2"
457   "blx\\t%1"
458   [(set_attr "type" "call")]
459 )
460
461 (define_insn "*thumb2_indirect_jump"
462   [(set (pc)
463         (match_operand:SI 0 "register_operand" "l*r"))]
464   "TARGET_THUMB2"
465   "bx\\t%0"
466   [(set_attr "conds" "clob")]
467 )
468 ;; Don't define thumb2_load_indirect_jump because we can't guarantee label
469 ;; addresses will have the thumb bit set correctly. 
470
471
472 ;; Patterns to allow combination of arithmetic, cond code and shifts
473
474 (define_insn "*thumb2_arith_shiftsi"
475   [(set (match_operand:SI 0 "s_register_operand" "=r")
476         (match_operator:SI 1 "shiftable_operator"
477           [(match_operator:SI 3 "shift_operator"
478              [(match_operand:SI 4 "s_register_operand" "r")
479               (match_operand:SI 5 "const_int_operand" "M")])
480            (match_operand:SI 2 "s_register_operand" "r")]))]
481   "TARGET_THUMB2"
482   "%i1%?\\t%0, %2, %4%S3"
483   [(set_attr "predicable" "yes")
484    (set_attr "shift" "4")
485    (set_attr "type" "alu_shift")]
486 )
487
488 ;; ??? What does this splitter do?  Copied from the ARM version
489 (define_split
490   [(set (match_operand:SI 0 "s_register_operand" "")
491         (match_operator:SI 1 "shiftable_operator"
492          [(match_operator:SI 2 "shiftable_operator"
493            [(match_operator:SI 3 "shift_operator"
494              [(match_operand:SI 4 "s_register_operand" "")
495               (match_operand:SI 5 "const_int_operand" "")])
496             (match_operand:SI 6 "s_register_operand" "")])
497           (match_operand:SI 7 "arm_rhs_operand" "")]))
498    (clobber (match_operand:SI 8 "s_register_operand" ""))]
499   "TARGET_32BIT"
500   [(set (match_dup 8)
501         (match_op_dup 2 [(match_op_dup 3 [(match_dup 4) (match_dup 5)])
502                          (match_dup 6)]))
503    (set (match_dup 0)
504         (match_op_dup 1 [(match_dup 8) (match_dup 7)]))]
505   "")
506
507 (define_insn "*thumb2_arith_shiftsi_compare0"
508   [(set (reg:CC_NOOV CC_REGNUM)
509         (compare:CC_NOOV (match_operator:SI 1 "shiftable_operator"
510                           [(match_operator:SI 3 "shift_operator"
511                             [(match_operand:SI 4 "s_register_operand" "r")
512                              (match_operand:SI 5 "const_int_operand" "M")])
513                            (match_operand:SI 2 "s_register_operand" "r")])
514                          (const_int 0)))
515    (set (match_operand:SI 0 "s_register_operand" "=r")
516         (match_op_dup 1 [(match_op_dup 3 [(match_dup 4) (match_dup 5)])
517                          (match_dup 2)]))]
518   "TARGET_32BIT"
519   "%i1%.\\t%0, %2, %4%S3"
520   [(set_attr "conds" "set")
521    (set_attr "shift" "4")
522    (set_attr "type" "alu_shift")]
523 )
524
525 (define_insn "*thumb2_arith_shiftsi_compare0_scratch"
526   [(set (reg:CC_NOOV CC_REGNUM)
527         (compare:CC_NOOV (match_operator:SI 1 "shiftable_operator"
528                           [(match_operator:SI 3 "shift_operator"
529                             [(match_operand:SI 4 "s_register_operand" "r")
530                              (match_operand:SI 5 "const_int_operand" "M")])
531                            (match_operand:SI 2 "s_register_operand" "r")])
532                          (const_int 0)))
533    (clobber (match_scratch:SI 0 "=r"))]
534   "TARGET_THUMB2"
535   "%i1%.\\t%0, %2, %4%S3"
536   [(set_attr "conds" "set")
537    (set_attr "shift" "4")
538    (set_attr "type" "alu_shift")]
539 )
540
541 (define_insn "*thumb2_sub_shiftsi"
542   [(set (match_operand:SI 0 "s_register_operand" "=r")
543         (minus:SI (match_operand:SI 1 "s_register_operand" "r")
544                   (match_operator:SI 2 "shift_operator"
545                    [(match_operand:SI 3 "s_register_operand" "r")
546                     (match_operand:SI 4 "const_int_operand" "M")])))]
547   "TARGET_THUMB2"
548   "sub%?\\t%0, %1, %3%S2"
549   [(set_attr "predicable" "yes")
550    (set_attr "shift" "3")
551    (set_attr "type" "alu_shift")]
552 )
553
554 (define_insn "*thumb2_sub_shiftsi_compare0"
555   [(set (reg:CC_NOOV CC_REGNUM)
556         (compare:CC_NOOV
557          (minus:SI (match_operand:SI 1 "s_register_operand" "r")
558                    (match_operator:SI 2 "shift_operator"
559                     [(match_operand:SI 3 "s_register_operand" "r")
560                      (match_operand:SI 4 "const_int_operand" "M")]))
561          (const_int 0)))
562    (set (match_operand:SI 0 "s_register_operand" "=r")
563         (minus:SI (match_dup 1) (match_op_dup 2 [(match_dup 3)
564                                                  (match_dup 4)])))]
565   "TARGET_THUMB2"
566   "sub%.\\t%0, %1, %3%S2"
567   [(set_attr "conds" "set")
568    (set_attr "shift" "3")
569    (set_attr "type" "alu_shift")]
570 )
571
572 (define_insn "*thumb2_sub_shiftsi_compare0_scratch"
573   [(set (reg:CC_NOOV CC_REGNUM)
574         (compare:CC_NOOV
575          (minus:SI (match_operand:SI 1 "s_register_operand" "r")
576                    (match_operator:SI 2 "shift_operator"
577                     [(match_operand:SI 3 "s_register_operand" "r")
578                      (match_operand:SI 4 "const_int_operand" "M")]))
579          (const_int 0)))
580    (clobber (match_scratch:SI 0 "=r"))]
581   "TARGET_THUMB2"
582   "sub%.\\t%0, %1, %3%S2"
583   [(set_attr "conds" "set")
584    (set_attr "shift" "3")
585    (set_attr "type" "alu_shift")]
586 )
587
588 (define_insn "*thumb2_and_scc"
589   [(set (match_operand:SI 0 "s_register_operand" "=r")
590         (and:SI (match_operator:SI 1 "arm_comparison_operator"
591                  [(match_operand 3 "cc_register" "") (const_int 0)])
592                 (match_operand:SI 2 "s_register_operand" "r")))]
593   "TARGET_THUMB2"
594   "ite\\t%D1\;mov%D1\\t%0, #0\;and%d1\\t%0, %2, #1"
595   [(set_attr "conds" "use")
596    (set_attr "length" "10")]
597 )
598
599 (define_insn "*thumb2_ior_scc"
600   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
601         (ior:SI (match_operator:SI 2 "arm_comparison_operator"
602                  [(match_operand 3 "cc_register" "") (const_int 0)])
603                 (match_operand:SI 1 "s_register_operand" "0,?r")))]
604   "TARGET_THUMB2"
605   "@
606    it\\t%d2\;orr%d2\\t%0, %1, #1
607    ite\\t%D2\;mov%D2\\t%0, %1\;orr%d2\\t%0, %1, #1"
608   [(set_attr "conds" "use")
609    (set_attr "length" "6,10")]
610 )
611
612 (define_insn "*thumb2_compare_scc"
613   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
614         (match_operator:SI 1 "arm_comparison_operator"
615          [(match_operand:SI 2 "s_register_operand" "r,r")
616           (match_operand:SI 3 "arm_add_operand" "rI,L")]))
617    (clobber (reg:CC CC_REGNUM))]
618   "TARGET_THUMB2"
619   "*
620     if (operands[3] == const0_rtx)
621       {
622         if (GET_CODE (operands[1]) == LT)
623           return \"lsr\\t%0, %2, #31\";
624
625         if (GET_CODE (operands[1]) == GE)
626           return \"mvn\\t%0, %2\;lsr\\t%0, %0, #31\";
627
628         if (GET_CODE (operands[1]) == EQ)
629           return \"rsbs\\t%0, %2, #1\;it\\tcc\;movcc\\t%0, #0\";
630       }
631
632     if (GET_CODE (operands[1]) == NE)
633       {
634         if (which_alternative == 1)
635           return \"adds\\t%0, %2, #%n3\;it\\tne\;movne\\t%0, #1\";
636         return \"subs\\t%0, %2, %3\;it\\tne\;movne\\t%0, #1\";
637       }
638     if (which_alternative == 1)
639       output_asm_insn (\"cmn\\t%2, #%n3\", operands);
640     else
641       output_asm_insn (\"cmp\\t%2, %3\", operands);
642     return \"ite\\t%D1\;mov%D1\\t%0, #0\;mov%d1\\t%0, #1\";
643   "
644   [(set_attr "conds" "clob")
645    (set_attr "length" "14")]
646 )
647
648 (define_insn "*thumb2_cond_move"
649   [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
650         (if_then_else:SI (match_operator 3 "equality_operator"
651                           [(match_operator 4 "arm_comparison_operator"
652                             [(match_operand 5 "cc_register" "") (const_int 0)])
653                            (const_int 0)])
654                          (match_operand:SI 1 "arm_rhs_operand" "0,rI,?rI")
655                          (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))]
656   "TARGET_THUMB2"
657   "*
658     if (GET_CODE (operands[3]) == NE)
659       {
660         if (which_alternative != 1)
661           output_asm_insn (\"it\\t%D4\;mov%D4\\t%0, %2\", operands);
662         if (which_alternative != 0)
663           output_asm_insn (\"it\\t%d4\;mov%d4\\t%0, %1\", operands);
664         return \"\";
665       }
666     switch (which_alternative)
667       {
668       case 0:
669         output_asm_insn (\"it\\t%d4\", operands);
670         break;
671       case 1:
672         output_asm_insn (\"it\\t%D4\", operands);
673         break;
674       case 2:
675         output_asm_insn (\"ite\\t%D4\", operands);
676         break;
677       default:
678         abort();
679       }
680     if (which_alternative != 0)
681       output_asm_insn (\"mov%D4\\t%0, %1\", operands);
682     if (which_alternative != 1)
683       output_asm_insn (\"mov%d4\\t%0, %2\", operands);
684     return \"\";
685   "
686   [(set_attr "conds" "use")
687    (set_attr "length" "6,6,10")]
688 )
689
690 (define_insn "*thumb2_cond_arith"
691   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
692         (match_operator:SI 5 "shiftable_operator" 
693          [(match_operator:SI 4 "arm_comparison_operator"
694            [(match_operand:SI 2 "s_register_operand" "r,r")
695             (match_operand:SI 3 "arm_rhs_operand" "rI,rI")])
696           (match_operand:SI 1 "s_register_operand" "0,?r")]))
697    (clobber (reg:CC CC_REGNUM))]
698   "TARGET_THUMB2"
699   "*
700     if (GET_CODE (operands[4]) == LT && operands[3] == const0_rtx)
701       return \"%i5\\t%0, %1, %2, lsr #31\";
702
703     output_asm_insn (\"cmp\\t%2, %3\", operands);
704     if (GET_CODE (operands[5]) == AND)
705       {
706         output_asm_insn (\"ite\\t%D4\", operands);
707         output_asm_insn (\"mov%D4\\t%0, #0\", operands);
708       }
709     else if (GET_CODE (operands[5]) == MINUS)
710       {
711         output_asm_insn (\"ite\\t%D4\", operands);
712         output_asm_insn (\"rsb%D4\\t%0, %1, #0\", operands);
713       }
714     else if (which_alternative != 0)
715       {
716         output_asm_insn (\"ite\\t%D4\", operands);
717         output_asm_insn (\"mov%D4\\t%0, %1\", operands);
718       }
719     else
720       output_asm_insn (\"it\\t%d4\", operands);
721     return \"%i5%d4\\t%0, %1, #1\";
722   "
723   [(set_attr "conds" "clob")
724    (set_attr "length" "14")]
725 )
726
727 (define_insn "*thumb2_cond_sub"
728   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
729         (minus:SI (match_operand:SI 1 "s_register_operand" "0,?r")
730                   (match_operator:SI 4 "arm_comparison_operator"
731                    [(match_operand:SI 2 "s_register_operand" "r,r")
732                     (match_operand:SI 3 "arm_rhs_operand" "rI,rI")])))
733    (clobber (reg:CC CC_REGNUM))]
734   "TARGET_THUMB2"
735   "*
736     output_asm_insn (\"cmp\\t%2, %3\", operands);
737     if (which_alternative != 0)
738       {
739         output_asm_insn (\"ite\\t%D4\", operands);
740         output_asm_insn (\"mov%D4\\t%0, %1\", operands);
741       }
742     else
743       output_asm_insn (\"it\\t%d4\", operands);
744     return \"sub%d4\\t%0, %1, #1\";
745   "
746   [(set_attr "conds" "clob")
747    (set_attr "length" "10,14")]
748 )
749
750 (define_insn "*thumb2_negscc"
751   [(set (match_operand:SI 0 "s_register_operand" "=r")
752         (neg:SI (match_operator 3 "arm_comparison_operator"
753                  [(match_operand:SI 1 "s_register_operand" "r")
754                   (match_operand:SI 2 "arm_rhs_operand" "rI")])))
755    (clobber (reg:CC CC_REGNUM))]
756   "TARGET_THUMB2"
757   "*
758   if (GET_CODE (operands[3]) == LT && operands[2] == const0_rtx)
759     return \"asr\\t%0, %1, #31\";
760
761   if (GET_CODE (operands[3]) == NE)
762     return \"subs\\t%0, %1, %2\;it\\tne\;mvnne\\t%0, #0\";
763
764   output_asm_insn (\"cmp\\t%1, %2\", operands);
765   output_asm_insn (\"ite\\t%D3\", operands);
766   output_asm_insn (\"mov%D3\\t%0, #0\", operands);
767   return \"mvn%d3\\t%0, #0\";
768   "
769   [(set_attr "conds" "clob")
770    (set_attr "length" "14")]
771 )
772
773 (define_insn "*thumb2_movcond"
774   [(set (match_operand:SI 0 "s_register_operand" "=r,r,r")
775         (if_then_else:SI
776          (match_operator 5 "arm_comparison_operator"
777           [(match_operand:SI 3 "s_register_operand" "r,r,r")
778            (match_operand:SI 4 "arm_add_operand" "rIL,rIL,rIL")])
779          (match_operand:SI 1 "arm_rhs_operand" "0,rI,?rI")
780          (match_operand:SI 2 "arm_rhs_operand" "rI,0,rI")))
781    (clobber (reg:CC CC_REGNUM))]
782   "TARGET_THUMB2"
783   "*
784   if (GET_CODE (operands[5]) == LT
785       && (operands[4] == const0_rtx))
786     {
787       if (which_alternative != 1 && GET_CODE (operands[1]) == REG)
788         {
789           if (operands[2] == const0_rtx)
790             return \"and\\t%0, %1, %3, asr #31\";
791           return \"ands\\t%0, %1, %3, asr #32\;it\\tcc\;movcc\\t%0, %2\";
792         }
793       else if (which_alternative != 0 && GET_CODE (operands[2]) == REG)
794         {
795           if (operands[1] == const0_rtx)
796             return \"bic\\t%0, %2, %3, asr #31\";
797           return \"bics\\t%0, %2, %3, asr #32\;it\\tcs\;movcs\\t%0, %1\";
798         }
799       /* The only case that falls through to here is when both ops 1 & 2
800          are constants.  */
801     }
802
803   if (GET_CODE (operands[5]) == GE
804       && (operands[4] == const0_rtx))
805     {
806       if (which_alternative != 1 && GET_CODE (operands[1]) == REG)
807         {
808           if (operands[2] == const0_rtx)
809             return \"bic\\t%0, %1, %3, asr #31\";
810           return \"bics\\t%0, %1, %3, asr #32\;it\\tcs\;movcs\\t%0, %2\";
811         }
812       else if (which_alternative != 0 && GET_CODE (operands[2]) == REG)
813         {
814           if (operands[1] == const0_rtx)
815             return \"and\\t%0, %2, %3, asr #31\";
816           return \"ands\\t%0, %2, %3, asr #32\;it\tcc\;movcc\\t%0, %1\";
817         }
818       /* The only case that falls through to here is when both ops 1 & 2
819          are constants.  */
820     }
821   if (GET_CODE (operands[4]) == CONST_INT
822       && !const_ok_for_arm (INTVAL (operands[4])))
823     output_asm_insn (\"cmn\\t%3, #%n4\", operands);
824   else
825     output_asm_insn (\"cmp\\t%3, %4\", operands);
826   switch (which_alternative)
827     {
828     case 0:
829       output_asm_insn (\"it\\t%D5\", operands);
830       break;
831     case 1:
832       output_asm_insn (\"it\\t%d5\", operands);
833       break;
834     case 2:
835       output_asm_insn (\"ite\\t%d5\", operands);
836       break;
837     default:
838       abort();
839     }
840   if (which_alternative != 0)
841     output_asm_insn (\"mov%d5\\t%0, %1\", operands);
842   if (which_alternative != 1)
843     output_asm_insn (\"mov%D5\\t%0, %2\", operands);
844   return \"\";
845   "
846   [(set_attr "conds" "clob")
847    (set_attr "length" "10,10,14")]
848 )
849
850 ;; Zero and sign extension instructions.
851
852 (define_insn_and_split "*thumb2_zero_extendsidi2"
853   [(set (match_operand:DI 0 "s_register_operand" "=r")
854         (zero_extend:DI (match_operand:SI 1 "s_register_operand" "r")))]
855   "TARGET_THUMB2"
856   "mov%?\\t%Q0, %1\;mov%?\\t%R0, #0"
857   "&& reload_completed"
858   [(set (match_dup 0) (match_dup 1))]
859   "
860   {
861     rtx lo_part = gen_lowpart (SImode, operands[0]);
862     if (!REG_P (lo_part) || REGNO (lo_part) != REGNO (operands[1]))
863       emit_move_insn (lo_part, operands[1]);
864     operands[0] = gen_highpart (SImode, operands[0]);
865     operands[1] = const0_rtx;
866   }
867   "
868   [(set_attr "length" "8")
869    (set_attr "ce_count" "2")
870    (set_attr "predicable" "yes")]
871 )
872
873 (define_insn_and_split "*thumb2_zero_extendhidi2"
874   [(set (match_operand:DI                 0 "s_register_operand"  "=r,r")
875         (zero_extend:DI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
876   "TARGET_THUMB2"
877   "@
878    uxth%?\\t%Q0, %1\;mov%?\\t%R0, #0
879    ldr%(h%)\\t%Q0, %1\;mov%?\\t%R0, #0"
880   "&& reload_completed"
881   [(set (match_dup 0) (zero_extend:SI (match_dup 1)))
882    (set (match_dup 2) (match_dup 3))]
883   "
884   {
885     operands[2] = gen_highpart (SImode, operands[0]);
886     operands[0] = gen_lowpart (SImode, operands[0]);
887     operands[3] = const0_rtx;
888   }
889   "
890   [(set_attr "length" "8")
891    (set_attr "ce_count" "2")
892    (set_attr "predicable" "yes")
893    (set_attr "type" "*,load_byte")
894    (set_attr "pool_range" "*,4092")
895    (set_attr "neg_pool_range" "*,250")]
896 )
897
898 (define_insn_and_split "*thumb2_zero_extendqidi2"
899   [(set (match_operand:DI                 0 "s_register_operand"  "=r,r")
900         (zero_extend:DI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
901   "TARGET_THUMB2"
902   "@
903    uxtb%?\\t%Q0, %1\;mov%?\\t%R0, #0
904    ldr%(b%)\\t%Q0, %1\;mov%?\\t%R0, #0"
905   "&& reload_completed"
906   [(set (match_dup 0) (zero_extend:SI (match_dup 1)))
907    (set (match_dup 2) (match_dup 3))]
908   "
909   {
910     operands[2] = gen_highpart (SImode, operands[0]);
911     operands[0] = gen_lowpart (SImode, operands[0]);
912     operands[3] = const0_rtx;
913   }
914   "
915   [(set_attr "length" "8")
916    (set_attr "ce_count" "2")
917    (set_attr "predicable" "yes")
918    (set_attr "type" "*,load_byte")
919    (set_attr "pool_range" "*,4092")
920    (set_attr "neg_pool_range" "*,250")]
921 )
922
923 (define_insn_and_split "*thumb2_extendsidi2"
924   [(set (match_operand:DI 0 "s_register_operand" "=r")
925         (sign_extend:DI (match_operand:SI 1 "s_register_operand" "r")))]
926   "TARGET_THUMB2"
927   "mov%?\\t%Q0, %1\;asr?\\t%R0, %1, #31"
928   "&& reload_completed"
929   [(set (match_dup 0) (ashiftrt:SI (match_dup 1) (const_int 31)))]
930   {
931     rtx lo_part = gen_lowpart (SImode, operands[0]);
932
933     if (!REG_P (lo_part) || REGNO (lo_part) != REGNO (operands[1]))
934       emit_move_insn (lo_part, operands[1]);
935     operands[0] = gen_highpart (SImode, operands[0]);
936   }
937   [(set_attr "length" "8")
938    (set_attr "ce_count" "2")
939    (set_attr "shift" "1")
940    (set_attr "predicable" "yes")]
941 )
942
943 (define_insn_and_split "*thumb2_extendhidi2"
944   [(set (match_operand:DI                 0 "s_register_operand"  "=r,r")
945         (sign_extend:DI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
946   "TARGET_THUMB2"
947   "@
948    sxth%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31
949    ldrsh%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31"
950   "&& reload_completed"
951   [(set (match_dup 0) (sign_extend:SI (match_dup 1)))
952    (set (match_dup 2) (ashiftrt:SI (match_dup 0) (const_int 31)))]
953   "
954   {
955     operands[2] = gen_highpart (SImode, operands[0]);
956     operands[0] = gen_lowpart (SImode, operands[0]);
957   }
958   "
959   [(set_attr "length" "8")
960    (set_attr "ce_count" "2")
961    (set_attr "predicable" "yes")
962    (set_attr "type" "*,load_byte")
963    (set_attr "pool_range" "*,4092")
964    (set_attr "neg_pool_range" "*,250")]
965 )
966
967 (define_insn_and_split "*thumb2_extendqidi2"
968   [(set (match_operand:DI                 0 "s_register_operand"  "=r,r")
969         (sign_extend:DI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
970   "TARGET_THUMB2"
971   "@
972    sxtb%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31
973    ldrsb%?\\t%Q0, %1\;asr%?\\t%R0, %Q0, #31"
974   "&& reload_completed"
975   [(set (match_dup 0) (sign_extend:SI (match_dup 1)))
976    (set (match_dup 2) (ashiftrt:SI (match_dup 0) (const_int 31)))]
977   "
978   {
979     operands[2] = gen_highpart (SImode, operands[0]);
980     operands[0] = gen_lowpart (SImode, operands[0]);
981   }
982   "
983   [(set_attr "length" "8")
984    (set_attr "ce_count" "2")
985    (set_attr "predicable" "yes")
986    (set_attr "type" "*,load_byte")
987    (set_attr "pool_range" "*,4092")
988    (set_attr "neg_pool_range" "*,250")]
989 )
990
991 ;; All supported Thumb2 implementations are armv6, so only that case is
992 ;; provided.
993 (define_insn "*thumb2_extendqisi_v6"
994   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
995         (sign_extend:SI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
996   "TARGET_THUMB2 && arm_arch6"
997   "@
998    sxtb%?\\t%0, %1
999    ldr%(sb%)\\t%0, %1"
1000   [(set_attr "type" "alu_shift,load_byte")
1001    (set_attr "predicable" "yes")
1002    (set_attr "pool_range" "*,4096")
1003    (set_attr "neg_pool_range" "*,250")]
1004 )
1005
1006 (define_insn "*thumb2_zero_extendhisi2_v6"
1007   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
1008         (zero_extend:SI (match_operand:HI 1 "nonimmediate_operand" "r,m")))]
1009   "TARGET_THUMB2 && arm_arch6"
1010   "@
1011    uxth%?\\t%0, %1
1012    ldr%(h%)\\t%0, %1"
1013   [(set_attr "type" "alu_shift,load_byte")
1014    (set_attr "predicable" "yes")
1015    (set_attr "pool_range" "*,4096")
1016    (set_attr "neg_pool_range" "*,250")]
1017 )
1018
1019 (define_insn "*thumb2_zero_extendqisi2_v6"
1020   [(set (match_operand:SI 0 "s_register_operand" "=r,r")
1021         (zero_extend:SI (match_operand:QI 1 "nonimmediate_operand" "r,m")))]
1022   "TARGET_THUMB2 && arm_arch6"
1023   "@
1024    uxtb%(%)\\t%0, %1
1025    ldr%(b%)\\t%0, %1\\t%@ zero_extendqisi2"
1026   [(set_attr "type" "alu_shift,load_byte")
1027    (set_attr "predicable" "yes")
1028    (set_attr "pool_range" "*,4096")
1029    (set_attr "neg_pool_range" "*,250")]
1030 )
1031
1032 (define_insn "thumb2_casesi_internal"
1033   [(parallel [(set (pc)
1034                (if_then_else
1035                 (leu (match_operand:SI 0 "s_register_operand" "r")
1036                      (match_operand:SI 1 "arm_rhs_operand" "rI"))
1037                 (mem:SI (plus:SI (mult:SI (match_dup 0) (const_int 4))
1038                                  (label_ref (match_operand 2 "" ""))))
1039                 (label_ref (match_operand 3 "" ""))))
1040               (clobber (reg:CC CC_REGNUM))
1041               (clobber (match_scratch:SI 4 "=&r"))
1042               (use (label_ref (match_dup 2)))])]
1043   "TARGET_THUMB2 && !flag_pic"
1044   "* return thumb2_output_casesi(operands);"
1045   [(set_attr "conds" "clob")
1046    (set_attr "length" "16")]
1047 )
1048
1049 (define_insn "thumb2_casesi_internal_pic"
1050   [(parallel [(set (pc)
1051                (if_then_else
1052                 (leu (match_operand:SI 0 "s_register_operand" "r")
1053                      (match_operand:SI 1 "arm_rhs_operand" "rI"))
1054                 (mem:SI (plus:SI (mult:SI (match_dup 0) (const_int 4))
1055                                  (label_ref (match_operand 2 "" ""))))
1056                 (label_ref (match_operand 3 "" ""))))
1057               (clobber (reg:CC CC_REGNUM))
1058               (clobber (match_scratch:SI 4 "=&r"))
1059               (clobber (match_scratch:SI 5 "=r"))
1060               (use (label_ref (match_dup 2)))])]
1061   "TARGET_THUMB2 && flag_pic"
1062   "* return thumb2_output_casesi(operands);"
1063   [(set_attr "conds" "clob")
1064    (set_attr "length" "20")]
1065 )
1066
1067 (define_insn_and_split "thumb2_eh_return"
1068   [(unspec_volatile [(match_operand:SI 0 "s_register_operand" "r")]
1069                     VUNSPEC_EH_RETURN)
1070    (clobber (match_scratch:SI 1 "=&r"))]
1071   "TARGET_THUMB2"
1072   "#"
1073   "&& reload_completed"
1074   [(const_int 0)]
1075   "
1076   {
1077     thumb_set_return_address (operands[0], operands[1]);
1078     DONE;
1079   }"
1080 )
1081
1082 ;; Peepholes and insns for 16-bit flag clobbering instructions.
1083 ;; The conditional forms of these instructions do not clobber CC.
1084 ;; However by the time peepholes are run it is probably too late to do
1085 ;; anything useful with this information.
1086 (define_peephole2
1087   [(set (match_operand:SI          0 "low_register_operand" "")
1088         (match_operator:SI 3 "thumb_16bit_operator"
1089          [(match_operand:SI 1  "low_register_operand" "")
1090           (match_operand:SI 2 "low_register_operand" "")]))]
1091   "TARGET_THUMB2
1092    && (rtx_equal_p(operands[0], operands[1])
1093        || GET_CODE(operands[3]) == PLUS
1094        || GET_CODE(operands[3]) == MINUS)
1095    && peep2_regno_dead_p(0, CC_REGNUM)"
1096   [(parallel
1097     [(set (match_dup 0)
1098           (match_op_dup 3
1099            [(match_dup 1)
1100             (match_dup 2)]))
1101      (clobber (reg:CC CC_REGNUM))])]
1102   ""
1103 )
1104
1105 (define_insn "*thumb2_alusi3_short"
1106   [(set (match_operand:SI          0 "s_register_operand" "=l")
1107         (match_operator:SI 3 "thumb_16bit_operator"
1108          [(match_operand:SI 1 "s_register_operand" "0")
1109           (match_operand:SI 2 "s_register_operand" "l")]))
1110    (clobber (reg:CC CC_REGNUM))]
1111   "TARGET_THUMB2 && reload_completed
1112    && GET_CODE(operands[3]) != PLUS
1113    && GET_CODE(operands[3]) != MINUS"
1114   "%I3%!\\t%0, %1, %2"
1115   [(set_attr "predicable" "yes")
1116    (set_attr "length" "2")]
1117 )
1118
1119 ;; Similarly for 16-bit shift instructions
1120 ;; There is no 16-bit rotate by immediate instruction.
1121 (define_peephole2
1122   [(set (match_operand:SI   0 "low_register_operand" "")
1123         (match_operator:SI  3 "shift_operator"
1124          [(match_operand:SI 1 "low_register_operand" "")
1125           (match_operand:SI 2 "low_reg_or_int_operand" "")]))]
1126   "TARGET_THUMB2
1127    && peep2_regno_dead_p(0, CC_REGNUM)
1128    && ((GET_CODE(operands[3]) != ROTATE && GET_CODE(operands[3]) != ROTATERT)
1129        || REG_P(operands[2]))"
1130   [(parallel
1131     [(set (match_dup 0)
1132           (match_op_dup 3
1133            [(match_dup 1)
1134             (match_dup 2)]))
1135      (clobber (reg:CC CC_REGNUM))])]
1136   ""
1137 )
1138
1139 (define_insn "*thumb2_shiftsi3_short"
1140   [(set (match_operand:SI   0 "low_register_operand" "=l")
1141         (match_operator:SI  3 "shift_operator"
1142          [(match_operand:SI 1 "low_register_operand"  "l")
1143           (match_operand:SI 2 "low_reg_or_int_operand" "lM")]))
1144    (clobber (reg:CC CC_REGNUM))]
1145   "TARGET_THUMB2 && reload_completed
1146    && ((GET_CODE(operands[3]) != ROTATE && GET_CODE(operands[3]) != ROTATERT)
1147        || REG_P(operands[2]))"
1148   "* return arm_output_shift(operands, 2);"
1149   [(set_attr "predicable" "yes")
1150    (set_attr "shift" "1")
1151    (set_attr "length" "2")
1152    (set (attr "type") (if_then_else (match_operand 2 "const_int_operand" "")
1153                       (const_string "alu_shift")
1154                       (const_string "alu_shift_reg")))]
1155 )
1156
1157 ;; 16-bit load immediate
1158 (define_peephole2
1159   [(set (match_operand:QHSI 0 "low_register_operand" "")
1160         (match_operand:QHSI 1 "const_int_operand" ""))]
1161   "TARGET_THUMB2
1162    && peep2_regno_dead_p(0, CC_REGNUM)
1163    && (unsigned HOST_WIDE_INT) INTVAL(operands[1]) < 256"
1164   [(parallel
1165     [(set (match_dup 0)
1166           (match_dup 1))
1167      (clobber (reg:CC CC_REGNUM))])]
1168   ""
1169 )
1170
1171 (define_insn "*thumb2_mov<mode>_shortim"
1172   [(set (match_operand:QHSI 0 "low_register_operand" "=l")
1173         (match_operand:QHSI 1 "const_int_operand" "I"))
1174    (clobber (reg:CC CC_REGNUM))]
1175   "TARGET_THUMB2 && reload_completed"
1176   "mov%!\t%0, %1"
1177   [(set_attr "predicable" "yes")
1178    (set_attr "length" "2")]
1179 )
1180
1181 ;; 16-bit add/sub immediate
1182 (define_peephole2
1183   [(set (match_operand:SI 0 "low_register_operand" "")
1184         (plus:SI (match_operand:SI 1 "low_register_operand" "")
1185                  (match_operand:SI 2 "const_int_operand" "")))]
1186   "TARGET_THUMB2
1187    && peep2_regno_dead_p(0, CC_REGNUM)
1188    && ((rtx_equal_p(operands[0], operands[1])
1189         && INTVAL(operands[2]) > -256 && INTVAL(operands[2]) < 256)
1190        || (INTVAL(operands[2]) > -8 && INTVAL(operands[2]) < 8))"
1191   [(parallel
1192     [(set (match_dup 0)
1193           (plus:SI (match_dup 1)
1194                    (match_dup 2)))
1195      (clobber (reg:CC CC_REGNUM))])]
1196   ""
1197 )
1198
1199 (define_insn "*thumb2_addsi_short"
1200   [(set (match_operand:SI 0 "low_register_operand" "=l,l")
1201         (plus:SI (match_operand:SI 1 "low_register_operand" "l,0")
1202                  (match_operand:SI 2 "low_reg_or_int_operand" "lPt,Ps")))
1203    (clobber (reg:CC CC_REGNUM))]
1204   "TARGET_THUMB2 && reload_completed"
1205   "*
1206     HOST_WIDE_INT val;
1207
1208     if (GET_CODE (operands[2]) == CONST_INT)
1209       val = INTVAL(operands[2]);
1210     else
1211       val = 0;
1212
1213     /* We prefer eg. subs rn, rn, #1 over adds rn, rn, #0xffffffff.  */
1214     if (val < 0 && const_ok_for_arm(ARM_SIGN_EXTEND (-val)))
1215       return \"sub%!\\t%0, %1, #%n2\";
1216     else
1217       return \"add%!\\t%0, %1, %2\";
1218   "
1219   [(set_attr "predicable" "yes")
1220    (set_attr "length" "2")]
1221 )
1222
1223 (define_insn "divsi3"
1224   [(set (match_operand:SI         0 "s_register_operand" "=r")
1225         (div:SI (match_operand:SI 1 "s_register_operand"  "r")
1226                 (match_operand:SI 2 "s_register_operand"  "r")))]
1227   "TARGET_THUMB2 && arm_arch_hwdiv"
1228   "sdiv%?\t%0, %1, %2"
1229   [(set_attr "predicable" "yes")
1230    (set_attr "insn" "sdiv")]
1231 )
1232
1233 (define_insn "udivsi3"
1234   [(set (match_operand:SI          0 "s_register_operand" "=r")
1235         (udiv:SI (match_operand:SI 1 "s_register_operand"  "r")
1236                  (match_operand:SI 2 "s_register_operand"  "r")))]
1237   "TARGET_THUMB2 && arm_arch_hwdiv"
1238   "udiv%?\t%0, %1, %2"
1239   [(set_attr "predicable" "yes")
1240    (set_attr "insn" "udiv")]
1241 )
1242
1243 (define_insn "*thumb2_subsi_short"
1244   [(set (match_operand:SI 0 "low_register_operand" "=l")
1245         (minus:SI (match_operand:SI 1 "low_register_operand" "l")
1246                   (match_operand:SI 2 "low_register_operand" "l")))
1247    (clobber (reg:CC CC_REGNUM))]
1248   "TARGET_THUMB2 && reload_completed"
1249   "sub%!\\t%0, %1, %2"
1250   [(set_attr "predicable" "yes")
1251    (set_attr "length" "2")]
1252 )
1253
1254 ;; 16-bit encodings of "muls" and "mul<c>".  We only use these when
1255 ;; optimizing for size since "muls" is slow on all known
1256 ;; implementations and since "mul<c>" will be generated by
1257 ;; "*arm_mulsi3_v6" anyhow.  The assembler will use a 16-bit encoding
1258 ;; for "mul<c>" whenever possible anyhow.
1259 (define_peephole2
1260   [(set (match_operand:SI 0 "low_register_operand" "")
1261         (mult:SI (match_operand:SI 1 "low_register_operand" "")
1262                  (match_dup 0)))]
1263   "TARGET_THUMB2 && optimize_size && peep2_regno_dead_p (0, CC_REGNUM)"
1264   [(parallel
1265     [(set (match_dup 0)
1266            (mult:SI (match_dup 0) (match_dup 1)))
1267      (clobber (reg:CC CC_REGNUM))])]
1268   ""
1269 )
1270
1271 (define_peephole2
1272   [(set (match_operand:SI 0 "low_register_operand" "")
1273         (mult:SI (match_dup 0)
1274                  (match_operand:SI 1 "low_register_operand" "")))]
1275   "TARGET_THUMB2 && optimize_size && peep2_regno_dead_p (0, CC_REGNUM)"
1276   [(parallel
1277     [(set (match_dup 0)
1278            (mult:SI (match_dup 0) (match_dup 1)))
1279      (clobber (reg:CC CC_REGNUM))])]
1280   ""
1281 )
1282
1283 (define_insn "*thumb2_mulsi_short"
1284   [(set (match_operand:SI 0 "low_register_operand" "=l")
1285         (mult:SI (match_operand:SI 1 "low_register_operand" "%0")
1286                  (match_operand:SI 2 "low_register_operand" "l")))
1287    (clobber (reg:CC CC_REGNUM))]
1288   "TARGET_THUMB2 && optimize_size && reload_completed"
1289   "mul%!\\t%0, %2, %0"
1290   [(set_attr "predicable" "yes")
1291    (set_attr "length" "2")
1292    (set_attr "insn" "muls")])
1293
1294 (define_insn "*thumb2_mulsi_short_compare0"
1295   [(set (reg:CC_NOOV CC_REGNUM)
1296         (compare:CC_NOOV
1297          (mult:SI (match_operand:SI 1 "register_operand" "%0")
1298                   (match_operand:SI 2 "register_operand" "l"))
1299          (const_int 0)))
1300    (set (match_operand:SI 0 "register_operand" "=l")
1301         (mult:SI (match_dup 1) (match_dup 2)))]
1302   "TARGET_THUMB2 && optimize_size"
1303   "muls\\t%0, %2, %0"
1304   [(set_attr "length" "2")
1305    (set_attr "insn" "muls")])
1306
1307 (define_insn "*thumb2_mulsi_short_compare0_scratch"
1308   [(set (reg:CC_NOOV CC_REGNUM)
1309         (compare:CC_NOOV
1310          (mult:SI (match_operand:SI 1 "register_operand" "%0")
1311                   (match_operand:SI 2 "register_operand" "l"))
1312          (const_int 0)))
1313    (clobber (match_scratch:SI 0 "=l"))]
1314   "TARGET_THUMB2 && optimize_size"
1315   "muls\\t%0, %2, %0"
1316   [(set_attr "length" "2")
1317    (set_attr "insn" "muls")])
1318
1319 (define_insn "*thumb2_cbz"
1320   [(set (pc) (if_then_else
1321               (eq (match_operand:SI 0 "s_register_operand" "l,?r")
1322                   (const_int 0))
1323               (label_ref (match_operand 1 "" ""))
1324               (pc)))
1325    (clobber (reg:CC CC_REGNUM))]
1326   "TARGET_THUMB2"
1327   "*
1328   if (get_attr_length (insn) == 2)
1329     return \"cbz\\t%0, %l1\";
1330   else
1331     return \"cmp\\t%0, #0\;beq\\t%l1\";
1332   "
1333   [(set (attr "length") 
1334         (if_then_else
1335             (and (ge (minus (match_dup 1) (pc)) (const_int 2))
1336                  (le (minus (match_dup 1) (pc)) (const_int 128))
1337                  (eq (symbol_ref ("which_alternative")) (const_int 0)))
1338             (const_int 2)
1339             (const_int 8)))]
1340 )
1341
1342 (define_insn "*thumb2_cbnz"
1343   [(set (pc) (if_then_else
1344               (ne (match_operand:SI 0 "s_register_operand" "l,?r")
1345                   (const_int 0))
1346               (label_ref (match_operand 1 "" ""))
1347               (pc)))
1348    (clobber (reg:CC CC_REGNUM))]
1349   "TARGET_THUMB2"
1350   "*
1351   if (get_attr_length (insn) == 2)
1352     return \"cbnz\\t%0, %l1\";
1353   else
1354     return \"cmp\\t%0, #0\;bne\\t%l1\";
1355   "
1356   [(set (attr "length") 
1357         (if_then_else
1358             (and (ge (minus (match_dup 1) (pc)) (const_int 2))
1359                  (le (minus (match_dup 1) (pc)) (const_int 128))
1360                  (eq (symbol_ref ("which_alternative")) (const_int 0)))
1361             (const_int 2)
1362             (const_int 8)))]
1363 )
1364
1365 ;; 16-bit complement
1366 (define_peephole2
1367   [(set (match_operand:SI 0 "low_register_operand" "")
1368         (not:SI (match_operand:SI 1 "low_register_operand" "")))]
1369   "TARGET_THUMB2
1370    && peep2_regno_dead_p(0, CC_REGNUM)"
1371   [(parallel
1372     [(set (match_dup 0)
1373           (not:SI (match_dup 1)))
1374      (clobber (reg:CC CC_REGNUM))])]
1375   ""
1376 )
1377
1378 (define_insn "*thumb2_one_cmplsi2_short"
1379   [(set (match_operand:SI 0 "low_register_operand" "=l")
1380         (not:SI (match_operand:SI 1 "low_register_operand" "l")))
1381    (clobber (reg:CC CC_REGNUM))]
1382   "TARGET_THUMB2 && reload_completed"
1383   "mvn%!\t%0, %1"
1384   [(set_attr "predicable" "yes")
1385    (set_attr "length" "2")]
1386 )
1387
1388 ;; 16-bit negate
1389 (define_peephole2
1390   [(set (match_operand:SI 0 "low_register_operand" "")
1391         (neg:SI (match_operand:SI 1 "low_register_operand" "")))]
1392   "TARGET_THUMB2
1393    && peep2_regno_dead_p(0, CC_REGNUM)"
1394   [(parallel
1395     [(set (match_dup 0)
1396           (neg:SI (match_dup 1)))
1397      (clobber (reg:CC CC_REGNUM))])]
1398   ""
1399 )
1400
1401 (define_insn "*thumb2_negsi2_short"
1402   [(set (match_operand:SI 0 "low_register_operand" "=l")
1403         (neg:SI (match_operand:SI 1 "low_register_operand" "l")))
1404    (clobber (reg:CC CC_REGNUM))]
1405   "TARGET_THUMB2 && reload_completed"
1406   "neg%!\t%0, %1"
1407   [(set_attr "predicable" "yes")
1408    (set_attr "length" "2")]
1409 )
1410
1411 (define_insn "orsi_notsi_si"
1412   [(set (match_operand:SI 0 "s_register_operand" "=r")
1413         (ior:SI (not:SI (match_operand:SI 2 "s_register_operand" "r"))
1414                 (match_operand:SI 1 "s_register_operand" "r")))]
1415   "TARGET_THUMB2"
1416   "orn%?\\t%0, %1, %2"
1417   [(set_attr "predicable" "yes")]
1418 )
1419
1420 (define_insn "*thumb_orsi_not_shiftsi_si"
1421   [(set (match_operand:SI 0 "s_register_operand" "=r")
1422         (ior:SI (not:SI (match_operator:SI 4 "shift_operator"
1423                          [(match_operand:SI 2 "s_register_operand" "r")
1424                           (match_operand:SI 3 "const_int_operand" "M")]))
1425                 (match_operand:SI 1 "s_register_operand" "r")))]
1426   "TARGET_THUMB2"
1427   "orn%?\\t%0, %1, %2%S4"
1428   [(set_attr "predicable" "yes")
1429    (set_attr "shift" "2")
1430    (set_attr "type" "alu_shift")]
1431 )
1432
1433 (define_insn_and_split "*thumb2_iorsi3"
1434   [(set (match_operand:SI         0 "s_register_operand" "=r,r,r")
1435         (ior:SI (match_operand:SI 1 "s_register_operand" "r,r,r")
1436                 (match_operand:SI 2 "reg_or_int_operand" "rI,K,?n")))]
1437   "TARGET_THUMB2"
1438   "@
1439    orr%?\\t%0, %1, %2
1440    orn%?\\t%0, %1, #%B2
1441    #"
1442   "TARGET_THUMB2
1443    && GET_CODE (operands[2]) == CONST_INT
1444    && !(const_ok_for_arm (INTVAL (operands[2]))
1445         || const_ok_for_arm (~INTVAL (operands[2])))"
1446   [(clobber (const_int 0))]
1447   "
1448   arm_split_constant  (IOR, SImode, curr_insn, 
1449                        INTVAL (operands[2]), operands[0], operands[1], 0);
1450   DONE;
1451   "
1452   [(set_attr "length" "4,4,16")
1453    (set_attr "predicable" "yes")]
1454 )