Mark Perl scripts executable
[nasm/autotest.git] / nasmlib.h
blob7391564cf8930d6fdbd66d36b406c004618fb779
1 /* nasmlib.h header file for nasmlib.c
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the license given in the file "LICENSE"
6 * distributed in the NASM archive.
7 */
9 #ifndef NASM_NASMLIB_H
10 #define NASM_NASMLIB_H
12 #include "compiler.h"
14 #include <inttypes.h>
15 #include <stdio.h>
16 #include <string.h>
17 #ifdef HAVE_STRINGS_H
18 #include <strings.h>
19 #endif
22 * If this is defined, the wrappers around malloc et al will
23 * transform into logging variants, which will cause NASM to create
24 * a file called `malloc.log' when run, and spew details of all its
25 * memory management into that. That can then be analysed to detect
26 * memory leaks and potentially other problems too.
28 /* #define LOGALLOC */
31 * -------------------------
32 * Error reporting functions
33 * -------------------------
37 * An error reporting function should look like this.
39 typedef void (*efunc) (int severity, const char *fmt, ...);
40 extern efunc nasm_malloc_error;
43 * These are the error severity codes which get passed as the first
44 * argument to an efunc.
47 #define ERR_DEBUG 0x00000008 /* put out debugging message */
48 #define ERR_WARNING 0x00000000 /* warn only: no further action */
49 #define ERR_NONFATAL 0x00000001 /* terminate assembly after phase */
50 #define ERR_FATAL 0x00000002 /* instantly fatal: exit with error */
51 #define ERR_PANIC 0x00000003 /* internal error: panic instantly
52 * and dump core for reference */
53 #define ERR_MASK 0x0000000F /* mask off the above codes */
54 #define ERR_NOFILE 0x00000010 /* don't give source file name/line */
55 #define ERR_USAGE 0x00000020 /* print a usage message */
56 #define ERR_PASS1 0x00000040 /* only print this error on pass one */
57 #define ERR_NO_SEVERITY 0x00000080 /* suppress printing severity */
60 * These codes define specific types of suppressible warning.
63 #define ERR_WARN_MASK 0x0000FF00 /* the mask for this feature */
64 #define ERR_WARN_SHR 8 /* how far to shift right */
66 #define WARN(x) ((x) << ERR_WARN_SHR)
68 #define ERR_WARN_MNP WARN(1) /* macro-num-parameters warning */
69 #define ERR_WARN_MSR WARN(2) /* macro self-reference */
70 #define ERR_WARN_OL WARN(3) /* orphan label (no colon, and
71 * alone on line) */
72 #define ERR_WARN_NOV WARN(4) /* numeric overflow */
73 #define ERR_WARN_GNUELF WARN(5) /* using GNU ELF extensions */
74 #define ERR_WARN_FL_OVERFLOW WARN(6) /* FP overflow */
75 #define ERR_WARN_FL_DENORM WARN(7) /* FP denormal */
76 #define ERR_WARN_FL_UNDERFLOW WARN(8) /* FP underflow */
77 #define ERR_WARN_FL_TOOLONG WARN(9) /* FP too many digits */
78 #define ERR_WARN_MAX 9 /* the highest numbered one */
81 * Wrappers around malloc, realloc and free. nasm_malloc will
82 * fatal-error and die rather than return NULL; nasm_realloc will
83 * do likewise, and will also guarantee to work right on being
84 * passed a NULL pointer; nasm_free will do nothing if it is passed
85 * a NULL pointer.
87 void nasm_set_malloc_error(efunc);
88 #ifndef LOGALLOC
89 void *nasm_malloc(size_t);
90 void *nasm_zalloc(size_t);
91 void *nasm_realloc(void *, size_t);
92 void nasm_free(void *);
93 char *nasm_strdup(const char *);
94 char *nasm_strndup(char *, size_t);
95 #else
96 void *nasm_malloc_log(char *, int, size_t);
97 void *nasm_zalloc_log(char *, int, size_t);
98 void *nasm_realloc_log(char *, int, void *, size_t);
99 void nasm_free_log(char *, int, void *);
100 char *nasm_strdup_log(char *, int, const char *);
101 char *nasm_strndup_log(char *, int, char *, size_t);
102 #define nasm_malloc(x) nasm_malloc_log(__FILE__,__LINE__,x)
103 #define nasm_zalloc(x) nasm_zalloc_log(__FILE__,__LINE__,x)
104 #define nasm_realloc(x,y) nasm_realloc_log(__FILE__,__LINE__,x,y)
105 #define nasm_free(x) nasm_free_log(__FILE__,__LINE__,x)
106 #define nasm_strdup(x) nasm_strdup_log(__FILE__,__LINE__,x)
107 #define nasm_strndup(x,y) nasm_strndup_log(__FILE__,__LINE__,x,y)
108 #endif
111 * ANSI doesn't guarantee the presence of `stricmp' or
112 * `strcasecmp'.
114 #if defined(HAVE_STRCASECMP)
115 #define nasm_stricmp strcasecmp
116 #elif defined(HAVE_STRICMP)
117 #define nasm_stricmp stricmp
118 #else
119 int nasm_stricmp(const char *, const char *);
120 #endif
122 #if defined(HAVE_STRNCASECMP)
123 #define nasm_strnicmp strncasecmp
124 #elif defined(HAVE_STRNICMP)
125 #define nasm_strnicmp strnicmp
126 #else
127 int nasm_strnicmp(const char *, const char *, size_t);
128 #endif
130 int nasm_memicmp(const char *, const char *, size_t);
132 #if defined(HAVE_STRSEP)
133 #define nasm_strsep strsep
134 #else
135 char *nasm_strsep(char **stringp, const char *delim);
136 #endif
140 * Convert a string into a number, using NASM number rules. Sets
141 * `*error' to true if an error occurs, and false otherwise.
143 int64_t readnum(char *str, bool *error);
146 * Convert a character constant into a number. Sets
147 * `*warn' to true if an overflow occurs, and false otherwise.
148 * str points to and length covers the middle of the string,
149 * without the quotes.
151 int64_t readstrnum(char *str, int length, bool *warn);
154 * seg_init: Initialise the segment-number allocator.
155 * seg_alloc: allocate a hitherto unused segment number.
157 void seg_init(void);
158 int32_t seg_alloc(void);
161 * many output formats will be able to make use of this: a standard
162 * function to add an extension to the name of the input file
164 #ifdef NASM_NASM_H
165 void standard_extension(char *inname, char *outname, char *extension,
166 efunc error);
167 #endif
170 * Utility macros...
172 * This is a useful #define which I keep meaning to use more often:
173 * the number of elements of a statically defined array.
176 #define elements(x) ( sizeof(x) / sizeof(*(x)) )
179 * tolower table -- avoids a function call on some platforms.
180 * NOTE: unlike the tolower() function in ctype, EOF is *NOT*
181 * a permitted value, for obvious reasons.
183 void tolower_init(void);
184 extern unsigned char nasm_tolower_tab[256];
185 #define nasm_tolower(x) nasm_tolower_tab[(unsigned char)(x)]
188 * some handy macros that will probably be of use in more than one
189 * output format: convert integers into little-endian byte packed
190 * format in memory
193 #if X86_MEMORY
195 #define WRITECHAR(p,v) \
196 do { \
197 *(uint8_t *)(p) = (v); \
198 (p) += 1; \
199 } while (0)
201 #define WRITESHORT(p,v) \
202 do { \
203 *(uint16_t *)(p) = (v); \
204 (p) += 2; \
205 } while (0)
207 #define WRITELONG(p,v) \
208 do { \
209 *(uint32_t *)(p) = (v); \
210 (p) += 4; \
211 } while (0)
213 #define WRITEDLONG(p,v) \
214 do { \
215 *(uint64_t *)(p) = (v); \
216 (p) += 8; \
217 } while (0)
219 #define WRITEADDR(p,v,s) \
220 do { \
221 uint64_t _wa_v = (v); \
222 memcpy((p), &_wa_v, (s)); \
223 (p) += (s); \
224 } while (0)
226 #else /* !X86_MEMORY */
228 #define WRITECHAR(p,v) \
229 do { \
230 uint8_t *_wc_p = (uint8_t *)(p); \
231 uint8_t _wc_v = (v); \
232 _wc_p[0] = _wc_v; \
233 (p) = (void *)(_wc_p + 1); \
234 } while (0)
236 #define WRITESHORT(p,v) \
237 do { \
238 uint8_t *_ws_p = (uint8_t *)(p); \
239 uint16_t _ws_v = (v); \
240 _ws_p[0] = _ws_v; \
241 _ws_p[1] = _ws_v >> 8; \
242 (p) = (void *)(_ws_p + 2); \
243 } while (0)
245 #define WRITELONG(p,v) \
246 do { \
247 uint8_t *_wl_p = (uint8_t *)(p); \
248 uint32_t _wl_v = (v); \
249 _wl_p[0] = _wl_v; \
250 _wl_p[1] = _wl_v >> 8; \
251 _wl_p[2] = _wl_v >> 16; \
252 _wl_p[3] = _wl_v >> 24; \
253 (p) = (void *)(_wl_p + 4); \
254 } while (0)
256 #define WRITEDLONG(p,v) \
257 do { \
258 uint8_t *_wq_p = (uint8_t *)(p); \
259 uint64_t _wq_v = (v); \
260 _wq_p[0] = _wq_v; \
261 _wq_p[1] = _wq_v >> 8; \
262 _wq_p[2] = _wq_v >> 16; \
263 _wq_p[3] = _wq_v >> 24; \
264 _wq_p[4] = _wq_v >> 32; \
265 _wq_p[5] = _wq_v >> 40; \
266 _wq_p[6] = _wq_v >> 48; \
267 _wq_p[7] = _wq_v >> 56; \
268 (p) = (void *)(_wq_p + 8); \
269 } while (0)
271 #define WRITEADDR(p,v,s) \
272 do { \
273 int _wa_s = (s); \
274 uint64_t _wa_v = (v); \
275 while (_wa_s--) { \
276 WRITECHAR(p,_wa_v); \
277 _wa_v >>= 8; \
279 } while(0)
281 #endif
284 * and routines to do the same thing to a file
286 #define fwriteint8_t(d,f) putc(d,f)
287 void fwriteint16_t(uint16_t data, FILE * fp);
288 void fwriteint32_t(uint32_t data, FILE * fp);
289 void fwriteint64_t(uint64_t data, FILE * fp);
290 void fwriteaddr(uint64_t data, int size, FILE * fp);
293 * Binary search routine. Returns index into `array' of an entry
294 * matching `string', or <0 if no match. `array' is taken to
295 * contain `size' elements.
297 * bsi() is case sensitive, bsii() is case insensitive.
299 int bsi(const char *string, const char **array, int size);
300 int bsii(const char *string, const char **array, int size);
302 char *src_set_fname(char *newname);
303 int32_t src_set_linnum(int32_t newline);
304 int32_t src_get_linnum(void);
306 * src_get may be used if you simply want to know the source file and line.
307 * It is also used if you maintain private status about the source location
308 * It return 0 if the information was the same as the last time you
309 * checked, -1 if the name changed and (new-old) if just the line changed.
311 int src_get(int32_t *xline, char **xname);
313 char *nasm_strcat(char *one, char *two);
315 void null_debug_routine(const char *directive, const char *params);
316 extern struct dfmt null_debug_form;
317 extern struct dfmt *null_debug_arr[2];
319 const char *prefix_name(int);
321 #endif