[PATCH 55/57][Arm][OBJDUMP] Add support for MVE instructions: vmul, vmulh, vrmulh...
[binutils-gdb.git] / gdb / gdbserver / linux-aarch64-tdesc-selftest.c
blobbf24a27c598b78d1ed0ede3c6409b52086a291f0
1 /* Copyright (C) 2017-2019 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/>. */
18 #include "server.h"
19 #include "tdesc.h"
20 #include "common/selftest.h"
21 #include "linux-aarch64-tdesc.h"
23 /* Defined in auto-generated file features/aarch64.c. */
24 void init_registers_aarch64 (void);
25 extern const struct target_desc *tdesc_aarch64;
27 namespace selftests {
28 namespace tdesc {
29 static void
30 aarch64_tdesc_test ()
32 const target_desc *tdesc = aarch64_linux_read_description (0, false);
33 SELF_CHECK (*tdesc == *tdesc_aarch64);
36 } // namespace selftests
38 void
39 initialize_low_tdesc ()
41 init_registers_aarch64 ();
43 selftests::register_test ("aarch64-tdesc",
44 selftests::tdesc::aarch64_tdesc_test);