cleanup builtin handling and put it into an own file. Also implement a bunch of entit...
[cparser] / adt / xmalloc.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20
21 /*
22  * Project:     libFIRM
23  * File name:   ir/adt/xmalloc.c
24  * Purpose:     Xmalloc --- never failing wrappers for malloc() & friends.
25  * Author:      Markus Armbruster
26  * Modified by:
27  * Created:     1999 by getting from fiasco
28  * CVS-ID:      $Id$
29  * Copyright:   (c) 1995, 1996 Markus Armbruster
30  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
31  */
32
33 /* @@@ ToDo: replace this file with the one from liberty.
34    [reimplement xstrdup, ... ] */
35 #include <config.h>
36
37 #include <stdlib.h>
38 #include <string.h>
39
40 #include "xmalloc.h"
41 #include "error.h"
42 #include "util.h"
43
44 static inline __attribute__((noreturn))
45 void out_of_memory(void)
46 {
47         panic("out of memory");
48 }
49
50 void *xmalloc(size_t size)
51 {
52         void *res = malloc(size);
53
54         if (UNLIKELY(res == NULL))
55                 out_of_memory();
56
57         return res;
58 }
59
60 void *xcalloc(size_t num, size_t size)
61 {
62         void *res = calloc(num, size);
63
64         if (UNLIKELY(res == NULL))
65                 out_of_memory();
66
67         return res;
68 }
69
70 void *xrealloc(void *ptr, size_t size)
71 {
72         void *res = realloc (ptr, size);
73
74         if (UNLIKELY(res == NULL))
75                 out_of_memory();
76
77         return res;
78 }
79
80 char *xstrdup(const char *str)
81 {
82         size_t len = strlen(str) + 1;
83         char *res = xmalloc(len);
84         memcpy(res, str, len);
85
86         return res;
87 }