1 /* Copyright (C) 2017-2024 Free Software Foundation, Inc.
3 This file is part of GDB.
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.
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.
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/>. */
21 #include <unordered_map>
24 /* Target description features. */
25 #include "features/arc/v1-core.c"
26 #include "features/arc/v1-aux.c"
27 #include "features/arc/v2-core.c"
28 #include "features/arc/v2-aux.c"
31 #define STATIC_IN_GDB static
36 STATIC_IN_GDB target_desc_up
37 arc_create_target_description (const struct arc_arch_features
&features
)
39 /* Create a new target description. */
40 target_desc_up tdesc
= allocate_target_description ();
42 #ifndef IN_PROCESS_AGENT
43 std::string arch_name
;
45 /* Architecture names here must match the ones in
46 ARCH_INFO_STRUCT in bfd/cpu-arc.c. */
47 if (features
.isa
== ARC_ISA_ARCV1
&& features
.reg_size
== 4)
48 arch_name
= "arc:ARC700";
49 else if (features
.isa
== ARC_ISA_ARCV2
&& features
.reg_size
== 4)
50 arch_name
= "arc:ARCv2";
53 std::string msg
= string_printf
54 ("Cannot determine architecture: ISA=%d; bitness=%d",
55 features
.isa
, 8 * features
.reg_size
);
56 gdb_assert_not_reached ("%s", msg
.c_str ());
59 set_tdesc_architecture (tdesc
.get (), arch_name
.c_str ());
67 regnum
= create_feature_arc_v1_core (tdesc
.get (), regnum
);
68 regnum
= create_feature_arc_v1_aux (tdesc
.get (), regnum
);
71 regnum
= create_feature_arc_v2_core (tdesc
.get (), regnum
);
72 regnum
= create_feature_arc_v2_aux (tdesc
.get (), regnum
);
75 std::string msg
= string_printf
76 ("Cannot choose target description XML: %d", features
.isa
);
77 gdb_assert_not_reached ("%s", msg
.c_str ());
85 /* Wrapper used by std::unordered_map to generate hash for features set. */
86 struct arc_arch_features_hasher
89 operator() (const arc_arch_features
&features
) const noexcept
91 return features
.hash ();
95 /* Cache of previously created target descriptions, indexed by the hash
96 of the features set used to create them. */
97 static std::unordered_map
<arc_arch_features
,
99 arc_arch_features_hasher
> arc_tdesc_cache
;
101 /* See arch/arc.h. */
104 arc_lookup_target_description (const struct arc_arch_features
&features
)
106 /* Lookup in the cache first. If found, return the pointer from the
107 "target_desc_up" type which is a "unique_ptr". This should be fine
108 as the "arc_tdesc_cache" will persist until GDB terminates. */
109 const auto it
= arc_tdesc_cache
.find (features
);
110 if (it
!= arc_tdesc_cache
.end ())
111 return it
->second
.get ();
113 target_desc_up tdesc
= arc_create_target_description (features
);
116 /* Add to the cache, and return a pointer borrowed from the
117 target_desc_up. This is safe as the cache (and the pointers
118 contained within it) are not deleted until GDB exits. */
119 target_desc
*ptr
= tdesc
.get ();
120 arc_tdesc_cache
.emplace (features
, std::move (tdesc
));
124 #endif /* !GDBSERVER */