source: trunk/tools/pebuild/utils.c

Last change on this file was 10298, checked in by sandervl, 22 years ago

added

File size: 7.9 KB
RevLine 
[10298]1/*
2 * Small utility functions for winebuild
3 *
4 * Copyright 2000 Alexandre Julliard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include "config.h"
22#include "port.h"
23
24#include <ctype.h>
25#include <stdarg.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29
30#include "build.h"
31
32void *xmalloc (size_t size)
33{
34 void *res;
35
36 res = malloc (size ? size : 1);
37 if (res == NULL)
38 {
39 fprintf (stderr, "Virtual memory exhausted.\n");
40 exit (1);
41 }
42 return res;
43}
44
45void *xrealloc (void *ptr, size_t size)
46{
47 void *res = realloc (ptr, size);
48 if (res == NULL)
49 {
50 fprintf (stderr, "Virtual memory exhausted.\n");
51 exit (1);
52 }
53 return res;
54}
55
56char *xstrdup( const char *str )
57{
58 char *res = strdup( str );
59 if (!res)
60 {
61 fprintf (stderr, "Virtual memory exhausted.\n");
62 exit (1);
63 }
64 return res;
65}
66
67char *strupper(char *s)
68{
69 char *p;
70 for (p = s; *p; p++) *p = toupper(*p);
71 return s;
72}
73
74void fatal_error( const char *msg, ... )
75{
76 va_list valist;
77 va_start( valist, msg );
78 if (input_file_name)
79 {
80 fprintf( stderr, "%s:", input_file_name );
81 if (current_line)
82 fprintf( stderr, "%d:", current_line );
83 fputc( ' ', stderr );
84 }
85 vfprintf( stderr, msg, valist );
86 va_end( valist );
87 exit(1);
88}
89
90void fatal_perror( const char *msg, ... )
91{
92 va_list valist;
93 va_start( valist, msg );
94 if (input_file_name)
95 {
96 fprintf( stderr, "%s:", input_file_name );
97 if (current_line)
98 fprintf( stderr, "%d:", current_line );
99 fputc( ' ', stderr );
100 }
101 vfprintf( stderr, msg, valist );
102 perror( " " );
103 va_end( valist );
104 exit(1);
105}
106
107void error( const char *msg, ... )
108{
109 va_list valist;
110 va_start( valist, msg );
111 if (input_file_name)
112 {
113 fprintf( stderr, "%s:", input_file_name );
114 if (current_line)
115 fprintf( stderr, "%d:", current_line );
116 fputc( ' ', stderr );
117 }
118 vfprintf( stderr, msg, valist );
119 va_end( valist );
120 nb_errors++;
121}
122
123void warning( const char *msg, ... )
124{
125 va_list valist;
126
127 if (!display_warnings) return;
128 va_start( valist, msg );
129 if (input_file_name)
130 {
131 fprintf( stderr, "%s:", input_file_name );
132 if (current_line)
133 fprintf( stderr, "%d:", current_line );
134 fputc( ' ', stderr );
135 }
136 fprintf( stderr, "warning: " );
137 vfprintf( stderr, msg, valist );
138 va_end( valist );
139}
140
141/* output a standard header for generated files */
142void output_standard_file_header( FILE *outfile )
143{
144 if (input_file_name)
145 fprintf( outfile, ";;/* File generated automatically from %s; do not edit! */\n",
146 input_file_name );
147 else
148 fprintf( outfile, ";;/* File generated automatically; do not edit! */\n" );
149 fprintf( outfile,
150 ";;/* This file can be copied, modified and distributed without restriction. */\n\n" );
151}
152
153/* dump a byte stream into the assembly code */
154void dump_bytes( FILE *outfile, const unsigned char *data, int len,
155 const char *label, int constant )
156{
157 int i;
158
159 fprintf( outfile, "\nstatic %sunsigned char %s[%d] = {",
160 constant ? "const " : "", label, len );
161 for (i = 0; i < len; i++)
162 {
163 if (!(i & 7)) fprintf( outfile, "\n " );
164 fprintf( outfile, "0x%02x", *data++ );
165 if (i < len - 1) fprintf( outfile, "," );
166 }
167 fprintf( outfile, "\n};\n" );
168}
169
170
171/*******************************************************************
172 * open_input_file
173 *
174 * Open a file in the given srcdir and set the input_file_name global variable.
175 */
176FILE *open_input_file( const char *srcdir, const char *name )
177{
178 char *fullname;
179 FILE *file;
180
181 if (srcdir)
182 {
183 fullname = xmalloc( strlen(srcdir) + strlen(name) + 2 );
184 strcpy( fullname, srcdir );
185 strcat( fullname, "/" );
186 strcat( fullname, name );
187 }
188 else fullname = xstrdup( name );
189
190 if (!(file = fopen( fullname, "r" ))) fatal_error( "Cannot open file '%s'\n", fullname );
191 input_file_name = fullname;
192 current_line = 1;
193 return file;
194}
195
196
197/*******************************************************************
198 * close_input_file
199 *
200 * Close the current input file (must have been opened with open_input_file).
201 */
202void close_input_file( FILE *file )
203{
204 fclose( file );
205 free( input_file_name );
206 input_file_name = NULL;
207 current_line = 0;
208}
209
210
211/*******************************************************************
212 * make_c_identifier
213 *
214 * Map a string to a valid C identifier.
215 */
216const char *make_c_identifier( const char *str )
217{
218 static char buffer[256];
219 char *p;
220
221 for (p = buffer; *str && p < buffer+sizeof(buffer)-1; p++, str++)
222 {
223 if (isalnum(*str)) *p = *str;
224 else *p = '_';
225 }
226 *p = 0;
227 return buffer;
228}
229
230
231/*****************************************************************
232 * Function: get_alignment
233 *
234 * Description:
235 * According to the info page for gas, the .align directive behaves
236 * differently on different systems. On some architectures, the
237 * argument of a .align directive is the number of bytes to pad to, so
238 * to align on an 8-byte boundary you'd say
239 * .align 8
240 * On other systems, the argument is "the number of low-order zero bits
241 * that the location counter must have after advancement." So to
242 * align on an 8-byte boundary you'd say
243 * .align 3
244 *
245 * The reason gas is written this way is that it's trying to mimick
246 * native assemblers for the various architectures it runs on. gas
247 * provides other directives that work consistantly across
248 * architectures, but of course we want to work on all arches with or
249 * without gas. Hence this function.
250 *
251 *
252 * Parameters:
253 * alignBoundary -- the number of bytes to align to.
254 * If we're on an architecture where
255 * the assembler requires a 'number
256 * of low-order zero bits' as a
257 * .align argument, then this number
258 * must be a power of 2.
259 *
260 */
261int get_alignment(int alignBoundary)
262{
263#ifdef __powerpc__
264
265 int n = 0;
266
267 switch(alignBoundary)
268 {
269 case 2:
270 n = 1;
271 break;
272 case 4:
273 n = 2;
274 break;
275 case 8:
276 n = 3;
277 break;
278 case 16:
279 n = 4;
280 break;
281 case 32:
282 n = 5;
283 break;
284 case 64:
285 n = 6;
286 break;
287 case 128:
288 n = 7;
289 break;
290 case 256:
291 n = 8;
292 break;
293 case 512:
294 n = 9;
295 break;
296 case 1024:
297 n = 10;
298 break;
299 case 2048:
300 n = 11;
301 break;
302 case 4096:
303 n = 12;
304 break;
305 case 8192:
306 n = 13;
307 break;
308 case 16384:
309 n = 14;
310 break;
311 case 32768:
312 n = 15;
313 break;
314 case 65536:
315 n = 16;
316 break;
317 default:
318 fatal_error("Alignment to %d-byte boundary not supported on this architecture.\n",
319 alignBoundary);
320 }
321 return n;
322
323#elif defined(__i386__) || defined(__sparc__)
324
325 return alignBoundary;
326
327#else
328#error "How does the '.align' assembler directive work on your architecture?"
329#endif
330}
Note: See TracBrowser for help on using the repository browser.