* elf.c (assign_section_numbers): Fix comment.
[deliverable/binutils-gdb.git] / bfd / elfxx-sparc.h
CommitLineData
22b75d0a
DM
1/* SPARC ELF specific backend routines.
2 Copyright 2005 Free Software Foundation, Inc.
3
4This file is part of BFD, the Binary File Descriptor library.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20#include "elf/common.h"
21#include "elf/internal.h"
22
23struct _bfd_sparc_elf_section_data
24{
25 struct bfd_elf_section_data elf;
26 unsigned int do_relax, reloc_count;
27};
28
29#define sec_do_relax(sec) \
30 ((struct _bfd_sparc_elf_section_data *) elf_section_data (sec))->do_relax
31#define canon_reloc_count(sec) \
32 ((struct _bfd_sparc_elf_section_data *) elf_section_data (sec))->reloc_count
33
34struct _bfd_sparc_elf_app_reg
35{
36 unsigned char bind;
37 unsigned short shndx;
38 bfd *abfd;
39 char *name;
40};
41
42/* Sparc ELF linker hash table. */
43
44struct _bfd_sparc_elf_link_hash_table
45{
46 struct elf_link_hash_table elf;
47
48 /* Short-cuts to get to dynamic linker sections. */
49 asection *sgot;
50 asection *srelgot;
51 asection *splt;
52 asection *srelplt;
53 asection *sdynbss;
54 asection *srelbss;
55
56 union {
57 bfd_signed_vma refcount;
58 bfd_vma offset;
59 } tls_ldm_got;
60
61 /* Small local sym to section mapping cache. */
62 struct sym_sec_cache sym_sec;
63
64 void (*put_word) (bfd *, bfd_vma, void *);
65 void (*append_rela) (bfd *, asection *, Elf_Internal_Rela *);
66 bfd_vma (*r_info) (Elf_Internal_Rela *, bfd_vma, bfd_vma);
67 bfd_vma (*r_symndx) (bfd_vma);
68 int (*build_plt_entry) (bfd *, asection *, bfd_vma, bfd_vma, bfd_vma *);
69 const unsigned char *dynamic_interpreter;
70 int dynamic_interpreter_size;
71 unsigned int word_align_power;
72 unsigned int align_power_max;
73 int bytes_per_word;
74 int bytes_per_rela;
75 int dtpoff_reloc;
76 int dtpmod_reloc;
77 int tpoff_reloc;
78
79 struct _bfd_sparc_elf_app_reg app_regs [4];
80};
81
82/* Get the SPARC ELF linker hash table from a link_info structure. */
83
84#define _bfd_sparc_elf_hash_table(p) \
85 ((struct _bfd_sparc_elf_link_hash_table *) ((p)->hash))
86
87extern reloc_howto_type *_bfd_sparc_elf_reloc_type_lookup
88 (bfd *, bfd_reloc_code_real_type);
89extern void _bfd_sparc_elf_info_to_howto
90 (bfd *, arelent *, Elf_Internal_Rela *);
91extern reloc_howto_type *_bfd_sparc_elf_info_to_howto_ptr
92 (unsigned int);
93extern bfd_boolean _bfd_sparc_elf_mkobject
94 (bfd *);
95extern struct bfd_link_hash_table *_bfd_sparc_elf_link_hash_table_create
96 (bfd *);
97extern bfd_boolean _bfd_sparc_elf_create_dynamic_sections
98 (bfd *, struct bfd_link_info *);
99extern void _bfd_sparc_elf_copy_indirect_symbol
100 (const struct elf_backend_data *,
101 struct elf_link_hash_entry *,
102 struct elf_link_hash_entry *);
103extern bfd_boolean _bfd_sparc_elf_check_relocs
104 (bfd *, struct bfd_link_info *,
105 asection *, const Elf_Internal_Rela *);
106extern asection *_bfd_sparc_elf_gc_mark_hook
107 (asection *, struct bfd_link_info *,
108 Elf_Internal_Rela *, struct elf_link_hash_entry *,
109 Elf_Internal_Sym *);
110extern bfd_boolean _bfd_sparc_elf_gc_sweep_hook
111 (bfd *, struct bfd_link_info *,
112 asection *, const Elf_Internal_Rela *);
113extern bfd_boolean _bfd_sparc_elf_adjust_dynamic_symbol
114 (struct bfd_link_info *, struct elf_link_hash_entry *);
115extern bfd_boolean _bfd_sparc_elf_omit_section_dynsym
116 (bfd *, struct bfd_link_info *, asection *);
117extern bfd_boolean _bfd_sparc_elf_size_dynamic_sections
118 (bfd *, struct bfd_link_info *);
119extern bfd_boolean _bfd_sparc_elf_new_section_hook
120 (bfd *, asection *);
121extern bfd_boolean _bfd_sparc_elf_relax_section
122 (bfd *, struct bfd_section *, struct bfd_link_info *, bfd_boolean *);
123extern bfd_boolean _bfd_sparc_elf_relocate_section
124 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
125 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
126extern bfd_boolean _bfd_sparc_elf_finish_dynamic_symbol
127 (bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
128 Elf_Internal_Sym *sym);
129extern bfd_boolean _bfd_sparc_elf_finish_dynamic_sections
130 (bfd *, struct bfd_link_info *);
131extern bfd_boolean _bfd_sparc_elf_object_p
132 (bfd *);
133extern bfd_vma _bfd_sparc_elf_plt_sym_val
134 (bfd_vma, const asection *, const arelent *);
This page took 0.027403 seconds and 4 git commands to generate.