Re: [PATCH 1/5] aarch64: Create definitions for AARCH64_RA_SIGN_STATE register

2024-08-20 Thread Mark Wielaard
Hi, Sorry, one more thing. On Fri, Jun 14, 2024 at 03:47:15PM +0100, Steve Capper wrote: > index 4be32de5..f6d26044 100644 > --- a/libdw/dwarf.h > +++ b/libdw/dwarf.h > @@ -1028,6 +1028,11 @@ enum > DW_EH_PE_indirect = 0x80 >}; > > +/* AARCH64 DWARF registers. */ > +enum > + { > +

Re: [PATCH 1/5] aarch64: Create definitions for AARCH64_RA_SIGN_STATE register

2024-08-20 Thread Mark Wielaard
On Fri, Jun 14, 2024 at 03:47:15PM +0100, Steve Capper wrote: > From: German Gomez > > This register will be used to indicate whether a return address is > mangled with a PAC or not, in accordance with the DWARF AARCH64 ABI [1]. > > [1] > https://github.com/ARM-software/abi-aa/blob/main/aadwarf

[PATCH 1/5] aarch64: Create definitions for AARCH64_RA_SIGN_STATE register

2024-06-14 Thread Steve Capper
From: German Gomez This register will be used to indicate whether a return address is mangled with a PAC or not, in accordance with the DWARF AARCH64 ABI [1]. [1] https://github.com/ARM-software/abi-aa/blob/main/aadwarf64/aadwarf64.rst#41dwarf-register-names Signed-off-by: German Gomez Signed