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.
10 #define NASM_NASMLIB_H
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
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
87 void nasm_set_malloc_error(efunc
);
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);
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)
111 * ANSI doesn't guarantee the presence of `stricmp' or
114 #if defined(HAVE_STRCASECMP)
115 #define nasm_stricmp strcasecmp
116 #elif defined(HAVE_STRICMP)
117 #define nasm_stricmp stricmp
119 int nasm_stricmp(const char *, const char *);
122 #if defined(HAVE_STRNCASECMP)
123 #define nasm_strnicmp strncasecmp
124 #elif defined(HAVE_STRNICMP)
125 #define nasm_strnicmp strnicmp
127 int nasm_strnicmp(const char *, const char *, size_t);
130 int nasm_memicmp(const char *, const char *, size_t);
132 #if defined(HAVE_STRSEP)
133 #define nasm_strsep strsep
135 char *nasm_strsep(char **stringp
, const char *delim
);
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.
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
165 void standard_extension(char *inname
, char *outname
, char *extension
,
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
195 #define WRITECHAR(p,v) \
197 *(uint8_t *)(p) = (v); \
201 #define WRITESHORT(p,v) \
203 *(uint16_t *)(p) = (v); \
207 #define WRITELONG(p,v) \
209 *(uint32_t *)(p) = (v); \
213 #define WRITEDLONG(p,v) \
215 *(uint64_t *)(p) = (v); \
219 #define WRITEADDR(p,v,s) \
221 uint64_t _wa_v = (v); \
222 memcpy((p), &_wa_v, (s)); \
226 #else /* !X86_MEMORY */
228 #define WRITECHAR(p,v) \
230 uint8_t *_wc_p = (uint8_t *)(p); \
231 uint8_t _wc_v = (v); \
233 (p) = (void *)(_wc_p + 1); \
236 #define WRITESHORT(p,v) \
238 uint8_t *_ws_p = (uint8_t *)(p); \
239 uint16_t _ws_v = (v); \
241 _ws_p[1] = _ws_v >> 8; \
242 (p) = (void *)(_ws_p + 2); \
245 #define WRITELONG(p,v) \
247 uint8_t *_wl_p = (uint8_t *)(p); \
248 uint32_t _wl_v = (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); \
256 #define WRITEDLONG(p,v) \
258 uint8_t *_wq_p = (uint8_t *)(p); \
259 uint64_t _wq_v = (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); \
271 #define WRITEADDR(p,v,s) \
274 uint64_t _wa_v = (v); \
276 WRITECHAR(p,_wa_v); \
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);