1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/*===========================================================================
* Filename : alloc.c
* About : memory allocators
*
* Copyright (C) 2005 Kazuki Ohta <mover AT hct.zaq.ne.jp>
* Copyright (C) 2005 Jun Inoue <jun.lambda AT gmail.com>
* Copyright (C) 2005-2006 YAMAMOTO Kengo <yamaken AT bp.iij4u.or.jp>
* Copyright (c) 2007-2008 SigScheme Project <uim-en AT googlegroups.com>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of authors nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
* IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
===========================================================================*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
#if (HAVE_MEMALIGN && HAVE_MALLOC_H)
#include <malloc.h>
#endif
#if HAVE_GETPAGESIZE
#include <unistd.h>
#endif
#include "sigscheme.h"
#include "sigschemeinternal.h"
/*=======================================
File Local Macro Definitions
=======================================*/
/*=======================================
File Local Type Definitions
=======================================*/
/*=======================================
Variable Definitions
=======================================*/
/*=======================================
File Local Function Declarations
=======================================*/
/*=======================================
Function Definitions
=======================================*/
/* Allocates sizeof(ScmCell)-byte aligned memory for heaps. */
/* TODO: Align to more large size to fit better to cache, MMU and DRAM pages */
SCM_EXPORT void *
scm_malloc_aligned(size_t size)
{
void *p;
#if HAVE_POSIX_MEMALIGN
int err;
/*
* Cited from manpage of posix_memalign(3) of glibc:
*
* CONFORMING TO
* The function valloc() appeared in 3.0 BSD. It is documented as being
* obsolete in BSD 4.3, and as legacy in SUSv2. It no longer occurs in
* SUSv3. The function memalign() appears in SunOS 4.1.3 but not in
* BSD 4.4. The function posix_memalign() comes from POSIX 1003.1d.
*/
err = posix_memalign(&p, sizeof(ScmCell), size);
if (err)
p = NULL;
#elif HAVE_MEMALIGN
SCM_ASSERT(!(sizeof(ScmCell) % sizeof(void *)));
SCM_ASSERT(sizeof(ScmCell) == 8
|| sizeof(ScmCell) == 16
|| sizeof(ScmCell) == 32);
p = memalign(sizeof(ScmCell), size);
#elif (HAVE_PAGE_ALIGNED_MALLOC && HAVE_GETPAGESIZE)
if ((size_t)getpagesize() <= size)
p = scm_malloc(size);
else
PLAIN_ERR("cannot ensure memory alignment");
#elif defined(__APPLE__)
/*
* malloc in Mac OS X guarantees 16 byte alignment. And large
* memory allocations are guaranteed to be page-aligned. See
* http://developer.apple.com/documentation/Performance/Conceptual/
* ManagingMemory/Articles/MemoryAlloc.html
* --
* ekato Jan 23 2006
*/
if (sizeof(ScmCell) <= 16)
p = malloc(size);
else
PLAIN_ERR("cannot ensure memory alignment");
#else
/* Assumes that malloc(3) returns at least 8-byte aligned pointer. 64-bit
* pointers cannot be handled by this method. */
if (sizeof(ScmCell) <= 8)
p = malloc(size);
else
PLAIN_ERR("cannot ensure memory alignment");
#endif
ENSURE_ALLOCATED(p);
/* heaps must be aligned to ScmCell */
SCM_ASSERT(!((uintptr_t)p % sizeof(ScmCell)));
return p;
}
SCM_EXPORT void *
scm_malloc(size_t size)
{
void *p;
p = malloc(size);
ENSURE_ALLOCATED(p);
return p;
}
SCM_EXPORT void *
scm_calloc(size_t number, size_t size)
{
void *p;
p = calloc(number, size);
ENSURE_ALLOCATED(p);
return p;
}
SCM_EXPORT void *
scm_realloc(void *ptr, size_t size)
{
void *p;
p = realloc(ptr, size);
ENSURE_ALLOCATED(p);
return p;
}
SCM_EXPORT char *
scm_strdup(const char *str)
{
char *copied;
#if HAVE_STRDUP
copied = strdup(str);
ENSURE_ALLOCATED(copied);
#else
size_t size;
size = strlen(str) + sizeof("");
copied = scm_malloc(size);
strcpy(copied, str);
#endif
return copied;
}
/* For 'name' slot of symbol object on storage-compact. If your malloc(3) does
* not ensure 8-bytes alignment, Complete this function and hook this into
* symbol object creation and modification. -- YamaKen 2006-05-30
*
* At least strdup(3) with short string in FreeBSD Release 7.0 BETA1.5
* and 8.0-CURRENT x86 returns unaligned address -- ekato 2007-11-04 */
SCM_EXPORT char *
scm_align_str(char *str)
{
char *copied;
size_t size;
/* Use ScmCell-alignment to ensure at least 8-bytes aligned. */
if ((uintptr_t)str % sizeof(ScmCell)) {
size = strlen(str) + sizeof("");
copied = scm_malloc_aligned(size);
strcpy(copied, str);
free(str);
return copied;
} else {
return str;
}
}
/*=======================================
Extendable Local Buffer
=======================================*/
SCM_EXPORT void
scm_lbuf_init(struct ScmLBuf_void_ *lbuf, void *init_buf, size_t init_size)
{
lbuf->buf = lbuf->init_buf = init_buf;
lbuf->size = lbuf->init_size = init_size;
lbuf->extended_cnt = 0;
}
SCM_EXPORT void
scm_lbuf_free(struct ScmLBuf_void_ *lbuf)
{
if (lbuf->buf != lbuf->init_buf)
free(lbuf->buf);
}
SCM_EXPORT void
scm_lbuf_alloc(struct ScmLBuf_void_ *lbuf, size_t size)
{
lbuf->buf = scm_malloc(size);
lbuf->size = size;
}
SCM_EXPORT void
scm_lbuf_realloc(struct ScmLBuf_void_ *lbuf, size_t size)
{
if (lbuf->buf == lbuf->init_buf) {
if (size < lbuf->size)
lbuf->size = size;
lbuf->buf = memcpy(scm_malloc(size), lbuf->buf, lbuf->size);
} else {
lbuf->buf = scm_realloc(lbuf->buf, size);
}
lbuf->size = size;
}
SCM_EXPORT void
scm_lbuf_extend(struct ScmLBuf_void_ *lbuf,
size_t (*f)(struct ScmLBuf_void_ *), size_t least_size)
{
size_t new_size;
if (lbuf->size < least_size) {
new_size = (*f)(lbuf);
if (new_size < lbuf->size)
PLAIN_ERR("local buffer exceeded");
if (new_size < least_size)
new_size = least_size;
scm_lbuf_realloc(lbuf, new_size);
lbuf->extended_cnt++;
}
}
SCM_EXPORT size_t
scm_lbuf_f_linear(struct ScmLBuf_void_ *lbuf)
{
return (lbuf->size + lbuf->init_size);
}
SCM_EXPORT size_t
scm_lbuf_f_exponential(struct ScmLBuf_void_ *lbuf)
{
return (lbuf->size << 1);
}
|