newlib/include/elf/spu.h
Alan Modra a7af95ad76 include/elf/
* spu.h (R_SPU_PPU32, R_SPU_PPU64): Define.
bfd/
	* reloc.c (BFD_RELOC_SPU_PPU32, BFD_RELOC_SPU_PPU64): Define.
	* elf-bfd.h (struct elf_backend_data): Change return type of
	elf_backend_relocate_section to int.
	* elf32-spu.c (elf_howto_table): Add howtos for R_SPU_PPU32 and
	R_SPU_PPU64.
	(spu_elf_bfd_to_reloc_type): Convert new relocs.
	(spu_elf_count_relocs): New function.
	(elf_backend_count_relocs): Define.
	(spu_elf_relocate_section): Arrange to emit R_SPU_PPU32 and
	R_SPU_PPU64 relocs.
	* elflink.c (elf_link_input_bfd): Emit relocs if relocate_section
	returns 2.
	* bfd-in2.h: Regenerate.
	* libbfd.h: Regenerate.
gas/
	* config/tc-spu.c (md_pseudo_table): Add int, long, quad.  Call
	spu_cons for word.
	(md_assemble): Tidy use of insn.flag.
	(get_imm): Likewise.  Handle uppercase input too.
	(spu_cons): New function.
	* config/tc-spu.h (tc_fix_adjustable): Don't adjust SPU_PPU relocs.
	(TC_FORCE_RELOCATION): Don't resolve them either.
binutils/
	* embedspu.sh (find_prog): Prefer prog in same dir as embedspu
	over one found on the users path.
	(main): Generate .reloc for each R_SPU_PPU* reloc.
2007-05-11 03:10:10 +00:00

60 lines
2.0 KiB
C

/* SPU ELF support for BFD.
Copyright 2006, 2007 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
This program 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 of the License, or
(at your option) any later version.
This program 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 this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
#ifndef _ELF_SPU_H
#define _ELF_SPU_H
#include "elf/reloc-macros.h"
/* elf32-spu.c depends on these being consecutive. */
START_RELOC_NUMBERS (elf_spu_reloc_type)
RELOC_NUMBER (R_SPU_NONE, 0)
RELOC_NUMBER (R_SPU_ADDR10, 1)
RELOC_NUMBER (R_SPU_ADDR16, 2)
RELOC_NUMBER (R_SPU_ADDR16_HI, 3)
RELOC_NUMBER (R_SPU_ADDR16_LO, 4)
RELOC_NUMBER (R_SPU_ADDR18, 5)
RELOC_NUMBER (R_SPU_ADDR32, 6)
RELOC_NUMBER (R_SPU_REL16, 7)
RELOC_NUMBER (R_SPU_ADDR7, 8)
RELOC_NUMBER (R_SPU_REL9, 9)
RELOC_NUMBER (R_SPU_REL9I, 10)
RELOC_NUMBER (R_SPU_ADDR10I, 11)
RELOC_NUMBER (R_SPU_ADDR16I, 12)
RELOC_NUMBER (R_SPU_REL32, 13)
RELOC_NUMBER (R_SPU_PPU32, 14)
RELOC_NUMBER (R_SPU_PPU64, 15)
END_RELOC_NUMBERS (R_SPU_max)
/* Program header extensions */
/* Mark a PT_LOAD segment as containing an overlay which should not
initially be loaded. */
#define PF_OVERLAY (1 << 27)
/* SPU Dynamic Object Information. */
#define PT_SPU_INFO 0x70000000
/* SPU plugin information */
#define SPU_PLUGIN_NAME "SPUNAME"
#define SPU_PTNOTE_SPUNAME ".note.spu_name"
#endif /* _ELF_SPU_H */