]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
dwarflint: Reindent
authorPetr Machata <pmachata@redhat.com>
Mon, 30 Nov 2009 15:53:55 +0000 (16:53 +0100)
committerPetr Machata <pmachata@redhat.com>
Wed, 18 Aug 2010 12:55:17 +0000 (14:55 +0200)
src/dwarflint/checks-low.cc

index 7c4d4b95e9e90e5b816ecf8ad4f59dbe8f62e5a7..714d4bd0fa3d0471da578256a2b04ecd456fe927 100644 (file)
@@ -70,107 +70,107 @@ struct secinfo_map
 
 namespace
 {
-int
-layout_rel_file (Elf *elf)
-{
-  GElf_Ehdr ehdr;
-  if (gelf_getehdr (elf, &ehdr) == NULL)
-    return 1;
+  int
+  layout_rel_file (Elf *elf)
+  {
+    GElf_Ehdr ehdr;
+    if (gelf_getehdr (elf, &ehdr) == NULL)
+      return 1;
 
-  if (ehdr.e_type != ET_REL)
-    return 0;
+    if (ehdr.e_type != ET_REL)
+      return 0;
 
-  /* Taken from libdwfl. */
-  GElf_Addr base = 0;
-  GElf_Addr start = 0, end = 0, bias = 0;
+    /* Taken from libdwfl. */
+    GElf_Addr base = 0;
+    GElf_Addr start = 0, end = 0, bias = 0;
+
+    bool first = true;
+    Elf_Scn *scn = NULL;
+    while ((scn = elf_nextscn (elf, scn)) != NULL)
+      {
+       GElf_Shdr shdr_mem;
+       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
+       if (unlikely (shdr == NULL))
+         return 1;
+
+       if (shdr->sh_flags & SHF_ALLOC)
+         {
+           const GElf_Xword align = shdr->sh_addralign ?: 1;
+           const GElf_Addr next = (end + align - 1) & -align;
+           if (shdr->sh_addr == 0
+               /* Once we've started doing layout we have to do it all,
+                  unless we just layed out the first section at 0 when
+                  it already was at 0.  */
+               || (bias == 0 && end > start && end != next))
+             {
+               shdr->sh_addr = next;
+               if (end == base)
+                 /* This is the first section assigned a location.
+                    Use its aligned address as the module's base.  */
+                 start = base = shdr->sh_addr;
+               else if (unlikely (base & (align - 1)))
+                 {
+                   /* If BASE has less than the maximum alignment of
+                      any section, we eat more than the optimal amount
+                      of padding and so make the module's apparent
+                      size come out larger than it would when placed
+                      at zero.  So reset the layout with a better base.  */
+
+                   start = end = base = (base + align - 1) & -align;
+                   Elf_Scn *prev_scn = NULL;
+                   do
+                     {
+                       prev_scn = elf_nextscn (elf, prev_scn);
+                       GElf_Shdr prev_shdr_mem;
+                       GElf_Shdr *prev_shdr = gelf_getshdr (prev_scn,
+                                                            &prev_shdr_mem);
+                       if (unlikely (prev_shdr == NULL))
+                         return 1;
+                       if (prev_shdr->sh_flags & SHF_ALLOC)
+                         {
+                           const GElf_Xword prev_align
+                             = prev_shdr->sh_addralign ?: 1;
+
+                           prev_shdr->sh_addr
+                             = (end + prev_align - 1) & -prev_align;
+                           end = prev_shdr->sh_addr + prev_shdr->sh_size;
+
+                           if (unlikely (! gelf_update_shdr (prev_scn,
+                                                             prev_shdr)))
+                             return 1;
+                         }
+                     }
+                   while (prev_scn != scn);
+                   continue;
+                 }
 
-  bool first = true;
-  Elf_Scn *scn = NULL;
-  while ((scn = elf_nextscn (elf, scn)) != NULL)
-    {
-      GElf_Shdr shdr_mem;
-      GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
-      if (unlikely (shdr == NULL))
-       return 1;
-
-      if (shdr->sh_flags & SHF_ALLOC)
-       {
-         const GElf_Xword align = shdr->sh_addralign ?: 1;
-         const GElf_Addr next = (end + align - 1) & -align;
-         if (shdr->sh_addr == 0
-             /* Once we've started doing layout we have to do it all,
-                unless we just layed out the first section at 0 when
-                it already was at 0.  */
-             || (bias == 0 && end > start && end != next))
-           {
-             shdr->sh_addr = next;
-             if (end == base)
-               /* This is the first section assigned a location.
-                  Use its aligned address as the module's base.  */
-               start = base = shdr->sh_addr;
-             else if (unlikely (base & (align - 1)))
-               {
-                 /* If BASE has less than the maximum alignment of
-                    any section, we eat more than the optimal amount
-                    of padding and so make the module's apparent
-                    size come out larger than it would when placed
-                    at zero.  So reset the layout with a better base.  */
-
-                 start = end = base = (base + align - 1) & -align;
-                 Elf_Scn *prev_scn = NULL;
-                 do
-                   {
-                     prev_scn = elf_nextscn (elf, prev_scn);
-                     GElf_Shdr prev_shdr_mem;
-                     GElf_Shdr *prev_shdr = gelf_getshdr (prev_scn,
-                                                          &prev_shdr_mem);
-                     if (unlikely (prev_shdr == NULL))
-                       return 1;
-                     if (prev_shdr->sh_flags & SHF_ALLOC)
-                       {
-                         const GElf_Xword prev_align
-                           = prev_shdr->sh_addralign ?: 1;
-
-                         prev_shdr->sh_addr
-                           = (end + prev_align - 1) & -prev_align;
-                         end = prev_shdr->sh_addr + prev_shdr->sh_size;
-
-                         if (unlikely (! gelf_update_shdr (prev_scn,
-                                                           prev_shdr)))
-                           return 1;
-                       }
-                   }
-                 while (prev_scn != scn);
-                 continue;
-               }
-
-             end = shdr->sh_addr + shdr->sh_size;
-             if (likely (shdr->sh_addr != 0)
-                 && unlikely (! gelf_update_shdr (scn, shdr)))
-               return 1;
-           }
-         else
-           {
-             /* The address is already assigned.  Just track it.  */
-             if (first || end < shdr->sh_addr + shdr->sh_size)
                end = shdr->sh_addr + shdr->sh_size;
-             if (first || bias > shdr->sh_addr)
-               /* This is the lowest address in the module.  */
-               bias = shdr->sh_addr;
-
-             if ((shdr->sh_addr - bias + base) & (align - 1))
-               /* This section winds up misaligned using BASE.
-                  Adjust BASE upwards to make it congruent to
-                  the lowest section address in the file modulo ALIGN.  */
-               base = (((base + align - 1) & -align)
-                       + (bias & (align - 1)));
-           }
-
-         first = false;
-       }
-    }
-  return 0;
-}
+               if (likely (shdr->sh_addr != 0)
+                   && unlikely (! gelf_update_shdr (scn, shdr)))
+                 return 1;
+             }
+           else
+             {
+               /* The address is already assigned.  Just track it.  */
+               if (first || end < shdr->sh_addr + shdr->sh_size)
+                 end = shdr->sh_addr + shdr->sh_size;
+               if (first || bias > shdr->sh_addr)
+                 /* This is the lowest address in the module.  */
+                 bias = shdr->sh_addr;
+
+               if ((shdr->sh_addr - bias + base) & (align - 1))
+                 /* This section winds up misaligned using BASE.
+                    Adjust BASE upwards to make it congruent to
+                    the lowest section address in the file modulo ALIGN.  */
+                 base = (((base + align - 1) & -align)
+                         + (bias & (align - 1)));
+             }
+
+           first = false;
+         }
+      }
+    return 0;
+  }
 
   Elf *
   open_elf (int fd)