[patch]: NetBSD sparc & sparc64 compiler descriptions.

matthew green mrg@cygnus.com
Sun Dec 23 03:10:00 GMT 2001



hi folks,


this is an updated set of descriptions for netbsd/sparc & netbsd/sparc64.
changes from the previous version mostly are to fully use the new gcc
#include style (ie, list them all in config.gcc).


i've tested the 32-bit version several times over the past few months
and it's worked pretty well each time.  64-bit continues to be a problem..


could someone commit these ?  thanks,


.mrg.



2001-12-23  matthew green  <mrg@eterna.com.au>

	* config.gcc (sparc-*-netbsd*elf*): New target.
	(sparc64-*-netbsd*): New target.
	* config/sparc/netbsd-elf-common.h: New file. Common parts of
	NetBSD/sparc & NetBSD/sparc64 compiler.
	* config/sparc/netbsd-elf.h: New file. Description for sparc-netbsdelf.
	* config/sparc/netbsd64.h: New file. Description for sparc64-netbsd.


Index: gcc/config.gcc
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config.gcc,v
retrieving revision 1.136
diff -p -r1.136 config.gcc
*** config.gcc	2001/12/19 17:59:05	1.136
--- config.gcc	2001/12/23 02:43:10
*************** sparc-*-aout*)
*** 2944,2949 ****
--- 2944,2953 ----
  	tmake_file=sparc/t-sparcbare
  	tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h"
  	;;
+ sparc-*-netbsd*elf*)
+ 	tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h sparc/netbsd-elf.h sparc/netbsd-elf-common.h"
+ 	tmake_file=t-netbsd
+         ;;
  sparc-*-netbsd*)
  	tm_file="${tm_file} sparc/aout.h netbsd.h sparc/netbsd.h"
  	tmake_file=t-netbsd
*************** sparc64-*-linux*)		# 64-bit Sparc's runn
*** 3200,3205 ****
--- 3204,3213 ----
  		thread_file='posix'
  	fi
  	float_format=sparc
+ 	;;
+ sparc64-*-netbsd*)
+ 	tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h sparc/netbsd64.h sparc/netbsd-elf-common.h"
+ 	tmake_file=t-netbsd
  	;;
  strongarm-*-elf*)
  	tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"

--- start of netbsd-elf-common.h ---
/* Common definitions of target machine for GNU compiler, for
   ELF on NetBSD/sparc and NetBSD/sparc64.
   Copyright (C) 2001 Free Software Foundation, Inc.
   Contributed by Matthew Green (mrg@eterna.com.au).

This file is part of GNU CC.

GNU CC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING.  If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */

/* Fix up CPP_SPEC.  */
#undef CPP_SPEC
#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} \
%(cpp_cpu) %(cpp_arch) %(cpp_endian) %(cpp_subtarget)"

#undef CPP_PREDEFINES
#define CPP_PREDEFINES "-D__sparc__ -D__NetBSD__ -D__ELF__ \
-Asystem=unix -Asystem=NetBSD"

#undef SIZE_TYPE
#define SIZE_TYPE "long unsigned int"

#undef PTRDIFF_TYPE
#define PTRDIFF_TYPE "long int"

#undef WCHAR_TYPE
#define WCHAR_TYPE "int"

#undef WCHAR_TYPE_SIZE
#define WCHAR_TYPE_SIZE 32

#undef WCHAR_UNSIGNED
#define WCHAR_UNSIGNED 0

#undef PREFERRED_DEBUGGING_TYPE
#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG

/* This is the char to use for continuation (in case we need to turn
   continuation back on).  */
#undef DBX_CONTIN_CHAR
#define DBX_CONTIN_CHAR '?'

#undef DBX_REGISTER_NUMBER
#define DBX_REGISTER_NUMBER(REGNO) \
  (TARGET_FLAT && REGNO == FRAME_POINTER_REGNUM ? 31 : REGNO)

/* This is how to output a definition of an internal numbered label where
   PREFIX is the class of label and NUM is the number within the class.  */

#undef  ASM_OUTPUT_INTERNAL_LABEL
#define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM)	\
  fprintf (FILE, ".L%s%d:\n", PREFIX, NUM)

/* This is how to output a reference to an internal numbered label where
   PREFIX is the class of label and NUM is the number within the class.  */

#undef  ASM_OUTPUT_INTERNAL_LABELREF
#define ASM_OUTPUT_INTERNAL_LABELREF(FILE,PREFIX,NUM)	\
  fprintf (FILE, ".L%s%d", PREFIX, NUM)

/* This is how to store into the string LABEL
   the symbol_ref name of an internal numbered label where
   PREFIX is the class of label and NUM is the number within the class.
   This is suitable for output with `assemble_name'.  */

#undef  ASM_GENERATE_INTERNAL_LABEL
#define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM)	\
  sprintf ((LABEL), "*.L%s%ld", (PREFIX), (long)(NUM))

#undef USER_LABEL_PREFIX
#define USER_LABEL_PREFIX ""

#undef ASM_SPEC
#define ASM_SPEC "%{fpic:-K PIC} %{fPIC:-K PIC} %{V} %{v:%{!V:-V}} \
%{mlittle-endian:-EL} \
%(asm_cpu) %(asm_arch) \
"
  
/* Provide a LIB_SPEC appropriate for NetBSD.  Just select the appropriate
   libc, depending on whether we're doing profiling; if `-posix' is specified,
   link against the appropriate libposix first.  */
  
#undef LIB_SPEC
#define LIB_SPEC							\
  "%{posix:%{!p:%{!pg:-lposix}}%{p:-lposix_p}%{pg:-lposix_p}}		\
 %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"

#undef STDC_0_IN_SYSTEM_HEADERS

/* XXX Redefine this; <sparc/sparc.h> mucks with it. */
#undef TARGET_VERSION
#define TARGET_VERSION fprintf (stderr, " (%s)", TARGET_NAME);

/*
 * Clean up afterwards generic SPARC ELF configuration.
 */

#undef MULDI3_LIBCALL
#undef DIVDI3_LIBCALL
#undef UDIVDI3_LIBCALL
#undef MODDI3_LIBCALL
#undef UMODDI3_LIBCALL
#undef INIT_SUBTARGET_OPTABS  
#define INIT_SUBTARGET_OPTABS  

/* Below here exists the merged NetBSD/sparc & NetBSD/sparc64 compiler
   description, allowing one to build 32 bit or 64 bit applications
   on either.  We define the sparc & sparc64 versions of things, and then
   based on SPARC_BI_ARCH, DEFAULT_ARCH32_P, and TARGET_CPU_DEFAULT,
   we choose the correct version.  */

/* Name the port(s).  */
#define TARGET_NAME64     "sparc64-netbsd"
#define TARGET_NAME32     "sparc-netbsdelf"

#undef CPP_SUBTARGET_SPEC64
#define CPP_SUBTARGET_SPEC64 "-D__sparc64__ -D__arch64__ -D__sparc_v9__"

#undef CPP_SUBTARGET_SPEC32
#define CPP_SUBTARGET_SPEC32 "-D__sparc"

#undef LINK_ARCH_SPEC64
#define LINK_ARCH_SPEC64 \
 "-m elf64_sparc \
  -Y P,/usr/lib/sparcv9 \
  %{assert*} %{R*} %{V} %{v:%{!V:-V}} \
  %{shared:-shared} \
  %{!shared: \
    -dp \
    %{!nostdlib:%{!r*:%{!e*:-e __start}}} \
    %{!static: \
      -dy %{rdynamic:-export-dynamic} \
      %{!dynamic-linker:-dynamic-linker /usr/libexec/sparcv9/ld.elf_so}} \
    %{static:-static}}"

#undef LINK_ARCH_SPEC32
#define LINK_ARCH_SPEC32 \
 "-m elf32_sparc \
  %{assert*} %{R*} %{V} %{v:%{!V:-V}} \
  %{shared:-shared} \
  %{!shared: \
    -dp \
    %{!nostdlib:%{!r*:%{!e*:-e __start}}} \
    %{!static: \
      -dy %{rdynamic:-export-dynamic} \
      %{!dynamic-linker:-dynamic-linker /usr/libexec/ld.elf_so}} \
    %{static:-static}}"

#undef STARTFILE_SPEC64
#define STARTFILE_SPEC64 \
 "%{!shared: \
     %{pg:/usr/lib/sparcv9/gcrt0%O%s} \
     %{!pg: \
        %{p:/usr/lib/sparcv9/gcrt0%O%s} \
        %{!p:/usr/lib/sparcv9/crt0%O%s}}} \
   %{!shared:/usr/lib/sparcv9/crtbegin%O%s} %{shared:/usr/lib/sparcv9/crtbeginS%O%s}"

#undef STARTFILE_SPEC32
#define STARTFILE_SPEC32 \
 "%{!shared: \
     %{pg:gcrt0%O%s} \
     %{!pg: \
        %{p:crt0%O%s} \
        %{!p:crt0%O%s}}} \
   %{!shared:crtbegin%O%s} %{shared:crtbeginS%O%s}"

#undef ENDFILE_SPEC64
#define ENDFILE_SPEC64 \
 "%{!shared:/usr/lib/sparcv9/crtend%O%s} %{shared:/usr/lib/sparcv9/crtendS%O%s}"

#undef ENDFILE_SPEC32
#define ENDFILE_SPEC32 \
 "%{!shared:crtend%O%s} %{shared:crtendS%O%s}"

#if TARGET_CPU_DEFAULT == TARGET_CPU_v9 || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc
/* A 64 bit v9 compiler with stack-bias,
   in a Medium/Low code model environment.  */

#undef TARGET_DEFAULT
#define TARGET_DEFAULT \
  (MASK_V9 + MASK_PTR64 + MASK_64BIT /* + MASK_HARD_QUAD */ \
 + MASK_STACK_BIAS + MASK_APP_REGS + MASK_EPILOGUE + MASK_FPU + MASK_LONG_DOUBLE_128)
#endif

#ifdef SPARC_BI_ARCH

#undef LONG_DOUBLE_TYPE_SIZE
#define LONG_DOUBLE_TYPE_SIZE (TARGET_LONG_DOUBLE_128 ? 128 : 64)

#undef MAX_LONG_DOUBLE_TYPE_SIZE
#define MAX_LONG_DOUBLE_TYPE_SIZE 128

#if defined(__arch64__) || defined(__LONG_DOUBLE_128__)
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 128
#else
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
#endif

#undef STARTFILE_SPEC
#if DEFAULT_ARCH32_P
#define STARTFILE_SPEC "\
%{m32:" STARTFILE_SPEC32 "} \
%{m64:" STARTFILE_SPEC64 "} \
%{!m32:%{!m64:" STARTFILE_SPEC32 "}}"
#else
#define STARTFILE_SPEC "\
%{m32:" STARTFILE_SPEC32 "} \
%{m64:" STARTFILE_SPEC64 "} \
%{!m32:%{!m64:" STARTFILE_SPEC64 "}}"
#endif

#undef ENDFILE_SPEC
#if DEFAULT_ARCH32_P
#define ENDFILE_SPEC "\
%{m32:" ENDFILE_SPEC32 "} \
%{m64:" ENDFILE_SPEC64 "} \
%{!m32:%{!m64:" ENDFILE_SPEC32 "}}"
#else
#define ENDFILE_SPEC "\
%{m32:" ENDFILE_SPEC32 "} \
%{m64:" ENDFILE_SPEC64 "} \
%{!m32:%{!m64:" ENDFILE_SPEC64 "}}"
#endif

#undef SUBTARGET_EXTRA_SPECS
#define SUBTARGET_EXTRA_SPECS \
  { "link_arch32",       LINK_ARCH_SPEC32 },              \
  { "link_arch64",       LINK_ARCH_SPEC64 },              \
  { "link_arch_default", LINK_ARCH_DEFAULT_SPEC },        \
  { "link_arch",         LINK_ARCH_SPEC },

#undef LINK_ARCH64_SPEC
#define LINK_ARCH64_SPEC LINK_ARCH_SPEC64

#define LINK_ARCH_SPEC "\
%{m32:%(link_arch32)} \
%{m64:%(link_arch64)} \
%{!m32:%{!m64:%(link_arch_default)}}"

#define LINK_ARCH_DEFAULT_SPEC \
(DEFAULT_ARCH32_P ? LINK_ARCH_SPEC32 : LINK_ARCH_SPEC64)

#undef  LINK_SPEC
#define LINK_SPEC "\
%(link_arch) \
%{mlittle-endian:-EL} \
"

#undef  CC1_SPEC
#if DEFAULT_ARCH32_P
#define CC1_SPEC "\
%{sun4:} %{target:} \
%{mcypress:-mcpu=cypress} \
%{msparclite:-mcpu=sparclite} %{mf930:-mcpu=f930} %{mf934:-mcpu=f934} \
%{mv8:-mcpu=v8} %{msupersparc:-mcpu=supersparc} \
%{m64:-mptr64 -mcpu=ultrasparc -mstack-bias %{p*:-mcmodel=medlow} \
%{p:-mcmodel=medlow} } \
"
#else
#define CC1_SPEC "\
%{sun4:} %{target:} \
%{mcypress:-mcpu=cypress} \
%{msparclite:-mcpu=sparclite} %{mf930:-mcpu=f930} %{mf934:-mcpu=f934} \
%{mv8:-mcpu=v8} %{msupersparc:-mcpu=supersparc} \
%{m32:-mptr32 -mcpu=cypress -mno-stack-bias} \
%{p*:-mcmodel=medlow} \
"
#endif

#if DEFAULT_ARCH32_P
#define MULTILIB_DEFAULTS { "m32" }
#else
#define MULTILIB_DEFAULTS { "m64" }
#endif

#undef CPP_SUBTARGET_SPEC
#define CPP_SUBTARGET_SPEC \
(DEFAULT_ARCH32_P ? "\
%{m64:" CPP_SUBTARGET_SPEC64 "}%{!m64:" CPP_SUBTARGET_SPEC32 "} \
" : "\
%{!m32:" CPP_SUBTARGET_SPEC64 "}%{m32:" CPP_SUBTARGET_SPEC32 "} \
")

/* Name the port. */
#undef TARGET_NAME
#define TARGET_NAME     (DEFAULT_ARCH32_P ? TARGET_NAME32 : TARGET_NAME64)

#else	/* SPARC_BI_ARCH */

# if TARGET_CPU_DEFAULT == TARGET_CPU_v9 || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc

/* A 64-bit only compiler.  */

#undef LONG_DOUBLE_TYPE_SIZE
#define LONG_DOUBLE_TYPE_SIZE 128

#undef MAX_LONG_DOUBLE_TYPE_SIZE
#define MAX_LONG_DOUBLE_TYPE_SIZE 128

#undef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 128

#undef LINK_SPEC
#define LINK_SPEC LINK_ARCH_SPEC64

#undef STARTFILE_SPEC
#define STARTFILE_SPEC STARTFILE_SPEC64

#undef ENDFILE_SPEC
#define ENDFILE_SPEC ENDFILE_SPEC64

#undef CPP_SUBTARGET_SPEC
#define CPP_SUBTARGET_SPEC CPP_SUBTARGET_SPEC64

#undef TARGET_NAME
#define TARGET_NAME     TARGET_NAME64

# else	/* TARGET_CPU_DEFAULT == TARGET_CPU_v9 || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc */

/* A 32-bit only compiler.  */

#undef LONG_DOUBLE_TYPE_SIZE
#define LONG_DOUBLE_TYPE_SIZE 64

#undef MAX_LONG_DOUBLE_TYPE_SIZE
#define MAX_LONG_DOUBLE_TYPE_SIZE 64

#undef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
#define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64

#undef LINK_SPEC
#define LINK_SPEC LINK_ARCH_SPEC32

#undef STARTFILE_SPEC
#define STARTFILE_SPEC STARTFILE_SPEC32

#undef ENDFILE_SPEC
#define ENDFILE_SPEC ENDFILE_SPEC32

#undef CPP_SUBTARGET_SPEC
#define CPP_SUBTARGET_SPEC CPP_SUBTARGET_SPEC32

#undef TARGET_NAME
#define TARGET_NAME     TARGET_NAME32

# endif	/* TARGET_CPU_DEFAULT == TARGET_CPU_v9 || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc */

#endif  /* SPARC_BI_ARCH */
--- end of netbsd-elf-common.h ---

--- start of netbsd-elf.h ---
/* Definitions of target machine for GNU compiler, for NetBSD/sparc (ELF).
   Copyright (C) 2001 Free Software Foundation, Inc.
   Contributed by Matthew Green (mrg@eterna.com.au).

This file is part of GNU CC.

GNU CC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING.  If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */

/* Let us output 64 bit code as well, but not yet.  */
/* #define SPARC_BI_ARCH */
--- end of netbsd-elf.h ---

--- start of netbsd64.h ---
/* Definitions of target machine for GNU compiler, for NetBSD/sparc64.
   Copyright (C) 2001 Free Software Foundation, Inc.
   Contributed by Matthew Green (mrg@eterna.com.au).

This file is part of GNU CC.

GNU CC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING.  If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */

/* Let us output 32 bit code as well.  */
#define SPARC_BI_ARCH
--- end of netbsd64.h ---



More information about the Gcc-patches mailing list