* Makefile.in (rtlanal.o): Depend on $(TM_P_H).
[official-gcc.git] / libchill / allocate.c
blob628381e772a7497b02beb72a06cc2c9472acb574
1 /* Implement runtime actions for CHILL.
2 Copyright (C) 1992,1993 Free Software Foundation, Inc.
3 Author: Wilfried Moser
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
29 #define __CHILL_LIB__
31 #include <stdlib.h>
32 #include "rtltypes.h"
34 extern void __cause_ex1 (char *exname, char *file, int lineno);
36 /* define needed exceptions */
37 EXCEPTION (allocatefail)
38 EXCEPTION (rangefail)
41 * function __allocate
43 * parameters:
44 * size number of bytes to allocate
45 * filename source file which issued the call
46 * linenumber line number within that source file
48 * returns:
49 * void *
51 * exceptions:
52 * allocatefail
53 * rangefail
55 * abstract:
56 * allocate memory from heap
60 void *
61 __allocate (size, filename, linenumber)
62 int size;
63 char *filename;
64 int linenumber;
66 void *tmp;
68 if (size < 0)
69 __cause_ex1 ("rangefail", filename, linenumber);
70 tmp = malloc (size);
71 if (!tmp)
72 __cause_ex1 ("allocatefail", filename, linenumber);
73 return tmp;