Fix for PR1654 - implement "movstrsi" pattern to copy simple blocks of memory.
[official-gcc.git] / libchill / allocate.c
blob5d6b678fe2136168d4f496f2d0007ee25b86dca0
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* As a special exception, if you link this library with other files,
22 some of which are compiled with GCC, to produce an executable,
23 this library does not by itself cause the resulting executable
24 to be covered by the GNU General Public License.
25 This exception does not however invalidate any other reasons why
26 the executable file might be covered by the GNU General Public License. */
28 #define __CHILL_LIB__
30 #include <stdlib.h>
31 #include "rtltypes.h"
33 extern void __cause_ex1 (char *exname, char *file, int lineno);
35 /* define needed exceptions */
36 EXCEPTION (allocatefail)
37 EXCEPTION (rangefail)
40 * function __allocate
42 * parameters:
43 * size number of bytes to allocate
44 * filename source file which issued the call
45 * linenumber line number within that source file
47 * returns:
48 * void *
50 * exceptions:
51 * allocatefail
52 * rangefail
54 * abstract:
55 * allocate memory from heap
59 void *
60 __allocate (size, filename, linenumber)
61 int size;
62 char *filename;
63 int linenumber;
65 void *tmp;
67 if (size < 0)
68 __cause_ex1 ("rangefail", filename, linenumber);
69 tmp = malloc (size);
70 if (!tmp)
71 __cause_ex1 ("allocatefail", filename, linenumber);
72 return tmp;