home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / config / romp.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  63KB  |  1,618 lines

  1. /* Definitions of target machine for GNU compiler, for ROMP chip.
  2.    Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  3.    Contributed by Richard Kenner (kenner@nyu.edu)
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. /* Names to predefine in the preprocessor for this target machine.  */
  23.  
  24. #define CPP_PREDEFINES "-Dibm032 -Dunix"
  25.  
  26. /* Print subsidiary information on the compiler version in use.  */
  27. #define TARGET_VERSION ;
  28.  
  29. /* Add -lfp_p when running with -p or -pg.  */
  30. #define LIB_SPEC "%{pg:-lfp_p}%{p:-lfp_p} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
  31.  
  32. /* Run-time compilation parameters selecting different hardware subsets.  */
  33.  
  34. /* Flag to generate all multiplies as an in-line sequence of multiply-step
  35.    insns instead of calling a library routine.  */
  36. #define TARGET_IN_LINE_MUL (target_flags & 1)
  37.  
  38. /* Flag to generate padded floating-point data blocks.  Otherwise, we generate
  39.    them the minimum size.  This trades off execution speed against size.  */
  40. #define TARGET_FULL_FP_BLOCKS (target_flags & 2)
  41.  
  42. /* Flag to pass and return floating point values in floating point registers.
  43.    Since this violates the linkage convention, we feel free to destroy fr2
  44.    and fr3 on function calls.
  45.    fr1-fr3 are used to pass the arguments. */
  46. #define TARGET_FP_REGS (target_flags & 4)
  47.  
  48. /* Flag to return structures of more than one word in memory.  This is for
  49.    compatibility with the MetaWare HighC (hc) compiler.  */
  50. #define TARGET_HC_STRUCT_RETURN (target_flags & 010)
  51.  
  52. extern int target_flags;
  53.  
  54. /* Macro to define tables used to set the flags.
  55.    This is a list in braces of pairs in braces,
  56.    each pair being { "NAME", VALUE }
  57.    where VALUE is the bits to set or minus the bits to clear.
  58.    An empty string NAME is used to identify the default VALUE.  */
  59.  
  60. #define TARGET_SWITCHES        \
  61.   { {"in-line-mul", 1},        \
  62.     {"call-lib-mul", -1},    \
  63.     {"full-fp-blocks", 2},    \
  64.     {"minimum-fp-blocks", -2},    \
  65.     {"fp-arg-in-fpregs", 4},    \
  66.     {"fp-arg-in-gregs", -4},    \
  67.     {"hc-struct-return", 010},  \
  68.     {"nohc-struct-return", - 010}, \
  69.     { "", TARGET_DEFAULT}}
  70.  
  71. #define TARGET_DEFAULT 3
  72.  
  73. /* Define this to change the optimizations performed by default.
  74.  
  75.    This used to depend on the value of write_symbols,
  76.    but that is contrary to the general plan for GCC options.  */
  77.  
  78. #define OPTIMIZATION_OPTIONS(LEVEL)    \
  79. {                    \
  80.   if ((LEVEL) > 0)            \
  81.     {                    \
  82.       flag_force_addr = 1;        \
  83.       flag_force_mem = 1;        \
  84.     }                    \
  85. }
  86.  
  87. /* Match <sys/types.h>'s definition.  */
  88. #define SIZE_TYPE "long int"
  89.  
  90. /* target machine storage layout */
  91.  
  92. /* Define this if most significant bit is lowest numbered
  93.    in instructions that operate on numbered bit-fields. */
  94. /* That is true on ROMP. */
  95. #define BITS_BIG_ENDIAN 1
  96.  
  97. /* Define this if most significant byte of a word is the lowest numbered.  */
  98. /* That is true on ROMP.  */
  99. #define BYTES_BIG_ENDIAN 1
  100.  
  101. /* Define this if most significant word of a multiword number is lowest
  102.    numbered. 
  103.  
  104.    For ROMP we can decide arbitrarily since there are no machine instructions
  105.    for them.  Might as well be consistent with bits and bytes. */
  106. #define WORDS_BIG_ENDIAN 1
  107.  
  108. /* number of bits in an addressable storage unit */
  109. #define BITS_PER_UNIT 8
  110.  
  111. /* Width in bits of a "word", which is the contents of a machine register.
  112.    Note that this is not necessarily the width of data type `int';
  113.    if using 16-bit ints on a 68000, this would still be 32.
  114.    But on a machine with 16-bit registers, this would be 16.  */
  115. #define BITS_PER_WORD 32
  116.  
  117. /* Width of a word, in units (bytes).  */
  118. #define UNITS_PER_WORD 4
  119.  
  120. /* Width in bits of a pointer.
  121.    See also the macro `Pmode' defined below.  */
  122. #define POINTER_SIZE 32
  123.  
  124. /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
  125. #define PARM_BOUNDARY 32
  126.  
  127. /* Boundary (in *bits*) on which stack pointer should be aligned.  */
  128. #define STACK_BOUNDARY 32
  129.  
  130. /* Allocation boundary (in *bits*) for the code of a function.  */
  131. #define FUNCTION_BOUNDARY 16
  132.  
  133. /* No data type wants to be aligned rounder than this.  */
  134. #define BIGGEST_ALIGNMENT 32
  135.  
  136. /* Alignment of field after `int : 0' in a structure.  */
  137. #define EMPTY_FIELD_BOUNDARY 32
  138.  
  139. /* Every structure's size must be a multiple of this.  */
  140. #define STRUCTURE_SIZE_BOUNDARY 8
  141.  
  142. /* A bitfield declared as `int' forces `int' alignment for the struct.  */
  143. #define PCC_BITFIELD_TYPE_MATTERS 1
  144.  
  145. /* Make strings word-aligned so strcpy from constants will be faster.  */
  146. #define CONSTANT_ALIGNMENT(EXP, ALIGN)  \
  147.   (TREE_CODE (EXP) == STRING_CST    \
  148.    && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
  149.  
  150. /* Make arrays of chars word-aligned for the same reasons.  */
  151. #define DATA_ALIGNMENT(TYPE, ALIGN)        \
  152.   (TREE_CODE (TYPE) == ARRAY_TYPE        \
  153.    && TYPE_MODE (TREE_TYPE (TYPE)) == QImode    \
  154.    && (ALIGN) < BITS_PER_WORD ? BITS_PER_WORD : (ALIGN))
  155.  
  156. /* Set this nonzero if move instructions will actually fail to work
  157.    when given unaligned data.  */
  158. #define STRICT_ALIGNMENT 1
  159.  
  160. /* Standard register usage.  */
  161.  
  162. /* Number of actual hardware registers.
  163.    The hardware registers are assigned numbers for the compiler
  164.    from 0 to just below FIRST_PSEUDO_REGISTER.
  165.    All registers that the compiler knows about must be given numbers,
  166.    even those that are not normally considered general registers.
  167.  
  168.    ROMP has 16 fullword registers and 8 floating point registers.
  169.  
  170.    In addition, the difference between the frame and argument pointers is
  171.    a function of the number of registers saved, so we need to have a register
  172.    to use for AP that will later be eliminated in favor of sp or fp.  This is
  173.    a normal register, but it is fixed.  */
  174.  
  175. #define FIRST_PSEUDO_REGISTER 25
  176.  
  177. /* 1 for registers that have pervasive standard uses
  178.    and are not available for the register allocator.
  179.  
  180.    On ROMP, r1 is used for the stack and r14 is used for a
  181.    data area pointer.
  182.  
  183.    HACK WARNING:  On the RT, there is a bug in code generation for
  184.    the MC68881 when the first and third operands are the same floating-point
  185.    register.  See the definition of the FINAL_PRESCAN_INSN macro for details.
  186.    Here we need to reserve fr0 for this purpose.  */
  187. #define FIXED_REGISTERS  \
  188.  {0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,    \
  189.   1,                            \
  190.   1, 0, 0, 0, 0, 0, 0, 0}
  191.  
  192. /* 1 for registers not available across function calls.
  193.    These must include the FIXED_REGISTERS and also any
  194.    registers that can be used without being saved.
  195.    The latter must include the registers where values are returned
  196.    and the register where structure-value addresses are passed.
  197.    Aside from that, you can include as many other registers as you like.  */
  198. #define CALL_USED_REGISTERS                \
  199.  {1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,    \
  200.   1,                            \
  201.   1, 1, 0, 0, 0, 0, 0, 0}
  202.  
  203. /* List the order in which to allocate registers.  Each register must be
  204.    listed once, even those in FIXED_REGISTERS.
  205.  
  206.    We allocate in the following order:
  207.     fr0, fr1    (not saved)
  208.     fr2 ... fr6
  209.     fr7        (more expensive for some FPA's)
  210.     r0        (not saved and won't conflict with parameter register)
  211.     r4, r3, r2    (not saved, highest used first to make less conflict)
  212.     r5        (not saved, but forces r6 to be saved if DI/DFmode)
  213.     r15, r14, r13, r12, r11, r10, r9, r8, r7, r6 (less to save)
  214.     r1, ap             */
  215.  
  216. #define REG_ALLOC_ORDER        \
  217.   {17, 18,            \
  218.    19, 20, 21, 22, 23,        \
  219.    24,                \
  220.    0,                \
  221.    4, 3, 2,            \
  222.    5,                \
  223.    15, 14, 13, 12, 11, 10,    \
  224.    9, 8, 7, 6,             \
  225.    1, 16}
  226.  
  227. /* True if register is floating-point.  */
  228. #define FP_REGNO_P(N) ((N) >= 17)
  229.  
  230. /* Return number of consecutive hard regs needed starting at reg REGNO
  231.    to hold something of mode MODE.
  232.    Th