Formatting: kill off "stealth whitespace"
[platform/upstream/nasm.git] / nasmlib.h
1 /* nasmlib.h    header file for nasmlib.c
2  *
3  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4  * Julian Hall. All rights reserved. The software is
5  * redistributable under the licence given in the file "Licence"
6  * distributed in the NASM archive.
7  */
8
9 #ifndef NASM_NASMLIB_H
10 #define NASM_NASMLIB_H
11
12 #include "compiler.h"
13
14 #include <inttypes.h>
15 #include <stdio.h>
16 #include <string.h>
17 #ifdef HAVE_STRINGS_H
18 #include <strings.h>
19 #endif
20
21 /*
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.
27  */
28 /* #define LOGALLOC */
29
30 /*
31  * -------------------------
32  * Error reporting functions
33  * -------------------------
34  */
35
36 /*
37  * An error reporting function should look like this.
38  */
39 typedef void (*efunc) (int severity, const char *fmt, ...);
40
41 /*
42  * These are the error severity codes which get passed as the first
43  * argument to an efunc.
44  */
45
46 #define ERR_DEBUG       0x00000008      /* put out debugging message */
47 #define ERR_WARNING     0x00000000      /* warn only: no further action */
48 #define ERR_NONFATAL    0x00000001      /* terminate assembly after phase */
49 #define ERR_FATAL       0x00000002      /* instantly fatal: exit with error */
50 #define ERR_PANIC       0x00000003      /* internal error: panic instantly
51                                          * and dump core for reference */
52 #define ERR_MASK        0x0000000F      /* mask off the above codes */
53 #define ERR_NOFILE      0x00000010      /* don't give source file name/line */
54 #define ERR_USAGE       0x00000020      /* print a usage message */
55 #define ERR_PASS1       0x00000040      /* only print this error on pass one */
56
57 /*
58  * These codes define specific types of suppressible warning.
59  */
60
61 #define ERR_WARN_MASK   0x0000FF00      /* the mask for this feature */
62 #define ERR_WARN_SHR  8                 /* how far to shift right */
63
64 #define WARN(x) ((x) << ERR_WARN_SHR)
65
66 #define ERR_WARN_MNP            WARN(1) /* macro-num-parameters warning */
67 #define ERR_WARN_MSR            WARN(2) /* macro self-reference */
68 #define ERR_WARN_OL             WARN(3) /* orphan label (no colon, and
69                                          * alone on line) */
70 #define ERR_WARN_NOV            WARN(4) /* numeric overflow */
71 #define ERR_WARN_GNUELF         WARN(5) /* using GNU ELF extensions */
72 #define ERR_WARN_FL_OVERFLOW    WARN(6) /* FP overflow */
73 #define ERR_WARN_FL_DENORM      WARN(7) /* FP denormal */
74 #define ERR_WARN_FL_UNDERFLOW   WARN(8) /* FP underflow */
75 #define ERR_WARN_FL_TOOLONG     WARN(9) /* FP too many digits */
76 #define ERR_WARN_MAX    9               /* the highest numbered one */
77
78 /*
79  * Wrappers around malloc, realloc and free. nasm_malloc will
80  * fatal-error and die rather than return NULL; nasm_realloc will
81  * do likewise, and will also guarantee to work right on being
82  * passed a NULL pointer; nasm_free will do nothing if it is passed
83  * a NULL pointer.
84  */
85 void nasm_set_malloc_error(efunc);
86 #ifndef LOGALLOC
87 void *nasm_malloc(size_t);
88 void *nasm_zalloc(size_t);
89 void *nasm_realloc(void *, size_t);
90 void nasm_free(void *);
91 char *nasm_strdup(const char *);
92 char *nasm_strndup(char *, size_t);
93 #else
94 void *nasm_malloc_log(char *, int, size_t);
95 void *nasm_zalloc_log(char *, int, size_t);
96 void *nasm_realloc_log(char *, int, void *, size_t);
97 void nasm_free_log(char *, int, void *);
98 char *nasm_strdup_log(char *, int, const char *);
99 char *nasm_strndup_log(char *, int, char *, size_t);
100 #define nasm_malloc(x) nasm_malloc_log(__FILE__,__LINE__,x)
101 #define nasm_zalloc(x) nasm_malloc_log(__FILE__,__LINE__,x)
102 #define nasm_realloc(x,y) nasm_realloc_log(__FILE__,__LINE__,x,y)
103 #define nasm_free(x) nasm_free_log(__FILE__,__LINE__,x)
104 #define nasm_strdup(x) nasm_strdup_log(__FILE__,__LINE__,x)
105 #define nasm_strndup(x,y) nasm_strndup_log(__FILE__,__LINE__,x,y)
106 #endif
107
108 /*
109  * ANSI doesn't guarantee the presence of `stricmp' or
110  * `strcasecmp'.
111  */
112 #if defined(HAVE_STRCASECMP)
113 #define nasm_stricmp strcasecmp
114 #elif defined(HAVE_STRICMP)
115 #define nasm_stricmp stricmp
116 #else
117 int nasm_stricmp(const char *, const char *);
118 #endif
119
120 #if defined(HAVE_STRNCASECMP)
121 #define nasm_strnicmp strncasecmp
122 #elif defined(HAVE_STRNICMP)
123 #define nasm_strnicmp strnicmp
124 #else
125 int nasm_strnicmp(const char *, const char *, int);
126 #endif
127
128 #if defined(HAVE_STRSEP)
129 #define nasm_strsep strsep
130 #else
131 char *nasm_strsep(char **stringp, const char *delim);
132 #endif
133
134
135 /*
136  * Convert a string into a number, using NASM number rules. Sets
137  * `*error' to true if an error occurs, and false otherwise.
138  */
139 int64_t readnum(char *str, bool *error);
140
141 /*
142  * Convert a character constant into a number. Sets
143  * `*warn' to true if an overflow occurs, and false otherwise.
144  * str points to and length covers the middle of the string,
145  * without the quotes.
146  */
147 int64_t readstrnum(char *str, int length, bool *warn);
148
149 /*
150  * seg_init: Initialise the segment-number allocator.
151  * seg_alloc: allocate a hitherto unused segment number.
152  */
153 void seg_init(void);
154 int32_t seg_alloc(void);
155
156 /*
157  * many output formats will be able to make use of this: a standard
158  * function to add an extension to the name of the input file
159  */
160 #ifdef NASM_NASM_H
161 void standard_extension(char *inname, char *outname, char *extension,
162                         efunc error);
163 #endif
164
165 /*
166  * some handy macros that will probably be of use in more than one
167  * output format: convert integers into little-endian byte packed
168  * format in memory
169  */
170
171 #define WRITECHAR(p,v) \
172   do { \
173     *(p)++ = (v) & 0xFF; \
174   } while (0)
175
176 #define WRITESHORT(p,v) \
177   do { \
178     WRITECHAR(p,v); \
179     WRITECHAR(p,(v) >> 8); \
180   } while (0)
181
182 #define WRITELONG(p,v) \
183   do { \
184     WRITECHAR(p,v); \
185     WRITECHAR(p,(v) >> 8); \
186     WRITECHAR(p,(v) >> 16); \
187     WRITECHAR(p,(v) >> 24); \
188   } while (0)
189
190 #define WRITEDLONG(p,v) \
191   do { \
192     WRITECHAR(p,v); \
193     WRITECHAR(p,(v) >> 8); \
194     WRITECHAR(p,(v) >> 16); \
195     WRITECHAR(p,(v) >> 24); \
196     WRITECHAR(p,(v) >> 32); \
197     WRITECHAR(p,(v) >> 40); \
198     WRITECHAR(p,(v) >> 48); \
199     WRITECHAR(p,(v) >> 56); \
200   } while (0)
201
202 /*
203  * and routines to do the same thing to a file
204  */
205 void fwriteint16_t(int data, FILE * fp);
206 void fwriteint32_t(int32_t data, FILE * fp);
207 void fwriteint64_t(int64_t data, FILE * fp);
208
209 /*
210  * Routines to manage a dynamic random access array of int32_ts which
211  * may grow in size to be more than the largest single malloc'able
212  * chunk.
213  */
214
215 #define RAA_BLKSIZE     65536   /* this many longs allocated at once */
216 #define RAA_LAYERSIZE   32768   /* this many _pointers_ allocated */
217
218 typedef struct RAA RAA;
219 typedef union RAA_UNION RAA_UNION;
220 typedef struct RAA_LEAF RAA_LEAF;
221 typedef struct RAA_BRANCH RAA_BRANCH;
222
223 struct RAA {
224     /*
225      * Number of layers below this one to get to the real data. 0
226      * means this structure is a leaf, holding RAA_BLKSIZE real
227      * data items; 1 and above mean it's a branch, holding
228      * RAA_LAYERSIZE pointers to the next level branch or leaf
229      * structures.
230      */
231     int layers;
232     /*
233      * Number of real data items spanned by one position in the
234      * `data' array at this level. This number is 1, trivially, for
235      * a leaf (level 0): for a level 1 branch it should be
236      * RAA_BLKSIZE, and for a level 2 branch it's
237      * RAA_LAYERSIZE*RAA_BLKSIZE.
238      */
239     int32_t stepsize;
240     union RAA_UNION {
241         struct RAA_LEAF {
242             int32_t data[RAA_BLKSIZE];
243         } l;
244         struct RAA_BRANCH {
245             struct RAA *data[RAA_LAYERSIZE];
246         } b;
247     } u;
248 };
249
250 struct RAA *raa_init(void);
251 void raa_free(struct RAA *);
252 int32_t raa_read(struct RAA *, int32_t);
253 struct RAA *raa_write(struct RAA *r, int32_t posn, int32_t value);
254
255 /*
256  * Routines to manage a dynamic sequential-access array, under the
257  * same restriction on maximum mallocable block. This array may be
258  * written to in two ways: a contiguous chunk can be reserved of a
259  * given size with a pointer returned OR single-byte data may be
260  * written. The array can also be read back in the same two ways:
261  * as a series of big byte-data blocks or as a list of structures
262  * of a given size.
263  */
264
265 struct SAA {
266     /*
267      * members `end' and `elem_len' are only valid in first link in
268      * list; `rptr' and `rpos' are used for reading
269      */
270     size_t elem_len;            /* Size of each element */
271     size_t blk_len;             /* Size of each allocation block */
272     size_t nblks;               /* Total number of allocated blocks */
273     size_t nblkptrs;            /* Total number of allocation block pointers */
274     size_t length;              /* Total allocated length of the array */
275     size_t datalen;             /* Total data length of the array */
276     char **wblk;                /* Write block pointer */
277     size_t wpos;                /* Write position inside block */
278     size_t wptr;                /* Absolute write position */
279     char **rblk;                /* Read block pointer */
280     size_t rpos;                /* Read position inside block */
281     size_t rptr;                /* Absolute read position */
282     char **blk_ptrs;            /* Pointer to pointer blocks */
283 };
284
285 struct SAA *saa_init(size_t elem_len);    /* 1 == byte */
286 void saa_free(struct SAA *);
287 void *saa_wstruct(struct SAA *);        /* return a structure of elem_len */
288 void saa_wbytes(struct SAA *, const void *, size_t);      /* write arbitrary bytes */
289 void saa_rewind(struct SAA *);  /* for reading from beginning */
290 void *saa_rstruct(struct SAA *);        /* return NULL on EOA */
291 const void *saa_rbytes(struct SAA *, size_t *); /* return 0 on EOA */
292 void saa_rnbytes(struct SAA *, void *, size_t);   /* read a given no. of bytes */
293 /* random access */
294 void saa_fread(struct SAA *, size_t, void *, size_t);
295 void saa_fwrite(struct SAA *, size_t, const void *, size_t);
296
297 /* dump to file */
298 void saa_fpwrite(struct SAA *, FILE *);
299
300 /*
301  * Binary search routine. Returns index into `array' of an entry
302  * matching `string', or <0 if no match. `array' is taken to
303  * contain `size' elements.
304  *
305  * bsi() is case sensitive, bsii() is case insensitive.
306  */
307 int bsi(char *string, const char **array, int size);
308 int bsii(char *string, const char **array, int size);
309
310 char *src_set_fname(char *newname);
311 int32_t src_set_linnum(int32_t newline);
312 int32_t src_get_linnum(void);
313 /*
314  * src_get may be used if you simply want to know the source file and line.
315  * It is also used if you maintain private status about the source location
316  * It return 0 if the information was the same as the last time you
317  * checked, -1 if the name changed and (new-old) if just the line changed.
318  */
319 int src_get(int32_t *xline, char **xname);
320
321 void nasm_quote(char **str);
322 char *nasm_strcat(char *one, char *two);
323
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];
327
328 const char *prefix_name(int);
329
330 #endif