Change inferior thread list to be a thread map
[deliverable/binutils-gdb.git] / gdb / gdbarch-selftests.c
CommitLineData
b77b02a5
YQ
1/* Self tests for gdbarch for GDB, the GNU debugger.
2
b811d2c2 3 Copyright (C) 2017-2020 Free Software Foundation, Inc.
b77b02a5
YQ
4
5 This file is part of GDB.
6
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.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#if GDB_SELF_TEST
268a13a5 22#include "gdbsupport/selftest.h"
b77b02a5
YQ
23#include "selftest-arch.h"
24#include "inferior.h"
55b11ddf
PA
25#include "gdbthread.h"
26#include "target.h"
c180496d 27#include "test-target.h"
f69fdf9b 28#include "target-float.h"
268a13a5 29#include "gdbsupport/def-vector.h"
0d12e84c 30#include "gdbarch.h"
b77b02a5
YQ
31
32namespace selftests {
33
b77b02a5
YQ
34/* Test gdbarch methods register_to_value and value_to_register. */
35
36static void
37register_to_value_test (struct gdbarch *gdbarch)
38{
39 const struct builtin_type *builtin = builtin_type (gdbarch);
40 struct type *types[] =
41 {
42 builtin->builtin_void,
43 builtin->builtin_char,
44 builtin->builtin_short,
45 builtin->builtin_int,
46 builtin->builtin_long,
47 builtin->builtin_signed_char,
48 builtin->builtin_unsigned_short,
49 builtin->builtin_unsigned_int,
50 builtin->builtin_unsigned_long,
51 builtin->builtin_float,
52 builtin->builtin_double,
53 builtin->builtin_long_double,
54 builtin->builtin_complex,
55 builtin->builtin_double_complex,
56 builtin->builtin_string,
57 builtin->builtin_bool,
58 builtin->builtin_long_long,
59 builtin->builtin_unsigned_long_long,
60 builtin->builtin_int8,
61 builtin->builtin_uint8,
62 builtin->builtin_int16,
63 builtin->builtin_uint16,
64 builtin->builtin_int32,
65 builtin->builtin_uint32,
66 builtin->builtin_int64,
67 builtin->builtin_uint64,
68 builtin->builtin_int128,
69 builtin->builtin_uint128,
70 builtin->builtin_char16,
71 builtin->builtin_char32,
72 };
73
55b11ddf
PA
74 /* Create a mock environment. An inferior with a thread, with a
75 process_stratum target pushed. */
76
77 test_target_ops mock_target;
78 ptid_t mock_ptid (1, 1);
79 inferior mock_inferior (mock_ptid.pid ());
80 address_space mock_aspace {};
81 mock_inferior.gdbarch = gdbarch;
82 mock_inferior.aspace = &mock_aspace;
83 thread_info mock_thread (&mock_inferior, mock_ptid);
cd9629e1 84 mock_inferior.thread_map[mock_ptid] = &mock_thread;
55b11ddf
PA
85
86 /* Add the mock inferior to the inferior list so that look ups by
87 target+ptid can find it. */
88 scoped_restore restore_inferior_list
89 = make_scoped_restore (&inferior_list);
90 inferior_list = &mock_inferior;
91
92 /* Switch to the mock inferior. */
93 scoped_restore_current_inferior restore_current_inferior;
94 set_current_inferior (&mock_inferior);
95
96 /* Push the process_stratum target so we can mock accessing
97 registers. */
98 push_target (&mock_target);
99
100 /* Pop it again on exit (return/exception). */
e587ef42 101 SCOPE_EXIT { pop_all_targets_at_and_above (process_stratum); };
b77b02a5 102
55b11ddf
PA
103 /* Switch to the mock thread. */
104 scoped_restore restore_inferior_ptid
105 = make_scoped_restore (&inferior_ptid, mock_ptid);
106
107 struct frame_info *frame = get_current_frame ();
f6efe3f8 108 const int num_regs = gdbarch_num_cooked_regs (gdbarch);
b77b02a5 109
b77b02a5
YQ
110 /* Test gdbarch methods register_to_value and value_to_register with
111 different combinations of register numbers and types. */
112 for (const auto &type : types)
113 {
114 for (auto regnum = 0; regnum < num_regs; regnum++)
115 {
116 if (gdbarch_convert_register_p (gdbarch, regnum, type))
117 {
118 std::vector<gdb_byte> expected (TYPE_LENGTH (type), 0);
119
120 if (TYPE_CODE (type) == TYPE_CODE_FLT)
121 {
b77b02a5 122 /* Generate valid float format. */
f69fdf9b 123 target_float_from_string (expected.data (), type, "1.25");
b77b02a5
YQ
124 }
125 else
126 {
127 for (auto j = 0; j < expected.size (); j++)
128 expected[j] = (regnum + j) % 16;
129 }
130
131 gdbarch_value_to_register (gdbarch, frame, regnum, type,
132 expected.data ());
133
134 /* Allocate two bytes more for overflow check. */
135 std::vector<gdb_byte> buf (TYPE_LENGTH (type) + 2, 0);
136 int optim, unavail, ok;
137
138 /* Set the fingerprint in the last two bytes. */
139 buf [TYPE_LENGTH (type)]= 'w';
140 buf [TYPE_LENGTH (type) + 1]= 'l';
141 ok = gdbarch_register_to_value (gdbarch, frame, regnum, type,
142 buf.data (), &optim, &unavail);
143
144 SELF_CHECK (ok);
145 SELF_CHECK (!optim);
146 SELF_CHECK (!unavail);
147
148 SELF_CHECK (buf[TYPE_LENGTH (type)] == 'w');
149 SELF_CHECK (buf[TYPE_LENGTH (type) + 1] == 'l');
150
151 for (auto k = 0; k < TYPE_LENGTH(type); k++)
152 SELF_CHECK (buf[k] == expected[k]);
153 }
154 }
155 }
156}
157
158} // namespace selftests
159#endif /* GDB_SELF_TEST */
160
161void
162_initialize_gdbarch_selftests (void)
163{
164#if GDB_SELF_TEST
1526853e
SM
165 selftests::register_test_foreach_arch ("register_to_value",
166 selftests::register_to_value_test);
b77b02a5
YQ
167#endif
168}
This page took 0.257804 seconds and 4 git commands to generate.