do a bit of by-hand CSE
[ghc-hetmet.git] / rts / sm / BlockAlloc.h
index 2d777f7..f8b4204 100644 (file)
@@ -9,14 +9,24 @@
 #ifndef BLOCK_ALLOC_H
 #define BLOCK_ALLOC_H
 
+#include "BeginPrivate.h"
+
 /* Debugging  -------------------------------------------------------------- */
 
+extern nat countBlocks       (bdescr *bd);
+extern nat countAllocdBlocks (bdescr *bd);
+extern void returnMemoryToOS(nat n);
+
 #ifdef DEBUG
-extern void checkFreeListSanity(void);
-nat         countFreeList(void);
+void checkFreeListSanity(void);
+nat  countFreeList(void);
+void markBlocks (bdescr *bd);
+void reportUnmarkedBlocks (void);
 #endif
 
-lnat n_alloc_blocks;   // currently allocated blocks
-lnat hw_alloc_blocks;  // high-water allocated blocks
+extern lnat n_alloc_blocks;   // currently allocated blocks
+extern lnat hw_alloc_blocks;  // high-water allocated blocks
+
+#include "EndPrivate.h"
 
 #endif /* BLOCK_ALLOC_H */