Move DynRegionInfo out of the ELFDumper.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 16 Feb 2016 14:27:33 +0000 (14:27 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 16 Feb 2016 14:27:33 +0000 (14:27 +0000)
This reduces indentation in preparation to adding a bit more code to it.

Extracted from r260488.

llvm-svn: 260963

llvm/tools/llvm-readobj/ELFDumper.cpp

index 92b92f1..cd221e3 100644 (file)
@@ -48,6 +48,17 @@ namespace {
 
 template <class ELFT> class DumpStyle;
 
+/// \brief Represents a region described by entries in the .dynamic table.
+struct DynRegionInfo {
+  DynRegionInfo() : Addr(nullptr), Size(0), EntSize(0) {}
+  /// \brief Address in current address space.
+  const void *Addr;
+  /// \brief Size in bytes of the region.
+  uint64_t Size;
+  /// \brief Size of each entity in the region.
+  uint64_t EntSize;
+};
+
 template<typename ELFT>
 class ELFDumper : public ObjDumper {
 public:
@@ -101,17 +112,6 @@ private:
   typedef typename ELFO::Elf_Verdef Elf_Verdef;
   typedef typename ELFO::Elf_Verdaux Elf_Verdaux;
 
-  /// \brief Represents a region described by entries in the .dynamic table.
-  struct DynRegionInfo {
-    DynRegionInfo() : Addr(nullptr), Size(0), EntSize(0) {}
-    /// \brief Address in current address space.
-    const void *Addr;
-    /// \brief Size in bytes of the region.
-    uintX_t Size;
-    /// \brief Size of each entity in the region.
-    uintX_t EntSize;
-  };
-
   void parseDynamicTable(ArrayRef<const Elf_Phdr *> LoadSegments);
 
   void printSymbolsHelper(bool IsDynamic);