arc: Add 'set disassembler-options' support
authorShahab Vahedi <shahab@synopsys.com>
Wed, 5 May 2021 21:07:38 +0000 (23:07 +0200)
committerShahab Vahedi <shahab@synopsys.com>
Sat, 5 Jun 2021 09:43:07 +0000 (11:43 +0200)
Implement ARC target support for passing options to the disassembler
through the command interface. e.g.:

gdb> set disassembler-options cpu=hs38_linux ...

gdb/ChangeLog:

* NEWS: Document 'set disassembler-options' support for the ARC
target.
* arc-tdep.c (arc_gdbarch_init): Set
'gdbarch_valid_disassembler_options'.

gdb/doc/ChangeLog:

* gdb.texinfo (Source and Machine Code): Document 'set
disassembler-options' support for the ARC target.

gdb/testsuite/ChangeLog:

* gdb.arch/arc-disassembler-options.exp: New test.
* gdb.arch/arc-disassembler-options.s: New test source.

gdb/ChangeLog
gdb/NEWS
gdb/arc-tdep.c
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.arch/arc-disassembler-options.exp [new file with mode: 0644]
gdb/testsuite/gdb.arch/arc-disassembler-options.s [new file with mode: 0644]

index 8ebb552123f2a68a50f9c1098f4ed874ec4ec4e2..9fc2310d144e4c4d4b907231f2eca03e068f88ee 100644 (file)
@@ -1,3 +1,10 @@
+2021-06-05  Shahab Vahedi  <shahab@synopsys.com>
+
+       * NEWS: Document 'set disassembler-options' support for the ARC
+       target.
+       * arc-tdep.c (arc_gdbarch_init): Set
+       'gdbarch_valid_disassembler_options'.
+
 2021-06-04  Tom Tromey  <tromey@adacore.com>
 
        * dwarf2/read.h (dwarf2_fetch_die_type_sect_off): Add 'var_name'
index ab678acec8bfd45ebd50a4db3f60c2eb097cfde4..56743fc9aeaadecc269e39b6346b51bd9b49dcf0 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -3,6 +3,9 @@
 
 *** Changes since GDB 10
 
+* The 'set disassembler-options' command now supports specifying options
+  for the ARC target.
+
 * GDB now supports general memory tagging functionality if the underlying
   architecture supports the proper primitives and hooks.  Currently this is
   enabled only for AArch64 MTE.
index ece802545c040ef1b49dd7433695e2ddb56de097..3afbf4264fe8122646fafddbf123619eb62a4c51 100644 (file)
@@ -2434,11 +2434,13 @@ arc_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
              arc_disassembler_options = NULL;
              break;
            }
-         set_gdbarch_disassembler_options (gdbarch,
-                                           &arc_disassembler_options);
        }
     }
 
+  set_gdbarch_disassembler_options (gdbarch, &arc_disassembler_options);
+  set_gdbarch_valid_disassembler_options (gdbarch,
+                                         disassembler_options_arc ());
+
   tdesc_use_registers (gdbarch, tdesc, std::move (tdesc_data));
 
   return gdbarch;
index 82bc4f61eba3221dcb30029976f023a6f9959612..61d40b92e639f044f8edbe291871ad40f30ace80 100644 (file)
@@ -1,3 +1,8 @@
+2021-06-05  Shahab Vahedi  <shahab@synopsys.com>
+
+       * gdb.texinfo (Source and Machine Code): Document 'set
+       disassembler-options' support for the ARC target.
+
 2021-06-04  Hannes Domani  <ssbssa@yahoo.de>
 
        * python.texi (TUI Windows In Python): Document Window.click.
index 90d827a50e7fba85ca38c3b3b21e0012b2a6b690..d09b86cda9599dbbea03e64496d9546caa9e8638 100644 (file)
@@ -9879,8 +9879,8 @@ The default value is the empty string.
 
 If it is necessary to specify more than one disassembler option, then
 multiple options can be placed together into a comma separated list.
-Currently this command is only supported on targets ARM, MIPS, PowerPC
-and S/390.
+Currently this command is only supported on targets ARC, ARM, MIPS,
+PowerPC and S/390.
 
 @kindex show disassembler-options
 @item show disassembler-options
index 4c07d3ae0babe2e0adee2971a123cfef0711f4ab..d78bf06d62ce33211ecac1ba2d4af37a0453bc04 100644 (file)
@@ -1,3 +1,8 @@
+2021-06-05  Shahab Vahedi  <shahab@synopsys.com>
+
+       * gdb.arch/arc-disassembler-options.exp: New test.
+       * gdb.arch/arc-disassembler-options.s: New test source.
+
 2021-06-04  Tom Tromey  <tromey@adacore.com>
 
        * gdb.ada/array_of_symbolic_length.exp: New file.
diff --git a/gdb/testsuite/gdb.arch/arc-disassembler-options.exp b/gdb/testsuite/gdb.arch/arc-disassembler-options.exp
new file mode 100644 (file)
index 0000000..6bfe06b
--- /dev/null
@@ -0,0 +1,45 @@
+# Copyright 2021 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# Test ARC disassembler options.
+
+if { ![istarget "arc-*-*"] } then {
+    verbose "Skipping ARC disassembler option test."
+    return
+}
+
+standard_testfile .s
+set objfile [standard_output_file ${testfile}.o]
+
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {}] \
+     != "" } {
+    return
+}
+
+clean_restart ${objfile}
+
+proc arc_disassemble_test { func insn mesg } {
+    gdb_test "disassemble $func" \
+       "Dump of assembler code for function $func:\r\n\
+       \[^:\]+:\t$insn\r\nEnd of assembler dump\." \
+       $mesg
+}
+
+# Verify defaults.
+arc_disassemble_test foo "lr\tr0,\\\[tlbpd0\\\]" "disassemble default"
+
+# Verify option overrides.
+gdb_test "set disassembler-options cpu=arcem"
+arc_disassemble_test foo "lr\tr0,\\\[1120\\\]" "disassemble cpu=arcem"
diff --git a/gdb/testsuite/gdb.arch/arc-disassembler-options.s b/gdb/testsuite/gdb.arch/arc-disassembler-options.s
new file mode 100644 (file)
index 0000000..9f64ce4
--- /dev/null
@@ -0,0 +1,21 @@
+#  This test is part of GDB, the GNU debugger.
+#
+#  Copyright 2021 Free Software Foundation, Inc.
+#
+#  This program is free software; you can redistribute it and/or modify
+#  it under the terms of the GNU General Public License as published by
+#  the Free Software Foundation; either version 3 of the License, or
+#  (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+.globl foo
+foo:
+       lr      r0, [tlbpd0]
+.end   foo