/src/binutils-gdb/bfd/cpu-m32c.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* BFD support for the M16C/M32C processors. |
2 | | Copyright (C) 2004-2025 Free Software Foundation, Inc. |
3 | | |
4 | | This file is part of BFD, the Binary File Descriptor library. |
5 | | |
6 | | This program is free software; you can redistribute it and/or modify |
7 | | it under the terms of the GNU General Public License as published by |
8 | | the Free Software Foundation; either version 3 of the License, or |
9 | | (at your option) any later version. |
10 | | |
11 | | This program is distributed in the hope that it will be useful, |
12 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | | GNU General Public License for more details. |
15 | | |
16 | | You should have received a copy of the GNU General Public License |
17 | | along with this program; if not, write to the Free Software |
18 | | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
19 | | MA 02110-1301, USA. */ |
20 | | |
21 | | #include "sysdep.h" |
22 | | #include "bfd.h" |
23 | | #include "libbfd.h" |
24 | | |
25 | | /* Like bfd_default_scan but if the string is just "m32c" then |
26 | | skip the m16c architecture. */ |
27 | | |
28 | | static bool |
29 | | m32c_scan (const bfd_arch_info_type * info, const char * string) |
30 | 0 | { |
31 | 0 | if (strcmp (string, "m32c") == 0 |
32 | 0 | && info->mach == bfd_mach_m16c) |
33 | 0 | return false; |
34 | | |
35 | 0 | return bfd_default_scan (info, string); |
36 | 0 | } |
37 | | |
38 | | #define N(number, print, align, default, next) \ |
39 | | { 32, 32, 8, bfd_arch_m32c, number, "m32c", print, align, default, \ |
40 | | bfd_default_compatible, m32c_scan, bfd_arch_default_fill, next, 0 } |
41 | | |
42 | | static const bfd_arch_info_type arch_info_struct = |
43 | | N (bfd_mach_m32c, "m32c", 3, false, NULL); |
44 | | |
45 | | const bfd_arch_info_type bfd_m32c_arch = |
46 | | N (bfd_mach_m16c, "m16c", 4, true, &arch_info_struct); |
47 | | |