arc: Add hardware loop detection
authorShahab Vahedi <shahab@synopsys.com>
Thu, 9 Jul 2020 15:44:01 +0000 (17:44 +0200)
committerShahab Vahedi <shahab@synopsys.com>
Tue, 25 Aug 2020 15:31:29 +0000 (17:31 +0200)
commitfdd8731bd137e55453b501fa5404b5e6f60ddea0
tree561a2381ea1468e6c1c4f838eef1447323eb9cfd
parent22459524998c672dc66fd0039d9f795dd6c7cbf9
arc: Add hardware loop detection

For ARC there are registers that are not part of a required set in XML
target descriptions by default, but are almost always present on ARC
targets and are universally exposed by the ptrace interface.  Hardware
loop registers being one of them.

LP_START and LP_END auxiliary registers are hardware loop start and end.
Formally, they are optional, but it is hard to find an ARC configuration
that doesn't have them.  They are always present in processors that can
run GNU/Linux.  GDB needs to know about those registers to implement
proper software single stepping, since they affect  what instruction
will be next.

This commit adds the code to check for the existance of "lp_start" and
"lp_end" in XML target descriptions. If they exist, then the function
reports that the target supports hardware loops.

gdb/ChangeLog:

* arc-tdep.c (arc_check_for_hardware_loop): New.
* arc-tdep.h (gdbarch_tdep): New field has_hw_loops.

gdb/doc/ChangeLog:

* gdb.texinfo (Synopsys ARC): Document LP_START, LP_END and BTA.
gdb/ChangeLog
gdb/arc-tdep.c
gdb/arc-tdep.h
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
This page took 0.025225 seconds and 4 git commands to generate.