changes: document bigendian UTF-16/UTF-32 support
[nasm/nasm.git] / preproc.c
blobb21335e91b2657d22e5bc7f817be6de9acd17ea7
1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2011 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * preproc.c macro preprocessor for the Netwide Assembler
38 /* Typical flow of text through preproc
40 * pp_getline gets tokenized lines, either
42 * from a macro expansion
44 * or
45 * {
46 * read_line gets raw text from stdmacpos, or predef, or current input file
47 * tokenize converts to tokens
48 * }
50 * expand_mmac_params is used to expand %1 etc., unless a macro is being
51 * defined or a false conditional is being processed
52 * (%0, %1, %+1, %-1, %%foo
54 * do_directive checks for directives
56 * expand_smacro is used to expand single line macros
58 * expand_mmacro is used to expand multi-line macros
60 * detoken is used to convert the line back to text
63 #include "compiler.h"
65 #include <stdio.h>
66 #include <stdarg.h>
67 #include <stdlib.h>
68 #include <stddef.h>
69 #include <string.h>
70 #include <ctype.h>
71 #include <limits.h>
72 #include <inttypes.h>
74 #include "nasm.h"
75 #include "nasmlib.h"
76 #include "preproc.h"
77 #include "hashtbl.h"
78 #include "quote.h"
79 #include "stdscan.h"
80 #include "eval.h"
81 #include "tokens.h"
82 #include "tables.h"
84 typedef struct SMacro SMacro;
85 typedef struct ExpDef ExpDef;
86 typedef struct ExpInv ExpInv;
87 typedef struct Context Context;
88 typedef struct Token Token;
89 typedef struct Blocks Blocks;
90 typedef struct Line Line;
91 typedef struct Include Include;
92 typedef struct Cond Cond;
93 typedef struct IncPath IncPath;
96 * Note on the storage of both SMacro and MMacros: the hash table
97 * indexes them case-insensitively, and we then have to go through a
98 * linked list of potential case aliases (and, for MMacros, parameter
99 * ranges); this is to preserve the matching semantics of the earlier
100 * code. If the number of case aliases for a specific macro is a
101 * performance issue, you may want to reconsider your coding style.
105 * Store the definition of a single-line macro.
107 struct SMacro {
108 SMacro *next;
109 char *name;
110 Token *expansion;
111 unsigned int nparam;
112 bool casesense;
113 bool in_progress;
117 * The context stack is composed of a linked list of these.
119 struct Context {
120 Context *next;
121 char *name;
122 struct hash_table localmac;
123 uint32_t number;
127 * This is the internal form which we break input lines up into.
128 * Typically stored in linked lists.
130 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
131 * necessarily used as-is, but is intended to denote the number of
132 * the substituted parameter. So in the definition
134 * %define a(x,y) ( (x) & ~(y) )
136 * the token representing `x' will have its type changed to
137 * TOK_SMAC_PARAM, but the one representing `y' will be
138 * TOK_SMAC_PARAM+1.
140 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
141 * which doesn't need quotes around it. Used in the pre-include
142 * mechanism as an alternative to trying to find a sensible type of
143 * quote to use on the filename we were passed.
145 enum pp_token_type {
146 TOK_NONE = 0,
147 TOK_WHITESPACE,
148 TOK_COMMENT,
149 TOK_ID,
150 TOK_PREPROC_ID,
151 TOK_STRING,
152 TOK_NUMBER,
153 TOK_FLOAT,
154 TOK_SMAC_END,
155 TOK_OTHER,
156 TOK_INTERNAL_STRING,
157 TOK_PREPROC_Q,
158 TOK_PREPROC_QQ,
159 TOK_PASTE, /* %+ */
160 TOK_INDIRECT, /* %[...] */
161 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
162 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
165 #define PP_CONCAT_MASK(x) (1 << (x))
167 struct tokseq_match {
168 int mask_head;
169 int mask_tail;
172 struct Token {
173 Token *next;
174 char *text;
175 union {
176 SMacro *mac; /* associated macro for TOK_SMAC_END */
177 size_t len; /* scratch length field */
178 } a; /* Auxiliary data */
179 enum pp_token_type type;
183 * Expansion definitions are stored as a linked list of
184 * these, which is essentially a container to allow several linked
185 * lists of Tokens.
187 * Note that in this module, linked lists are treated as stacks
188 * wherever possible. For this reason, Lines are _pushed_ on to the
189 * `last' field in ExpDef structures, so that the linked list,
190 * if walked, would emit the expansion lines in the proper order.
192 struct Line {
193 Line *next;
194 Token *first;
198 * Expansion Types
200 enum pp_exp_type {
201 EXP_NONE = 0,
202 EXP_PREDEF,
203 EXP_MMACRO,
204 EXP_REP,
205 EXP_IF,
206 EXP_WHILE,
207 EXP_COMMENT,
208 EXP_FINAL,
209 EXP_MAX = INT_MAX /* Keep compiler from reducing the range */
213 * Store the definition of an expansion, in which is any
214 * preprocessor directive that has an ending pair.
216 * This design allows for arbitrary expansion/recursion depth,
217 * upto the DEADMAN_LIMIT.
219 * The `next' field is used for storing ExpDef in hash tables; the
220 * `prev' field is for the global `expansions` linked-list.
222 struct ExpDef {
223 ExpDef *prev; /* previous definition */
224 ExpDef *next; /* next in hash table */
225 enum pp_exp_type type; /* expansion type */
226 char *name; /* definition name */
227 int nparam_min;
228 int nparam_max;
229 bool casesense;
230 bool plus; /* is the last parameter greedy? */
231 bool nolist; /* is this expansion listing-inhibited? */
232 Token *dlist; /* all defaults as one list */
233 Token **defaults; /* parameter default pointers */
234 int ndefs; /* number of default parameters */
236 int prepend; /* label prepend state */
237 Line *label;
238 Line *line;
239 Line *last;
240 int linecount; /* number of lines within expansion */
242 int64_t def_depth; /* current number of definition pairs deep */
243 int64_t cur_depth; /* current number of expansions */
244 int64_t max_depth; /* maximum number of expansions allowed */
246 int state; /* condition state */
247 bool ignoring; /* ignoring definition lines */
251 * Store the invocation of an expansion.
253 * The `prev' field is for the `istk->expansion` linked-list.
255 * When an expansion is being expanded, `params', `iline', `nparam',
256 * `paramlen', `rotate' and `unique' are local to the invocation.
258 struct ExpInv {
259 ExpInv *prev; /* previous invocation */
260 ExpDef *def; /* pointer to expansion definition */
261 char *name; /* invocation name */
262 Line *label; /* pointer to label */
263 char *label_text; /* pointer to label text */
264 Line *current; /* pointer to current line in invocation */
266 Token **params; /* actual parameters */
267 Token *iline; /* invocation line */
268 int *paramlen;
269 unsigned int nparam;
270 unsigned int rotate;
272 uint64_t unique;
273 int lineno; /* current line number in expansion */
274 int linnum; /* line number at invocation */
275 int relno; /* relative line number at invocation */
276 enum pp_exp_type type; /* expansion type */
277 bool emitting;
281 * To handle an arbitrary level of file inclusion, we maintain a
282 * stack (ie linked list) of these things.
284 struct Include {
285 Include *next;
286 FILE *fp;
287 Cond *conds;
288 ExpInv *expansion;
289 char *fname;
290 int lineno;
291 int lineinc;
292 int mmac_depth;
296 * Include search path. This is simply a list of strings which get
297 * prepended, in turn, to the name of an include file, in an
298 * attempt to find the file if it's not in the current directory.
300 struct IncPath {
301 IncPath *next;
302 char *path;
306 * Conditional assembly: we maintain a separate stack of these for
307 * each level of file inclusion. (The only reason we keep the
308 * stacks separate is to ensure that a stray `%endif' in a file
309 * included from within the true branch of a `%if' won't terminate
310 * it and cause confusion: instead, rightly, it'll cause an error.)
312 enum {
314 * These states are for use just after %if or %elif: IF_TRUE
315 * means the condition has evaluated to truth so we are
316 * currently emitting, whereas IF_FALSE means we are not
317 * currently emitting but will start doing so if a %else comes
318 * up. In these states, all directives are admissible: %elif,
319 * %else and %endif. (And of course %if.)
321 COND_IF_TRUE,
322 COND_IF_FALSE,
324 * These states come up after a %else: ELSE_TRUE means we're
325 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
326 * any %elif or %else will cause an error.
328 COND_ELSE_TRUE,
329 COND_ELSE_FALSE,
331 * These states mean that we're not emitting now, and also that
332 * nothing until %endif will be emitted at all. COND_DONE is
333 * used when we've had our moment of emission
334 * and have now started seeing %elifs. COND_NEVER is used when
335 * the condition construct in question is contained within a
336 * non-emitting branch of a larger condition construct,
337 * or if there is an error.
339 COND_DONE,
340 COND_NEVER
344 * These defines are used as the possible return values for do_directive
346 #define NO_DIRECTIVE_FOUND 0
347 #define DIRECTIVE_FOUND 1
350 * This define sets the upper limit for smacro and expansions
352 #define DEADMAN_LIMIT (1 << 20)
354 /* max reps */
355 #define REP_LIMIT ((INT64_C(1) << 62))
358 * Condition codes. Note that we use c_ prefix not C_ because C_ is
359 * used in nasm.h for the "real" condition codes. At _this_ level,
360 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
361 * ones, so we need a different enum...
363 static const char * const conditions[] = {
364 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
365 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
366 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
368 enum pp_conds {
369 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
370 c_NA, c_NAE, c_NB, c_NBE, c_NC, c_NE, c_NG, c_NGE, c_NL, c_NLE, c_NO,
371 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
372 c_none = -1
374 static const enum pp_conds inverse_ccs[] = {
375 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
376 c_A, c_AE, c_B, c_BE, c_C, c_E, c_G, c_GE, c_L, c_LE, c_O, c_P, c_S,
377 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
380 /* For TASM compatibility we need to be able to recognise TASM compatible
381 * conditional compilation directives. Using the NASM pre-processor does
382 * not work, so we look for them specifically from the following list and
383 * then jam in the equivalent NASM directive into the input stream.
386 enum {
387 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
388 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
391 static const char * const tasm_directives[] = {
392 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
393 "ifndef", "include", "local"
396 static int StackSize = 4;
397 static char *StackPointer = "ebp";
398 static int ArgOffset = 8;
399 static int LocalOffset = 0;
401 static Context *cstk;
402 static Include *istk;
403 static IncPath *ipath;
405 static int pass; /* HACK: pass 0 = generate dependencies only */
406 static StrList **dephead, **deptail; /* Dependency list */
408 static uint64_t unique; /* unique identifier numbers */
410 static Line *predef;
411 static bool do_predef;
413 static ListGen *list;
416 * The current set of expansion definitions we have defined.
418 static struct hash_table expdefs;
421 * The current set of single-line macros we have defined.
423 static struct hash_table smacros;
426 * Linked List of all active expansion definitions
428 struct ExpDef *expansions;
431 * The expansion we are currently defining
433 static ExpDef *defining;
435 static uint64_t nested_mac_count;
436 static uint64_t nested_rep_count;
439 * Linked-list of lines to preprocess, prior to cleanup
441 static Line *finals;
442 static bool in_final = false;
445 * The number of macro parameters to allocate space for at a time.
447 #define PARAM_DELTA 16
450 * The standard macro set: defined in macros.c in the array nasm_stdmac.
451 * This gives our position in the macro set, when we're processing it.
453 static macros_t *stdmacpos;
456 * The extra standard macros that come from the object format, if
457 * any.
459 static macros_t *extrastdmac;
460 static bool any_extrastdmac;
463 * Tokens are allocated in blocks to improve speed
465 #define TOKEN_BLOCKSIZE 4096
466 static Token *freeTokens;
467 struct Blocks {
468 Blocks *next;
469 void *chunk;
472 static Blocks blocks;
475 * Forward declarations.
477 static Token *expand_mmac_params(Token * tline);
478 static Token *expand_smacro(Token * tline);
479 static Token *expand_id(Token * tline);
480 static Context *get_ctx(const char *name, const char **namep);
481 static void make_tok_num(Token * tok, int64_t val);
482 static void error(int severity, const char *fmt, ...);
483 static void error_precond(int severity, const char *fmt, ...);
484 static void *new_Block(size_t size);
485 static void delete_Blocks(void);
486 static Token *new_Token(Token * next, enum pp_token_type type,
487 const char *text, int txtlen);
488 static Token *copy_Token(Token * tline);
489 static Token *delete_Token(Token * t);
490 static Line *new_Line(void);
491 static ExpDef *new_ExpDef(int exp_type);
492 static ExpInv *new_ExpInv(int exp_type, ExpDef *ed);
495 * Macros for safe checking of token pointers, avoid *(NULL)
497 #define tok_type_(x,t) ((x) && (x)->type == (t))
498 #define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
499 #define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
500 #define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
503 * A few helpers for single macros
506 /* We might be not smacro parameter at all */
507 static bool is_smacro_param(Token *t)
509 return t->type >= TOK_SMAC_PARAM;
512 /* smacro parameters are counted in a special way */
513 static int smacro_get_param_idx(Token *t)
515 return t->type - TOK_SMAC_PARAM;
518 /* encode smacro parameter index */
519 static int smacro_set_param_idx(Token *t, unsigned int index)
521 return t->type = TOK_SMAC_PARAM + index;
524 #ifdef NASM_TRACE
526 #define stringify(x) #x
528 #define nasm_trace(msg, ...) printf("(%s:%d): " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
529 #define nasm_dump_token(t) nasm_raw_dump_token(t, __FILE__, __LINE__, __func__);
530 #define nasm_dump_stream(t) nasm_raw_dump_stream(t, __FILE__, __LINE__, __func__);
532 /* FIXME: we really need some compound type here instead of inplace code */
533 static const char *nasm_get_tok_type_str(enum pp_token_type type)
535 #define SWITCH_TOK_NAME(type) \
536 case (type): \
537 return stringify(type)
539 switch (type) {
540 SWITCH_TOK_NAME(TOK_NONE);
541 SWITCH_TOK_NAME(TOK_WHITESPACE);
542 SWITCH_TOK_NAME(TOK_COMMENT);
543 SWITCH_TOK_NAME(TOK_ID);
544 SWITCH_TOK_NAME(TOK_PREPROC_ID);
545 SWITCH_TOK_NAME(TOK_STRING);
546 SWITCH_TOK_NAME(TOK_NUMBER);
547 SWITCH_TOK_NAME(TOK_FLOAT);
548 SWITCH_TOK_NAME(TOK_SMAC_END);
549 SWITCH_TOK_NAME(TOK_OTHER);
550 SWITCH_TOK_NAME(TOK_INTERNAL_STRING);
551 SWITCH_TOK_NAME(TOK_PREPROC_Q);
552 SWITCH_TOK_NAME(TOK_PREPROC_QQ);
553 SWITCH_TOK_NAME(TOK_PASTE);
554 SWITCH_TOK_NAME(TOK_INDIRECT);
555 SWITCH_TOK_NAME(TOK_SMAC_PARAM);
556 SWITCH_TOK_NAME(TOK_MAX);
559 return NULL;
562 static void nasm_raw_dump_token(Token *token, const char *file, int line, const char *func)
564 printf("---[%s (%s:%d): %p]---\n", func, file, line, (void *)token);
565 if (token) {
566 Token *t;
567 list_for_each(t, token) {
568 if (t->text)
569 printf("'%s'(%s) ", t->text,
570 nasm_get_tok_type_str(t->type));
572 printf("\n\n");
576 static void nasm_raw_dump_stream(Token *token, const char *file, int line, const char *func)
578 printf("---[%s (%s:%d): %p]---\n", func, file, line, (void *)token);
579 if (token) {
580 Token *t;
581 list_for_each(t, token)
582 printf("%s", t->text ? t->text : " ");
583 printf("\n\n");
587 #else
588 #define nasm_trace(msg, ...)
589 #define nasm_dump_token(t)
590 #define nasm_dump_stream(t)
591 #endif
594 * nasm_unquote with error if the string contains NUL characters.
595 * If the string contains NUL characters, issue an error and return
596 * the C len, i.e. truncate at the NUL.
598 static size_t nasm_unquote_cstr(char *qstr, enum preproc_token directive)
600 size_t len = nasm_unquote(qstr, NULL);
601 size_t clen = strlen(qstr);
603 if (len != clen)
604 error(ERR_NONFATAL, "NUL character in `%s' directive",
605 pp_directives[directive]);
607 return clen;
611 * In-place reverse a list of tokens.
613 static Token *reverse_tokens(Token *t)
615 Token *prev, *next;
617 list_reverse(t, prev, next);
619 return t;
623 * Handle TASM specific directives, which do not contain a % in
624 * front of them. We do it here because I could not find any other
625 * place to do it for the moment, and it is a hack (ideally it would
626 * be nice to be able to use the NASM pre-processor to do it).
628 static char *check_tasm_directive(char *line)
630 int32_t i, j, k, m, len;
631 char *p, *q, *oldline, oldchar;
633 p = nasm_skip_spaces(line);
635 /* Binary search for the directive name */
636 i = -1;
637 j = ARRAY_SIZE(tasm_directives);
638 q = nasm_skip_word(p);
639 len = q - p;
640 if (len) {
641 oldchar = p[len];
642 p[len] = 0;
643 while (j - i > 1) {
644 k = (j + i) / 2;
645 m = nasm_stricmp(p, tasm_directives[k]);
646 if (m == 0) {
647 /* We have found a directive, so jam a % in front of it
648 * so that NASM will then recognise it as one if it's own.
650 p[len] = oldchar;
651 len = strlen(p);
652 oldline = line;
653 line = nasm_malloc(len + 2);
654 line[0] = '%';
655 if (k == TM_IFDIFI) {
657 * NASM does not recognise IFDIFI, so we convert
658 * it to %if 0. This is not used in NASM
659 * compatible code, but does need to parse for the
660 * TASM macro package.
662 strcpy(line + 1, "if 0");
663 } else {
664 memcpy(line + 1, p, len + 1);
666 nasm_free(oldline);
667 return line;
668 } else if (m < 0) {
669 j = k;
670 } else
671 i = k;
673 p[len] = oldchar;
675 return line;
679 * The pre-preprocessing stage... This function translates line
680 * number indications as they emerge from GNU cpp (`# lineno "file"
681 * flags') into NASM preprocessor line number indications (`%line
682 * lineno file').
684 static char *prepreproc(char *line)
686 int lineno, fnlen;
687 char *fname, *oldline;
689 if (line[0] == '#' && line[1] == ' ') {
690 oldline = line;
691 fname = oldline + 2;
692 lineno = atoi(fname);
693 fname += strspn(fname, "0123456789 ");
694 if (*fname == '"')
695 fname++;
696 fnlen = strcspn(fname, "\"");
697 line = nasm_malloc(20 + fnlen);
698 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
699 nasm_free(oldline);
701 if (tasm_compatible_mode)
702 return check_tasm_directive(line);
703 return line;
707 * Free a linked list of tokens.
709 static void free_tlist(Token * list)
711 while (list)
712 list = delete_Token(list);
716 * Free a linked list of lines.
718 static void free_llist(Line * list)
720 Line *l, *tmp;
721 list_for_each_safe(l, tmp, list) {
722 free_tlist(l->first);
723 nasm_free(l);
728 * Free an ExpDef
730 static void free_expdef(ExpDef * ed)
732 nasm_free(ed->name);
733 free_tlist(ed->dlist);
734 nasm_free(ed->defaults);
735 free_llist(ed->line);
736 nasm_free(ed);
740 * Free an ExpInv
742 static void free_expinv(ExpInv * ei)
744 nasm_free(ei->name);
745 nasm_free(ei->label_text);
746 nasm_free(ei);
750 * Free all currently defined macros, and free the hash tables
752 static void free_smacro_table(struct hash_table *smt)
754 SMacro *s, *tmp;
755 const char *key;
756 struct hash_tbl_node *it = NULL;
758 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
759 nasm_free((void *)key);
760 list_for_each_safe(s, tmp, s) {
761 nasm_free(s->name);
762 free_tlist(s->expansion);
763 nasm_free(s);
766 hash_free(smt);
769 static void free_expdef_table(struct hash_table *edt)
771 ExpDef *ed, *tmp;
772 const char *key;
773 struct hash_tbl_node *it = NULL;
775 it = NULL;
776 while ((ed = hash_iterate(edt, &it, &key)) != NULL) {
777 nasm_free((void *)key);
778 list_for_each_safe(ed ,tmp, ed)
779 free_expdef(ed);
781 hash_free(edt);
784 static void free_macros(void)
786 free_smacro_table(&smacros);
787 free_expdef_table(&expdefs);
791 * Initialize the hash tables
793 static void init_macros(void)
795 hash_init(&smacros, HASH_LARGE);
796 hash_init(&expdefs, HASH_LARGE);
800 * Pop the context stack.
802 static void ctx_pop(void)
804 Context *c = cstk;
806 cstk = cstk->next;
807 free_smacro_table(&c->localmac);
808 nasm_free(c->name);
809 nasm_free(c);
813 * Search for a key in the hash index; adding it if necessary
814 * (in which case we initialize the data pointer to NULL.)
816 static void **
817 hash_findi_add(struct hash_table *hash, const char *str)
819 struct hash_insert hi;
820 void **r;
821 char *strx;
823 r = hash_findi(hash, str, &hi);
824 if (r)
825 return r;
827 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
828 return hash_add(&hi, strx, NULL);
832 * Like hash_findi, but returns the data element rather than a pointer
833 * to it. Used only when not adding a new element, hence no third
834 * argument.
836 static void *
837 hash_findix(struct hash_table *hash, const char *str)
839 void **p;
841 p = hash_findi(hash, str, NULL);
842 return p ? *p : NULL;
846 * read line from standard macros set,
847 * if there no more left -- return NULL
849 static char *line_from_stdmac(void)
851 unsigned char c;
852 const unsigned char *p = stdmacpos;
853 char *line, *q;
854 size_t len = 0;
856 if (!stdmacpos)
857 return NULL;
859 while ((c = *p++)) {
860 if (c >= 0x80)
861 len += pp_directives_len[c - 0x80] + 1;
862 else
863 len++;
866 line = nasm_malloc(len + 1);
867 q = line;
868 while ((c = *stdmacpos++)) {
869 if (c >= 0x80) {
870 memcpy(q, pp_directives[c - 0x80], pp_directives_len[c - 0x80]);
871 q += pp_directives_len[c - 0x80];
872 *q++ = ' ';
873 } else {
874 *q++ = c;
877 stdmacpos = p;
878 *q = '\0';
880 if (!*stdmacpos) {
881 /* This was the last of the standard macro chain... */
882 stdmacpos = NULL;
883 if (any_extrastdmac) {
884 stdmacpos = extrastdmac;
885 any_extrastdmac = false;
886 } else if (do_predef) {
887 ExpInv *ei;
888 Line *pd, *l;
889 Token *head, **tail, *t;
892 * Nasty hack: here we push the contents of
893 * `predef' on to the top-level expansion stack,
894 * since this is the most convenient way to
895 * implement the pre-include and pre-define
896 * features.
898 list_for_each(pd, predef) {
899 head = NULL;
900 tail = &head;
901 list_for_each(t, pd->first) {
902 *tail = new_Token(NULL, t->type, t->text, 0);
903 tail = &(*tail)->next;
906 l = new_Line();
907 l->first = head;
908 ei = new_ExpInv(EXP_PREDEF, NULL);
909 ei->current = l;
910 ei->emitting = true;
911 ei->prev = istk->expansion;
912 istk->expansion = ei;
914 do_predef = false;
918 return line;
921 #define BUF_DELTA 512
923 * Read a line from the top file in istk, handling multiple CR/LFs
924 * at the end of the line read, and handling spurious ^Zs. Will
925 * return lines from the standard macro set if this has not already
926 * been done.
928 static char *read_line(void)
930 char *buffer, *p, *q;
931 int bufsize, continued_count;
934 * standart macros set (predefined) goes first
936 p = line_from_stdmac();
937 if (p)
938 return p;
941 * regular read from a file
943 bufsize = BUF_DELTA;
944 buffer = nasm_malloc(BUF_DELTA);
945 p = buffer;
946 continued_count = 0;
947 while (1) {
948 q = fgets(p, bufsize - (p - buffer), istk->fp);
949 if (!q)
950 break;
951 p += strlen(p);
952 if (p > buffer && p[-1] == '\n') {
954 * Convert backslash-CRLF line continuation sequences into
955 * nothing at all (for DOS and Windows)
957 if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) {
958 p -= 3;
959 *p = 0;
960 continued_count++;
963 * Also convert backslash-LF line continuation sequences into
964 * nothing at all (for Unix)
966 else if (((p - 1) > buffer) && (p[-2] == '\\')) {
967 p -= 2;
968 *p = 0;
969 continued_count++;
970 } else {
971 break;
974 if (p - buffer > bufsize - 10) {
975 int32_t offset = p - buffer;
976 bufsize += BUF_DELTA;
977 buffer = nasm_realloc(buffer, bufsize);
978 p = buffer + offset; /* prevent stale-pointer problems */
982 if (!q && p == buffer) {
983 nasm_free(buffer);
984 return NULL;
987 src_set_linnum(src_get_linnum() + istk->lineinc +
988 (continued_count * istk->lineinc));
991 * Play safe: remove CRs as well as LFs, if any of either are
992 * present at the end of the line.
994 while (--p >= buffer && (*p == '\n' || *p == '\r'))
995 *p = '\0';
998 * Handle spurious ^Z, which may be inserted into source files
999 * by some file transfer utilities.
1001 buffer[strcspn(buffer, "\032")] = '\0';
1003 list->line(LIST_READ, buffer);
1005 return buffer;
1009 * Tokenize a line of text. This is a very simple process since we
1010 * don't need to parse the value out of e.g. numeric tokens: we
1011 * simply split one string into many.
1013 static Token *tokenize(char *line)
1015 char c, *p = line;
1016 enum pp_token_type type;
1017 Token *list = NULL;
1018 Token *t, **tail = &list;
1019 bool verbose = true;
1021 nasm_trace("Tokenize for '%s'", line);
1023 if ((defining != NULL) && (defining->ignoring == true)) {
1024 verbose = false;
1027 while (*line) {
1028 p = line;
1029 if (*p == '%') {
1030 p++;
1031 if (*p == '+' && !nasm_isdigit(p[1])) {
1032 p++;
1033 type = TOK_PASTE;
1034 } else if (nasm_isdigit(*p) ||
1035 ((*p == '-' || *p == '+') && nasm_isdigit(p[1]))) {
1036 do {
1037 p++;
1039 while (nasm_isdigit(*p));
1040 type = TOK_PREPROC_ID;
1041 } else if (*p == '{') {
1042 p++;
1043 while (*p && *p != '}') {
1044 p[-1] = *p;
1045 p++;
1047 p[-1] = '\0';
1048 if (*p)
1049 p++;
1050 type = TOK_PREPROC_ID;
1051 } else if (*p == '[') {
1052 int lvl = 1;
1053 line += 2; /* Skip the leading %[ */
1054 p++;
1055 while (lvl && (c = *p++)) {
1056 switch (c) {
1057 case ']':
1058 lvl--;
1059 break;
1060 case '%':
1061 if (*p == '[')
1062 lvl++;
1063 break;
1064 case '\'':
1065 case '\"':
1066 case '`':
1067 p = nasm_skip_string(p - 1) + 1;
1068 break;
1069 default:
1070 break;
1073 p--;
1074 if (*p)
1075 *p++ = '\0';
1076 if (lvl && verbose)
1077 error(ERR_NONFATAL, "unterminated %[ construct");
1078 type = TOK_INDIRECT;
1079 } else if (*p == '?') {
1080 type = TOK_PREPROC_Q; /* %? */
1081 p++;
1082 if (*p == '?') {
1083 type = TOK_PREPROC_QQ; /* %?? */
1084 p++;
1086 } else if (*p == '!') {
1087 type = TOK_PREPROC_ID;
1088 p++;
1089 if (isidchar(*p)) {
1090 do {
1091 p++;
1092 } while (isidchar(*p));
1093 } else if (*p == '\'' || *p == '\"' || *p == '`') {
1094 p = nasm_skip_string(p);
1095 if (*p)
1096 p++;
1097 else if(verbose)
1098 error(ERR_NONFATAL|ERR_PASS1, "unterminated %! string");
1099 } else {
1100 /* %! without string or identifier */
1101 type = TOK_OTHER; /* Legacy behavior... */
1103 } else if (isidchar(*p) ||
1104 ((*p == '!' || *p == '%' || *p == '$') &&
1105 isidchar(p[1]))) {
1106 do {
1107 p++;
1109 while (isidchar(*p));
1110 type = TOK_PREPROC_ID;
1111 } else {
1112 type = TOK_OTHER;
1113 if (*p == '%')
1114 p++;
1116 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
1117 type = TOK_ID;
1118 p++;
1119 while (*p && isidchar(*p))
1120 p++;
1121 } else if (*p == '\'' || *p == '"' || *p == '`') {
1123 * A string token.
1125 type = TOK_STRING;
1126 p = nasm_skip_string(p);
1128 if (*p) {
1129 p++;
1130 } else if(verbose) {
1131 error(ERR_WARNING|ERR_PASS1, "unterminated string");
1132 /* Handling unterminated strings by UNV */
1133 /* type = -1; */
1135 } else if (p[0] == '$' && p[1] == '$') {
1136 type = TOK_OTHER; /* TOKEN_BASE */
1137 p += 2;
1138 } else if (isnumstart(*p)) {
1139 bool is_hex = false;
1140 bool is_float = false;
1141 bool has_e = false;
1142 char c, *r;
1145 * A numeric token.
1148 if (*p == '$') {
1149 p++;
1150 is_hex = true;
1153 for (;;) {
1154 c = *p++;
1156 if (!is_hex && (c == 'e' || c == 'E')) {
1157 has_e = true;
1158 if (*p == '+' || *p == '-') {
1160 * e can only be followed by +/- if it is either a
1161 * prefixed hex number or a floating-point number
1163 p++;
1164 is_float = true;
1166 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
1167 is_hex = true;
1168 } else if (c == 'P' || c == 'p') {
1169 is_float = true;
1170 if (*p == '+' || *p == '-')
1171 p++;
1172 } else if (isnumchar(c) || c == '_')
1173 ; /* just advance */
1174 else if (c == '.') {
1176 * we need to deal with consequences of the legacy
1177 * parser, like "1.nolist" being two tokens
1178 * (TOK_NUMBER, TOK_ID) here; at least give it
1179 * a shot for now. In the future, we probably need
1180 * a flex-based scanner with proper pattern matching
1181 * to do it as well as it can be done. Nothing in
1182 * the world is going to help the person who wants
1183 * 0x123.p16 interpreted as two tokens, though.
1185 r = p;
1186 while (*r == '_')
1187 r++;
1189 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
1190 (!is_hex && (*r == 'e' || *r == 'E')) ||
1191 (*r == 'p' || *r == 'P')) {
1192 p = r;
1193 is_float = true;
1194 } else
1195 break; /* Terminate the token */
1196 } else
1197 break;
1199 p--; /* Point to first character beyond number */
1201 if (p == line+1 && *line == '$') {
1202 type = TOK_OTHER; /* TOKEN_HERE */
1203 } else {
1204 if (has_e && !is_hex) {
1205 /* 1e13 is floating-point, but 1e13h is not */
1206 is_float = true;
1209 type = is_float ? TOK_FLOAT : TOK_NUMBER;
1211 } else if (nasm_isspace(*p)) {
1212 type = TOK_WHITESPACE;
1213 p = nasm_skip_spaces(p);
1215 * Whitespace just before end-of-line is discarded by
1216 * pretending it's a comment; whitespace just before a
1217 * comment gets lumped into the comment.
1219 if (!*p || *p == ';') {
1220 type = TOK_COMMENT;
1221 while (*p)
1222 p++;
1224 } else if (*p == ';') {
1225 type = TOK_COMMENT;
1226 while (*p)
1227 p++;
1228 } else {
1230 * Anything else is an operator of some kind. We check
1231 * for all the double-character operators (>>, <<, //,
1232 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
1233 * else is a single-character operator.
1235 type = TOK_OTHER;
1236 if ((p[0] == '>' && p[1] == '>') ||
1237 (p[0] == '<' && p[1] == '<') ||
1238 (p[0] == '/' && p[1] == '/') ||
1239 (p[0] == '<' && p[1] == '=') ||
1240 (p[0] == '>' && p[1] == '=') ||
1241 (p[0] == '=' && p[1] == '=') ||
1242 (p[0] == '!' && p[1] == '=') ||
1243 (p[0] == '<' && p[1] == '>') ||
1244 (p[0] == '&' && p[1] == '&') ||
1245 (p[0] == '|' && p[1] == '|') ||
1246 (p[0] == '^' && p[1] == '^')) {
1247 p++;
1249 p++;
1252 /* Handling unterminated string by UNV */
1253 /*if (type == -1)
1255 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1256 t->text[p-line] = *line;
1257 tail = &t->next;
1259 else */
1260 if (type != TOK_COMMENT) {
1261 *tail = t = new_Token(NULL, type, line, p - line);
1262 tail = &t->next;
1264 line = p;
1267 nasm_dump_token(list);
1269 return list;
1273 * this function allocates a new managed block of memory and
1274 * returns a pointer to the block. The managed blocks are
1275 * deleted only all at once by the delete_Blocks function.
1277 static void *new_Block(size_t size)
1279 Blocks *b = &blocks;
1281 /* first, get to the end of the linked list */
1282 while (b->next)
1283 b = b->next;
1285 /* now allocate the requested chunk */
1286 b->chunk = nasm_malloc(size);
1288 /* now allocate a new block for the next request */
1289 b->next = nasm_zalloc(sizeof(Blocks));
1291 return b->chunk;
1295 * this function deletes all managed blocks of memory
1297 static void delete_Blocks(void)
1299 Blocks *a, *b = &blocks;
1302 * keep in mind that the first block, pointed to by blocks
1303 * is a static and not dynamically allocated, so we don't
1304 * free it.
1306 while (b) {
1307 nasm_free(b->chunk);
1308 a = b;
1309 b = b->next;
1310 if (a != &blocks)
1311 nasm_free(a);
1316 * this function creates a new Token and passes a pointer to it
1317 * back to the caller. It sets the type and text elements, and
1318 * also the a.mac and next elements to NULL.
1320 static Token *new_Token(Token * next, enum pp_token_type type,
1321 const char *text, int txtlen)
1323 Token *t;
1324 int i;
1326 if (!freeTokens) {
1327 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1328 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1329 freeTokens[i].next = &freeTokens[i + 1];
1330 freeTokens[i].next = NULL;
1332 t = freeTokens;
1333 freeTokens = t->next;
1334 t->next = next;
1335 t->a.mac = NULL;
1336 t->type = type;
1337 if (type == TOK_WHITESPACE || !text) {
1338 t->text = NULL;
1339 } else {
1340 if (txtlen == 0)
1341 txtlen = strlen(text);
1342 t->text = nasm_malloc(txtlen+1);
1343 memcpy(t->text, text, txtlen);
1344 t->text[txtlen] = '\0';
1346 return t;
1349 static Token *copy_Token(Token * tline)
1351 Token *t, *tt, *first = NULL, *prev = NULL;
1352 int i;
1353 for (tt = tline; tt != NULL; tt = tt->next) {
1354 if (!freeTokens) {
1355 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1356 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1357 freeTokens[i].next = &freeTokens[i + 1];
1358 freeTokens[i].next = NULL;
1360 t = freeTokens;
1361 freeTokens = t->next;
1362 t->next = NULL;
1363 t->text = tt->text ? nasm_strdup(tt->text) : NULL;
1364 t->a.mac = tt->a.mac;
1365 t->a.len = tt->a.len;
1366 t->type = tt->type;
1367 if (prev != NULL) {
1368 prev->next = t;
1369 } else {
1370 first = t;
1372 prev = t;
1374 return first;
1377 static Token *delete_Token(Token * t)
1379 Token *next = t->next;
1380 nasm_free(t->text);
1381 t->next = freeTokens;
1382 freeTokens = t;
1383 return next;
1387 * Convert a line of tokens back into text.
1388 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1389 * will be transformed into ..@ctxnum.xxx
1391 static char *detoken(Token * tlist, bool expand_locals)
1393 Token *t;
1394 char *line, *p;
1395 const char *q;
1396 int len = 0;
1398 list_for_each(t, tlist) {
1399 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
1400 char *v;
1401 char *q = t->text;
1403 v = t->text + 2;
1404 if (*v == '\'' || *v == '\"' || *v == '`') {
1405 size_t len = nasm_unquote(v, NULL);
1406 size_t clen = strlen(v);
1408 if (len != clen) {
1409 error(ERR_NONFATAL | ERR_PASS1,
1410 "NUL character in %! string");
1411 v = NULL;
1415 if (v) {
1416 char *p = getenv(v);
1417 if (!p) {
1418 error(ERR_NONFATAL | ERR_PASS1,
1419 "nonexistent environment variable `%s'", v);
1420 p = "";
1422 t->text = nasm_strdup(p);
1424 nasm_free(q);
1427 /* Expand local macros here and not during preprocessing */
1428 if (expand_locals &&
1429 t->type == TOK_PREPROC_ID && t->text &&
1430 t->text[0] == '%' && t->text[1] == '$') {
1431 const char *q;
1432 char *p;
1433 Context *ctx = get_ctx(t->text, &q);
1434 if (ctx) {
1435 char buffer[40];
1436 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
1437 p = nasm_strcat(buffer, q);
1438 nasm_free(t->text);
1439 t->text = p;
1443 /* Expand %? and %?? directives */
1444 if ((istk->expansion != NULL) &&
1445 ((t->type == TOK_PREPROC_Q) ||
1446 (t->type == TOK_PREPROC_QQ))) {
1447 ExpInv *ei;
1448 for (ei = istk->expansion; ei != NULL; ei = ei->prev){
1449 if (ei->type == EXP_MMACRO) {
1450 nasm_free(t->text);
1451 if (t->type == TOK_PREPROC_Q) {
1452 t->text = nasm_strdup(ei->name);
1453 } else {
1454 t->text = nasm_strdup(ei->def->name);
1456 break;
1461 if (t->type == TOK_WHITESPACE)
1462 len++;
1463 else if (t->text)
1464 len += strlen(t->text);
1467 p = line = nasm_malloc(len + 1);
1469 list_for_each(t, tlist) {
1470 if (t->type == TOK_WHITESPACE) {
1471 *p++ = ' ';
1472 } else if (t->text) {
1473 q = t->text;
1474 while (*q)
1475 *p++ = *q++;
1478 *p = '\0';
1480 return line;
1484 * Initialize a new Line
1486 static inline Line *new_Line(void)
1488 return (Line *)nasm_zalloc(sizeof(Line));
1493 * Initialize a new Expansion Definition
1495 static ExpDef *new_ExpDef(int exp_type)
1497 ExpDef *ed = (ExpDef*)nasm_zalloc(sizeof(ExpDef));
1498 ed->type = exp_type;
1499 ed->casesense = true;
1500 ed->state = COND_NEVER;
1502 return ed;
1507 * Initialize a new Expansion Instance
1509 static ExpInv *new_ExpInv(int exp_type, ExpDef *ed)
1511 ExpInv *ei = (ExpInv*)nasm_zalloc(sizeof(ExpInv));
1512 ei->type = exp_type;
1513 ei->def = ed;
1514 ei->unique = ++unique;
1516 if ((istk->mmac_depth < 1) &&
1517 (istk->expansion == NULL) &&
1518 (ed != NULL) &&
1519 (ed->type != EXP_MMACRO) &&
1520 (ed->type != EXP_REP) &&
1521 (ed->type != EXP_WHILE)) {
1522 ei->linnum = src_get_linnum();
1523 src_set_linnum(ei->linnum - ed->linecount - 1);
1524 } else {
1525 ei->linnum = -1;
1527 if ((istk->expansion == NULL) ||
1528 (ei->type == EXP_MMACRO)) {
1529 ei->relno = 0;
1530 } else {
1531 ei->relno = istk->expansion->lineno;
1532 if (ed != NULL) {
1533 ei->relno -= (ed->linecount + 1);
1536 return ei;
1540 * A scanner, suitable for use by the expression evaluator, which
1541 * operates on a line of Tokens. Expects a pointer to a pointer to
1542 * the first token in the line to be passed in as its private_data
1543 * field.
1545 * FIX: This really needs to be unified with stdscan.
1547 static int ppscan(void *private_data, struct tokenval *tokval)
1549 Token **tlineptr = private_data;
1550 Token *tline;
1551 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
1553 do {
1554 tline = *tlineptr;
1555 *tlineptr = tline ? tline->next : NULL;
1556 } while (tline && (tline->type == TOK_WHITESPACE ||
1557 tline->type == TOK_COMMENT));
1559 if (!tline)
1560 return tokval->t_type = TOKEN_EOS;
1562 tokval->t_charptr = tline->text;
1564 if (tline->text[0] == '$' && !tline->text[1])
1565 return tokval->t_type = TOKEN_HERE;
1566 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
1567 return tokval->t_type = TOKEN_BASE;
1569 if (tline->type == TOK_ID) {
1570 p = tokval->t_charptr = tline->text;
1571 if (p[0] == '$') {
1572 tokval->t_charptr++;
1573 return tokval->t_type = TOKEN_ID;
1576 for (r = p, s = ourcopy; *r; r++) {
1577 if (r >= p+MAX_KEYWORD)
1578 return tokval->t_type = TOKEN_ID; /* Not a keyword */
1579 *s++ = nasm_tolower(*r);
1581 *s = '\0';
1582 /* right, so we have an identifier sitting in temp storage. now,
1583 * is it actually a register or instruction name, or what? */
1584 return nasm_token_hash(ourcopy, tokval);
1587 if (tline->type == TOK_NUMBER) {
1588 bool rn_error;
1589 tokval->t_integer = readnum(tline->text, &rn_error);
1590 tokval->t_charptr = tline->text;
1591 if (rn_error)
1592 return tokval->t_type = TOKEN_ERRNUM;
1593 else
1594 return tokval->t_type = TOKEN_NUM;
1597 if (tline->type == TOK_FLOAT) {
1598 return tokval->t_type = TOKEN_FLOAT;
1601 if (tline->type == TOK_STRING) {
1602 char bq, *ep;
1604 bq = tline->text[0];
1605 tokval->t_charptr = tline->text;
1606 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
1608 if (ep[0] != bq || ep[1] != '\0')
1609 return tokval->t_type = TOKEN_ERRSTR;
1610 else
1611 return tokval->t_type = TOKEN_STR;
1614 if (tline->type == TOK_OTHER) {
1615 if (!strcmp(tline->text, "<<"))
1616 return tokval->t_type = TOKEN_SHL;
1617 if (!strcmp(tline->text, ">>"))
1618 return tokval->t_type = TOKEN_SHR;
1619 if (!strcmp(tline->text, "//"))
1620 return tokval->t_type = TOKEN_SDIV;
1621 if (!strcmp(tline->text, "%%"))
1622 return tokval->t_type = TOKEN_SMOD;
1623 if (!strcmp(tline->text, "=="))
1624 return tokval->t_type = TOKEN_EQ;
1625 if (!strcmp(tline->text, "<>"))
1626 return tokval->t_type = TOKEN_NE;
1627 if (!strcmp(tline->text, "!="))
1628 return tokval->t_type = TOKEN_NE;
1629 if (!strcmp(tline->text, "<="))
1630 return tokval->t_type = TOKEN_LE;
1631 if (!strcmp(tline->text, ">="))
1632 return tokval->t_type = TOKEN_GE;
1633 if (!strcmp(tline->text, "&&"))
1634 return tokval->t_type = TOKEN_DBL_AND;
1635 if (!strcmp(tline->text, "^^"))
1636 return tokval->t_type = TOKEN_DBL_XOR;
1637 if (!strcmp(tline->text, "||"))
1638 return tokval->t_type = TOKEN_DBL_OR;
1642 * We have no other options: just return the first character of
1643 * the token text.
1645 return tokval->t_type = tline->text[0];
1649 * Compare a string to the name of an existing macro; this is a
1650 * simple wrapper which calls either strcmp or nasm_stricmp
1651 * depending on the value of the `casesense' parameter.
1653 static int mstrcmp(const char *p, const char *q, bool casesense)
1655 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
1659 * Compare a string to the name of an existing macro; this is a
1660 * simple wrapper which calls either strcmp or nasm_stricmp
1661 * depending on the value of the `casesense' parameter.
1663 static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1665 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1669 * Return the Context structure associated with a %$ token. Return
1670 * NULL, having _already_ reported an error condition, if the
1671 * context stack isn't deep enough for the supplied number of $
1672 * signs.
1674 * If "namep" is non-NULL, set it to the pointer to the macro name
1675 * tail, i.e. the part beyond %$...
1677 static Context *get_ctx(const char *name, const char **namep)
1679 Context *ctx;
1680 int i;
1682 if (namep)
1683 *namep = name;
1685 if (!name || name[0] != '%' || name[1] != '$')
1686 return NULL;
1688 if (!cstk) {
1689 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1690 return NULL;
1693 name += 2;
1694 ctx = cstk;
1695 i = 0;
1696 while (ctx && *name == '$') {
1697 name++;
1698 i++;
1699 ctx = ctx->next;
1702 if (!ctx) {
1703 error(ERR_NONFATAL, "`%s': context stack is only"
1704 " %d level%s deep", name, i, (i == 1 ? "" : "s"));
1705 return NULL;
1708 if (namep)
1709 *namep = name;
1711 return ctx;
1715 * Check to see if a file is already in a string list
1717 static bool in_list(const StrList *list, const char *str)
1719 while (list) {
1720 if (!strcmp(list->str, str))
1721 return true;
1722 list = list->next;
1724 return false;
1728 * Open an include file. This routine must always return a valid
1729 * file pointer if it returns - it's responsible for throwing an
1730 * ERR_FATAL and bombing out completely if not. It should also try
1731 * the include path one by one until it finds the file or reaches
1732 * the end of the path.
1734 static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
1735 bool missing_ok)
1737 FILE *fp;
1738 char *prefix = "";
1739 IncPath *ip = ipath;
1740 int len = strlen(file);
1741 size_t prefix_len = 0;
1742 StrList *sl;
1744 while (1) {
1745 sl = nasm_malloc(prefix_len+len+1+sizeof sl->next);
1746 sl->next = NULL;
1747 memcpy(sl->str, prefix, prefix_len);
1748 memcpy(sl->str+prefix_len, file, len+1);
1749 fp = fopen(sl->str, "r");
1750 if (fp && dhead && !in_list(*dhead, sl->str)) {
1751 **dtail = sl;
1752 *dtail = &sl->next;
1753 } else {
1754 nasm_free(sl);
1756 if (fp)
1757 return fp;
1758 if (!ip) {
1759 if (!missing_ok)
1760 break;
1761 prefix = NULL;
1762 } else {
1763 prefix = ip->path;
1764 ip = ip->next;
1766 if (prefix) {
1767 prefix_len = strlen(prefix);
1768 } else {
1769 /* -MG given and file not found */
1770 if (dhead && !in_list(*dhead, file)) {
1771 sl = nasm_malloc(len+1+sizeof sl->next);
1772 sl->next = NULL;
1773 strcpy(sl->str, file);
1774 **dtail = sl;
1775 *dtail = &sl->next;
1777 return NULL;
1781 error(ERR_FATAL, "unable to open include file `%s'", file);
1782 return NULL;
1786 * Determine if we should warn on defining a single-line macro of
1787 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
1788 * return true if _any_ single-line macro of that name is defined.
1789 * Otherwise, will return true if a single-line macro with either
1790 * `nparam' or no parameters is defined.
1792 * If a macro with precisely the right number of parameters is
1793 * defined, or nparam is -1, the address of the definition structure
1794 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
1795 * is NULL, no action will be taken regarding its contents, and no
1796 * error will occur.
1798 * Note that this is also called with nparam zero to resolve
1799 * `ifdef'.
1801 * If you already know which context macro belongs to, you can pass
1802 * the context pointer as first parameter; if you won't but name begins
1803 * with %$ the context will be automatically computed. If all_contexts
1804 * is true, macro will be searched in outer contexts as well.
1806 static bool
1807 smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
1808 bool nocase)
1810 struct hash_table *smtbl;
1811 SMacro *m;
1813 if (ctx) {
1814 smtbl = &ctx->localmac;
1815 } else if (name[0] == '%' && name[1] == '$') {
1816 if (cstk)
1817 ctx = get_ctx(name, &name);
1818 if (!ctx)
1819 return false; /* got to return _something_ */
1820 smtbl = &ctx->localmac;
1821 } else {
1822 smtbl = &smacros;
1824 m = (SMacro *) hash_findix(smtbl, name);
1826 while (m) {
1827 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
1828 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
1829 if (defn) {
1830 if (nparam == (int) m->nparam || nparam == -1)
1831 *defn = m;
1832 else
1833 *defn = NULL;
1835 return true;
1837 m = m->next;
1840 return false;
1844 * Count and mark off the parameters in a multi-line macro call.
1845 * This is called both from within the multi-line macro expansion
1846 * code, and also to mark off the default parameters when provided
1847 * in a %macro definition line.
1849 static void count_mmac_params(Token * t, int *nparam, Token *** params)
1851 int paramsize, brace;
1853 *nparam = paramsize = 0;
1854 *params = NULL;
1855 while (t) {
1856 /* +1: we need space for the final NULL */
1857 if (*nparam+1 >= paramsize) {
1858 paramsize += PARAM_DELTA;
1859 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1861 skip_white_(t);
1862 brace = false;
1863 if (tok_is_(t, "{"))
1864 brace = true;
1865 (*params)[(*nparam)++] = t;
1866 while (tok_isnt_(t, brace ? "}" : ","))
1867 t = t->next;
1868 if (t) { /* got a comma/brace */
1869 t = t->next;
1870 if (brace) {
1872 * Now we've found the closing brace, look further
1873 * for the comma.
1875 skip_white_(t);
1876 if (tok_isnt_(t, ",")) {
1877 error(ERR_NONFATAL,
1878 "braces do not enclose all of macro parameter");
1879 while (tok_isnt_(t, ","))
1880 t = t->next;
1882 if (t)
1883 t = t->next; /* eat the comma */
1890 * Determine whether one of the various `if' conditions is true or
1891 * not.
1893 * We must free the tline we get passed.
1895 static bool if_condition(Token * tline, enum preproc_token ct)
1897 enum pp_conditional i = PP_COND(ct);
1898 bool j;
1899 Token *t, *tt, **tptr, *origline;
1900 struct tokenval tokval;
1901 expr *evalresult;
1902 enum pp_token_type needtype;
1903 char *p;
1905 origline = tline;
1907 switch (i) {
1908 case PPC_IFCTX:
1909 j = false; /* have we matched yet? */
1910 while (true) {
1911 skip_white_(tline);
1912 if (!tline)
1913 break;
1914 if (tline->type != TOK_ID) {
1915 error(ERR_NONFATAL,
1916 "`%s' expects context identifiers", pp_directives[ct]);
1917 free_tlist(origline);
1918 return -1;
1920 if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name))
1921 j = true;
1922 tline = tline->next;
1924 break;
1926 case PPC_IFDEF:
1927 j = false; /* have we matched yet? */
1928 skip_white_(tline);
1929 do {
1930 if (!tline || (tline->type != TOK_ID &&
1931 (tline->type != TOK_PREPROC_ID ||
1932 tline->text[1] != '$'))) {
1933 error(ERR_NONFATAL,
1934 "`%s' expects macro identifiers", pp_directives[ct]);
1935 goto fail;
1937 if (smacro_defined(NULL, tline->text, 0, NULL, true))
1938 j = true;
1939 tline = tline->next;
1940 skip_white_(tline);
1941 } while (tline);
1942 break;
1944 case PPC_IFENV:
1945 tline = expand_smacro(tline);
1946 j = false; /* have we matched yet? */
1947 skip_white_(tline);
1948 do {
1949 if (!tline || (tline->type != TOK_ID &&
1950 tline->type != TOK_STRING &&
1951 (tline->type != TOK_PREPROC_ID ||
1952 tline->text[1] != '!'))) {
1953 error(ERR_NONFATAL,
1954 "`%s' expects environment variable names",
1955 pp_directives[ct]);
1956 goto fail;
1958 p = tline->text;
1959 if (tline->type == TOK_PREPROC_ID)
1960 p += 2; /* Skip leading %! */
1961 if (*p == '\'' || *p == '\"' || *p == '`')
1962 nasm_unquote_cstr(p, ct);
1963 if (getenv(p))
1964 j = true;
1965 tline = tline->next;
1966 skip_white_(tline);
1967 } while (tline);
1968 break;
1970 case PPC_IFIDN:
1971 case PPC_IFIDNI:
1972 tline = expand_smacro(tline);
1973 t = tt = tline;
1974 while (tok_isnt_(tt, ","))
1975 tt = tt->next;
1976 if (!tt) {
1977 error(ERR_NONFATAL,
1978 "`%s' expects two comma-separated arguments",
1979 pp_directives[ct]);
1980 goto fail;
1982 tt = tt->next;
1983 j = true; /* assume equality unless proved not */
1984 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1985 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1986 error(ERR_NONFATAL, "`%s': more than one comma on line",
1987 pp_directives[ct]);
1988 goto fail;
1990 if (t->type == TOK_WHITESPACE) {
1991 t = t->next;
1992 continue;
1994 if (tt->type == TOK_WHITESPACE) {
1995 tt = tt->next;
1996 continue;
1998 if (tt->type != t->type) {
1999 j = false; /* found mismatching tokens */
2000 break;
2002 /* When comparing strings, need to unquote them first */
2003 if (t->type == TOK_STRING) {
2004 size_t l1 = nasm_unquote(t->text, NULL);
2005 size_t l2 = nasm_unquote(tt->text, NULL);
2007 if (l1 != l2) {
2008 j = false;
2009 break;
2011 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
2012 j = false;
2013 break;
2015 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
2016 j = false; /* found mismatching tokens */
2017 break;
2020 t = t->next;
2021 tt = tt->next;
2023 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
2024 j = false; /* trailing gunk on one end or other */
2025 break;
2027 case PPC_IFMACRO:
2029 bool found = false;
2030 ExpDef searching, *ed;
2032 skip_white_(tline);
2033 tline = expand_id(tline);
2034 if (!tok_type_(tline, TOK_ID)) {
2035 error(ERR_NONFATAL,
2036 "`%s' expects a macro name", pp_directives[ct]);
2037 goto fail;
2039 memset(&searching, 0, sizeof(searching));
2040 searching.name = nasm_strdup(tline->text);
2041 searching.casesense = true;
2042 searching.nparam_max = INT_MAX;
2043 tline = expand_smacro(tline->next);
2044 skip_white_(tline);
2045 if (!tline) {
2046 } else if (!tok_type_(tline, TOK_NUMBER)) {
2047 error(ERR_NONFATAL,
2048 "`%s' expects a parameter count or nothing",
2049 pp_directives[ct]);
2050 } else {
2051 searching.nparam_min = searching.nparam_max =
2052 readnum(tline->text, &j);
2053 if (j)
2054 error(ERR_NONFATAL,
2055 "unable to parse parameter count `%s'",
2056 tline->text);
2058 if (tline && tok_is_(tline->next, "-")) {
2059 tline = tline->next->next;
2060 if (tok_is_(tline, "*"))
2061 searching.nparam_max = INT_MAX;
2062 else if (!tok_type_(tline, TOK_NUMBER))
2063 error(ERR_NONFATAL,
2064 "`%s' expects a parameter count after `-'",
2065 pp_directives[ct]);
2066 else {
2067 searching.nparam_max = readnum(tline->text, &j);
2068 if (j)
2069 error(ERR_NONFATAL,
2070 "unable to parse parameter count `%s'",
2071 tline->text);
2072 if (searching.nparam_min > searching.nparam_max)
2073 error(ERR_NONFATAL,
2074 "minimum parameter count exceeds maximum");
2077 if (tline && tok_is_(tline->next, "+")) {
2078 tline = tline->next;
2079 searching.plus = true;
2081 ed = (ExpDef *) hash_findix(&expdefs, searching.name);
2082 while (ed != NULL) {
2083 if (!strcmp(ed->name, searching.name) &&
2084 (ed->nparam_min <= searching.nparam_max || searching.plus) &&
2085 (searching.nparam_min <= ed->nparam_max || ed->plus)) {
2086 found = true;
2087 break;
2089 ed = ed->next;
2091 if (tline && tline->next)
2092 error(ERR_WARNING|ERR_PASS1,
2093 "trailing garbage after %%ifmacro ignored");
2094 nasm_free(searching.name);
2095 j = found;
2096 break;
2099 case PPC_IFID:
2100 needtype = TOK_ID;
2101 goto iftype;
2102 case PPC_IFNUM:
2103 needtype = TOK_NUMBER;
2104 goto iftype;
2105 case PPC_IFSTR:
2106 needtype = TOK_STRING;
2107 goto iftype;
2109 iftype:
2110 t = tline = expand_smacro(tline);
2112 while (tok_type_(t, TOK_WHITESPACE) ||
2113 (needtype == TOK_NUMBER &&
2114 tok_type_(t, TOK_OTHER) &&
2115 (t->text[0] == '-' || t->text[0] == '+') &&
2116 !t->text[1]))
2117 t = t->next;
2119 j = tok_type_(t, needtype);
2120 break;
2122 case PPC_IFTOKEN:
2123 t = tline = expand_smacro(tline);
2124 while (tok_type_(t, TOK_WHITESPACE))
2125 t = t->next;
2127 j = false;
2128 if (t) {
2129 t = t->next; /* Skip the actual token */
2130 while (tok_type_(t, TOK_WHITESPACE))
2131 t = t->next;
2132 j = !t; /* Should be nothing left */
2134 break;
2136 case PPC_IFEMPTY:
2137 t = tline = expand_smacro(tline);
2138 while (tok_type_(t, TOK_WHITESPACE))
2139 t = t->next;
2141 j = !t; /* Should be empty */
2142 break;
2144 case PPC_IF:
2145 t = tline = expand_smacro(tline);
2146 tptr = &t;
2147 tokval.t_type = TOKEN_INVALID;
2148 evalresult = evaluate(ppscan, tptr, &tokval,
2149 NULL, pass | CRITICAL, error, NULL);
2150 if (!evalresult)
2151 return -1;
2152 if (tokval.t_type)
2153 error(ERR_WARNING|ERR_PASS1,
2154 "trailing garbage after expression ignored");
2155 if (!is_simple(evalresult)) {
2156 error(ERR_NONFATAL,
2157 "non-constant value given to `%s'", pp_directives[ct]);
2158 goto fail;
2160 j = reloc_value(evalresult) != 0;
2161 break;
2163 default:
2164 error(ERR_FATAL,
2165 "preprocessor directive `%s' not yet implemented",
2166 pp_directives[ct]);
2167 goto fail;
2170 free_tlist(origline);
2171 return j ^ PP_NEGATIVE(ct);
2173 fail:
2174 free_tlist(origline);
2175 return -1;
2179 * Common code for defining an smacro
2181 static bool define_smacro(Context *ctx, const char *mname, bool casesense,
2182 int nparam, Token *expansion)
2184 SMacro *smac, **smhead;
2185 struct hash_table *smtbl;
2187 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
2188 if (!smac) {
2189 error(ERR_WARNING|ERR_PASS1,
2190 "single-line macro `%s' defined both with and"
2191 " without parameters", mname);
2193 * Some instances of the old code considered this a failure,
2194 * some others didn't. What is the right thing to do here?
2196 free_tlist(expansion);
2197 return false; /* Failure */
2198 } else {
2200 * We're redefining, so we have to take over an
2201 * existing SMacro structure. This means freeing
2202 * what was already in it.
2204 nasm_free(smac->name);
2205 free_tlist(smac->expansion);
2207 } else {
2208 smtbl = ctx ? &ctx->localmac : &smacros;
2209 smhead = (SMacro **) hash_findi_add(smtbl, mname);
2210 smac = nasm_zalloc(sizeof(SMacro));
2211 smac->next = *smhead;
2212 *smhead = smac;
2214 smac->name = nasm_strdup(mname);
2215 smac->casesense = casesense;
2216 smac->nparam = nparam;
2217 smac->expansion = expansion;
2218 smac->in_progress = false;
2219 return true; /* Success */
2223 * Undefine an smacro
2225 static void undef_smacro(Context *ctx, const char *mname)
2227 SMacro **smhead, *s, **sp;
2228 struct hash_table *smtbl;
2230 smtbl = ctx ? &ctx->localmac : &smacros;
2231 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
2233 if (smhead) {
2235 * We now have a macro name... go hunt for it.
2237 sp = smhead;
2238 while ((s = *sp) != NULL) {
2239 if (!mstrcmp(s->name, mname, s->casesense)) {
2240 *sp = s->next;
2241 nasm_free(s->name);
2242 free_tlist(s->expansion);
2243 nasm_free(s);
2244 } else {
2245 sp = &s->next;
2252 * Parse a mmacro specification.
2254 static bool parse_mmacro_spec(Token *tline, ExpDef *def, const char *directive)
2256 bool err;
2258 tline = tline->next;
2259 skip_white_(tline);
2260 tline = expand_id(tline);
2261 if (!tok_type_(tline, TOK_ID)) {
2262 error(ERR_NONFATAL, "`%s' expects a macro name", directive);
2263 return false;
2266 def->name = nasm_strdup(tline->text);
2267 def->plus = false;
2268 def->nolist = false;
2269 // def->in_progress = 0;
2270 // def->rep_nest = NULL;
2271 def->nparam_min = 0;
2272 def->nparam_max = 0;
2274 tline = expand_smacro(tline->next);
2275 skip_white_(tline);
2276 if (!tok_type_(tline, TOK_NUMBER)) {
2277 error(ERR_NONFATAL, "`%s' expects a parameter count", directive);
2278 } else {
2279 def->nparam_min = def->nparam_max =
2280 readnum(tline->text, &err);
2281 if (err)
2282 error(ERR_NONFATAL,
2283 "unable to parse parameter count `%s'", tline->text);
2285 if (tline && tok_is_(tline->next, "-")) {
2286 tline = tline->next->next;
2287 if (tok_is_(tline, "*")) {
2288 def->nparam_max = INT_MAX;
2289 } else if (!tok_type_(tline, TOK_NUMBER)) {
2290 error(ERR_NONFATAL,
2291 "`%s' expects a parameter count after `-'", directive);
2292 } else {
2293 def->nparam_max = readnum(tline->text, &err);
2294 if (err) {
2295 error(ERR_NONFATAL, "unable to parse parameter count `%s'",
2296 tline->text);
2298 if (def->nparam_min > def->nparam_max) {
2299 error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
2303 if (tline && tok_is_(tline->next, "+")) {
2304 tline = tline->next;
2305 def->plus = true;
2307 if (tline && tok_type_(tline->next, TOK_ID) &&
2308 !nasm_stricmp(tline->next->text, ".nolist")) {
2309 tline = tline->next;
2310 def->nolist = true;
2314 * Handle default parameters.
2316 if (tline && tline->next) {
2317 def->dlist = tline->next;
2318 tline->next = NULL;
2319 count_mmac_params(def->dlist, &def->ndefs, &def->defaults);
2320 } else {
2321 def->dlist = NULL;
2322 def->defaults = NULL;
2324 def->line = NULL;
2326 if (def->defaults && def->ndefs > def->nparam_max - def->nparam_min &&
2327 !def->plus)
2328 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP,
2329 "too many default macro parameters");
2331 return true;
2336 * Decode a size directive
2338 static int parse_size(const char *str) {
2339 static const char *size_names[] =
2340 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
2341 static const int sizes[] =
2342 { 0, 1, 4, 16, 8, 10, 2, 32 };
2344 return sizes[bsii(str, size_names, ARRAY_SIZE(size_names))+1];
2348 * find and process preprocessor directive in passed line
2349 * Find out if a line contains a preprocessor directive, and deal
2350 * with it if so.
2352 * If a directive _is_ found, it is the responsibility of this routine
2353 * (and not the caller) to free_tlist() the line.
2355 * @param tline a pointer to the current tokeninzed line linked list
2356 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
2359 static int do_directive(Token * tline)
2361 enum preproc_token i;
2362 int j;
2363 bool err;
2364 int nparam;
2365 bool nolist;
2366 bool casesense;
2367 int k, m;
2368 int offset;
2369 char *p, *pp;
2370 const char *mname;
2371 Include *inc;
2372 Context *ctx;
2373 Line *l;
2374 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
2375 struct tokenval tokval;
2376 expr *evalresult;
2377 ExpDef *ed, *eed, **edhead;
2378 ExpInv *ei, *eei;
2379 int64_t count;
2380 size_t len;
2381 int severity;
2383 origline = tline;
2385 skip_white_(tline);
2386 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
2387 (tline->text[1] == '%' || tline->text[1] == '$'
2388 || tline->text[1] == '!'))
2389 return NO_DIRECTIVE_FOUND;
2391 i = pp_token_hash(tline->text);
2393 switch (i) {
2394 case PP_INVALID:
2395 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2396 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2397 tline->text);
2398 return NO_DIRECTIVE_FOUND; /* didn't get it */
2400 case PP_STACKSIZE:
2401 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2402 /* Directive to tell NASM what the default stack size is. The
2403 * default is for a 16-bit stack, and this can be overriden with
2404 * %stacksize large.
2406 tline = tline->next;
2407 if (tline && tline->type == TOK_WHITESPACE)
2408 tline = tline->next;
2409 if (!tline || tline->type != TOK_ID) {
2410 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
2411 free_tlist(origline);
2412 return DIRECTIVE_FOUND;
2414 if (nasm_stricmp(tline->text, "flat") == 0) {
2415 /* All subsequent ARG directives are for a 32-bit stack */
2416 StackSize = 4;
2417 StackPointer = "ebp";
2418 ArgOffset = 8;
2419 LocalOffset = 0;
2420 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
2421 /* All subsequent ARG directives are for a 64-bit stack */
2422 StackSize = 8;
2423 StackPointer = "rbp";
2424 ArgOffset = 16;
2425 LocalOffset = 0;
2426 } else if (nasm_stricmp(tline->text, "large") == 0) {
2427 /* All subsequent ARG directives are for a 16-bit stack,
2428 * far function call.
2430 StackSize = 2;
2431 StackPointer = "bp";
2432 ArgOffset = 4;
2433 LocalOffset = 0;
2434 } else if (nasm_stricmp(tline->text, "small") == 0) {
2435 /* All subsequent ARG directives are for a 16-bit stack,
2436 * far function call. We don't support near functions.
2438 StackSize = 2;
2439 StackPointer = "bp";
2440 ArgOffset = 6;
2441 LocalOffset = 0;
2442 } else {
2443 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
2444 free_tlist(origline);
2445 return DIRECTIVE_FOUND;
2447 free_tlist(origline);
2448 return DIRECTIVE_FOUND;
2450 case PP_ARG:
2451 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2452 /* TASM like ARG directive to define arguments to functions, in
2453 * the following form:
2455 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2457 offset = ArgOffset;
2458 do {
2459 char *arg, directive[256];
2460 int size = StackSize;
2462 /* Find the argument name */
2463 tline = tline->next;
2464 if (tline && tline->type == TOK_WHITESPACE)
2465 tline = tline->next;
2466 if (!tline || tline->type != TOK_ID) {
2467 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
2468 free_tlist(origline);
2469 return DIRECTIVE_FOUND;
2471 arg = tline->text;
2473 /* Find the argument size type */
2474 tline = tline->next;
2475 if (!tline || tline->type != TOK_OTHER
2476 || tline->text[0] != ':') {
2477 error(ERR_NONFATAL,
2478 "Syntax error processing `%%arg' directive");
2479 free_tlist(origline);
2480 return DIRECTIVE_FOUND;
2482 tline = tline->next;
2483 if (!tline || tline->type != TOK_ID) {
2484 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
2485 free_tlist(origline);
2486 return DIRECTIVE_FOUND;
2489 /* Allow macro expansion of type parameter */
2490 tt = tokenize(tline->text);
2491 tt = expand_smacro(tt);
2492 size = parse_size(tt->text);
2493 if (!size) {
2494 error(ERR_NONFATAL,
2495 "Invalid size type for `%%arg' missing directive");
2496 free_tlist(tt);
2497 free_tlist(origline);
2498 return DIRECTIVE_FOUND;
2500 free_tlist(tt);
2502 /* Round up to even stack slots */
2503 size = ALIGN(size, StackSize);
2505 /* Now define the macro for the argument */
2506 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
2507 arg, StackPointer, offset);
2508 do_directive(tokenize(directive));
2509 offset += size;
2511 /* Move to the next argument in the list */
2512 tline = tline->next;
2513 if (tline && tline->type == TOK_WHITESPACE)
2514 tline = tline->next;
2515 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2516 ArgOffset = offset;
2517 free_tlist(origline);
2518 return DIRECTIVE_FOUND;
2520 case PP_LOCAL:
2521 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2522 /* TASM like LOCAL directive to define local variables for a
2523 * function, in the following form:
2525 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2527 * The '= LocalSize' at the end is ignored by NASM, but is
2528 * required by TASM to define the local parameter size (and used
2529 * by the TASM macro package).
2531 offset = LocalOffset;
2532 do {
2533 char *local, directive[256];
2534 int size = StackSize;
2536 /* Find the argument name */
2537 tline = tline->next;
2538 if (tline && tline->type == TOK_WHITESPACE)
2539 tline = tline->next;
2540 if (!tline || tline->type != TOK_ID) {
2541 error(ERR_NONFATAL,
2542 "`%%local' missing argument parameter");
2543 free_tlist(origline);
2544 return DIRECTIVE_FOUND;
2546 local = tline->text;
2548 /* Find the argument size type */
2549 tline = tline->next;
2550 if (!tline || tline->type != TOK_OTHER
2551 || tline->text[0] != ':') {
2552 error(ERR_NONFATAL,
2553 "Syntax error processing `%%local' directive");
2554 free_tlist(origline);
2555 return DIRECTIVE_FOUND;
2557 tline = tline->next;
2558 if (!tline || tline->type != TOK_ID) {
2559 error(ERR_NONFATAL,
2560 "`%%local' missing size type parameter");
2561 free_tlist(origline);
2562 return DIRECTIVE_FOUND;
2565 /* Allow macro expansion of type parameter */
2566 tt = tokenize(tline->text);
2567 tt = expand_smacro(tt);
2568 size = parse_size(tt->text);
2569 if (!size) {
2570 error(ERR_NONFATAL,
2571 "Invalid size type for `%%local' missing directive");
2572 free_tlist(tt);
2573 free_tlist(origline);
2574 return DIRECTIVE_FOUND;
2576 free_tlist(tt);
2578 /* Round up to even stack slots */
2579 size = ALIGN(size, StackSize);
2581 offset += size; /* Negative offset, increment before */
2583 /* Now define the macro for the argument */
2584 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2585 local, StackPointer, offset);
2586 do_directive(tokenize(directive));
2588 /* Now define the assign to setup the enter_c macro correctly */
2589 snprintf(directive, sizeof(directive),
2590 "%%assign %%$localsize %%$localsize+%d", size);
2591 do_directive(tokenize(directive));
2593 /* Move to the next argument in the list */
2594 tline = tline->next;
2595 if (tline && tline->type == TOK_WHITESPACE)
2596 tline = tline->next;
2597 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2598 LocalOffset = offset;
2599 free_tlist(origline);
2600 return DIRECTIVE_FOUND;
2602 case PP_CLEAR:
2603 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2604 if (tline->next)
2605 error(ERR_WARNING|ERR_PASS1,
2606 "trailing garbage after `%%clear' ignored");
2607 free_macros();
2608 init_macros();
2609 free_tlist(origline);
2610 return DIRECTIVE_FOUND;
2612 case PP_DEPEND:
2613 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2614 t = tline->next = expand_smacro(tline->next);
2615 skip_white_(t);
2616 if (!t || (t->type != TOK_STRING &&
2617 t->type != TOK_INTERNAL_STRING)) {
2618 error(ERR_NONFATAL, "`%%depend' expects a file name");
2619 free_tlist(origline);
2620 return DIRECTIVE_FOUND; /* but we did _something_ */
2622 if (t->next)
2623 error(ERR_WARNING|ERR_PASS1,
2624 "trailing garbage after `%%depend' ignored");
2625 p = t->text;
2626 if (t->type != TOK_INTERNAL_STRING)
2627 nasm_unquote_cstr(p, i);
2628 if (dephead && !in_list(*dephead, p)) {
2629 StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next);
2630 sl->next = NULL;
2631 strcpy(sl->str, p);
2632 *deptail = sl;
2633 deptail = &sl->next;
2635 free_tlist(origline);
2636 return DIRECTIVE_FOUND;
2638 case PP_INCLUDE:
2639 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2640 t = tline->next = expand_smacro(tline->next);
2641 skip_white_(t);
2643 if (!t || (t->type != TOK_STRING &&
2644 t->type != TOK_INTERNAL_STRING)) {
2645 error(ERR_NONFATAL, "`%%include' expects a file name");
2646 free_tlist(origline);
2647 return DIRECTIVE_FOUND; /* but we did _something_ */
2649 if (t->next)
2650 error(ERR_WARNING|ERR_PASS1,
2651 "trailing garbage after `%%include' ignored");
2652 p = t->text;
2653 if (t->type != TOK_INTERNAL_STRING)
2654 nasm_unquote_cstr(p, i);
2655 inc = nasm_zalloc(sizeof(Include));
2656 inc->next = istk;
2657 inc->fp = inc_fopen(p, dephead, &deptail, pass == 0);
2658 if (!inc->fp) {
2659 /* -MG given but file not found */
2660 nasm_free(inc);
2661 } else {
2662 inc->fname = src_set_fname(nasm_strdup(p));
2663 inc->lineno = src_set_linnum(0);
2664 inc->lineinc = 1;
2665 inc->expansion = NULL;
2666 istk = inc;
2667 list->uplevel(LIST_INCLUDE);
2669 free_tlist(origline);
2670 return DIRECTIVE_FOUND;
2672 case PP_USE:
2673 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2675 static macros_t *use_pkg;
2676 const char *pkg_macro = NULL;
2678 tline = tline->next;
2679 skip_white_(tline);
2680 tline = expand_id(tline);
2682 if (!tline || (tline->type != TOK_STRING &&
2683 tline->type != TOK_INTERNAL_STRING &&
2684 tline->type != TOK_ID)) {
2685 error(ERR_NONFATAL, "`%%use' expects a package name");
2686 free_tlist(origline);
2687 return DIRECTIVE_FOUND; /* but we did _something_ */
2689 if (tline->next)
2690 error(ERR_WARNING|ERR_PASS1,
2691 "trailing garbage after `%%use' ignored");
2692 if (tline->type == TOK_STRING)
2693 nasm_unquote_cstr(tline->text, i);
2694 use_pkg = nasm_stdmac_find_package(tline->text);
2695 if (!use_pkg)
2696 error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
2697 else
2698 pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */
2699 if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
2700 /* Not already included, go ahead and include it */
2701 stdmacpos = use_pkg;
2703 free_tlist(origline);
2704 return DIRECTIVE_FOUND;
2706 case PP_PUSH:
2707 case PP_REPL:
2708 case PP_POP:
2709 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2710 tline = tline->next;
2711 skip_white_(tline);
2712 tline = expand_id(tline);
2713 if (tline) {
2714 if (!tok_type_(tline, TOK_ID)) {
2715 error(ERR_NONFATAL, "`%s' expects a context identifier",
2716 pp_directives[i]);
2717 free_tlist(origline);
2718 return DIRECTIVE_FOUND; /* but we did _something_ */
2720 if (tline->next)
2721 error(ERR_WARNING|ERR_PASS1,
2722 "trailing garbage after `%s' ignored",
2723 pp_directives[i]);
2724 p = nasm_strdup(tline->text);
2725 } else {
2726 p = NULL; /* Anonymous */
2729 if (i == PP_PUSH) {
2730 ctx = nasm_zalloc(sizeof(Context));
2731 ctx->next = cstk;
2732 hash_init(&ctx->localmac, HASH_SMALL);
2733 ctx->name = p;
2734 ctx->number = unique++;
2735 cstk = ctx;
2736 } else {
2737 /* %pop or %repl */
2738 if (!cstk) {
2739 error(ERR_NONFATAL, "`%s': context stack is empty",
2740 pp_directives[i]);
2741 } else if (i == PP_POP) {
2742 if (p && (!cstk->name || nasm_stricmp(p, cstk->name)))
2743 error(ERR_NONFATAL, "`%%pop' in wrong context: %s, "
2744 "expected %s",
2745 cstk->name ? cstk->name : "anonymous", p);
2746 else
2747 ctx_pop();
2748 } else {
2749 /* i == PP_REPL */
2750 nasm_free(cstk->name);
2751 cstk->name = p;
2752 p = NULL;
2754 nasm_free(p);
2756 free_tlist(origline);
2757 return DIRECTIVE_FOUND;
2758 case PP_FATAL:
2759 severity = ERR_FATAL;
2760 goto issue_error;
2761 case PP_ERROR:
2762 severity = ERR_NONFATAL;
2763 goto issue_error;
2764 case PP_WARNING:
2765 severity = ERR_WARNING|ERR_WARN_USER;
2766 goto issue_error;
2768 issue_error:
2769 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2771 /* Only error out if this is the final pass */
2772 if (pass != 2 && i != PP_FATAL)
2773 return DIRECTIVE_FOUND;
2775 tline->next = expand_smacro(tline->next);
2776 tline = tline->next;
2777 skip_white_(tline);
2778 t = tline ? tline->next : NULL;
2779 skip_white_(t);
2780 if (tok_type_(tline, TOK_STRING) && !t) {
2781 /* The line contains only a quoted string */
2782 p = tline->text;
2783 nasm_unquote(p, NULL); /* Ignore NUL character truncation */
2784 error(severity, "%s", p);
2785 } else {
2786 /* Not a quoted string, or more than a quoted string */
2787 p = detoken(tline, false);
2788 error(severity, "%s", p);
2789 nasm_free(p);
2791 free_tlist(origline);
2792 return DIRECTIVE_FOUND;
2795 CASE_PP_IF:
2796 if (defining != NULL) {
2797 if (defining->type == EXP_IF) {
2798 defining->def_depth ++;
2800 return NO_DIRECTIVE_FOUND;
2802 if ((istk->expansion != NULL) &&
2803 (istk->expansion->emitting == false)) {
2804 j = COND_NEVER;
2805 } else {
2806 j = if_condition(tline->next, i);
2807 tline->next = NULL; /* it got freed */
2808 j = (((j < 0) ? COND_NEVER : j) ? COND_IF_TRUE : COND_IF_FALSE);
2810 ed = new_ExpDef(EXP_IF);
2811 ed->state = j;
2812 ed->ignoring = ((ed->state == COND_IF_TRUE) ? false : true);
2813 ed->prev = defining;
2814 defining = ed;
2815 free_tlist(origline);
2816 return DIRECTIVE_FOUND;
2818 CASE_PP_ELIF:
2819 if (defining != NULL) {
2820 if ((defining->type != EXP_IF) || (defining->def_depth > 0)) {
2821 return NO_DIRECTIVE_FOUND;
2824 if ((defining == NULL) || (defining->type != EXP_IF)) {
2825 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
2827 switch (defining->state) {
2828 case COND_IF_TRUE:
2829 defining->state = COND_DONE;
2830 defining->ignoring = true;
2831 break;
2833 case COND_DONE:
2834 case COND_NEVER:
2835 defining->ignoring = true;
2836 break;
2838 case COND_ELSE_TRUE:
2839 case COND_ELSE_FALSE:
2840 error_precond(ERR_WARNING|ERR_PASS1,
2841 "`%%elif' after `%%else' ignored");
2842 defining->state = COND_NEVER;
2843 defining->ignoring = true;
2844 break;
2846 case COND_IF_FALSE:
2848 * IMPORTANT: In the case of %if, we will already have
2849 * called expand_mmac_params(); however, if we're
2850 * processing an %elif we must have been in a
2851 * non-emitting mode, which would have inhibited
2852 * the normal invocation of expand_mmac_params().
2853 * Therefore, we have to do it explicitly here.
2855 j = if_condition(expand_mmac_params(tline->next), i);
2856 tline->next = NULL; /* it got freed */
2857 defining->state =
2858 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2859 defining->ignoring = ((defining->state == COND_IF_TRUE) ? false : true);
2860 break;
2862 free_tlist(origline);
2863 return DIRECTIVE_FOUND;
2865 case PP_ELSE:
2866 if (defining != NULL) {
2867 if ((defining->type != EXP_IF) || (defining->def_depth > 0)) {
2868 return NO_DIRECTIVE_FOUND;
2871 if (tline->next)
2872 error_precond(ERR_WARNING|ERR_PASS1,
2873 "trailing garbage after `%%else' ignored");
2874 if ((defining == NULL) || (defining->type != EXP_IF)) {
2875 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
2877 switch (defining->state) {
2878 case COND_IF_TRUE:
2879 case COND_DONE:
2880 defining->state = COND_ELSE_FALSE;
2881 defining->ignoring = true;
2882 break;
2884 case COND_NEVER:
2885 defining->ignoring = true;
2886 break;
2888 case COND_IF_FALSE:
2889 defining->state = COND_ELSE_TRUE;
2890 defining->ignoring = false;
2891 break;
2893 case COND_ELSE_TRUE:
2894 case COND_ELSE_FALSE:
2895 error_precond(ERR_WARNING|ERR_PASS1,
2896 "`%%else' after `%%else' ignored.");
2897 defining->state = COND_NEVER;
2898 defining->ignoring = true;
2899 break;
2901 free_tlist(origline);
2902 return DIRECTIVE_FOUND;
2904 case PP_ENDIF:
2905 if (defining != NULL) {
2906 if (defining->type == EXP_IF) {
2907 if (defining->def_depth > 0) {
2908 defining->def_depth --;
2909 return NO_DIRECTIVE_FOUND;
2911 } else {
2912 return NO_DIRECTIVE_FOUND;
2915 if (tline->next)
2916 error_precond(ERR_WARNING|ERR_PASS1,
2917 "trailing garbage after `%%endif' ignored");
2918 if ((defining == NULL) || (defining->type != EXP_IF)) {
2919 error(ERR_NONFATAL, "`%%endif': no matching `%%if'");
2920 return DIRECTIVE_FOUND;
2922 ed = defining;
2923 defining = ed->prev;
2924 ed->prev = expansions;
2925 expansions = ed;
2926 ei = new_ExpInv(EXP_IF, ed);
2927 ei->current = ed->line;
2928 ei->emitting = true;
2929 ei->prev = istk->expansion;
2930 istk->expansion = ei;
2931 free_tlist(origline);
2932 return DIRECTIVE_FOUND;
2934 case PP_RMACRO:
2935 case PP_IRMACRO:
2936 case PP_MACRO:
2937 case PP_IMACRO:
2938 if (defining != NULL) {
2939 if (defining->type == EXP_MMACRO) {
2940 defining->def_depth ++;
2942 return NO_DIRECTIVE_FOUND;
2944 ed = new_ExpDef(EXP_MMACRO);
2945 ed->max_depth =
2946 (i == PP_RMACRO) || (i == PP_IRMACRO) ? DEADMAN_LIMIT : 0;
2947 ed->casesense = (i == PP_MACRO) || (i == PP_RMACRO);
2948 if (!parse_mmacro_spec(tline, ed, pp_directives[i])) {
2949 nasm_free(ed);
2950 ed = NULL;
2951 return DIRECTIVE_FOUND;
2953 ed->def_depth = 0;
2954 ed->cur_depth = 0;
2955 ed->max_depth = (ed->max_depth + 1);
2956 ed->ignoring = false;
2957 ed->prev = defining;
2958 defining = ed;
2960 eed = (ExpDef *) hash_findix(&expdefs, ed->name);
2961 while (eed) {
2962 if (!strcmp(eed->name, ed->name) &&
2963 (eed->nparam_min <= ed->nparam_max || ed->plus) &&
2964 (ed->nparam_min <= eed->nparam_max || eed->plus)) {
2965 error(ERR_WARNING|ERR_PASS1,
2966 "redefining multi-line macro `%s'", ed->name);
2967 return DIRECTIVE_FOUND;
2969 eed = eed->next;
2971 free_tlist(origline);
2972 return DIRECTIVE_FOUND;
2974 case PP_ENDM:
2975 case PP_ENDMACRO:
2976 if (defining != NULL) {
2977 if (defining->type == EXP_MMACRO) {
2978 if (defining->def_depth > 0) {
2979 defining->def_depth --;
2980 return NO_DIRECTIVE_FOUND;
2982 } else {
2983 return NO_DIRECTIVE_FOUND;
2986 if (!(defining) || (defining->type != EXP_MMACRO)) {
2987 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2988 return DIRECTIVE_FOUND;
2990 edhead = (ExpDef **) hash_findi_add(&expdefs, defining->name);
2991 defining->next = *edhead;
2992 *edhead = defining;
2993 ed = defining;
2994 defining = ed->prev;
2995 ed->prev = expansions;
2996 expansions = ed;
2997 ed = NULL;
2998 free_tlist(origline);
2999 return DIRECTIVE_FOUND;
3001 case PP_EXITMACRO:
3002 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3004 * We must search along istk->expansion until we hit a
3005 * macro invocation. Then we disable the emitting state(s)
3006 * between exitmacro and endmacro.
3008 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3009 if(ei->type == EXP_MMACRO) {
3010 break;
3014 if (ei != NULL) {
3016 * Set all invocations leading back to the macro
3017 * invocation to a non-emitting state.
3019 for (eei = istk->expansion; eei != ei; eei = eei->prev) {
3020 eei->emitting = false;
3022 eei->emitting = false;
3023 } else {
3024 error(ERR_NONFATAL, "`%%exitmacro' not within `%%macro' block");
3026 free_tlist(origline);
3027 return DIRECTIVE_FOUND;
3029 case PP_UNMACRO:
3030 case PP_UNIMACRO:
3031 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3033 ExpDef **ed_p;
3034 ExpDef spec;
3036 spec.casesense = (i == PP_UNMACRO);
3037 if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) {
3038 return DIRECTIVE_FOUND;
3040 ed_p = (ExpDef **) hash_findi(&expdefs, spec.name, NULL);
3041 while (ed_p && *ed_p) {
3042 ed = *ed_p;
3043 if (ed->casesense == spec.casesense &&
3044 !mstrcmp(ed->name, spec.name, spec.casesense) &&
3045 ed->nparam_min == spec.nparam_min &&
3046 ed->nparam_max == spec.nparam_max &&
3047 ed->plus == spec.plus) {
3048 if (ed->cur_depth > 0) {
3049 error(ERR_NONFATAL, "`%s' ignored on active macro",
3050 pp_directives[i]);
3051 break;
3052 } else {
3053 *ed_p = ed->next;
3054 free_expdef(ed);
3056 } else {
3057 ed_p = &ed->next;
3060 free_tlist(origline);
3061 free_tlist(spec.dlist);
3062 return DIRECTIVE_FOUND;
3065 case PP_ROTATE:
3066 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3067 if (tline->next && tline->next->type == TOK_WHITESPACE)
3068 tline = tline->next;
3069 if (!tline->next) {
3070 free_tlist(origline);
3071 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
3072 return DIRECTIVE_FOUND;
3074 t = expand_smacro(tline->next);
3075 tline->next = NULL;
3076 free_tlist(origline);
3077 tline = t;
3078 tptr = &t;
3079 tokval.t_type = TOKEN_INVALID;
3080 evalresult =
3081 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3082 free_tlist(tline);
3083 if (!evalresult)
3084 return DIRECTIVE_FOUND;
3085 if (tokval.t_type)
3086 error(ERR_WARNING|ERR_PASS1,
3087 "trailing garbage after expression ignored");
3088 if (!is_simple(evalresult)) {
3089 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
3090 return DIRECTIVE_FOUND;
3092 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3093 if (ei->type == EXP_MMACRO) {
3094 break;
3097 if (ei == NULL) {
3098 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
3099 } else if (ei->nparam == 0) {
3100 error(ERR_NONFATAL,
3101 "`%%rotate' invoked within macro without parameters");
3102 } else {
3103 int rotate = ei->rotate + reloc_value(evalresult);
3105 rotate %= (int)ei->nparam;
3106 if (rotate < 0)
3107 rotate += ei->nparam;
3108 ei->rotate = rotate;
3110 return DIRECTIVE_FOUND;
3112 case PP_REP:
3113 if (defining != NULL) {
3114 if (defining->type == EXP_REP) {
3115 defining->def_depth ++;
3117 return NO_DIRECTIVE_FOUND;
3119 nolist = false;
3120 do {
3121 tline = tline->next;
3122 } while (tok_type_(tline, TOK_WHITESPACE));
3124 if (tok_type_(tline, TOK_ID) &&
3125 nasm_stricmp(tline->text, ".nolist") == 0) {
3126 nolist = true;
3127 do {
3128 tline = tline->next;
3129 } while (tok_type_(tline, TOK_WHITESPACE));
3132 if (tline) {
3133 t = expand_smacro(tline);
3134 tptr = &t;
3135 tokval.t_type = TOKEN_INVALID;
3136 evalresult =
3137 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3138 if (!evalresult) {
3139 free_tlist(origline);
3140 return DIRECTIVE_FOUND;
3142 if (tokval.t_type)
3143 error(ERR_WARNING|ERR_PASS1,
3144 "trailing garbage after expression ignored");
3145 if (!is_simple(evalresult)) {
3146 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
3147 return DIRECTIVE_FOUND;
3149 count = reloc_value(evalresult);
3150 if (count >= REP_LIMIT) {
3151 error(ERR_NONFATAL, "`%%rep' value exceeds limit");
3152 count = 0;
3153 } else
3154 count++;
3155 } else {
3156 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
3157 count = 0;
3159 free_tlist(origline);
3160 ed = new_ExpDef(EXP_REP);
3161 ed->nolist = nolist;
3162 ed->def_depth = 0;
3163 ed->cur_depth = 1;
3164 ed->max_depth = (count - 1);
3165 ed->ignoring = false;
3166 ed->prev = defining;
3167 defining = ed;
3168 return DIRECTIVE_FOUND;
3170 case PP_ENDREP:
3171 if (defining != NULL) {
3172 if (defining->type == EXP_REP) {
3173 if (defining->def_depth > 0) {
3174 defining->def_depth --;
3175 return NO_DIRECTIVE_FOUND;
3177 } else {
3178 return NO_DIRECTIVE_FOUND;
3181 if ((defining == NULL) || (defining->type != EXP_REP)) {
3182 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
3183 return DIRECTIVE_FOUND;
3187 * Now we have a "macro" defined - although it has no name
3188 * and we won't be entering it in the hash tables - we must
3189 * push a macro-end marker for it on to istk->expansion.
3190 * After that, it will take care of propagating itself (a
3191 * macro-end marker line for a macro which is really a %rep
3192 * block will cause the macro to be re-expanded, complete
3193 * with another macro-end marker to ensure the process
3194 * continues) until the whole expansion is forcibly removed
3195 * from istk->expansion by a %exitrep.
3197 ed = defining;
3198 defining = ed->prev;
3199 ed->prev = expansions;
3200 expansions = ed;
3201 ei = new_ExpInv(EXP_REP, ed);
3202 ei->current = ed->line;
3203 ei->emitting = ((ed->max_depth > 0) ? true : false);
3204 list->uplevel(ed->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
3205 ei->prev = istk->expansion;
3206 istk->expansion = ei;
3207 free_tlist(origline);
3208 return DIRECTIVE_FOUND;
3210 case PP_EXITREP:
3211 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3213 * We must search along istk->expansion until we hit a
3214 * rep invocation. Then we disable the emitting state(s)
3215 * between exitrep and endrep.
3217 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3218 if (ei->type == EXP_REP) {
3219 break;
3223 if (ei != NULL) {
3225 * Set all invocations leading back to the rep
3226 * invocation to a non-emitting state.
3228 for (eei = istk->expansion; eei != ei; eei = eei->prev) {
3229 eei->emitting = false;
3231 eei->emitting = false;
3232 eei->current = NULL;
3233 eei->def->cur_depth = eei->def->max_depth;
3234 } else {
3235 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
3237 free_tlist(origline);
3238 return DIRECTIVE_FOUND;
3240 case PP_XDEFINE:
3241 case PP_IXDEFINE:
3242 case PP_DEFINE:
3243 case PP_IDEFINE:
3244 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3245 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
3247 tline = tline->next;
3248 skip_white_(tline);
3249 tline = expand_id(tline);
3250 if (!tline || (tline->type != TOK_ID &&
3251 (tline->type != TOK_PREPROC_ID ||
3252 tline->text[1] != '$'))) {
3253 error(ERR_NONFATAL, "`%s' expects a macro identifier",
3254 pp_directives[i]);
3255 free_tlist(origline);
3256 return DIRECTIVE_FOUND;
3259 ctx = get_ctx(tline->text, &mname);
3260 last = tline;
3261 param_start = tline = tline->next;
3262 nparam = 0;
3264 /* Expand the macro definition now for %xdefine and %ixdefine */
3265 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
3266 tline = expand_smacro(tline);
3268 if (tok_is_(tline, "(")) {
3270 * This macro has parameters.
3273 tline = tline->next;
3274 while (1) {
3275 skip_white_(tline);
3276 if (!tline) {
3277 error(ERR_NONFATAL, "parameter identifier expected");
3278 free_tlist(origline);
3279 return DIRECTIVE_FOUND;
3281 if (tline->type != TOK_ID) {
3282 error(ERR_NONFATAL,
3283 "`%s': parameter identifier expected",
3284 tline->text);
3285 free_tlist(origline);
3286 return DIRECTIVE_FOUND;
3289 smacro_set_param_idx(tline, nparam);
3290 nparam++;
3292 tline = tline->next;
3293 skip_white_(tline);
3294 if (tok_is_(tline, ",")) {
3295 tline = tline->next;
3296 } else {
3297 if (!tok_is_(tline, ")")) {
3298 error(ERR_NONFATAL,
3299 "`)' expected to terminate macro template");
3300 free_tlist(origline);
3301 return DIRECTIVE_FOUND;
3303 break;
3306 last = tline;
3307 tline = tline->next;
3309 if (tok_type_(tline, TOK_WHITESPACE))
3310 last = tline, tline = tline->next;
3311 macro_start = NULL;
3312 last->next = NULL;
3313 t = tline;
3314 while (t) {
3315 if (t->type == TOK_ID) {
3316 list_for_each(tt, param_start)
3317 if (is_smacro_param(tt) &&
3318 !strcmp(tt->text, t->text))
3319 t->type = tt->type;
3321 tt = t->next;
3322 t->next = macro_start;
3323 macro_start = t;
3324 t = tt;
3327 * Good. We now have a macro name, a parameter count, and a
3328 * token list (in reverse order) for an expansion. We ought
3329 * to be OK just to create an SMacro, store it, and let
3330 * free_tlist have the rest of the line (which we have
3331 * carefully re-terminated after chopping off the expansion
3332 * from the end).
3334 define_smacro(ctx, mname, casesense, nparam, macro_start);
3335 free_tlist(origline);
3336 return DIRECTIVE_FOUND;
3338 case PP_UNDEF:
3339 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3340 tline = tline->next;
3341 skip_white_(tline);
3342 tline = expand_id(tline);
3343 if (!tline || (tline->type != TOK_ID &&
3344 (tline->type != TOK_PREPROC_ID ||
3345 tline->text[1] != '$'))) {
3346 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
3347 free_tlist(origline);
3348 return DIRECTIVE_FOUND;
3350 if (tline->next) {
3351 error(ERR_WARNING|ERR_PASS1,
3352 "trailing garbage after macro name ignored");
3355 /* Find the context that symbol belongs to */
3356 ctx = get_ctx(tline->text, &mname);
3357 undef_smacro(ctx, mname);
3358 free_tlist(origline);
3359 return DIRECTIVE_FOUND;
3361 case PP_DEFSTR:
3362 case PP_IDEFSTR:
3363 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3364 casesense = (i == PP_DEFSTR);
3366 tline = tline->next;
3367 skip_white_(tline);
3368 tline = expand_id(tline);
3369 if (!tline || (tline->type != TOK_ID &&
3370 (tline->type != TOK_PREPROC_ID ||
3371 tline->text[1] != '$'))) {
3372 error(ERR_NONFATAL, "`%s' expects a macro identifier",
3373 pp_directives[i]);
3374 free_tlist(origline);
3375 return DIRECTIVE_FOUND;
3378 ctx = get_ctx(tline->text, &mname);
3379 last = tline;
3380 tline = expand_smacro(tline->next);
3381 last->next = NULL;
3383 while (tok_type_(tline, TOK_WHITESPACE))
3384 tline = delete_Token(tline);
3386 p = detoken(tline, false);
3387 macro_start = nasm_zalloc(sizeof(*macro_start));
3388 macro_start->text = nasm_quote(p, strlen(p));
3389 macro_start->type = TOK_STRING;
3390 nasm_free(p);
3393 * We now have a macro name, an implicit parameter count of
3394 * zero, and a string token to use as an expansion. Create
3395 * and store an SMacro.
3397 define_smacro(ctx, mname, casesense, 0, macro_start);
3398 free_tlist(origline);
3399 return DIRECTIVE_FOUND;
3401 case PP_DEFTOK:
3402 case PP_IDEFTOK:
3403 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3404 casesense = (i == PP_DEFTOK);
3406 tline = tline->next;
3407 skip_white_(tline);
3408 tline = expand_id(tline);
3409 if (!tline || (tline->type != TOK_ID &&
3410 (tline->type != TOK_PREPROC_ID ||
3411 tline->text[1] != '$'))) {
3412 error(ERR_NONFATAL,
3413 "`%s' expects a macro identifier as first parameter",
3414 pp_directives[i]);
3415 free_tlist(origline);
3416 return DIRECTIVE_FOUND;
3418 ctx = get_ctx(tline->text, &mname);
3419 last = tline;
3420 tline = expand_smacro(tline->next);
3421 last->next = NULL;
3423 t = tline;
3424 while (tok_type_(t, TOK_WHITESPACE))
3425 t = t->next;
3426 /* t should now point to the string */
3427 if (!tok_type_(t, TOK_STRING)) {
3428 error(ERR_NONFATAL,
3429 "`%s` requires string as second parameter",
3430 pp_directives[i]);
3431 free_tlist(tline);
3432 free_tlist(origline);
3433 return DIRECTIVE_FOUND;
3437 * Convert the string to a token stream. Note that smacros
3438 * are stored with the token stream reversed, so we have to
3439 * reverse the output of tokenize().
3441 nasm_unquote_cstr(t->text, i);
3442 macro_start = reverse_tokens(tokenize(t->text));
3445 * We now have a macro name, an implicit parameter count of
3446 * zero, and a numeric token to use as an expansion. Create
3447 * and store an SMacro.
3449 define_smacro(ctx, mname, casesense, 0, macro_start);
3450 free_tlist(tline);
3451 free_tlist(origline);
3452 return DIRECTIVE_FOUND;
3454 case PP_PATHSEARCH:
3455 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3457 FILE *fp;
3458 StrList *xsl = NULL;
3459 StrList **xst = &xsl;
3461 casesense = true;
3463 tline = tline->next;
3464 skip_white_(tline);
3465 tline = expand_id(tline);
3466 if (!tline || (tline->type != TOK_ID &&
3467 (tline->type != TOK_PREPROC_ID ||
3468 tline->text[1] != '$'))) {
3469 error(ERR_NONFATAL,
3470 "`%%pathsearch' expects a macro identifier as first parameter");
3471 free_tlist(origline);
3472 return DIRECTIVE_FOUND;
3474 ctx = get_ctx(tline->text, &mname);
3475 last = tline;
3476 tline = expand_smacro(tline->next);
3477 last->next = NULL;
3479 t = tline;
3480 while (tok_type_(t, TOK_WHITESPACE))
3481 t = t->next;
3483 if (!t || (t->type != TOK_STRING &&
3484 t->type != TOK_INTERNAL_STRING)) {
3485 error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
3486 free_tlist(tline);
3487 free_tlist(origline);
3488 return DIRECTIVE_FOUND; /* but we did _something_ */
3490 if (t->next)
3491 error(ERR_WARNING|ERR_PASS1,
3492 "trailing garbage after `%%pathsearch' ignored");
3493 p = t->text;
3494 if (t->type != TOK_INTERNAL_STRING)
3495 nasm_unquote(p, NULL);
3497 fp = inc_fopen(p, &xsl, &xst, true);
3498 if (fp) {
3499 p = xsl->str;
3500 fclose(fp); /* Don't actually care about the file */
3502 macro_start = nasm_zalloc(sizeof(*macro_start));
3503 macro_start->text = nasm_quote(p, strlen(p));
3504 macro_start->type = TOK_STRING;
3505 nasm_free(xsl);
3508 * We now have a macro name, an implicit parameter count of
3509 * zero, and a string token to use as an expansion. Create
3510 * and store an SMacro.
3512 define_smacro(ctx, mname, casesense, 0, macro_start);
3513 free_tlist(tline);
3514 free_tlist(origline);
3515 return DIRECTIVE_FOUND;
3518 case PP_STRLEN:
3519 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3520 casesense = true;
3522 tline = tline->next;
3523 skip_white_(tline);
3524 tline = expand_id(tline);
3525 if (!tline || (tline->type != TOK_ID &&
3526 (tline->type != TOK_PREPROC_ID ||
3527 tline->text[1] != '$'))) {
3528 error(ERR_NONFATAL,
3529 "`%%strlen' expects a macro identifier as first parameter");
3530 free_tlist(origline);
3531 return DIRECTIVE_FOUND;
3533 ctx = get_ctx(tline->text, &mname);
3534 last = tline;
3535 tline = expand_smacro(tline->next);
3536 last->next = NULL;
3538 t = tline;
3539 while (tok_type_(t, TOK_WHITESPACE))
3540 t = t->next;
3541 /* t should now point to the string */
3542 if (!tok_type_(t, TOK_STRING)) {
3543 error(ERR_NONFATAL,
3544 "`%%strlen` requires string as second parameter");
3545 free_tlist(tline);
3546 free_tlist(origline);
3547 return DIRECTIVE_FOUND;
3550 macro_start = nasm_zalloc(sizeof(*macro_start));
3551 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
3554 * We now have a macro name, an implicit parameter count of
3555 * zero, and a numeric token to use as an expansion. Create
3556 * and store an SMacro.
3558 define_smacro(ctx, mname, casesense, 0, macro_start);
3559 free_tlist(tline);
3560 free_tlist(origline);
3561 return DIRECTIVE_FOUND;
3563 case PP_STRCAT:
3564 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3565 casesense = true;
3567 tline = tline->next;
3568 skip_white_(tline);
3569 tline = expand_id(tline);
3570 if (!tline || (tline->type != TOK_ID &&
3571 (tline->type != TOK_PREPROC_ID ||
3572 tline->text[1] != '$'))) {
3573 error(ERR_NONFATAL,
3574 "`%%strcat' expects a macro identifier as first parameter");
3575 free_tlist(origline);
3576 return DIRECTIVE_FOUND;
3578 ctx = get_ctx(tline->text, &mname);
3579 last = tline;
3580 tline = expand_smacro(tline->next);
3581 last->next = NULL;
3583 len = 0;
3584 list_for_each(t, tline) {
3585 switch (t->type) {
3586 case TOK_WHITESPACE:
3587 break;
3588 case TOK_STRING:
3589 len += t->a.len = nasm_unquote(t->text, NULL);
3590 break;
3591 case TOK_OTHER:
3592 if (!strcmp(t->text, ",")) /* permit comma separators */
3593 break;
3594 /* else fall through */
3595 default:
3596 error(ERR_NONFATAL,
3597 "non-string passed to `%%strcat' (%d)", t->type);
3598 free_tlist(tline);
3599 free_tlist(origline);
3600 return DIRECTIVE_FOUND;
3604 p = pp = nasm_malloc(len);
3605 list_for_each(t, tline) {
3606 if (t->type == TOK_STRING) {
3607 memcpy(p, t->text, t->a.len);
3608 p += t->a.len;
3613 * We now have a macro name, an implicit parameter count of
3614 * zero, and a numeric token to use as an expansion. Create
3615 * and store an SMacro.
3617 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
3618 macro_start->text = nasm_quote(pp, len);
3619 nasm_free(pp);
3620 define_smacro(ctx, mname, casesense, 0, macro_start);
3621 free_tlist(tline);
3622 free_tlist(origline);
3623 return DIRECTIVE_FOUND;
3625 case PP_SUBSTR:
3626 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3628 int64_t start, count;
3629 size_t len;
3631 casesense = true;
3633 tline = tline->next;
3634 skip_white_(tline);
3635 tline = expand_id(tline);
3636 if (!tline || (tline->type != TOK_ID &&
3637 (tline->type != TOK_PREPROC_ID ||
3638 tline->text[1] != '$'))) {
3639 error(ERR_NONFATAL,
3640 "`%%substr' expects a macro identifier as first parameter");
3641 free_tlist(origline);
3642 return DIRECTIVE_FOUND;
3644 ctx = get_ctx(tline->text, &mname);
3645 last = tline;
3646 tline = expand_smacro(tline->next);
3647 last->next = NULL;
3649 if (tline) /* skip expanded id */
3650 t = tline->next;
3651 while (tok_type_(t, TOK_WHITESPACE))
3652 t = t->next;
3654 /* t should now point to the string */
3655 if (!tok_type_(t, TOK_STRING)) {
3656 error(ERR_NONFATAL,
3657 "`%%substr` requires string as second parameter");
3658 free_tlist(tline);
3659 free_tlist(origline);
3660 return DIRECTIVE_FOUND;
3663 tt = t->next;
3664 tptr = &tt;
3665 tokval.t_type = TOKEN_INVALID;
3666 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3667 pass, error, NULL);
3668 if (!evalresult) {
3669 free_tlist(tline);
3670 free_tlist(origline);
3671 return DIRECTIVE_FOUND;
3672 } else if (!is_simple(evalresult)) {
3673 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3674 free_tlist(tline);
3675 free_tlist(origline);
3676 return DIRECTIVE_FOUND;
3678 start = evalresult->value - 1;
3680 while (tok_type_(tt, TOK_WHITESPACE))
3681 tt = tt->next;
3682 if (!tt) {
3683 count = 1; /* Backwards compatibility: one character */
3684 } else {
3685 tokval.t_type = TOKEN_INVALID;
3686 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3687 pass, error, NULL);
3688 if (!evalresult) {
3689 free_tlist(tline);
3690 free_tlist(origline);
3691 return DIRECTIVE_FOUND;
3692 } else if (!is_simple(evalresult)) {
3693 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3694 free_tlist(tline);
3695 free_tlist(origline);
3696 return DIRECTIVE_FOUND;
3698 count = evalresult->value;
3701 len = nasm_unquote(t->text, NULL);
3702 /* make start and count being in range */
3703 if (start < 0)
3704 start = 0;
3705 if (count < 0)
3706 count = len + count + 1 - start;
3707 if (start + count > (int64_t)len)
3708 count = len - start;
3709 if (!len || count < 0 || start >=(int64_t)len)
3710 start = -1, count = 0; /* empty string */
3712 macro_start = nasm_zalloc(sizeof(*macro_start));
3713 macro_start->text = nasm_quote((start < 0) ? "" : t->text + start, count);
3714 macro_start->type = TOK_STRING;
3717 * We now have a macro name, an implicit parameter count of
3718 * zero, and a numeric token to use as an expansion. Create
3719 * and store an SMacro.
3721 define_smacro(ctx, mname, casesense, 0, macro_start);
3722 free_tlist(tline);
3723 free_tlist(origline);
3724 return DIRECTIVE_FOUND;
3727 case PP_ASSIGN:
3728 case PP_IASSIGN:
3729 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3730 casesense = (i == PP_ASSIGN);
3732 tline = tline->next;
3733 skip_white_(tline);
3734 tline = expand_id(tline);
3735 if (!tline || (tline->type != TOK_ID &&
3736 (tline->type != TOK_PREPROC_ID ||
3737 tline->text[1] != '$'))) {
3738 error(ERR_NONFATAL,
3739 "`%%%sassign' expects a macro identifier",
3740 (i == PP_IASSIGN ? "i" : ""));
3741 free_tlist(origline);
3742 return DIRECTIVE_FOUND;
3744 ctx = get_ctx(tline->text, &mname);
3745 last = tline;
3746 tline = expand_smacro(tline->next);
3747 last->next = NULL;
3749 t = tline;
3750 tptr = &t;
3751 tokval.t_type = TOKEN_INVALID;
3752 evalresult =
3753 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3754 free_tlist(tline);
3755 if (!evalresult) {
3756 free_tlist(origline);
3757 return DIRECTIVE_FOUND;
3760 if (tokval.t_type)
3761 error(ERR_WARNING|ERR_PASS1,
3762 "trailing garbage after expression ignored");
3764 if (!is_simple(evalresult)) {
3765 error(ERR_NONFATAL,
3766 "non-constant value given to `%%%sassign'",
3767 (i == PP_IASSIGN ? "i" : ""));
3768 free_tlist(origline);
3769 return DIRECTIVE_FOUND;
3772 macro_start = nasm_zalloc(sizeof(*macro_start));
3773 make_tok_num(macro_start, reloc_value(evalresult));
3776 * We now have a macro name, an implicit parameter count of
3777 * zero, and a numeric token to use as an expansion. Create
3778 * and store an SMacro.
3780 define_smacro(ctx, mname, casesense, 0, macro_start);
3781 free_tlist(origline);
3782 return DIRECTIVE_FOUND;
3784 case PP_LINE:
3785 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3787 * Syntax is `%line nnn[+mmm] [filename]'
3789 tline = tline->next;
3790 skip_white_(tline);
3791 if (!tok_type_(tline, TOK_NUMBER)) {
3792 error(ERR_NONFATAL, "`%%line' expects line number");
3793 free_tlist(origline);
3794 return DIRECTIVE_FOUND;
3796 k = readnum(tline->text, &err);
3797 m = 1;
3798 tline = tline->next;
3799 if (tok_is_(tline, "+")) {
3800 tline = tline->next;
3801 if (!tok_type_(tline, TOK_NUMBER)) {
3802 error(ERR_NONFATAL, "`%%line' expects line increment");
3803 free_tlist(origline);
3804 return DIRECTIVE_FOUND;
3806 m = readnum(tline->text, &err);
3807 tline = tline->next;
3809 skip_white_(tline);
3810 src_set_linnum(k);
3811 istk->lineinc = m;
3812 if (tline) {
3813 nasm_free(src_set_fname(detoken(tline, false)));
3815 free_tlist(origline);
3816 return DIRECTIVE_FOUND;
3818 case PP_WHILE:
3819 if (defining != NULL) {
3820 if (defining->type == EXP_WHILE) {
3821 defining->def_depth ++;
3823 return NO_DIRECTIVE_FOUND;
3825 l = NULL;
3826 if ((istk->expansion != NULL) &&
3827 (istk->expansion->emitting == false)) {
3828 j = COND_NEVER;
3829 } else {
3830 l = new_Line();
3831 l->first = copy_Token(tline->next);
3832 j = if_condition(tline->next, i);
3833 tline->next = NULL; /* it got freed */
3834 j = (((j < 0) ? COND_NEVER : j) ? COND_IF_TRUE : COND_IF_FALSE);
3836 ed = new_ExpDef(EXP_WHILE);
3837 ed->state = j;
3838 ed->cur_depth = 1;
3839 ed->max_depth = DEADMAN_LIMIT;
3840 ed->ignoring = ((ed->state == COND_IF_TRUE) ? false : true);
3841 if (ed->ignoring == false) {
3842 ed->line = l;
3843 ed->last = l;
3844 } else if (l != NULL) {
3845 delete_Token(l->first);
3846 nasm_free(l);
3847 l = NULL;
3849 ed->prev = defining;
3850 defining = ed;
3851 free_tlist(origline);
3852 return DIRECTIVE_FOUND;
3854 case PP_ENDWHILE:
3855 if (defining != NULL) {
3856 if (defining->type == EXP_WHILE) {
3857 if (defining->def_depth > 0) {
3858 defining->def_depth --;
3859 return NO_DIRECTIVE_FOUND;
3861 } else {
3862 return NO_DIRECTIVE_FOUND;
3865 if (tline->next != NULL) {
3866 error_precond(ERR_WARNING|ERR_PASS1,
3867 "trailing garbage after `%%endwhile' ignored");
3869 if ((defining == NULL) || (defining->type != EXP_WHILE)) {
3870 error(ERR_NONFATAL, "`%%endwhile': no matching `%%while'");
3871 return DIRECTIVE_FOUND;
3873 ed = defining;
3874 defining = ed->prev;
3875 if (ed->ignoring == false) {
3876 ed->prev = expansions;
3877 expansions = ed;
3878 ei = new_ExpInv(EXP_WHILE, ed);
3879 ei->current = ed->line->next;
3880 ei->emitting = true;
3881 ei->prev = istk->expansion;
3882 istk->expansion = ei;
3883 } else {
3884 nasm_free(ed);
3886 free_tlist(origline);
3887 return DIRECTIVE_FOUND;
3889 case PP_EXITWHILE:
3890 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3892 * We must search along istk->expansion until we hit a
3893 * while invocation. Then we disable the emitting state(s)
3894 * between exitwhile and endwhile.
3896 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3897 if (ei->type == EXP_WHILE) {
3898 break;
3902 if (ei != NULL) {
3904 * Set all invocations leading back to the while
3905 * invocation to a non-emitting state.
3907 for (eei = istk->expansion; eei != ei; eei = eei->prev) {
3908 eei->emitting = false;
3910 eei->emitting = false;
3911 eei->current = NULL;
3912 eei->def->cur_depth = eei->def->max_depth;
3913 } else {
3914 error(ERR_NONFATAL, "`%%exitwhile' not within `%%while' block");
3916 free_tlist(origline);
3917 return DIRECTIVE_FOUND;
3919 case PP_COMMENT:
3920 if (defining != NULL) {
3921 if (defining->type == EXP_COMMENT) {
3922 defining->def_depth ++;
3924 return NO_DIRECTIVE_FOUND;
3926 ed = new_ExpDef(EXP_COMMENT);
3927 ed->ignoring = true;
3928 ed->prev = defining;
3929 defining = ed;
3930 free_tlist(origline);
3931 return DIRECTIVE_FOUND;
3933 case PP_ENDCOMMENT:
3934 if (defining != NULL) {
3935 if (defining->type == EXP_COMMENT) {
3936 if (defining->def_depth > 0) {
3937 defining->def_depth --;
3938 return NO_DIRECTIVE_FOUND;
3940 } else {
3941 return NO_DIRECTIVE_FOUND;
3944 if ((defining == NULL) || (defining->type != EXP_COMMENT)) {
3945 error(ERR_NONFATAL, "`%%endcomment': no matching `%%comment'");
3946 return DIRECTIVE_FOUND;
3948 ed = defining;
3949 defining = ed->prev;
3950 nasm_free(ed);
3951 free_tlist(origline);
3952 return DIRECTIVE_FOUND;
3954 case PP_FINAL:
3955 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3956 if (in_final != false) {
3957 error(ERR_FATAL, "`%%final' cannot be used recursively");
3959 tline = tline->next;
3960 skip_white_(tline);
3961 if (tline == NULL) {
3962 error(ERR_NONFATAL, "`%%final' expects at least one parameter");
3963 } else {
3964 l = new_Line();
3965 l->first = copy_Token(tline);
3966 l->next = finals;
3967 finals = l;
3969 free_tlist(origline);
3970 return DIRECTIVE_FOUND;
3972 default:
3973 error(ERR_FATAL,
3974 "preprocessor directive `%s' not yet implemented",
3975 pp_directives[i]);
3976 return DIRECTIVE_FOUND;
3981 * Ensure that a macro parameter contains a condition code and
3982 * nothing else. Return the condition code index if so, or -1
3983 * otherwise.
3985 static int find_cc(Token * t)
3987 Token *tt;
3988 int i, j, k, m;
3990 if (!t)
3991 return -1; /* Probably a %+ without a space */
3993 skip_white_(t);
3994 if (t->type != TOK_ID)
3995 return -1;
3996 tt = t->next;
3997 skip_white_(tt);
3998 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
3999 return -1;
4001 i = -1;
4002 j = ARRAY_SIZE(conditions);
4003 while (j - i > 1) {
4004 k = (j + i) / 2;
4005 m = nasm_stricmp(t->text, conditions[k]);
4006 if (m == 0) {
4007 i = k;
4008 j = -2;
4009 break;
4010 } else if (m < 0) {
4011 j = k;
4012 } else
4013 i = k;
4015 if (j != -2)
4016 return -1;
4017 return i;
4020 static bool paste_tokens(Token **head, const struct tokseq_match *m,
4021 int mnum, bool handle_paste_tokens)
4023 Token **tail, *t, *tt;
4024 Token **paste_head;
4025 bool did_paste = false;
4026 char *tmp;
4027 int i;
4029 /* Now handle token pasting... */
4030 paste_head = NULL;
4031 tail = head;
4032 while ((t = *tail) && (tt = t->next)) {
4033 switch (t->type) {
4034 case TOK_WHITESPACE:
4035 if (tt->type == TOK_WHITESPACE) {
4036 /* Zap adjacent whitespace tokens */
4037 t->next = delete_Token(tt);
4038 } else {
4039 /* Do not advance paste_head here */
4040 tail = &t->next;
4042 break;
4043 case TOK_PASTE: /* %+ */
4044 if (handle_paste_tokens) {
4045 /* Zap %+ and whitespace tokens to the right */
4046 while (t && (t->type == TOK_WHITESPACE ||
4047 t->type == TOK_PASTE))
4048 t = *tail = delete_Token(t);
4049 if (!paste_head || !t)
4050 break; /* Nothing to paste with */
4051 tail = paste_head;
4052 t = *tail;
4053 tt = t->next;
4054 while (tok_type_(tt, TOK_WHITESPACE))
4055 tt = t->next = delete_Token(tt);
4056 if (tt) {
4057 tmp = nasm_strcat(t->text, tt->text);
4058 delete_Token(t);
4059 tt = delete_Token(tt);
4060 t = *tail = tokenize(tmp);
4061 nasm_free(tmp);
4062 while (t->next) {
4063 tail = &t->next;
4064 t = t->next;
4066 t->next = tt; /* Attach the remaining token chain */
4067 did_paste = true;
4069 paste_head = tail;
4070 tail = &t->next;
4071 break;
4073 /* else fall through */
4074 default:
4076 * Concatenation of tokens might look nontrivial
4077 * but in real it's pretty simple -- the caller
4078 * prepares the masks of token types to be concatenated
4079 * and we simply find matched sequences and slip
4080 * them together
4082 for (i = 0; i < mnum; i++) {
4083 if (PP_CONCAT_MASK(t->type) & m[i].mask_head) {
4084 size_t len = 0;
4085 char *tmp, *p;
4087 while (tt && (PP_CONCAT_MASK(tt->type) & m[i].mask_tail)) {
4088 len += strlen(tt->text);
4089 tt = tt->next;
4092 nasm_dump_token(tt);
4095 * Now tt points to the first token after
4096 * the potential paste area...
4098 if (tt != t->next) {
4099 /* We have at least two tokens... */
4100 len += strlen(t->text);
4101 p = tmp = nasm_malloc(len+1);
4102 while (t != tt) {
4103 strcpy(p, t->text);
4104 p = strchr(p, '\0');
4105 t = delete_Token(t);
4107 t = *tail = tokenize(tmp);
4108 nasm_free(tmp);
4109 while (t->next) {
4110 tail = &t->next;
4111 t = t->next;
4113 t->next = tt; /* Attach the remaining token chain */
4114 did_paste = true;
4116 paste_head = tail;
4117 tail = &t->next;
4118 break;
4121 if (i >= mnum) { /* no match */
4122 tail = &t->next;
4123 if (!tok_type_(t->next, TOK_WHITESPACE))
4124 paste_head = tail;
4126 break;
4129 return did_paste;
4133 * expands to a list of tokens from %{x:y}
4135 static Token *expand_mmac_params_range(ExpInv *ei, Token *tline, Token ***last)
4137 Token *t = tline, **tt, *tm, *head;
4138 char *pos;
4139 int fst, lst, j, i;
4141 pos = strchr(tline->text, ':');
4142 nasm_assert(pos);
4144 lst = atoi(pos + 1);
4145 fst = atoi(tline->text + 1);
4148 * only macros params are accounted so
4149 * if someone passes %0 -- we reject such
4150 * value(s)
4152 if (lst == 0 || fst == 0)
4153 goto err;
4155 /* the values should be sane */
4156 if ((fst > (int)ei->nparam || fst < (-(int)ei->nparam)) ||
4157 (lst > (int)ei->nparam || lst < (-(int)ei->nparam)))
4158 goto err;
4160 fst = fst < 0 ? fst + (int)ei->nparam + 1: fst;
4161 lst = lst < 0 ? lst + (int)ei->nparam + 1: lst;
4163 /* counted from zero */
4164 fst--, lst--;
4167 * it will be at least one token
4169 tm = ei->params[(fst + ei->rotate) % ei->nparam];
4170 t = new_Token(NULL, tm->type, tm->text, 0);
4171 head = t, tt = &t->next;
4172 if (fst < lst) {
4173 for (i = fst + 1; i <= lst; i++) {
4174 t = new_Token(NULL, TOK_OTHER, ",", 0);
4175 *tt = t, tt = &t->next;
4176 j = (i + ei->rotate) % ei->nparam;
4177 tm = ei->params[j];
4178 t = new_Token(NULL, tm->type, tm->text, 0);
4179 *tt = t, tt = &t->next;
4181 } else {
4182 for (i = fst - 1; i >= lst; i--) {
4183 t = new_Token(NULL, TOK_OTHER, ",", 0);
4184 *tt = t, tt = &t->next;
4185 j = (i + ei->rotate) % ei->nparam;
4186 tm = ei->params[j];
4187 t = new_Token(NULL, tm->type, tm->text, 0);
4188 *tt = t, tt = &t->next;
4192 *last = tt;
4193 return head;
4195 err:
4196 error(ERR_NONFATAL, "`%%{%s}': macro parameters out of range",
4197 &tline->text[1]);
4198 return tline;
4202 * Expand MMacro-local things: parameter references (%0, %n, %+n,
4203 * %-n) and MMacro-local identifiers (%%foo) as well as
4204 * macro indirection (%[...]) and range (%{..:..}).
4206 static Token *expand_mmac_params(Token * tline)
4208 Token *t, *tt, **tail, *thead;
4209 bool changed = false;
4210 char *pos;
4212 tail = &thead;
4213 thead = NULL;
4215 nasm_dump_stream(tline);
4217 while (tline) {
4218 if (tline->type == TOK_PREPROC_ID &&
4219 (((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) ||
4220 (tline->text[1] >= '0' && tline->text[1] <= '9') ||
4221 tline->text[1] == '%')) {
4222 char *text = NULL;
4223 int type = 0, cc; /* type = 0 to placate optimisers */
4224 char tmpbuf[30];
4225 unsigned int n;
4226 int i;
4227 ExpInv *ei;
4229 t = tline;
4230 tline = tline->next;
4232 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
4233 if (ei->type == EXP_MMACRO) {
4234 break;
4237 if (ei == NULL) {
4238 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
4239 } else {
4240 pos = strchr(t->text, ':');
4241 if (!pos) {
4242 switch (t->text[1]) {
4244 * We have to make a substitution of one of the
4245 * forms %1, %-1, %+1, %%foo, %0.
4247 case '0':
4248 if ((strlen(t->text) > 2) && (t->text[2] == '0')) {
4249 type = TOK_ID;
4250 text = nasm_strdup(ei->label_text);
4251 } else {
4252 type = TOK_NUMBER;
4253 snprintf(tmpbuf, sizeof(tmpbuf), "%d", ei->nparam);
4254 text = nasm_strdup(tmpbuf);
4256 break;
4257 case '%':
4258 type = TOK_ID;
4259 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
4260 ei->unique);
4261 text = nasm_strcat(tmpbuf, t->text + 2);
4262 break;
4263 case '-':
4264 n = atoi(t->text + 2) - 1;
4265 if (n >= ei->nparam)
4266 tt = NULL;
4267 else {
4268 if (ei->nparam > 1)
4269 n = (n + ei->rotate) % ei->nparam;
4270 tt = ei->params[n];
4272 cc = find_cc(tt);
4273 if (cc == -1) {
4274 error(ERR_NONFATAL,
4275 "macro parameter %d is not a condition code",
4276 n + 1);
4277 text = NULL;
4278 } else {
4279 type = TOK_ID;
4280 if (inverse_ccs[cc] == -1) {
4281 error(ERR_NONFATAL,
4282 "condition code `%s' is not invertible",
4283 conditions[cc]);
4284 text = NULL;
4285 } else
4286 text = nasm_strdup(conditions[inverse_ccs[cc]]);
4288 break;
4289 case '+':
4290 n = atoi(t->text + 2) - 1;
4291 if (n >= ei->nparam)
4292 tt = NULL;
4293 else {
4294 if (ei->nparam > 1)
4295 n = (n + ei->rotate) % ei->nparam;
4296 tt = ei->params[n];
4298 cc = find_cc(tt);
4299 if (cc == -1) {
4300 error(ERR_NONFATAL,
4301 "macro parameter %d is not a condition code",
4302 n + 1);
4303 text = NULL;
4304 } else {
4305 type = TOK_ID;
4306 text = nasm_strdup(conditions[cc]);
4308 break;
4309 default:
4310 n = atoi(t->text + 1) - 1;
4311 if (n >= ei->nparam)
4312 tt = NULL;
4313 else {
4314 if (ei->nparam > 1)
4315 n = (n + ei->rotate) % ei->nparam;
4316 tt = ei->params[n];
4318 if (tt) {
4319 for (i = 0; i < ei->paramlen[n]; i++) {
4320 *tail = new_Token(NULL, tt->type, tt->text, 0);
4321 tail = &(*tail)->next;
4322 tt = tt->next;
4325 text = NULL; /* we've done it here */
4326 break;
4328 } else {
4330 * seems we have a parameters range here
4332 Token *head, **last;
4333 head = expand_mmac_params_range(ei, t, &last);
4334 if (head != t) {
4335 *tail = head;
4336 *last = tline;
4337 tline = head;
4338 text = NULL;
4342 if (!text) {
4343 delete_Token(t);
4344 } else {
4345 *tail = t;
4346 tail = &t->next;
4347 t->type = type;
4348 nasm_free(t->text);
4349 t->text = text;
4350 t->a.mac = NULL;
4352 changed = true;
4353 continue;
4354 } else if (tline->type == TOK_INDIRECT) {
4355 t = tline;
4356 tline = tline->next;
4357 tt = tokenize(t->text);
4358 tt = expand_mmac_params(tt);
4359 tt = expand_smacro(tt);
4360 *tail = tt;
4361 while (tt) {
4362 tt->a.mac = NULL; /* Necessary? */
4363 tail = &tt->next;
4364 tt = tt->next;
4366 delete_Token(t);
4367 changed = true;
4368 } else {
4369 t = *tail = tline;
4370 tline = tline->next;
4371 t->a.mac = NULL;
4372 tail = &t->next;
4375 *tail = NULL;
4377 if (changed) {
4378 const struct tokseq_match t[] = {
4380 PP_CONCAT_MASK(TOK_ID) |
4381 PP_CONCAT_MASK(TOK_FLOAT), /* head */
4382 PP_CONCAT_MASK(TOK_ID) |
4383 PP_CONCAT_MASK(TOK_NUMBER) |
4384 PP_CONCAT_MASK(TOK_FLOAT) |
4385 PP_CONCAT_MASK(TOK_OTHER) /* tail */
4388 PP_CONCAT_MASK(TOK_NUMBER), /* head */
4389 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4392 paste_tokens(&thead, t, ARRAY_SIZE(t), false);
4395 nasm_dump_token(thead);
4397 return thead;
4401 * Expand all single-line macro calls made in the given line.
4402 * Return the expanded version of the line. The original is deemed
4403 * to be destroyed in the process. (In reality we'll just move
4404 * Tokens from input to output a lot of the time, rather than
4405 * actually bothering to destroy and replicate.)
4408 static Token *expand_smacro(Token * tline)
4410 Token *t, *tt, *mstart, **tail, *thead;
4411 SMacro *head = NULL, *m;
4412 Token **params;
4413 int *paramsize;
4414 unsigned int nparam, sparam;
4415 int brackets;
4416 Token *org_tline = tline;
4417 Context *ctx;
4418 const char *mname;
4419 int deadman = DEADMAN_LIMIT;
4420 bool expanded;
4423 * Trick: we should avoid changing the start token pointer since it can
4424 * be contained in "next" field of other token. Because of this
4425 * we allocate a copy of first token and work with it; at the end of
4426 * routine we copy it back
4428 if (org_tline) {
4429 tline = new_Token(org_tline->next, org_tline->type,
4430 org_tline->text, 0);
4431 tline->a.mac = org_tline->a.mac;
4432 nasm_free(org_tline->text);
4433 org_tline->text = NULL;
4436 expanded = true; /* Always expand %+ at least once */
4438 again:
4439 thead = NULL;
4440 tail = &thead;
4442 while (tline) { /* main token loop */
4443 if (!--deadman) {
4444 error(ERR_NONFATAL, "interminable macro recursion");
4445 goto err;
4448 if ((mname = tline->text)) {
4449 /* if this token is a local macro, look in local context */
4450 if (tline->type == TOK_ID) {
4451 head = (SMacro *)hash_findix(&smacros, mname);
4452 } else if (tline->type == TOK_PREPROC_ID) {
4453 ctx = get_ctx(mname, &mname);
4454 head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL;
4455 } else
4456 head = NULL;
4459 * We've hit an identifier. As in is_mmacro below, we first
4460 * check whether the identifier is a single-line macro at
4461 * all, then think about checking for parameters if
4462 * necessary.
4464 list_for_each(m, head) {
4465 if (!mstrcmp(m->name, mname, m->casesense))
4466 break;
4468 if (m) {
4469 mstart = tline;
4470 params = NULL;
4471 paramsize = NULL;
4472 if (m->nparam == 0) {
4474 * Simple case: the macro is parameterless. Discard the
4475 * one token that the macro call took, and push the
4476 * expansion back on the to-do stack.
4478 if (!m->expansion) {
4479 if (!strcmp("__FILE__", m->name)) {
4480 int32_t num = 0;
4481 char *file = NULL;
4482 src_get(&num, &file);
4483 tline->text = nasm_quote(file, strlen(file));
4484 tline->type = TOK_STRING;
4485 nasm_free(file);
4486 continue;
4488 if (!strcmp("__LINE__", m->name)) {
4489 nasm_free(tline->text);
4490 make_tok_num(tline, src_get_linnum());
4491 continue;
4493 if (!strcmp("__BITS__", m->name)) {
4494 nasm_free(tline->text);
4495 make_tok_num(tline, globalbits);
4496 continue;
4498 tline = delete_Token(tline);
4499 continue;
4501 } else {
4503 * Complicated case: at least one macro with this name
4504 * exists and takes parameters. We must find the
4505 * parameters in the call, count them, find the SMacro
4506 * that corresponds to that form of the macro call, and
4507 * substitute for the parameters when we expand. What a
4508 * pain.
4510 /*tline = tline->next;
4511 skip_white_(tline); */
4512 do {
4513 t = tline->next;
4514 while (tok_type_(t, TOK_SMAC_END)) {
4515 t->a.mac->in_progress = false;
4516 t->text = NULL;
4517 t = tline->next = delete_Token(t);
4519 tline = t;
4520 } while (tok_type_(tline, TOK_WHITESPACE));
4521 if (!tok_is_(tline, "(")) {
4523 * This macro wasn't called with parameters: ignore
4524 * the call. (Behaviour borrowed from gnu cpp.)
4526 tline = mstart;
4527 m = NULL;
4528 } else {
4529 int paren = 0;
4530 int white = 0;
4531 brackets = 0;
4532 nparam = 0;
4533 sparam = PARAM_DELTA;
4534 params = nasm_malloc(sparam * sizeof(Token *));
4535 params[0] = tline->next;
4536 paramsize = nasm_malloc(sparam * sizeof(int));
4537 paramsize[0] = 0;
4538 while (true) { /* parameter loop */
4540 * For some unusual expansions
4541 * which concatenates function call
4543 t = tline->next;
4544 while (tok_type_(t, TOK_SMAC_END)) {
4545 t->a.mac->in_progress = false;
4546 t->text = NULL;
4547 t = tline->next = delete_Token(t);
4549 tline = t;
4551 if (!tline) {
4552 error(ERR_NONFATAL,
4553 "macro call expects terminating `)'");
4554 break;
4556 if (tline->type == TOK_WHITESPACE
4557 && brackets <= 0) {
4558 if (paramsize[nparam])
4559 white++;
4560 else
4561 params[nparam] = tline->next;
4562 continue; /* parameter loop */
4564 if (tline->type == TOK_OTHER
4565 && tline->text[1] == 0) {
4566 char ch = tline->text[0];
4567 if (ch == ',' && !paren && brackets <= 0) {
4568 if (++nparam >= sparam) {
4569 sparam += PARAM_DELTA;
4570 params = nasm_realloc(params,
4571 sparam * sizeof(Token *));
4572 paramsize = nasm_realloc(paramsize,
4573 sparam * sizeof(int));
4575 params[nparam] = tline->next;
4576 paramsize[nparam] = 0;
4577 white = 0;
4578 continue; /* parameter loop */
4580 if (ch == '{' &&
4581 (brackets > 0 || (brackets == 0 &&
4582 !paramsize[nparam])))
4584 if (!(brackets++)) {
4585 params[nparam] = tline->next;
4586 continue; /* parameter loop */
4589 if (ch == '}' && brackets > 0)
4590 if (--brackets == 0) {
4591 brackets = -1;
4592 continue; /* parameter loop */
4594 if (ch == '(' && !brackets)
4595 paren++;
4596 if (ch == ')' && brackets <= 0)
4597 if (--paren < 0)
4598 break;
4600 if (brackets < 0) {
4601 brackets = 0;
4602 error(ERR_NONFATAL, "braces do not "
4603 "enclose all of macro parameter");
4605 paramsize[nparam] += white + 1;
4606 white = 0;
4607 } /* parameter loop */
4608 nparam++;
4609 while (m && (m->nparam != nparam ||
4610 mstrcmp(m->name, mname,
4611 m->casesense)))
4612 m = m->next;
4613 if (!m)
4614 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
4615 "macro `%s' exists, "
4616 "but not taking %d parameters",
4617 mstart->text, nparam);
4620 if (m && m->in_progress)
4621 m = NULL;
4622 if (!m) { /* in progess or didn't find '(' or wrong nparam */
4624 * Design question: should we handle !tline, which
4625 * indicates missing ')' here, or expand those
4626 * macros anyway, which requires the (t) test a few
4627 * lines down?
4629 nasm_free(params);
4630 nasm_free(paramsize);
4631 tline = mstart;
4632 } else {
4634 * Expand the macro: we are placed on the last token of the
4635 * call, so that we can easily split the call from the
4636 * following tokens. We also start by pushing an SMAC_END
4637 * token for the cycle removal.
4639 t = tline;
4640 if (t) {
4641 tline = t->next;
4642 t->next = NULL;
4644 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
4645 tt->a.mac = m;
4646 m->in_progress = true;
4647 tline = tt;
4648 list_for_each(t, m->expansion) {
4649 if (is_smacro_param(t)) {
4650 Token *pcopy = tline, **ptail = &pcopy;
4651 Token *ttt;
4652 int i, idx;
4654 idx = smacro_get_param_idx(t);
4655 ttt = params[idx];
4658 * We need smacro paramters appended.
4660 for (i = paramsize[idx]; i > 0; i--) {
4661 *ptail = new_Token(tline, ttt->type, ttt->text, 0);
4662 ptail = &(*ptail)->next;
4663 ttt = ttt->next;
4666 tline = pcopy;
4667 } else if (t->type == TOK_PREPROC_Q) {
4668 tt = new_Token(tline, TOK_ID, mname, 0);
4669 tline = tt;
4670 } else if (t->type == TOK_PREPROC_QQ) {
4671 tt = new_Token(tline, TOK_ID, m->name, 0);
4672 tline = tt;
4673 } else {
4674 tt = new_Token(tline, t->type, t->text, 0);
4675 tline = tt;
4680 * Having done that, get rid of the macro call, and clean
4681 * up the parameters.
4683 nasm_free(params);
4684 nasm_free(paramsize);
4685 free_tlist(mstart);
4686 expanded = true;
4687 continue; /* main token loop */
4692 if (tline->type == TOK_SMAC_END) {
4693 tline->a.mac->in_progress = false;
4694 tline = delete_Token(tline);
4695 } else {
4696 t = *tail = tline;
4697 tline = tline->next;
4698 t->a.mac = NULL;
4699 t->next = NULL;
4700 tail = &t->next;
4705 * Now scan the entire line and look for successive TOK_IDs that resulted
4706 * after expansion (they can't be produced by tokenize()). The successive
4707 * TOK_IDs should be concatenated.
4708 * Also we look for %+ tokens and concatenate the tokens before and after
4709 * them (without white spaces in between).
4711 if (expanded) {
4712 const struct tokseq_match t[] = {
4714 PP_CONCAT_MASK(TOK_ID) |
4715 PP_CONCAT_MASK(TOK_PREPROC_ID), /* head */
4716 PP_CONCAT_MASK(TOK_ID) |
4717 PP_CONCAT_MASK(TOK_PREPROC_ID) |
4718 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4721 if (paste_tokens(&thead, t, ARRAY_SIZE(t), true)) {
4723 * If we concatenated something, *and* we had previously expanded
4724 * an actual macro, scan the lines again for macros...
4726 tline = thead;
4727 expanded = false;
4728 goto again;
4732 err:
4733 if (org_tline) {
4734 if (thead) {
4735 *org_tline = *thead;
4736 /* since we just gave text to org_line, don't free it */
4737 thead->text = NULL;
4738 delete_Token(thead);
4739 } else {
4740 /* the expression expanded to empty line;
4741 we can't return NULL for some reasons
4742 we just set the line to a single WHITESPACE token. */
4743 memset(org_tline, 0, sizeof(*org_tline));
4744 org_tline->text = NULL;
4745 org_tline->type = TOK_WHITESPACE;
4747 thead = org_tline;
4750 return thead;
4754 * Similar to expand_smacro but used exclusively with macro identifiers
4755 * right before they are fetched in. The reason is that there can be
4756 * identifiers consisting of several subparts. We consider that if there
4757 * are more than one element forming the name, user wants a expansion,
4758 * otherwise it will be left as-is. Example:
4760 * %define %$abc cde
4762 * the identifier %$abc will be left as-is so that the handler for %define
4763 * will suck it and define the corresponding value. Other case:
4765 * %define _%$abc cde
4767 * In this case user wants name to be expanded *before* %define starts
4768 * working, so we'll expand %$abc into something (if it has a value;
4769 * otherwise it will be left as-is) then concatenate all successive
4770 * PP_IDs into one.
4772 static Token *expand_id(Token * tline)
4774 Token *cur, *oldnext = NULL;
4776 if (!tline || !tline->next)
4777 return tline;
4779 cur = tline;
4780 while (cur->next &&
4781 (cur->next->type == TOK_ID ||
4782 cur->next->type == TOK_PREPROC_ID ||
4783 cur->next->type == TOK_NUMBER))
4784 cur = cur->next;
4786 /* If identifier consists of just one token, don't expand */
4787 if (cur == tline)
4788 return tline;
4790 if (cur) {
4791 oldnext = cur->next; /* Detach the tail past identifier */
4792 cur->next = NULL; /* so that expand_smacro stops here */
4795 tline = expand_smacro(tline);
4797 if (cur) {
4798 /* expand_smacro possibly changhed tline; re-scan for EOL */
4799 cur = tline;
4800 while (cur && cur->next)
4801 cur = cur->next;
4802 if (cur)
4803 cur->next = oldnext;
4806 return tline;
4810 * Determine whether the given line constitutes a multi-line macro
4811 * call, and return the ExpDef structure called if so. Doesn't have
4812 * to check for an initial label - that's taken care of in
4813 * expand_mmacro - but must check numbers of parameters. Guaranteed
4814 * to be called with tline->type == TOK_ID, so the putative macro
4815 * name is easy to find.
4817 static ExpDef *is_mmacro(Token * tline, Token *** params_array)
4819 ExpDef *head, *ed;
4820 Token **params;
4821 int nparam;
4823 head = (ExpDef *) hash_findix(&expdefs, tline->text);
4826 * Efficiency: first we see if any macro exists with the given
4827 * name. If not, we can return NULL immediately. _Then_ we
4828 * count the parameters, and then we look further along the
4829 * list if necessary to find the proper ExpDef.
4831 list_for_each(ed, head) {
4832 if (!mstrcmp(ed->name, tline->text, ed->casesense))
4833 break;
4835 if (!ed)
4836 return NULL;
4839 * OK, we have a potential macro. Count and demarcate the
4840 * parameters.
4842 count_mmac_params(tline->next, &nparam, &params);
4845 * So we know how many parameters we've got. Find the ExpDef
4846 * structure that handles this number.
4848 while (ed) {
4849 if (ed->nparam_min <= nparam
4850 && (ed->plus || nparam <= ed->nparam_max)) {
4852 * It's right, and we can use it. Add its default
4853 * parameters to the end of our list if necessary.
4855 if (ed->defaults && nparam < ed->nparam_min + ed->ndefs) {
4856 params =
4857 nasm_realloc(params,
4858 ((ed->nparam_min + ed->ndefs +
4859 1) * sizeof(*params)));
4860 while (nparam < ed->nparam_min + ed->ndefs) {
4861 params[nparam] = ed->defaults[nparam - ed->nparam_min];
4862 nparam++;
4866 * If we've gone over the maximum parameter count (and
4867 * we're in Plus mode), ignore parameters beyond
4868 * nparam_max.
4870 if (ed->plus && nparam > ed->nparam_max)
4871 nparam = ed->nparam_max;
4873 * Then terminate the parameter list, and leave.
4875 if (!params) { /* need this special case */
4876 params = nasm_malloc(sizeof(*params));
4877 nparam = 0;
4879 params[nparam] = NULL;
4880 *params_array = params;
4881 return ed;
4884 * This one wasn't right: look for the next one with the
4885 * same name.
4887 list_for_each(ed, ed->next) {
4888 if (!mstrcmp(ed->name, tline->text, ed->casesense))
4889 break;
4894 * After all that, we didn't find one with the right number of
4895 * parameters. Issue a warning, and fail to expand the macro.
4897 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
4898 "macro `%s' exists, but not taking %d parameters",
4899 tline->text, nparam);
4900 nasm_free(params);
4901 return NULL;
4905 * Expand the multi-line macro call made by the given line, if
4906 * there is one to be expanded. If there is, push the expansion on
4907 * istk->expansion and return true. Otherwise return false.
4909 static bool expand_mmacro(Token * tline)
4911 Token *label = NULL;
4912 int dont_prepend = 0;
4913 Token **params, *t;
4914 Line *l = NULL;
4915 ExpDef *ed;
4916 ExpInv *ei;
4917 int i, nparam, *paramlen;
4918 const char *mname;
4920 t = tline;
4921 skip_white_(t);
4922 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
4923 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
4924 return false;
4925 ed = is_mmacro(t, &params);
4926 if (ed != NULL) {
4927 mname = t->text;
4928 } else {
4929 Token *last;
4931 * We have an id which isn't a macro call. We'll assume
4932 * it might be a label; we'll also check to see if a
4933 * colon follows it. Then, if there's another id after
4934 * that lot, we'll check it again for macro-hood.
4936 label = last = t;
4937 t = t->next;
4938 if (tok_type_(t, TOK_WHITESPACE))
4939 last = t, t = t->next;
4940 if (tok_is_(t, ":")) {
4941 dont_prepend = 1;
4942 last = t, t = t->next;
4943 if (tok_type_(t, TOK_WHITESPACE))
4944 last = t, t = t->next;
4946 if (!tok_type_(t, TOK_ID) || !(ed = is_mmacro(t, &params)))
4947 return false;
4948 last->next = NULL;
4949 mname = t->text;
4950 tline = t;
4954 * Fix up the parameters: this involves stripping leading and
4955 * trailing whitespace, then stripping braces if they are
4956 * present.
4958 for (nparam = 0; params[nparam]; nparam++)
4960 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
4962 for (i = 0; params[i]; i++) {
4963 int brace = false;
4964 int comma = (!ed->plus || i < nparam - 1);
4966 t = params[i];
4967 skip_white_(t);
4968 if (tok_is_(t, "{"))
4969 t = t->next, brace = true, comma = false;
4970 params[i] = t;
4971 paramlen[i] = 0;
4972 while (t) {
4973 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
4974 break; /* ... because we have hit a comma */
4975 if (comma && t->type == TOK_WHITESPACE
4976 && tok_is_(t->next, ","))
4977 break; /* ... or a space then a comma */
4978 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
4979 break; /* ... or a brace */
4980 t = t->next;
4981 paramlen[i]++;
4985 if (ed->cur_depth >= ed->max_depth) {
4986 if (ed->max_depth > 1) {
4987 error(ERR_WARNING,
4988 "reached maximum macro recursion depth of %i for %s",
4989 ed->max_depth,ed->name);
4991 return false;
4992 } else {
4993 ed->cur_depth ++;
4997 * OK, we have found a ExpDef structure representing a
4998 * previously defined mmacro. Create an expansion invocation
4999 * and point it back to the expansion definition. Substitution of
5000 * parameter tokens and macro-local tokens doesn't get done
5001 * until the single-line macro substitution process; this is
5002 * because delaying them allows us to change the semantics
5003 * later through %rotate.
5005 ei = new_ExpInv(EXP_MMACRO, ed);
5006 ei->name = nasm_strdup(mname);
5007 //ei->label = label;
5008 //ei->label_text = detoken(label, false);
5009 ei->current = ed->line;
5010 ei->emitting = true;
5011 //ei->iline = tline;
5012 ei->params = params;
5013 ei->nparam = nparam;
5014 ei->rotate = 0;
5015 ei->paramlen = paramlen;
5016 ei->lineno = 0;
5018 ei->prev = istk->expansion;
5019 istk->expansion = ei;
5022 * Special case: detect %00 on first invocation; if found,
5023 * avoid emitting any labels that precede the mmacro call.
5024 * ed->prepend is set to -1 when %00 is detected, else 1.
5026 if (ed->prepend == 0) {
5027 for (l = ed->line; l != NULL; l = l->next) {
5028 for (t = l->first; t != NULL; t = t->next) {
5029 if ((t->type == TOK_PREPROC_ID) &&
5030 (strlen(t->text) == 3) &&
5031 (t->text[1] == '0') && (t->text[2] == '0')) {
5032 dont_prepend = -1;
5033 break;
5036 if (dont_prepend < 0)
5037 break;
5039 ed->prepend = ((dont_prepend < 0) ? -1 : 1);
5043 * If we had a label, push it on as the first line of
5044 * the macro expansion.
5046 if (label != NULL) {
5047 if (ed->prepend < 0) {
5048 ei->label_text = detoken(label, false);
5049 } else {
5050 if (dont_prepend == 0) {
5051 t = label;
5052 while (t->next != NULL) {
5053 t = t->next;
5055 t->next = new_Token(NULL, TOK_OTHER, ":", 0);
5057 l = new_Line();
5058 l->first = copy_Token(label);
5059 l->next = ei->current;
5060 ei->current = l;
5064 list->uplevel(ed->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
5066 istk->mmac_depth++;
5067 return true;
5070 /* The function that actually does the error reporting */
5071 static void verror(int severity, const char *fmt, va_list arg)
5073 char buff[1024];
5075 vsnprintf(buff, sizeof(buff), fmt, arg);
5077 if (istk && istk->mmac_depth > 0) {
5078 ExpInv *ei = istk->expansion;
5079 int lineno = ei->lineno;
5080 while (ei) {
5081 if (ei->type == EXP_MMACRO)
5082 break;
5083 lineno += ei->relno;
5084 ei = ei->prev;
5086 nasm_error(severity, "(%s:%d) %s", ei->def->name,
5087 lineno, buff);
5088 } else {
5089 nasm_error(severity, "%s", buff);
5094 * Since preprocessor always operate only on the line that didn't
5095 * arrived yet, we should always use ERR_OFFBY1.
5097 static void error(int severity, const char *fmt, ...)
5099 va_list arg;
5100 va_start(arg, fmt);
5101 verror(severity, fmt, arg);
5102 va_end(arg);
5106 * Because %else etc are evaluated in the state context
5107 * of the previous branch, errors might get lost with error():
5108 * %if 0 ... %else trailing garbage ... %endif
5109 * So %else etc should report errors with this function.
5111 static void error_precond(int severity, const char *fmt, ...)
5113 va_list arg;
5115 /* Only ignore the error if it's really in a dead branch */
5116 if ((istk != NULL) &&
5117 (istk->expansion != NULL) &&
5118 (istk->expansion->type == EXP_IF) &&
5119 (istk->expansion->def->state == COND_NEVER))
5120 return;
5122 va_start(arg, fmt);
5123 verror(severity, fmt, arg);
5124 va_end(arg);
5127 static void
5128 pp_reset(char *file, int apass, ListGen * listgen, StrList **deplist)
5130 Token *t;
5132 cstk = NULL;
5133 istk = nasm_zalloc(sizeof(Include));
5134 istk->fp = fopen(file, "r");
5135 src_set_fname(nasm_strdup(file));
5136 src_set_linnum(0);
5137 istk->lineinc = 1;
5138 if (!istk->fp)
5139 error(ERR_FATAL|ERR_NOFILE, "unable to open input file `%s'",
5140 file);
5141 defining = NULL;
5142 finals = NULL;
5143 in_final = false;
5144 nested_mac_count = 0;
5145 nested_rep_count = 0;
5146 init_macros();
5147 unique = 0;
5148 if (tasm_compatible_mode)
5149 stdmacpos = nasm_stdmac;
5150 else
5151 stdmacpos = nasm_stdmac_after_tasm;
5152 any_extrastdmac = extrastdmac && *extrastdmac;
5153 do_predef = true;
5154 list = listgen;
5157 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
5158 * The caller, however, will also pass in 3 for preprocess-only so
5159 * we can set __PASS__ accordingly.
5161 pass = apass > 2 ? 2 : apass;
5163 dephead = deptail = deplist;
5164 if (deplist) {
5165 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
5166 sl->next = NULL;
5167 strcpy(sl->str, file);
5168 *deptail = sl;
5169 deptail = &sl->next;
5173 * Define the __PASS__ macro. This is defined here unlike
5174 * all the other builtins, because it is special -- it varies between
5175 * passes.
5177 t = nasm_zalloc(sizeof(*t));
5178 make_tok_num(t, apass);
5179 define_smacro(NULL, "__PASS__", true, 0, t);
5182 static char *pp_getline(void)
5184 char *line;
5185 Token *tline;
5186 ExpDef *ed;
5187 ExpInv *ei;
5188 Line *l;
5189 int j;
5191 while (1) {
5193 * Fetch a tokenized line, either from the expansion
5194 * buffer or from the input file.
5196 tline = NULL;
5198 while (1) { /* until we get a line we can use */
5200 * Fetch a tokenized line from the expansion buffer
5202 if (istk->expansion != NULL) {
5203 ei = istk->expansion;
5204 if (ei->current != NULL) {
5205 if (ei->emitting == false) {
5206 ei->current = NULL;
5207 continue;
5209 l = ei->current;
5210 ei->current = l->next;
5211 ei->lineno++;
5212 tline = copy_Token(l->first);
5213 if (((ei->type == EXP_REP) ||
5214 (ei->type == EXP_MMACRO) ||
5215 (ei->type == EXP_WHILE))
5216 && (ei->def->nolist == false)) {
5217 char *p = detoken(tline, false);
5218 list->line(LIST_MACRO, p);
5219 nasm_free(p);
5221 if (ei->linnum > -1) {
5222 src_set_linnum(src_get_linnum() + 1);
5224 break;
5225 } else if ((ei->type == EXP_REP) &&
5226 (ei->def->cur_depth < ei->def->max_depth)) {
5227 ei->def->cur_depth ++;
5228 ei->current = ei->def->line;
5229 ei->lineno = 0;
5230 continue;
5231 } else if ((ei->type == EXP_WHILE) &&
5232 (ei->def->cur_depth < ei->def->max_depth)) {
5233 ei->current = ei->def->line;
5234 ei->lineno = 0;
5235 tline = copy_Token(ei->current->first);
5236 j = if_condition(tline, PP_WHILE);
5237 tline = NULL;
5238 j = (((j < 0) ? COND_NEVER : j) ? COND_IF_TRUE : COND_IF_FALSE);
5239 if (j == COND_IF_TRUE) {
5240 ei->current = ei->current->next;
5241 ei->def->cur_depth ++;
5242 } else {
5243 ei->emitting = false;
5244 ei->current = NULL;
5245 ei->def->cur_depth = ei->def->max_depth;
5247 continue;
5248 } else {
5249 istk->expansion = ei->prev;
5250 ed = ei->def;
5251 if (ed != NULL) {
5252 if ((ei->emitting == true) &&
5253 (ed->max_depth == DEADMAN_LIMIT) &&
5254 (ed->cur_depth == DEADMAN_LIMIT)
5256 error(ERR_FATAL, "runaway expansion detected, aborting");
5258 if (ed->cur_depth > 0) {
5259 ed->cur_depth --;
5260 } else if (ed->type != EXP_MMACRO) {
5261 expansions = ed->prev;
5262 free_expdef(ed);
5264 if ((ei->type == EXP_REP) ||
5265 (ei->type == EXP_MMACRO) ||
5266 (ei->type == EXP_WHILE)) {
5267 list->downlevel(LIST_MACRO);
5268 if (ei->type == EXP_MMACRO) {
5269 istk->mmac_depth--;
5273 if (ei->linnum > -1) {
5274 src_set_linnum(ei->linnum);
5276 free_expinv(ei);
5277 continue;
5282 * Read in line from input and tokenize
5284 line = read_line();
5285 if (line) { /* from the current input file */
5286 line = prepreproc(line);
5287 tline = tokenize(line);
5288 nasm_free(line);
5289 break;
5293 * The current file has ended; work down the istk
5296 Include *i = istk;
5297 fclose(i->fp);
5298 if (i->expansion != NULL) {
5299 error(ERR_FATAL,
5300 "end of file while still in an expansion");
5302 /* only set line and file name if there's a next node */
5303 if (i->next) {
5304 src_set_linnum(i->lineno);
5305 nasm_free(src_set_fname(nasm_strdup(i->fname)));
5307 if ((i->next == NULL) && (finals != NULL)) {
5308 in_final = true;
5309 ei = new_ExpInv(EXP_FINAL, NULL);
5310 ei->emitting = true;
5311 ei->current = finals;
5312 istk->expansion = ei;
5313 finals = NULL;
5314 continue;
5316 istk = i->next;
5317 list->downlevel(LIST_INCLUDE);
5318 nasm_free(i);
5319 if (istk == NULL) {
5320 if (finals != NULL)
5321 in_final = true;
5322 else
5323 return NULL;
5325 continue;
5329 if (defining == NULL)
5330 tline = expand_mmac_params(tline);
5333 * Check the line to see if it's a preprocessor directive.
5335 if (do_directive(tline) == DIRECTIVE_FOUND) {
5336 continue;
5337 } else if (defining != NULL) {
5339 * We're defining an expansion. We emit nothing at all,
5340 * and just shove the tokenized line on to the definition.
5342 if (defining->ignoring == false) {
5343 Line *l = new_Line();
5344 l->first = tline;
5345 if (defining->line == NULL) {
5346 defining->line = l;
5347 defining->last = l;
5348 } else {
5349 defining->last->next = l;
5350 defining->last = l;
5352 } else {
5353 free_tlist(tline);
5355 defining->linecount++;
5356 continue;
5357 } else if ((istk->expansion != NULL) &&
5358 (istk->expansion->emitting != true)) {
5360 * We're in a non-emitting branch of an expansion.
5361 * Emit nothing at all, not even a blank line: when we
5362 * emerge from the expansion we'll give a line-number
5363 * directive so we keep our place correctly.
5365 free_tlist(tline);
5366 continue;
5367 } else {
5368 tline = expand_smacro(tline);
5369 if (expand_mmacro(tline) != true) {
5371 * De-tokenize the line again, and emit it.
5373 line = detoken(tline, true);
5374 free_tlist(tline);
5375 break;
5376 } else {
5377 continue;
5381 return line;
5384 static void pp_cleanup(int pass)
5386 if (defining != NULL) {
5387 error(ERR_NONFATAL, "end of file while still defining an expansion");
5388 while (defining != NULL) {
5389 ExpDef *ed = defining;
5390 defining = ed->prev;
5391 free_expdef(ed);
5393 defining = NULL;
5395 while (cstk != NULL)
5396 ctx_pop();
5397 free_macros();
5398 while (istk != NULL) {
5399 Include *i = istk;
5400 istk = istk->next;
5401 fclose(i->fp);
5402 nasm_free(i->fname);
5403 while (i->expansion != NULL) {
5404 ExpInv *ei = i->expansion;
5405 i->expansion = ei->prev;
5406 free_expinv(ei);
5408 nasm_free(i);
5410 while (cstk)
5411 ctx_pop();
5412 nasm_free(src_set_fname(NULL));
5413 if (pass == 0) {
5414 IncPath *i;
5415 free_llist(predef);
5416 delete_Blocks();
5417 while ((i = ipath)) {
5418 ipath = i->next;
5419 nasm_free(i->path);
5420 nasm_free(i);
5425 void pp_include_path(char *path)
5427 IncPath *i = nasm_zalloc(sizeof(IncPath));
5429 if (path)
5430 i->path = nasm_strdup(path);
5432 if (ipath) {
5433 IncPath *j = ipath;
5434 while (j->next)
5435 j = j->next;
5436 j->next = i;
5437 } else {
5438 ipath = i;
5442 void pp_pre_include(char *fname)
5444 Token *inc, *space, *name;
5445 Line *l;
5447 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
5448 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
5449 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
5451 l = new_Line();
5452 l->next = predef;
5453 l->first = inc;
5454 predef = l;
5457 void pp_pre_define(char *definition)
5459 Token *def, *space;
5460 Line *l;
5461 char *equals;
5463 equals = strchr(definition, '=');
5464 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5465 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
5466 if (equals)
5467 *equals = ' ';
5468 space->next = tokenize(definition);
5469 if (equals)
5470 *equals = '=';
5472 l = new_Line();
5473 l->next = predef;
5474 l->first = def;
5475 predef = l;
5478 void pp_pre_undefine(char *definition)
5480 Token *def, *space;
5481 Line *l;
5483 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5484 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
5485 space->next = tokenize(definition);
5487 l = new_Line();
5488 l->next = predef;
5489 l->first = def;
5490 predef = l;
5494 * This function is used to assist with "runtime" preprocessor
5495 * directives, e.g. pp_runtime("%define __BITS__ 64");
5497 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
5498 * PASS A VALID STRING TO THIS FUNCTION!!!!!
5501 void pp_runtime(char *definition)
5503 Token *def;
5505 def = tokenize(definition);
5506 if (do_directive(def) == NO_DIRECTIVE_FOUND)
5507 free_tlist(def);
5511 void pp_extra_stdmac(macros_t *macros)
5513 extrastdmac = macros;
5516 static void make_tok_num(Token * tok, int64_t val)
5518 char numbuf[20];
5519 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
5520 tok->text = nasm_strdup(numbuf);
5521 tok->type = TOK_NUMBER;
5524 struct preproc_ops nasmpp = {
5525 pp_reset,
5526 pp_getline,
5527 pp_cleanup