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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [gsyms.h] - Diff between revs 280 and 338

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

Rev 280 Rev 338
/* Copyright (C) 1992, 1996, 1997, 1998 Free Software Foundation, Inc.
/* Copyright (C) 1992, 1996, 1997, 1998 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 it under
GCC 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
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
Software Foundation; either version 3, or (at your option) any later
version.
version.
 
 
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
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/>.  */
 
 
/* For cross compilation, use the portable definitions from the COFF
/* For cross compilation, use the portable definitions from the COFF
   documentation.  */
   documentation.  */
 
 
#define __GNU_SYMS__
#define __GNU_SYMS__
 
 
enum sdb_storage_class
enum sdb_storage_class
{
{
  C_EFCN = -1,
  C_EFCN = -1,
  C_NULL = 0,
  C_NULL = 0,
  C_AUTO = 1,
  C_AUTO = 1,
  C_EXT = 2,
  C_EXT = 2,
  C_STAT = 3,
  C_STAT = 3,
  C_REG = 4,
  C_REG = 4,
  C_EXTDEF = 5,
  C_EXTDEF = 5,
  C_LABEL = 6,
  C_LABEL = 6,
  C_ULABEL = 7,
  C_ULABEL = 7,
  C_MOS = 8,
  C_MOS = 8,
  C_ARG = 9,
  C_ARG = 9,
  C_STRTAG = 10,
  C_STRTAG = 10,
  C_MOU = 11,
  C_MOU = 11,
  C_UNTAG = 12,
  C_UNTAG = 12,
  C_TPDEF = 13,
  C_TPDEF = 13,
  C_USTATIC = 14,
  C_USTATIC = 14,
  C_ENTAG = 15,
  C_ENTAG = 15,
  C_MOE = 16,
  C_MOE = 16,
  C_REGPARM = 17,
  C_REGPARM = 17,
  C_FIELD = 18,
  C_FIELD = 18,
 
 
  C_BLOCK = 100,
  C_BLOCK = 100,
  C_FCN = 101,
  C_FCN = 101,
  C_EOS = 102,
  C_EOS = 102,
  C_FILE = 103,
  C_FILE = 103,
  C_LINE = 104,
  C_LINE = 104,
  C_ALIAS = 105,
  C_ALIAS = 105,
  C_HIDDEN = 106
  C_HIDDEN = 106
};
};
 
 
enum sdb_type
enum sdb_type
{
{
  T_NULL = 0,
  T_NULL = 0,
  T_ARG = 1,
  T_ARG = 1,
  T_VOID = 1,
  T_VOID = 1,
  T_CHAR = 2,
  T_CHAR = 2,
  T_SHORT = 3,
  T_SHORT = 3,
  T_INT = 4,
  T_INT = 4,
  T_LONG = 5,
  T_LONG = 5,
  T_FLOAT = 6,
  T_FLOAT = 6,
  T_DOUBLE = 7,
  T_DOUBLE = 7,
  T_STRUCT = 8,
  T_STRUCT = 8,
  T_UNION = 9,
  T_UNION = 9,
  T_ENUM = 10,
  T_ENUM = 10,
  T_MOE = 11,
  T_MOE = 11,
  T_UCHAR = 12,
  T_UCHAR = 12,
  T_USHORT = 13,
  T_USHORT = 13,
  T_UINT = 14,
  T_UINT = 14,
  T_ULONG = 15
  T_ULONG = 15
#ifdef EXTENDED_SDB_BASIC_TYPES
#ifdef EXTENDED_SDB_BASIC_TYPES
  , T_LNGDBL = 16
  , T_LNGDBL = 16
#endif
#endif
};
};
 
 
enum sdb_type_class
enum sdb_type_class
{
{
  DT_NON = 0,
  DT_NON = 0,
  DT_PTR = 1,
  DT_PTR = 1,
  DT_FCN = 2,
  DT_FCN = 2,
  DT_ARY = 3
  DT_ARY = 3
};
};
 
 
enum sdb_masks
enum sdb_masks
{
{
#ifdef EXTENDED_SDB_BASIC_TYPES
#ifdef EXTENDED_SDB_BASIC_TYPES
  N_BTMASK = 0x1f,
  N_BTMASK = 0x1f,
  N_TMASK = 0x60,
  N_TMASK = 0x60,
  N_TMASK1 = 0x300,
  N_TMASK1 = 0x300,
  N_TMASK2 = 0x360,
  N_TMASK2 = 0x360,
  N_BTSHFT = 5,
  N_BTSHFT = 5,
#else
#else
  N_BTMASK = 017,
  N_BTMASK = 017,
  N_TMASK = 060,
  N_TMASK = 060,
  N_TMASK1 = 0300,
  N_TMASK1 = 0300,
  N_TMASK2 = 0360,
  N_TMASK2 = 0360,
  N_BTSHFT = 4,
  N_BTSHFT = 4,
#endif
#endif
  N_TSHIFT = 2
  N_TSHIFT = 2
};
};
 
 

powered by: WebSVN 2.1.0

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