OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [config/] [arm/] [netbsd.h] - Diff between revs 38 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 38 Rev 154
/* NetBSD/arm a.out version.
/* NetBSD/arm a.out version.
   Copyright (C) 1993, 1994, 1997, 1998, 2003, 2004, 2005, 2007
   Copyright (C) 1993, 1994, 1997, 1998, 2003, 2004, 2005, 2007
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
   Contributed by Mark Brinicombe (amb@physig.ph.kcl.ac.uk)
   Contributed by Mark Brinicombe (amb@physig.ph.kcl.ac.uk)
 
 
   This file is part of GCC.
   This file is part of GCC.
 
 
   GCC is free software; you can redistribute it and/or modify it
   GCC is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published
   under the terms of the GNU General Public License as published
   by the Free Software Foundation; either version 3, or (at your
   by the Free Software Foundation; either version 3, or (at your
   option) any later version.
   option) any later version.
 
 
   GCC is distributed in the hope that it will be useful, but WITHOUT
   GCC is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   License for more details.
   License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with GCC; see the file COPYING3.  If not see
   along with GCC; see the file COPYING3.  If not see
   <http://www.gnu.org/licenses/>.  */
   <http://www.gnu.org/licenses/>.  */
 
 
/* Run-time Target Specification.  */
/* Run-time Target Specification.  */
#undef  TARGET_VERSION
#undef  TARGET_VERSION
#define TARGET_VERSION fputs (" (ARM/NetBSD)", stderr);
#define TARGET_VERSION fputs (" (ARM/NetBSD)", stderr);
 
 
/* Unsigned chars produces much better code than signed.  */
/* Unsigned chars produces much better code than signed.  */
#define DEFAULT_SIGNED_CHAR  0
#define DEFAULT_SIGNED_CHAR  0
 
 
/* Since we always use GAS as our assembler we support stabs.  */
/* Since we always use GAS as our assembler we support stabs.  */
#define DBX_DEBUGGING_INFO 1
#define DBX_DEBUGGING_INFO 1
 
 
/*#undef ASM_DECLARE_FUNCTION_NAME*/
/*#undef ASM_DECLARE_FUNCTION_NAME*/
 
 
/* ARM6 family default cpu.  */
/* ARM6 family default cpu.  */
#define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm6
#define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm6
 
 
#undef TARGET_DEFAULT
#undef TARGET_DEFAULT
#define TARGET_DEFAULT (MASK_APCS_FRAME)
#define TARGET_DEFAULT (MASK_APCS_FRAME)
 
 
/* Some defines for CPP.
/* Some defines for CPP.
   arm32 is the NetBSD port name, so we always define arm32 and __arm32__.  */
   arm32 is the NetBSD port name, so we always define arm32 and __arm32__.  */
#define TARGET_OS_CPP_BUILTINS()                \
#define TARGET_OS_CPP_BUILTINS()                \
    do {                                        \
    do {                                        \
        NETBSD_OS_CPP_BUILTINS_AOUT();          \
        NETBSD_OS_CPP_BUILTINS_AOUT();          \
        builtin_define_std ("arm32");           \
        builtin_define_std ("arm32");           \
        builtin_define_std ("unix");            \
        builtin_define_std ("unix");            \
        builtin_define_std ("riscbsd");         \
        builtin_define_std ("riscbsd");         \
    } while (0)
    } while (0)
 
 
#undef SUBTARGET_EXTRA_SPECS
#undef SUBTARGET_EXTRA_SPECS
#define SUBTARGET_EXTRA_SPECS \
#define SUBTARGET_EXTRA_SPECS \
  { "netbsd_cpp_spec",  NETBSD_CPP_SPEC }, \
  { "netbsd_cpp_spec",  NETBSD_CPP_SPEC }, \
  { "netbsd_link_spec", NETBSD_LINK_SPEC_AOUT },
  { "netbsd_link_spec", NETBSD_LINK_SPEC_AOUT },
 
 
#undef CPP_SPEC
#undef CPP_SPEC
#define CPP_SPEC "\
#define CPP_SPEC "\
%(cpp_cpu_arch) %(cpp_float) %(cpp_endian) %(netbsd_cpp_spec) \
%(cpp_cpu_arch) %(cpp_float) %(cpp_endian) %(netbsd_cpp_spec) \
"
"
 
 
/* Because TARGET_DEFAULT sets MASK_SOFT_FLOAT */
/* Because TARGET_DEFAULT sets MASK_SOFT_FLOAT */
#undef CPP_FLOAT_DEFAULT_SPEC
#undef CPP_FLOAT_DEFAULT_SPEC
#define CPP_FLOAT_DEFAULT_SPEC "-D__SOFTFP__"
#define CPP_FLOAT_DEFAULT_SPEC "-D__SOFTFP__"
 
 
/* Pass -X to the linker so that it will strip symbols starting with 'L' */
/* Pass -X to the linker so that it will strip symbols starting with 'L' */
#undef LINK_SPEC
#undef LINK_SPEC
#define LINK_SPEC "-X %(netbsd_link_spec)"
#define LINK_SPEC "-X %(netbsd_link_spec)"
 
 
#undef SIZE_TYPE
#undef SIZE_TYPE
#define SIZE_TYPE "unsigned int"
#define SIZE_TYPE "unsigned int"
 
 
#undef PTRDIFF_TYPE
#undef PTRDIFF_TYPE
#define PTRDIFF_TYPE "int"
#define PTRDIFF_TYPE "int"
 
 
#define HANDLE_SYSV_PRAGMA 1
#define HANDLE_SYSV_PRAGMA 1
 
 
/* We don't have any limit on the length as out debugger is GDB.  */
/* We don't have any limit on the length as out debugger is GDB.  */
#undef DBX_CONTIN_LENGTH
#undef DBX_CONTIN_LENGTH
 
 
/* NetBSD does its profiling differently to the Acorn compiler. We
/* NetBSD does its profiling differently to the Acorn compiler. We
   don't need a word following the mcount call; and to skip it
   don't need a word following the mcount call; and to skip it
   requires either an assembly stub or use of fomit-frame-pointer when
   requires either an assembly stub or use of fomit-frame-pointer when
   compiling the profiling functions.  Since we break Acorn CC
   compiling the profiling functions.  Since we break Acorn CC
   compatibility below a little more won't hurt.  */
   compatibility below a little more won't hurt.  */
 
 
#undef  ARM_FUNCTION_PROFILER
#undef  ARM_FUNCTION_PROFILER
#define ARM_FUNCTION_PROFILER(STREAM,LABELNO)                               \
#define ARM_FUNCTION_PROFILER(STREAM,LABELNO)                               \
{                                                                           \
{                                                                           \
  fprintf(STREAM, "\tmov\t%sip, %slr\n", REGISTER_PREFIX, REGISTER_PREFIX); \
  fprintf(STREAM, "\tmov\t%sip, %slr\n", REGISTER_PREFIX, REGISTER_PREFIX); \
  fprintf(STREAM, "\tbl\tmcount\n");                                        \
  fprintf(STREAM, "\tbl\tmcount\n");                                        \
}
}
 
 
/* On the ARM `@' introduces a comment, so we must use something else
/* On the ARM `@' introduces a comment, so we must use something else
   for .type directives.  */
   for .type directives.  */
#undef TYPE_OPERAND_FMT
#undef TYPE_OPERAND_FMT
#define TYPE_OPERAND_FMT "%%%s"
#define TYPE_OPERAND_FMT "%%%s"
 
 
/* NetBSD uses the old PCC style aggregate returning conventions.  */
/* NetBSD uses the old PCC style aggregate returning conventions.  */
#undef DEFAULT_PCC_STRUCT_RETURN
#undef DEFAULT_PCC_STRUCT_RETURN
#define DEFAULT_PCC_STRUCT_RETURN 1
#define DEFAULT_PCC_STRUCT_RETURN 1
 
 
/* Although not normally relevant (since by default, all aggregates
/* Although not normally relevant (since by default, all aggregates
   are returned in memory) compiling some parts of libc requires
   are returned in memory) compiling some parts of libc requires
   non-APCS style struct returns.  */
   non-APCS style struct returns.  */
#undef RETURN_IN_MEMORY
#undef RETURN_IN_MEMORY
 
 
/* VERY BIG NOTE : Change of structure alignment for RiscBSD.
/* VERY BIG NOTE : Change of structure alignment for RiscBSD.
   There are consequences you should be aware of...
   There are consequences you should be aware of...
 
 
   Normally GCC/arm uses a structure alignment of 32 for compatibility
   Normally GCC/arm uses a structure alignment of 32 for compatibility
   with armcc.  This means that structures are padded to a word
   with armcc.  This means that structures are padded to a word
   boundary.  However this causes problems with bugged NetBSD kernel
   boundary.  However this causes problems with bugged NetBSD kernel
   code (possibly userland code as well - I have not checked every
   code (possibly userland code as well - I have not checked every
   binary).  The nature of this bugged code is to rely on sizeof()
   binary).  The nature of this bugged code is to rely on sizeof()
   returning the correct size of various structures rounded to the
   returning the correct size of various structures rounded to the
   nearest byte (SCSI and ether code are two examples, the vm system
   nearest byte (SCSI and ether code are two examples, the vm system
   is another).  This code breaks when the structure alignment is 32
   is another).  This code breaks when the structure alignment is 32
   as sizeof() will report a word=rounded size.  By changing the
   as sizeof() will report a word=rounded size.  By changing the
   structure alignment to 8. GCC will conform to what is expected by
   structure alignment to 8. GCC will conform to what is expected by
   NetBSD.
   NetBSD.
 
 
   This has several side effects that should be considered.
   This has several side effects that should be considered.
   1. Structures will only be aligned to the size of the largest member.
   1. Structures will only be aligned to the size of the largest member.
      i.e. structures containing only bytes will be byte aligned.
      i.e. structures containing only bytes will be byte aligned.
           structures containing shorts will be half word aligned.
           structures containing shorts will be half word aligned.
           structures containing ints will be word aligned.
           structures containing ints will be word aligned.
 
 
      This means structures should be padded to a word boundary if
      This means structures should be padded to a word boundary if
      alignment of 32 is required for byte structures etc.
      alignment of 32 is required for byte structures etc.
 
 
   2. A potential performance penalty may exist if strings are no longer
   2. A potential performance penalty may exist if strings are no longer
      word aligned.  GCC will not be able to use word load/stores to copy
      word aligned.  GCC will not be able to use word load/stores to copy
      short strings.
      short strings.
 
 
   This modification is not encouraged but with the present state of the
   This modification is not encouraged but with the present state of the
   NetBSD source tree it is currently the only solution that meets the
   NetBSD source tree it is currently the only solution that meets the
   requirements.  */
   requirements.  */
#undef  DEFAULT_STRUCTURE_SIZE_BOUNDARY
#undef  DEFAULT_STRUCTURE_SIZE_BOUNDARY
#define DEFAULT_STRUCTURE_SIZE_BOUNDARY 8
#define DEFAULT_STRUCTURE_SIZE_BOUNDARY 8
 
 
/* Clear the instruction cache from `BEG' to `END'.  This makes a
/* Clear the instruction cache from `BEG' to `END'.  This makes a
   call to the ARM32_SYNC_ICACHE architecture specific syscall.  */
   call to the ARM32_SYNC_ICACHE architecture specific syscall.  */
#define CLEAR_INSN_CACHE(BEG, END)                                     \
#define CLEAR_INSN_CACHE(BEG, END)                                     \
{                                                                      \
{                                                                      \
  extern int sysarch(int number, void *args);                          \
  extern int sysarch(int number, void *args);                          \
  struct {                                                             \
  struct {                                                             \
    unsigned int  addr;                                                \
    unsigned int  addr;                                                \
    int           len;                                                 \
    int           len;                                                 \
  } s;                                                                 \
  } s;                                                                 \
  s.addr = (unsigned int)(BEG);                                        \
  s.addr = (unsigned int)(BEG);                                        \
  s.len = (END) - (BEG);                                               \
  s.len = (END) - (BEG);                                               \
  (void)sysarch(0, &s);                                                \
  (void)sysarch(0, &s);                                                \
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.