1 /* BFD library support routines for the MSP architecture.
2 Copyright (C) 2002-2014 Free Software Foundation, Inc.
3 Contributed by Dmitry Diky <diwil@mail.ru>
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
26 /* This routine is provided two arch_infos and works out which MSP
27 machine which would be compatible with both and returns a pointer
28 to its info structure. */
30 static const bfd_arch_info_type
*
31 compatible (const bfd_arch_info_type
* a
,
32 const bfd_arch_info_type
* b
)
34 /* If a & b are for different architectures we can do nothing. */
35 if (a
->arch
!= b
->arch
)
38 if (a
->mach
<= b
->mach
)
44 #define N(addr_bits, machine, print, default, next) \
46 16, /* 16 bits in a word. */ \
47 addr_bits, /* Bits in an address. */ \
48 8, /* 8 bits in a byte. */ \
50 machine, /* Machine number. */ \
51 "msp430", /* Architecture name. */ \
52 print, /* Printable name. */ \
53 1, /* Section align power. */ \
54 default, /* The default machine. */ \
57 bfd_arch_default_fill, \
61 static const bfd_arch_info_type arch_info_struct
[] =
64 N (16, bfd_mach_msp11
, "MSP430", FALSE
, & arch_info_struct
[1]),
67 N (16, bfd_mach_msp110
, "MSP430x11x1", FALSE
, & arch_info_struct
[2]),
70 N (16, bfd_mach_msp12
, "MSP430x12", FALSE
, & arch_info_struct
[3]),
73 N (16, bfd_mach_msp13
, "MSP430x13", FALSE
, & arch_info_struct
[4]),
76 N (16, bfd_mach_msp14
, "MSP430x14", FALSE
, & arch_info_struct
[5]),
79 N (16, bfd_mach_msp15
, "MSP430x15", FALSE
, & arch_info_struct
[6]),
82 N (16, bfd_mach_msp16
, "MSP430x16", FALSE
, & arch_info_struct
[7]),
85 N (16, bfd_mach_msp20
, "MSP430x20", FALSE
, & arch_info_struct
[8]),
88 N (16, bfd_mach_msp21
, "MSP430x21", FALSE
, & arch_info_struct
[9]),
91 N (16, bfd_mach_msp22
, "MSP430x22", FALSE
, & arch_info_struct
[10]),
94 N (16, bfd_mach_msp23
, "MSP430x23", FALSE
, & arch_info_struct
[11]),
97 N (16, bfd_mach_msp24
, "MSP430x24", FALSE
, & arch_info_struct
[12]),
100 N (16, bfd_mach_msp26
, "MSP430x26", FALSE
, & arch_info_struct
[13]),
103 N (16, bfd_mach_msp31
, "MSP430x31", FALSE
, & arch_info_struct
[14]),
106 N (16, bfd_mach_msp32
, "MSP430x32", FALSE
, & arch_info_struct
[15]),
109 N (16, bfd_mach_msp33
, "MSP430x33", FALSE
, & arch_info_struct
[16]),
112 N (16, bfd_mach_msp41
, "MSP430x41", FALSE
, & arch_info_struct
[17]),
115 N (16, bfd_mach_msp42
, "MSP430x42", FALSE
, & arch_info_struct
[18]),
118 N (16, bfd_mach_msp43
, "MSP430x43", FALSE
, & arch_info_struct
[19]),
121 N (16, bfd_mach_msp43
, "MSP430x44", FALSE
, & arch_info_struct
[20]),
124 N (16, bfd_mach_msp46
, "MSP430x46", FALSE
, & arch_info_struct
[21]),
127 N (16, bfd_mach_msp47
, "MSP430x47", FALSE
, & arch_info_struct
[22]),
130 N (16, bfd_mach_msp54
, "MSP430x54", FALSE
, & arch_info_struct
[23]),
132 N (32, bfd_mach_msp430x
, "MSP430X", FALSE
, NULL
)
136 const bfd_arch_info_type bfd_msp430_arch
=
137 N (16, bfd_mach_msp14
, "msp:14", TRUE
, & arch_info_struct
[0]);