blob: cdc27d5b752581ab5c464b5465c9be3f451b4d56 [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.
Ulrich Drepper361df7d2006-04-04 21:38:57 +00003 This file is part of Red Hat elfutils.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00004 Written by Ulrich Drepper <drepper@redhat.com>, 2000.
5
Ulrich Drepper361df7d2006-04-04 21:38:57 +00006 Red Hat elfutils is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by the
8 Free Software Foundation; version 2 of the License.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00009
Ulrich Drepper361df7d2006-04-04 21:38:57 +000010 Red Hat elfutils is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with Red Hat elfutils; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18
19 Red Hat elfutils is an included package of the Open Invention Network.
20 An included package of the Open Invention Network is a package for which
21 Open Invention Network licensees cross-license their patents. No patent
22 license is granted, either expressly or impliedly, by designation as an
23 included package. Should you wish to participate in the Open Invention
24 Network licensing program, please visit www.openinventionnetwork.com
25 <http://www.openinventionnetwork.com>. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000026
27#ifdef HAVE_CONFIG_H
28# include <config.h>
29#endif
30
31#include <elf.h>
32#include <stddef.h>
33
Roland McGrathcd60ea82005-11-16 01:57:40 +000034#define BACKEND sh_
35#include "libebl_CPU.h"
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000036
37
Roland McGrathcd60ea82005-11-16 01:57:40 +000038/* Return true if the symbol type is that referencing the GOT. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000039bool
Roland McGrathcd60ea82005-11-16 01:57:40 +000040sh_gotpc_reloc_check (Elf *elf __attribute__ ((unused)), int type)
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000041{
Roland McGrathcd60ea82005-11-16 01:57:40 +000042 return type == R_SH_GOTPC;
43}
44
45/* Check for the simple reloc types. */
46Elf_Type
47sh_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
48{
49 switch (type)
50 {
51 case R_SH_DIR32:
52 return ELF_T_WORD;
53 default:
54 return ELF_T_NUM;
55 }
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000056}