1 /* BFD library support routines for the Z800n architecture.
2 Copyright 1992, 1993, 1994, 2000, 2001 Free Software Foundation, Inc.
3 Hacked by Steve Chamberlain of Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 static boolean scan_mach
26 PARAMS ((const struct bfd_arch_info
*, const char *));
27 static const bfd_arch_info_type
*compatible
28 PARAMS ((const bfd_arch_info_type
*, const bfd_arch_info_type
*));
30 #if 0 /* not used currently */
32 Relocations for the Z8K
35 static bfd_reloc_status_type
36 howto16_callback (abfd
, reloc_entry
, symbol_in
, data
,
37 ignore_input_section
, ignore_bfd
)
40 struct symbol_cache_entry
*symbol_in
;
42 asection
*ignore_input_section
;
46 bfd_vma addr
= reloc_entry
->address
;
47 long x
= bfd_get_16 (abfd
, (bfd_byte
*) data
+ addr
);
49 HOWTO_PREPARE (relocation
, symbol_in
);
51 x
= (x
+ relocation
+ reloc_entry
->addend
);
53 bfd_put_16 (abfd
, x
, (bfd_byte
*) data
+ addr
);
57 static bfd_reloc_status_type
58 howto8_callback (abfd
, reloc_entry
, symbol_in
, data
,
59 ignore_input_section
, ignore_bfd
)
62 struct symbol_cache_entry
*symbol_in
;
64 asection
*ignore_input_section
;
68 bfd_vma addr
= reloc_entry
->address
;
69 long x
= bfd_get_8 (abfd
, (bfd_byte
*) data
+ addr
);
71 HOWTO_PREPARE (relocation
, symbol_in
);
73 x
= (x
+ relocation
+ reloc_entry
->addend
);
75 bfd_put_8 (abfd
, x
, (bfd_byte
*) data
+ addr
);
79 static bfd_reloc_status_type
80 howto8_FFnn_callback (abfd
, reloc_entry
, symbol_in
, data
,
81 ignore_input_section
, ignore_bfd
)
84 struct symbol_cache_entry
*symbol_in
;
86 asection
*ignore_input_section
;
90 bfd_vma addr
= reloc_entry
->address
;
92 long x
= bfd_get_8 (abfd
, (bfd_byte
*) data
+ addr
);
94 HOWTO_PREPARE (relocation
, symbol_in
);
96 x
= (x
+ relocation
+ reloc_entry
->addend
);
98 bfd_put_8 (abfd
, x
, (bfd_byte
*) data
+ addr
);
102 static bfd_reloc_status_type
103 howto8_pcrel_callback (abfd
, reloc_entry
, symbol_in
, data
,
104 ignore_input_section
, ignore_bfd
)
106 arelent
*reloc_entry
;
107 struct symbol_cache_entry
*symbol_in
;
109 asection
*ignore_input_section
;
113 bfd_vma addr
= reloc_entry
->address
;
114 long x
= bfd_get_8 (abfd
, (bfd_byte
*) data
+ addr
);
116 HOWTO_PREPARE (relocation
, symbol_in
);
118 x
= (x
+ relocation
+ reloc_entry
->addend
);
120 bfd_put_8 (abfd
, x
, (bfd_byte
*) data
+ addr
);
124 static reloc_howto_type howto_16
125 = NEWHOWTO (howto16_callback
, "abs16", 1, false, false);
126 static reloc_howto_type howto_8
127 = NEWHOWTO (howto8_callback
, "abs8", 0, false, false);
129 static reloc_howto_type howto_8_FFnn
130 = NEWHOWTO (howto8_FFnn_callback
, "ff00+abs8", 0, false, false);
132 static reloc_howto_type howto_8_pcrel
133 = NEWHOWTO (howto8_pcrel_callback
, "pcrel8", 0, false, true);
135 static reloc_howto_type
*
136 local_bfd_reloc_type_lookup (arch
, code
)
137 const struct bfd_arch_info
*arch
;
138 bfd_reloc_code_real_type code
;
144 case BFD_RELOC_8_FFnn
:
145 return &howto_8_FFnn
;
148 case BFD_RELOC_8_PCREL
:
149 return &howto_8_pcrel
;
151 return (reloc_howto_type
*) NULL
;
157 scan_mach (info
, string
)
158 const struct bfd_arch_info
*info
;
161 if (strcmp (string
, "z8001") == 0 || strcmp (string
, "z8k") == 0)
163 return bfd_mach_z8001
== info
->mach
;
165 if (strcmp (string
, "z8002") == 0)
167 return bfd_mach_z8002
== info
->mach
;
172 /* This routine is provided two arch_infos and returns whether
173 they'd be compatible */
175 static const bfd_arch_info_type
*
177 const bfd_arch_info_type
*a
;
178 const bfd_arch_info_type
*b
;
180 if (a
->arch
!= b
->arch
|| a
->mach
!= b
->mach
)
185 static const bfd_arch_info_type arch_info_struct
[] =
187 {32, 32, 8, bfd_arch_z8k
, bfd_mach_z8001
, "z8k", "z8001", 1, false, compatible
, scan_mach
, 0,},
190 const bfd_arch_info_type bfd_z8k_arch
=
192 32, 16, 8, bfd_arch_z8k
, bfd_mach_z8002
, "z8k", "z8002", 1, true, compatible
, scan_mach
, &arch_info_struct
[0],