]>
git.saurik.com Git - apple/javascriptcore.git/blob - wtf/FastMalloc.h
f1264ac92f5844c8f17b6f601a4db77a8eda9c2a
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 // These functions call CRASH() if an allocation fails.
31 void* fastMalloc(size_t n
);
32 void* fastZeroedMalloc(size_t n
);
33 void* fastCalloc(size_t n_elements
, size_t element_size
);
34 void* fastRealloc(void* p
, size_t n
);
36 // These functions return NULL if an allocation fails.
37 void* tryFastMalloc(size_t n
);
38 void* tryFastZeroedMalloc(size_t n
);
39 void* tryFastCalloc(size_t n_elements
, size_t element_size
);
40 void* tryFastRealloc(void* p
, size_t n
);
42 void fastFree(void* p
);
45 void fastMallocForbid();
46 void fastMallocAllow();
49 void releaseFastMallocFreeMemory();
51 struct FastMallocStatistics
{
53 size_t freeSizeInHeap
;
54 size_t freeSizeInCaches
;
57 FastMallocStatistics
fastMallocStatistics();
61 using WTF::fastMalloc
;
62 using WTF::fastZeroedMalloc
;
63 using WTF::fastCalloc
;
64 using WTF::fastRealloc
;
65 using WTF::tryFastMalloc
;
66 using WTF::tryFastZeroedMalloc
;
67 using WTF::tryFastCalloc
;
68 using WTF::tryFastRealloc
;
72 using WTF::fastMallocForbid
;
73 using WTF::fastMallocAllow
;
76 #if COMPILER(GCC) && PLATFORM(DARWIN)
77 #define WTF_PRIVATE_INLINE __private_extern__ inline __attribute__((always_inline))
79 #define WTF_PRIVATE_INLINE inline __attribute__((always_inline))
81 #define WTF_PRIVATE_INLINE __forceinline
83 #define WTF_PRIVATE_INLINE inline
86 #ifndef _CRTDBG_MAP_ALLOC
88 #if !defined(USE_SYSTEM_MALLOC) || !(USE_SYSTEM_MALLOC)
89 WTF_PRIVATE_INLINE
void* operator new(size_t s
) { return fastMalloc(s
); }
90 WTF_PRIVATE_INLINE
void operator delete(void* p
) { fastFree(p
); }
91 WTF_PRIVATE_INLINE
void* operator new[](size_t s
) { return fastMalloc(s
); }
92 WTF_PRIVATE_INLINE
void operator delete[](void* p
) { fastFree(p
); }
95 #endif // _CRTDBG_MAP_ALLOC
97 #endif /* WTF_FastMalloc_h */