public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Update ELF auxv entry types
@ 2020-02-28  9:12 Luis Machado
  2020-03-03 13:15 ` Nick Clifton
  0 siblings, 1 reply; 3+ messages in thread
From: Luis Machado @ 2020-02-28  9:12 UTC (permalink / raw)
  To: binutils

I noticed GDB didn't know a particular AT tag (51) when doing some debugging.
Turns out we're missing a few entries compared to glibc's headers.

This patch adds them to the ELF include file. A separate GDB patch to use
these has been approved already.

include/ChangeLog:

YYYY-MM-DD  Luis Machado  <luis.machado@linaro.org>

	* elf/common.h (AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY)
	(AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE)
	(AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE, AT_L3_CACHEGEOMETRY)
	(AT_MINSIGSTKSZ): New defines, imported from glibc.
---
 include/elf/common.h | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/include/elf/common.h b/include/elf/common.h
index 53b72445ca..18c898cf6b 100644
--- a/include/elf/common.h
+++ b/include/elf/common.h
@@ -1222,6 +1222,21 @@
 #define AT_L2_CACHESHAPE  36
 #define AT_L3_CACHESHAPE  37
 
+/* Shapes of the caches, with more room to describe them.
+   *GEOMETRY are comprised of cache line size in bytes in the bottom 16 bits
+   and the cache associativity in the next 16 bits.  */
+#define AT_L1I_CACHESIZE	40
+#define AT_L1I_CACHEGEOMETRY	41
+#define AT_L1D_CACHESIZE	42
+#define AT_L1D_CACHEGEOMETRY	43
+#define AT_L2_CACHESIZE		44
+#define AT_L2_CACHEGEOMETRY	45
+#define AT_L3_CACHESIZE		46
+#define AT_L3_CACHEGEOMETRY	47
+
+#define AT_MINSIGSTKSZ		51 /* Stack needed for signal delivery
+				      (AArch64).  */
+
 #define AT_FREEBSD_EXECPATH     15      /* Path to the executable. */
 #define AT_FREEBSD_CANARY       16      /* Canary for SSP. */
 #define AT_FREEBSD_CANARYLEN    17      /* Length of the canary. */
-- 
2.17.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Update ELF auxv entry types
  2020-02-28  9:12 [PATCH] Update ELF auxv entry types Luis Machado
@ 2020-03-03 13:15 ` Nick Clifton
  2020-03-03 13:23   ` Luis Machado
  0 siblings, 1 reply; 3+ messages in thread
From: Nick Clifton @ 2020-03-03 13:15 UTC (permalink / raw)
  To: Luis Machado, binutils

Hi Luis,

> YYYY-MM-DD  Luis Machado  <luis.machado@linaro.org>
> 
> 	* elf/common.h (AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY)
> 	(AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE)
> 	(AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE, AT_L3_CACHEGEOMETRY)
> 	(AT_MINSIGSTKSZ): New defines, imported from glibc.

Approved and applied.

Cheers
  Nick

 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Update ELF auxv entry types
  2020-03-03 13:15 ` Nick Clifton
@ 2020-03-03 13:23   ` Luis Machado
  0 siblings, 0 replies; 3+ messages in thread
From: Luis Machado @ 2020-03-03 13:23 UTC (permalink / raw)
  To: Nick Clifton; +Cc: binutils

On Tue, 3 Mar 2020 at 10:15, Nick Clifton <nickc@redhat.com> wrote:

> Hi Luis,
>
> > YYYY-MM-DD  Luis Machado  <luis.machado@linaro.org>
> >
> >       * elf/common.h (AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY)
> >       (AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE)
> >       (AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE, AT_L3_CACHEGEOMETRY)
> >       (AT_MINSIGSTKSZ): New defines, imported from glibc.
>
> Approved and applied.
>
> Cheers
>   Nick
>

Thanks Nick!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-03 13:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-28  9:12 [PATCH] Update ELF auxv entry types Luis Machado
2020-03-03 13:15 ` Nick Clifton
2020-03-03 13:23   ` Luis Machado

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).