home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / include / elf / sparc.h < prev   
C/C++ Source or Header  |  1996-02-19  |  2KB  |  74 lines

  1. /* SPARC ELF support for BFD.
  2.    Copyright (C) 1996 Free Software Foundation, Inc.
  3.  
  4.    By Doug Evans, Cygnus Support, <dje@cygnus.com>.
  5.  
  6. This file is part of BFD, the Binary File Descriptor library.
  7.  
  8. This program 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 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program 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 this program; if not, write to the Free Software
  20. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  21.  
  22. #ifndef _ELF_SPARC_H
  23. #define _ELF_SPARC_H
  24.  
  25. /* Processor specific flags for the ELF header e_flags field.  */
  26.  
  27. /* These are defined by Sun.  */
  28.  
  29. #define EF_SPARC_32PLUS_MASK    0xffff00    /* bits indicating V8+ type */
  30. #define EF_SPARC_32PLUS        0x000100    /* generic V8+ features */
  31. #define EF_SPARC_SUN_US1    0x000200    /* Sun UltraSPARC1 extensions */
  32.  
  33. /* Relocation types.  */
  34.  
  35. enum elf_sparc_reloc_type {
  36.     R_SPARC_NONE = 0,
  37.     R_SPARC_8, R_SPARC_16, R_SPARC_32,
  38.     R_SPARC_DISP8, R_SPARC_DISP16, R_SPARC_DISP32,
  39.     R_SPARC_WDISP30, R_SPARC_WDISP22,
  40.     R_SPARC_HI22, R_SPARC_22,
  41.     R_SPARC_13, R_SPARC_LO10,
  42.     R_SPARC_GOT10, R_SPARC_GOT13, R_SPARC_GOT22,
  43.     R_SPARC_PC10, R_SPARC_PC22,
  44.     R_SPARC_WPLT30,
  45.     R_SPARC_COPY,
  46.     R_SPARC_GLOB_DAT, R_SPARC_JMP_SLOT,
  47.     R_SPARC_RELATIVE,
  48.     R_SPARC_UA32,
  49.  
  50.     /* ??? These 6 relocs are new but not currently used.  For binary
  51.        compatility in the sparc64-elf toolchain, we leave them out.
  52.        A non-binary upward compatible change is expected for sparc64-elf.  */
  53. #ifndef SPARC64_OLD_RELOCS
  54.     /* ??? New relocs on the UltraSPARC.  Not sure what they're for yet.  */
  55.     R_SPARC_PLT32, R_SPARC_HIPLT22, R_SPARC_LOPLT10,
  56.     R_SPARC_PCPLT32, R_SPARC_PCPLT22, R_SPARC_PCPLT10,
  57. #endif
  58.  
  59.     /* v9 relocs */
  60.     R_SPARC_10, R_SPARC_11, R_SPARC_64,
  61.     R_SPARC_OLO10, R_SPARC_HH22, R_SPARC_HM10, R_SPARC_LM22,
  62.     R_SPARC_PC_HH22, R_SPARC_PC_HM10, R_SPARC_PC_LM22,
  63.     R_SPARC_WDISP16, R_SPARC_WDISP19,
  64.     R_SPARC_GLOB_JMP,
  65.     R_SPARC_7,
  66. #ifndef SPARC64_OLD_RELOCS
  67.     R_SPARC_5, R_SPARC_6,
  68. #endif
  69.  
  70.     R_SPARC_max
  71. };
  72.  
  73. #endif /* _ELF_SPARC_H */
  74.