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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [config/] [vax/] [vaxv.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
/* Definitions of target machine for GNU compiler.  VAX sysV version.
/* Definitions of target machine for GNU compiler.  VAX sysV version.
   Copyright (C) 1988, 1993, 1996, 2000, 2002, 2007 Free Software Foundation, Inc.
   Copyright (C) 1988, 1993, 1996, 2000, 2002, 2007 Free Software Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
the Free Software Foundation; either version 3, or (at your option)
any later version.
any later version.
 
 
GCC is distributed in the hope that it will be useful,
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public 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/>.  */
 
 
#define TARGET_OS_CPP_BUILTINS()                \
#define TARGET_OS_CPP_BUILTINS()                \
  do                                            \
  do                                            \
    {                                           \
    {                                           \
      builtin_define_std ("unix");              \
      builtin_define_std ("unix");              \
      builtin_assert ("system=svr3");           \
      builtin_assert ("system=svr3");           \
                                                \
                                                \
      builtin_define_std ("vax");               \
      builtin_define_std ("vax");               \
      if (TARGET_G_FLOAT)                       \
      if (TARGET_G_FLOAT)                       \
        builtin_define_std ("GFLOAT");          \
        builtin_define_std ("GFLOAT");          \
    }                                           \
    }                                           \
  while (0)
  while (0)
 
 
/* Output #ident as a .ident.  */
/* Output #ident as a .ident.  */
 
 
#define ASM_OUTPUT_IDENT(FILE, NAME) fprintf (FILE, "\t.ident \"%s\"\n", NAME);
#define ASM_OUTPUT_IDENT(FILE, NAME) fprintf (FILE, "\t.ident \"%s\"\n", NAME);
 
 
#undef DBX_DEBUGGING_INFO
#undef DBX_DEBUGGING_INFO
#define SDB_DEBUGGING_INFO 1
#define SDB_DEBUGGING_INFO 1
 
 
#undef LIB_SPEC
#undef LIB_SPEC
 
 
/* The .file command should always begin the output.  */
/* The .file command should always begin the output.  */
#define TARGET_ASM_FILE_START_FILE_DIRECTIVE true
#define TARGET_ASM_FILE_START_FILE_DIRECTIVE true
 
 
#undef ASM_OUTPUT_ALIGN
#undef ASM_OUTPUT_ALIGN
#define ASM_OUTPUT_ALIGN(FILE,LOG) \
#define ASM_OUTPUT_ALIGN(FILE,LOG) \
  fprintf(FILE, "\t.align %d\n", 1 << (LOG))
  fprintf(FILE, "\t.align %d\n", 1 << (LOG))
 
 
#undef ASM_OUTPUT_LOCAL
#undef ASM_OUTPUT_LOCAL
#define ASM_OUTPUT_LOCAL(FILE,NAME,SIZE,ROUNDED)        \
#define ASM_OUTPUT_LOCAL(FILE,NAME,SIZE,ROUNDED)        \
( switch_to_section (data_section),                     \
( switch_to_section (data_section),                     \
  assemble_name ((FILE), (NAME)),                       \
  assemble_name ((FILE), (NAME)),                       \
  fprintf ((FILE), ":\n\t.space %u\n", (int)(ROUNDED)))
  fprintf ((FILE), ":\n\t.space %u\n", (int)(ROUNDED)))
 
 
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN)                  \
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN)                  \
do {                                                    \
do {                                                    \
  const unsigned char *s = (const unsigned char *)(PTR);\
  const unsigned char *s = (const unsigned char *)(PTR);\
  size_t i, limit = (LEN);                              \
  size_t i, limit = (LEN);                              \
  for (i = 0; i < limit; s++, i++)               \
  for (i = 0; i < limit; s++, i++)               \
    {                                                   \
    {                                                   \
      if ((i % 8) == 0)                                  \
      if ((i % 8) == 0)                                  \
        fputs ("\n\t.byte\t", (FILE));                  \
        fputs ("\n\t.byte\t", (FILE));                  \
      fprintf ((FILE), "%s0x%x", (i%8?",":""), (unsigned)*s); \
      fprintf ((FILE), "%s0x%x", (i%8?",":""), (unsigned)*s); \
    }                                                   \
    }                                                   \
  fputs ("\n", (FILE));                                 \
  fputs ("\n", (FILE));                                 \
} while (0)
} while (0)
 
 

powered by: WebSVN 2.1.0

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