scummvm/engines/sci/scicore/sci_memory.cpp

205 lines
5.0 KiB
C++

/***************************************************************************
sci_memory.c Copyright (C) 2001 Alexander R Angas
Refcounted memory by Christoph Reichenbach
This program may be modified and copied freely according to the terms of
the GNU general public license (GPL), as long as the above copyright
notice and the licensing information contained herein are preserved.
Please refer to www.gnu.org for licensing details.
This work is provided AS IS, without warranty of any kind, expressed or
implied, including but not limited to the warranties of merchantibility,
noninfringement, and fitness for a specific purpose. The author will not
be held liable for any damage caused by this work or derivatives of it.
By using this source code, you agree to the licensing terms as stated
above.
Please contact the maintainer for bug reports or inquiries.
Current Maintainer:
Alexander R Angas (Alex Angas) <wgd@internode.on.net>
History:
20010815 - assembled from the various memory allocation functions lying
about, namely console.c (extra dmalloc stuff), menubar.c
(for malloc_cpy -> strdup, malloc_ncpy -> strndup).
-- Alex Angas
***************************************************************************/
#include "sci/include/sci_memory.h"
#include "common/util.h"
/* set optimisations for Win32: */
/* g on: enable global optimizations */
/* t on: use fast code */
/* y on: suppress creation of frame pointers on stack */
/* s off: disable minimize size code */
#ifdef _MSC_VER
# include <crtdbg.h>
# ifndef SATISFY_PURIFY
# pragma optimize( "s", off )
# pragma optimize( "gty", on )
# pragma intrinsic( memcpy, strlen )
# endif
#endif
void *
sci_malloc(size_t size) {
void *res;
ALLOC_MEM((res = malloc(size)), size, __FILE__, __LINE__, "")
return res;
}
void *
sci_calloc(size_t num, size_t size) {
void *res;
ALLOC_MEM((res = calloc(num, size)), num * size, __FILE__, __LINE__, "")
return res;
}
void *
sci_realloc(void *ptr, size_t size) {
void *res;
ALLOC_MEM((res = realloc(ptr, size)), size, __FILE__, __LINE__, "")
return res;
}
void *
sci_memdup(const void *ptr, size_t size) {
void *res;
if (!ptr) {
fprintf(stderr, "_SCI_MEMDUP() [%s (%s) : %u]\n",
__FILE__, "", __LINE__);
fprintf(stderr, " attempt to memdup NULL pointer\n");
BREAKPOINT();
}
ALLOC_MEM((res = malloc(size)), size, __FILE__, __LINE__, "")
memcpy(res, ptr, size);
return res;
}
char *
sci_strdup(const char *src) {
void *res;
if (!src) {
fprintf(stderr, "_SCI_STRDUP() [%s (%s) : %u]\n",
__FILE__, "", __LINE__);
fprintf(stderr, " attempt to strdup NULL pointer\n");
BREAKPOINT();
}
ALLOC_MEM((res = strdup(src)), strlen(src), __FILE__, __LINE__, "")
return (char*)res;
}
char *
sci_strndup(const char *src, size_t length) {
void *res;
char *strres;
size_t rlen = (int)MIN(strlen(src), length) + 1;
if (!src) {
fprintf(stderr, "_SCI_STRNDUP() [%s (%s) : %u]\n",
__FILE__, "", __LINE__);
fprintf(stderr, " attempt to strndup NULL pointer\n");
BREAKPOINT();
}
ALLOC_MEM((res = malloc(rlen)), rlen, __FILE__, __LINE__, "")
strres = (char*)res;
strncpy(strres, src, rlen);
strres[rlen - 1] = 0;
return strres;
}
/*-------- Refcounting ----------*/
#define REFCOUNT_OVERHEAD (sizeof(guint32)*3)
#define REFCOUNT_MAGIC_LIVE_1 0xebdc1741
#define REFCOUNT_MAGIC_LIVE_2 0x17015ac9
#define REFCOUNT_MAGIC_DEAD_1 0x11dead11
#define REFCOUNT_MAGIC_DEAD_2 0x22dead22
#define REFCOUNT_CHECK(p) ((((guint32 *)(p))[-3] == REFCOUNT_MAGIC_LIVE_2) \
&& (((guint32 *)(p))[-1] == REFCOUNT_MAGIC_LIVE_1))
#define REFCOUNT(p) (((guint32 *)p)[-2])
#undef TRACE_REFCOUNT
extern void *
sci_refcount_alloc(size_t length) {
guint32 *data = (guint32*)sci_malloc(REFCOUNT_OVERHEAD + length);
#ifdef TRACE_REFCOUNT
fprintf(stderr, "[] REF: Real-alloc at %p\n", data);
#endif
data += 3;
data[-1] = REFCOUNT_MAGIC_LIVE_1;
data[-3] = REFCOUNT_MAGIC_LIVE_2;
REFCOUNT(data) = 1;
#ifdef TRACE_REFCOUNT
fprintf(stderr, "[] REF: Alloc'd %p (ref=%d) OK=%d\n", data, REFCOUNT(data),
REFCOUNT_CHECK(data));
#endif
return data;
}
extern void *
sci_refcount_incref(void *data) {
if (!REFCOUNT_CHECK(data)) {
BREAKPOINT();
} else
REFCOUNT(data)++;
#ifdef TRACE_REFCOUNT
fprintf(stderr, "[] REF: Inc'ing %p (now ref=%d)\n", data, REFCOUNT(data));
#endif
return data;
}
extern void
sci_refcount_decref(void *data) {
#ifdef TRACE_REFCOUNT
fprintf(stderr, "[] REF: Dec'ing %p (prev ref=%d) OK=%d\n", data, REFCOUNT(data),
REFCOUNT_CHECK(data));
#endif
if (!REFCOUNT_CHECK(data)) {
BREAKPOINT();
} else if (--REFCOUNT(data) == 0) {
guint32 *fdata = (guint32*)data;
fdata[-1] = REFCOUNT_MAGIC_DEAD_1;
fdata[-3] = REFCOUNT_MAGIC_DEAD_2;
#ifdef TRACE_REFCOUNT
fprintf(stderr, "[] REF: Freeing (%p)...\n", fdata - 3);
#endif
free(fdata - 3);
#ifdef TRACE_REFCOUNT
fprintf(stderr, "[] REF: Done.\n");
#endif
}
}
extern void *
sci_refcount_memdup(void *data, size_t len) {
void *dest = sci_refcount_alloc(len);
memcpy(dest, data, len);
return dest;
}