From d8cf7b22f8d38765483b9950a3eaf1909de90aa2 Mon Sep 17 00:00:00 2001 From: cagney Date: Mon, 21 Jun 2004 15:01:01 +0000 Subject: [PATCH] 2004-06-21 Andrew Cagney * gdbarch.sh (read): Delete "print_p" and "description", add "garbage_at_eol". Check for non-empty garbage at end-of-line. Delete references to print_p. (TARGET_ARCHITECTURE): Delete print predicate. * gdbarch.c: Re-generate. --- gdb/ChangeLog | 6 ++++++ gdb/gdbarch.c | 7 +++---- gdb/gdbarch.sh | 40 ++++++++++++---------------------------- 3 files changed, 21 insertions(+), 32 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 498011b65d..da46d292ee 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2004-06-21 Andrew Cagney + * gdbarch.sh (read): Delete "print_p" and "description", add + "garbage_at_eol". Check for non-empty garbage at end-of-line. + Delete references to print_p. + (TARGET_ARCHITECTURE): Delete print predicate. + * gdbarch.c: Re-generate. + * gdbarch.sh: Check that multi-arch methods do not provide a macro. (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code) diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 8720f45dfe..f93e74ce4c 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -770,10 +770,9 @@ gdbarch_dump (struct gdbarch *current_gdbarch, struct ui_file *file) fprintf_unfiltered (file, "gdbarch_dump: TARGET_ARCHITECTURE # %s\n", XSTRING (TARGET_ARCHITECTURE)); - if (TARGET_ARCHITECTURE != NULL) - fprintf_unfiltered (file, - "gdbarch_dump: TARGET_ARCHITECTURE = %s\n", - TARGET_ARCHITECTURE->printable_name); + fprintf_unfiltered (file, + "gdbarch_dump: TARGET_ARCHITECTURE = %s\n", + TARGET_ARCHITECTURE->printable_name); #endif #ifdef TARGET_BFD_VMA_BIT fprintf_unfiltered (file, diff --git a/gdb/gdbarch.sh b/gdb/gdbarch.sh index c285ec4978..09f71ad955 100755 --- a/gdb/gdbarch.sh +++ b/gdb/gdbarch.sh @@ -44,7 +44,7 @@ compare_new () # Format of the input table -read="class macro returntype function formal actual attrib staticdefault predefault postdefault invalid_p fmt print print_p description" +read="class macro returntype function formal actual attrib staticdefault predefault postdefault invalid_p fmt print garbage_at_eol" do_read () { @@ -75,6 +75,13 @@ ${line} EOF IFS="${OFS}" + if test -n "${garbage_at_eol}" + then + echo "Garbage at end-of-line in ${line}" 1>&2 + kill $$ + exit 1 + fi + # .... and then going back through each field and strip out those # that ended up with just that space character. for r in ${read} @@ -360,20 +367,9 @@ do # If PRINT is empty, ``(long)'' is used. - print_p ) : ;; - - # An optional indicator for any predicte to wrap around the - # print member code. - - # () -> Call a custom function to do the dump. - # exp -> Wrap print up in ``if (${print_p}) ... - # ``'' -> No predicate - - # If PRINT_P is empty, ``1'' is always used. + garbage_at_eol ) : ;; - description ) : ;; - - # Currently unused. + # Catches stray fields. *) echo "Bad field ${field}" @@ -386,7 +382,7 @@ function_list () { # See below (DOCO) for description of each field cat <printable_name:TARGET_ARCHITECTURE != NULL +i:TARGET_ARCHITECTURE:const struct bfd_arch_info *:bfd_arch_info::::&bfd_default_arch_struct::::%s:TARGET_ARCHITECTURE->printable_name # i:TARGET_BYTE_ORDER:int:byte_order::::BFD_ENDIAN_BIG # @@ -1592,19 +1588,7 @@ do printf " \"gdbarch_dump: ${macro} # %%s\\\\n\",\n" printf " XSTRING (${macro}));\n" fi - if [ "x${print_p}" = "x()" ] - then - printf " gdbarch_dump_${function} (current_gdbarch);\n" - elif [ "x${print_p}" = "x0" ] - then - printf " /* skip print of ${macro}, print_p == 0. */\n" - elif [ -n "${print_p}" ] - then - printf " if (${print_p})\n" - printf " fprintf_unfiltered (file,\n" - printf " \"gdbarch_dump: ${macro} = %s\\\\n\",\n" "${fmt}" - printf " ${print});\n" - elif class_is_function_p + if class_is_function_p then printf " fprintf_unfiltered (file,\n" printf " \"gdbarch_dump: ${macro} = <0x%%08lx>\\\\n\",\n" -- 2.11.0