From 1d7975eb5300c59c69e1c15cfc98fa8894a5a906 Mon Sep 17 00:00:00 2001 From: Iain Sandoe Date: Thu, 28 Jun 2012 09:13:22 +0000 Subject: [PATCH] * auxv.c (fprint_target_auxv): Handle extended cache data tags. --- gdb/ChangeLog | 4 ++++ gdb/auxv.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index abb6b56..d291ae6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-06-28 Iain Sandoe + + * auxv.c (fprint_target_auxv): Handle extended cache data tags. + 2012-06-27 Doug Evans * dwarf2read.c (dwarf2_cu): Add ranges_base. diff --git a/gdb/auxv.c b/gdb/auxv.c index 5072085..12dcb89 100644 --- a/gdb/auxv.c +++ b/gdb/auxv.c @@ -445,6 +445,10 @@ fprint_target_auxv (struct ui_file *file, struct target_ops *ops) TAG (AT_SECURE, _("Boolean, was exec setuid-like?"), dec); TAG (AT_SYSINFO, _("Special system info/entry points"), hex); TAG (AT_SYSINFO_EHDR, _("System-supplied DSO's ELF header"), hex); + TAG (AT_L1I_CACHESHAPE, _("L1 Instruction cache information"), hex); + TAG (AT_L1D_CACHESHAPE, _("L1 Data cache information"), hex); + TAG (AT_L2_CACHESHAPE, _("L2 cache information"), hex); + TAG (AT_L3_CACHESHAPE, _("L3 cache information"), hex); TAG (AT_SUN_UID, _("Effective user ID"), dec); TAG (AT_SUN_RUID, _("Real user ID"), dec); TAG (AT_SUN_GID, _("Effective group ID"), dec); -- 2.7.4