1 /* Self tests for disassembler for GDB, the GNU debugger.
3 Copyright (C) 2017-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
24 #include "common/selftest.h"
25 #include "selftest-arch.h"
29 /* Test disassembly of one instruction. */
32 print_one_insn_test (struct gdbarch *gdbarch)
35 const gdb_byte *insn = NULL;
37 switch (gdbarch_bfd_arch_info (gdbarch)->arch)
41 static const gdb_byte bfin_insn[] = {0x17, 0xe1, 0xff, 0xff};
44 len = sizeof (bfin_insn);
48 static const gdb_byte arm_insn[] = {0x0, 0x0, 0xa0, 0xe3};
51 len = sizeof (arm_insn);
61 static const gdb_byte s390_insn[] = {0x07, 0x07};
64 len = sizeof (s390_insn);
66 case bfd_arch_xstormy16:
68 static const gdb_byte xstormy16_insn[] = {0x0, 0x0};
70 insn = xstormy16_insn;
71 len = sizeof (xstormy16_insn);
75 if (gdbarch_bfd_arch_info (gdbarch)->mach == bfd_mach_arc_arc601)
81 /* nios2, riscv, and score need to know the current instruction
82 to select breakpoint instruction. Give the breakpoint
83 instruction kind explicitly. */
86 insn = gdbarch_sw_breakpoint_from_kind (gdbarch, 4, &bplen);
92 /* Test disassemble breakpoint instruction. */
94 int kind = gdbarch_breakpoint_kind_from_pc (gdbarch, &pc);
97 insn = gdbarch_sw_breakpoint_from_kind (gdbarch, kind, &bplen);
103 SELF_CHECK (len > 0);
105 /* Test gdb_disassembler for a given gdbarch by reading data from a
106 pre-allocated buffer. If you want to see the disassembled
107 instruction printed to gdb_stdout, set verbose to true. */
108 static const bool verbose = false;
110 class gdb_disassembler_test : public gdb_disassembler
114 explicit gdb_disassembler_test (struct gdbarch *gdbarch,
115 const gdb_byte *insn,
117 : gdb_disassembler (gdbarch,
118 (verbose ? gdb_stdout : &null_stream),
119 gdb_disassembler_test::read_memory),
120 m_insn (insn), m_len (len)
125 print_insn (CORE_ADDR memaddr)
129 fprintf_unfiltered (stream (), "%s ",
130 gdbarch_bfd_arch_info (arch ())->arch_name);
133 int len = gdb_disassembler::print_insn (memaddr);
136 fprintf_unfiltered (stream (), "\n");
142 /* A buffer contain one instruction. */
143 const gdb_byte *m_insn;
145 /* Length of the buffer. */
148 static int read_memory (bfd_vma memaddr, gdb_byte *myaddr,
149 unsigned int len, struct disassemble_info *info)
151 gdb_disassembler_test *self
152 = static_cast<gdb_disassembler_test *>(info->application_data);
154 /* The disassembler in opcodes may read more data than one
155 instruction. Supply infinite consecutive copies
156 of the same instruction. */
157 for (size_t i = 0; i < len; i++)
158 myaddr[i] = self->m_insn[(memaddr + i) % self->m_len];
164 gdb_disassembler_test di (gdbarch, insn, len);
166 SELF_CHECK (di.print_insn (0) == len);
169 /* Test disassembly on memory error. */
172 memory_error_test (struct gdbarch *gdbarch)
174 class gdb_disassembler_test : public gdb_disassembler
177 gdb_disassembler_test (struct gdbarch *gdbarch)
178 : gdb_disassembler (gdbarch, &null_stream,
179 gdb_disassembler_test::read_memory)
183 static int read_memory (bfd_vma memaddr, gdb_byte *myaddr,
185 struct disassemble_info *info)
187 /* Always return an error. */
192 gdb_disassembler_test di (gdbarch);
193 bool saw_memory_error = false;
199 catch (const gdb_exception_error &ex)
201 if (ex.error == MEMORY_ERROR)
202 saw_memory_error = true;
205 /* Expect MEMORY_ERROR. */
206 SELF_CHECK (saw_memory_error);
209 } // namespace selftests
210 #endif /* GDB_SELF_TEST */
213 _initialize_disasm_selftests (void)
216 selftests::register_test_foreach_arch ("print_one_insn",
217 selftests::print_one_insn_test);
218 selftests::register_test_foreach_arch ("memory_error",
219 selftests::memory_error_test);