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 / vax-vms.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  13KB  |  340 lines

  1. /* Output variables, constants and external declarations, for GNU compiler.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* This enables certain macros in vax.h, which will make an indirect
  21.    reference to an external symbol an invalid address.  This needs to be
  22.    defined before we include vax.h, since it determines which macros
  23.    are used for GO_IF_*.  */
  24.  
  25. #define NO_EXTERNAL_INDIRECT_ADDRESS
  26.  
  27. #include "vax.h"
  28.  
  29. #undef LIB_SPEC
  30. #undef CPP_PREDEFINES
  31. #undef TARGET_VERSION
  32. #undef TARGET_DEFAULT
  33. #undef CALL_USED_REGISTERS
  34. #undef MAYBE_VMS_FUNCTION_PROLOGUE
  35. #undef FUNCTION_PROLOGUE
  36. #undef STARTING_FRAME_OFFSET
  37.  
  38. /* Predefine this in CPP because VMS limits the size of command options
  39.    and GNU CPP is not used on VMS except with GNU C.  */
  40. #define CPP_PREDEFINES "-Dvax -Dvms -DVMS -D__GNUC__=2"
  41.  
  42. /* These match the definitions used in VAXCRTL, the VMS C run-time library */
  43.  
  44. #define SIZE_TYPE "unsigned int"
  45. #define PTRDIFF_TYPE "int"
  46. #define WCHAR_TYPE    "unsigned int"
  47.  
  48. /* Use memcpy for structure copying, and so forth.  */
  49. #define TARGET_MEM_FUNCTIONS
  50.  
  51. /* Strictly speaking, VMS does not use DBX at all, but the interpreter built
  52.    into gas only speaks straight DBX.  */
  53.  
  54. #define DEFAULT_GDB_EXTENSIONS 0
  55.  
  56. /* By default, allow $ to be part of an identifier.  */
  57. #define DOLLARS_IN_IDENTIFIERS 2
  58.  
  59. #define TARGET_DEFAULT 1
  60. #define TARGET_VERSION fprintf (stderr, " (vax vms)");
  61.  
  62. #define CALL_USED_REGISTERS {1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
  63.  
  64. /* We redefine this because there is a hidden variable on the stack
  65.    that VAXC$ESTABLISH uses.  We just need to add four bytes to whatever
  66.    gcc thinks that we need.  Similarly, we need to move all local variables
  67.    down 4 bytes in the stack.  */
  68.  
  69. #define STARTING_FRAME_OFFSET -4
  70.  
  71. #define FUNCTION_PROLOGUE(FILE, SIZE)     \
  72. { register int regno;                        \
  73.   register int mask = 0;                    \
  74.   register int newsize = SIZE + 4;                \
  75.   extern char call_used_regs[];                    \
  76.   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)    \
  77.     if (regs_ever_live[regno] && !call_used_regs[regno])    \
  78.        mask |= 1 << regno;                    \
  79.   fprintf (FILE, "\t.word 0x%x\n", mask);            \
  80.   MAYBE_VMS_FUNCTION_PROLOGUE(FILE)                \
  81.   if (newsize >= 64) fprintf (FILE, "\tmovab %d(sp),sp\n", -newsize);\
  82.   else fprintf (FILE, "\tsubl2 $%d,sp\n", newsize); }
  83.  
  84. #define __MAIN_NAME " main ("
  85. /*
  86.  * The MAYBE_VMS_FUNCTION_PROLOGUE macro works for both gcc and g++.  It
  87.  * first checks to see if the current routine is "main", which will only
  88.  * happen for GCC, and add the jsb if it is.  If is not the case then try and 
  89.  * see if __MAIN_NAME is part of current_function_name, which will only happen
  90.  * if we are running g++, and add the jsb if it is.  In gcc there should never
  91.  * be a space in the function name, and in g++ there is always a "(" in the
  92.  * function name, thus there should never be any confusion.
  93.  */
  94. #define MAYBE_VMS_FUNCTION_PROLOGUE(FILE)    \
  95. { extern char *current_function_name;        \
  96.   if (!strcmp ("main", current_function_name))    \
  97.     fprintf(FILE, "\tjsb _C$MAIN_ARGS\n");     \
  98.   else {                    \
  99.     char *p = current_function_name;        \
  100.     while (*p != '\0')                \
  101.       if (*p == *__MAIN_NAME)            \
  102.         if (strncmp(p, __MAIN_NAME, (sizeof __MAIN_NAME)-1) == 0) {\
  103.           fprintf(FILE, "\tjsb _C$MAIN_ARGS\n");\
  104.           break;                \
  105.         } else                    \
  106.           p++;                    \
  107.       else                    \
  108.         p++;                    \
  109.      };                        \
  110. }
  111.  
  112. /* This macro definition sets up a default value for `main' to return.  */
  113. #define DEFAULT_MAIN_RETURN  c_expand_return (integer_one_node)
  114.  
  115. /* This makes use of a hook in varasm.c to mark all external variables
  116.    for us.  We use this to make sure that external variables are correctly
  117.    addressed.  Under VMS there is some brain damage in the linker that requires
  118.    us to do this.  */
  119.  
  120. #define ENCODE_SECTION_INFO(decl)                  \
  121.   if (DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))         \
  122.     SYMBOL_REF_FLAG (XEXP (DECL_RTL (decl), 0)) = 1; 
  123.  
  124. /* Under VMS we write the actual size of the storage to be allocated even
  125.    though the symbol is external.  Although it is possible to give external
  126.    symbols a size of 0 (as unix does), the VMS linker does not make the
  127.    distinction between a variable definition and an external reference of a
  128.    variable, and thus the linker will not complain about a missing definition.
  129.    If we followed the unix example of giving external symbols a size of
  130.    zero, you tried to link a program where a given variable was externally
  131.    defined but none of the object modules contained a non-extern definition,
  132.    the linker would allocate 0 bytes for the variable, and any attempt to
  133.    use that variable would use the storage allocated to some other variable.
  134.  
  135.    We must also select either const_section or data_section: this will indicate
  136.    whether or not the variable will get the readonly bit set.  Since the
  137.    VMS linker does not distinguish between a variable's definition and an
  138.    external reference, all usages of a given variable must have the readonly
  139.    bit set the same way, or the linker will get confused and give warning
  140.    messages.  */
  141.  
  142. /* We used to round the size up to a multiple of 4,
  143.    but that causes linker errors sometimes when the variable was initialized
  144.    since the size of its definition was not likewise rounded up.  */
  145.  
  146. #define ASM_OUTPUT_EXTERNAL(FILE,DECL,NAME)                \
  147. { if (DECL_INITIAL (DECL) == 0 && TREE_CODE (DECL) != FUNCTION_DECL)    \
  148.     {                                    \
  149.       if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl))        \
  150.     const_section ();                        \
  151.       else                                \
  152.     data_section ();                        \
  153.       fputs (".comm ", (FILE));                        \
  154.       assemble_name ((FILE), (NAME));                    \
  155.       if (DECL_SIZE (DECL) == 0)                    \
  156.         fprintf ((FILE), ",0\n");                    \
  157.       else                                \
  158.     {                                \
  159.       tree size_tree;                        \
  160.       size_tree = size_binop (CEIL_DIV_EXPR,            \
  161.          DECL_SIZE (DECL), size_int (BITS_PER_UNIT));        \
  162.       fprintf ((FILE), ",%d\n", TREE_INT_CST_LOW (size_tree));    \
  163.         }                                \
  164.     }                                    \
  165. }
  166.  
  167. /* Here we redefine ASM_OUTPUT_COMMON to select the data_section or the
  168.    const_section before writing the ".const" assembler directive.
  169.    If we were specifying a size of zero for external variables, we would
  170.    not have to select a section, since the assembler can assume that
  171.    when the size > 0, the storage is for a non-external, uninitialized
  172.    variable (for which a "const" declaration would be senseless),
  173.    and the assembler can make the storage read/write.
  174.  
  175.    Since the ".const" directive specifies the actual size of the storage used
  176.    for both external and non-external variables, the assembler cannot
  177.    make this assumption, and thus it has no way of deciding if storage should
  178.    be read/write or read-only.  To resolve this, we give the assembler some
  179.    assistance, in the form of a ".const" or a ".data" directive.
  180.  
  181.    Under GCC 1.40, external variables were declared with a size of zero.
  182.    The GNU assembler, GAS, will recognize the "-2" switch when built for VMS;
  183.    when compiling programs with GCC 2.n this switch should be used or the
  184.    assembler will not give the read-only attribute to external constants.
  185.    Failure to use this switch will result in linker warning messages about
  186.    mismatched psect attributes.  */
  187.  
  188. #undef ASM_OUTPUT_COMMON
  189.  
  190. #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED)        \
  191. ( ((TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl))    \
  192.    ? (const_section (), 0) : (data_section (), 0)),        \
  193.   fputs (".comm ", (FILE)),                    \
  194.   assemble_name ((FILE), (NAME)),                \
  195.   fprintf ((FIL