Home | History | Annotate | Line # | Download | only in bfin
bfin.h revision 1.3
      1  1.1  mrg /* Definitions for the Blackfin port.
      2  1.3  mrg    Copyright (C) 2005-2013 Free Software Foundation, Inc.
      3  1.1  mrg    Contributed by Analog Devices.
      4  1.1  mrg 
      5  1.1  mrg    This file is part of GCC.
      6  1.1  mrg 
      7  1.1  mrg    GCC is free software; you can redistribute it and/or modify it
      8  1.1  mrg    under the terms of the GNU General Public License as published
      9  1.1  mrg    by the Free Software Foundation; either version 3, or (at your
     10  1.1  mrg    option) any later version.
     11  1.1  mrg 
     12  1.1  mrg    GCC is distributed in the hope that it will be useful, but WITHOUT
     13  1.1  mrg    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
     14  1.1  mrg    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
     15  1.1  mrg    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 #ifndef _BFIN_CONFIG
     22  1.1  mrg #define _BFIN_CONFIG
     23  1.1  mrg 
     24  1.3  mrg #ifndef BFIN_OPTS_H
     25  1.3  mrg #include "config/bfin/bfin-opts.h"
     26  1.3  mrg #endif
     27  1.3  mrg 
     28  1.1  mrg #define OBJECT_FORMAT_ELF
     29  1.1  mrg 
     30  1.1  mrg #define BRT 1
     31  1.1  mrg #define BRF 0
     32  1.1  mrg 
     33  1.1  mrg /* Predefinition in the preprocessor for this target machine */
     34  1.1  mrg #ifndef TARGET_CPU_CPP_BUILTINS
     35  1.1  mrg #define TARGET_CPU_CPP_BUILTINS()		\
     36  1.1  mrg   do						\
     37  1.1  mrg     {						\
     38  1.1  mrg       builtin_define_std ("bfin");		\
     39  1.1  mrg       builtin_define_std ("BFIN");		\
     40  1.1  mrg       builtin_define ("__ADSPBLACKFIN__");	\
     41  1.1  mrg       builtin_define ("__ADSPLPBLACKFIN__");	\
     42  1.1  mrg 						\
     43  1.1  mrg       switch (bfin_cpu_type)			\
     44  1.1  mrg 	{					\
     45  1.1  mrg 	case BFIN_CPU_BF512:			\
     46  1.1  mrg 	  builtin_define ("__ADSPBF512__");	\
     47  1.1  mrg 	  builtin_define ("__ADSPBF51x__");	\
     48  1.1  mrg 	  break;				\
     49  1.1  mrg 	case BFIN_CPU_BF514:			\
     50  1.1  mrg 	  builtin_define ("__ADSPBF514__");	\
     51  1.1  mrg 	  builtin_define ("__ADSPBF51x__");	\
     52  1.1  mrg 	  break;				\
     53  1.1  mrg 	case BFIN_CPU_BF516:			\
     54  1.1  mrg 	  builtin_define ("__ADSPBF516__");	\
     55  1.1  mrg 	  builtin_define ("__ADSPBF51x__");	\
     56  1.1  mrg 	  break;				\
     57  1.1  mrg 	case BFIN_CPU_BF518:			\
     58  1.1  mrg 	  builtin_define ("__ADSPBF518__");	\
     59  1.1  mrg 	  builtin_define ("__ADSPBF51x__");	\
     60  1.1  mrg 	  break;				\
     61  1.1  mrg 	case BFIN_CPU_BF522:			\
     62  1.1  mrg 	  builtin_define ("__ADSPBF522__");	\
     63  1.1  mrg 	  builtin_define ("__ADSPBF52x__");	\
     64  1.1  mrg 	  break;				\
     65  1.1  mrg 	case BFIN_CPU_BF523:			\
     66  1.1  mrg 	  builtin_define ("__ADSPBF523__");	\
     67  1.1  mrg 	  builtin_define ("__ADSPBF52x__");	\
     68  1.1  mrg 	  break;				\
     69  1.1  mrg 	case BFIN_CPU_BF524:			\
     70  1.1  mrg 	  builtin_define ("__ADSPBF524__");	\
     71  1.1  mrg 	  builtin_define ("__ADSPBF52x__");	\
     72  1.1  mrg 	  break;				\
     73  1.1  mrg 	case BFIN_CPU_BF525:			\
     74  1.1  mrg 	  builtin_define ("__ADSPBF525__");	\
     75  1.1  mrg 	  builtin_define ("__ADSPBF52x__");	\
     76  1.1  mrg 	  break;				\
     77  1.1  mrg 	case BFIN_CPU_BF526:			\
     78  1.1  mrg 	  builtin_define ("__ADSPBF526__");	\
     79  1.1  mrg 	  builtin_define ("__ADSPBF52x__");	\
     80  1.1  mrg 	  break;				\
     81  1.1  mrg 	case BFIN_CPU_BF527:			\
     82  1.1  mrg 	  builtin_define ("__ADSPBF527__");	\
     83  1.1  mrg 	  builtin_define ("__ADSPBF52x__");	\
     84  1.1  mrg 	  break;				\
     85  1.1  mrg 	case BFIN_CPU_BF531:			\
     86  1.1  mrg 	  builtin_define ("__ADSPBF531__");	\
     87  1.1  mrg 	  break;				\
     88  1.1  mrg 	case BFIN_CPU_BF532:			\
     89  1.1  mrg 	  builtin_define ("__ADSPBF532__");	\
     90  1.1  mrg 	  break;				\
     91  1.1  mrg 	case BFIN_CPU_BF533:			\
     92  1.1  mrg 	  builtin_define ("__ADSPBF533__");	\
     93  1.1  mrg 	  break;				\
     94  1.1  mrg 	case BFIN_CPU_BF534:			\
     95  1.1  mrg 	  builtin_define ("__ADSPBF534__");	\
     96  1.1  mrg 	  break;				\
     97  1.1  mrg 	case BFIN_CPU_BF536:			\
     98  1.1  mrg 	  builtin_define ("__ADSPBF536__");	\
     99  1.1  mrg 	  break;				\
    100  1.1  mrg 	case BFIN_CPU_BF537:			\
    101  1.1  mrg 	  builtin_define ("__ADSPBF537__");	\
    102  1.1  mrg 	  break;				\
    103  1.1  mrg 	case BFIN_CPU_BF538:			\
    104  1.1  mrg 	  builtin_define ("__ADSPBF538__");	\
    105  1.1  mrg 	  break;				\
    106  1.1  mrg 	case BFIN_CPU_BF539:			\
    107  1.1  mrg 	  builtin_define ("__ADSPBF539__");	\
    108  1.1  mrg 	  break;				\
    109  1.1  mrg 	case BFIN_CPU_BF542M:			\
    110  1.1  mrg 	  builtin_define ("__ADSPBF542M__");	\
    111  1.1  mrg 	case BFIN_CPU_BF542:			\
    112  1.1  mrg 	  builtin_define ("__ADSPBF542__");	\
    113  1.1  mrg 	  builtin_define ("__ADSPBF54x__");	\
    114  1.1  mrg 	  break;				\
    115  1.1  mrg 	case BFIN_CPU_BF544M:			\
    116  1.1  mrg 	  builtin_define ("__ADSPBF544M__");	\
    117  1.1  mrg 	case BFIN_CPU_BF544:			\
    118  1.1  mrg 	  builtin_define ("__ADSPBF544__");	\
    119  1.1  mrg 	  builtin_define ("__ADSPBF54x__");	\
    120  1.1  mrg 	  break;				\
    121  1.1  mrg 	case BFIN_CPU_BF547M:			\
    122  1.1  mrg 	  builtin_define ("__ADSPBF547M__");	\
    123  1.1  mrg 	case BFIN_CPU_BF547:			\
    124  1.1  mrg 	  builtin_define ("__ADSPBF547__");	\
    125  1.1  mrg 	  builtin_define ("__ADSPBF54x__");	\
    126  1.1  mrg 	  break;				\
    127  1.1  mrg 	case BFIN_CPU_BF548M:			\
    128  1.1  mrg 	  builtin_define ("__ADSPBF548M__");	\
    129  1.1  mrg 	case BFIN_CPU_BF548:			\
    130  1.1  mrg 	  builtin_define ("__ADSPBF548__");	\
    131  1.1  mrg 	  builtin_define ("__ADSPBF54x__");	\
    132  1.1  mrg 	  break;				\
    133  1.1  mrg 	case BFIN_CPU_BF549M:			\
    134  1.1  mrg 	  builtin_define ("__ADSPBF549M__");	\
    135  1.1  mrg 	case BFIN_CPU_BF549:			\
    136  1.1  mrg 	  builtin_define ("__ADSPBF549__");	\
    137  1.1  mrg 	  builtin_define ("__ADSPBF54x__");	\
    138  1.1  mrg 	  break;				\
    139  1.1  mrg 	case BFIN_CPU_BF561:			\
    140  1.1  mrg 	  builtin_define ("__ADSPBF561__");	\
    141  1.1  mrg 	  break;				\
    142  1.3  mrg 	case BFIN_CPU_BF592:            \
    143  1.3  mrg 	  builtin_define ("__ADSPBF592__"); \
    144  1.3  mrg 	  builtin_define ("__ADSPBF59x__"); \
    145  1.3  mrg 	  break;                \
    146  1.1  mrg 	}					\
    147  1.1  mrg 						\
    148  1.1  mrg       if (bfin_si_revision != -1)		\
    149  1.1  mrg 	{					\
    150  1.1  mrg 	  /* space of 0xnnnn and a NUL */	\
    151  1.1  mrg 	  char *buf = XALLOCAVEC (char, 7);	\
    152  1.1  mrg 						\
    153  1.1  mrg 	  sprintf (buf, "0x%04x", bfin_si_revision);			\
    154  1.1  mrg 	  builtin_define_with_value ("__SILICON_REVISION__", buf, 0);	\
    155  1.1  mrg 	}								\
    156  1.1  mrg 									\
    157  1.1  mrg       if (bfin_workarounds)						\
    158  1.1  mrg 	builtin_define ("__WORKAROUNDS_ENABLED");			\
    159  1.1  mrg       if (ENABLE_WA_SPECULATIVE_LOADS)					\
    160  1.1  mrg 	builtin_define ("__WORKAROUND_SPECULATIVE_LOADS");		\
    161  1.1  mrg       if (ENABLE_WA_SPECULATIVE_SYNCS)					\
    162  1.1  mrg 	builtin_define ("__WORKAROUND_SPECULATIVE_SYNCS");		\
    163  1.1  mrg       if (ENABLE_WA_INDIRECT_CALLS)					\
    164  1.1  mrg 	builtin_define ("__WORKAROUND_INDIRECT_CALLS");			\
    165  1.1  mrg       if (ENABLE_WA_RETS)						\
    166  1.1  mrg 	builtin_define ("__WORKAROUND_RETS");				\
    167  1.1  mrg 						\
    168  1.1  mrg       if (TARGET_FDPIC)				\
    169  1.1  mrg 	{					\
    170  1.1  mrg 	  builtin_define ("__BFIN_FDPIC__");	\
    171  1.1  mrg 	  builtin_define ("__FDPIC__");		\
    172  1.1  mrg 	}					\
    173  1.1  mrg       if (TARGET_ID_SHARED_LIBRARY		\
    174  1.1  mrg 	  && !TARGET_SEP_DATA)			\
    175  1.1  mrg 	builtin_define ("__ID_SHARED_LIB__");	\
    176  1.1  mrg       if (flag_no_builtin)			\
    177  1.1  mrg 	builtin_define ("__NO_BUILTIN");	\
    178  1.1  mrg       if (TARGET_MULTICORE)			\
    179  1.1  mrg 	builtin_define ("__BFIN_MULTICORE");	\
    180  1.1  mrg       if (TARGET_COREA)				\
    181  1.1  mrg 	builtin_define ("__BFIN_COREA");	\
    182  1.1  mrg       if (TARGET_COREB)				\
    183  1.1  mrg 	builtin_define ("__BFIN_COREB");	\
    184  1.1  mrg       if (TARGET_SDRAM)				\
    185  1.1  mrg 	builtin_define ("__BFIN_SDRAM");	\
    186  1.1  mrg     }						\
    187  1.1  mrg   while (0)
    188  1.1  mrg #endif
    189  1.1  mrg 
    190  1.1  mrg #define DRIVER_SELF_SPECS SUBTARGET_DRIVER_SELF_SPECS	"\
    191  1.1  mrg  %{mleaf-id-shared-library:%{!mid-shared-library:-mid-shared-library}} \
    192  1.1  mrg  %{mfdpic:%{!fpic:%{!fpie:%{!fPIC:%{!fPIE:\
    193  1.1  mrg    	    %{!fno-pic:%{!fno-pie:%{!fno-PIC:%{!fno-PIE:-fpie}}}}}}}}} \
    194  1.1  mrg "
    195  1.1  mrg #ifndef SUBTARGET_DRIVER_SELF_SPECS
    196  1.1  mrg # define SUBTARGET_DRIVER_SELF_SPECS
    197  1.1  mrg #endif
    198  1.1  mrg 
    199  1.1  mrg #define LINK_GCC_C_SEQUENCE_SPEC "\
    200  1.1  mrg   %{mfast-fp:-lbffastfp} %G %L %{mfast-fp:-lbffastfp} %G \
    201  1.1  mrg "
    202  1.1  mrg 
    203  1.1  mrg #undef  ASM_SPEC
    204  1.1  mrg #define ASM_SPEC "\
    205  1.1  mrg     %{mno-fdpic:-mnopic} %{mfdpic}"
    206  1.1  mrg 
    207  1.1  mrg #define LINK_SPEC "\
    208  1.1  mrg %{h*} %{v:-V} \
    209  1.1  mrg %{mfdpic:-melf32bfinfd -z text} \
    210  1.1  mrg %{static:-dn -Bstatic} \
    211  1.1  mrg %{shared:-G -Bdynamic} \
    212  1.1  mrg %{symbolic:-Bsymbolic} \
    213  1.1  mrg -init __init -fini __fini "
    214  1.1  mrg 
    215  1.1  mrg /* Generate DSP instructions, like DSP halfword loads */
    216  1.1  mrg #define TARGET_DSP			(1)
    217  1.1  mrg 
    218  1.1  mrg #define TARGET_DEFAULT 0
    219  1.1  mrg 
    220  1.1  mrg /* Maximum number of library ids we permit */
    221  1.1  mrg #define MAX_LIBRARY_ID 255
    222  1.1  mrg 
    223  1.1  mrg extern const char *bfin_library_id_string;
    224  1.1  mrg 
    225  1.1  mrg #define FUNCTION_MODE    SImode
    226  1.1  mrg #define Pmode            SImode
    227  1.1  mrg 
    228  1.1  mrg /* store-condition-codes instructions store 0 for false
    229  1.1  mrg    This is the value stored for true.  */
    230  1.1  mrg #define STORE_FLAG_VALUE 1
    231  1.1  mrg 
    232  1.1  mrg /* Define this if pushing a word on the stack
    233  1.1  mrg    makes the stack pointer a smaller address.  */
    234  1.1  mrg #define STACK_GROWS_DOWNWARD
    235  1.1  mrg 
    236  1.1  mrg #define STACK_PUSH_CODE PRE_DEC
    237  1.1  mrg 
    238  1.1  mrg /* Define this to nonzero if the nominal address of the stack frame
    239  1.1  mrg    is at the high-address end of the local variables;
    240  1.1  mrg    that is, each additional local variable allocated
    241  1.1  mrg    goes at a more negative offset in the frame.  */
    242  1.1  mrg #define FRAME_GROWS_DOWNWARD 1
    243  1.1  mrg 
    244  1.1  mrg /* We define a dummy ARGP register; the parameters start at offset 0 from
    245  1.1  mrg    it. */
    246  1.1  mrg #define FIRST_PARM_OFFSET(DECL) 0
    247  1.1  mrg 
    248  1.1  mrg /* Offset within stack frame to start allocating local variables at.
    249  1.1  mrg    If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
    250  1.1  mrg    first local allocated.  Otherwise, it is the offset to the BEGINNING
    251  1.1  mrg    of the first local allocated.  */
    252  1.1  mrg #define STARTING_FRAME_OFFSET 0
    253  1.1  mrg 
    254  1.1  mrg /* Register to use for pushing function arguments.  */
    255  1.1  mrg #define STACK_POINTER_REGNUM REG_P6
    256  1.1  mrg 
    257  1.1  mrg /* Base register for access to local variables of the function.  */
    258  1.1  mrg #define FRAME_POINTER_REGNUM REG_P7
    259  1.1  mrg 
    260  1.1  mrg /* A dummy register that will be eliminated to either FP or SP.  */
    261  1.1  mrg #define ARG_POINTER_REGNUM REG_ARGP
    262  1.1  mrg 
    263  1.1  mrg /* `PIC_OFFSET_TABLE_REGNUM'
    264  1.1  mrg      The register number of the register used to address a table of
    265  1.1  mrg      static data addresses in memory.  In some cases this register is
    266  1.1  mrg      defined by a processor's "application binary interface" (ABI).
    267  1.1  mrg      When this macro is defined, RTL is generated for this register
    268  1.1  mrg      once, as with the stack pointer and frame pointer registers.  If
    269  1.1  mrg      this macro is not defined, it is up to the machine-dependent files
    270  1.1  mrg      to allocate such a register (if necessary). */
    271  1.1  mrg #define PIC_OFFSET_TABLE_REGNUM (REG_P5)
    272  1.1  mrg 
    273  1.1  mrg #define FDPIC_FPTR_REGNO REG_P1
    274  1.1  mrg #define FDPIC_REGNO REG_P3
    275  1.1  mrg #define OUR_FDPIC_REG	get_hard_reg_initial_val (SImode, FDPIC_REGNO)
    276  1.1  mrg 
    277  1.1  mrg /* A static chain register for nested functions.  We need to use a
    278  1.1  mrg    call-clobbered register for this.  */
    279  1.1  mrg #define STATIC_CHAIN_REGNUM REG_P2
    280  1.1  mrg 
    281  1.1  mrg /* Define this if functions should assume that stack space has been
    282  1.1  mrg    allocated for arguments even when their values are passed in
    283  1.1  mrg    registers.
    284  1.1  mrg 
    285  1.1  mrg    The value of this macro is the size, in bytes, of the area reserved for
    286  1.1  mrg    arguments passed in registers.
    287  1.1  mrg 
    288  1.1  mrg    This space can either be allocated by the caller or be a part of the
    289  1.1  mrg    machine-dependent stack frame: `OUTGOING_REG_PARM_STACK_SPACE'
    290  1.1  mrg    says which.  */
    291  1.1  mrg #define FIXED_STACK_AREA 12
    292  1.1  mrg #define REG_PARM_STACK_SPACE(FNDECL) FIXED_STACK_AREA
    293  1.1  mrg 
    294  1.1  mrg /* Define this if the above stack space is to be considered part of the
    295  1.1  mrg  * space allocated by the caller.  */
    296  1.1  mrg #define OUTGOING_REG_PARM_STACK_SPACE(FNTYPE) 1
    297  1.1  mrg 
    298  1.1  mrg /* Define this if the maximum size of all the outgoing args is to be
    299  1.1  mrg    accumulated and pushed during the prologue.  The amount can be
    300  1.1  mrg    found in the variable crtl->outgoing_args_size. */
    301  1.1  mrg #define ACCUMULATE_OUTGOING_ARGS 1
    302  1.1  mrg 
    303  1.1  mrg /*#define DATA_ALIGNMENT(TYPE, BASIC-ALIGN) for arrays.. */
    304  1.1  mrg 
    305  1.1  mrg /* If defined, a C expression to compute the alignment for a local
    306  1.1  mrg    variable.  TYPE is the data type, and ALIGN is the alignment that
    307  1.1  mrg    the object would ordinarily have.  The value of this macro is used
    308  1.1  mrg    instead of that alignment to align the object.
    309  1.1  mrg 
    310  1.1  mrg    If this macro is not defined, then ALIGN is used.
    311  1.1  mrg 
    312  1.1  mrg    One use of this macro is to increase alignment of medium-size
    313  1.1  mrg    data to make it all fit in fewer cache lines.  */
    314  1.1  mrg 
    315  1.1  mrg #define LOCAL_ALIGNMENT(TYPE, ALIGN) bfin_local_alignment ((TYPE), (ALIGN))
    316  1.1  mrg 
    317  1.1  mrg /* Make strings word-aligned so strcpy from constants will be faster.  */
    318  1.1  mrg #define CONSTANT_ALIGNMENT(EXP, ALIGN)  \
    319  1.1  mrg   (TREE_CODE (EXP) == STRING_CST        \
    320  1.1  mrg    && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
    321  1.1  mrg 
    322  1.1  mrg #define TRAMPOLINE_SIZE (TARGET_FDPIC ? 30 : 18)
    323  1.1  mrg 
    324  1.1  mrg /* Definitions for register eliminations.
    326  1.1  mrg 
    327  1.1  mrg    This is an array of structures.  Each structure initializes one pair
    328  1.1  mrg    of eliminable registers.  The "from" register number is given first,
    329  1.1  mrg    followed by "to".  Eliminations of the same "from" register are listed
    330  1.1  mrg    in order of preference.
    331  1.1  mrg 
    332  1.1  mrg    There are two registers that can always be eliminated on the i386.
    333  1.1  mrg    The frame pointer and the arg pointer can be replaced by either the
    334  1.1  mrg    hard frame pointer or to the stack pointer, depending upon the
    335  1.1  mrg    circumstances.  The hard frame pointer is not used before reload and
    336  1.1  mrg    so it is not eligible for elimination.  */
    337  1.1  mrg 
    338  1.1  mrg #define ELIMINABLE_REGS				\
    339  1.1  mrg {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},	\
    340  1.1  mrg  { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM},	\
    341  1.1  mrg  { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}	\
    342  1.1  mrg 
    343  1.1  mrg /* Define the offset between two registers, one to be eliminated, and the other
    344  1.1  mrg    its replacement, at the start of a routine.  */
    345  1.1  mrg 
    346  1.1  mrg #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
    347  1.1  mrg   ((OFFSET) = bfin_initial_elimination_offset ((FROM), (TO)))
    348  1.1  mrg 
    349  1.1  mrg /* This processor has
    351  1.1  mrg    8 data register for doing arithmetic
    352  1.1  mrg    8  pointer register for doing addressing, including
    353  1.1  mrg       1  stack pointer P6
    354  1.1  mrg       1  frame pointer P7
    355  1.1  mrg    4 sets of indexing registers (I0-3, B0-3, L0-3, M0-3)
    356  1.1  mrg    1  condition code flag register CC
    357  1.1  mrg    5  return address registers RETS/I/X/N/E
    358  1.1  mrg    1  arithmetic status register (ASTAT).  */
    359  1.1  mrg 
    360  1.1  mrg #define FIRST_PSEUDO_REGISTER 50
    361  1.1  mrg 
    362  1.1  mrg #define D_REGNO_P(X) ((X) <= REG_R7)
    363  1.1  mrg #define P_REGNO_P(X) ((X) >= REG_P0 && (X) <= REG_P7)
    364  1.1  mrg #define I_REGNO_P(X) ((X) >= REG_I0 && (X) <= REG_I3)
    365  1.1  mrg #define DP_REGNO_P(X) (D_REGNO_P (X) || P_REGNO_P (X))
    366  1.1  mrg #define ADDRESS_REGNO_P(X) ((X) >= REG_P0 && (X) <= REG_M3)
    367  1.1  mrg #define DREG_P(X) (REG_P (X) && D_REGNO_P (REGNO (X)))
    368  1.1  mrg #define PREG_P(X) (REG_P (X) && P_REGNO_P (REGNO (X)))
    369  1.1  mrg #define IREG_P(X) (REG_P (X) && I_REGNO_P (REGNO (X)))
    370  1.1  mrg #define DPREG_P(X) (REG_P (X) && DP_REGNO_P (REGNO (X)))
    371  1.1  mrg 
    372  1.1  mrg #define REGISTER_NAMES { \
    373  1.1  mrg   "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", \
    374  1.1  mrg   "P0", "P1", "P2", "P3", "P4", "P5", "SP", "FP", \
    375  1.1  mrg   "I0", "I1", "I2", "I3", "B0", "B1", "B2", "B3", \
    376  1.1  mrg   "L0", "L1", "L2", "L3", "M0", "M1", "M2", "M3", \
    377  1.1  mrg   "A0", "A1", \
    378  1.1  mrg   "CC", \
    379  1.1  mrg   "RETS", "RETI", "RETX", "RETN", "RETE", "ASTAT", "SEQSTAT", "USP", \
    380  1.1  mrg   "ARGP", \
    381  1.1  mrg   "LT0", "LT1", "LC0", "LC1", "LB0", "LB1" \
    382  1.1  mrg }
    383  1.1  mrg 
    384  1.1  mrg #define SHORT_REGISTER_NAMES { \
    385  1.1  mrg 	"R0.L",	"R1.L",	"R2.L",	"R3.L", "R4.L", "R5.L", "R6.L", "R7.L", \
    386  1.1  mrg 	"P0.L",	"P1.L",	"P2.L",	"P3.L", "P4.L", "P5.L", "SP.L", "FP.L", \
    387  1.1  mrg 	"I0.L",	"I1.L", "I2.L",	"I3.L",	"B0.L",	"B1.L",	"B2.L",	"B3.L", \
    388  1.1  mrg 	"L0.L",	"L1.L",	"L2.L",	"L3.L",	"M0.L",	"M1.L",	"M2.L",	"M3.L", }
    389  1.1  mrg 
    390  1.1  mrg #define HIGH_REGISTER_NAMES { \
    391  1.1  mrg 	"R0.H",	"R1.H",	"R2.H",	"R3.H", "R4.H", "R5.H", "R6.H", "R7.H", \
    392  1.1  mrg 	"P0.H",	"P1.H",	"P2.H",	"P3.H", "P4.H", "P5.H", "SP.H", "FP.H", \
    393  1.1  mrg 	"I0.H",	"I1.H",	"I2.H",	"I3.H",	"B0.H",	"B1.H",	"B2.H",	"B3.H", \
    394  1.1  mrg 	"L0.H",	"L1.H",	"L2.H",	"L3.H",	"M0.H",	"M1.H",	"M2.H",	"M3.H", }
    395  1.1  mrg 
    396  1.1  mrg #define DREGS_PAIR_NAMES { \
    397  1.1  mrg   "R1:0.p", 0, "R3:2.p", 0, "R5:4.p", 0, "R7:6.p", 0,  }
    398  1.1  mrg 
    399  1.1  mrg #define BYTE_REGISTER_NAMES { \
    400  1.1  mrg   "R0.B", "R1.B", "R2.B", "R3.B", "R4.B", "R5.B", "R6.B", "R7.B",  }
    401  1.1  mrg 
    402  1.1  mrg 
    403  1.1  mrg /* 1 for registers that have pervasive standard uses
    404  1.1  mrg    and are not available for the register allocator.  */
    405  1.1  mrg 
    406  1.1  mrg #define FIXED_REGISTERS \
    407  1.1  mrg /*r0 r1 r2 r3 r4 r5 r6 r7   p0 p1 p2 p3 p4 p5 p6 p7 */ \
    408  1.1  mrg { 0, 0, 0, 0, 0, 0, 0, 0,   0, 0, 0, 0, 0, 0, 1, 0,    \
    409  1.1  mrg /*i0 i1 i2 i3 b0 b1 b2 b3   l0 l1 l2 l3 m0 m1 m2 m3 */ \
    410  1.1  mrg   0, 0, 0, 0, 0, 0, 0, 0,   1, 1, 1, 1, 0, 0, 0, 0,    \
    411  1.1  mrg /*a0 a1 cc rets/i/x/n/e     astat seqstat usp argp lt0/1 lc0/1 */ \
    412  1.1  mrg   0, 0, 0, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,    \
    413  1.1  mrg /*lb0/1 */ \
    414  1.1  mrg   1, 1  \
    415  1.1  mrg }
    416  1.1  mrg 
    417  1.1  mrg /* 1 for registers not available across function calls.
    418  1.1  mrg    These must include the FIXED_REGISTERS and also any
    419  1.1  mrg    registers that can be used without being saved.
    420  1.1  mrg    The latter must include the registers where values are returned
    421  1.1  mrg    and the register where structure-value addresses are passed.
    422  1.1  mrg    Aside from that, you can include as many other registers as you like.  */
    423  1.1  mrg 
    424  1.1  mrg #define CALL_USED_REGISTERS \
    425  1.1  mrg /*r0 r1 r2 r3 r4 r5 r6 r7   p0 p1 p2 p3 p4 p5 p6 p7 */ \
    426  1.1  mrg { 1, 1, 1, 1, 0, 0, 0, 0,   1, 1, 1, 0, 0, 0, 1, 0, \
    427  1.1  mrg /*i0 i1 i2 i3 b0 b1 b2 b3   l0 l1 l2 l3 m0 m1 m2 m3 */ \
    428  1.1  mrg   1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   \
    429  1.1  mrg /*a0 a1 cc rets/i/x/n/e     astat seqstat usp argp lt0/1 lc0/1 */ \
    430  1.1  mrg   1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1, \
    431  1.1  mrg /*lb0/1 */ \
    432  1.1  mrg   1, 1  \
    433  1.1  mrg }
    434  1.1  mrg 
    435  1.1  mrg /* Order in which to allocate registers.  Each register must be
    436  1.1  mrg    listed once, even those in FIXED_REGISTERS.  List frame pointer
    437  1.1  mrg    late and fixed registers last.  Note that, in general, we prefer
    438  1.1  mrg    registers listed in CALL_USED_REGISTERS, keeping the others
    439  1.1  mrg    available for storage of persistent values. */
    440  1.1  mrg 
    441  1.1  mrg #define REG_ALLOC_ORDER \
    442  1.1  mrg { REG_R0, REG_R1, REG_R2, REG_R3, REG_R7, REG_R6, REG_R5, REG_R4, \
    443  1.1  mrg   REG_P2, REG_P1, REG_P0, REG_P5, REG_P4, REG_P3, REG_P6, REG_P7, \
    444  1.1  mrg   REG_A0, REG_A1, \
    445  1.1  mrg   REG_I0, REG_I1, REG_I2, REG_I3, REG_B0, REG_B1, REG_B2, REG_B3, \
    446  1.1  mrg   REG_L0, REG_L1, REG_L2, REG_L3, REG_M0, REG_M1, REG_M2, REG_M3, \
    447  1.1  mrg   REG_RETS, REG_RETI, REG_RETX, REG_RETN, REG_RETE,		  \
    448  1.1  mrg   REG_ASTAT, REG_SEQSTAT, REG_USP, 				  \
    449  1.1  mrg   REG_CC, REG_ARGP,						  \
    450  1.1  mrg   REG_LT0, REG_LT1, REG_LC0, REG_LC1, REG_LB0, REG_LB1		  \
    451  1.1  mrg }
    452  1.1  mrg 
    453  1.1  mrg /* Define the classes of registers for register constraints in the
    454  1.1  mrg    machine description.  Also define ranges of constants.
    455  1.1  mrg 
    456  1.1  mrg    One of the classes must always be named ALL_REGS and include all hard regs.
    457  1.1  mrg    If there is more than one class, another class must be named NO_REGS
    458  1.1  mrg    and contain no registers.
    459  1.1  mrg 
    460  1.1  mrg    The name GENERAL_REGS must be the name of a class (or an alias for
    461  1.1  mrg    another name such as ALL_REGS).  This is the class of registers
    462  1.1  mrg    that is allowed by "g" or "r" in a register constraint.
    463  1.1  mrg    Also, registers outside this class are allocated only when
    464  1.1  mrg    instructions express preferences for them.
    465  1.1  mrg 
    466  1.1  mrg    The classes must be numbered in nondecreasing order; that is,
    467  1.1  mrg    a larger-numbered class must never be contained completely
    468  1.1  mrg    in a smaller-numbered class.
    469  1.1  mrg 
    470  1.1  mrg    For any two classes, it is very desirable that there be another
    471  1.1  mrg    class that represents their union. */
    472  1.1  mrg 
    473  1.1  mrg 
    474  1.1  mrg enum reg_class
    475  1.1  mrg {
    476  1.1  mrg   NO_REGS,
    477  1.1  mrg   IREGS,
    478  1.1  mrg   BREGS,
    479  1.1  mrg   LREGS,
    480  1.1  mrg   MREGS,
    481  1.1  mrg   CIRCREGS, /* Circular buffering registers, Ix, Bx, Lx together form.  See Automatic Circular Buffering.  */
    482  1.1  mrg   DAGREGS,
    483  1.1  mrg   EVEN_AREGS,
    484  1.1  mrg   ODD_AREGS,
    485  1.1  mrg   AREGS,
    486  1.1  mrg   CCREGS,
    487  1.1  mrg   EVEN_DREGS,
    488  1.1  mrg   ODD_DREGS,
    489  1.1  mrg   D0REGS,
    490  1.1  mrg   D1REGS,
    491  1.1  mrg   D2REGS,
    492  1.1  mrg   D3REGS,
    493  1.1  mrg   D4REGS,
    494  1.1  mrg   D5REGS,
    495  1.1  mrg   D6REGS,
    496  1.1  mrg   D7REGS,
    497  1.1  mrg   DREGS,
    498  1.1  mrg   P0REGS,
    499  1.1  mrg   FDPIC_REGS,
    500  1.1  mrg   FDPIC_FPTR_REGS,
    501  1.1  mrg   PREGS_CLOBBERED,
    502  1.1  mrg   PREGS,
    503  1.1  mrg   IPREGS,
    504  1.1  mrg   DPREGS,
    505  1.1  mrg   MOST_REGS,
    506  1.1  mrg   LT_REGS,
    507  1.1  mrg   LC_REGS,
    508  1.1  mrg   LB_REGS,
    509  1.1  mrg   PROLOGUE_REGS,
    510  1.1  mrg   NON_A_CC_REGS,
    511  1.1  mrg   ALL_REGS, LIM_REG_CLASSES
    512  1.1  mrg };
    513  1.1  mrg 
    514  1.1  mrg #define N_REG_CLASSES ((int)LIM_REG_CLASSES)
    515  1.1  mrg 
    516  1.1  mrg #define GENERAL_REGS DPREGS
    517  1.1  mrg 
    518  1.1  mrg /* Give names of register classes as strings for dump file.   */
    519  1.1  mrg 
    520  1.1  mrg #define REG_CLASS_NAMES \
    521  1.1  mrg {  "NO_REGS",		\
    522  1.1  mrg    "IREGS",		\
    523  1.1  mrg    "BREGS",		\
    524  1.1  mrg    "LREGS",		\
    525  1.1  mrg    "MREGS",		\
    526  1.1  mrg    "CIRCREGS",		\
    527  1.1  mrg    "DAGREGS",		\
    528  1.1  mrg    "EVEN_AREGS",	\
    529  1.1  mrg    "ODD_AREGS",		\
    530  1.1  mrg    "AREGS",		\
    531  1.1  mrg    "CCREGS",		\
    532  1.1  mrg    "EVEN_DREGS",	\
    533  1.1  mrg    "ODD_DREGS",		\
    534  1.1  mrg    "D0REGS",		\
    535  1.1  mrg    "D1REGS",		\
    536  1.1  mrg    "D2REGS",		\
    537  1.1  mrg    "D3REGS",		\
    538  1.1  mrg    "D4REGS",		\
    539  1.1  mrg    "D5REGS",		\
    540  1.1  mrg    "D6REGS",		\
    541  1.1  mrg    "D7REGS",		\
    542  1.1  mrg    "DREGS",		\
    543  1.1  mrg    "P0REGS",		\
    544  1.1  mrg    "FDPIC_REGS",	\
    545  1.1  mrg    "FDPIC_FPTR_REGS",	\
    546  1.1  mrg    "PREGS_CLOBBERED",	\
    547  1.1  mrg    "PREGS",		\
    548  1.1  mrg    "IPREGS",		\
    549  1.1  mrg    "DPREGS",		\
    550  1.1  mrg    "MOST_REGS",		\
    551  1.1  mrg    "LT_REGS",		\
    552  1.1  mrg    "LC_REGS",		\
    553  1.1  mrg    "LB_REGS",		\
    554  1.1  mrg    "PROLOGUE_REGS",	\
    555  1.1  mrg    "NON_A_CC_REGS",	\
    556  1.1  mrg    "ALL_REGS" }
    557  1.1  mrg 
    558  1.1  mrg /* An initializer containing the contents of the register classes, as integers
    559  1.1  mrg    which are bit masks.  The Nth integer specifies the contents of class N.
    560  1.1  mrg    The way the integer MASK is interpreted is that register R is in the class
    561  1.1  mrg    if `MASK & (1 << R)' is 1.
    562  1.1  mrg 
    563  1.1  mrg    When the machine has more than 32 registers, an integer does not suffice.
    564  1.1  mrg    Then the integers are replaced by sub-initializers, braced groupings
    565  1.1  mrg    containing several integers.  Each sub-initializer must be suitable as an
    566  1.1  mrg    initializer for the type `HARD_REG_SET' which is defined in
    567  1.1  mrg    `hard-reg-set.h'.  */
    568  1.1  mrg 
    569  1.1  mrg /* NOTE: DSP registers, IREGS - AREGS, are not GENERAL_REGS.  We use
    570  1.1  mrg    MOST_REGS as the union of DPREGS and DAGREGS.  */
    571  1.1  mrg 
    572  1.1  mrg #define REG_CLASS_CONTENTS \
    573  1.1  mrg     /* 31 - 0       63-32   */ \
    574  1.1  mrg {   { 0x00000000,    0 },		/* NO_REGS */	\
    575  1.1  mrg     { 0x000f0000,    0 },		/* IREGS */	\
    576  1.1  mrg     { 0x00f00000,    0 },		/* BREGS */		\
    577  1.1  mrg     { 0x0f000000,    0 },		/* LREGS */	\
    578  1.1  mrg     { 0xf0000000,    0 },		/* MREGS */   \
    579  1.1  mrg     { 0x0fff0000,    0 },		/* CIRCREGS */   \
    580  1.1  mrg     { 0xffff0000,    0 },		/* DAGREGS */   \
    581  1.1  mrg     { 0x00000000,    0x1 },		/* EVEN_AREGS */   \
    582  1.1  mrg     { 0x00000000,    0x2 },		/* ODD_AREGS */   \
    583  1.1  mrg     { 0x00000000,    0x3 },		/* AREGS */   \
    584  1.1  mrg     { 0x00000000,    0x4 },		/* CCREGS */  \
    585  1.1  mrg     { 0x00000055,    0 },		/* EVEN_DREGS */   \
    586  1.1  mrg     { 0x000000aa,    0 },		/* ODD_DREGS */   \
    587  1.1  mrg     { 0x00000001,    0 },		/* D0REGS */   \
    588  1.1  mrg     { 0x00000002,    0 },		/* D1REGS */   \
    589  1.1  mrg     { 0x00000004,    0 },		/* D2REGS */   \
    590  1.1  mrg     { 0x00000008,    0 },		/* D3REGS */   \
    591  1.1  mrg     { 0x00000010,    0 },		/* D4REGS */   \
    592  1.1  mrg     { 0x00000020,    0 },		/* D5REGS */   \
    593  1.1  mrg     { 0x00000040,    0 },		/* D6REGS */   \
    594  1.1  mrg     { 0x00000080,    0 },		/* D7REGS */   \
    595  1.1  mrg     { 0x000000ff,    0 },		/* DREGS */   \
    596  1.1  mrg     { 0x00000100,    0x000 },		/* P0REGS */   \
    597  1.1  mrg     { 0x00000800,    0x000 },		/* FDPIC_REGS */   \
    598  1.1  mrg     { 0x00000200,    0x000 },		/* FDPIC_FPTR_REGS */   \
    599  1.1  mrg     { 0x00004700,    0x800 },		/* PREGS_CLOBBERED */   \
    600  1.1  mrg     { 0x0000ff00,    0x800 },		/* PREGS */   \
    601  1.1  mrg     { 0x000fff00,    0x800 },		/* IPREGS */	\
    602  1.1  mrg     { 0x0000ffff,    0x800 },		/* DPREGS */   \
    603  1.1  mrg     { 0xffffffff,    0x800 },		/* MOST_REGS */\
    604  1.1  mrg     { 0x00000000,    0x3000 },		/* LT_REGS */\
    605  1.1  mrg     { 0x00000000,    0xc000 },		/* LC_REGS */\
    606  1.1  mrg     { 0x00000000,    0x30000 },		/* LB_REGS */\
    607  1.1  mrg     { 0x00000000,    0x3f7f8 },		/* PROLOGUE_REGS */\
    608  1.1  mrg     { 0xffffffff,    0x3fff8 },		/* NON_A_CC_REGS */\
    609  1.1  mrg     { 0xffffffff,    0x3ffff }}		/* ALL_REGS */
    610  1.1  mrg 
    611  1.1  mrg #define IREG_POSSIBLE_P(OUTER)				     \
    612  1.1  mrg   ((OUTER) == POST_INC || (OUTER) == PRE_INC		     \
    613  1.1  mrg    || (OUTER) == POST_DEC || (OUTER) == PRE_DEC		     \
    614  1.3  mrg    || (OUTER) == MEM || (OUTER) == ADDRESS)
    615  1.1  mrg 
    616  1.1  mrg #define MODE_CODE_BASE_REG_CLASS(MODE, AS, OUTER, INDEX)	\
    617  1.1  mrg   ((MODE) == HImode && IREG_POSSIBLE_P (OUTER) ? IPREGS : PREGS)
    618  1.1  mrg 
    619  1.1  mrg #define INDEX_REG_CLASS         PREGS
    620  1.1  mrg 
    621  1.1  mrg #define REGNO_OK_FOR_BASE_STRICT_P(X, MODE, OUTER, INDEX)	\
    622  1.1  mrg   (P_REGNO_P (X) || (X) == REG_ARGP				\
    623  1.1  mrg    || (IREG_POSSIBLE_P (OUTER) && (MODE) == HImode		\
    624  1.1  mrg        && I_REGNO_P (X)))
    625  1.1  mrg 
    626  1.1  mrg #define REGNO_OK_FOR_BASE_NONSTRICT_P(X, MODE, OUTER, INDEX)	\
    627  1.1  mrg   ((X) >= FIRST_PSEUDO_REGISTER					\
    628  1.1  mrg    || REGNO_OK_FOR_BASE_STRICT_P (X, MODE, OUTER, INDEX))
    629  1.3  mrg 
    630  1.1  mrg #ifdef REG_OK_STRICT
    631  1.1  mrg #define REGNO_MODE_CODE_OK_FOR_BASE_P(X, MODE, AS, OUTER, INDEX) \
    632  1.3  mrg   REGNO_OK_FOR_BASE_STRICT_P (X, MODE, OUTER, INDEX)
    633  1.1  mrg #else
    634  1.1  mrg #define REGNO_MODE_CODE_OK_FOR_BASE_P(X, MODE, AS, OUTER, INDEX) \
    635  1.1  mrg   REGNO_OK_FOR_BASE_NONSTRICT_P (X, MODE, OUTER, INDEX)
    636  1.1  mrg #endif
    637  1.1  mrg 
    638  1.1  mrg #define REGNO_OK_FOR_INDEX_P(X)   0
    639  1.1  mrg 
    640  1.1  mrg /* The same information, inverted:
    641  1.1  mrg    Return the class number of the smallest class containing
    642  1.1  mrg    reg number REGNO.  This could be a conditional expression
    643  1.1  mrg    or could index an array.  */
    644  1.1  mrg 
    645  1.1  mrg #define REGNO_REG_CLASS(REGNO) \
    646  1.1  mrg ((REGNO) == REG_R0 ? D0REGS				\
    647  1.1  mrg  : (REGNO) == REG_R1 ? D1REGS				\
    648  1.1  mrg  : (REGNO) == REG_R2 ? D2REGS				\
    649  1.1  mrg  : (REGNO) == REG_R3 ? D3REGS				\
    650  1.1  mrg  : (REGNO) == REG_R4 ? D4REGS				\
    651  1.1  mrg  : (REGNO) == REG_R5 ? D5REGS				\
    652  1.1  mrg  : (REGNO) == REG_R6 ? D6REGS				\
    653  1.1  mrg  : (REGNO) == REG_R7 ? D7REGS				\
    654  1.1  mrg  : (REGNO) == REG_P0 ? P0REGS				\
    655  1.1  mrg  : (REGNO) < REG_I0 ? PREGS				\
    656  1.1  mrg  : (REGNO) == REG_ARGP ? PREGS				\
    657  1.1  mrg  : (REGNO) >= REG_I0 && (REGNO) <= REG_I3 ? IREGS	\
    658  1.1  mrg  : (REGNO) >= REG_L0 && (REGNO) <= REG_L3 ? LREGS	\
    659  1.1  mrg  : (REGNO) >= REG_B0 && (REGNO) <= REG_B3 ? BREGS	\
    660  1.1  mrg  : (REGNO) >= REG_M0 && (REGNO) <= REG_M3 ? MREGS	\
    661  1.1  mrg  : (REGNO) == REG_A0 || (REGNO) == REG_A1 ? AREGS	\
    662  1.1  mrg  : (REGNO) == REG_LT0 || (REGNO) == REG_LT1 ? LT_REGS	\
    663  1.1  mrg  : (REGNO) == REG_LC0 || (REGNO) == REG_LC1 ? LC_REGS	\
    664  1.1  mrg  : (REGNO) == REG_LB0 || (REGNO) == REG_LB1 ? LB_REGS	\
    665  1.1  mrg  : (REGNO) == REG_CC ? CCREGS				\
    666  1.1  mrg  : (REGNO) >= REG_RETS ? PROLOGUE_REGS			\
    667  1.3  mrg  : NO_REGS)
    668  1.3  mrg 
    669  1.3  mrg /* When this hook returns true for MODE, the compiler allows
    670  1.3  mrg    registers explicitly used in the rtl to be used as spill registers
    671  1.3  mrg    but prevents the compiler from extending the lifetime of these
    672  1.1  mrg    registers.  */
    673  1.1  mrg #define TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P hook_bool_mode_true
    674  1.1  mrg 
    675  1.1  mrg /* Do not allow to store a value in REG_CC for any mode */
    676  1.1  mrg /* Do not allow to store value in pregs if mode is not SI*/
    677  1.1  mrg #define HARD_REGNO_MODE_OK(REGNO, MODE) hard_regno_mode_ok((REGNO), (MODE))
    678  1.1  mrg 
    679  1.1  mrg /* Return the maximum number of consecutive registers
    680  1.1  mrg    needed to represent mode MODE in a register of class CLASS.  */
    681  1.1  mrg #define CLASS_MAX_NREGS(CLASS, MODE)					\
    682  1.1  mrg   ((MODE) == V2PDImode && (CLASS) == AREGS ? 2				\
    683  1.1  mrg    : ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
    684  1.1  mrg 
    685  1.1  mrg #define HARD_REGNO_NREGS(REGNO, MODE) \
    686  1.1  mrg   ((MODE) == PDImode && ((REGNO) == REG_A0 || (REGNO) == REG_A1) ? 1	\
    687  1.1  mrg    : (MODE) == V2PDImode && ((REGNO) == REG_A0 || (REGNO) == REG_A1) ? 2 \
    688  1.1  mrg    : CLASS_MAX_NREGS (GENERAL_REGS, MODE))
    689  1.1  mrg 
    690  1.1  mrg /* A C expression that is nonzero if hard register TO can be
    691  1.1  mrg    considered for use as a rename register for FROM register */
    692  1.1  mrg #define HARD_REGNO_RENAME_OK(FROM, TO) bfin_hard_regno_rename_ok (FROM, TO)
    693  1.1  mrg 
    694  1.1  mrg /* A C expression that is nonzero if it is desirable to choose
    695  1.1  mrg    register allocation so as to avoid move instructions between a
    696  1.1  mrg    value of mode MODE1 and a value of mode MODE2.
    697  1.1  mrg 
    698  1.1  mrg    If `HARD_REGNO_MODE_OK (R, MODE1)' and `HARD_REGNO_MODE_OK (R,
    699  1.1  mrg    MODE2)' are ever different for any R, then `MODES_TIEABLE_P (MODE1,
    700  1.1  mrg    MODE2)' must be zero. */
    701  1.1  mrg #define MODES_TIEABLE_P(MODE1, MODE2)			\
    702  1.1  mrg  ((MODE1) == (MODE2)					\
    703  1.1  mrg   || ((GET_MODE_CLASS (MODE1) == MODE_INT		\
    704  1.1  mrg        || GET_MODE_CLASS (MODE1) == MODE_FLOAT)		\
    705  1.1  mrg       && (GET_MODE_CLASS (MODE2) == MODE_INT		\
    706  1.1  mrg 	  || GET_MODE_CLASS (MODE2) == MODE_FLOAT)	\
    707  1.1  mrg       && (MODE1) != BImode && (MODE2) != BImode		\
    708  1.1  mrg       && GET_MODE_SIZE (MODE1) <= UNITS_PER_WORD	\
    709  1.1  mrg       && GET_MODE_SIZE (MODE2) <= UNITS_PER_WORD))
    710  1.1  mrg 
    711  1.1  mrg /* `PREFERRED_RELOAD_CLASS (X, CLASS)'
    712  1.1  mrg    A C expression that places additional restrictions on the register
    713  1.1  mrg    class to use when it is necessary to copy value X into a register
    714  1.1  mrg    in class CLASS.  The value is a register class; perhaps CLASS, or
    715  1.1  mrg    perhaps another, smaller class.  */
    716  1.1  mrg #define PREFERRED_RELOAD_CLASS(X, CLASS)		\
    717  1.1  mrg   (GET_CODE (X) == POST_INC				\
    718  1.1  mrg    || GET_CODE (X) == POST_DEC				\
    719  1.1  mrg    || GET_CODE (X) == PRE_DEC ? PREGS : (CLASS))
    720  1.1  mrg 
    721  1.1  mrg /* Function Calling Conventions. */
    722  1.1  mrg 
    723  1.1  mrg /* The type of the current function; normal functions are of type
    724  1.1  mrg    SUBROUTINE.  */
    725  1.1  mrg typedef enum {
    726  1.1  mrg   SUBROUTINE, INTERRUPT_HANDLER, EXCPT_HANDLER, NMI_HANDLER
    727  1.1  mrg } e_funkind;
    728  1.1  mrg #define FUNCTION_RETURN_REGISTERS { REG_RETS, REG_RETI, REG_RETX, REG_RETN }
    729  1.1  mrg 
    730  1.1  mrg #define FUNCTION_ARG_REGISTERS { REG_R0, REG_R1, REG_R2, -1 }
    731  1.1  mrg 
    732  1.1  mrg /* Flags for the call/call_value rtl operations set up by function_arg */
    733  1.1  mrg #define CALL_NORMAL		0x00000000	/* no special processing */
    734  1.1  mrg #define CALL_LONG		0x00000001	/* always call indirect */
    735  1.1  mrg #define CALL_SHORT		0x00000002	/* always call by symbol */
    736  1.1  mrg 
    737  1.1  mrg typedef struct {
    738  1.1  mrg   int words;			/* # words passed so far */
    739  1.1  mrg   int nregs;			/* # registers available for passing */
    740  1.1  mrg   int *arg_regs;		/* array of register -1 terminated */
    741  1.1  mrg   int call_cookie;		/* Do special things for this call */
    742  1.1  mrg } CUMULATIVE_ARGS;
    743  1.1  mrg 
    744  1.1  mrg #define FUNCTION_ARG_REGNO_P(REGNO) function_arg_regno_p (REGNO)
    745  1.1  mrg 
    746  1.1  mrg 
    747  1.1  mrg /* Initialize a variable CUM of type CUMULATIVE_ARGS
    748  1.1  mrg    for a call to a function whose data type is FNTYPE.
    749  1.1  mrg    For a library call, FNTYPE is 0.  */
    750  1.1  mrg #define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT, N_NAMED_ARGS)	\
    751  1.1  mrg   (init_cumulative_args (&CUM, FNTYPE, LIBNAME))
    752  1.1  mrg 
    753  1.1  mrg /* Define how to find the value returned by a function.
    754  1.1  mrg    VALTYPE is the data type of the value (as a tree).
    755  1.1  mrg    If the precise function being called is known, FUNC is its FUNCTION_DECL;
    756  1.1  mrg    otherwise, FUNC is 0.
    757  1.1  mrg */
    758  1.1  mrg 
    759  1.1  mrg #define VALUE_REGNO(MODE) (REG_R0)
    760  1.1  mrg 
    761  1.1  mrg #define FUNCTION_VALUE(VALTYPE, FUNC)		\
    762  1.1  mrg   gen_rtx_REG (TYPE_MODE (VALTYPE),		\
    763  1.1  mrg 	       VALUE_REGNO(TYPE_MODE(VALTYPE)))
    764  1.1  mrg 
    765  1.1  mrg /* Define how to find the value returned by a library function
    766  1.1  mrg    assuming the value has mode MODE.  */
    767  1.1  mrg 
    768  1.1  mrg #define LIBCALL_VALUE(MODE)  gen_rtx_REG (MODE, VALUE_REGNO(MODE))
    769  1.1  mrg 
    770  1.1  mrg #define FUNCTION_VALUE_REGNO_P(N) ((N) == REG_R0)
    771  1.1  mrg 
    772  1.1  mrg #define DEFAULT_PCC_STRUCT_RETURN 0
    773  1.1  mrg 
    774  1.1  mrg /* Before the prologue, the return address is in the RETS register.  */
    775  1.1  mrg #define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, REG_RETS)
    776  1.1  mrg 
    777  1.1  mrg #define RETURN_ADDR_RTX(COUNT, FRAME) bfin_return_addr_rtx (COUNT)
    778  1.1  mrg 
    779  1.1  mrg #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (REG_RETS)
    780  1.1  mrg 
    781  1.1  mrg /* Call instructions don't modify the stack pointer on the Blackfin.  */
    782  1.1  mrg #define INCOMING_FRAME_SP_OFFSET 0
    783  1.1  mrg 
    784  1.1  mrg /* Describe how we implement __builtin_eh_return.  */
    785  1.1  mrg #define EH_RETURN_DATA_REGNO(N)	((N) < 2 ? (N) : INVALID_REGNUM)
    786  1.3  mrg #define EH_RETURN_STACKADJ_RTX	gen_rtx_REG (Pmode, REG_P2)
    787  1.3  mrg #define EH_RETURN_HANDLER_RTX \
    788  1.1  mrg   gen_frame_mem (Pmode, plus_constant (Pmode, frame_pointer_rtx, \
    789  1.1  mrg 				       UNITS_PER_WORD))
    790  1.1  mrg 
    791  1.1  mrg /* Addressing Modes */
    792  1.1  mrg 
    793  1.1  mrg /*   A number, the maximum number of registers that can appear in a
    794  1.1  mrg      valid memory address.  Note that it is up to you to specify a
    795  1.1  mrg      value equal to the maximum number that `TARGET_LEGITIMATE_ADDRESS_P'
    796  1.1  mrg      would ever accept. */
    797  1.1  mrg #define MAX_REGS_PER_ADDRESS 1
    798  1.1  mrg 
    799  1.1  mrg #define LEGITIMATE_MODE_FOR_AUTOINC_P(MODE) \
    800  1.1  mrg       (GET_MODE_SIZE (MODE) <= 4 || (MODE) == PDImode)
    801  1.1  mrg 
    802  1.1  mrg #define HAVE_POST_INCREMENT 1
    803  1.1  mrg #define HAVE_POST_DECREMENT 1
    804  1.1  mrg #define HAVE_PRE_DECREMENT  1
    805  1.1  mrg 
    806  1.1  mrg /* `LEGITIMATE_PIC_OPERAND_P (X)'
    807  1.1  mrg      A C expression that is nonzero if X is a legitimate immediate
    808  1.1  mrg      operand on the target machine when generating position independent
    809  1.1  mrg      code.  You can assume that X satisfies `CONSTANT_P', so you need
    810  1.1  mrg      not check this.  You can also assume FLAG_PIC is true, so you need
    811  1.1  mrg      not check it either.  You need not define this macro if all
    812  1.1  mrg      constants (including `SYMBOL_REF') can be immediate operands when
    813  1.1  mrg      generating position independent code. */
    814  1.1  mrg #define LEGITIMATE_PIC_OPERAND_P(X) ! SYMBOLIC_CONST (X)
    815  1.1  mrg 
    816  1.1  mrg #define SYMBOLIC_CONST(X)	\
    817  1.1  mrg (GET_CODE (X) == SYMBOL_REF						\
    818  1.1  mrg  || GET_CODE (X) == LABEL_REF						\
    819  1.1  mrg  || (GET_CODE (X) == CONST && symbolic_reference_mentioned_p (X)))
    820  1.1  mrg 
    821  1.1  mrg #define NOTICE_UPDATE_CC(EXPR, INSN) 0
    822  1.1  mrg 
    823  1.1  mrg /* Value is 1 if truncating an integer of INPREC bits to OUTPREC bits
    824  1.1  mrg    is done just by pretending it is already truncated.  */
    825  1.1  mrg #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
    826  1.1  mrg 
    827  1.1  mrg /* Max number of bytes we can move from memory to memory
    828  1.1  mrg    in one reasonably fast instruction.  */
    829  1.1  mrg #define MOVE_MAX UNITS_PER_WORD
    830  1.1  mrg 
    831  1.1  mrg /* If a memory-to-memory move would take MOVE_RATIO or more simple
    832  1.1  mrg    move-instruction pairs, we will do a movmem or libcall instead.  */
    833  1.1  mrg 
    834  1.1  mrg #define MOVE_RATIO(speed) 5
    835  1.1  mrg 
    836  1.1  mrg /* STORAGE LAYOUT: target machine storage layout
    837  1.1  mrg    Define this macro as a C expression which is nonzero if accessing
    838  1.1  mrg    less than a word of memory (i.e. a `char' or a `short') is no
    839  1.1  mrg    faster than accessing a word of memory, i.e., if such access
    840  1.1  mrg    require more than one instruction or if there is no difference in
    841  1.1  mrg    cost between byte and (aligned) word loads.
    842  1.1  mrg 
    843  1.1  mrg    When this macro is not defined, the compiler will access a field by
    844  1.1  mrg    finding the smallest containing object; when it is defined, a
    845  1.1  mrg    fullword load will be used if alignment permits.  Unless bytes
    846  1.1  mrg    accesses are faster than word accesses, using word accesses is
    847  1.1  mrg    preferable since it may eliminate subsequent memory access if
    848  1.1  mrg    subsequent accesses occur to other fields in the same word of the
    849  1.1  mrg    structure, but to different bytes.  */
    850  1.1  mrg #define SLOW_BYTE_ACCESS  0
    851  1.1  mrg #define SLOW_SHORT_ACCESS 0
    852  1.1  mrg 
    853  1.1  mrg /* Define this if most significant bit is lowest numbered
    854  1.1  mrg    in instructions that operate on numbered bit-fields. */
    855  1.1  mrg #define BITS_BIG_ENDIAN  0
    856  1.1  mrg 
    857  1.1  mrg /* Define this if most significant byte of a word is the lowest numbered.
    858  1.1  mrg    We can't access bytes but if we could we would in the Big Endian order. */
    859  1.1  mrg #define BYTES_BIG_ENDIAN 0
    860  1.1  mrg 
    861  1.1  mrg /* Define this if most significant word of a multiword number is numbered. */
    862  1.1  mrg #define WORDS_BIG_ENDIAN 0
    863  1.1  mrg 
    864  1.1  mrg /* number of bits in an addressable storage unit */
    865  1.1  mrg #define BITS_PER_UNIT 8
    866  1.1  mrg 
    867  1.1  mrg /* Width in bits of a "word", which is the contents of a machine register.
    868  1.1  mrg    Note that this is not necessarily the width of data type `int';
    869  1.1  mrg    if using 16-bit ints on a 68000, this would still be 32.
    870  1.1  mrg    But on a machine with 16-bit registers, this would be 16.  */
    871  1.1  mrg #define BITS_PER_WORD 32
    872  1.1  mrg 
    873  1.1  mrg /* Width of a word, in units (bytes).  */
    874  1.1  mrg #define UNITS_PER_WORD 4
    875  1.1  mrg 
    876  1.1  mrg /* Width in bits of a pointer.
    877  1.1  mrg    See also the macro `Pmode1' defined below.  */
    878  1.1  mrg #define POINTER_SIZE 32
    879  1.1  mrg 
    880  1.1  mrg /* Allocation boundary (in *bits*) for storing pointers in memory.  */
    881  1.1  mrg #define POINTER_BOUNDARY 32
    882  1.1  mrg 
    883  1.1  mrg /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
    884  1.1  mrg #define PARM_BOUNDARY 32
    885  1.1  mrg 
    886  1.1  mrg /* Boundary (in *bits*) on which stack pointer should be aligned.  */
    887  1.1  mrg #define STACK_BOUNDARY 32
    888  1.1  mrg 
    889  1.1  mrg /* Allocation boundary (in *bits*) for the code of a function.  */
    890  1.1  mrg #define FUNCTION_BOUNDARY 32
    891  1.1  mrg 
    892  1.1  mrg /* Alignment of field after `int : 0' in a structure.  */
    893  1.1  mrg #define EMPTY_FIELD_BOUNDARY BITS_PER_WORD
    894  1.1  mrg 
    895  1.1  mrg /* No data type wants to be aligned rounder than this.  */
    896  1.1  mrg #define BIGGEST_ALIGNMENT 32
    897  1.1  mrg 
    898  1.1  mrg /* Define this if move instructions will actually fail to work
    899  1.1  mrg    when given unaligned data.  */
    900  1.1  mrg #define STRICT_ALIGNMENT 1
    901  1.1  mrg 
    902  1.1  mrg /* (shell-command "rm c-decl.o stor-layout.o")
    903  1.1  mrg  *  never define PCC_BITFIELD_TYPE_MATTERS
    904  1.1  mrg  *  really cause some alignment problem
    905  1.1  mrg  */
    906  1.1  mrg 
    907  1.1  mrg #define UNITS_PER_FLOAT  ((FLOAT_TYPE_SIZE  + BITS_PER_UNIT - 1) / \
    908  1.1  mrg 			   BITS_PER_UNIT)
    909  1.1  mrg 
    910  1.1  mrg #define UNITS_PER_DOUBLE ((DOUBLE_TYPE_SIZE + BITS_PER_UNIT - 1) / \
    911  1.1  mrg  			   BITS_PER_UNIT)
    912  1.1  mrg 
    913  1.1  mrg 
    914  1.1  mrg /* what is the 'type' of size_t */
    915  1.1  mrg #define SIZE_TYPE "long unsigned int"
    916  1.1  mrg 
    917  1.1  mrg /* Define this as 1 if `char' should by default be signed; else as 0.  */
    918  1.1  mrg #define DEFAULT_SIGNED_CHAR 1
    919  1.1  mrg #define FLOAT_TYPE_SIZE BITS_PER_WORD
    920  1.1  mrg #define SHORT_TYPE_SIZE 16
    921  1.1  mrg #define CHAR_TYPE_SIZE	8
    922  1.1  mrg #define INT_TYPE_SIZE	32
    923  1.1  mrg #define LONG_TYPE_SIZE	32
    924  1.1  mrg #define LONG_LONG_TYPE_SIZE 64
    925  1.1  mrg 
    926  1.1  mrg /* Note: Fix this to depend on target switch. -- lev */
    927  1.1  mrg 
    928  1.1  mrg /* Note: Try to implement double and force long double. -- tonyko
    929  1.1  mrg  * #define __DOUBLES_ARE_FLOATS__
    930  1.1  mrg  * #define DOUBLE_TYPE_SIZE FLOAT_TYPE_SIZE
    931  1.1  mrg  * #define LONG_DOUBLE_TYPE_SIZE DOUBLE_TYPE_SIZE
    932  1.1  mrg  * #define DOUBLES_ARE_FLOATS 1
    933  1.1  mrg  */
    934  1.1  mrg 
    935  1.1  mrg #define DOUBLE_TYPE_SIZE	64
    936  1.1  mrg #define LONG_DOUBLE_TYPE_SIZE	64
    937  1.1  mrg 
    938  1.1  mrg /* `PROMOTE_MODE (M, UNSIGNEDP, TYPE)'
    939  1.1  mrg      A macro to update M and UNSIGNEDP when an object whose type is
    940  1.1  mrg      TYPE and which has the specified mode and signedness is to be
    941  1.1  mrg      stored in a register.  This macro is only called when TYPE is a
    942  1.1  mrg      scalar type.
    943  1.1  mrg 
    944  1.1  mrg      On most RISC machines, which only have operations that operate on
    945  1.1  mrg      a full register, define this macro to set M to `word_mode' if M is
    946  1.1  mrg      an integer mode narrower than `BITS_PER_WORD'.  In most cases,
    947  1.1  mrg      only integer modes should be widened because wider-precision
    948  1.1  mrg      floating-point operations are usually more expensive than their
    949  1.1  mrg      narrower counterparts.
    950  1.1  mrg 
    951  1.1  mrg      For most machines, the macro definition does not change UNSIGNEDP.
    952  1.1  mrg      However, some machines, have instructions that preferentially
    953  1.1  mrg      handle either signed or unsigned quantities of certain modes.  For
    954  1.1  mrg      example, on the DEC Alpha, 32-bit loads from memory and 32-bit add
    955  1.1  mrg      instructions sign-extend the result to 64 bits.  On such machines,
    956  1.1  mrg      set UNSIGNEDP according to which kind of extension is more
    957  1.1  mrg      efficient.
    958  1.1  mrg 
    959  1.1  mrg      Do not define this macro if it would never modify M.*/
    960  1.1  mrg 
    961  1.1  mrg #define BFIN_PROMOTE_MODE_P(MODE) \
    962  1.1  mrg     (!TARGET_DSP && GET_MODE_CLASS (MODE) == MODE_INT	\
    963  1.1  mrg       && GET_MODE_SIZE (MODE) < UNITS_PER_WORD)
    964  1.1  mrg 
    965  1.1  mrg #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE)     \
    966  1.1  mrg   if (BFIN_PROMOTE_MODE_P(MODE))		\
    967  1.1  mrg     {                                           \
    968  1.1  mrg       if (MODE == QImode)                       \
    969  1.1  mrg         UNSIGNEDP = 1;                          \
    970  1.1  mrg       else if (MODE == HImode)                  \
    971  1.1  mrg         UNSIGNEDP = 0;      			\
    972  1.1  mrg       (MODE) = SImode;                          \
    973  1.1  mrg     }
    974  1.1  mrg 
    975  1.1  mrg /* Describing Relative Costs of Operations */
    976  1.1  mrg 
    977  1.1  mrg /* Do not put function addr into constant pool */
    978  1.1  mrg #define NO_FUNCTION_CSE 1
    979  1.1  mrg 
    980  1.1  mrg /* Specify the machine mode that this machine uses
    981  1.1  mrg    for the index in the tablejump instruction.  */
    982  1.1  mrg #define CASE_VECTOR_MODE SImode
    983  1.1  mrg 
    984  1.1  mrg #define JUMP_TABLES_IN_TEXT_SECTION flag_pic
    985  1.1  mrg 
    986  1.1  mrg /* Define if operations between registers always perform the operation
    987  1.1  mrg    on the full register even if a narrower mode is specified.
    988  1.1  mrg #define WORD_REGISTER_OPERATIONS
    989  1.1  mrg */
    990  1.1  mrg 
    991  1.1  mrg /* Evaluates to true if A and B are mac flags that can be used
    992  1.1  mrg    together in a single multiply insn.  That is the case if they are
    993  1.1  mrg    both the same flag not involving M, or if one is a combination of
    994  1.1  mrg    the other with M.  */
    995  1.1  mrg #define MACFLAGS_MATCH_P(A, B) \
    996  1.1  mrg  ((A) == (B) \
    997  1.1  mrg   || ((A) == MACFLAG_NONE && (B) == MACFLAG_M) \
    998  1.1  mrg   || ((A) == MACFLAG_M && (B) == MACFLAG_NONE) \
    999  1.1  mrg   || ((A) == MACFLAG_IS && (B) == MACFLAG_IS_M) \
   1000  1.1  mrg   || ((A) == MACFLAG_IS_M && (B) == MACFLAG_IS))
   1001  1.1  mrg 
   1002  1.1  mrg /* Switch into a generic section.  */
   1003  1.1  mrg #define TARGET_ASM_NAMED_SECTION  default_elf_asm_named_section
   1004  1.1  mrg 
   1005  1.1  mrg #define PRINT_OPERAND(FILE, RTX, CODE)	 print_operand (FILE, RTX, CODE)
   1006  1.1  mrg #define PRINT_OPERAND_ADDRESS(FILE, RTX) print_address_operand (FILE, RTX)
   1007  1.1  mrg 
   1008  1.1  mrg typedef enum sections {
   1009  1.1  mrg     CODE_DIR,
   1010  1.1  mrg     DATA_DIR,
   1011  1.1  mrg     LAST_SECT_NM
   1012  1.1  mrg } SECT_ENUM_T;
   1013  1.1  mrg 
   1014  1.1  mrg typedef enum directives {
   1015  1.1  mrg     LONG_CONST_DIR,
   1016  1.1  mrg     SHORT_CONST_DIR,
   1017  1.1  mrg     BYTE_CONST_DIR,
   1018  1.1  mrg     SPACE_DIR,
   1019  1.1  mrg     INIT_DIR,
   1020  1.1  mrg     LAST_DIR_NM
   1021  1.1  mrg } DIR_ENUM_T;
   1022  1.1  mrg 
   1023  1.1  mrg #define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR)	\
   1024  1.1  mrg   ((C) == ';'					\
   1025  1.1  mrg    || ((C) == '|' && (STR)[1] == '|'))
   1026  1.1  mrg 
   1027  1.1  mrg #define TEXT_SECTION_ASM_OP ".text;"
   1028  1.1  mrg #define DATA_SECTION_ASM_OP ".data;"
   1029  1.1  mrg 
   1030  1.1  mrg #define ASM_APP_ON  ""
   1031  1.1  mrg #define ASM_APP_OFF ""
   1032  1.1  mrg 
   1033  1.1  mrg #define ASM_GLOBALIZE_LABEL1(FILE, NAME) \
   1034  1.1  mrg   do {  fputs (".global ", FILE);		\
   1035  1.1  mrg         assemble_name (FILE, NAME);	        \
   1036  1.1  mrg         fputc (';',FILE);			\
   1037  1.1  mrg         fputc ('\n',FILE);			\
   1038  1.1  mrg       } while (0)
   1039  1.1  mrg 
   1040  1.1  mrg #define ASM_DECLARE_FUNCTION_NAME(FILE,NAME,DECL) \
   1041  1.1  mrg   do {					\
   1042  1.1  mrg     fputs (".type ", FILE);           	\
   1043  1.1  mrg     assemble_name (FILE, NAME);         \
   1044  1.1  mrg     fputs (", STT_FUNC", FILE);         \
   1045  1.1  mrg     fputc (';',FILE);                   \
   1046  1.1  mrg     fputc ('\n',FILE);			\
   1047  1.1  mrg     ASM_OUTPUT_LABEL(FILE, NAME);	\
   1048  1.1  mrg   } while (0)
   1049  1.1  mrg 
   1050  1.1  mrg #define ASM_OUTPUT_LABEL(FILE, NAME)    \
   1051  1.1  mrg   do {  assemble_name (FILE, NAME);		\
   1052  1.1  mrg         fputs (":\n",FILE);			\
   1053  1.1  mrg       } while (0)
   1054  1.1  mrg 
   1055  1.1  mrg #define ASM_OUTPUT_LABELREF(FILE,NAME) 	\
   1056  1.1  mrg     do {  fprintf (FILE, "_%s", NAME); \
   1057  1.1  mrg         } while (0)
   1058  1.1  mrg 
   1059  1.1  mrg #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)    	\
   1060  1.1  mrg do { char __buf[256];					\
   1061  1.1  mrg      fprintf (FILE, "\t.dd\t");				\
   1062  1.1  mrg      ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE);	\
   1063  1.1  mrg      assemble_name (FILE, __buf);			\
   1064  1.1  mrg      fputc (';', FILE);					\
   1065  1.1  mrg      fputc ('\n', FILE);				\
   1066  1.1  mrg    } while (0)
   1067  1.1  mrg 
   1068  1.1  mrg #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
   1069  1.1  mrg     MY_ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL)
   1070  1.1  mrg 
   1071  1.1  mrg #define MY_ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL)		\
   1072  1.1  mrg     do {							\
   1073  1.1  mrg 	char __buf[256];					\
   1074  1.1  mrg 	fprintf (FILE, "\t.dd\t");				\
   1075  1.1  mrg 	ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE);	\
   1076  1.1  mrg 	assemble_name (FILE, __buf);				\
   1077  1.1  mrg 	fputs (" - ", FILE);					\
   1078  1.1  mrg 	ASM_GENERATE_INTERNAL_LABEL (__buf, "L", REL);		\
   1079  1.1  mrg 	assemble_name (FILE, __buf);				\
   1080  1.1  mrg 	fputc (';', FILE);					\
   1081  1.1  mrg 	fputc ('\n', FILE);					\
   1082  1.1  mrg     } while (0)
   1083  1.1  mrg 
   1084  1.1  mrg #define ASM_OUTPUT_ALIGN(FILE,LOG) 				\
   1085  1.1  mrg     do {							\
   1086  1.1  mrg       if ((LOG) != 0)						\
   1087  1.1  mrg 	fprintf (FILE, "\t.align %d\n", 1 << (LOG));		\
   1088  1.1  mrg     } while (0)
   1089  1.1  mrg 
   1090  1.1  mrg #define ASM_OUTPUT_SKIP(FILE,SIZE)		\
   1091  1.1  mrg     do {					\
   1092  1.1  mrg 	asm_output_skip (FILE, SIZE);		\
   1093  1.1  mrg     } while (0)
   1094  1.1  mrg 
   1095  1.1  mrg #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) 	\
   1096  1.1  mrg do { 						\
   1097  1.1  mrg     switch_to_section (data_section);				\
   1098  1.1  mrg     if ((SIZE) >= (unsigned int) 4 ) ASM_OUTPUT_ALIGN(FILE,2);	\
   1099  1.1  mrg     ASM_OUTPUT_SIZE_DIRECTIVE (FILE, NAME, SIZE);		\
   1100  1.1  mrg     ASM_OUTPUT_LABEL (FILE, NAME);				\
   1101  1.1  mrg     fprintf (FILE, "%s %ld;\n", ASM_SPACE,			\
   1102  1.1  mrg 	     (ROUNDED) > (unsigned int) 1 ? (ROUNDED) : 1);	\
   1103  1.1  mrg } while (0)
   1104  1.1  mrg 
   1105  1.1  mrg #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)	\
   1106  1.1  mrg      do {						\
   1107  1.1  mrg 	ASM_GLOBALIZE_LABEL1(FILE,NAME); 		\
   1108  1.1  mrg         ASM_OUTPUT_LOCAL (FILE, NAME, SIZE, ROUNDED); } while(0)
   1109  1.1  mrg 
   1110  1.3  mrg #define ASM_COMMENT_START "//"
   1111  1.1  mrg 
   1112  1.1  mrg #define PROFILE_BEFORE_PROLOGUE
   1113  1.3  mrg #define FUNCTION_PROFILER(FILE, LABELNO)	\
   1114  1.3  mrg   do {						\
   1115  1.3  mrg     fprintf (FILE, "\t[--SP] = RETS;\n");	\
   1116  1.3  mrg     if (TARGET_LONG_CALLS)			\
   1117  1.3  mrg       {						\
   1118  1.3  mrg 	fprintf (FILE, "\tP2.h = __mcount;\n");	\
   1119  1.3  mrg 	fprintf (FILE, "\tP2.l = __mcount;\n");	\
   1120  1.3  mrg 	fprintf (FILE, "\tCALL (P2);\n");	\
   1121  1.3  mrg       }						\
   1122  1.3  mrg     else					\
   1123  1.1  mrg       fprintf (FILE, "\tCALL __mcount;\n");	\
   1124  1.1  mrg     fprintf (FILE, "\tRETS = [SP++];\n");	\
   1125  1.1  mrg   } while(0)
   1126  1.1  mrg 
   1127  1.1  mrg #undef NO_PROFILE_COUNTERS
   1128  1.3  mrg #define NO_PROFILE_COUNTERS 1
   1129  1.3  mrg 
   1130  1.1  mrg #define ASM_OUTPUT_REG_PUSH(FILE, REGNO) fprintf (FILE, "\t[--SP] = %s;\n", reg_names[REGNO])
   1131  1.3  mrg #define ASM_OUTPUT_REG_POP(FILE, REGNO)  fprintf (FILE, "\t%s = [SP++];\n", reg_names[REGNO])
   1132  1.1  mrg 
   1133  1.1  mrg extern rtx bfin_cc_rtx, bfin_rets_rtx;
   1134  1.1  mrg 
   1135  1.1  mrg /* This works for GAS and some other assemblers.  */
   1136  1.1  mrg #define SET_ASM_OP              ".set "
   1137  1.1  mrg 
   1138  1.1  mrg /* DBX register number for a given compiler register number */
   1139  1.1  mrg #define DBX_REGISTER_NUMBER(REGNO)  (REGNO)
   1140  1.1  mrg 
   1141  1.1  mrg #define SIZE_ASM_OP     "\t.size\t"
   1142  1.1  mrg 
   1143  1.1  mrg extern int splitting_for_sched, splitting_loops;
   1144  1.1  mrg 
   1145  1.1  mrg #define PRINT_OPERAND_PUNCT_VALID_P(CHAR) ((CHAR) == '!')
   1146  1.1  mrg 
   1147  1.1  mrg #ifndef TARGET_SUPPORTS_SYNC_CALLS
   1148  1.1  mrg #define TARGET_SUPPORTS_SYNC_CALLS 0
   1149  1.3  mrg #endif
   1150  1.3  mrg 
   1151  1.3  mrg struct bfin_cpu
   1152  1.3  mrg {
   1153  1.3  mrg   const char *name;
   1154  1.3  mrg   bfin_cpu_t type;
   1155  1.3  mrg   int si_revision;
   1156  1.3  mrg   unsigned int workarounds;
   1157  1.3  mrg };
   1158  1.3  mrg 
   1159  1.1  mrg extern const struct bfin_cpu bfin_cpus[];
   1160           
   1161           #endif /*  _BFIN_CONFIG */
   1162