arc: Migrate to new target features
[deliverable/binutils-gdb.git] / gdb / arch / arc.c
1 /* Copyright (C) 2017-2020 Free Software Foundation, Inc.
2
3 This file is part of GDB.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18
19 #include "gdbsupport/common-defs.h"
20 #include <stdlib.h>
21
22 #include "arc.h"
23
24 /* Target description features. */
25 #include "features/arc/core-v2.c"
26 #include "features/arc/aux-v2.c"
27 #include "features/arc/core-arcompact.c"
28 #include "features/arc/aux-arcompact.c"
29
30 /* See arc.h. */
31
32 target_desc *
33 arc_create_target_description (arc_sys_type sys_type)
34 {
35 target_desc *tdesc = allocate_target_description ();
36
37 long regnum = 0;
38
39 #ifndef IN_PROCESS_AGENT
40 if (sys_type == ARC_SYS_TYPE_ARCV2)
41 set_tdesc_architecture (tdesc, "arc:ARCv2");
42 else
43 set_tdesc_architecture (tdesc, "arc:ARC700");
44 #endif
45
46 if (sys_type == ARC_SYS_TYPE_ARCV2)
47 {
48 regnum = create_feature_arc_core_v2 (tdesc, regnum);
49 regnum = create_feature_arc_aux_v2 (tdesc, regnum);
50 }
51 else
52 {
53 regnum = create_feature_arc_core_arcompact (tdesc, regnum);
54 regnum = create_feature_arc_aux_arcompact (tdesc, regnum);
55 }
56
57 return tdesc;
58 }
This page took 0.051389 seconds and 5 git commands to generate.