]> git.llucax.com Git - software/dgc/cdgc.git/blobdiff - gc/alloc.d
Add weak reference support for Tango 0.99.9
[software/dgc/cdgc.git] / gc / alloc.d
index e55c03cf05980eaba385c89a0d0365769e3d18a8..eeebcf467769c8ac7b90eff0abfad5b734a47576 100644 (file)
@@ -91,84 +91,40 @@ version (D_Ddoc)
      */
     void* os_mem_map(size_t nbytes);
 
-    /**
-     * Commit memory.
-     * Returns:
-     *      true  success
-     *      false failure
-     */
-    int os_mem_commit(void* base, size_t offset, size_t nbytes);
-
-    /**
-     * Decommit memory.
-     * Returns:
-     *      true  success
-     *      false failure
-     */
-    int os_mem_decommit(void* base, size_t offset, size_t nbytes);
-
     /**
      * Unmap memory allocated with os_mem_map().
-     * Memory must have already been decommitted.
      * Returns:
      *      true  success
      *      false failure
      */
-    int os_mem_unmap(void* base, size_t nbytes);
+    bool os_mem_unmap(void* base, size_t nbytes);
 }
 // Implementations
 else static if (is(typeof(VirtualAlloc)))
 {
-    void *os_mem_map(size_t nbytes)
+    voidos_mem_map(size_t nbytes)
     {
-        return VirtualAlloc(null, nbytes, MEM_RESERVE, PAGE_READWRITE);
+        return VirtualAlloc(null, nbytes, MEM_RESERVE | MEM_COMMIT,
+                PAGE_READWRITE);
     }
 
-
-    int os_mem_commit(void *base, size_t offset, size_t nbytes)
-    {   void *p;
-
-        p = VirtualAlloc(base + offset, nbytes, MEM_COMMIT, PAGE_READWRITE);
-    return cast(int)(p is null);
-    }
-
-
-    int os_mem_decommit(void *base, size_t offset, size_t nbytes)
+    bool os_mem_unmap(void* base, size_t nbytes)
     {
-    return cast(int)(VirtualFree(base + offset, nbytes, MEM_DECOMMIT) == 0);
-    }
-
-
-    int os_mem_unmap(void *base, size_t nbytes)
-    {
-        return cast(int)(VirtualFree(base, 0, MEM_RELEASE) == 0);
+        return VirtualFree(base, 0, MEM_RELEASE) != 0;
     }
 }
 else static if (is(typeof(mmap)) && is(typeof(MAP_ANON)))
 {
-    void *os_mem_map(size_t nbytes)
-    {   void *p;
-
-        p = mmap(null, nbytes, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
-        return (p == MAP_FAILED) ? null : p;
-    }
-
-
-    int os_mem_commit(void *base, size_t offset, size_t nbytes)
+    void* os_mem_map(size_t nbytes)
     {
-        return 0;
-    }
-
-
-    int os_mem_decommit(void *base, size_t offset, size_t nbytes)
-    {
-        return 0;
+        void* p = mmap(null, nbytes,
+                PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
+        return (p == MAP_FAILED) ? null : p;
     }
 
-
-    int os_mem_unmap(void *base, size_t nbytes)
+    bool os_mem_unmap(void* base, size_t nbytes)
     {
-        return munmap(base, nbytes);
+        return munmap(base, nbytes) == 0;
     }
 }
 else static if (is(typeof(malloc)))
@@ -178,38 +134,23 @@ else static if (is(typeof(malloc)))
     //       to PAGESIZE alignment, there will be space for a void* at the end
     //       after PAGESIZE bytes used by the GC.
 
-
     import gcx; // for PAGESIZE
 
-
     const size_t PAGE_MASK = PAGESIZE - 1;
 
-
-    void *os_mem_map(size_t nbytes)
-    {   byte *p, q;
-        p = cast(byte *) malloc(nbytes + PAGESIZE);
+    void* os_mem_map(size_t nbytes)
+    {
+        byte* p, q;
+        p = cast(byte) malloc(nbytes + PAGESIZE);
         q = p + ((PAGESIZE - ((cast(size_t) p & PAGE_MASK))) & PAGE_MASK);
-        * cast(void**)(q + nbytes) = p;
+        *cast(void**)(q + nbytes) = p;
         return q;
     }
 
-
-    int os_mem_commit(void *base, size_t offset, size_t nbytes)
-    {
-        return 0;
-    }
-
-
-    int os_mem_decommit(void *base, size_t offset, size_t nbytes)
-    {
-        return 0;
-    }
-
-
-    int os_mem_unmap(void *base, size_t nbytes)
+    bool os_mem_unmap(void* base, size_t nbytes)
     {
-        free( *cast(void**)( cast(byte*) base + nbytes ) );
-        return 0;
+        free(*cast(void**)(cast(byte*) base + nbytes));
+        return true;
     }
 }
 else