blob: 8101e96f519e1a5691d81a34ab0d3c7d0a124280 [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* SH specific relocation handling.
2 Copyright (C) 2000, 2001, 2002, 2005 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00004 Written by Ulrich Drepper <drepper@redhat.com>, 2000.
5
Mark Wielaardde2ed972012-06-05 17:15:16 +02006 This file is free software; you can redistribute it and/or modify
7 it under the terms of either
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00008
Mark Wielaardde2ed972012-06-05 17:15:16 +02009 * 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
Ulrich Drepper361df7d2006-04-04 21:38:57 +000022 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
Mark Wielaardde2ed972012-06-05 17:15:16 +020026 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/>. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000029
30#ifdef HAVE_CONFIG_H
31# include <config.h>
32#endif
33
34#include <elf.h>
35#include <stddef.h>
36
Roland McGrathcd60ea82005-11-16 01:57:40 +000037#define BACKEND sh_
38#include "libebl_CPU.h"
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000039
40
Roland McGrathcd60ea82005-11-16 01:57:40 +000041/* Return true if the symbol type is that referencing the GOT. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000042bool
Roland McGrathcd60ea82005-11-16 01:57:40 +000043sh_gotpc_reloc_check (Elf *elf __attribute__ ((unused)), int type)
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000044{
Roland McGrathcd60ea82005-11-16 01:57:40 +000045 return type == R_SH_GOTPC;
46}
47
48/* Check for the simple reloc types. */
49Elf_Type
50sh_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
51{
52 switch (type)
53 {
54 case R_SH_DIR32:
55 return ELF_T_WORD;
56 default:
57 return ELF_T_NUM;
58 }
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000059}
Matt Flemingd80f0b22010-04-10 19:13:37 -070060
61/* Check whether machine flags are valid. */
62bool
63sh_machine_flag_check (GElf_Word flags)
64{
65 switch (flags & EF_SH_MACH_MASK)
66 {
67 case EF_SH_UNKNOWN:
68 case EF_SH1:
69 case EF_SH2:
70 case EF_SH3:
71 case EF_SH_DSP:
72 case EF_SH3_DSP:
73 case EF_SH4AL_DSP:
74 case EF_SH3E:
75 case EF_SH4:
76 case EF_SH2E:
77 case EF_SH4A:
78 case EF_SH2A:
79 case EF_SH4_NOFPU:
80 case EF_SH4A_NOFPU:
81 case EF_SH4_NOMMU_NOFPU:
82 case EF_SH2A_NOFPU:
83 case EF_SH3_NOMMU:
84 case EF_SH2A_SH4_NOFPU:
85 case EF_SH2A_SH3_NOFPU:
86 case EF_SH2A_SH4:
87 case EF_SH2A_SH3E:
88 break;
89 default:
90 return false;
91 }
92
93 return ((flags &~ (EF_SH_MACH_MASK)) == 0);
94}