X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=binutils%2Fprdbg.c;h=9bd01bc071a8704e0c0662708d4eae8338e3b6f6;hb=640d6bfddb82560687d8796aa7f0675c93bb062f;hp=579215a6684db52ccf09e23b3e718891f8bd6abf;hpb=3f5e193bd6e036c43af9326d777aed6cfc14fbcb;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/prdbg.c b/binutils/prdbg.c index 579215a668..9bd01bc071 100644 --- a/binutils/prdbg.c +++ b/binutils/prdbg.c @@ -1,6 +1,5 @@ /* prdbg.c -- Print out generic debugging information. - Copyright 1995, 1996, 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, - 2009 Free Software Foundation, Inc. + Copyright (C) 1995-2017 Free Software Foundation, Inc. Written by Ian Lance Taylor . Tags style generation written by Salvador E. Tropea . @@ -292,7 +291,8 @@ static const struct debug_write_fns tg_fns = bfd_boolean print_debugging_info (FILE *f, void *dhandle, bfd *abfd, asymbol **syms, - void *demangler, bfd_boolean as_tags) + char * (*demangler) (struct bfd *, const char *, int), + bfd_boolean as_tags) { struct pr_handle info; @@ -303,7 +303,7 @@ print_debugging_info (FILE *f, void *dhandle, bfd *abfd, asymbol **syms, info.filename = NULL; info.abfd = abfd; info.syms = syms; - info.demangler = (char * (*)(struct bfd *, const char *, int)) demangler; + info.demangler = demangler; if (as_tags) { @@ -672,7 +672,7 @@ pr_enum_type (void *p, const char *tag, const char **names, if (values[i] != val) { - char ab[20]; + char ab[22]; print_vma (values[i], ab, FALSE, FALSE); if (! append_type (info, " = ") @@ -731,10 +731,16 @@ pr_function_type (void *p, int argcount, bfd_boolean varargs) for (i = argcount - 1; i >= 0; i--) { if (! substitute_type (info, "")) - return FALSE; + { + free (arg_types); + return FALSE; + } arg_types[i] = pop_type (info); if (arg_types[i] == NULL) - return FALSE; + { + free (arg_types); + return FALSE; + } len += strlen (arg_types[i]) + 2; } if (varargs) @@ -796,7 +802,7 @@ static bfd_boolean pr_range_type (void *p, bfd_signed_vma lower, bfd_signed_vma upper) { struct pr_handle *info = (struct pr_handle *) p; - char abl[20], abu[20]; + char abl[22], abu[22]; assert (info->stack != NULL); @@ -821,7 +827,7 @@ pr_array_type (void *p, bfd_signed_vma lower, bfd_signed_vma upper, { struct pr_handle *info = (struct pr_handle *) p; char *range_type; - char abl[20], abu[20], ab[50]; + char abl[22], abu[22], ab[50]; range_type = pop_type (info); if (range_type == NULL) @@ -952,10 +958,16 @@ pr_method_type (void *p, bfd_boolean domain, int argcount, bfd_boolean varargs) for (i = argcount - 1; i >= 0; i--) { if (! substitute_type (info, "")) - return FALSE; + { + free (arg_types); + return FALSE; + } arg_types[i] = pop_type (info); if (arg_types[i] == NULL) - return FALSE; + { + free (arg_types); + return FALSE; + } len += strlen (arg_types[i]) + 2; } if (varargs) @@ -1139,7 +1151,7 @@ pr_struct_field (void *p, const char *name, bfd_vma bitpos, bfd_vma bitsize, enum debug_visibility visibility) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20]; + char ab[22]; char *t; if (! substitute_type (info, name)) @@ -1323,7 +1335,7 @@ pr_class_baseclass (void *p, bfd_vma bitpos, bfd_boolean is_virtual, struct pr_handle *info = (struct pr_handle *) p; char *t; const char *prefix; - char ab[20]; + char ab[22]; char *s, *l, *n; assert (info->stack != NULL && info->stack->next != NULL); @@ -1483,7 +1495,7 @@ pr_class_method_variant (void *p, const char *physname, return FALSE; if (context || voffset != 0) { - char ab[20]; + char ab[22]; if (context) { @@ -1590,7 +1602,7 @@ pr_tag_type (void *p, const char *name, unsigned int id, { struct pr_handle *info = (struct pr_handle *) p; const char *t, *tag; - char idbuf[20]; + char idbuf[22]; switch (kind) { @@ -1686,7 +1698,7 @@ static bfd_boolean pr_int_constant (void *p, const char *name, bfd_vma val) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20]; + char ab[22]; indent (info); print_vma (val, ab, FALSE, FALSE); @@ -1713,7 +1725,7 @@ pr_typed_constant (void *p, const char *name, bfd_vma val) { struct pr_handle *info = (struct pr_handle *) p; char *t; - char ab[20]; + char ab[22]; t = pop_type (info); if (t == NULL) @@ -1736,7 +1748,7 @@ pr_variable (void *p, const char *name, enum debug_var_kind kind, { struct pr_handle *info = (struct pr_handle *) p; char *t; - char ab[20]; + char ab[22]; if (! substitute_type (info, name)) return FALSE; @@ -1799,7 +1811,7 @@ pr_function_parameter (void *p, const char *name, { struct pr_handle *info = (struct pr_handle *) p; char *t; - char ab[20]; + char ab[22]; if (kind == DEBUG_PARM_REFERENCE || kind == DEBUG_PARM_REF_REG) @@ -1837,7 +1849,7 @@ static bfd_boolean pr_start_block (void *p, bfd_vma addr) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20]; + char ab[22]; if (info->parameter > 0) { @@ -1860,7 +1872,7 @@ static bfd_boolean pr_lineno (void *p, const char *filename, unsigned long lineno, bfd_vma addr) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20]; + char ab[22]; indent (info); print_vma (addr, ab, TRUE, TRUE); @@ -1875,7 +1887,7 @@ static bfd_boolean pr_end_block (void *p, bfd_vma addr) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20]; + char ab[22]; info->indent -= 2; @@ -1947,13 +1959,13 @@ translate_addresses (bfd *abfd, char *addr_hex, FILE *f, asymbol **syms) /* Start a new compilation unit. */ static bfd_boolean -tg_start_compilation_unit (void * p, const char *filename ATTRIBUTE_UNUSED) +tg_start_compilation_unit (void * p, const char *fname ATTRIBUTE_UNUSED) { struct pr_handle *info = (struct pr_handle *) p; free (info->filename); /* Should it be relative? best way to do it here?. */ - info->filename = strdup (filename); + info->filename = strdup (fname); return TRUE; } @@ -1961,13 +1973,13 @@ tg_start_compilation_unit (void * p, const char *filename ATTRIBUTE_UNUSED) /* Start a source file within a compilation unit. */ static bfd_boolean -tg_start_source (void *p, const char *filename) +tg_start_source (void *p, const char *fname) { struct pr_handle *info = (struct pr_handle *) p; free (info->filename); /* Should it be relative? best way to do it here?. */ - info->filename = strdup (filename); + info->filename = strdup (fname); return TRUE; } @@ -1981,7 +1993,7 @@ tg_enum_type (void *p, const char *tag, const char **names, struct pr_handle *info = (struct pr_handle *) p; unsigned int i; const char *name; - char ab[20]; + char ab[22]; if (! pr_enum_type (p, tag, names, values)) return FALSE; @@ -2088,8 +2100,7 @@ tg_struct_field (void *p, const char *name, bfd_vma bitpos ATTRIBUTE_UNUSED, static bfd_boolean tg_end_struct_type (void *p ATTRIBUTE_UNUSED) { - struct pr_handle *info = (struct pr_handle *) p; - assert (info->stack != NULL); + assert (((struct pr_handle *) p)->stack != NULL); return TRUE; } @@ -2176,17 +2187,30 @@ tg_class_static_member (void *p, const char *name, sprintf (full_name, "%s::%s", info->stack->next->type, name); if (! substitute_type (info, full_name)) - return FALSE; + { + free (full_name); + return FALSE; + } if (! prepend_type (info, "static ")) - return FALSE; + { + free (full_name); + return FALSE; + } t = pop_type (info); if (t == NULL) - return FALSE; + { + free (full_name); + return FALSE; + } if (! tg_fix_visibility (info, visibility)) - return FALSE; + { + free (t); + free (full_name); + return FALSE; + } fprintf (info->f, "%s\t%s\t0;\"\tkind:x\ttype:%s\tclass:%s\taccess:%s\n", name, info->filename, t, info->stack->type, @@ -2296,12 +2320,18 @@ tg_class_method_variant (void *p, const char *physname ATTRIBUTE_UNUSED, /* Stick the name of the method into its type. */ if (! substitute_type (info, method_name)) - return FALSE; + { + free (method_name); + return FALSE; + } /* Get the type. */ method_type = pop_type (info); if (method_type == NULL) - return FALSE; + { + free (method_name); + return FALSE; + } /* Pull off the context type if there is one. */ if (! context) @@ -2310,12 +2340,21 @@ tg_class_method_variant (void *p, const char *physname ATTRIBUTE_UNUSED, { context_type = pop_type (info); if (context_type == NULL) - return FALSE; + { + free (method_type); + free (method_name); + return FALSE; + } } /* Now the top of the stack is the class. */ if (! tg_fix_visibility (info, visibility)) - return FALSE; + { + free (method_type); + free (method_name); + free (context_type); + return FALSE; + } fprintf (info->f, "%s\t%s\t0;\"\tkind:p\ttype:%s\tclass:%s\n", method_name, info->filename, method_type, info->stack->type); @@ -2361,16 +2400,26 @@ tg_class_static_method_variant (void *p, method_name = strdup (info->stack->next->method); /* Stick the name of the method into its type. */ if (! substitute_type (info, info->stack->next->method)) - return FALSE; + { + free (method_name); + return FALSE; + } /* Get the type. */ method_type = pop_type (info); if (method_type == NULL) - return FALSE; + { + free (method_name); + return FALSE; + } /* Now the top of the stack is the class. */ if (! tg_fix_visibility (info, visibility)) - return FALSE; + { + free (method_type); + free (method_name); + return FALSE; + } fprintf (info->f, "%s\t%s\t0;\"\tkind:p\ttype:%s\tclass:%s\taccess:%s\n", method_name, info->filename, method_type, info->stack->type, @@ -2491,7 +2540,7 @@ static bfd_boolean tg_int_constant (void *p, const char *name, bfd_vma val) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20]; + char ab[22]; indent (info); print_vma (val, ab, FALSE, FALSE); @@ -2520,7 +2569,7 @@ tg_typed_constant (void *p, const char *name, bfd_vma val) { struct pr_handle *info = (struct pr_handle *) p; char *t; - char ab[20]; + char ab[22]; t = pop_type (info); if (t == NULL) @@ -2698,7 +2747,7 @@ static bfd_boolean tg_start_block (void *p, bfd_vma addr) { struct pr_handle *info = (struct pr_handle *) p; - char ab[20], kind, *partof; + char ab[22], kind, *partof; char *t; bfd_boolean local; @@ -2745,7 +2794,7 @@ tg_start_block (void *p, bfd_vma addr) /* Write out line number information. */ static bfd_boolean -tg_lineno (void *p ATTRIBUTE_UNUSED, const char *filename ATTRIBUTE_UNUSED, +tg_lineno (void *p ATTRIBUTE_UNUSED, const char *fname ATTRIBUTE_UNUSED, unsigned long lineno ATTRIBUTE_UNUSED, bfd_vma addr ATTRIBUTE_UNUSED) {