Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mmalloc] Fix junkarea handling in free
authorGabriel Corona <gabriel.corona@loria.fr>
Mon, 13 Oct 2014 08:08:36 +0000 (10:08 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Mon, 13 Oct 2014 08:08:36 +0000 (10:08 +0200)
The call free(junkarea) was broken and was trying to delegate to
mmalloc instead of using junkarea.

Because of this libsimgrid broken when compiling with LLVM with
mmalloc support.

src/xbt/mmalloc/mfree.c
src/xbt/mmalloc/mm_legacy.c

index 5586cf5..373c114 100644 (file)
@@ -215,4 +215,3 @@ void mfree(struct mdesc *mdp, void *ptr)
     break;
   }
 }
-
index 68cd43f..ecf09bb 100644 (file)
@@ -141,7 +141,9 @@ void free(void *p)
 {
   if (p==NULL)
     return;
-  if (p<=(void*)junkareas || p>(void*)(junkareas[MAX_JUNK_AREAS]) ) {
+  if (p<(void*)junkareas || p>=(void*)(junkareas[MAX_JUNK_AREAS]) ) {
+    // main use case
+
     xbt_mheap_t mdp = __mmalloc_current_heap;
 
     if (mdp) {
@@ -151,10 +153,16 @@ void free(void *p)
     } else {
       real_free(p);
     }
-  } else if(allocated_junk && p==junkareas[allocated_junk-1]) {
-    allocated_junk--;
   } else {
-    // Leaked memory.
+    // We are in the junkarea.
+    // This area is used to allocate memory at initilization time.
+
+    if(allocated_junk && p==junkareas[allocated_junk-1]) {
+      // Last junkarea. We can reuse it.
+      allocated_junk--;
+    } else {
+      // We currently cannot reuse freed junkareas in the general case.
+    }
   }
 }