2004-02-02 06:35:24 +08:00
|
|
|
/* Auxiliary vector support for GDB, the GNU debugger.
|
|
|
|
|
2009-01-03 13:58:08 +08:00
|
|
|
Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
|
|
|
|
Free Software Foundation, Inc.
|
2004-02-02 06:35:24 +08:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-24 02:08:50 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2004-02-02 06:35:24 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-24 02:08:50 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2004-02-02 06:35:24 +08:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "valprint.h"
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
|
|
|
|
#include "auxv.h"
|
|
|
|
#include "elf/common.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* This function is called like a to_xfer_partial hook,
|
|
|
|
but must be called with TARGET_OBJECT_AUXV.
|
|
|
|
It handles access via /proc/PID/auxv, which is the common method.
|
|
|
|
This function is appropriate for doing:
|
|
|
|
#define NATIVE_XFER_AUXV procfs_xfer_auxv
|
|
|
|
for a native target that uses inftarg.c's child_xfer_partial hook. */
|
|
|
|
|
|
|
|
LONGEST
|
|
|
|
procfs_xfer_auxv (struct target_ops *ops,
|
|
|
|
int /* enum target_object */ object,
|
|
|
|
const char *annex,
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *readbuf,
|
|
|
|
const gdb_byte *writebuf,
|
2004-02-02 06:35:24 +08:00
|
|
|
ULONGEST offset,
|
|
|
|
LONGEST len)
|
|
|
|
{
|
|
|
|
char *pathname;
|
|
|
|
int fd;
|
|
|
|
LONGEST n;
|
|
|
|
|
|
|
|
gdb_assert (object == TARGET_OBJECT_AUXV);
|
|
|
|
gdb_assert (readbuf || writebuf);
|
|
|
|
|
|
|
|
pathname = xstrprintf ("/proc/%d/auxv", PIDGET (inferior_ptid));
|
|
|
|
fd = open (pathname, writebuf != NULL ? O_WRONLY : O_RDONLY);
|
|
|
|
xfree (pathname);
|
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (offset != (ULONGEST) 0
|
|
|
|
&& lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
|
|
|
|
n = -1;
|
|
|
|
else if (readbuf != NULL)
|
|
|
|
n = read (fd, readbuf, len);
|
|
|
|
else
|
|
|
|
n = write (fd, writebuf, len);
|
|
|
|
|
|
|
|
(void) close (fd);
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read one auxv entry from *READPTR, not reading locations >= ENDPTR.
|
|
|
|
Return 0 if *READPTR is already at the end of the buffer.
|
|
|
|
Return -1 if there is insufficient buffer for a whole entry.
|
|
|
|
Return 1 if an entry was read into *TYPEP and *VALP. */
|
|
|
|
int
|
2008-05-04 17:28:27 +08:00
|
|
|
default_auxv_parse (struct target_ops *ops, gdb_byte **readptr,
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
|
2004-02-02 06:35:24 +08:00
|
|
|
{
|
2008-09-11 22:29:21 +08:00
|
|
|
const int sizeof_auxv_field = gdbarch_ptr_bit (target_gdbarch)
|
|
|
|
/ TARGET_CHAR_BIT;
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *ptr = *readptr;
|
2004-02-02 06:35:24 +08:00
|
|
|
|
|
|
|
if (endptr == ptr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (endptr - ptr < sizeof_auxv_field * 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*typep = extract_unsigned_integer (ptr, sizeof_auxv_field);
|
|
|
|
ptr += sizeof_auxv_field;
|
|
|
|
*valp = extract_unsigned_integer (ptr, sizeof_auxv_field);
|
|
|
|
ptr += sizeof_auxv_field;
|
|
|
|
|
|
|
|
*readptr = ptr;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-05-04 17:28:27 +08:00
|
|
|
/* Read one auxv entry from *READPTR, not reading locations >= ENDPTR.
|
|
|
|
Return 0 if *READPTR is already at the end of the buffer.
|
|
|
|
Return -1 if there is insufficient buffer for a whole entry.
|
|
|
|
Return 1 if an entry was read into *TYPEP and *VALP. */
|
|
|
|
int
|
|
|
|
target_auxv_parse (struct target_ops *ops, gdb_byte **readptr,
|
|
|
|
gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
|
|
|
|
{
|
|
|
|
struct target_ops *t;
|
|
|
|
for (t = ops; t != NULL; t = t->beneath)
|
|
|
|
if (t->to_auxv_parse != NULL)
|
|
|
|
return t->to_auxv_parse (t, readptr, endptr, typep, valp);
|
|
|
|
|
|
|
|
return default_auxv_parse (ops, readptr, endptr, typep, valp);
|
|
|
|
}
|
|
|
|
|
2004-02-02 06:35:24 +08:00
|
|
|
/* Extract the auxiliary vector entry with a_type matching MATCH.
|
|
|
|
Return zero if no such entry was found, or -1 if there was
|
|
|
|
an error getting the information. On success, return 1 after
|
|
|
|
storing the entry's value field in *VALP. */
|
|
|
|
int
|
|
|
|
target_auxv_search (struct target_ops *ops, CORE_ADDR match, CORE_ADDR *valp)
|
|
|
|
{
|
|
|
|
CORE_ADDR type, val;
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *data;
|
2006-07-13 02:13:45 +08:00
|
|
|
LONGEST n = target_read_alloc (ops, TARGET_OBJECT_AUXV, NULL, &data);
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *ptr = data;
|
2004-02-02 06:35:24 +08:00
|
|
|
int ents = 0;
|
|
|
|
|
|
|
|
if (n <= 0)
|
|
|
|
return n;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
switch (target_auxv_parse (ops, &ptr, data + n, &type, &val))
|
|
|
|
{
|
|
|
|
case 1: /* Here's an entry, check it. */
|
|
|
|
if (type == match)
|
|
|
|
{
|
|
|
|
xfree (data);
|
|
|
|
*valp = val;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0: /* End of the vector. */
|
|
|
|
xfree (data);
|
|
|
|
return 0;
|
|
|
|
default: /* Bogosity. */
|
|
|
|
xfree (data);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Print the contents of the target's AUXV on the specified file. */
|
|
|
|
int
|
|
|
|
fprint_target_auxv (struct ui_file *file, struct target_ops *ops)
|
|
|
|
{
|
|
|
|
CORE_ADDR type, val;
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *data;
|
2006-07-13 02:13:45 +08:00
|
|
|
LONGEST len = target_read_alloc (ops, TARGET_OBJECT_AUXV, NULL,
|
|
|
|
&data);
|
2005-05-24 02:20:03 +08:00
|
|
|
gdb_byte *ptr = data;
|
2004-02-02 06:35:24 +08:00
|
|
|
int ents = 0;
|
|
|
|
|
|
|
|
if (len <= 0)
|
|
|
|
return len;
|
|
|
|
|
|
|
|
while (target_auxv_parse (ops, &ptr, data + len, &type, &val) > 0)
|
|
|
|
{
|
|
|
|
const char *name = "???";
|
|
|
|
const char *description = "";
|
|
|
|
enum { dec, hex, str } flavor = hex;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
#define TAG(tag, text, kind) \
|
|
|
|
case tag: name = #tag; description = text; flavor = kind; break
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
TAG (AT_NULL, _("End of vector"), hex);
|
|
|
|
TAG (AT_IGNORE, _("Entry should be ignored"), hex);
|
|
|
|
TAG (AT_EXECFD, _("File descriptor of program"), dec);
|
|
|
|
TAG (AT_PHDR, _("Program headers for program"), hex);
|
|
|
|
TAG (AT_PHENT, _("Size of program header entry"), dec);
|
|
|
|
TAG (AT_PHNUM, _("Number of program headers"), dec);
|
|
|
|
TAG (AT_PAGESZ, _("System page size"), dec);
|
|
|
|
TAG (AT_BASE, _("Base address of interpreter"), hex);
|
|
|
|
TAG (AT_FLAGS, _("Flags"), hex);
|
|
|
|
TAG (AT_ENTRY, _("Entry point of program"), hex);
|
|
|
|
TAG (AT_NOTELF, _("Program is not ELF"), dec);
|
|
|
|
TAG (AT_UID, _("Real user ID"), dec);
|
|
|
|
TAG (AT_EUID, _("Effective user ID"), dec);
|
|
|
|
TAG (AT_GID, _("Real group ID"), dec);
|
|
|
|
TAG (AT_EGID, _("Effective group ID"), dec);
|
|
|
|
TAG (AT_CLKTCK, _("Frequency of times()"), dec);
|
|
|
|
TAG (AT_PLATFORM, _("String identifying platform"), str);
|
|
|
|
TAG (AT_HWCAP, _("Machine-dependent CPU capability hints"), hex);
|
|
|
|
TAG (AT_FPUCW, _("Used FPU control word"), dec);
|
|
|
|
TAG (AT_DCACHEBSIZE, _("Data cache block size"), dec);
|
|
|
|
TAG (AT_ICACHEBSIZE, _("Instruction cache block size"), dec);
|
|
|
|
TAG (AT_UCACHEBSIZE, _("Unified cache block size"), dec);
|
|
|
|
TAG (AT_IGNOREPPC, _("Entry should be ignored"), dec);
|
2008-11-13 23:07:54 +08:00
|
|
|
TAG (AT_BASE_PLATFORM, _("String identifying base platform"), str);
|
|
|
|
TAG (AT_EXECFN, _("File name of executable"), str);
|
|
|
|
TAG (AT_SECURE, _("Boolean, was exec setuid-like?"), dec);
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
TAG (AT_SYSINFO, _("Special system info/entry points"), hex);
|
|
|
|
TAG (AT_SYSINFO_EHDR, _("System-supplied DSO's ELF header"), 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);
|
|
|
|
TAG (AT_SUN_RGID, _("Real group ID"), dec);
|
|
|
|
TAG (AT_SUN_LDELF, _("Dynamic linker's ELF header"), hex);
|
|
|
|
TAG (AT_SUN_LDSHDR, _("Dynamic linker's section headers"), hex);
|
|
|
|
TAG (AT_SUN_LDNAME, _("String giving name of dynamic linker"), str);
|
|
|
|
TAG (AT_SUN_LPAGESZ, _("Large pagesize"), dec);
|
|
|
|
TAG (AT_SUN_PLATFORM, _("Platform name string"), str);
|
|
|
|
TAG (AT_SUN_HWCAP, _("Machine-dependent CPU capability hints"), hex);
|
|
|
|
TAG (AT_SUN_IFLUSH, _("Should flush icache?"), dec);
|
|
|
|
TAG (AT_SUN_CPU, _("CPU name string"), str);
|
|
|
|
TAG (AT_SUN_EMUL_ENTRY, _("COFF entry point address"), hex);
|
|
|
|
TAG (AT_SUN_EMUL_EXECFD, _("COFF executable file descriptor"), dec);
|
2004-02-02 06:35:24 +08:00
|
|
|
TAG (AT_SUN_EXECNAME,
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
_("Canonicalized file name given to execve"), str);
|
|
|
|
TAG (AT_SUN_MMU, _("String for name of MMU module"), str);
|
|
|
|
TAG (AT_SUN_LDDATA, _("Dynamic linker's data segment address"), hex);
|
2008-01-17 00:27:37 +08:00
|
|
|
TAG (AT_SUN_AUXFLAGS,
|
|
|
|
_("AF_SUN_ flags passed from the kernel"), hex);
|
2004-02-02 06:35:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fprintf_filtered (file, "%-4s %-20s %-30s ",
|
2008-09-05 06:49:30 +08:00
|
|
|
plongest (type), name, description);
|
2004-02-02 06:35:24 +08:00
|
|
|
switch (flavor)
|
|
|
|
{
|
|
|
|
case dec:
|
2008-09-05 06:49:30 +08:00
|
|
|
fprintf_filtered (file, "%s\n", plongest (val));
|
2004-02-02 06:35:24 +08:00
|
|
|
break;
|
|
|
|
case hex:
|
|
|
|
fprintf_filtered (file, "0x%s\n", paddr_nz (val));
|
|
|
|
break;
|
|
|
|
case str:
|
gdb
* varobj.c (value_get_print_value): Include valprint.h.
(value_get_print_value): Use get_formatted_print_options.
* value.h (struct value_print_options): Declare.
(value_print, val_print, common_val_print, val_print_string):
Update.
* value.c: Include valprint.h.
(show_values): Use get_user_print_options.
(show_convenience): Likewise.
* valprint.h (prettyprint_arrays, prettyprint_structs): Don't
declare.
(struct value_print_options): New type.
(vtblprint, unionprint, addressprint, objectprint, print_max,
inspect_it, repeat_count_threshold, output_format,
stop_print_at_null): Don't declare.
(user_print_options, get_user_print_options,
get_raw_print_options, get_formatted_print_options): Declare.
(print_array_indexes_p): Don't declare.
(maybe_print_array_index, val_print_array_elements): Update.
* valprint.c (print_max): Remove.
(user_print_options): New global.
(get_user_print_options, get_raw_print_options,
get_formatted_print_options): New functions.
(print_array_indexes, repeat_count_threshold, stop_print_at_null,
prettyprint_structs, prettyprint_arrays, unionprint,
addressprint): Remove.
(val_print): Remove format, deref_ref, pretty arguments; add
options. Update.
(common_val_print): Likewise.
(print_array_indexes_p): Remove.
(maybe_print_array_index): Remove format, pretty arguments; add
options. Update.
(val_print_array_elements): Remove format, deref_ref, pretty
arguments; add options. Update.
(val_print_string): Add options argument. Update.
(_initialize_valprint): Use user_print_options.
(output_format): Remove.
(set_output_radix_1): Use user_print_options.
* typeprint.c: Include valprint.h.
(objectprint): Don't declare.
(whatis_exp): Use get_user_print_options.
* tui/tui-regs.c: Include valprint.h.
(tui_register_format): Use get_formatted_print_options.
* tracepoint.c: Include valprint.h.
(addressprint): Don't declare.
(trace_mention): Use get_user_print_options.
(tracepoints_info): Likewise.
* stack.c (print_frame_args): Use get_raw_print_options.
(print_frame_info): Use get_user_print_options.
(print_frame): Likewise.
* sh64-tdep.c: Include valprint.h
(sh64_do_register): Use get_formatted_print_options.
* scm-valprint.c (scm_inferior_print): Remove format, deref_ref,
pretty arguments; add options.
(scm_scmlist_print): Likewise. Update.
(scm_scmval_print): Likewise.
(scm_val_print): Likewise.
(scm_value_print): Remove format, pretty arguments; add options.
Update.
* scm-lang.h (scm_value_print, scm_val_print, scm_scmval_print):
Update.
* scm-lang.c (scm_printstr): Add options argument.
* python/python-value.c: Include valprint.h.
(valpy_str): Use get_user_print_options.
* printcmd.c: Include valprint.h.
(addressprint): Don't declare.
(inspect_it): Remove.
(print_formatted): Remove format option; add options. Update.
(print_scalar_formatted): Likewise.
(print_address_demangle): Use get_user_print_options.
(do_examine): Use get_formatted_print_options.
(print_command_1): Likewise.
(output_command): Use get_formatted_print_options.
(do_one_display): Likewise.
(print_variable_value): Use get_user_print_options.
* p-valprint.c (pascal_val_print): Remove format, deref_ref,
pretty arguments; add options. Update.
(pascal_value_print): Remove format, pretty arguments; add
options. Update.
(vtblprint, objectprint): Don't declare.
(pascal_static_field_print): Remove.
(pascal_object_print_value_fields): Remove format, pretty
arguments; add options. Update.
(pascal_object_print_static_field): Likewise.
(_initialize_pascal_valprint): Use user_print_options. Update.
* p-lang.h (pascal_val_print, pascal_value_print,
pascal_printstr, pascal_object_print_value_fields): Update.
(vtblprint, static_field_print): Don't declare.
* p-lang.c (pascal_printstr): Add options argument. Update.
* objc-lang.c (objc_printstr): Add options argument. Update.
* mt-tdep.c: Include valprint.h.
(mt_registers_info): Use get_raw_print_options.
* mips-tdep.c: Include valprint.h.
(mips_print_fp_register): Use get_formatted_print_options.
(mips_print_register): Likewise.
* mi/mi-main.c: Include valprint.h.
(get_register): Use get_user_print_options.
(mi_cmd_data_evaluate_expression): Likewise.
(mi_cmd_data_read_memory): Use get_formatted_print_options.
* mi/mi-cmd-stack.c: Include valprint.h.
(list_args_or_locals): Use get_raw_print_options.
* m2-valprint.c (print_function_pointer_address): Add addressprint
argument.
(m2_print_long_set): Remove format, pretty arguments.
(m2_print_unbounded_array): Remove format, deref_ref, pretty
arguments; add options. Update.
(print_unpacked_pointer): Remove format argument; add options.
Now static. Update.
(print_variable_at_address): Remove format, deref_ref, pretty
arguments; add options. Update.
(m2_print_array_contents): Likewise.
(m2_val_print): Likewise.
* m2-lang.h (m2_val_print): Update.
* m2-lang.c (m2_printstr): Add options argument. Update.
* language.h (struct value_print_options): Declare.
(struct language_defn) <la_printstr>: Add options argument.
<la_val_print>: Remove format, deref_ref, pretty argument; add
options.
<la_value_print>: Remove format, pretty arguments; add options.
<la_print_array_index>: Likewise.
(LA_VAL_PRINT, LA_VALUE_PRINT, LA_PRINT_STRING,
LA_PRINT_ARRAY_INDEX): Update.
(default_print_array_index): Update.
* language.c (default_print_array_index): Remove format, pretty
arguments; add options. Update.
(unk_lang_printstr): Add options argument.
(unk_lang_val_print): Remove format, deref_ref, pretty arguments;
add options.
(unk_lang_value_print): Remove format, pretty arguments; add
options.
* jv-valprint.c (java_value_print): Remove format, pretty
arguments; add options. Update.
(java_print_value_fields): Likewise.
(java_val_print): Remove format, deref_ref, pretty arguments; add
options. Update.
* jv-lang.h (java_val_print, java_value_print): Declare.
* infcmd.c: Include valprint.h.
(print_return_value): Use get_raw_print_options.
(default_print_registers_info): Use get_user_print_options,
get_formatted_print_options.
(registers_info): Use get_formatted_print_options.
* gdbtypes.h (struct value_print_options): Declare.
(print_scalar_formatted): Update.
* f-valprint.c (f77_print_array_1): Remove format, deref_ref,
pretty arguments; add options. Update.
(f77_print_array): Likewise.
(f_val_print): Likewise.
* f-lang.h (f_val_print): Update.
* f-lang.c (f_printstr): Add options argument. Update.
(c_value_print): Update declaration.
* expprint.c: Include valprint.h.
(print_subexp_standard): Use get_raw_print_options,
get_user_print_options.
* eval.c: Include valprint.h.
(objectprint): Don't declare.
(evaluate_subexp_standard): Use get_user_print_options.
* cp-valprint.c (vtblprint, objectprint, static_field_print):
Remove.
(cp_print_value_fields): Remove format, pretty arguments; add
options. Update.
(cp_print_value): Likewise.
(cp_print_static_field): Likewise.
(_initialize_cp_valprint): Use user_print_options. Update.
* c-valprint.c (print_function_pointer_address): Add addressprint
argument.
(c_val_print): Remove format, deref_ref, pretty arguments; add
options. Update.
(c_value_print): Add options argument. Update.
* c-lang.h (c_val_print, c_value_print, c_printstr): Update.
(vtblprint, static_field_print): Don't declare.
(cp_print_value_fields): Update.
* c-lang.c (c_printstr): Add options argument. Update.
* breakpoint.c: Include valprint.h.
(addressprint): Don't declare.
(watchpoint_value_print): Use get_user_print_options.
(print_one_breakpoint_location): Likewise.
(breakpoint_1, print_it_catch_fork, print_it_catch_vfork, mention,
print_exception_catchpoint): Likewise.
* auxv.c (fprint_target_auxv): Don't declare addressprint. Use
get_user_print_options.
* ada-valprint.c (struct ada_val_print_args): Remove format,
deref_ref, and pretty; add options.
(print_optional_low_bound): Add options argument.
(val_print_packed_array_elements): Remove format and pretty
arguments; add options. Update.
(printstr): Add options argument. Update.
(ada_printstr): Likewise.
(ada_val_print): Remove format, deref_ref, pretty arguments; add
options argument. Update.
(ada_val_print_stub): Update.
(ada_val_print_array): Remove format, deref_ref, pretty arguments;
add options. Update.
(ada_val_print_1): Likewise.
(print_variant_part): Likewise.
(ada_value_print): Remove format, pretty arguments; add options.
Update.
(print_record): Likewise.
(print_field_values): Likewise.
* ada-lang.h (ada_val_print, ada_value_print, ada_printstr):
Update.
* ada-lang.c (ada_print_array_index): Add options argument; remove
format and pretty arguments.
(print_one_exception): Use get_user_print_options.
gdb/testsuite
* gdb.base/exprs.exp (test_expr): Add enum formatting tests.
2008-10-29 01:19:58 +08:00
|
|
|
{
|
|
|
|
struct value_print_options opts;
|
|
|
|
get_user_print_options (&opts);
|
|
|
|
if (opts.addressprint)
|
|
|
|
fprintf_filtered (file, "0x%s", paddr_nz (val));
|
|
|
|
val_print_string (val, -1, 1, file, &opts);
|
|
|
|
fprintf_filtered (file, "\n");
|
|
|
|
}
|
2004-02-02 06:35:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
++ents;
|
2008-07-18 04:56:11 +08:00
|
|
|
if (type == AT_NULL)
|
|
|
|
break;
|
2004-02-02 06:35:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
xfree (data);
|
|
|
|
|
|
|
|
return ents;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
info_auxv_command (char *cmd, int from_tty)
|
|
|
|
{
|
|
|
|
if (! target_has_stack)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
error (_("The program has no auxiliary information now."));
|
2004-02-02 06:35:24 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int ents = fprint_target_auxv (gdb_stdout, ¤t_target);
|
|
|
|
if (ents < 0)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
error (_("No auxiliary vector found, or failed reading it."));
|
2004-02-02 06:35:24 +08:00
|
|
|
else if (ents == 0)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
error (_("Auxiliary vector is empty."));
|
2004-02-02 06:35:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern initialize_file_ftype _initialize_auxv; /* -Wmissing-prototypes; */
|
|
|
|
|
|
|
|
void
|
|
|
|
_initialize_auxv (void)
|
|
|
|
{
|
|
|
|
add_info ("auxv", info_auxv_command,
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 23:43:50 +08:00
|
|
|
_("Display the inferior's auxiliary vector.\n\
|
|
|
|
This is information provided by the operating system at program startup."));
|
2004-02-02 06:35:24 +08:00
|
|
|
}
|