Accept implicit memory size for VMREAD/VMWRITE
[nasm.git] / nasmlib.h
blobe46ca45e0d4479fdbc86fb9401fb075bcd03df0a
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 * tolower table -- avoids a function call on some platforms.
23 * NOTE: unlike the tolower() function in ctype, EOF is *NOT*
24 * a permitted value, for obvious reasons.
26 void tolower_init(void);
27 extern unsigned char nasm_tolower_tab[256];
28 #define nasm_tolower(x) nasm_tolower_tab[(unsigned char)(x)]
30 /* Wrappers around <ctype.h> functions */
31 /* These are only valid for values that cannot include EOF */
32 #define nasm_isspace(x) isspace((unsigned char)(x))
33 #define nasm_isalpha(x) isalpha((unsigned char)(x))
34 #define nasm_isdigit(x) isdigit((unsigned char)(x))
35 #define nasm_isalnum(x) isalnum((unsigned char)(x))
36 #define nasm_isxdigit(x) isxdigit((unsigned char)(x))
39 * If this is defined, the wrappers around malloc et al will
40 * transform into logging variants, which will cause NASM to create
41 * a file called `malloc.log' when run, and spew details of all its
42 * memory management into that. That can then be analysed to detect
43 * memory leaks and potentially other problems too.
45 /* #define LOGALLOC */
48 * -------------------------
49 * Error reporting functions
50 * -------------------------
54 * An error reporting function should look like this.
56 typedef void (*efunc) (int severity, const char *fmt, ...);
57 extern efunc nasm_malloc_error;
60 * These are the error severity codes which get passed as the first
61 * argument to an efunc.
64 #define ERR_DEBUG 0x00000008 /* put out debugging message */
65 #define ERR_WARNING 0x00000000 /* warn only: no further action */
66 #define ERR_NONFATAL 0x00000001 /* terminate assembly after phase */
67 #define ERR_FATAL 0x00000002 /* instantly fatal: exit with error */
68 #define ERR_PANIC 0x00000003 /* internal error: panic instantly
69 * and dump core for reference */
70 #define ERR_MASK 0x0000000F /* mask off the above codes */
71 #define ERR_NOFILE 0x00000010 /* don't give source file name/line */
72 #define ERR_USAGE 0x00000020 /* print a usage message */
73 #define ERR_PASS1 0x00000040 /* only print this error on pass one */
74 #define ERR_NO_SEVERITY 0x00000080 /* suppress printing severity */
77 * These codes define specific types of suppressible warning.
80 #define ERR_WARN_MASK 0x0000FF00 /* the mask for this feature */
81 #define ERR_WARN_SHR 8 /* how far to shift right */
83 #define WARN(x) ((x) << ERR_WARN_SHR)
85 #define ERR_WARN_MNP WARN( 1) /* macro-num-parameters warning */
86 #define ERR_WARN_MSR WARN( 2) /* macro self-reference */
87 #define ERR_WARN_MDP WARN( 3) /* macro default parameters check */
88 #define ERR_WARN_OL WARN( 4) /* orphan label (no colon, and
89 * alone on line) */
90 #define ERR_WARN_NOV WARN( 5) /* numeric overflow */
91 #define ERR_WARN_GNUELF WARN( 6) /* using GNU ELF extensions */
92 #define ERR_WARN_FL_OVERFLOW WARN( 7) /* FP overflow */
93 #define ERR_WARN_FL_DENORM WARN( 8) /* FP denormal */
94 #define ERR_WARN_FL_UNDERFLOW WARN( 9) /* FP underflow */
95 #define ERR_WARN_FL_TOOLONG WARN(10) /* FP too many digits */
96 #define ERR_WARN_MAX 10 /* the highest numbered one */
99 * Wrappers around malloc, realloc and free. nasm_malloc will
100 * fatal-error and die rather than return NULL; nasm_realloc will
101 * do likewise, and will also guarantee to work right on being
102 * passed a NULL pointer; nasm_free will do nothing if it is passed
103 * a NULL pointer.
105 void nasm_set_malloc_error(efunc);
106 #ifndef LOGALLOC
107 void *nasm_malloc(size_t);
108 void *nasm_zalloc(size_t);
109 void *nasm_realloc(void *, size_t);
110 void nasm_free(void *);
111 char *nasm_strdup(const char *);
112 char *nasm_strndup(char *, size_t);
113 #else
114 void *nasm_malloc_log(char *, int, size_t);
115 void *nasm_zalloc_log(char *, int, size_t);
116 void *nasm_realloc_log(char *, int, void *, size_t);
117 void nasm_free_log(char *, int, void *);
118 char *nasm_strdup_log(char *, int, const char *);
119 char *nasm_strndup_log(char *, int, char *, size_t);
120 #define nasm_malloc(x) nasm_malloc_log(__FILE__,__LINE__,x)
121 #define nasm_zalloc(x) nasm_zalloc_log(__FILE__,__LINE__,x)
122 #define nasm_realloc(x,y) nasm_realloc_log(__FILE__,__LINE__,x,y)
123 #define nasm_free(x) nasm_free_log(__FILE__,__LINE__,x)
124 #define nasm_strdup(x) nasm_strdup_log(__FILE__,__LINE__,x)
125 #define nasm_strndup(x,y) nasm_strndup_log(__FILE__,__LINE__,x,y)
126 #endif
129 * ANSI doesn't guarantee the presence of `stricmp' or
130 * `strcasecmp'.
132 #if defined(HAVE_STRCASECMP)
133 #define nasm_stricmp strcasecmp
134 #elif defined(HAVE_STRICMP)
135 #define nasm_stricmp stricmp
136 #else
137 int nasm_stricmp(const char *, const char *);
138 #endif
140 #if defined(HAVE_STRNCASECMP)
141 #define nasm_strnicmp strncasecmp
142 #elif defined(HAVE_STRNICMP)
143 #define nasm_strnicmp strnicmp
144 #else
145 int nasm_strnicmp(const char *, const char *, size_t);
146 #endif
148 int nasm_memicmp(const char *, const char *, size_t);
150 #if defined(HAVE_STRSEP)
151 #define nasm_strsep strsep
152 #else
153 char *nasm_strsep(char **stringp, const char *delim);
154 #endif
158 * Convert a string into a number, using NASM number rules. Sets
159 * `*error' to true if an error occurs, and false otherwise.
161 int64_t readnum(char *str, bool *error);
164 * Convert a character constant into a number. Sets
165 * `*warn' to true if an overflow occurs, and false otherwise.
166 * str points to and length covers the middle of the string,
167 * without the quotes.
169 int64_t readstrnum(char *str, int length, bool *warn);
172 * seg_init: Initialise the segment-number allocator.
173 * seg_alloc: allocate a hitherto unused segment number.
175 void seg_init(void);
176 int32_t seg_alloc(void);
179 * many output formats will be able to make use of this: a standard
180 * function to add an extension to the name of the input file
182 #ifdef NASM_NASM_H
183 void standard_extension(char *inname, char *outname, char *extension,
184 efunc error);
185 #endif
188 * Utility macros...
190 * This is a useful #define which I keep meaning to use more often:
191 * the number of elements of a statically defined array.
194 #define elements(x) ( sizeof(x) / sizeof(*(x)) )
197 * some handy macros that will probably be of use in more than one
198 * output format: convert integers into little-endian byte packed
199 * format in memory
202 #if X86_MEMORY
204 #define WRITECHAR(p,v) \
205 do { \
206 *(uint8_t *)(p) = (v); \
207 (p) += 1; \
208 } while (0)
210 #define WRITESHORT(p,v) \
211 do { \
212 *(uint16_t *)(p) = (v); \
213 (p) += 2; \
214 } while (0)
216 #define WRITELONG(p,v) \
217 do { \
218 *(uint32_t *)(p) = (v); \
219 (p) += 4; \
220 } while (0)
222 #define WRITEDLONG(p,v) \
223 do { \
224 *(uint64_t *)(p) = (v); \
225 (p) += 8; \
226 } while (0)
228 #define WRITEADDR(p,v,s) \
229 do { \
230 uint64_t _wa_v = (v); \
231 memcpy((p), &_wa_v, (s)); \
232 (p) += (s); \
233 } while (0)
235 #else /* !X86_MEMORY */
237 #define WRITECHAR(p,v) \
238 do { \
239 uint8_t *_wc_p = (uint8_t *)(p); \
240 uint8_t _wc_v = (v); \
241 _wc_p[0] = _wc_v; \
242 (p) = (void *)(_wc_p + 1); \
243 } while (0)
245 #define WRITESHORT(p,v) \
246 do { \
247 uint8_t *_ws_p = (uint8_t *)(p); \
248 uint16_t _ws_v = (v); \
249 _ws_p[0] = _ws_v; \
250 _ws_p[1] = _ws_v >> 8; \
251 (p) = (void *)(_ws_p + 2); \
252 } while (0)
254 #define WRITELONG(p,v) \
255 do { \
256 uint8_t *_wl_p = (uint8_t *)(p); \
257 uint32_t _wl_v = (v); \
258 _wl_p[0] = _wl_v; \
259 _wl_p[1] = _wl_v >> 8; \
260 _wl_p[2] = _wl_v >> 16; \
261 _wl_p[3] = _wl_v >> 24; \
262 (p) = (void *)(_wl_p + 4); \
263 } while (0)
265 #define WRITEDLONG(p,v) \
266 do { \
267 uint8_t *_wq_p = (uint8_t *)(p); \
268 uint64_t _wq_v = (v); \
269 _wq_p[0] = _wq_v; \
270 _wq_p[1] = _wq_v >> 8; \
271 _wq_p[2] = _wq_v >> 16; \
272 _wq_p[3] = _wq_v >> 24; \
273 _wq_p[4] = _wq_v >> 32; \
274 _wq_p[5] = _wq_v >> 40; \
275 _wq_p[6] = _wq_v >> 48; \
276 _wq_p[7] = _wq_v >> 56; \
277 (p) = (void *)(_wq_p + 8); \
278 } while (0)
280 #define WRITEADDR(p,v,s) \
281 do { \
282 int _wa_s = (s); \
283 uint64_t _wa_v = (v); \
284 while (_wa_s--) { \
285 WRITECHAR(p,_wa_v); \
286 _wa_v >>= 8; \
288 } while(0)
290 #endif
293 * and routines to do the same thing to a file
295 #define fwriteint8_t(d,f) putc(d,f)
296 void fwriteint16_t(uint16_t data, FILE * fp);
297 void fwriteint32_t(uint32_t data, FILE * fp);
298 void fwriteint64_t(uint64_t data, FILE * fp);
299 void fwriteaddr(uint64_t data, int size, FILE * fp);
302 * Binary search routine. Returns index into `array' of an entry
303 * matching `string', or <0 if no match. `array' is taken to
304 * contain `size' elements.
306 * bsi() is case sensitive, bsii() is case insensitive.
308 int bsi(const char *string, const char **array, int size);
309 int bsii(const char *string, const char **array, int size);
311 char *src_set_fname(char *newname);
312 int32_t src_set_linnum(int32_t newline);
313 int32_t src_get_linnum(void);
315 * src_get may be used if you simply want to know the source file and line.
316 * It is also used if you maintain private status about the source location
317 * It return 0 if the information was the same as the last time you
318 * checked, -1 if the name changed and (new-old) if just the line changed.
320 int src_get(int32_t *xline, char **xname);
322 char *nasm_strcat(char *one, char *two);
324 void null_debug_routine(const char *directive, const char *params);
325 extern struct dfmt null_debug_form;
326 extern struct dfmt *null_debug_arr[2];
328 const char *prefix_name(int);
330 #endif