]>
gcc.gnu.org Git - gcc.git/blob - libobjc/memory.c
1 /* GNU Objective C Runtime Memory allocation functions
2 Copyright (C) 1993, 1994, 1995, 1996, 1997, 2002, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4 Contributed by Kresten Krab Thorup
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 3, or (at your option) any
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 /* This file includes the standard functions for memory allocation and
28 disposal. Users should use these functions in their ObjC programs
29 so that they work properly with garbage collectors. */
31 /* TODO: Turn these into macros or inline functions. */
33 #include "objc-private/common.h"
34 #include "objc-private/error.h"
36 /* __USE_FIXED_PROTOTYPES__ used to be required to get prototypes for
37 malloc, free, etc. on some platforms. It is unclear if we still
38 need it, but it can't hurt. */
39 #define __USE_FIXED_PROTOTYPES__
42 #include "objc/runtime.h"
48 objc_malloc (size_t size
)
50 void *res
= (void *)(GC_malloc (size
));
52 _objc_abort ("Virtual memory exhausted\n");
57 objc_atomic_malloc (size_t size
)
59 void *res
= (void *)(GC_malloc_atomic (size
));
61 _objc_abort ("Virtual memory exhausted\n");
66 objc_realloc (void *mem
, size_t size
)
68 void *res
= (void *)(GC_realloc (mem
, size
));
70 _objc_abort ("Virtual memory exhausted\n");
75 objc_calloc (size_t nelem
, size_t size
)
77 /* Note that GC_malloc returns cleared memory (see documentation) so
78 there is no need to clear it. */
79 void *res
= (void *)(GC_malloc (nelem
* size
));
81 _objc_abort ("Virtual memory exhausted\n");
86 objc_free (void *mem
__attribute__ ((__unused__
)))
94 objc_malloc (size_t size
)
96 void *res
= (void *)(malloc (size
));
98 _objc_abort ("Virtual memory exhausted\n");
103 objc_atomic_malloc (size_t size
)
105 void *res
= (void *)(malloc (size
));
107 _objc_abort ("Virtual memory exhausted\n");
112 objc_realloc (void *mem
, size_t size
)
114 void *res
= (void *)(realloc (mem
, size
));
116 _objc_abort ("Virtual memory exhausted\n");
121 objc_calloc (size_t nelem
, size_t size
)
123 void *res
= (void *)(calloc (nelem
, size
));
125 _objc_abort ("Virtual memory exhausted\n");
130 objc_free (void *mem
)
135 #endif /* !OBJC_WITH_GC */
This page took 0.047315 seconds and 6 git commands to generate.