* configure.ac: New switch for disabling -O2 (--disable-optimizations).
[cacao.git] / src / toolbox / util.c
1 /* src/toolbox/util.c - contains some utility functions
2
3    Copyright (C) 1996-2005, 2006, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #include "config.h"
27
28 #include <assert.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include <unistd.h>
32
33 #include "vm/types.h"
34
35 #include "mm/memory.hpp"
36 #include "vm/vm.hpp"
37
38
39 /* get_variable_message_length *************************************************
40
41    This function simluates the print of a variable message and
42    determines so the message length;
43
44 *******************************************************************************/
45
46 int get_variable_message_length(const char *fmt, va_list ap)
47 {
48         int n;
49
50         n = vsnprintf(NULL, 0, fmt, ap);
51
52 #if defined(__IRIX__)
53         /* We know that IRIX returns -1 if the buffer is NULL */
54
55         if (n == -1) {
56                 char *p, *np;
57                 s4    size;
58
59                 size = 100;                     /* start with 100-bytes               */
60
61                 p = MNEW(char, size);
62
63                 while (1) {
64                         /* Try to print in the allocated space. */
65
66                         n = vsnprintf(p, size, fmt, ap);
67
68                         /* If that worked, return the length. */
69                         if (n > -1 && n < size)
70                                 return n;
71
72                         /* Else try again with more space. */
73                         size *= 2;  /* twice the old size */
74
75                         if ((np = MREALLOC(p, char, size, size)) == NULL) {
76                                 assert(0);
77                         } else {
78                                 p = np;
79                         }
80                 }
81         }
82 #endif
83
84         return n;
85 }
86
87
88 /*
89  * These are local overrides for various environment variables in Emacs.
90  * Please do not remove this and leave it at the end of the file, where
91  * Emacs will automagically detect them.
92  * ---------------------------------------------------------------------
93  * Local variables:
94  * mode: c
95  * indent-tabs-mode: t
96  * c-basic-offset: 4
97  * tab-width: 4
98  * End:
99  */