Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2005-09-30 00:26:16 +0400
committerMiguel de Icaza <miguel@gnome.org>2005-09-30 00:26:16 +0400
commit5325d1020da3da93bde30d4189a4f65c44ccdf26 (patch)
treefb3e2bfc2187a55f2932d5db286afc89da114b10 /support
parent8fd920bed7a8ada0894eeaabf9be7090e67a45b7 (diff)
Implement the heap stuff, move it to a separate file
svn path=/trunk/mono/; revision=51008
Diffstat (limited to 'support')
-rw-r--r--support/ChangeLog4
-rw-r--r--support/Makefile.am3
-rw-r--r--support/support-heap.c172
-rw-r--r--support/supportw.c105
4 files changed, 203 insertions, 81 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index fb6a8886884..6190488476b 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-29 Miguel de Icaza <miguel@novell.com>
+
+ * support-heap.c: Add meat to the Heap routines.
+
2005-09-20 Jonathan Pryor <jonpryor@vt.edu>
* Makefile.am (refresh): Use the make-map.exe in Mono.Unix.Native.
diff --git a/support/Makefile.am b/support/Makefile.am
index ee1e2770042..c73de3351bc 100644
--- a/support/Makefile.am
+++ b/support/Makefile.am
@@ -78,9 +78,10 @@ libMonoSupportW_la_LDFLAGS = -no-undefined -avoid-version
libMonoSupportW_la_SOURCES = \
supportw.c \
+ support-heap.c \
supportw.h
-libMonoSupportW_la_LIBADD = \
+libMonoSupportW_la_LIBADD = \
$(GLIB_LIBS)
#
diff --git a/support/support-heap.c b/support/support-heap.c
new file mode 100644
index 00000000000..89cb3468e0a
--- /dev/null
+++ b/support/support-heap.c
@@ -0,0 +1,172 @@
+/*
+ * Emulates the Heap* routines.
+ *
+ * Authors:
+ * Gonzalo Paniagua (gonzalo@ximian.com)
+ * Miguel de Icaza (miguel@novell.com)
+ *
+ * (C) 2005 Novell, Inc.
+ *
+ */
+#include <glib.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include "supportw.h"
+
+gpointer HeapAlloc (gpointer unused1, gint32 unused2, gint32 nbytes);
+gpointer HeapCreate (gint32 flags, gint32 initial_size, gint32 max_size);
+gboolean HeapSetInformation (gpointer handle, gpointer heap_info_class,
+ gpointer heap_info, gint32 head_info_length);
+
+gboolean HeapQueryInformation (gpointer handle, gpointer heap_info_class,
+ gpointer heap_info, gint32 head_info_length, gint32 *ret_length);
+
+gpointer HeapAlloc (gpointer handle, gint32 flags, gint32 nbytes);
+gpointer HeapReAlloc (gpointer handle, gint32 flags, gpointer mem, gint32 nbytes);
+gint32 HeapSize (gpointer handle, gint32 flags, gpointer mem);
+gboolean HeapFree (gpointer handle, gint32 flags, gpointer mem);
+gboolean HeapValidate (gpointer handle, gpointer mem);
+gboolean HeapDestroy (gpointer handle);
+
+typedef struct _HeapInfo {
+ gint32 flags;
+ gint32 initial_size;
+ gint32 max_size;
+ GHashTable *hash;
+} HeapInfo;
+
+/* Some initial value for the process heap */
+HeapInfo *process_heap;
+
+static GHashTable *heaps;
+
+gpointer
+HeapCreate (gint32 flags, gint32 initial_size, gint32 max_size)
+{
+ HeapInfo *hi;
+
+ if (heaps == NULL)
+ heaps = g_hash_table_new (g_direct_hash, g_direct_equal);
+
+ if (flags != 0)
+ g_warning ("Flags for HeapCreate are the unsupported value non-zero");
+
+ hi = g_new (HeapInfo, 1);
+ hi->flags = flags;
+ hi->initial_size = initial_size;
+ hi->max_size = max_size;
+ hi->hash = g_hash_table_new (g_direct_hash, g_direct_equal);
+
+ g_hash_table_insert (heaps, hi, hi);
+
+ return hi;
+}
+
+gboolean
+HeapSetInformation (gpointer handle, gpointer heap_info_class, gpointer heap_info,
+ gint32 head_info_length)
+{
+ return TRUE;
+}
+
+gboolean
+HeapQueryInformation (gpointer handle, gpointer heap_info_class, gpointer heap_info,
+ gint32 head_info_length, gint32 *ret_length)
+{
+ *ret_length = 0;
+ return TRUE;
+}
+
+gpointer
+HeapAlloc (gpointer handle, gint32 flags, gint32 nbytes)
+{
+ HeapInfo *heap = (HeapInfo *) handle;
+ void *ptr;
+
+ ptr = g_malloc0 (nbytes);
+
+ g_hash_table_insert (heap->hash, ptr, GINT_TO_POINTER (nbytes));
+
+ return ptr;
+}
+
+gpointer
+HeapReAlloc (gpointer handle, gint32 flags, gpointer mem, gint32 nbytes)
+{
+ HeapInfo *heap = (HeapInfo *) handle;
+ void *ptr;
+
+ g_hash_table_remove (heap->hash, mem);
+ ptr = g_realloc (mem, nbytes);
+ g_hash_table_insert (heap->hash, ptr, GINT_TO_POINTER (nbytes));
+
+ return ptr;
+}
+
+gint32
+HeapSize (gpointer handle, gint32 flags, gpointer mem)
+{
+ HeapInfo *heap = (HeapInfo *) handle;
+
+ gint32 size = GPOINTER_TO_INT (g_hash_table_lookup (heap->hash, mem));
+
+ return size;
+}
+
+gboolean
+HeapFree (gpointer handle, gint32 flags, gpointer mem)
+{
+ HeapInfo *heap = (HeapInfo *) handle;
+
+ g_hash_table_remove (heap->hash, GINT_TO_POINTER (mem));
+ g_free (mem);
+
+ return TRUE;
+}
+
+gboolean
+HeapValidate (gpointer handle, gpointer mem)
+{
+ return TRUE;
+}
+
+static void
+free_handles (gpointer key, gpointer value, gpointer user_data)
+{
+ g_free (key);
+}
+
+gboolean
+HeapDestroy (gpointer handle)
+{
+ HeapInfo *heap = (HeapInfo *) handle;
+
+ /* Failure is zero */
+ if (handle == process_heap)
+ return 0;
+
+ g_hash_table_foreach (heap->hash, free_handles, NULL);
+ g_hash_table_destroy (heap->hash);
+
+ g_hash_table_remove (heaps, handle);
+ g_free (heap);
+
+ return 1;
+}
+
+gpointer GetProcessHeap (void);
+
+gpointer
+GetProcessHeap (void)
+{
+ if (process_heap == NULL){
+ process_heap = g_new (HeapInfo, 1);
+ process_heap->flags = 0;
+ process_heap->initial_size = 1024;
+ process_heap->max_size = 1024*1024*1024;
+
+ }
+ return process_heap;
+}
+/* end Heap* functions */
diff --git a/support/supportw.c b/support/supportw.c
index 158fce068be..f1fa2d16ff7 100644
--- a/support/supportw.c
+++ b/support/supportw.c
@@ -1,3 +1,14 @@
+/*
+ * Helper routines for some of the common methods that people P/Invoke
+ * on their applications.
+ *
+ * Authors:
+ * Gonzalo Paniagua (gonzalo@ximian.com)
+ * Miguel de Icaza (miguel@novell.com)
+ *
+ * (C) 2005 Novell, Inc.
+ *
+ */
#include <glib.h>
#include <stdlib.h>
#include <string.h>
@@ -14,24 +25,24 @@ typedef struct {
void *fnptr;
} FnPtr;
-gpointer FindWindowExW (gpointer hwndParent, gpointer hwndChildAfter,
- const char *classw, const char *window);
+gpointer FindWindowExW (gpointer hwndParent, gpointer hwndChildAfter,
+ const char *classw, const char *window);
-gpointer HeapAlloc (gpointer unused1, gint32 unused2, gint32 nbytes);
-gpointer HeapCreate (gint32 flags, gint32 initial_size, gint32 max_size);
-gboolean HeapSetInformation (gpointer handle, gpointer heap_info_class,
- gpointer heap_info, gint32 head_info_length);
+gpointer HeapAlloc (gpointer unused1, gint32 unused2, gint32 nbytes);
+gpointer HeapCreate (gint32 flags, gint32 initial_size, gint32 max_size);
+gboolean HeapSetInformation (gpointer handle, gpointer heap_info_class,
+ gpointer heap_info, gint32 head_info_length);
gboolean HeapQueryInformation (gpointer handle, gpointer heap_info_class,
- gpointer heap_info, gint32 head_info_length, gint32 *ret_length);
+ gpointer heap_info, gint32 head_info_length, gint32 *ret_length);
-gpointer HeapAlloc (gpointer handle, gint32 flags, gint32 nbytes);
-gpointer HeapReAlloc (gpointer handle, gint32 flags, gpointer mem, gint32 nbytes);
-gint32 HeapSize (gpointer handle, gint32 flags, gpointer mem);
-gboolean HeapFree (gpointer handle, gint32 flags, gpointer mem);
-gboolean HeapValidate (gpointer handle, gpointer mem);
-gboolean HeapDestroy (gpointer handle);
-gpointer GetProcessHeap (void);
+gpointer HeapAlloc (gpointer handle, gint32 flags, gint32 nbytes);
+gpointer HeapReAlloc (gpointer handle, gint32 flags, gpointer mem, gint32 nbytes);
+gint32 HeapSize (gpointer handle, gint32 flags, gpointer mem);
+gboolean HeapFree (gpointer handle, gint32 flags, gpointer mem);
+gboolean HeapValidate (gpointer handle, gpointer mem);
+gboolean HeapDestroy (gpointer handle);
+gpointer GetProcessHeap (void);
static FnPtr functions [] = {
{ "FindWindowExW", NULL }, /* user32 */
@@ -161,70 +172,4 @@ FindWindowExW (gpointer hwndParent, gpointer hwndChildAfter, const char *classw,
return func (hwndParent, hwndChildAfter, classw, window);
}
-/* begin Heap* functions */
-gpointer
-HeapCreate (gint32 flags, gint32 initial_size, gint32 max_size)
-{
- return (gpointer) 0xDEADBEEF;
-}
-
-gboolean
-HeapSetInformation (gpointer handle, gpointer heap_info_class, gpointer heap_info,
- gint32 head_info_length)
-{
- return TRUE;
-}
-
-gboolean
-HeapQueryInformation (gpointer handle, gpointer heap_info_class, gpointer heap_info,
- gint32 head_info_length, gint32 *ret_length)
-{
- *ret_length = 0;
- return TRUE;
-}
-
-gpointer
-HeapAlloc (gpointer handle, gint32 flags, gint32 nbytes)
-{
- return g_malloc0 (nbytes);
-}
-
-gpointer
-HeapReAlloc (gpointer handle, gint32 flags, gpointer mem, gint32 nbytes)
-{
- return g_realloc (mem, nbytes);
-}
-
-gint32
-HeapSize (gpointer handle, gint32 flags, gpointer mem)
-{
- return 0;
-}
-
-gboolean
-HeapFree (gpointer handle, gint32 flags, gpointer mem)
-{
- g_free (mem);
- return TRUE;
-}
-
-gboolean
-HeapValidate (gpointer handle, gpointer mem)
-{
- return TRUE;
-}
-
-gboolean
-HeapDestroy (gpointer handle)
-{
- return TRUE;
-}
-
-
-gpointer
-GetProcessHeap ()
-{
- return (gpointer) 0xDEADBEEF;
-}
-/* end Heap* functions */