spec: update specfile with new rdf2bin aliases
[nasm.git] / nasmlib.h
blob6776c91d40610a92dd578d884982c8237bab0789
1 /* ----------------------------------------------------------------------- *
2 *
3 * Copyright 1996-2009 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation, Inc.,
10 * 51 Franklin St, Fifth Floor, Boston MA 02110-1301, USA; version 2.1,
11 * or, at your option, any later version, incorporated herein by
12 * reference.
14 * Patches submitted to this file are required to be dual licensed
15 * under the LGPL 2.1+ and the 2-clause BSD license:
17 * Copyright 1996-2009 the NASM Authors - All rights reserved.
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following
21 * conditions are met:
23 * * Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * * Redistributions in binary form must reproduce the above
26 * copyright notice, this list of conditions and the following
27 * disclaimer in the documentation and/or other materials provided
28 * with the distribution.
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
33 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
34 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
40 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
41 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
42 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 * ----------------------------------------------------------------------- */
46 /*
47 * nasmlib.h header file for nasmlib.c
50 #ifndef NASM_NASMLIB_H
51 #define NASM_NASMLIB_H
53 #include "compiler.h"
55 #include <inttypes.h>
56 #include <stdio.h>
57 #include <string.h>
58 #ifdef HAVE_STRINGS_H
59 #include <strings.h>
60 #endif
63 * tolower table -- avoids a function call on some platforms.
64 * NOTE: unlike the tolower() function in ctype, EOF is *NOT*
65 * a permitted value, for obvious reasons.
67 void tolower_init(void);
68 extern unsigned char nasm_tolower_tab[256];
69 #define nasm_tolower(x) nasm_tolower_tab[(unsigned char)(x)]
71 /* Wrappers around <ctype.h> functions */
72 /* These are only valid for values that cannot include EOF */
73 #define nasm_isspace(x) isspace((unsigned char)(x))
74 #define nasm_isalpha(x) isalpha((unsigned char)(x))
75 #define nasm_isdigit(x) isdigit((unsigned char)(x))
76 #define nasm_isalnum(x) isalnum((unsigned char)(x))
77 #define nasm_isxdigit(x) isxdigit((unsigned char)(x))
80 * If this is defined, the wrappers around malloc et al will
81 * transform into logging variants, which will cause NASM to create
82 * a file called `malloc.log' when run, and spew details of all its
83 * memory management into that. That can then be analysed to detect
84 * memory leaks and potentially other problems too.
86 /* #define LOGALLOC */
89 * -------------------------
90 * Error reporting functions
91 * -------------------------
95 * An error reporting function should look like this.
97 typedef void (*efunc) (int severity, const char *fmt, ...);
98 extern efunc nasm_malloc_error;
101 * These are the error severity codes which get passed as the first
102 * argument to an efunc.
105 #define ERR_DEBUG 0x00000008 /* put out debugging message */
106 #define ERR_WARNING 0x00000000 /* warn only: no further action */
107 #define ERR_NONFATAL 0x00000001 /* terminate assembly after phase */
108 #define ERR_FATAL 0x00000002 /* instantly fatal: exit with error */
109 #define ERR_PANIC 0x00000003 /* internal error: panic instantly
110 * and dump core for reference */
111 #define ERR_MASK 0x0000000F /* mask off the above codes */
112 #define ERR_NOFILE 0x00000010 /* don't give source file name/line */
113 #define ERR_USAGE 0x00000020 /* print a usage message */
114 #define ERR_PASS1 0x00000040 /* only print this error on pass one */
115 #define ERR_PASS2 0x00000080
116 #define ERR_NO_SEVERITY 0x00000100 /* suppress printing severity */
119 * These codes define specific types of suppressible warning.
122 #define ERR_WARN_MASK 0xFFFFF000 /* the mask for this feature */
123 #define ERR_WARN_SHR 12 /* how far to shift right */
125 #define WARN(x) ((x) << ERR_WARN_SHR)
127 #define ERR_WARN_MNP WARN( 1) /* macro-num-parameters warning */
128 #define ERR_WARN_MSR WARN( 2) /* macro self-reference */
129 #define ERR_WARN_MDP WARN( 3) /* macro default parameters check */
130 #define ERR_WARN_OL WARN( 4) /* orphan label (no colon, and
131 * alone on line) */
132 #define ERR_WARN_NOV WARN( 5) /* numeric overflow */
133 #define ERR_WARN_GNUELF WARN( 6) /* using GNU ELF extensions */
134 #define ERR_WARN_FL_OVERFLOW WARN( 7) /* FP overflow */
135 #define ERR_WARN_FL_DENORM WARN( 8) /* FP denormal */
136 #define ERR_WARN_FL_UNDERFLOW WARN( 9) /* FP underflow */
137 #define ERR_WARN_FL_TOOLONG WARN(10) /* FP too many digits */
138 #define ERR_WARN_USER WARN(11) /* %warning directives */
139 #define ERR_WARN_MAX 11 /* the highest numbered one */
142 * Wrappers around malloc, realloc and free. nasm_malloc will
143 * fatal-error and die rather than return NULL; nasm_realloc will
144 * do likewise, and will also guarantee to work right on being
145 * passed a NULL pointer; nasm_free will do nothing if it is passed
146 * a NULL pointer.
148 void nasm_set_malloc_error(efunc);
149 #ifndef LOGALLOC
150 void *nasm_malloc(size_t);
151 void *nasm_zalloc(size_t);
152 void *nasm_realloc(void *, size_t);
153 void nasm_free(void *);
154 char *nasm_strdup(const char *);
155 char *nasm_strndup(const char *, size_t);
156 #else
157 void *nasm_malloc_log(const char *, int, size_t);
158 void *nasm_zalloc_log(const char *, int, size_t);
159 void *nasm_realloc_log(const char *, int, void *, size_t);
160 void nasm_free_log(const char *, int, void *);
161 char *nasm_strdup_log(const char *, int, const char *);
162 char *nasm_strndup_log(const char *, int, const char *, size_t);
163 #define nasm_malloc(x) nasm_malloc_log(__FILE__,__LINE__,x)
164 #define nasm_zalloc(x) nasm_zalloc_log(__FILE__,__LINE__,x)
165 #define nasm_realloc(x,y) nasm_realloc_log(__FILE__,__LINE__,x,y)
166 #define nasm_free(x) nasm_free_log(__FILE__,__LINE__,x)
167 #define nasm_strdup(x) nasm_strdup_log(__FILE__,__LINE__,x)
168 #define nasm_strndup(x,y) nasm_strndup_log(__FILE__,__LINE__,x,y)
169 #endif
172 * NASM assert failure
174 noreturn nasm_assert_failed(const char *, int, const char *);
175 #define nasm_assert(x) \
176 do { if (!(x)) nasm_assert_failed(__FILE__,__LINE__,#x); } while (0)
179 * ANSI doesn't guarantee the presence of `stricmp' or
180 * `strcasecmp'.
182 #if defined(HAVE_STRCASECMP)
183 #define nasm_stricmp strcasecmp
184 #elif defined(HAVE_STRICMP)
185 #define nasm_stricmp stricmp
186 #else
187 int nasm_stricmp(const char *, const char *);
188 #endif
190 #if defined(HAVE_STRNCASECMP)
191 #define nasm_strnicmp strncasecmp
192 #elif defined(HAVE_STRNICMP)
193 #define nasm_strnicmp strnicmp
194 #else
195 int nasm_strnicmp(const char *, const char *, size_t);
196 #endif
198 int nasm_memicmp(const char *, const char *, size_t);
200 #if defined(HAVE_STRSEP)
201 #define nasm_strsep strsep
202 #else
203 char *nasm_strsep(char **stringp, const char *delim);
204 #endif
208 * Convert a string into a number, using NASM number rules. Sets
209 * `*error' to true if an error occurs, and false otherwise.
211 int64_t readnum(char *str, bool *error);
214 * Convert a character constant into a number. Sets
215 * `*warn' to true if an overflow occurs, and false otherwise.
216 * str points to and length covers the middle of the string,
217 * without the quotes.
219 int64_t readstrnum(char *str, int length, bool *warn);
222 * seg_init: Initialise the segment-number allocator.
223 * seg_alloc: allocate a hitherto unused segment number.
225 void seg_init(void);
226 int32_t seg_alloc(void);
229 * many output formats will be able to make use of this: a standard
230 * function to add an extension to the name of the input file
232 #ifdef NASM_NASM_H
233 void standard_extension(char *inname, char *outname, char *extension,
234 efunc error);
235 #endif
238 * Utility macros...
240 * This is a useful #define which I keep meaning to use more often:
241 * the number of elements of a statically defined array.
244 #define elements(x) ( sizeof(x) / sizeof(*(x)) )
247 * some handy macros that will probably be of use in more than one
248 * output format: convert integers into little-endian byte packed
249 * format in memory
252 #if X86_MEMORY
254 #define WRITECHAR(p,v) \
255 do { \
256 *(uint8_t *)(p) = (v); \
257 (p) += 1; \
258 } while (0)
260 #define WRITESHORT(p,v) \
261 do { \
262 *(uint16_t *)(p) = (v); \
263 (p) += 2; \
264 } while (0)
266 #define WRITELONG(p,v) \
267 do { \
268 *(uint32_t *)(p) = (v); \
269 (p) += 4; \
270 } while (0)
272 #define WRITEDLONG(p,v) \
273 do { \
274 *(uint64_t *)(p) = (v); \
275 (p) += 8; \
276 } while (0)
278 #define WRITEADDR(p,v,s) \
279 do { \
280 uint64_t _wa_v = (v); \
281 memcpy((p), &_wa_v, (s)); \
282 (p) += (s); \
283 } while (0)
285 #else /* !X86_MEMORY */
287 #define WRITECHAR(p,v) \
288 do { \
289 uint8_t *_wc_p = (uint8_t *)(p); \
290 uint8_t _wc_v = (v); \
291 _wc_p[0] = _wc_v; \
292 (p) = (void *)(_wc_p + 1); \
293 } while (0)
295 #define WRITESHORT(p,v) \
296 do { \
297 uint8_t *_ws_p = (uint8_t *)(p); \
298 uint16_t _ws_v = (v); \
299 _ws_p[0] = _ws_v; \
300 _ws_p[1] = _ws_v >> 8; \
301 (p) = (void *)(_ws_p + 2); \
302 } while (0)
304 #define WRITELONG(p,v) \
305 do { \
306 uint8_t *_wl_p = (uint8_t *)(p); \
307 uint32_t _wl_v = (v); \
308 _wl_p[0] = _wl_v; \
309 _wl_p[1] = _wl_v >> 8; \
310 _wl_p[2] = _wl_v >> 16; \
311 _wl_p[3] = _wl_v >> 24; \
312 (p) = (void *)(_wl_p + 4); \
313 } while (0)
315 #define WRITEDLONG(p,v) \
316 do { \
317 uint8_t *_wq_p = (uint8_t *)(p); \
318 uint64_t _wq_v = (v); \
319 _wq_p[0] = _wq_v; \
320 _wq_p[1] = _wq_v >> 8; \
321 _wq_p[2] = _wq_v >> 16; \
322 _wq_p[3] = _wq_v >> 24; \
323 _wq_p[4] = _wq_v >> 32; \
324 _wq_p[5] = _wq_v >> 40; \
325 _wq_p[6] = _wq_v >> 48; \
326 _wq_p[7] = _wq_v >> 56; \
327 (p) = (void *)(_wq_p + 8); \
328 } while (0)
330 #define WRITEADDR(p,v,s) \
331 do { \
332 int _wa_s = (s); \
333 uint64_t _wa_v = (v); \
334 while (_wa_s--) { \
335 WRITECHAR(p,_wa_v); \
336 _wa_v >>= 8; \
338 } while(0)
340 #endif
343 * and routines to do the same thing to a file
345 #define fwriteint8_t(d,f) putc(d,f)
346 void fwriteint16_t(uint16_t data, FILE * fp);
347 void fwriteint32_t(uint32_t data, FILE * fp);
348 void fwriteint64_t(uint64_t data, FILE * fp);
349 void fwriteaddr(uint64_t data, int size, FILE * fp);
352 * Binary search routine. Returns index into `array' of an entry
353 * matching `string', or <0 if no match. `array' is taken to
354 * contain `size' elements.
356 * bsi() is case sensitive, bsii() is case insensitive.
358 int bsi(const char *string, const char **array, int size);
359 int bsii(const char *string, const char **array, int size);
361 char *src_set_fname(char *newname);
362 int32_t src_set_linnum(int32_t newline);
363 int32_t src_get_linnum(void);
365 * src_get may be used if you simply want to know the source file and line.
366 * It is also used if you maintain private status about the source location
367 * It return 0 if the information was the same as the last time you
368 * checked, -1 if the name changed and (new-old) if just the line changed.
370 int src_get(int32_t *xline, char **xname);
372 char *nasm_strcat(const char *one, const char *two);
374 const char *prefix_name(int);
376 #define ZERO_BUF_SIZE 4096
377 extern const uint8_t zero_buffer[ZERO_BUF_SIZE];
378 size_t fwritezero(size_t bytes, FILE *fp);
380 #endif