]>
git.saurik.com Git - apple/javascriptcore.git/blob - wtf/FastMalloc.h
2b3d891ffc3a57cf189e5708dc0ed519f5c795b5
2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #ifndef WTF_FastMalloc_h
22 #define WTF_FastMalloc_h
30 void *fastMalloc(size_t n
);
31 void *fastZeroedMalloc(size_t n
);
32 void *fastCalloc(size_t n_elements
, size_t element_size
);
33 void fastFree(void* p
);
34 void *fastRealloc(void* p
, size_t n
);
37 void fastMallocForbid();
38 void fastMallocAllow();
41 void releaseFastMallocFreeMemory();
45 using WTF::fastMalloc
;
46 using WTF::fastZeroedMalloc
;
47 using WTF::fastCalloc
;
48 using WTF::fastRealloc
;
52 using WTF::fastMallocForbid
;
53 using WTF::fastMallocAllow
;
56 #if COMPILER(GCC) && PLATFORM(DARWIN)
57 #define WTF_PRIVATE_INLINE __private_extern__ inline __attribute__((always_inline))
59 #define WTF_PRIVATE_INLINE inline __attribute__((always_inline))
61 #define WTF_PRIVATE_INLINE __forceinline
63 #define WTF_PRIVATE_INLINE inline
66 #ifndef _CRTDBG_MAP_ALLOC
68 #if !defined(USE_SYSTEM_MALLOC) || !(USE_SYSTEM_MALLOC)
69 WTF_PRIVATE_INLINE
void* operator new(size_t s
) { return fastMalloc(s
); }
70 WTF_PRIVATE_INLINE
void operator delete(void* p
) { fastFree(p
); }
71 WTF_PRIVATE_INLINE
void* operator new[](size_t s
) { return fastMalloc(s
); }
72 WTF_PRIVATE_INLINE
void operator delete[](void* p
) { fastFree(p
); }
75 #endif // _CRTDBG_MAP_ALLOC
77 #endif /* WTF_FastMalloc_h */