Imported Upstream version 0.155
[platform/upstream/elfutils.git] / backends / ppc64_symbol.c
1 /* PPC64 specific symbolic name handling.
2    Copyright (C) 2004, 2005 Red Hat, Inc.
3    This file is part of elfutils.
4    Written by Ulrich Drepper <drepper@redhat.com>, 2004.
5
6    This file is free software; you can redistribute it and/or modify
7    it under the terms of either
8
9      * the GNU Lesser General Public License as published by the Free
10        Software Foundation; either version 3 of the License, or (at
11        your option) any later version
12
13    or
14
15      * the GNU General Public License as published by the Free
16        Software Foundation; either version 2 of the License, or (at
17        your option) any later version
18
19    or both in parallel, as here.
20
21    elfutils is distributed in the hope that it will be useful, but
22    WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24    General Public License for more details.
25
26    You should have received copies of the GNU General Public License and
27    the GNU Lesser General Public License along with this program.  If
28    not, see <http://www.gnu.org/licenses/>.  */
29
30 #ifdef HAVE_CONFIG_H
31 # include <config.h>
32 #endif
33
34 #include <assert.h>
35 #include <elf.h>
36 #include <stddef.h>
37 #include <string.h>
38
39 #define BACKEND         ppc64_
40 #include "libebl_CPU.h"
41
42
43 /* Check for the simple reloc types.  */
44 Elf_Type
45 ppc64_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
46 {
47   switch (type)
48     {
49     case R_PPC64_ADDR64:
50     case R_PPC64_UADDR64:
51       return ELF_T_XWORD;
52     case R_PPC64_ADDR32:
53     case R_PPC64_UADDR32:
54       return ELF_T_WORD;
55     case R_PPC64_UADDR16:
56       return ELF_T_HALF;
57     default:
58       return ELF_T_NUM;
59     }
60 }
61
62
63 const char *
64 ppc64_dynamic_tag_name (int64_t tag, char *buf __attribute__ ((unused)),
65                         size_t len __attribute__ ((unused)))
66 {
67   switch (tag)
68     {
69     case DT_PPC64_GLINK:
70       return "PPC64_GLINK";
71     case DT_PPC64_OPD:
72       return "PPC64_OPD";
73     case DT_PPC64_OPDSZ:
74       return "PPC64_OPDSZ";
75     default:
76       break;
77     }
78   return NULL;
79 }
80
81
82 bool
83 ppc64_dynamic_tag_check (int64_t tag)
84 {
85   return (tag == DT_PPC64_GLINK
86           || tag == DT_PPC64_OPD
87           || tag == DT_PPC64_OPDSZ);
88 }
89
90
91 /* Check whether given symbol's st_value and st_size are OK despite failing
92    normal checks.  */
93 bool
94 ppc64_check_special_symbol (Elf *elf, GElf_Ehdr *ehdr,
95                             const GElf_Sym *sym __attribute__ ((unused)),
96                             const char *name __attribute__ ((unused)),
97                             const GElf_Shdr *destshdr)
98 {
99   const char *sname = elf_strptr (elf, ehdr->e_shstrndx, destshdr->sh_name);
100   if (sname == NULL)
101     return false;
102   return strcmp (sname, ".opd") == 0;
103 }
104
105
106 /* Check if backend uses a bss PLT in this file.  */
107 bool
108 ppc64_bss_plt_p (Elf *elf __attribute__ ((unused)),
109                  GElf_Ehdr *ehdr __attribute__ ((unused)))
110 {
111   return true;
112 }