* dwarf.c (decode_location_expression): Use dwarf_vmatoa
authorNick Clifton <nickc@redhat.com>
Fri, 25 Mar 2011 18:01:58 +0000 (18:01 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 25 Mar 2011 18:01:58 +0000 (18:01 +0000)
function to display DW_OP_addr OP.
(process_debug_info): Use dwarf_vma type for local variables
length and type_offset.

binutils/ChangeLog
binutils/dwarf.c

index 3565cf178113e6240b759dbd7119adb84e99a4ef..5af068b551516558ee209fd19d6f4d8c74ce491f 100644 (file)
@@ -2,6 +2,10 @@
 
        * dwarf.c (process_debug_info): Use offset_size to determine
        the bit-size of the computation unit's offset.
+       (decode_location_expression): Use dwarf_vmatoa function to display
+       DW_OP_addr OP.
+       (process_debug_info): Use dwarf_vma type for local variables
+       length and type_offset.
 
 2011-03-25  Michael Snyder  <msnyder@vmware.com>
 
index 102d1642dcea769fef3550ebe53427cff81caa6f..8846e8750eff8bebbb48adf9bdc2123a38292277 100644 (file)
@@ -674,8 +674,8 @@ decode_location_expression (unsigned char * data,
       switch (op)
        {
        case DW_OP_addr:
-         printf ("DW_OP_addr: %lx",
-                 (unsigned long) byte_get (data, pointer_size));
+         printf ("DW_OP_addr: %s",
+                 dwarf_vmatoa ("x", byte_get (data, pointer_size)));
          data += pointer_size;
          break;
        case DW_OP_deref:
@@ -1926,7 +1926,7 @@ process_debug_info (struct dwarf_section *section,
       && num_debug_info_entries == 0
       && ! do_types)
     {
-      unsigned long length;
+      dwarf_vma length;
 
       /* First scan the section to get the number of comp units.  */
       for (section_begin = start, num_units = 0; section_begin < end;
@@ -1944,7 +1944,8 @@ process_debug_info (struct dwarf_section *section,
            }
          else if (length >= 0xfffffff0 && length < 0xffffffff)
            {
-             warn (_("Reserved length value (%lx) found in section %s\n"), length, section->name);
+             warn (_("Reserved length value (0x%s) found in section %s\n"),
+                   dwarf_vmatoa ("x", length), section->name);
              return 0;
            }
          else
@@ -1955,7 +1956,8 @@ process_debug_info (struct dwarf_section *section,
             relocations to an object file.  */
          if ((signed long) length <= 0)
            {
-             warn (_("Corrupt unit length (%lx) found in section %s\n"), length, section->name);
+             warn (_("Corrupt unit length (0x%s) found in section %s\n"),
+                   dwarf_vmatoa ("x", length), section->name);
              return 0;
            }
        }
@@ -2002,7 +2004,7 @@ process_debug_info (struct dwarf_section *section,
       int offset_size;
       int initial_length_size;
       unsigned char signature[8] = { 0 };
-      unsigned long type_offset = 0;
+      dwarf_vma type_offset = 0;
 
       hdrptr = start;
 
@@ -2084,7 +2086,8 @@ process_debug_info (struct dwarf_section *section,
              for (i = 0; i < 8; i++)
                printf ("%02x", signature[i]);
              printf ("\n");
-             printf (_("   Type Offset:   0x%lx\n"), type_offset);
+             printf (_("   Type Offset:   0x%s\n"),
+                     dwarf_vmatoa ("x", type_offset));
            }
        }
 
This page took 0.056984 seconds and 4 git commands to generate.