home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / elf / crt / config / svr4.h
Encoding:
C/C++ Source or Header  |  1994-11-05  |  31.9 KB  |  878 lines

  1. /* svr4.h  --  operating system specific defines to be used when
  2.    targeting GCC for some generic System V Release 4 system.
  3.    Copyright (C) 1991, 1994 Free Software Foundation, Inc.
  4.    Contributed by Ron Guilmette (rfg@netcom.com).
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.    To use this file, make up a file with a name like:
  23.  
  24.     ?????svr4.h
  25.  
  26.    where ????? is replaced by the name of the basic hardware that you
  27.    are targeting for.  Then, in the file ?????svr4.h, put something
  28.    like:
  29.  
  30.     #include "?????.h"
  31.     #include "svr4.h"
  32.  
  33.    followed by any really system-specific defines (or overrides of
  34.    defines) which you find that you need.  For example, CPP_PREDEFINES
  35.    is defined here with only the defined -Dunix and -DSVR4.  You should
  36.    probably override that in your target-specific ?????svr4.h file
  37.    with a set of defines that includes these, but also contains an
  38.    appropriate define for the type of hardware that you are targeting.
  39. */
  40.  
  41. /* Define a symbol indicating that we are using svr4.h.  */
  42. #define USING_SVR4_H
  43.  
  44. /* For the sake of libgcc2.c, indicate target supports atexit.  */
  45. #define HAVE_ATEXIT
  46.  
  47. /* Cpp, assembler, linker, library, and startfile spec's.  */
  48.  
  49. /* This defines which switch letters take arguments.  On svr4, most of
  50.    the normal cases (defined in gcc.c) apply, and we also have -h* and
  51.    -z* options (for the linker).  Note however that there is no such
  52.    thing as a -T option for svr4.  */
  53.  
  54. #define SWITCH_TAKES_ARG(CHAR) \
  55.   (   (CHAR) == 'D' \
  56.    || (CHAR) == 'U' \
  57.    || (CHAR) == 'o' \
  58.    || (CHAR) == 'e' \
  59.    || (CHAR) == 'u' \
  60.    || (CHAR) == 'I' \
  61.    || (CHAR) == 'm' \
  62.    || (CHAR) == 'L' \
  63.    || (CHAR) == 'A' \
  64.    || (CHAR) == 'h' \
  65.    || (CHAR) == 'z')
  66.  
  67. /* This defines which multi-letter switches take arguments.  On svr4,
  68.    there are no such switches except those implemented by GCC itself.  */
  69.  
  70. #define WORD_SWITCH_TAKES_ARG(STR)            \
  71.  (DEFAULT_WORD_SWITCH_TAKES_ARG (STR)            \
  72.   && strcmp (STR, "Tdata") && strcmp (STR, "Ttext")    \
  73.   && strcmp (STR, "Tbss"))
  74.  
  75. /* You should redefine CPP_PREDEFINES in any file which includes this one.
  76.    The definition should be appropriate for the type of target system
  77.    involved, and it should include any -A (assertion) options which are
  78.    appropriate for the given target system.  */
  79. #undef CPP_PREDEFINES
  80.  
  81. /* Provide an ASM_SPEC appropriate for svr4.  Here we try to support as
  82.    many of the specialized svr4 assembler options as seems reasonable,
  83.    given that there are certain options which we can't (or shouldn't)
  84.    support directly due to the fact that they conflict with other options 
  85.    for other svr4 tools (e.g. ld) or with other options for GCC itself.
  86.    For example, we don't support the -o (output file) or -R (remove
  87.    input file) options because GCC already handles these things.  We
  88.    also don't support the -m (run m4) option for the assembler because
  89.    that conflicts with the -m (produce load map) option of the svr4
  90.    linker.  We do however allow passing arbitrary options to the svr4
  91.    assembler via the -Wa, option.
  92.  
  93.    Note that gcc doesn't allow a space to follow -Y in a -Ym,* or -Yd,*
  94.    option.
  95. */
  96.  
  97. #undef ASM_SPEC
  98. #define ASM_SPEC \
  99.   "%{V} %{v:%{!V:-V}} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*}"
  100.  
  101. /* svr4 assemblers need the `-' (indicating input from stdin) to come after
  102.    the -o option (and its argument) for some reason.  If we try to put it
  103.    before the -o option, the assembler will try to read the file named as
  104.    the output file in the -o option as an input file (after it has already
  105.    written some stuff to it) and the binary stuff contained therein will
  106.    cause totally confuse the assembler, resulting in many spurious error
  107.    messages.  */
  108.  
  109. #undef ASM_FINAL_SPEC
  110. #define ASM_FINAL_SPEC "%{pipe:-}"
  111.  
  112. /* Under svr4, the normal location of the `ld' and `as' programs is the
  113.    /usr/ccs/bin directory.  */
  114.  
  115. #undef MD_EXEC_PREFIX
  116. #define MD_EXEC_PREFIX "/usr/ccs/bin/"
  117.  
  118. /* Under svr4, the normal location of the various *crt*.o files is the
  119.    /usr/ccs/lib directory.  */
  120.  
  121. #undef MD_STARTFILE_PREFIX
  122. #define MD_STARTFILE_PREFIX "/usr/ccs/lib/"
  123.  
  124. /* Provide a LIB_SPEC appropriate for svr4.  Here we tack on the default
  125.    standard C library (unless we are building a shared library).  */
  126.  
  127. #undef    LIB_SPEC
  128. #define LIB_SPEC "%{!shared:%{!symbolic:-lc}}"
  129.  
  130. /* Provide a LIB_SPEC_2 appropriate for svr4.  We don't want to include
  131.    libgcc, but various SVR4 implementations may want to specify some
  132.    dependencies.  */
  133.  
  134. #undef  LIB_SPEC_2
  135. #define LIB_SPEC_2 \
  136.   "%{!shared:%{!symbolic:-lgcc}} %L %{!shared:%{!symbolic:-lgcc}}"
  137.  
  138. /* Provide an ENDFILE_SPEC appropriate for svr4.  Here we tack on our own
  139.    magical crtend.o file (see crtstuff.c) which provides part of the
  140.    support for getting C++ file-scope static object constructed before
  141.    entering `main', followed by the normal svr3/svr4 "finalizer" file,
  142.    which is either `gcrtn.o' or `crtn.o'.  */
  143.  
  144. #undef  ENDFILE_SPEC
  145. #define ENDFILE_SPEC "crtend.o%s %{pg:gcrtn.o}%{!pg:crtn.o%s}"
  146.  
  147. /* Provide a LINK_SPEC appropriate for svr4.  Here we provide support
  148.    for the special GCC options -static, -shared, and -symbolic which
  149.    allow us to link things in one of these three modes by applying the
  150.    appropriate combinations of options at link-time.  We also provide
  151.    support here for as many of the other svr4 linker options as seems
  152.    reasonable, given that some of them conflict with options for other
  153.    svr4 tools (e.g. the assembler).  In particular, we do support the
  154.    -h*, -z*, -V, -b, -t, -Qy, -Qn, and -YP* options here, and the -e*,
  155.    -l*, -o*, -r, -s, -u*, and -L* options are directly supported
  156.    by gcc.c itself.  We don't directly support the -m (generate load
  157.    map) option because that conflicts with the -m (run m4) option of
  158.    the svr4 assembler.  We also don't directly support the svr4 linker's
  159.    -I* or -M* options because these conflict with existing GCC options.
  160.    We do however allow passing arbitrary options to the svr4 linker
  161.    via the -Wl, option.  We don't support the svr4 linker's -a option
  162.    at all because it is totally useless and because it conflicts with
  163.    GCC's own -a option.
  164.  
  165.    Note that gcc doesn't allow a space to follow -Y in a -YP,* option.
  166.  
  167.    When the -G link option is used (-shared and -symbolic) a final link is
  168.    not being done.  */
  169.  
  170. #undef    LINK_SPEC
  171. #define LINK_SPEC "%{h*} %{V} %{v:%{!V:-V}} \
  172.            %{b} %{Wl,*:%*} \
  173.            %{static:-dn -Bstatic} \
  174.            %{shared:-G -dy -z text} \
  175.            %{symbolic:-Bsymbolic -G -dy -z text} \
  176.            %{G:-G} \
  177.            %{YP,*} \
  178.            %{!YP,*:%{p:-Y P,/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
  179.             %{!p:-Y P,/usr/ccs/lib:/usr/lib}} \
  180.            %{Qy:} %{!Qn:-Qy}"
  181.  
  182. /* Gcc automatically adds in one of the files /usr/ccs/lib/values-Xc.o,
  183.    /usr/ccs/lib/values-Xa.o, or /usr/ccs/lib/values-Xt.o for each final
  184.    link step (depending upon the other gcc options selected, such as
  185.    -traditional and -ansi).  These files each contain one (initialized)
  186.    copy of a special variable called `_lib_version'.  Each one of these
  187.    files has `_lib_version' initialized to a different (enum) value.
  188.    The SVR4 library routines query the value of `_lib_version' at run
  189.    to decide how they should behave.  Specifically, they decide (based
  190.    upon the value of `_lib_version') if they will act in a strictly ANSI
  191.    conforming manner or not.
  192. */
  193.  
  194. #undef    STARTFILE_SPEC
  195. #define STARTFILE_SPEC "%{!shared: \
  196.              %{!symbolic: \
  197.               %{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s}%{!p:crt1.o%s}}}}\
  198.             %{pg:gcrti.o%s}%{!pg:crti.o%s} \
  199.             %{ansi:values-Xc.o%s} \
  200.             %{!ansi: \
  201.              %{traditional:values-Xt.o%s} \
  202.              %{!traditional:values-Xa.o%s}} \
  203.              crtbegin.o%s"
  204.  
  205. /* Attach a special .ident directive to the end of the file to identify
  206.    the version of GCC which compiled this code.  The format of the
  207.    .ident string is patterned after the ones produced by native svr4
  208.    C compilers.  */
  209.  
  210. #define IDENT_ASM_OP ".ident"
  211.  
  212. #define ASM_FILE_END(FILE)                    \
  213. do {                                 \
  214.      fprintf ((FILE), "\t%s\t\"GCC: (GNU) %s\"\n",        \
  215.           IDENT_ASM_OP, version_string);            \
  216.    } while (0)
  217.  
  218. /* Allow #sccs in preprocessor.  */
  219.  
  220. #define SCCS_DIRECTIVE
  221.  
  222. /* Output #ident as a .ident.  */
  223.  
  224. #define ASM_OUTPUT_IDENT(FILE, NAME) \
  225.   fprintf (FILE, "\t%s\t\"%s\"\n", IDENT_ASM_OP, NAME);
  226.  
  227. /* Use periods rather than dollar signs in special g++ assembler names.  */
  228.  
  229. #define NO_DOLLAR_IN_LABEL
  230.  
  231. /* Writing `int' for a bitfield forces int alignment for the structure.  */
  232.  
  233. #define PCC_BITFIELD_TYPE_MATTERS 1
  234.  
  235. /* Implicit library calls should use memcpy, not bcopy, etc.  */
  236.  
  237. #define TARGET_MEM_FUNCTIONS
  238.  
  239. /* Handle #pragma weak and #pragma pack.  */
  240.  
  241. #define HANDLE_SYSV_PRAGMA
  242.  
  243. /* System V Release 4 uses DWARF debugging info.  */
  244.  
  245. #define DWARF_DEBUGGING_INFO
  246.  
  247. /* The numbers used to denote specific machine registers in the System V
  248.    Release 4 DWARF debugging information are quite likely to be totally
  249.    different from the numbers used in BSD stabs debugging information
  250.    for the same kind of target machine.  Thus, we undefine the macro
  251.    DBX_REGISTER_NUMBER here as an extra inducement to get people to
  252.    provide proper machine-specific definitions of DBX_REGISTER_NUMBER
  253.    (which is also used to provide DWARF registers numbers in dwarfout.c)
  254.    in their tm.h files which include this file.  */
  255.  
  256. #undef DBX_REGISTER_NUMBER
  257.  
  258. /* gas on SVR4 supports the use of .stabs.  Permit -gstabs to be used
  259.    in general, although it will only work when using gas.  */
  260.  
  261. #define DBX_DEBUGGING_INFO
  262.  
  263. /* Use DWARF debugging info by default.  */
  264.  
  265. #ifndef PREFERRED_DEBUGGING_TYPE
  266. #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
  267. #endif
  268.  
  269. /* Make LBRAC and RBRAC addresses relative to the start of the
  270.    function.  The native Solaris stabs debugging format works this
  271.    way, gdb expects it, and it reduces the number of relocation
  272.    entries.  */
  273.  
  274. #define DBX_BLOCKS_FUNCTION_RELATIVE 1
  275.  
  276. /* When using stabs, gcc2_compiled must be a stabs entry, not an
  277.    ordinary symbol, or gdb won't see it.  Furthermore, since gdb reads
  278.    the input piecemeal, starting with each N_SO, it's a lot easier if
  279.    the gcc2 flag symbol is *after* the N_SO rather than before it.  So
  280.    we emit an N_OPT stab there.  */
  281.  
  282. #define ASM_IDENTIFY_GCC(FILE)                        \
  283. do                                    \
  284.   {                                    \
  285.     if (write_symbols != DBX_DEBUG)                    \
  286.       fputs ("gcc2_compiled.:\n", FILE);                \
  287.   }                                    \
  288. while (0)
  289.  
  290. #define ASM_IDENTIFY_GCC_AFTER_SOURCE(FILE)                \
  291. do                                    \
  292.   {                                    \
  293.     if (write_symbols == DBX_DEBUG)                    \
  294.       fputs ("\t.stabs\t\"gcc2_compiled.\", 0x3c, 0, 0, 0\n", FILE);    \
  295.   }                                    \
  296. while (0)
  297.  
  298. /* Like block addresses, stabs line numbers are relative to the
  299.    current function.  */
  300.  
  301. #define ASM_OUTPUT_SOURCE_LINE(file, line)                \
  302. do                                    \
  303.   {                                    \
  304.     static int sym_lineno = 1;                        \
  305.     fprintf (file, ".stabn 68,0,%d,.LM%d-%s\n.LM%d:\n",            \
  306.          line, sym_lineno,                         \
  307.          XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0),     \
  308.          sym_lineno);                        \
  309.     sym_lineno += 1;                            \
  310.   }                                    \
  311. while (0)
  312.  
  313. /* In order for relative line numbers to work, we must output the
  314.    stabs entry for the function name first.  */
  315.  
  316. #define DBX_FUNCTION_FIRST
  317.  
  318. /* Define the actual types of some ANSI-mandated types.  (These
  319.    definitions should work for most SVR4 systems).  */
  320.  
  321. #undef SIZE_TYPE
  322. #define SIZE_TYPE "unsigned int"
  323.  
  324. #undef PTRDIFF_TYPE
  325. #define PTRDIFF_TYPE "int"
  326.  
  327. #undef WCHAR_TYPE
  328. #define WCHAR_TYPE "long int"
  329.  
  330. #undef WCHAR_TYPE_SIZE
  331. #define WCHAR_TYPE_SIZE BITS_PER_WORD
  332.  
  333. /* This causes trouble, because it requires the host machine
  334.    to support ANSI C.  */
  335. /* #define MULTIBYTE_CHARS */
  336.  
  337. #undef ASM_BYTE_OP
  338. #define ASM_BYTE_OP    ".byte"
  339.  
  340. #undef SET_ASM_OP
  341. #define SET_ASM_OP    ".set"
  342.  
  343. /* This is how to begin an assembly language file.  Most svr4 assemblers want
  344.    at least a .file directive to come first, and some want to see a .version
  345.    directive come right after that.  Here we just establish a default
  346.    which generates only the .file directive.  If you need a .version
  347.    directive for any specific target, you should override this definition
  348.    in the target-specific file which includes this one.  */
  349.  
  350. #undef ASM_FILE_START
  351. #define ASM_FILE_START(FILE)                                    \
  352.   output_file_directive ((FILE), main_input_filename)
  353.  
  354. /* This is how to allocate empty space in some section.  The .zero
  355.    pseudo-op is used for this on most svr4 assemblers.  */
  356.  
  357. #define SKIP_ASM_OP    ".zero"
  358.  
  359. #undef ASM_OUTPUT_SKIP
  360. #define ASM_OUTPUT_SKIP(FILE,SIZE) \
  361.   fprintf (FILE, "\t%s\t%u\n", SKIP_ASM_OP, (SIZE))
  362.  
  363. /* This is how to output a reference to a user-level label named NAME.
  364.    `assemble_name' uses this.
  365.  
  366.    For System V Release 4 the convention is *not* to prepend a leading
  367.    underscore onto user-level symbol names.  */
  368.  
  369. #undef ASM_OUTPUT_LABELREF
  370. #define ASM_OUTPUT_LABELREF(FILE,NAME) fprintf (FILE, "%s", NAME)
  371.  
  372. /* This is how to output an internal numbered label where
  373.    PREFIX is the class of label and NUM is the number within the class.
  374.  
  375.    For most svr4 systems, the convention is that any symbol which begins
  376.    with a period is not put into the linker symbol table by the assembler.  */
  377.  
  378. #undef ASM_OUTPUT_INTERNAL_LABEL
  379. #define ASM_OUTPUT_INTERNAL_LABEL(FILE, PREFIX, NUM)            \
  380. do {                                    \
  381.   fprintf (FILE, ".%s%d:\n", PREFIX, NUM);                \
  382. } while (0)
  383.  
  384. /* This is how to store into the string LABEL
  385.    the symbol_ref name of an internal numbered label where
  386.    PREFIX is the class of label and NUM is the number within the class.
  387.    This is suitable for output with `assemble_name'.
  388.  
  389.    For most svr4 systems, the convention is that any symbol which begins
  390.    with a period is not put into the linker symbol table by the assembler.  */
  391.  
  392. #undef ASM_GENERATE_INTERNAL_LABEL
  393. #define ASM_GENERATE_INTERNAL_LABEL(LABEL, PREFIX, NUM)            \
  394. do {                                    \
  395.   sprintf (LABEL, "*.%s%d", PREFIX, NUM);                \
  396. } while (0)
  397.  
  398. /* Output the label which precedes a jumptable.  Note that for all svr4
  399.    systems where we actually generate jumptables (which is to say every
  400.    svr4 target except i386, where we use casesi instead) we put the jump-
  401.    tables into the .rodata section and since other stuff could have been
  402.    put into the .rodata section prior to any given jumptable, we have to
  403.    make sure that the location counter for the .rodata section gets pro-
  404.    perly re-aligned prior to the actual beginning of the jump table.  */
  405.  
  406. #define ALIGN_ASM_OP ".align"
  407.  
  408. #ifndef ASM_OUTPUT_BEFORE_CASE_LABEL
  409. #define ASM_OUTPUT_BEFORE_CASE_LABEL(FILE,PREFIX,NUM,TABLE) \
  410.   ASM_OUTPUT_ALIGN ((FILE), 2);
  411. #endif
  412.  
  413. #undef ASM_OUTPUT_CASE_LABEL
  414. #define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,JUMPTABLE)        \
  415.   do {                                    \
  416.     ASM_OUTPUT_BEFORE_CASE_LABEL (FILE, PREFIX, NUM, JUMPTABLE)        \
  417.     ASM_OUTPUT_INTERNAL_LABEL (FILE, PREFIX, NUM);            \
  418.   } while (0)
  419.  
  420. /* The standard SVR4 assembler seems to require that certain builtin
  421.    library routines (e.g. .udiv) be explicitly declared as .globl
  422.    in each assembly file where they are referenced.  */
  423.  
  424. #define ASM_OUTPUT_EXTERNAL_LIBCALL(FILE, FUN)                \
  425.   ASM_GLOBALIZE_LABEL (FILE, XSTR (FUN, 0))
  426.  
  427. /* This says how to output assembler code to declare an
  428.    uninitialized external linkage data object.  Under SVR4,
  429.    the linker seems to want the alignment of data objects
  430.    to depend on their types.  We do exactly that here.  */
  431.  
  432. #define COMMON_ASM_OP    ".comm"
  433.  
  434. #undef ASM_OUTPUT_ALIGNED_COMMON
  435. #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN)        \
  436. do {                                    \
  437.   fprintf ((FILE), "\t%s\t", COMMON_ASM_OP);                \
  438.   assemble_name ((FILE), (NAME));                    \
  439.   fprintf ((FILE), ",%u,%u\n", (SIZE), (ALIGN) / BITS_PER_UNIT);    \
  440. } while (0)
  441.  
  442. /* This says how to output assembler code to declare an
  443.    uninitialized internal linkage data object.  Under SVR4,
  444.    the linker seems to want the alignment of data objects
  445.    to depend on their types.  We do exactly that here.  */
  446.  
  447. #define LOCAL_ASM_OP    ".local"
  448.  
  449. #undef ASM_OUTPUT_ALIGNED_LOCAL
  450. #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN)        \
  451. do {                                    \
  452.   fprintf ((FILE), "\t%s\t", LOCAL_ASM_OP);                \
  453.   assemble_name ((FILE), (NAME));                    \
  454.   fprintf ((FILE), "\n");                        \
  455.   ASM_OUTPUT_ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN);            \
  456. } while (0)
  457.  
  458. /* This is the pseudo-op used to generate a 32-bit word of data with a
  459.    specific value in some section.  This is the same for all known svr4
  460.    assemblers.  */
  461.  
  462. #define INT_ASM_OP        ".long"
  463.  
  464. /* This is the pseudo-op used to generate a contiguous sequence of byte
  465.    values from a double-quoted string WITHOUT HAVING A TERMINATING NUL
  466.    AUTOMATICALLY APPENDED.  This is the same for most svr4 assemblers.  */
  467.  
  468. #undef ASCII_DATA_ASM_OP
  469. #define ASCII_DATA_ASM_OP    ".ascii"
  470.  
  471. /* Support const sections and the ctors and dtors sections for g++.
  472.    Note that there appears to be two different ways to support const
  473.    sections at the moment.  You can either #define the symbol
  474.    READONLY_DATA_SECTION (giving it some code which switches to the
  475.    readonly data section) or else you can #define the symbols
  476.    EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS, SELECT_SECTION, and
  477.    SELECT_RTX_SECTION.  We do both here just to be on the safe side.  */
  478.  
  479. #define USE_CONST_SECTION    1
  480.  
  481. #define CONST_SECTION_ASM_OP    ".section\t.rodata"
  482.  
  483. /* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
  484.  
  485.    Note that we want to give these sections the SHF_WRITE attribute
  486.    because these sections will actually contain data (i.e. tables of
  487.    addresses of functions in the current root executable or shared library
  488.    file) and, in the case of a shared library, the relocatable addresses
  489.    will have to be properly resolved/relocated (and then written into) by
  490.    the dynamic linker when it actually attaches the given shared library
  491.    to the executing process.  (Note that on SVR4, you may wish to use the
  492.    `-z text' option to the ELF linker, when building a shared library, as
  493.    an additional check that you are doing everything right.  But if you do
  494.    use the `-z text' option when building a shared library, you will get
  495.    errors unless the .ctors and .dtors sections are marked as writable
  496.    via the SHF_WRITE attribute.)  */
  497.  
  498. #define CTORS_SECTION_ASM_OP    ".section\t.ctors,\"aw\",@progbits"
  499. #define DTORS_SECTION_ASM_OP    ".section\t.dtors,\"aw\",@progbits"
  500.  
  501. /* On svr4, we *do* have support for the .init and .fini sections, and we
  502.    can put stuff in there to be executed before and after `main'.  We let
  503.    crtstuff.c and other files know this by defining the following symbols.
  504.    The definitions say how to change sections to the .init and .fini
  505.    sections.  This is the same for all known svr4 assemblers.  */
  506.  
  507. #define INIT_SECTION_ASM_OP    ".section\t.init"
  508. #define FINI_SECTION_ASM_OP    ".section\t.fini"
  509.  
  510. /* A default list of other sections which we might be "in" at any given
  511.    time.  For targets that use additional sections (e.g. .tdesc) you
  512.    should override this definition in the target-specific file which
  513.    includes this file.  */
  514.  
  515. #undef EXTRA_SECTIONS
  516. #define EXTRA_SECTIONS in_const, in_ctors, in_dtors
  517.  
  518. /* A default list of extra section function definitions.  For targets
  519.    that use additional sections (e.g. .tdesc) you should override this
  520.    definition in the target-specific file which includes this file.  */
  521.  
  522. #undef EXTRA_SECTION_FUNCTIONS
  523. #define EXTRA_SECTION_FUNCTIONS                        \
  524.   CONST_SECTION_FUNCTION                        \
  525.   CTORS_SECTION_FUNCTION                        \
  526.   DTORS_SECTION_FUNCTION
  527.  
  528. #define READONLY_DATA_SECTION() const_section ()
  529.  
  530. extern void text_section ();
  531.  
  532. #define CONST_SECTION_FUNCTION                        \
  533. void                                    \
  534. const_section ()                            \
  535. {                                    \
  536.   if (!USE_CONST_SECTION)                        \
  537.     text_section();                            \
  538.   else if (in_section != in_const)                    \
  539.     {                                    \
  540.       fprintf (asm_out_file, "%s\n", CONST_SECTION_ASM_OP);        \
  541.       in_section = in_const;                        \
  542.     }                                    \
  543. }
  544.  
  545. #define CTORS_SECTION_FUNCTION                        \
  546. void                                    \
  547. ctors_section ()                            \
  548. {                                    \
  549.   if (in_section != in_ctors)                        \
  550.     {                                    \
  551.       fprintf (asm_out_file, "%s\n", CTORS_SECTION_ASM_OP);        \
  552.       in_section = in_ctors;                        \
  553.     }                                    \
  554. }
  555.  
  556. #define DTORS_SECTION_FUNCTION                        \
  557. void                                    \
  558. dtors_section ()                            \
  559. {                                    \
  560.   if (in_section != in_dtors)                        \
  561.     {                                    \
  562.       fprintf (asm_out_file, "%s\n", DTORS_SECTION_ASM_OP);        \
  563.       in_section = in_dtors;                        \
  564.     }                                    \
  565. }
  566.  
  567. /* Switch into a generic section.
  568.    This is currently only used to support section attributes.  */
  569.  
  570. #define ASM_OUTPUT_SECTION(FILE, NAME) \
  571.   fprintf (FILE, ".section\t%s,\"a\",@progbits\n", NAME)
  572.  
  573. /* A C statement (sans semicolon) to output an element in the table of
  574.    global constructors.  */
  575. #define ASM_OUTPUT_CONSTRUCTOR(FILE,NAME)                \
  576.   do {                                    \
  577.     ctors_section ();                            \
  578.     fprintf (FILE, "\t%s\t ", INT_ASM_OP);                \
  579.     assemble_name (FILE, NAME);                        \
  580.     fprintf (FILE, "\n");                        \
  581.   } while (0)
  582.  
  583. /* A C statement (sans semicolon) to output an element in the table of
  584.    global destructors.  */
  585. #define ASM_OUTPUT_DESTRUCTOR(FILE,NAME)                       \
  586.   do {                                    \
  587.     dtors_section ();                                   \
  588.     fprintf (FILE, "\t%s\t ", INT_ASM_OP);                \
  589.     assemble_name (FILE, NAME);                              \
  590.     fprintf (FILE, "\n");                        \
  591.   } while (0)
  592.  
  593. /* A C statement or statements to switch to the appropriate
  594.    section for output of DECL.  DECL is either a `VAR_DECL' node
  595.    or a constant of some sort.  RELOC indicates whether forming
  596.    the initial value of DECL requires link-time relocations.  */
  597.  
  598. #define SELECT_SECTION(DECL,RELOC)                    \
  599. {                                    \
  600.   if (TREE_CODE (DECL) == STRING_CST)                    \
  601.     {                                    \
  602.       if (! flag_writable_strings)                    \
  603.     const_section ();                        \
  604.       else                                \
  605.     data_section ();                        \
  606.     }                                    \
  607.   else if (TREE_CODE (DECL) == VAR_DECL)                \
  608.     {                                    \
  609.       if ((flag_pic && RELOC)                        \
  610.       || !TREE_READONLY (DECL) || TREE_SIDE_EFFECTS (DECL)        \
  611.       || !DECL_INITIAL (DECL)                    \
  612.       || (DECL_INITIAL (DECL) != error_mark_node            \
  613.           && !TREE_CONSTANT (DECL_INITIAL (DECL))))            \
  614.     data_section ();                        \
  615.       else                                \
  616.     const_section ();                        \
  617.     }                                    \
  618.   else                                    \
  619.     const_section ();                            \
  620. }
  621.  
  622. /* A C statement or statements to switch to the appropriate
  623.    section for output of RTX in mode MODE.  RTX is some kind
  624.    of constant in RTL.  The argument MODE is redundant except
  625.    in the case of a `const_int' rtx.  Currently, these always
  626.    go into the const section.  */
  627.  
  628. #undef SELECT_RTX_SECTION
  629. #define SELECT_RTX_SECTION(MODE,RTX) const_section()
  630.  
  631. /* Define the strings used for the special svr4 .type and .size directives.
  632.    These strings generally do not vary from one system running svr4 to
  633.    another, but if a given system (e.g. m88k running svr) needs to use
  634.    different pseudo-op names for these, they may be overridden in the
  635.    file which includes this one.  */
  636.  
  637. #define TYPE_ASM_OP    ".type"
  638. #define SIZE_ASM_OP    ".size"
  639. #define WEAK_ASM_OP    ".weak"
  640.  
  641. /* The following macro defines the format used to output the second
  642.    operand of the .type assembler directive.  Different svr4 assemblers
  643.    expect various different forms for this operand.  The one given here
  644.    is just a default.  You may need to override it in your machine-
  645.    specific tm.h file (depending upon the particulars of your assembler).  */
  646.  
  647. #define TYPE_OPERAND_FMT    "@%s"
  648.  
  649. /* Write the extra assembler code needed to declare a function's result.
  650.    Most svr4 assemblers don't require any special declaration of the
  651.    result value, but there are exceptions.  */
  652.  
  653. #ifndef ASM_DECLARE_RESULT
  654. #define ASM_DECLARE_RESULT(FILE, RESULT)
  655. #endif
  656.  
  657. /* These macros generate the special .type and .size directives which
  658.    are used to set the corresponding fields of the linker symbol table
  659.    entries in an ELF object file under SVR4.  These macros also output
  660.    the starting labels for the relevant functions/objects.  */
  661.  
  662. /* Write the extra assembler code needed to declare a function properly.
  663.    Some svr4 assemblers need to also have something extra said about the
  664.    function's return value.  We allow for that here.  */
  665.  
  666. #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL)            \
  667.   do {                                    \
  668.     fprintf (FILE, "\t%s\t ", TYPE_ASM_OP);                \
  669.     assemble_name (FILE, NAME);                        \
  670.     putc (',', FILE);                            \
  671.     fprintf (FILE, TYPE_OPERAND_FMT, "function");            \
  672.     putc ('\n', FILE);                            \
  673.     ASM_DECLARE_RESULT (FILE, DECL_RESULT (DECL));            \
  674.     ASM_OUTPUT_LABEL(FILE, NAME);                    \
  675.   } while (0)
  676.  
  677. /* Write the extra assembler code needed to declare an object properly.  */
  678.  
  679. #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL)            \
  680.   do {                                    \
  681.     fprintf (FILE, "\t%s\t ", TYPE_ASM_OP);                \
  682.     assemble_name (FILE, NAME);                        \
  683.     putc (',', FILE);                            \
  684.     fprintf (FILE, TYPE_OPERAND_FMT, "object");                \
  685.     putc ('\n', FILE);                            \
  686.     size_directive_output = 0;                        \
  687.     if (!flag_inhibit_size_directive && DECL_SIZE (DECL))        \
  688.       {                                    \
  689.     size_directive_output = 1;                    \
  690.     fprintf (FILE, "\t%s\t ", SIZE_ASM_OP);                \
  691.     assemble_name (FILE, NAME);                    \
  692.     fprintf (FILE, ",%d\n",  int_size_in_bytes (TREE_TYPE (DECL)));    \
  693.       }                                    \
  694.     ASM_OUTPUT_LABEL(FILE, NAME);                    \
  695.   } while (0)
  696.  
  697. /* Output the size directive for a decl in rest_of_decl_compilation
  698.    in the case where we did not do so before the initializer.
  699.    Once we find the error_mark_node, we know that the value of
  700.    size_directive_output was set
  701.    by ASM_DECLARE_OBJECT_NAME when it was run for the same decl.  */
  702.  
  703. #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP_LEVEL, AT_END)     \
  704. do {                                     \
  705.      char *name = XSTR (XEXP (DECL_RTL (DECL), 0), 0);             \
  706.      if (!flag_inhibit_size_directive && DECL_SIZE (DECL)         \
  707.          && ! AT_END && TOP_LEVEL                     \
  708.      && DECL_INITIAL (DECL) == error_mark_node             \
  709.      && !size_directive_output)                     \
  710.        {                                 \
  711.      size_directive_output = 1;                     \
  712.      fprintf (FILE, "\t%s\t ", SIZE_ASM_OP);             \
  713.      assemble_name (FILE, name);                     \
  714.      fprintf (FILE, ",%d\n",  int_size_in_bytes (TREE_TYPE (DECL))); \
  715.        }                                 \
  716.    } while (0)
  717.  
  718. /* This is how to declare the size of a function.  */
  719.  
  720. #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL)            \
  721.   do {                                    \
  722.     if (!flag_inhibit_size_directive)                    \
  723.       {                                    \
  724.         char label[256];                        \
  725.     static int labelno;                        \
  726.     labelno++;                            \
  727.     ASM_GENERATE_INTERNAL_LABEL (label, "Lfe", labelno);        \
  728.     ASM_OUTPUT_INTERNAL_LABEL (FILE, "Lfe", labelno);        \
  729.     fprintf (FILE, "\t%s\t ", SIZE_ASM_OP);                \
  730.     assemble_name (FILE, (FNAME));                    \
  731.         fprintf (FILE, ",");                        \
  732.     assemble_name (FILE, label);                    \
  733.         fprintf (FILE, "-");                        \
  734.     assemble_name (FILE, (FNAME));                    \
  735.     putc ('\n', FILE);                        \
  736.       }                                    \
  737.   } while (0)
  738.  
  739. /* A table of bytes codes used by the ASM_OUTPUT_ASCII and
  740.    ASM_OUTPUT_LIMITED_STRING macros.  Each byte in the table
  741.    corresponds to a particular byte value [0..255].  For any
  742.    given byte value, if the value in the corresponding table
  743.    position is zero, the given character can be output directly.
  744.    If the table value is 1, the byte must be output as a \ooo
  745.    octal escape.  If the tables value is anything else, then the
  746.    byte value should be output as a \ followed by the value
  747.    in the table.  Note that we can use standard UN*X escape
  748.    sequences for many control characters, but we don't use
  749.    \a to represent BEL because some svr4 assemblers (e.g. on
  750.    the i386) don't know about that.  Also, we don't use \v
  751.    since some versions of gas, such as 2.2 did not accept it.  */
  752.  
  753. #define ESCAPES \
  754. "\1\1\1\1\1\1\1\1btn\1fr\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
  755. \0\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
  756. \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\\0\0\0\
  757. \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\
  758. \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
  759. \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
  760. \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
  761. \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1"
  762.  
  763. /* Some svr4 assemblers have a limit on the number of characters which
  764.    can appear in the operand of a .string directive.  If your assembler
  765.    has such a limitation, you should define STRING_LIMIT to reflect that
  766.    limit.  Note that at least some svr4 assemblers have a limit on the
  767.    actual number of bytes in the double-quoted string, and that they
  768.    count each character in an escape sequence as one byte.  Thus, an
  769.    escape sequence like \377 would count as four bytes.
  770.  
  771.    If your target assembler doesn't support the .string directive, you
  772.    should define this to zero.
  773. */
  774.  
  775. #define STRING_LIMIT    ((unsigned) 256)
  776.  
  777. #define STRING_ASM_OP    ".string"
  778.  
  779. /* The routine used to output NUL terminated strings.  We use a special
  780.    version of this for most svr4 targets because doing so makes the
  781.    generated assembly code more compact (and thus faster to assemble)
  782.    as well as more readable, especially for targets like the i386
  783.    (where the only alternative is to output character sequences as
  784.    comma separated lists of numbers).   */
  785.  
  786. #define ASM_OUTPUT_LIMITED_STRING(FILE, STR)                \
  787.   do                                    \
  788.     {                                    \
  789.       register unsigned char *_limited_str = (unsigned char *) (STR);    \
  790.       register unsigned ch;                        \
  791.       fprintf ((FILE), "\t%s\t\"", STRING_ASM_OP);            \
  792.       for (; ch = *_limited_str; _limited_str++)            \
  793.         {                                \
  794.       register int escape;                        \
  795.       switch (escape = ESCAPES[ch])                    \
  796.         {                                \
  797.         case 0:                            \
  798.           putc (ch, (FILE));                    \
  799.           break;                            \
  800.         case 1:                            \
  801.           fprintf ((FILE), "\\%03o", ch);                \
  802.           break;                            \
  803.         default:                            \
  804.           putc ('\\', (FILE));                    \
  805.           putc (escape, (FILE));                    \
  806.           break;                            \
  807.         }                                \
  808.         }                                \
  809.       fprintf ((FILE), "\"\n");                        \
  810.     }                                    \
  811.   while (0)
  812.  
  813. /* The routine used to output sequences of byte values.  We use a special
  814.    version of this for most svr4 targets because doing so makes the
  815.    generated assembly code more compact (and thus faster to assemble)
  816.    as well as more readable.  Note that if we find subparts of the
  817.    character sequence which end with NUL (and which are shorter than
  818.    STRING_LIMIT) we output those using ASM_OUTPUT_LIMITED_STRING.  */
  819.  
  820. #undef ASM_OUTPUT_ASCII
  821. #define ASM_OUTPUT_ASCII(FILE, STR, LENGTH)                \
  822.   do                                    \
  823.     {                                    \
  824.       register unsigned char *_ascii_bytes = (unsigned char *) (STR);    \
  825.       register unsigned char *limit = _ascii_bytes + (LENGTH);        \
  826.       register unsigned bytes_in_chunk = 0;                \
  827.       for (; _ascii_bytes < limit; _ascii_bytes++)            \
  828.         {                                \
  829.       register unsigned char *p;                    \
  830.       if (bytes_in_chunk >= 60)                    \
  831.         {                                \
  832.           fprintf ((FILE), "\"\n");                    \
  833.           bytes_in_chunk = 0;                    \
  834.         }                                \
  835.       for (p = _ascii_bytes; p < limit && *p != '\0'; p++)        \
  836.         continue;                            \
  837.       if (p < limit && (p - _ascii_bytes) <= STRING_LIMIT)        \
  838.         {                                \
  839.           if (bytes_in_chunk > 0)                    \
  840.         {                            \
  841.           fprintf ((FILE), "\"\n");                \
  842.           bytes_in_chunk = 0;                    \
  843.         }                            \
  844.           ASM_OUTPUT_LIMITED_STRING ((FILE), _ascii_bytes);        \
  845.           _ascii_bytes = p;                        \
  846.         }                                \
  847.       else                                \
  848.         {                                \
  849.           register int escape;                    \
  850.           register unsigned ch;                    \
  851.           if (bytes_in_chunk == 0)                    \
  852.         fprintf ((FILE), "\t%s\t\"", ASCII_DATA_ASM_OP);    \
  853.           switch (escape = ESCAPES[ch = *_ascii_bytes])        \
  854.         {                            \
  855.         case 0:                            \
  856.           putc (ch, (FILE));                    \
  857.           bytes_in_chunk++;                    \
  858.           break;                        \
  859.         case 1:                            \
  860.           fprintf ((FILE), "\\%03o", ch);            \
  861.           bytes_in_chunk += 4;                    \
  862.           break;                        \
  863.         default:                        \
  864.           putc ('\\', (FILE));                    \
  865.           putc (escape, (FILE));                \
  866.           bytes_in_chunk += 2;                    \
  867.           break;                        \
  868.         }                            \
  869.         }                                \
  870.     }                                \
  871.       if (bytes_in_chunk > 0)                        \
  872.         fprintf ((FILE), "\"\n");                    \
  873.     }                                    \
  874.   while (0)
  875.  
  876. /* All SVR4 targets use the ELF object file format.  */
  877. #define OBJECT_FORMAT_ELF
  878.