summaryrefslogtreecommitdiff
path: root/bfd/elf32-spu.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2008-01-28 05:59:24 +0000
committerAlan Modra <amodra@bigpond.net.au>2008-01-28 05:59:24 +0000
commit4867d6e0a0e5aec1ec81247f37eea3b7dd93ad55 (patch)
tree64293f2eb1f0e530af4929e3b7cd6d5821c0f85f /bfd/elf32-spu.h
parentdfd35e4b8348264b33a2d4b8c3ce3cb3dbbac379 (diff)
downloadbinutils-redhat-4867d6e0a0e5aec1ec81247f37eea3b7dd93ad55.tar.gz
Rewrite SPU overlay handling code. Put overlay calls stubs in the
overlays where possible. Use a faster call stub, or optionally at compile time, a more compact stub. Double size of _ovly_buf_table so that low bit of _ovly_table.buf can be used as a "present" bit. Reserve an extra _ovly_table entry for index zero.
Diffstat (limited to 'bfd/elf32-spu.h')
-rw-r--r--bfd/elf32-spu.h27
1 files changed, 17 insertions, 10 deletions
diff --git a/bfd/elf32-spu.h b/bfd/elf32-spu.h
index 1c421d9e41..4478e20cc1 100644
--- a/bfd/elf32-spu.h
+++ b/bfd/elf32-spu.h
@@ -26,12 +26,20 @@ struct _spu_elf_section_data
{
struct bfd_elf_section_data elf;
- /* Stack analysis info kept for this section. */
+ union {
+ /* Info kept for input sections. */
+ struct {
+ /* Stack analysis info kept for this section. */
+ struct spu_elf_stack_info *stack_info;
+ } i;
- struct spu_elf_stack_info *stack_info;
-
- /* Non-zero for overlay output sections. */
- unsigned int ovl_index;
+ /* Info kept for output sections. */
+ struct {
+ /* Non-zero for overlay output sections. */
+ unsigned int ovl_index;
+ unsigned int ovl_buf;
+ } o;
+ } u;
};
#define spu_elf_section_data(sec) \
@@ -49,9 +57,8 @@ extern bfd_boolean spu_elf_open_builtin_lib (bfd **,
extern bfd_boolean spu_elf_create_sections (bfd *,
struct bfd_link_info *, int, int);
extern bfd_boolean spu_elf_find_overlays (bfd *, struct bfd_link_info *);
-extern bfd_boolean spu_elf_size_stubs (bfd *, struct bfd_link_info *, int, int,
- asection **, asection **,
- asection **);
-extern bfd_boolean spu_elf_build_stubs (struct bfd_link_info *, int,
- asection *);
+extern int spu_elf_size_stubs (bfd *, struct bfd_link_info *,
+ void (*) (asection *, asection *, const char *),
+ int);
+extern bfd_boolean spu_elf_build_stubs (struct bfd_link_info *, int);
extern asection *spu_elf_check_vma (bfd *, bfd_vma, bfd_vma);