Переглянути джерело

module size in debug output

Philipp Schuster 3 роки тому
батько
коміт
05d5676d0c
1 змінених файлів з 7 додано та 1 видалено
  1. 7 1
      src/module.rs

+ 7 - 1
src/module.rs

@@ -37,13 +37,19 @@ impl ModuleTag {
     pub fn end_address(&self) -> u32 {
         self.mod_end
     }
+
+    /// The size of the module/the BLOB in memory.
+    pub fn module_size(&self) -> u32 {
+        self.mod_end - self.mod_start
+    }
 }
 
 impl Debug for ModuleTag {
     fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
         f.debug_struct("ModuleTag")
             .field("type", &self.typ)
-            .field("size", &self.size)
+            .field("size (tag)", &self.size)
+            .field("size (module)", &(self.module_size()))
             .field("mod_start", &(self.mod_start as *const usize))
             .field("mod_end", &(self.mod_end as *const usize))
             .field("cmdline", &self.cmdline())