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 / elxsi.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  35KB  |  981 lines

  1. /* Definitions of target machine for GNU compiler.  Elxsi version.
  2.    Copyright (C) 1987, 1988, 1992 Free Software Foundation, Inc.
  3.    This port, done by Mike Stump <mrs@cygnus.com> in 1988, and is the first
  4.    64 bit port of GNU CC.
  5.    Based upon the VAX port.
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 1, or (at your option)
  12. any later version.
  13.  
  14. GNU CC is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with GNU CC; see the file COPYING.  If not, write to
  21. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  22.  
  23.  
  24. /* Names to predefine in the preprocessor for this target machine.  */
  25.  
  26. #define CPP_PREDEFINES "-Delxsi -Dunix"
  27.  
  28. /* Print subsidiary information on the compiler version in use.  */
  29.  
  30. #define TARGET_VERSION fprintf (stderr, " (elxsi)");
  31.  
  32. /* Run-time compilation parameters selecting different hardware subsets.  */
  33.  
  34. extern int target_flags;
  35.  
  36. /* Macros used in the machine description to test the flags.  */
  37.  
  38. /* Nonzero if compiling code that Unix assembler can assemble.  */
  39. #define TARGET_UNIX_ASM (target_flags & 1)
  40.  
  41.  
  42. /* Macro to define tables used to set the flags.
  43.    This is a list in braces of pairs in braces,
  44.    each pair being { "NAME", VALUE }
  45.    where VALUE is the bits to set or minus the bits to clear.
  46.    An empty string NAME is used to identify the default VALUE.  */
  47.  
  48. #define TARGET_SWITCHES  \
  49.   { {"unix", 1},  \
  50.     {"embos", -1},  \
  51.     { "", TARGET_DEFAULT}}
  52.  
  53. /* Default target_flags if no switches specified.  */
  54.  
  55. #ifndef TARGET_DEFAULT
  56. #define TARGET_DEFAULT 1
  57. #endif
  58.  
  59. /* Target machine storage layout */
  60.  
  61. /* Define this if most significant bit is lowest numbered
  62.    in instructions that operate on numbered bit-fields.
  63.    This is not true on the vax.  */
  64. /* #define BITS_BIG_ENDIAN */
  65.  
  66. /* Define this if most significant byte of a word is the lowest numbered.  */
  67. #define BYTES_BIG_ENDIAN 1
  68.  
  69. /* Define this if most significant word of a multiword number is numbered.  */
  70. #define WORDS_BIG_ENDIAN 1
  71.  
  72. /* Number of bits in an addressible storage unit */
  73. #define BITS_PER_UNIT 8
  74.  
  75. /* Width in bits of a "word", which is the contents of a machine register.
  76.    Note that this is not necessarily the width of data type `int';
  77.    if using 16-bit ints on a 68000, this would still be 32.
  78.    But on a machine with 16-bit registers, this would be 16.  */
  79. #define BITS_PER_WORD 64
  80. #define Rmode DImode
  81.  
  82. #define INT_TYPE_SIZE 32
  83.  
  84. #define LONG_TYPE_SIZE 32
  85.  
  86. #define LONG_LONG_TYPE_SIZE 64
  87.  
  88. #define FLOAT_TYPE_SIZE 32
  89.  
  90. #define DOUBLE_TYPE_SIZE 64
  91.  
  92. #define LONG_DOUBLE_TYPE_SIZE 64
  93.  
  94. /* Width of a word, in units (bytes).  */
  95. #define UNITS_PER_WORD 8
  96.  
  97. /* Width in bits of a pointer.
  98.    See also the macro `Pmode' defined below.  */
  99. #define POINTER_SIZE 32
  100.  
  101. /* Allocation boundary (in *bits*) for storing pointers in memory.  */
  102. #define POINTER_BOUNDARY 32
  103.  
  104. /* Allocation boundary (in *bits*) for storing arguments in argument list.  */
  105. #define PARM_BOUNDARY 32
  106.  
  107. /* Allocation boundary (in *bits*) for the code of a function.  */
  108. #define FUNCTION_BOUNDARY 8
  109.  
  110. /* Alignment of field after `int : 0' in a structure.  */
  111. #define EMPTY_FIELD_BOUNDARY 8
  112.  
  113. /* Every structure's size must be a multiple of this.  */
  114. #define STRUCTURE_SIZE_BOUNDARY 32
  115.  
  116. /* A bitfield declared as `int' forces `int' alignment for the struct.  */
  117. #define PCC_BITFIELD_TYPE_MATTERS 1
  118.  
  119. /* No data type wants to be aligned rounder than this.  */
  120. #define BIGGEST_ALIGNMENT 32
  121.  
  122. /* Define this if move instructions will actually fail to work
  123.    when given unaligned data.  */
  124. #define STRICT_ALIGNMENT 0
  125.  
  126. /* Standard register usage.  */
  127.  
  128. /* Number of actual hardware registers.
  129.    The hardware registers are assigned numbers for the compiler
  130.    from 0 to just below FIRST_PSEUDO_REGISTER.
  131.    All registers that the compiler knows about must be given numbers,
  132.    even those that are not normally considered general registers.  */
  133. #define FIRST_PSEUDO_REGISTER 16
  134.  
  135. /* 1 for registers that have pervasive standard uses
  136.    and are not available for the register allocator.
  137.    On the elxsi, these is the .r15 (aka .sp).  */
  138. #define FIXED_REGISTERS {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
  139.  
  140. /* 1 for registers not available across function calls.
  141.    These must include the FIXED_REGISTERS and also any
  142.    registers that can be used without being saved.
  143.    The latter must include the registers where values are returned
  144.    and the register where structure-value addresses are passed.
  145.    Aside from that, you can include as many other registers as you like.  */
  146. #define CALL_USED_REGISTERS {1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
  147.  
  148. /* Return number of consecutive hard regs needed starting at reg REGNO
  149.    to hold something of mode MODE.
  150.    This is ordinarily the length in words of a value of mode MODE
  151.    but can be less for certain modes in special long registers.
  152.    On the vax, all registers are one word long.  */
  153. #define HARD_REGNO_NREGS(REGNO, MODE)   \
  154.  ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
  155.  
  156. /* Value is 1 if hard register REGNO can hold a value of machine-mode MODE. */
  157. #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
  158.  
  159. /* Value is 1 if it is a good idea to tie two pseudo registers
  160.    when one has mode MODE1 and one has mode MODE2.
  161.    If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
  162.    for any hard reg, then this must be 0 for correct output.  */
  163. #define MODES_TIEABLE_P(MODE1, MODE2)  1
  164.  
  165. /* Specify the registers used for certain standard purposes.
  166.    The values of these macros are register numbers.  */
  167.  
  168. /* Register to use for pushing function arguments.  */
  169. #define STACK_POINTER_REGNUM 15
  170.  
  171. /* Base register for access to local variables of the function.  */
  172. #define FRAME_POINTER_REGNUM 14
  173.  
  174. /* Value should be nonzero if functions must have frame pointers.
  175.    Zero means the frame pointer need not be set up (and parms
  176.    may be accessed via the stack pointer) in functions that seem suitable.
  177.    This is computed in `reload', in reload1.c.  */
  178. #define FRAME_POINTER_REQUIRED 0
  179.  
  180. #define INITIAL_FRAME_POINTER_OFFSET(DEPTH)            \
  181. { int regno;                            \
  182.   int offset = 0;                        \
  183.   for( regno=0; regno < FIRST_PSEUDO_REGISTER;  regno++ )    \
  184.     if( regs_ever_live[regno] && !call_used_regs[regno] )    \
  185.       offset += 8;                        \
  186.   (DEPTH) = (offset + ((get_frame_size() + 3) & ~3) );        \
  187.   (DEPTH) = 0;                            \
  188. }
  189.  
  190. /* Base register for access to arguments of the function.  */
  191. #define ARG_POINTER_REGNUM 14
  192.  
  193. /* Register in which static-chain is passed to a function.  */
  194. #define STATIC_CHAIN_REGNUM 0
  195.  
  196. /* Register in which address to store a structure value
  197.    is passed to a function.  */
  198. #define STRUCT_VALUE_REGNUM 1
  199.  
  200. /* Define the classes of registers for register constraints in the
  201.    machine description.  Also define ranges of constants.
  202.  
  203.    One of the classes must always be named ALL_REGS and include all hard regs.
  204.    If there is more than one class, another class must be named NO_REGS
  205.    and contain no registers.
  206.  
  207.    The name GENERAL_REGS must be the name of a class (or an alias for
  208.    another name such as ALL_REGS).  This is the class of registers
  209.    that is allowed by "g" or "r" in a register constraint.
  210.    Also, registers outside this class are allocated only when
  211.    instructions express preferences for them.
  212.  
  213.    The classes must be numbered in nondecreasing order; that is,
  214.    a larger-numbered class must never be contained completely
  215.    in a smaller-numbered class.
  216.  
  217.    For any two classes, it is very desirable that there be another
  218.    class that represents their union.  */
  219.    
  220. /* The vax has only one kind of registers, so NO_REGS and ALL_REGS
  221.    are the only classes.  */
  222.  
  223. enum reg_class { NO_REGS, GENERAL_REGS, ALL_REGS, LIM_REG_CLASSES };
  224.  
  225. #define N_REG_CLASSES (int) LIM_REG_CLASSES
  226.  
  227. /* Give names of register classes as strings for dump file.   */
  228.  
  229. #define REG_CLASS_NAMES \
  230.  {"NO_REG