Home | History | Annotate | Line # | Download | only in rs6000
darwin.md revision 1.3
      1  1.1  mrg /* Machine description patterns for PowerPC running Darwin (Mac OS X).
      2  1.3  mrg    Copyright (C) 2004-2013 Free Software Foundation, Inc.
      3  1.1  mrg    Contributed by Apple Computer Inc.
      4  1.1  mrg 
      5  1.1  mrg This file is part of GCC.
      6  1.1  mrg 
      7  1.1  mrg GNU CC is free software; you can redistribute it and/or modify
      8  1.1  mrg it under the terms of the GNU General Public License as published by
      9  1.1  mrg the Free Software Foundation; either version 3, or (at your option)
     10  1.1  mrg any later version.
     11  1.1  mrg 
     12  1.1  mrg GNU CC is distributed in the hope that it will be useful,
     13  1.1  mrg but WITHOUT ANY WARRANTY; without even the implied warranty of
     14  1.1  mrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15  1.1  mrg GNU General Public License for more details.
     16  1.1  mrg 
     17  1.1  mrg You should have received a copy of the GNU General Public License
     18  1.1  mrg ;; along with GCC; see the file COPYING3.  If not see
     19  1.1  mrg ;; <http://www.gnu.org/licenses/>.  */
     20  1.1  mrg 
     21  1.1  mrg (define_insn "adddi3_high"
     22  1.1  mrg   [(set (match_operand:DI 0 "gpc_reg_operand" "=b")
     23  1.1  mrg         (plus:DI (match_operand:DI 1 "gpc_reg_operand" "b")
     24  1.1  mrg                  (high:DI (match_operand 2 "" ""))))]
     25  1.1  mrg   "TARGET_MACHO && TARGET_64BIT"
     26  1.3  mrg   "addis %0,%1,ha16(%2)"
     27  1.1  mrg   [(set_attr "length" "4")])
     28  1.1  mrg 
     29  1.1  mrg (define_insn "movdf_low_si"
     30  1.1  mrg   [(set (match_operand:DF 0 "gpc_reg_operand" "=f,!r")
     31  1.1  mrg         (mem:DF (lo_sum:SI (match_operand:SI 1 "gpc_reg_operand" "b,b")
     32  1.1  mrg                            (match_operand 2 "" ""))))]
     33  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && !TARGET_64BIT"
     34  1.1  mrg   "*
     35  1.1  mrg {
     36  1.1  mrg   switch (which_alternative)
     37  1.1  mrg     {
     38  1.1  mrg       case 0:
     39  1.1  mrg 	return \"lfd %0,lo16(%2)(%1)\";
     40  1.1  mrg       case 1:
     41  1.1  mrg 	{
     42  1.1  mrg 	  if (TARGET_POWERPC64 && TARGET_32BIT)
     43  1.1  mrg 	    /* Note, old assemblers didn't support relocation here.  */
     44  1.1  mrg 	    return \"ld %0,lo16(%2)(%1)\";
     45  1.1  mrg 	  else
     46  1.1  mrg 	    {
     47  1.3  mrg 	      output_asm_insn (\"la %0,lo16(%2)(%1)\", operands);
     48  1.3  mrg 	      output_asm_insn (\"lwz %L0,4(%0)\", operands);
     49  1.3  mrg 	      return (\"lwz %0,0(%0)\");
     50  1.1  mrg 	    }
     51  1.1  mrg 	}
     52  1.1  mrg       default:
     53  1.1  mrg 	gcc_unreachable ();
     54  1.1  mrg     }
     55  1.1  mrg }"
     56  1.1  mrg   [(set_attr "type" "load")
     57  1.1  mrg    (set_attr "length" "4,12")])
     58  1.1  mrg 
     59  1.1  mrg 
     60  1.1  mrg (define_insn "movdf_low_di"
     61  1.1  mrg   [(set (match_operand:DF 0 "gpc_reg_operand" "=f,!r")
     62  1.1  mrg         (mem:DF (lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b,b")
     63  1.1  mrg                            (match_operand 2 "" ""))))]
     64  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_64BIT"
     65  1.1  mrg   "*
     66  1.1  mrg {
     67  1.1  mrg   switch (which_alternative)
     68  1.1  mrg     {
     69  1.1  mrg       case 0:
     70  1.1  mrg 	return \"lfd %0,lo16(%2)(%1)\";
     71  1.1  mrg       case 1:
     72  1.1  mrg 	return \"ld %0,lo16(%2)(%1)\";
     73  1.1  mrg       default:
     74  1.1  mrg 	gcc_unreachable ();
     75  1.1  mrg     }
     76  1.1  mrg }"
     77  1.1  mrg   [(set_attr "type" "load")
     78  1.1  mrg    (set_attr "length" "4,4")])
     79  1.1  mrg 
     80  1.1  mrg (define_insn "movdf_low_st_si"
     81  1.1  mrg   [(set (mem:DF (lo_sum:SI (match_operand:SI 1 "gpc_reg_operand" "b")
     82  1.1  mrg                            (match_operand 2 "" "")))
     83  1.1  mrg 	(match_operand:DF 0 "gpc_reg_operand" "f"))]
     84  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && ! TARGET_64BIT"
     85  1.1  mrg   "stfd %0,lo16(%2)(%1)"
     86  1.1  mrg   [(set_attr "type" "store")
     87  1.1  mrg    (set_attr "length" "4")])
     88  1.1  mrg 
     89  1.1  mrg (define_insn "movdf_low_st_di"
     90  1.1  mrg   [(set (mem:DF (lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b")
     91  1.1  mrg                            (match_operand 2 "" "")))
     92  1.1  mrg 	(match_operand:DF 0 "gpc_reg_operand" "f"))]
     93  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_64BIT"
     94  1.1  mrg   "stfd %0,lo16(%2)(%1)"
     95  1.1  mrg   [(set_attr "type" "store")
     96  1.1  mrg    (set_attr "length" "4")])
     97  1.1  mrg 
     98  1.1  mrg (define_insn "movsf_low_si"
     99  1.1  mrg   [(set (match_operand:SF 0 "gpc_reg_operand" "=f,!r")
    100  1.1  mrg         (mem:SF (lo_sum:SI (match_operand:SI 1 "gpc_reg_operand" "b,b")
    101  1.1  mrg                            (match_operand 2 "" ""))))]
    102  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && ! TARGET_64BIT"
    103  1.1  mrg   "@
    104  1.1  mrg    lfs %0,lo16(%2)(%1)
    105  1.3  mrg    lwz %0,lo16(%2)(%1)"
    106  1.1  mrg   [(set_attr "type" "load")
    107  1.1  mrg    (set_attr "length" "4")])
    108  1.1  mrg 
    109  1.1  mrg (define_insn "movsf_low_di"
    110  1.1  mrg   [(set (match_operand:SF 0 "gpc_reg_operand" "=f,!r")
    111  1.1  mrg         (mem:SF (lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b,b")
    112  1.1  mrg                            (match_operand 2 "" ""))))]
    113  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_64BIT"
    114  1.1  mrg   "@
    115  1.1  mrg    lfs %0,lo16(%2)(%1)
    116  1.3  mrg    lwz %0,lo16(%2)(%1)"
    117  1.1  mrg   [(set_attr "type" "load")
    118  1.1  mrg    (set_attr "length" "4")])
    119  1.1  mrg 
    120  1.1  mrg (define_insn "movsf_low_st_si"
    121  1.1  mrg   [(set (mem:SF (lo_sum:SI (match_operand:SI 1 "gpc_reg_operand" "b,b")
    122  1.1  mrg                            (match_operand 2 "" "")))
    123  1.1  mrg 	(match_operand:SF 0 "gpc_reg_operand" "f,!r"))]
    124  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && ! TARGET_64BIT"
    125  1.1  mrg   "@
    126  1.1  mrg    stfs %0,lo16(%2)(%1)
    127  1.3  mrg    stw %0,lo16(%2)(%1)"
    128  1.1  mrg   [(set_attr "type" "store")
    129  1.1  mrg    (set_attr "length" "4")])
    130  1.1  mrg 
    131  1.1  mrg (define_insn "movsf_low_st_di"
    132  1.1  mrg   [(set (mem:SF (lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b,b")
    133  1.1  mrg                            (match_operand 2 "" "")))
    134  1.1  mrg 	(match_operand:SF 0 "gpc_reg_operand" "f,!r"))]
    135  1.1  mrg   "TARGET_MACHO && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_64BIT"
    136  1.1  mrg   "@
    137  1.1  mrg    stfs %0,lo16(%2)(%1)
    138  1.3  mrg    stw %0,lo16(%2)(%1)"
    139  1.1  mrg   [(set_attr "type" "store")
    140  1.1  mrg    (set_attr "length" "4")])
    141  1.1  mrg 
    142  1.1  mrg ;; 64-bit MachO load/store support
    143  1.1  mrg (define_insn "movdi_low"
    144  1.3  mrg   [(set (match_operand:DI 0 "gpc_reg_operand" "=r,*!d")
    145  1.3  mrg         (mem:DI (lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b,b")
    146  1.1  mrg                            (match_operand 2 "" ""))))]
    147  1.1  mrg   "TARGET_MACHO && TARGET_64BIT"
    148  1.3  mrg   "@
    149  1.3  mrg    ld %0,lo16(%2)(%1)
    150  1.3  mrg    lfd %0,lo16(%2)(%1)"
    151  1.1  mrg   [(set_attr "type" "load")
    152  1.1  mrg    (set_attr "length" "4")])
    153  1.1  mrg 
    154  1.1  mrg (define_insn "movsi_low_st"
    155  1.1  mrg   [(set (mem:SI (lo_sum:SI (match_operand:SI 1 "gpc_reg_operand" "b")
    156  1.1  mrg                            (match_operand 2 "" "")))
    157  1.1  mrg 	(match_operand:SI 0 "gpc_reg_operand" "r"))]
    158  1.1  mrg   "TARGET_MACHO && ! TARGET_64BIT"
    159  1.3  mrg   "stw %0,lo16(%2)(%1)"
    160  1.1  mrg   [(set_attr "type" "store")
    161  1.1  mrg    (set_attr "length" "4")])
    162  1.1  mrg 
    163  1.1  mrg (define_insn "movdi_low_st"
    164  1.3  mrg   [(set (mem:DI (lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b,b")
    165  1.1  mrg                            (match_operand 2 "" "")))
    166  1.3  mrg 	(match_operand:DI 0 "gpc_reg_operand" "r,*!d"))]
    167  1.1  mrg   "TARGET_MACHO && TARGET_64BIT"
    168  1.3  mrg   "@
    169  1.3  mrg    std %0,lo16(%2)(%1)
    170  1.3  mrg    stfd %0,lo16(%2)(%1)"
    171  1.1  mrg   [(set_attr "type" "store")
    172  1.1  mrg    (set_attr "length" "4")])
    173  1.1  mrg 
    174  1.1  mrg ;; Mach-O PIC trickery.
    175  1.1  mrg (define_expand "macho_high"
    176  1.1  mrg   [(set (match_operand 0 "" "")
    177  1.1  mrg 	(high (match_operand 1 "" "")))]
    178  1.1  mrg   "TARGET_MACHO"
    179  1.1  mrg {
    180  1.1  mrg   if (TARGET_64BIT)
    181  1.1  mrg     emit_insn (gen_macho_high_di (operands[0], operands[1]));
    182  1.1  mrg   else
    183  1.1  mrg     emit_insn (gen_macho_high_si (operands[0], operands[1]));
    184  1.1  mrg 
    185  1.1  mrg   DONE;
    186  1.1  mrg })
    187  1.1  mrg 
    188  1.1  mrg (define_insn "macho_high_si"
    189  1.1  mrg   [(set (match_operand:SI 0 "gpc_reg_operand" "=b*r")
    190  1.1  mrg 	(high:SI (match_operand 1 "" "")))]
    191  1.1  mrg   "TARGET_MACHO && ! TARGET_64BIT"
    192  1.3  mrg   "lis %0,ha16(%1)")
    193  1.1  mrg 
    194  1.1  mrg 
    195  1.1  mrg (define_insn "macho_high_di"
    196  1.1  mrg   [(set (match_operand:DI 0 "gpc_reg_operand" "=b*r")
    197  1.1  mrg 	(high:DI (match_operand 1 "" "")))]
    198  1.1  mrg   "TARGET_MACHO && TARGET_64BIT"
    199  1.3  mrg   "lis %0,ha16(%1)")
    200  1.1  mrg 
    201  1.1  mrg (define_expand "macho_low"
    202  1.1  mrg   [(set (match_operand 0 "" "")
    203  1.1  mrg 	(lo_sum (match_operand 1 "" "")
    204  1.1  mrg 		   (match_operand 2 "" "")))]
    205  1.1  mrg    "TARGET_MACHO"
    206  1.1  mrg {
    207  1.1  mrg   if (TARGET_64BIT)
    208  1.1  mrg     emit_insn (gen_macho_low_di (operands[0], operands[1], operands[2]));
    209  1.1  mrg   else
    210  1.1  mrg     emit_insn (gen_macho_low_si (operands[0], operands[1], operands[2]));
    211  1.1  mrg 
    212  1.1  mrg   DONE;
    213  1.1  mrg })
    214  1.1  mrg 
    215  1.1  mrg (define_insn "macho_low_si"
    216  1.1  mrg   [(set (match_operand:SI 0 "gpc_reg_operand" "=r,r")
    217  1.1  mrg 	(lo_sum:SI (match_operand:SI 1 "gpc_reg_operand" "b,!*r")
    218  1.1  mrg 		   (match_operand 2 "" "")))]
    219  1.1  mrg    "TARGET_MACHO && ! TARGET_64BIT"
    220  1.1  mrg    "@
    221  1.3  mrg     la %0,lo16(%2)(%1)
    222  1.3  mrg     addic %0,%1,lo16(%2)")
    223  1.1  mrg 
    224  1.1  mrg (define_insn "macho_low_di"
    225  1.1  mrg   [(set (match_operand:DI 0 "gpc_reg_operand" "=r,r")
    226  1.1  mrg 	(lo_sum:DI (match_operand:DI 1 "gpc_reg_operand" "b,!*r")
    227  1.1  mrg 		   (match_operand 2 "" "")))]
    228  1.1  mrg    "TARGET_MACHO && TARGET_64BIT"
    229  1.1  mrg    "@
    230  1.3  mrg     la %0,lo16(%2)(%1)
    231  1.3  mrg     addic %0,%1,lo16(%2)")
    232  1.1  mrg 
    233  1.1  mrg (define_split
    234  1.1  mrg   [(set (mem:V4SI (plus:DI (match_operand:DI 0 "gpc_reg_operand" "")
    235  1.1  mrg 			 (match_operand:DI 1 "short_cint_operand" "")))
    236  1.1  mrg 	(match_operand:V4SI 2 "register_operand" ""))
    237  1.1  mrg    (clobber (match_operand:DI 3 "gpc_reg_operand" ""))]
    238  1.1  mrg   "TARGET_MACHO && TARGET_64BIT"
    239  1.1  mrg   [(set (match_dup 3) (plus:DI (match_dup 0) (match_dup 1)))
    240  1.1  mrg    (set (mem:V4SI (match_dup 3))
    241  1.1  mrg 	(match_dup 2))]
    242  1.1  mrg   "")
    243  1.1  mrg 
    244  1.1  mrg (define_expand "load_macho_picbase"
    245  1.1  mrg   [(set (reg:SI 65)
    246  1.1  mrg         (unspec [(match_operand 0 "" "")]
    247  1.1  mrg                    UNSPEC_LD_MPIC))]
    248  1.1  mrg   "(DEFAULT_ABI == ABI_DARWIN) && flag_pic"
    249  1.1  mrg {
    250  1.1  mrg   if (TARGET_32BIT)
    251  1.1  mrg     emit_insn (gen_load_macho_picbase_si (operands[0]));
    252  1.1  mrg   else
    253  1.1  mrg     emit_insn (gen_load_macho_picbase_di (operands[0]));
    254  1.1  mrg 
    255  1.1  mrg   DONE;
    256  1.1  mrg })
    257  1.1  mrg 
    258  1.1  mrg (define_insn "load_macho_picbase_si"
    259  1.1  mrg   [(set (reg:SI 65)
    260  1.1  mrg 	(unspec:SI [(match_operand:SI 0 "immediate_operand" "s")
    261  1.1  mrg 		    (pc)] UNSPEC_LD_MPIC))]
    262  1.1  mrg   "(DEFAULT_ABI == ABI_DARWIN) && flag_pic"
    263  1.1  mrg   "bcl 20,31,%0\\n%0:"
    264  1.1  mrg   [(set_attr "type" "branch")
    265  1.1  mrg    (set_attr "length" "4")])
    266  1.1  mrg 
    267  1.1  mrg (define_insn "load_macho_picbase_di"
    268  1.1  mrg   [(set (reg:DI 65)
    269  1.1  mrg 	(unspec:DI [(match_operand:DI 0 "immediate_operand" "s")
    270  1.1  mrg 		    (pc)] UNSPEC_LD_MPIC))]
    271  1.1  mrg   "(DEFAULT_ABI == ABI_DARWIN) && flag_pic && TARGET_64BIT"
    272  1.1  mrg   "bcl 20,31,%0\\n%0:"
    273  1.1  mrg   [(set_attr "type" "branch")
    274  1.1  mrg    (set_attr "length" "4")])
    275  1.1  mrg 
    276  1.1  mrg (define_expand "macho_correct_pic"
    277  1.1  mrg   [(set (match_operand 0 "" "")
    278  1.1  mrg 	(plus (match_operand 1 "" "")
    279  1.1  mrg 		 (unspec [(match_operand 2 "" "")
    280  1.1  mrg 			     (match_operand 3 "" "")]
    281  1.1  mrg 			    UNSPEC_MPIC_CORRECT)))]
    282  1.1  mrg   "DEFAULT_ABI == ABI_DARWIN"
    283  1.1  mrg {
    284  1.1  mrg   if (TARGET_32BIT)
    285  1.1  mrg     emit_insn (gen_macho_correct_pic_si (operands[0], operands[1], operands[2],
    286  1.1  mrg 	       operands[3]));
    287  1.1  mrg   else
    288  1.1  mrg     emit_insn (gen_macho_correct_pic_di (operands[0], operands[1], operands[2],
    289  1.1  mrg 	       operands[3]));
    290  1.1  mrg 
    291  1.1  mrg   DONE;
    292  1.1  mrg })
    293  1.1  mrg 
    294  1.1  mrg (define_insn "macho_correct_pic_si"
    295  1.1  mrg   [(set (match_operand:SI 0 "gpc_reg_operand" "=r")
    296  1.1  mrg 	(plus:SI (match_operand:SI 1 "gpc_reg_operand" "r")
    297  1.1  mrg 		 (unspec:SI [(match_operand:SI 2 "immediate_operand" "s")
    298  1.1  mrg 			     (match_operand:SI 3 "immediate_operand" "s")]
    299  1.1  mrg 			    UNSPEC_MPIC_CORRECT)))]
    300  1.1  mrg   "DEFAULT_ABI == ABI_DARWIN"
    301  1.1  mrg   "addis %0,%1,ha16(%2-%3)\n\taddi %0,%0,lo16(%2-%3)"
    302  1.1  mrg   [(set_attr "length" "8")])
    303  1.1  mrg 
    304  1.1  mrg (define_insn "macho_correct_pic_di"
    305  1.1  mrg   [(set (match_operand:DI 0 "gpc_reg_operand" "=r")
    306  1.1  mrg 	(plus:DI (match_operand:DI 1 "gpc_reg_operand" "r")
    307  1.1  mrg 		 (unspec:DI [(match_operand:DI 2 "immediate_operand" "s")
    308  1.1  mrg 			     (match_operand:DI 3 "immediate_operand" "s")]
    309  1.1  mrg 			    16)))]
    310  1.1  mrg   "DEFAULT_ABI == ABI_DARWIN && TARGET_64BIT"
    311  1.1  mrg   "addis %0,%1,ha16(%2-%3)\n\taddi %0,%0,lo16(%2-%3)"
    312  1.1  mrg   [(set_attr "length" "8")])
    313  1.1  mrg 
    314  1.1  mrg (define_insn "*call_indirect_nonlocal_darwin64"
    315  1.1  mrg   [(call (mem:SI (match_operand:DI 0 "register_operand" "c,*l,c,*l"))
    316  1.1  mrg 	 (match_operand 1 "" "g,g,g,g"))
    317  1.1  mrg    (use (match_operand:SI 2 "immediate_operand" "O,O,n,n"))
    318  1.1  mrg    (clobber (reg:SI 65))]
    319  1.1  mrg   "DEFAULT_ABI == ABI_DARWIN && TARGET_64BIT"
    320  1.1  mrg {
    321  1.1  mrg   return "b%T0l";
    322  1.1  mrg }
    323  1.1  mrg   [(set_attr "type" "jmpreg,jmpreg,jmpreg,jmpreg")
    324  1.1  mrg    (set_attr "length" "4,4,8,8")])
    325  1.1  mrg 
    326  1.1  mrg (define_insn "*call_nonlocal_darwin64"
    327  1.1  mrg   [(call (mem:SI (match_operand:DI 0 "symbol_ref_operand" "s,s"))
    328  1.1  mrg 	 (match_operand 1 "" "g,g"))
    329  1.1  mrg    (use (match_operand:SI 2 "immediate_operand" "O,n"))
    330  1.1  mrg    (clobber (reg:SI 65))]
    331  1.1  mrg   "(DEFAULT_ABI == ABI_DARWIN)
    332  1.1  mrg    && (INTVAL (operands[2]) & CALL_LONG) == 0"
    333  1.1  mrg {
    334  1.1  mrg #if TARGET_MACHO
    335  1.1  mrg   return output_call(insn, operands, 0, 2);
    336  1.1  mrg #else
    337  1.1  mrg   gcc_unreachable ();
    338  1.1  mrg #endif
    339  1.1  mrg }
    340  1.1  mrg   [(set_attr "type" "branch,branch")
    341  1.1  mrg    (set_attr "length" "4,8")])
    342  1.1  mrg 
    343  1.1  mrg (define_insn "*call_value_indirect_nonlocal_darwin64"
    344  1.1  mrg   [(set (match_operand 0 "" "")
    345  1.1  mrg 	(call (mem:SI (match_operand:DI 1 "register_operand" "c,*l,c,*l"))
    346  1.1  mrg 	      (match_operand 2 "" "g,g,g,g")))
    347  1.1  mrg    (use (match_operand:SI 3 "immediate_operand" "O,O,n,n"))
    348  1.1  mrg    (clobber (reg:SI 65))]
    349  1.1  mrg   "DEFAULT_ABI == ABI_DARWIN"
    350  1.1  mrg {
    351  1.1  mrg   return "b%T1l";
    352  1.1  mrg }
    353  1.1  mrg   [(set_attr "type" "jmpreg,jmpreg,jmpreg,jmpreg")
    354  1.1  mrg    (set_attr "length" "4,4,8,8")])
    355  1.1  mrg 
    356  1.1  mrg (define_insn "*call_value_nonlocal_darwin64"
    357  1.1  mrg   [(set (match_operand 0 "" "")
    358  1.1  mrg 	(call (mem:SI (match_operand:DI 1 "symbol_ref_operand" "s,s"))
    359  1.1  mrg 	      (match_operand 2 "" "g,g")))
    360  1.1  mrg    (use (match_operand:SI 3 "immediate_operand" "O,n"))
    361  1.1  mrg    (clobber (reg:SI 65))]
    362  1.1  mrg   "(DEFAULT_ABI == ABI_DARWIN)
    363  1.1  mrg    && (INTVAL (operands[3]) & CALL_LONG) == 0"
    364  1.1  mrg {
    365  1.1  mrg #if TARGET_MACHO
    366  1.1  mrg   return output_call(insn, operands, 1, 3);
    367  1.1  mrg #else
    368  1.1  mrg   gcc_unreachable ();
    369  1.1  mrg #endif
    370  1.1  mrg }
    371  1.1  mrg   [(set_attr "type" "branch,branch")
    372  1.1  mrg    (set_attr "length" "4,8")])
    373