office-gobmx/sal/rtl/source/alloc.c
Vladimir Glazounov 0bcd32ade2 INTEGRATION: CWS dbgmacros1 (1.8.16.1.52); FILE MERGED
2003/04/09 12:08:43 kso 1.8.16.1.52.1: #108413# - debug macro unification.
2003-04-15 16:45:47 +00:00

1412 lines
37 KiB
C

/*************************************************************************
*
* $RCSfile: alloc.c,v $
*
* $Revision: 1.10 $
*
* last change: $Author: vg $ $Date: 2003-04-15 17:45:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): Matthias Huetsch <matthias.huetsch@sun.com>
*
*
************************************************************************/
#ifdef PROFILE
#undef OSL_DEBUG_LEVEL
#define OSL_DEBUG_LEVEL 0
#endif /* PROFILE */
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
#endif
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif
#ifndef _RTL_ALLOC_H_
#include <rtl/alloc.h>
#endif
#ifndef INCLUDED_STDDEF_H
#include <stddef.h>
#define INCLUDED_STDDEF_H
#endif
#ifndef INCLUDED_STDLIB_H
#include <stdlib.h>
#define INCLUDED_STDLIB_H
#endif
#ifndef INCLUDED_STRING_H
#include <string.h>
#define INCLUDED_STRING_H
#endif
/*===========================================================================
*
* rtl_memory (UNX) internals.
*
*=========================================================================*/
#ifdef SAL_UNX
#include <unistd.h>
#include <pthread.h>
#include <sys/mman.h>
#include <fcntl.h>
typedef pthread_mutex_t mutex_type;
#define RTL_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
#define RTL_MUTEX_ACQUIRE(a) pthread_mutex_lock((a))
#define RTL_MUTEX_RELEASE(a) pthread_mutex_unlock((a))
#if defined(FREEBSD) || defined(NETBSD)
static sal_uInt32 __rtl_memory_vmpagesize (void)
{
/* xBSD */
return (sal_uInt32)(getpagesize());
}
#elif defined(IRIX) || defined(LINUX) || defined(SOLARIS)
static sal_uInt32 __rtl_memory_vmpagesize (void)
{
/* POSIX */
return (sal_uInt32)(sysconf(_SC_PAGESIZE));
}
#else
static sal_uInt32 __rtl_memory_vmpagesize (void)
{
/* other */
return (sal_uInt32)(0x2000);
}
#endif /* FREEBSD || NETBSD || IRIX || LINUX || SOLARIS */
#ifndef PROT_HEAP
#define PROT_HEAP (PROT_READ | PROT_WRITE | PROT_EXEC)
#endif
/* #95880# building on Solaris 8 provides MAP_ANON, but it
is not available on Solaris 7 */
#if defined (SOLARIS)
#ifdef MAP_ANON
#undef MAP_ANON
#endif
#endif
#ifndef MAP_ANON
static void* __rtl_memory_vmalloc (size_t n)
{
/* SYSV */
int fd = open("/dev/zero", O_RDWR);
if (!(fd < 0))
{
void * p = mmap(NULL, n, PROT_HEAP, MAP_PRIVATE, fd, 0);
close(fd);
return ((p == MAP_FAILED) ? NULL : p);
}
return (NULL);
}
#else /* MAP_ANON */
static void* __rtl_memory_vmalloc (size_t n)
{
/* xBSD */
void * p = mmap(NULL, n, PROT_HEAP, MAP_PRIVATE | MAP_ANON, -1, 0);
return ((p == MAP_FAILED) ? NULL : p);
}
#endif /* MAP_ANON */
#define RTL_MEMORY_ALLOC(n) __rtl_memory_vmalloc((size_t)(n))
#define RTL_MEMORY_FREE(p, n) munmap((void*)(p), (size_t)(n))
#endif /* SAL_UNX */
/*===========================================================================
*
* rtl_memory (W32) internals.
*
*=========================================================================*/
#ifdef SAL_W32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
typedef CRITICAL_SECTION mutex_type;
/* Static initializer (struct declared in WINNT.H). */
#define RTL_MUTEX_INITIALIZER { NULL, -1, 0, NULL, NULL, 0 }
/*
* __rtl_mutex_init (dynamic initialization).
*
* Static initialization (with DebugInfo == NULL)
* leads to Access Violation upon first contention.
*/
static void __rtl_mutex_init (LPCRITICAL_SECTION lpCriticalSection)
{
static LONG g_spinlock = 0;
while (InterlockedExchange (&g_spinlock, 1) == 1)
{
/* Already locked, spin */
Sleep (0);
}
if (!(lpCriticalSection->DebugInfo))
{
/* Dynamic initialization */
InitializeCriticalSection (lpCriticalSection);
}
InterlockedExchange (&g_spinlock, 0);
}
#define RTL_MUTEX_INIT(a) __rtl_mutex_init((LPCRITICAL_SECTION)(a))
#define RTL_MUTEX_ACQUIRE(a) EnterCriticalSection((a))
#define RTL_MUTEX_RELEASE(a) LeaveCriticalSection((a))
static sal_uInt32 __rtl_memory_vmpagesize (void)
{
SYSTEM_INFO info;
GetSystemInfo (&info);
return ((sal_uInt32)(info.dwPageSize));
}
#define RTL_MEMORY_ALLOC(n) \
(void*)(VirtualAlloc (NULL, (SIZE_T)(n), MEM_COMMIT, PAGE_READWRITE))
#define RTL_MEMORY_FREE(p, n) \
(void)(VirtualFree ((LPVOID)(p), (SIZE_T)(0), MEM_RELEASE))
#endif /* SAL_W32 */
/*===========================================================================
*
* rtl_memory (global) internals.
*
*=========================================================================*/
#define __L__ 32
#define __P__ 24
#define __N__ ((__L__) + (__P__))
#define __M__ 0x10000
static const size_t __T__ = (__M__) * 2 / 3;
typedef struct __rtl_memory_desc_st memory_type;
struct __rtl_memory_desc_st
{
size_t m_length;
size_t m_offset;
memory_type *m_flink;
memory_type *m_blink;
};
static const int __C__ = 2 * sizeof(size_t);
static const int __Q__ = 2 * sizeof(memory_type*);
typedef struct __rtl_memory_stat_st memory_stat;
struct __rtl_memory_stat_st
{
sal_uInt64 m_dequeue;
sal_uInt64 m_enqueue;
sal_Int32 m_delta_q;
sal_uInt64 m_deqsize;
sal_uInt64 m_enqsize;
sal_Int32 m_delta_n;
};
#define RTL_MEMORY_ALIGN(n, m) (((n) + ((m) - 1)) & ~((m) - 1))
#define RTL_MEMORY_SIZEOF(a) RTL_MEMORY_ALIGN(sizeof(a), sizeof(memory_type))
struct __rtl_memory_global_st
{
sal_uInt32 m_magic;
sal_uInt32 m_align;
union {
mutex_type m_lock;
char m_data[RTL_MEMORY_SIZEOF(mutex_type)];
} m_mutex;
memory_type m_alloc_head;
memory_type m_queue_head[__N__];
#if OSL_DEBUG_LEVEL > 0
memory_stat m_queue_stat[__N__];
#endif /* OSL_DEBUG_LEVEL */
};
static struct __rtl_memory_global_st g_memory =
{
0, 0, { RTL_MUTEX_INITIALIZER }
};
void SAL_CALL ___rtl_memory_init (void);
void SAL_CALL ___rtl_memory_fini (void);
#define RTL_MEMORY_ENTER() \
{ \
if (!(g_memory.m_align)) ___rtl_memory_init(); \
RTL_MUTEX_ACQUIRE(&(g_memory.m_mutex.m_lock)); \
}
#define RTL_MEMORY_LEAVE() \
{ \
RTL_MUTEX_RELEASE(&(g_memory.m_mutex.m_lock)); \
}
/*===========================================================================
*
* rtl_memory (queue) internals.
*
*=========================================================================*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static size_t queue (size_t n)
{
/* k = n div 8 = n div __C__ */
register size_t k = (n >> 3), m = __L__;
OSL_PRECOND((__C__ == 8) && (__L__ == 32),
"__rtl_memory_queue(): internal logic error");
if (k > m)
{
/* k = k div 32 = k div __L__ */
k >>= 5;
while ((k >>= 1) > 0) m++;
k = m;
}
OSL_POSTCOND((0 < k) && (k < __N__),
"__rtl_memory_queue(): "
"internal error: index out of bounds");
return (k);
}
#else /* PRODUCT */
#define queue(k, n) \
{ \
(k) = ((n) >> 3); \
if ((k) > __L__) \
{ \
register size_t m = __L__; \
(k) >>= 5; \
while (((k) >>= 1) > 0) m++; \
(k) = m; \
} \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
#define queue_start(entry) \
{ \
(entry)->m_flink = (entry); \
(entry)->m_blink = (entry); \
}
#define queue_remove(entry) \
{ \
(entry)->m_blink->m_flink = (entry)->m_flink; \
(entry)->m_flink->m_blink = (entry)->m_blink; \
queue_start(entry); \
}
#define queue_insert_head(head, entry) \
{ \
(entry)->m_blink = (head); \
(entry)->m_flink = (head)->m_flink; \
(head)->m_flink = (entry); \
(entry)->m_flink->m_blink = (entry); \
}
#define queue_insert_tail(head, entry) \
{ \
(entry)->m_flink = (head); \
(entry)->m_blink = (head)->m_blink; \
(head)->m_blink = (entry); \
(entry)->m_blink->m_flink = (entry); \
}
/*===========================================================================
*
* rtl_memory (debug) internals.
*
*=========================================================================*/
#if OSL_DEBUG_LEVEL > 0
#define __dbg_memory_succ(entry, length) \
(memory_type*)((char*)((entry)) + ((length) & 0x7fffffff))
#define __dbg_memory_pred(entry, offset) \
(memory_type*)((char*)((entry)) - ((offset) & 0x7fffffff))
#define __dbg_memory_ensure(entry) (!((size_t)(entry) & 0x7))
/*
* __dbg_memory_dequeue.
*/
static void __dbg_memory_dequeue (size_t n)
{
register size_t k = queue(n);
g_memory.m_queue_stat[k].m_dequeue += 1;
g_memory.m_queue_stat[k].m_delta_q += 1;
g_memory.m_queue_stat[k].m_deqsize += n;
g_memory.m_queue_stat[k].m_delta_n += n;
}
/*
* __dbg_memory_enqueue.
*/
static void __dbg_memory_enqueue (size_t n)
{
register size_t k = queue(n);
g_memory.m_queue_stat[k].m_enqueue += 1;
g_memory.m_queue_stat[k].m_delta_q -= 1;
g_memory.m_queue_stat[k].m_enqsize += n;
g_memory.m_queue_stat[k].m_delta_n -= n;
}
/*
* __dbg_memory_insert.
*/
static void __dbg_memory_insert (memory_type **ppMemory)
{
register memory_type * succ;
succ = __dbg_memory_succ (*ppMemory, sizeof(memory_type));
succ->m_length = (*ppMemory)->m_length - sizeof(memory_type);
succ->m_offset = (*ppMemory)->m_offset;
queue_insert_tail (&(g_memory.m_alloc_head), (*ppMemory));
(*ppMemory) = succ;
}
/*
* __dbg_memory_remove.
*/
static void __dbg_memory_remove (memory_type **ppMemory)
{
(*ppMemory) = __dbg_memory_pred (*ppMemory, sizeof(memory_type));
queue_remove (*ppMemory);
}
/*
* __dbg_memory_verify_chain.
*/
static int __dbg_memory_verify_chain (memory_type * x)
{
if (!__dbg_memory_ensure(x))
{
OSL_ENSURE(0, "__rtl_memory_verify(): invalid pointer alignment.");
return (0);
}
if (!__dbg_memory_ensure(x->m_length))
{
OSL_ENSURE(0, "__rtl_memory_verify(): dynamic memory corruption");
return (0);
}
if (!__dbg_memory_ensure(x->m_offset))
{
OSL_ENSURE(0, "__rtl_memory_verify(): dynamic memory corruption");
return (0);
}
if (!(x->m_length & 0x7fffffff))
{
OSL_ENSURE(0, "__rtl_memory_verify(): dynamic memory corruption");
return (0);
}
return (1);
}
/*
* __dbg_memory_verify_queue.
*/
static int __dbg_memory_verify_queue (memory_type * x)
{
if (!__dbg_memory_ensure(x))
{
OSL_ENSURE(0, "__rtl_memory_verify(): invalid pointer alignment.");
return (0);
}
if (!__dbg_memory_ensure(x->m_flink))
{
OSL_ENSURE(0, "__rtl_memory_verify(): free memory corruption");
return (0);
}
if (!__dbg_memory_ensure(x->m_blink))
{
OSL_ENSURE(0, "__rtl_memory_verify(): free memory corruption");
return (0);
}
if ((x == x->m_flink) || (x == x->m_blink))
{
OSL_ENSURE(0, "__rtl_memory_verify(): internal logic error");
return (0);
}
return (1);
}
/*
* __dbg_memory_verify_alloc.
*/
static int __dbg_memory_verify_alloc (memory_type * x)
{
register memory_type *head, *entry;
head = entry = &(g_memory.m_alloc_head);
if (!__dbg_memory_ensure(x))
{
OSL_ENSURE(0, "__rtl_memory_verify(): invalid pointer alignment.");
return (0);
}
while (!((entry = entry->m_flink) == head))
{
if ((entry < x) && (x < __dbg_memory_succ(entry, entry->m_length)))
{
head = entry = __dbg_memory_succ(entry, sizeof(memory_type));
while (!((x == entry) || (entry->m_offset & 0x80000000)))
{
/* no match, not last */
if (!__dbg_memory_verify_chain (entry))
return (0);
entry = __dbg_memory_succ(entry, entry->m_length);
}
/* match, or last */
if (!__dbg_memory_verify_chain (entry))
return (0);
break;
}
}
if (!(x == entry))
{
OSL_ENSURE(0, "__rtl_memory_verify(): memory not allocated.");
return (0);
}
return (1);
}
/*
* __dbg_memory_verify.
*/
static int __dbg_memory_verify (memory_type * x, int debug)
{
/* dispatch upon 'debug' level */
if (debug)
{
/* verify allocation */
if (!__dbg_memory_verify_alloc (x))
return (0);
}
else
{
/* verify 'chain' fields */
if (!__dbg_memory_verify_chain (x))
return (0);
}
/* verify 'used' bit */
if (!(x->m_length & 0x80000000))
{
OSL_ENSURE(0, "__rtl_memory_verify(): memory not used.");
return (0);
}
return (1);
}
/*
* __dbg_memory_usage_update.
*/
static size_t __dbg_memory_usage_update (memory_stat * stat, size_t length)
{
register size_t n = (length & 0x7fffffff), k = queue(n);
stat[k].m_dequeue += 1;
stat[k].m_deqsize += n;
if (!(length & 0x80000000))
{
/* not used */
stat[k].m_enqueue += 1;
stat[k].m_enqsize += n;
return (n);
}
else
{
/* used */
stat[k].m_delta_q += 1;
stat[k].m_delta_n += n;
return (0);
}
}
/*
* __dbg_memory_usage.
*/
static void __dbg_memory_usage (memory_stat * total)
{
register memory_type *head, *entry, *memory;
memory_stat stat[__N__];
memset (stat, 0, __N__ * sizeof(memory_stat));
head = entry = &(g_memory.m_alloc_head);
while (!((entry = entry->m_flink) == head))
{
register size_t k = 0, n = entry->m_length - sizeof(memory_type);
memory = __dbg_memory_succ(entry, sizeof(memory_type));
while (!(memory->m_offset & 0x80000000))
{
/* not last */
k += __dbg_memory_usage_update (stat, memory->m_length);
memory = __dbg_memory_succ(memory, memory->m_length);
}
k += __dbg_memory_usage_update (stat, memory->m_length);
OSL_TRACE("%08x %10d %10d", (size_t)(entry), n, k);
}
if (total)
{
size_t i;
memset (total, 0, sizeof(memory_stat));
for (i = 0; i < __N__; i++)
{
total->m_dequeue += stat[i].m_dequeue;
total->m_enqueue += stat[i].m_enqueue;
total->m_delta_q += stat[i].m_delta_q;
total->m_deqsize += stat[i].m_deqsize;
total->m_enqsize += stat[i].m_enqsize;
total->m_delta_n += stat[i].m_delta_n;
}
}
}
#endif /* OSL_DEBUG_LEVEL */
#if OSL_DEBUG_LEVEL > 0
#define DBG_MEMORY_DEQUEUE(n) __dbg_memory_dequeue((size_t)(n) & 0x7fffffff)
#define DBG_MEMORY_ENQUEUE(n) __dbg_memory_enqueue((size_t)(n) & 0x7fffffff)
#define DBG_MEMORY_DEQFILL(entry, offset, length) \
memset(((char*)(entry) + (offset)), 0x77777777, (length))
#define DBG_MEMORY_ENQFILL(entry, offset, length) \
memset(((char*)(entry) + (offset)), 0x33333333, (length))
#define DBG_MEMORY_INSERT(entry) __dbg_memory_insert((entry))
#define DBG_MEMORY_REMOVE(entry) __dbg_memory_remove((entry))
#if OSL_DEBUG_LEVEL > 1
#define DBG_MEMORY_VERIFY(entry) __dbg_memory_verify((entry), 1)
#else #if OSL_DEBUG_LEVEL > 0
#define DBG_MEMORY_VERIFY(entry) __dbg_memory_verify((entry), 0)
#endif /* OSL_DEBUG_LEVEL */
#define DBG_MEMORY_VERIFY_CHAIN(entry) __dbg_memory_verify_chain((entry))
#define DBG_MEMORY_VERIFY_QUEUE(entry) __dbg_memory_verify_queue((entry))
#else /* PRODUCT */
#define DBG_MEMORY_DEQUEUE(n)
#define DBG_MEMORY_ENQUEUE(n)
#define DBG_MEMORY_DEQFILL(entry, offset, length)
#define DBG_MEMORY_ENQFILL(entry, offset, length)
#define DBG_MEMORY_INSERT(entry)
#define DBG_MEMORY_REMOVE(entry)
#define DBG_MEMORY_VERIFY(entry)
#define DBG_MEMORY_VERIFY_CHAIN(entry)
#define DBG_MEMORY_VERIFY_QUEUE(entry)
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
/*===========================================================================
*
* rtl_memory (manager) internals.
*
*=========================================================================*/
#define queue_cast(entry, offset) \
((memory_type*)((char*)(entry) + (ptrdiff_t)(offset)))
#define __rtl_memory_used(entry) ((entry)->m_length & 0x80000000)
#define __rtl_memory_last(entry) ((entry)->m_offset & 0x80000000)
#define __rtl_memory_offset(entry) \
((ptrdiff_t)((entry)->m_offset & 0x7fffffff))
/*
* ___rtl_memory_init.
*/
void SAL_CALL ___rtl_memory_init (void)
{
#if defined(RTL_MUTEX_INIT)
RTL_MUTEX_INIT (&(g_memory.m_mutex.m_lock));
#endif /* RTL_MUTEX_INIT */
RTL_MUTEX_ACQUIRE(&(g_memory.m_mutex.m_lock));
if (!(g_memory.m_align))
{
int i;
queue_start (&(g_memory.m_alloc_head));
for (i = 0; i < __N__; i++)
queue_start (&(g_memory.m_queue_head[i]));
for (i = 1; i <= __L__; i++)
g_memory.m_queue_head[i].m_length = (i << 3);
for (i = 1; i < __P__; i++)
g_memory.m_queue_head[__L__ + i].m_length = ((1 << (i+5)) << 3);
g_memory.m_align = __rtl_memory_vmpagesize();
}
RTL_MUTEX_RELEASE(&(g_memory.m_mutex.m_lock));
}
/*
* ___rtl_memory_fini.
*/
void SAL_CALL ___rtl_memory_fini (void)
{
#if OSL_DEBUG_LEVEL > 1
memory_stat total;
__dbg_memory_usage (&total);
if (total.m_delta_n > 0)
{
OSL_TRACE("___rtl_memory_fini(): "
"Leak: %10d (Alloc: %10d, Free: %10d)",
total.m_delta_n,
(sal_uInt32)(total.m_deqsize & 0xffffffff),
(sal_uInt32)(total.m_enqsize & 0xffffffff));
}
#endif /* OSL_DEBUG_LEVEL */
}
/*
* __rtl_memory_merge.
*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static void __rtl_memory_merge (memory_type * prev, memory_type * next)
{
/* adjust length */
prev->m_length += next->m_length;
if (!__rtl_memory_last(next))
{
/* not last, adjust offset */
register memory_type * succ = queue_cast(prev, prev->m_length);
DBG_MEMORY_VERIFY_CHAIN (succ);
succ->m_offset = prev->m_length | __rtl_memory_last(succ);
}
/* propagate 'last' bit */
prev->m_offset |= __rtl_memory_last(next);
}
#else /* PRODUCT */
#define __rtl_memory_merge(prev, next) \
{ \
(prev)->m_length += (next)->m_length; \
if (!__rtl_memory_last((next))) \
{ \
register memory_type * succ = queue_cast((prev), (prev)->m_length); \
succ->m_offset = (prev)->m_length | __rtl_memory_last(succ); \
} \
(prev)->m_offset |= __rtl_memory_last((next)); \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
/*
* __rtl_memory_split.
*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static void __rtl_memory_split (memory_type * prev, memory_type * next)
{
/* adjust length */
prev->m_length -= next->m_length;
if (!__rtl_memory_last(prev))
{
/* not last, adjust offset */
register memory_type * succ = queue_cast(next, next->m_length);
DBG_MEMORY_VERIFY_CHAIN (succ);
succ->m_offset = next->m_length | __rtl_memory_last(succ);
}
/* propagate 'last' bit */
next->m_offset |= __rtl_memory_last(prev);
prev->m_offset &= ~0x80000000;
}
#else /* PRODUCT */
#define __rtl_memory_split(prev, next) \
{ \
(prev)->m_length -= (next)->m_length; \
if (!__rtl_memory_last((prev))) \
{ \
register memory_type * succ = queue_cast((next), (next)->m_length); \
succ->m_offset = (next)->m_length | __rtl_memory_last(succ); \
} \
\
(next)->m_offset |= __rtl_memory_last((prev)); \
(prev)->m_offset &= ~0x80000000; \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
/*
* __rtl_memory_insert.
*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static void __rtl_memory_insert (memory_type * memory, size_t n)
{
/* obtain queue head */
register memory_type *head;
head = &(g_memory.m_queue_head[queue(n)]);
DBG_MEMORY_VERIFY_CHAIN (head);
/* insert at queue tail (first-in first-out) */
queue_insert_tail (head, memory);
}
#else /* PRODUCT */
#define __rtl_memory_insert(memory, n) \
{ \
register size_t h; \
\
queue(h, (n)); \
queue_insert_tail (&(g_memory.m_queue_head[h]), (memory)); \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
/*
* __rtl_memory_resize.
*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static void __rtl_memory_resize (memory_type * memory, size_t n)
{
register size_t k = (memory->m_length - n);
OSL_ENSURE(!(memory->m_length & 0x80000000),
"__rtl_memory_resize(): "
"internal logic error.");
if ((k >= sizeof(memory_type)) && (n <= __T__))
{
/* split */
register memory_type * remain = queue_cast(memory, n);
remain->m_length = k; remain->m_offset = n;
__rtl_memory_split (memory, remain);
/* check postcond */
if (!__rtl_memory_last(remain))
{
/* not last, verify used next entry */
register memory_type *next;
next = queue_cast(remain, remain->m_length);
DBG_MEMORY_VERIFY_CHAIN (next);
OSL_POSTCOND(__rtl_memory_used(next),
"__rtl_memory_resize(): "
"internal logic error.");
}
/* enqueue */
__rtl_memory_insert (remain, k);
DBG_MEMORY_VERIFY_QUEUE (remain);
}
DBG_MEMORY_DEQUEUE(memory->m_length);
}
#else /* PRODUCT */
#define __rtl_memory_resize(memory, n) \
{ \
register size_t kn = ((memory)->m_length - (n)); \
if ((kn >= sizeof(memory_type)) && (n <= __T__)) \
{ \
register memory_type * remain = queue_cast((memory), (n)); \
\
remain->m_length = kn; remain->m_offset = (n); \
__rtl_memory_split ((memory), remain); \
\
__rtl_memory_insert (remain, kn); \
} \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
/*
* __rtl_memory_dequeue.
*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static void __rtl_memory_dequeue (memory_type **ppMemory, size_t n)
{
register memory_type *head, *entry;
register size_t k, m = n;
OSL_PRECOND(!*ppMemory, "__rtl_memory_dequeue(): internal logic error.");
for (k = queue(m); k < __N__; k++)
{
/* first fit (equals best fit w/ ascending insert) */
head = &(g_memory.m_queue_head[k]);
for (entry = head->m_flink; entry != head; entry = entry->m_flink)
{
/* queue not empty */
DBG_MEMORY_VERIFY_CHAIN (entry);
if (entry->m_length >= m)
{
/* remove entry */
DBG_MEMORY_VERIFY_QUEUE (entry);
queue_remove (entry);
/* assign result */
*ppMemory = entry;
goto dequeue_leave;
}
}
}
#if OSL_DEBUG_LEVEL > 0
/* adjust for DBG_MEMORY_INSERT() overhead */
m += sizeof(memory_type);
#endif /* OSL_DEBUG_LEVEL */
k = RTL_MEMORY_ALIGN((m > __M__) ? m : __M__, g_memory.m_align);
if (!((entry = RTL_MEMORY_ALLOC(k)) == 0))
{
entry->m_length = k;
entry->m_offset = 0x80000000; /* set 'last' bit */
*ppMemory = entry;
DBG_MEMORY_INSERT(ppMemory);
}
dequeue_leave:
OSL_POSTCOND(*ppMemory, "__rtl_memory_dequeue(): out of memory.");
if ((entry = *ppMemory) != 0)
{
/* adjust length */
__rtl_memory_resize (entry, n);
/* fill w/ 'uninitialized' pattern */
DBG_MEMORY_DEQFILL (entry, __C__, entry->m_length - __C__);
}
#if OSL_DEBUG_LEVEL > 1
if (!entry)
{
memory_stat total;
__dbg_memory_usage (&total);
}
#endif /* OSL_DEBUG_LEVEL */
}
#else /* PRODUCT */
#define __rtl_memory_dequeue(ppMemory, n, label) \
{ \
register memory_type *head, *entry; \
register size_t h, m = (n); \
\
queue (h, m); \
for (; h < __N__; h++) \
{ \
head = &(g_memory.m_queue_head[h]); \
for (entry = head->m_flink; entry != head; entry = entry->m_flink) \
{ \
if (entry->m_length >= m) \
{ \
queue_remove (entry); \
goto label; \
} \
} \
} \
\
h = RTL_MEMORY_ALIGN((m > __M__) ? m : __M__, g_memory.m_align); \
if (!((entry = RTL_MEMORY_ALLOC(h)) == 0)) \
{ \
entry->m_length = h; \
entry->m_offset = 0x80000000; \
} \
\
label: \
if (entry) \
{ \
__rtl_memory_resize (entry, (n)); \
*(ppMemory) = entry; \
} \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
#define RTL_MEMORY_DEQUEUE(m, n, l) __rtl_memory_dequeue((m), (n))
#else /* PRODUCT */
#define RTL_MEMORY_DEQUEUE(m, n, l) __rtl_memory_dequeue(m, n, l)
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
/*
* __rtl_memory_enqueue.
*/
#if defined(PROFILE) || (OSL_DEBUG_LEVEL > 0)
static void __rtl_memory_enqueue (memory_type **ppMemory)
{
register memory_type *head = *ppMemory;
OSL_ENSURE(!__rtl_memory_used(head),
"__rtl_memory_enqueue(): "
"internal logic error.");
DBG_MEMORY_ENQUEUE (head->m_length);
/* fill w/ 'deinitialized' pattern */
DBG_MEMORY_ENQFILL (head, __C__, head->m_length - __C__);
/* try merge w/ next entry */
if (!__rtl_memory_last(head))
{
/* not last, check next in chain */
register memory_type * next;
next = queue_cast(head, head->m_length);
DBG_MEMORY_VERIFY_CHAIN (next);
if (!__rtl_memory_used(next))
{
/* next not used */
DBG_MEMORY_VERIFY_QUEUE (next);
queue_remove (next);
/* merge w/ next */
__rtl_memory_merge (head, next);
DBG_MEMORY_ENQFILL (next, 0, sizeof(memory_type));
}
}
/* try merge w/ prev entry */
if (__rtl_memory_offset(head) > 0)
{
/* not first, check prev in chain */
register memory_type * prev;
prev = queue_cast(head, -(__rtl_memory_offset(head)));
DBG_MEMORY_VERIFY_CHAIN (prev);
if (!__rtl_memory_used(prev))
{
/* prev not used */
DBG_MEMORY_VERIFY_QUEUE (prev);
queue_remove (prev);
/* merge w/ prev */
__rtl_memory_merge (prev, head);
DBG_MEMORY_ENQFILL (head, 0, sizeof(memory_type));
head = prev;
}
}
if (!(head->m_offset == 0x80000000))
{
/* page still used, enqueue */
__rtl_memory_insert (head, head->m_length);
(*ppMemory) = 0;
}
else
{
/* page unused, remove */
(*ppMemory) = head;
DBG_MEMORY_REMOVE(ppMemory);
}
}
#else /* PRODUCT */
#define __rtl_memory_enqueue(ppMemory) \
{ \
register memory_type *head = *(ppMemory); \
\
if (!__rtl_memory_last(head)) \
{ \
register memory_type * next; \
next = queue_cast(head, head->m_length); \
if (!__rtl_memory_used(next)) \
{ \
queue_remove (next); \
__rtl_memory_merge (head, next); \
} \
} \
\
if (__rtl_memory_offset(head) > 0) \
{ \
register memory_type * prev; \
prev = queue_cast(head, -(__rtl_memory_offset(head))); \
if (!__rtl_memory_used(prev)) \
{ \
queue_remove (prev); \
__rtl_memory_merge (prev, head); \
head = prev; \
} \
} \
\
if (!(head->m_offset == 0x80000000)) \
{ \
register memory_type * used = head; \
__rtl_memory_insert (used, used->m_length); \
head = 0; \
} \
\
*(ppMemory) = head; \
}
#endif /* OSL_DEBUG_LEVEL || PRODUCT */
#define RTL_MEMORY_ENQUEUE(m) __rtl_memory_enqueue((m))
/*===========================================================================
*
* rtl_memory (manager) implementation.
*
*=========================================================================*/
/*
* rtl_reallocateMemory.
*/
#ifndef FORCE_SYSALLOC
void* SAL_CALL rtl_reallocateMemory (void * p, sal_uInt32 n) SAL_THROW_EXTERN_C()
{
memory_type * memory;
if (!(!p || !n))
{
/* reallocate */
register size_t datlen;
memory = queue_cast(p, -(__C__)); p = 0;
n = RTL_MEMORY_ALIGN(n, __Q__) + __C__;
RTL_MEMORY_ENTER();
DBG_MEMORY_VERIFY(memory);
/* clear 'used' bit */
DBG_MEMORY_ENQUEUE (memory->m_length);
memory->m_length &= 0x7fffffff;
/* amount of data to be moved or copied */
datlen = ((memory->m_length < n) ? memory->m_length : n);
/* try merge w/ next entry */
if (!__rtl_memory_last(memory))
{
/* not last, check next in chain */
register memory_type * next;
next = queue_cast(memory, memory->m_length);
DBG_MEMORY_VERIFY_CHAIN(next);
if (!__rtl_memory_used(next))
{
/* next not used */
DBG_MEMORY_VERIFY_QUEUE(next);
queue_remove (next);
/* merge w/ next */
__rtl_memory_merge (memory, next);
}
}
/* try merge w/ prev entry */
if (__rtl_memory_offset(memory) > 0)
{
/* not first, check prev in chain */
register memory_type * prev;
prev = queue_cast(memory, -(__rtl_memory_offset(memory)));
DBG_MEMORY_VERIFY_CHAIN (prev);
if (!__rtl_memory_used(prev))
{
/* prev not used, try merge, move */
if ((memory->m_length + prev->m_length) >= n)
{
/* prev does fit */
DBG_MEMORY_VERIFY_QUEUE (prev);
queue_remove (prev);
/* merge w/ prev */
__rtl_memory_merge (prev, memory);
/* move to prev */
memmove (
queue_cast(prev, __C__),
queue_cast(memory, __C__),
datlen - __C__);
memory = prev;
}
}
}
if (memory->m_length >= n)
{
/* adjust, set 'used' bit */
__rtl_memory_resize (memory, n);
memory->m_length |= 0x80000000;
/* assign result */
p = queue_cast(memory, __C__);
}
else
{
/* allocate */
memory_type * result = 0;
DBG_MEMORY_DEQUEUE (memory->m_length);
RTL_MEMORY_DEQUEUE (&result, n, realloc_label_1);
if (result)
{
/* set 'used' bit */
result->m_length |= 0x80000000;
/* copy */
memcpy (
queue_cast(result, __C__),
queue_cast(memory, __C__),
datlen - __C__);
/* free */
RTL_MEMORY_ENQUEUE (&memory);
if (memory)
{
/* free memory page */
RTL_MEMORY_FREE(memory, memory->m_length);
}
/* assign result */
p = queue_cast(result, __C__);
}
}
RTL_MEMORY_LEAVE();
}
else if (!p)
{
/* allocate */
memory = 0;
n = RTL_MEMORY_ALIGN(n, __Q__) + __C__;
RTL_MEMORY_ENTER();
RTL_MEMORY_DEQUEUE (&memory, n, realloc_label_2);
if (memory)
{
/* set 'used' bit */
memory->m_length |= 0x80000000;
/* assign result */
p = queue_cast(memory, __C__);
}
RTL_MEMORY_LEAVE();
}
else if (!n)
{
/* free */
memory = queue_cast(p, -(__C__)); p = 0;
RTL_MEMORY_ENTER();
DBG_MEMORY_VERIFY(memory);
/* clear 'used' bit, enqueue */
memory->m_length &= 0x7fffffff;
RTL_MEMORY_ENQUEUE (&memory);
if (memory)
{
/* free memory page */
RTL_MEMORY_FREE(memory, memory->m_length);
}
RTL_MEMORY_LEAVE();
}
return (p);
}
#else /* FORCE_SYSALLOC */
void* SAL_CALL rtl_reallocateMemory (void * p, sal_uInt32 n) SAL_THROW_EXTERN_C()
{
return realloc(p, (size_t)(n));
}
#endif /* FORCE_SYSALLOC */
/*
* rtl_allocateMemory.
*/
#ifndef FORCE_SYSALLOC
void* SAL_CALL rtl_allocateMemory (sal_uInt32 n) SAL_THROW_EXTERN_C()
{
void * p = 0;
if (n > 0)
{
memory_type * memory = 0;
n = RTL_MEMORY_ALIGN(n, __Q__) + __C__;
RTL_MEMORY_ENTER();
RTL_MEMORY_DEQUEUE (&memory, n, alloc_label);
if (memory)
{
/* set 'used' bit */
memory->m_length |= 0x80000000;
/* assign result */
p = queue_cast(memory, __C__);
}
RTL_MEMORY_LEAVE();
}
return (p);
}
#else /* FORCE_SYSALLOC */
void* SAL_CALL rtl_allocateMemory (sal_uInt32 n) SAL_THROW_EXTERN_C()
{
return malloc((size_t)(n));
}
#endif /* FORCE_SYSALLOC */
/*
* rtl_freeMemory.
*/
#ifndef FORCE_SYSALLOC
void SAL_CALL rtl_freeMemory (void * p) SAL_THROW_EXTERN_C()
{
if (p)
{
memory_type * memory = queue_cast(p, -(__C__));
RTL_MEMORY_ENTER();
DBG_MEMORY_VERIFY(memory);
/* clear 'used' bit, enqueue */
memory->m_length &= 0x7fffffff;
RTL_MEMORY_ENQUEUE (&memory);
if (memory)
{
/* free memory page */
RTL_MEMORY_FREE(memory, memory->m_length);
}
RTL_MEMORY_LEAVE();
}
}
#else /* FORCE_SYSALLOC */
void SAL_CALL rtl_freeMemory (void * p) SAL_THROW_EXTERN_C()
{
free(p);
}
#endif /* FORCE_SYSALLOC */
/*
* rtl_allocateZeroMemory.
*/
#ifndef FORCE_SYSALLOC
void* SAL_CALL rtl_allocateZeroMemory (sal_uInt32 n) SAL_THROW_EXTERN_C()
{
void * p = 0;
if (n > 0)
{
memory_type * memory = 0;
n = RTL_MEMORY_ALIGN(n, __Q__) + __C__;
RTL_MEMORY_ENTER();
RTL_MEMORY_DEQUEUE (&memory, n, alloc_label); /* NYI: demand zero */
if (memory)
{
/* zero, set 'used' bit */
memset ((char*)memory + __C__, 0, memory->m_length - __C__);
memory->m_length |= 0x80000000;
/* assign result */
p = queue_cast(memory, __C__);
}
RTL_MEMORY_LEAVE();
}
return (p);
}
#else /* FORCE_SYSALLOC */
void* SAL_CALL rtl_allocateZeroMemory (sal_uInt32 n) SAL_THROW_EXTERN_C()
{
return calloc((size_t)(n), 1);
}
#endif /* FORCE_SYSALLOC */
/*
* rtl_freeZeroMemory.
*/
#ifndef FORCE_SYSALLOC
void SAL_CALL rtl_freeZeroMemory (void * p, sal_uInt32 n) SAL_THROW_EXTERN_C()
{
if (p)
{
memory_type * memory = queue_cast(p, -(__C__));
RTL_MEMORY_ENTER();
DBG_MEMORY_VERIFY(memory);
/* clear 'used' bit, zero, enqueue */
memory->m_length &= 0x7fffffff;
memset ((char*)memory + __C__, 0, memory->m_length - __C__);
RTL_MEMORY_ENQUEUE (&memory); /* NYI: demand zero */
if (memory)
{
/* free memory page */
RTL_MEMORY_FREE(memory, memory->m_length);
}
RTL_MEMORY_LEAVE();
}
}
#else /* FORCE_SYSALLOC */
void SAL_CALL rtl_freeZeroMemory (void * p, sal_uInt32 n) SAL_THROW_EXTERN_C()
{
if (p)
{
memset(p, 0, n);
free(p);
}
}
#endif /* FORCE_SYSALLOC */
/*===========================================================================
*
* The End.
*
*=========================================================================*/