diff options
author | Alan Hayward <alan.hayward@arm.com> | 2019-08-16 10:19:18 +0100 |
---|---|---|
committer | Alan Hayward <alan.hayward@arm.com> | 2019-08-16 10:19:18 +0100 |
commit | aa7ca1bb443e8c2baad17392f395d1556fecfafa (patch) | |
tree | a5a8006f5d93879956ad07a0a184bc657e0fc69e /gdb/NEWS | |
parent | fdfc8cf7f04e2f4d24ec9fff331ebd71a2e768a3 (diff) | |
download | gdb-aa7ca1bb443e8c2baad17392f395d1556fecfafa.zip gdb-aa7ca1bb443e8c2baad17392f395d1556fecfafa.tar.gz gdb-aa7ca1bb443e8c2baad17392f395d1556fecfafa.tar.bz2 |
Move [PAC] into a new MI field addr_flags
Add a new print_pc which prints both the PC and a new field addr_flags.
Call this wherever the PC is printed in stack.c.
Add a new gdbarch method get_pc_address_flags to obtain the addr_flag
contents. By default returns an empty string, on AArch64 this returns
PAC if the address has been masked in the frame.
Document this in the manual and NEWS file.
gdb/ChangeLog:
* NEWS (Other MI changes): New subsection.
* aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
(aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
* arch-utils.c (default_get_pc_address_flags): New function.
* arch-utils.h (default_get_pc_address_flags): New declaration.
* gdbarch.sh: Add get_pc_address_flags.
* gdbarch.c: Regenerate.
* gdbarch.h: Likewise.
* stack.c (print_pc): New function.
(print_frame_info) (print_frame): Call print_pc.
gdb/doc/ChangeLog:
* gdb.texinfo (AArch64 Pointer Authentication)
(GDB/MI Breakpoint Information) (Frame Information): Document
addr_field.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -287,6 +287,13 @@ maint show test-options-completion-result These can be used to catch C++ exceptions in a similar fashion to the CLI commands 'catch throw', 'catch rethrow', and 'catch catch'. +* Other MI changes + + ** Backtraces and frames include a new optional field addr_flags which is + given after the addr field. On AArch64 this contains PAC if the address + has been masked in the frame. On all other targets the field is not + present. + * Testsuite The testsuite now creates the files gdb.cmd (containing the arguments |