gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / bfd / cpu-v850.c
CommitLineData
252b5132 1/* BFD support for the NEC V850 processor
b3adc24a 2 Copyright (C) 1996-2020 Free Software Foundation, Inc.
252b5132 3
86aba9db 4 This file is part of BFD, the Binary File Descriptor library.
252b5132 5
86aba9db
NC
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
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
86aba9db 9 (at your option) any later version.
252b5132 10
86aba9db
NC
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.
252b5132 15
86aba9db
NC
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
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
252b5132 20
252b5132 21#include "sysdep.h"
3db64b00 22#include "bfd.h"
252b5132 23#include "libbfd.h"
3882b010 24#include "safe-ctype.h"
252b5132 25
252b5132 26#define N(number, print, default, next) \
aebcfb76
NC
27 { 32, 32, 8, bfd_arch_v850, number, "v850", print ":old-gcc-abi", 2, default, \
28 bfd_default_compatible, bfd_default_scan, bfd_arch_default_fill, next, 0 }
252b5132 29
aebcfb76 30static const bfd_arch_info_type arch_info_struct[6] =
252b5132 31{
aebcfb76
NC
32 N (bfd_mach_v850e3v5, "v850e3v5", FALSE, arch_info_struct + 1),
33 N (bfd_mach_v850e3v5, "v850e2v4", FALSE, arch_info_struct + 2),
34 N (bfd_mach_v850e2v3, "v850e2v3", FALSE, arch_info_struct + 3),
35 N (bfd_mach_v850e2, "v850e2", FALSE, arch_info_struct + 4),
36 N (bfd_mach_v850e1, "v850e1", FALSE, arch_info_struct + 5),
37 N (bfd_mach_v850e, "v850e", FALSE, NULL)
252b5132
RH
38};
39
252b5132 40const bfd_arch_info_type bfd_v850_arch =
aebcfb76 41 N (bfd_mach_v850, "v850", TRUE, arch_info_struct + 0);
This page took 0.957171 seconds and 4 git commands to generate.