1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2010 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
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
46 * read_line gets raw text from stdmacpos, or predef, or current input file
47 * tokenize converts to tokens
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
84 typedef struct SMacro SMacro
;
85 typedef struct MMacro MMacro
;
86 typedef struct MMacroInvocation MMacroInvocation
;
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.
117 * Store the definition of a multi-line macro. This is also used to
118 * store the interiors of `%rep...%endrep' blocks, which are
119 * effectively self-re-invoking multi-line macros which simply
120 * don't have a name or bother to appear in the hash tables. %rep
121 * blocks are signified by having a NULL `name' field.
123 * In a MMacro describing a `%rep' block, the `in_progress' field
124 * isn't merely boolean, but gives the number of repeats left to
127 * The `next' field is used for storing MMacros in hash tables; the
128 * `next_active' field is for stacking them on istk entries.
130 * When a MMacro is being expanded, `params', `iline', `nparam',
131 * `paramlen', `rotate' and `unique' are local to the invocation.
135 MMacroInvocation
*prev
; /* previous invocation */
137 int nparam_min
, nparam_max
;
139 bool plus
; /* is the last parameter greedy? */
140 bool nolist
; /* is this macro listing-inhibited? */
141 int64_t in_progress
; /* is this macro currently being expanded? */
142 int32_t max_depth
; /* maximum number of recursive expansions allowed */
143 Token
*dlist
; /* All defaults as one list */
144 Token
**defaults
; /* Parameter default pointers */
145 int ndefs
; /* number of default parameters */
149 MMacro
*rep_nest
; /* used for nesting %rep */
150 Token
**params
; /* actual parameters */
151 Token
*iline
; /* invocation line */
152 unsigned int nparam
, rotate
;
155 int lineno
; /* Current line number on expansion */
156 uint64_t condcnt
; /* number of if blocks... */
160 /* Store the definition of a multi-line macro, as defined in a
161 * previous recursive macro expansion.
163 struct MMacroInvocation
{
164 MMacroInvocation
*prev
; /* previous invocation */
165 Token
**params
; /* actual parameters */
166 Token
*iline
; /* invocation line */
167 unsigned int nparam
, rotate
;
175 * The context stack is composed of a linked list of these.
180 struct hash_table localmac
;
185 * This is the internal form which we break input lines up into.
186 * Typically stored in linked lists.
188 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
189 * necessarily used as-is, but is intended to denote the number of
190 * the substituted parameter. So in the definition
192 * %define a(x,y) ( (x) & ~(y) )
194 * the token representing `x' will have its type changed to
195 * TOK_SMAC_PARAM, but the one representing `y' will be
198 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
199 * which doesn't need quotes around it. Used in the pre-include
200 * mechanism as an alternative to trying to find a sensible type of
201 * quote to use on the filename we were passed.
204 TOK_NONE
= 0, TOK_WHITESPACE
, TOK_COMMENT
, TOK_ID
,
205 TOK_PREPROC_ID
, TOK_STRING
,
206 TOK_NUMBER
, TOK_FLOAT
, TOK_SMAC_END
, TOK_OTHER
,
208 TOK_PREPROC_Q
, TOK_PREPROC_QQ
,
210 TOK_INDIRECT
, /* %[...] */
211 TOK_SMAC_PARAM
, /* MUST BE LAST IN THE LIST!!! */
212 TOK_MAX
= INT_MAX
/* Keep compiler from reducing the range */
219 SMacro
*mac
; /* associated macro for TOK_SMAC_END */
220 size_t len
; /* scratch length field */
221 } a
; /* Auxiliary data */
222 enum pp_token_type type
;
226 * Multi-line macro definitions are stored as a linked list of
227 * these, which is essentially a container to allow several linked
230 * Note that in this module, linked lists are treated as stacks
231 * wherever possible. For this reason, Lines are _pushed_ on to the
232 * `expansion' field in MMacro structures, so that the linked list,
233 * if walked, would give the macro lines in reverse order; this
234 * means that we can walk the list when expanding a macro, and thus
235 * push the lines on to the `expansion' field in _istk_ in reverse
236 * order (so that when popped back off they are in the right
237 * order). It may seem cockeyed, and it relies on my design having
238 * an even number of steps in, but it works...
240 * Some of these structures, rather than being actual lines, are
241 * markers delimiting the end of the expansion of a given macro.
242 * This is for use in the cycle-tracking and %rep-handling code.
243 * Such structures have `finishes' non-NULL, and `first' NULL. All
244 * others have `finishes' NULL, but `first' may still be NULL if
254 * To handle an arbitrary level of file inclusion, we maintain a
255 * stack (ie linked list) of these things.
264 MMacro
*mstk
; /* stack of active macros/reps */
268 * Include search path. This is simply a list of strings which get
269 * prepended, in turn, to the name of an include file, in an
270 * attempt to find the file if it's not in the current directory.
278 * Conditional assembly: we maintain a separate stack of these for
279 * each level of file inclusion. (The only reason we keep the
280 * stacks separate is to ensure that a stray `%endif' in a file
281 * included from within the true branch of a `%if' won't terminate
282 * it and cause confusion: instead, rightly, it'll cause an error.)
290 * These states are for use just after %if or %elif: IF_TRUE
291 * means the condition has evaluated to truth so we are
292 * currently emitting, whereas IF_FALSE means we are not
293 * currently emitting but will start doing so if a %else comes
294 * up. In these states, all directives are admissible: %elif,
295 * %else and %endif. (And of course %if.)
297 COND_IF_TRUE
, COND_IF_FALSE
,
299 * These states come up after a %else: ELSE_TRUE means we're
300 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
301 * any %elif or %else will cause an error.
303 COND_ELSE_TRUE
, COND_ELSE_FALSE
,
305 * These states mean that we're not emitting now, and also that
306 * nothing until %endif will be emitted at all. COND_DONE is
307 * used when we've had our moment of emission
308 * and have now started seeing %elifs. COND_NEVER is used when
309 * the condition construct in question is contained within a
310 * non-emitting branch of a larger condition construct,
311 * or if there is an error.
313 COND_DONE
, COND_NEVER
315 #define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
318 * These defines are used as the possible return values for do_directive
320 #define NO_DIRECTIVE_FOUND 0
321 #define DIRECTIVE_FOUND 1
324 * This define sets the upper limit for smacro and recursive mmacro
327 #define DEADMAN_LIMIT (1 << 20)
330 #define REP_LIMIT ((INT64_C(1) << 62))
333 * Condition codes. Note that we use c_ prefix not C_ because C_ is
334 * used in nasm.h for the "real" condition codes. At _this_ level,
335 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
336 * ones, so we need a different enum...
338 static const char * const conditions
[] = {
339 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
340 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
341 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
344 c_A
, c_AE
, c_B
, c_BE
, c_C
, c_CXZ
, c_E
, c_ECXZ
, c_G
, c_GE
, c_L
, c_LE
,
345 c_NA
, c_NAE
, c_NB
, c_NBE
, c_NC
, c_NE
, c_NG
, c_NGE
, c_NL
, c_NLE
, c_NO
,
346 c_NP
, c_NS
, c_NZ
, c_O
, c_P
, c_PE
, c_PO
, c_RCXZ
, c_S
, c_Z
,
349 static const enum pp_conds inverse_ccs
[] = {
350 c_NA
, c_NAE
, c_NB
, c_NBE
, c_NC
, -1, c_NE
, -1, c_NG
, c_NGE
, c_NL
, c_NLE
,
351 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
,
352 c_Z
, c_NO
, c_NP
, c_PO
, c_PE
, -1, c_NS
, c_NZ
358 /* If this is a an IF, ELIF, ELSE or ENDIF keyword */
359 static int is_condition(enum preproc_token arg
)
361 return PP_IS_COND(arg
) || (arg
== PP_ELSE
) || (arg
== PP_ENDIF
);
364 /* For TASM compatibility we need to be able to recognise TASM compatible
365 * conditional compilation directives. Using the NASM pre-processor does
366 * not work, so we look for them specifically from the following list and
367 * then jam in the equivalent NASM directive into the input stream.
371 TM_ARG
, TM_ELIF
, TM_ELSE
, TM_ENDIF
, TM_IF
, TM_IFDEF
, TM_IFDIFI
,
372 TM_IFNDEF
, TM_INCLUDE
, TM_LOCAL
375 static const char * const tasm_directives
[] = {
376 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
377 "ifndef", "include", "local"
380 static int StackSize
= 4;
381 static char *StackPointer
= "ebp";
382 static int ArgOffset
= 8;
383 static int LocalOffset
= 0;
385 static Context
*cstk
;
386 static Include
*istk
;
387 static IncPath
*ipath
= NULL
;
389 static int pass
; /* HACK: pass 0 = generate dependencies only */
390 static StrList
**dephead
, **deptail
; /* Dependency list */
392 static uint64_t unique
; /* unique identifier numbers */
394 static Line
*predef
= NULL
;
395 static bool do_predef
;
397 static ListGen
*list
;
400 * The current set of multi-line macros we have defined.
402 static struct hash_table mmacros
;
405 * The current set of single-line macros we have defined.
407 static struct hash_table smacros
;
410 * The multi-line macro we are currently defining, or the %rep
411 * block we are currently reading, if any.
413 static MMacro
*defining
;
415 static uint64_t nested_mac_count
;
416 static uint64_t nested_rep_count
;
419 * The number of macro parameters to allocate space for at a time.
421 #define PARAM_DELTA 16
424 * The standard macro set: defined in macros.c in the array nasm_stdmac.
425 * This gives our position in the macro set, when we're processing it.
427 static macros_t
*stdmacpos
;
430 * The extra standard macros that come from the object format, if
433 static macros_t
*extrastdmac
= NULL
;
434 static bool any_extrastdmac
;
437 * Tokens are allocated in blocks to improve speed
439 #define TOKEN_BLOCKSIZE 4096
440 static Token
*freeTokens
= NULL
;
446 static Blocks blocks
= { NULL
, NULL
};
449 * Forward declarations.
451 static Token
*expand_mmac_params(Token
* tline
);
452 static Token
*expand_smacro(Token
* tline
);
453 static Token
*expand_id(Token
* tline
);
454 static Context
*get_ctx(const char *name
, const char **namep
,
456 static void make_tok_num(Token
* tok
, int64_t val
);
457 static void error(int severity
, const char *fmt
, ...);
458 static void error_precond(int severity
, const char *fmt
, ...);
459 static void *new_Block(size_t size
);
460 static void delete_Blocks(void);
461 static Token
*new_Token(Token
* next
, enum pp_token_type type
,
462 const char *text
, int txtlen
);
463 static Token
*delete_Token(Token
* t
);
466 * Macros for safe checking of token pointers, avoid *(NULL)
468 #define tok_type_(x,t) ((x) && (x)->type == (t))
469 #define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
470 #define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
471 #define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
474 * nasm_unquote with error if the string contains NUL characters.
475 * If the string contains NUL characters, issue an error and return
476 * the C len, i.e. truncate at the NUL.
478 static size_t nasm_unquote_cstr(char *qstr
, enum preproc_token directive
)
480 size_t len
= nasm_unquote(qstr
, NULL
);
481 size_t clen
= strlen(qstr
);
484 error(ERR_NONFATAL
, "NUL character in `%s' directive",
485 pp_directives
[directive
]);
491 * Handle TASM specific directives, which do not contain a % in
492 * front of them. We do it here because I could not find any other
493 * place to do it for the moment, and it is a hack (ideally it would
494 * be nice to be able to use the NASM pre-processor to do it).
496 static char *check_tasm_directive(char *line
)
498 int32_t i
, j
, k
, m
, len
;
499 char *p
, *q
, *oldline
, oldchar
;
501 p
= nasm_skip_spaces(line
);
503 /* Binary search for the directive name */
505 j
= ARRAY_SIZE(tasm_directives
);
506 q
= nasm_skip_word(p
);
513 m
= nasm_stricmp(p
, tasm_directives
[k
]);
515 /* We have found a directive, so jam a % in front of it
516 * so that NASM will then recognise it as one if it's own.
521 line
= nasm_malloc(len
+ 2);
523 if (k
== TM_IFDIFI
) {
525 * NASM does not recognise IFDIFI, so we convert
526 * it to %if 0. This is not used in NASM
527 * compatible code, but does need to parse for the
528 * TASM macro package.
530 strcpy(line
+ 1, "if 0");
532 memcpy(line
+ 1, p
, len
+ 1);
547 * The pre-preprocessing stage... This function translates line
548 * number indications as they emerge from GNU cpp (`# lineno "file"
549 * flags') into NASM preprocessor line number indications (`%line
552 static char *prepreproc(char *line
)
555 char *fname
, *oldline
;
557 if (line
[0] == '#' && line
[1] == ' ') {
560 lineno
= atoi(fname
);
561 fname
+= strspn(fname
, "0123456789 ");
564 fnlen
= strcspn(fname
, "\"");
565 line
= nasm_malloc(20 + fnlen
);
566 snprintf(line
, 20 + fnlen
, "%%line %d %.*s", lineno
, fnlen
, fname
);
569 if (tasm_compatible_mode
)
570 return check_tasm_directive(line
);
575 * Free a linked list of tokens.
577 static void free_tlist(Token
* list
)
580 list
= delete_Token(list
);
584 * Free a linked list of lines.
586 static void free_llist(Line
* list
)
589 list_for_each_safe(l
, tmp
, list
) {
590 free_tlist(l
->first
);
598 static void free_mmacro(MMacro
* m
)
601 free_tlist(m
->dlist
);
602 nasm_free(m
->defaults
);
603 free_llist(m
->expansion
);
608 * Free all currently defined macros, and free the hash tables
610 static void free_smacro_table(struct hash_table
*smt
)
614 struct hash_tbl_node
*it
= NULL
;
616 while ((s
= hash_iterate(smt
, &it
, &key
)) != NULL
) {
617 nasm_free((void *)key
);
618 list_for_each_safe(s
, tmp
, s
) {
620 free_tlist(s
->expansion
);
627 static void free_mmacro_table(struct hash_table
*mmt
)
631 struct hash_tbl_node
*it
= NULL
;
634 while ((m
= hash_iterate(mmt
, &it
, &key
)) != NULL
) {
635 nasm_free((void *)key
);
636 list_for_each_safe(m
,tmp
, m
)
642 static void free_macros(void)
644 free_smacro_table(&smacros
);
645 free_mmacro_table(&mmacros
);
649 * Initialize the hash tables
651 static void init_macros(void)
653 hash_init(&smacros
, HASH_LARGE
);
654 hash_init(&mmacros
, HASH_LARGE
);
658 * Pop the context stack.
660 static void ctx_pop(void)
665 free_smacro_table(&c
->localmac
);
671 * Search for a key in the hash index; adding it if necessary
672 * (in which case we initialize the data pointer to NULL.)
675 hash_findi_add(struct hash_table
*hash
, const char *str
)
677 struct hash_insert hi
;
681 r
= hash_findi(hash
, str
, &hi
);
685 strx
= nasm_strdup(str
); /* Use a more efficient allocator here? */
686 return hash_add(&hi
, strx
, NULL
);
690 * Like hash_findi, but returns the data element rather than a pointer
691 * to it. Used only when not adding a new element, hence no third
695 hash_findix(struct hash_table
*hash
, const char *str
)
699 p
= hash_findi(hash
, str
, NULL
);
700 return p
? *p
: NULL
;
704 * read line from standart macros set,
705 * if there no more left -- return NULL
707 static char *line_from_stdmac(void)
710 const unsigned char *p
= stdmacpos
;
719 len
+= pp_directives_len
[c
- 0x80] + 1;
724 line
= nasm_malloc(len
+ 1);
726 while ((c
= *stdmacpos
++)) {
728 memcpy(q
, pp_directives
[c
- 0x80], pp_directives_len
[c
- 0x80]);
729 q
+= pp_directives_len
[c
- 0x80];
739 /* This was the last of the standard macro chain... */
741 if (any_extrastdmac
) {
742 stdmacpos
= extrastdmac
;
743 any_extrastdmac
= false;
744 } else if (do_predef
) {
746 Token
*head
, **tail
, *t
;
749 * Nasty hack: here we push the contents of
750 * `predef' on to the top-level expansion stack,
751 * since this is the most convenient way to
752 * implement the pre-include and pre-define
755 list_for_each(pd
, predef
) {
758 list_for_each(t
, pd
->first
) {
759 *tail
= new_Token(NULL
, t
->type
, t
->text
, 0);
760 tail
= &(*tail
)->next
;
763 l
= nasm_malloc(sizeof(Line
));
764 l
->next
= istk
->expansion
;
777 #define BUF_DELTA 512
779 * Read a line from the top file in istk, handling multiple CR/LFs
780 * at the end of the line read, and handling spurious ^Zs. Will
781 * return lines from the standard macro set if this has not already
784 static char *read_line(void)
786 char *buffer
, *p
, *q
;
787 int bufsize
, continued_count
;
790 * standart macros set (predefined) goes first
792 p
= line_from_stdmac();
797 * regular read from a file
800 buffer
= nasm_malloc(BUF_DELTA
);
804 q
= fgets(p
, bufsize
- (p
- buffer
), istk
->fp
);
808 if (p
> buffer
&& p
[-1] == '\n') {
810 * Convert backslash-CRLF line continuation sequences into
811 * nothing at all (for DOS and Windows)
813 if (((p
- 2) > buffer
) && (p
[-3] == '\\') && (p
[-2] == '\r')) {
819 * Also convert backslash-LF line continuation sequences into
820 * nothing at all (for Unix)
822 else if (((p
- 1) > buffer
) && (p
[-2] == '\\')) {
830 if (p
- buffer
> bufsize
- 10) {
831 int32_t offset
= p
- buffer
;
832 bufsize
+= BUF_DELTA
;
833 buffer
= nasm_realloc(buffer
, bufsize
);
834 p
= buffer
+ offset
; /* prevent stale-pointer problems */
838 if (!q
&& p
== buffer
) {
843 src_set_linnum(src_get_linnum() + istk
->lineinc
+
844 (continued_count
* istk
->lineinc
));
847 * Play safe: remove CRs as well as LFs, if any of either are
848 * present at the end of the line.
850 while (--p
>= buffer
&& (*p
== '\n' || *p
== '\r'))
854 * Handle spurious ^Z, which may be inserted into source files
855 * by some file transfer utilities.
857 buffer
[strcspn(buffer
, "\032")] = '\0';
859 list
->line(LIST_READ
, buffer
);
865 * Tokenize a line of text. This is a very simple process since we
866 * don't need to parse the value out of e.g. numeric tokens: we
867 * simply split one string into many.
869 static Token
*tokenize(char *line
)
872 enum pp_token_type type
;
874 Token
*t
, **tail
= &list
;
880 if (*p
== '+' && !nasm_isdigit(p
[1])) {
883 } else if (nasm_isdigit(*p
) ||
884 ((*p
== '-' || *p
== '+') && nasm_isdigit(p
[1]))) {
888 while (nasm_isdigit(*p
));
889 type
= TOK_PREPROC_ID
;
890 } else if (*p
== '{') {
892 while (*p
&& *p
!= '}') {
899 type
= TOK_PREPROC_ID
;
900 } else if (*p
== '[') {
902 line
+= 2; /* Skip the leading %[ */
904 while (lvl
&& (c
= *p
++)) {
916 p
= nasm_skip_string(p
- 1) + 1;
926 error(ERR_NONFATAL
, "unterminated %[ construct");
928 } else if (*p
== '?') {
929 type
= TOK_PREPROC_Q
; /* %? */
932 type
= TOK_PREPROC_QQ
; /* %?? */
935 } else if (*p
== '!') {
936 type
= TOK_PREPROC_ID
;
942 while (isidchar(*p
));
943 } else if (*p
== '\'' || *p
== '\"' || *p
== '`') {
944 p
= nasm_skip_string(p
);
948 error(ERR_NONFATAL
|ERR_PASS1
, "unterminated %! string");
950 /* %! without string or identifier */
951 type
= TOK_OTHER
; /* Legacy behavior... */
953 } else if (isidchar(*p
) ||
954 ((*p
== '!' || *p
== '%' || *p
== '$') &&
959 while (isidchar(*p
));
960 type
= TOK_PREPROC_ID
;
966 } else if (isidstart(*p
) || (*p
== '$' && isidstart(p
[1]))) {
969 while (*p
&& isidchar(*p
))
971 } else if (*p
== '\'' || *p
== '"' || *p
== '`') {
976 p
= nasm_skip_string(p
);
981 error(ERR_WARNING
|ERR_PASS1
, "unterminated string");
982 /* Handling unterminated strings by UNV */
985 } else if (p
[0] == '$' && p
[1] == '$') {
986 type
= TOK_OTHER
; /* TOKEN_BASE */
988 } else if (isnumstart(*p
)) {
990 bool is_float
= false;
1006 if (!is_hex
&& (c
== 'e' || c
== 'E')) {
1008 if (*p
== '+' || *p
== '-') {
1010 * e can only be followed by +/- if it is either a
1011 * prefixed hex number or a floating-point number
1016 } else if (c
== 'H' || c
== 'h' || c
== 'X' || c
== 'x') {
1018 } else if (c
== 'P' || c
== 'p') {
1020 if (*p
== '+' || *p
== '-')
1022 } else if (isnumchar(c
) || c
== '_')
1023 ; /* just advance */
1024 else if (c
== '.') {
1026 * we need to deal with consequences of the legacy
1027 * parser, like "1.nolist" being two tokens
1028 * (TOK_NUMBER, TOK_ID) here; at least give it
1029 * a shot for now. In the future, we probably need
1030 * a flex-based scanner with proper pattern matching
1031 * to do it as well as it can be done. Nothing in
1032 * the world is going to help the person who wants
1033 * 0x123.p16 interpreted as two tokens, though.
1039 if (nasm_isdigit(*r
) || (is_hex
&& nasm_isxdigit(*r
)) ||
1040 (!is_hex
&& (*r
== 'e' || *r
== 'E')) ||
1041 (*r
== 'p' || *r
== 'P')) {
1045 break; /* Terminate the token */
1049 p
--; /* Point to first character beyond number */
1051 if (p
== line
+1 && *line
== '$') {
1052 type
= TOK_OTHER
; /* TOKEN_HERE */
1054 if (has_e
&& !is_hex
) {
1055 /* 1e13 is floating-point, but 1e13h is not */
1059 type
= is_float
? TOK_FLOAT
: TOK_NUMBER
;
1061 } else if (nasm_isspace(*p
)) {
1062 type
= TOK_WHITESPACE
;
1063 p
= nasm_skip_spaces(p
);
1065 * Whitespace just before end-of-line is discarded by
1066 * pretending it's a comment; whitespace just before a
1067 * comment gets lumped into the comment.
1069 if (!*p
|| *p
== ';') {
1074 } else if (*p
== ';') {
1080 * Anything else is an operator of some kind. We check
1081 * for all the double-character operators (>>, <<, //,
1082 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
1083 * else is a single-character operator.
1086 if ((p
[0] == '>' && p
[1] == '>') ||
1087 (p
[0] == '<' && p
[1] == '<') ||
1088 (p
[0] == '/' && p
[1] == '/') ||
1089 (p
[0] == '<' && p
[1] == '=') ||
1090 (p
[0] == '>' && p
[1] == '=') ||
1091 (p
[0] == '=' && p
[1] == '=') ||
1092 (p
[0] == '!' && p
[1] == '=') ||
1093 (p
[0] == '<' && p
[1] == '>') ||
1094 (p
[0] == '&' && p
[1] == '&') ||
1095 (p
[0] == '|' && p
[1] == '|') ||
1096 (p
[0] == '^' && p
[1] == '^')) {
1102 /* Handling unterminated string by UNV */
1105 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1106 t->text[p-line] = *line;
1110 if (type
!= TOK_COMMENT
) {
1111 *tail
= t
= new_Token(NULL
, type
, line
, p
- line
);
1120 * this function allocates a new managed block of memory and
1121 * returns a pointer to the block. The managed blocks are
1122 * deleted only all at once by the delete_Blocks function.
1124 static void *new_Block(size_t size
)
1126 Blocks
*b
= &blocks
;
1128 /* first, get to the end of the linked list */
1131 /* now allocate the requested chunk */
1132 b
->chunk
= nasm_malloc(size
);
1134 /* now allocate a new block for the next request */
1135 b
->next
= nasm_malloc(sizeof(Blocks
));
1136 /* and initialize the contents of the new block */
1137 b
->next
->next
= NULL
;
1138 b
->next
->chunk
= NULL
;
1143 * this function deletes all managed blocks of memory
1145 static void delete_Blocks(void)
1147 Blocks
*a
, *b
= &blocks
;
1150 * keep in mind that the first block, pointed to by blocks
1151 * is a static and not dynamically allocated, so we don't
1156 nasm_free(b
->chunk
);
1165 * this function creates a new Token and passes a pointer to it
1166 * back to the caller. It sets the type and text elements, and
1167 * also the a.mac and next elements to NULL.
1169 static Token
*new_Token(Token
* next
, enum pp_token_type type
,
1170 const char *text
, int txtlen
)
1176 freeTokens
= (Token
*) new_Block(TOKEN_BLOCKSIZE
* sizeof(Token
));
1177 for (i
= 0; i
< TOKEN_BLOCKSIZE
- 1; i
++)
1178 freeTokens
[i
].next
= &freeTokens
[i
+ 1];
1179 freeTokens
[i
].next
= NULL
;
1182 freeTokens
= t
->next
;
1186 if (type
== TOK_WHITESPACE
|| !text
) {
1190 txtlen
= strlen(text
);
1191 t
->text
= nasm_malloc(txtlen
+1);
1192 memcpy(t
->text
, text
, txtlen
);
1193 t
->text
[txtlen
] = '\0';
1198 static Token
*delete_Token(Token
* t
)
1200 Token
*next
= t
->next
;
1202 t
->next
= freeTokens
;
1208 * Convert a line of tokens back into text.
1209 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1210 * will be transformed into ..@ctxnum.xxx
1212 static char *detoken(Token
* tlist
, bool expand_locals
)
1219 list_for_each(t
, tlist
) {
1220 if (t
->type
== TOK_PREPROC_ID
&& t
->text
[1] == '!') {
1225 if (*v
== '\'' || *v
== '\"' || *v
== '`') {
1226 size_t len
= nasm_unquote(v
, NULL
);
1227 size_t clen
= strlen(v
);
1230 error(ERR_NONFATAL
| ERR_PASS1
,
1231 "NUL character in %! string");
1237 char *p
= getenv(v
);
1239 error(ERR_NONFATAL
| ERR_PASS1
,
1240 "nonexistent environment variable `%s'", v
);
1243 t
->text
= nasm_strdup(p
);
1248 /* Expand local macros here and not during preprocessing */
1249 if (expand_locals
&&
1250 t
->type
== TOK_PREPROC_ID
&& t
->text
&&
1251 t
->text
[0] == '%' && t
->text
[1] == '$') {
1254 Context
*ctx
= get_ctx(t
->text
, &q
, false);
1257 snprintf(buffer
, sizeof(buffer
), "..@%"PRIu32
".", ctx
->number
);
1258 p
= nasm_strcat(buffer
, q
);
1263 if (t
->type
== TOK_WHITESPACE
)
1266 len
+= strlen(t
->text
);
1269 p
= line
= nasm_malloc(len
+ 1);
1271 list_for_each(t
, tlist
) {
1272 if (t
->type
== TOK_WHITESPACE
) {
1274 } else if (t
->text
) {
1286 * A scanner, suitable for use by the expression evaluator, which
1287 * operates on a line of Tokens. Expects a pointer to a pointer to
1288 * the first token in the line to be passed in as its private_data
1291 * FIX: This really needs to be unified with stdscan.
1293 static int ppscan(void *private_data
, struct tokenval
*tokval
)
1295 Token
**tlineptr
= private_data
;
1297 char ourcopy
[MAX_KEYWORD
+1], *p
, *r
, *s
;
1301 *tlineptr
= tline
? tline
->next
: NULL
;
1302 } while (tline
&& (tline
->type
== TOK_WHITESPACE
||
1303 tline
->type
== TOK_COMMENT
));
1306 return tokval
->t_type
= TOKEN_EOS
;
1308 tokval
->t_charptr
= tline
->text
;
1310 if (tline
->text
[0] == '$' && !tline
->text
[1])
1311 return tokval
->t_type
= TOKEN_HERE
;
1312 if (tline
->text
[0] == '$' && tline
->text
[1] == '$' && !tline
->text
[2])
1313 return tokval
->t_type
= TOKEN_BASE
;
1315 if (tline
->type
== TOK_ID
) {
1316 p
= tokval
->t_charptr
= tline
->text
;
1318 tokval
->t_charptr
++;
1319 return tokval
->t_type
= TOKEN_ID
;
1322 for (r
= p
, s
= ourcopy
; *r
; r
++) {
1323 if (r
>= p
+MAX_KEYWORD
)
1324 return tokval
->t_type
= TOKEN_ID
; /* Not a keyword */
1325 *s
++ = nasm_tolower(*r
);
1328 /* right, so we have an identifier sitting in temp storage. now,
1329 * is it actually a register or instruction name, or what? */
1330 return nasm_token_hash(ourcopy
, tokval
);
1333 if (tline
->type
== TOK_NUMBER
) {
1335 tokval
->t_integer
= readnum(tline
->text
, &rn_error
);
1336 tokval
->t_charptr
= tline
->text
;
1338 return tokval
->t_type
= TOKEN_ERRNUM
;
1340 return tokval
->t_type
= TOKEN_NUM
;
1343 if (tline
->type
== TOK_FLOAT
) {
1344 return tokval
->t_type
= TOKEN_FLOAT
;
1347 if (tline
->type
== TOK_STRING
) {
1350 bq
= tline
->text
[0];
1351 tokval
->t_charptr
= tline
->text
;
1352 tokval
->t_inttwo
= nasm_unquote(tline
->text
, &ep
);
1354 if (ep
[0] != bq
|| ep
[1] != '\0')
1355 return tokval
->t_type
= TOKEN_ERRSTR
;
1357 return tokval
->t_type
= TOKEN_STR
;
1360 if (tline
->type
== TOK_OTHER
) {
1361 if (!strcmp(tline
->text
, "<<"))
1362 return tokval
->t_type
= TOKEN_SHL
;
1363 if (!strcmp(tline
->text
, ">>"))
1364 return tokval
->t_type
= TOKEN_SHR
;
1365 if (!strcmp(tline
->text
, "//"))
1366 return tokval
->t_type
= TOKEN_SDIV
;
1367 if (!strcmp(tline
->text
, "%%"))
1368 return tokval
->t_type
= TOKEN_SMOD
;
1369 if (!strcmp(tline
->text
, "=="))
1370 return tokval
->t_type
= TOKEN_EQ
;
1371 if (!strcmp(tline
->text
, "<>"))
1372 return tokval
->t_type
= TOKEN_NE
;
1373 if (!strcmp(tline
->text
, "!="))
1374 return tokval
->t_type
= TOKEN_NE
;
1375 if (!strcmp(tline
->text
, "<="))
1376 return tokval
->t_type
= TOKEN_LE
;
1377 if (!strcmp(tline
->text
, ">="))
1378 return tokval
->t_type
= TOKEN_GE
;
1379 if (!strcmp(tline
->text
, "&&"))
1380 return tokval
->t_type
= TOKEN_DBL_AND
;
1381 if (!strcmp(tline
->text
, "^^"))
1382 return tokval
->t_type
= TOKEN_DBL_XOR
;
1383 if (!strcmp(tline
->text
, "||"))
1384 return tokval
->t_type
= TOKEN_DBL_OR
;
1388 * We have no other options: just return the first character of
1391 return tokval
->t_type
= tline
->text
[0];
1395 * Compare a string to the name of an existing macro; this is a
1396 * simple wrapper which calls either strcmp or nasm_stricmp
1397 * depending on the value of the `casesense' parameter.
1399 static int mstrcmp(const char *p
, const char *q
, bool casesense
)
1401 return casesense
? strcmp(p
, q
) : nasm_stricmp(p
, q
);
1405 * Compare a string to the name of an existing macro; this is a
1406 * simple wrapper which calls either strcmp or nasm_stricmp
1407 * depending on the value of the `casesense' parameter.
1409 static int mmemcmp(const char *p
, const char *q
, size_t l
, bool casesense
)
1411 return casesense
? memcmp(p
, q
, l
) : nasm_memicmp(p
, q
, l
);
1415 * Return the Context structure associated with a %$ token. Return
1416 * NULL, having _already_ reported an error condition, if the
1417 * context stack isn't deep enough for the supplied number of $
1419 * If all_contexts == true, contexts that enclose current are
1420 * also scanned for such smacro, until it is found; if not -
1421 * only the context that directly results from the number of $'s
1422 * in variable's name.
1424 * If "namep" is non-NULL, set it to the pointer to the macro name
1425 * tail, i.e. the part beyond %$...
1427 static Context
*get_ctx(const char *name
, const char **namep
,
1437 if (!name
|| name
[0] != '%' || name
[1] != '$')
1441 error(ERR_NONFATAL
, "`%s': context stack is empty", name
);
1448 while (ctx
&& *name
== '$') {
1454 error(ERR_NONFATAL
, "`%s': context stack is only"
1455 " %d level%s deep", name
, i
, (i
== 1 ? "" : "s"));
1466 * NOTE: In 2.10 we will not need lookup in extarnal
1467 * contexts, so this is a gentle way to inform users
1468 * about their source code need to be updated
1471 /* first round -- check the current context */
1472 m
= hash_findix(&ctx
->localmac
, name
);
1474 if (!mstrcmp(m
->name
, name
, m
->casesense
))
1479 /* second round - external contexts */
1480 while ((ctx
= ctx
->next
)) {
1481 /* Search for this smacro in found context */
1482 m
= hash_findix(&ctx
->localmac
, name
);
1484 if (!mstrcmp(m
->name
, name
, m
->casesense
)) {
1485 /* NOTE: deprecated as of 2.10 */
1486 static int once
= 0;
1488 error(ERR_WARNING
, "context-local macro expansion"
1489 " fall-through (automatic searching of outer"
1490 " contexts) will be deprecated starting in"
1491 " NASM 2.10, please see the NASM Manual for"
1492 " more information");
1495 error(ERR_WARNING
, "`%s': context-local macro expansion fall-through", name
);
1506 * Check to see if a file is already in a string list
1508 static bool in_list(const StrList
*list
, const char *str
)
1511 if (!strcmp(list
->str
, str
))
1519 * Open an include file. This routine must always return a valid
1520 * file pointer if it returns - it's responsible for throwing an
1521 * ERR_FATAL and bombing out completely if not. It should also try
1522 * the include path one by one until it finds the file or reaches
1523 * the end of the path.
1525 static FILE *inc_fopen(const char *file
, StrList
**dhead
, StrList
***dtail
,
1530 IncPath
*ip
= ipath
;
1531 int len
= strlen(file
);
1532 size_t prefix_len
= 0;
1536 sl
= nasm_malloc(prefix_len
+len
+1+sizeof sl
->next
);
1537 memcpy(sl
->str
, prefix
, prefix_len
);
1538 memcpy(sl
->str
+prefix_len
, file
, len
+1);
1539 fp
= fopen(sl
->str
, "r");
1540 if (fp
&& dhead
&& !in_list(*dhead
, sl
->str
)) {
1558 prefix_len
= strlen(prefix
);
1560 /* -MG given and file not found */
1561 if (dhead
&& !in_list(*dhead
, file
)) {
1562 sl
= nasm_malloc(len
+1+sizeof sl
->next
);
1564 strcpy(sl
->str
, file
);
1572 error(ERR_FATAL
, "unable to open include file `%s'", file
);
1577 * Determine if we should warn on defining a single-line macro of
1578 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
1579 * return true if _any_ single-line macro of that name is defined.
1580 * Otherwise, will return true if a single-line macro with either
1581 * `nparam' or no parameters is defined.
1583 * If a macro with precisely the right number of parameters is
1584 * defined, or nparam is -1, the address of the definition structure
1585 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
1586 * is NULL, no action will be taken regarding its contents, and no
1589 * Note that this is also called with nparam zero to resolve
1592 * If you already know which context macro belongs to, you can pass
1593 * the context pointer as first parameter; if you won't but name begins
1594 * with %$ the context will be automatically computed. If all_contexts
1595 * is true, macro will be searched in outer contexts as well.
1598 smacro_defined(Context
* ctx
, const char *name
, int nparam
, SMacro
** defn
,
1601 struct hash_table
*smtbl
;
1605 smtbl
= &ctx
->localmac
;
1606 } else if (name
[0] == '%' && name
[1] == '$') {
1608 ctx
= get_ctx(name
, &name
, false);
1610 return false; /* got to return _something_ */
1611 smtbl
= &ctx
->localmac
;
1615 m
= (SMacro
*) hash_findix(smtbl
, name
);
1618 if (!mstrcmp(m
->name
, name
, m
->casesense
&& nocase
) &&
1619 (nparam
<= 0 || m
->nparam
== 0 || nparam
== (int) m
->nparam
)) {
1621 if (nparam
== (int) m
->nparam
|| nparam
== -1)
1635 * Count and mark off the parameters in a multi-line macro call.
1636 * This is called both from within the multi-line macro expansion
1637 * code, and also to mark off the default parameters when provided
1638 * in a %macro definition line.
1640 static void count_mmac_params(Token
* t
, int *nparam
, Token
*** params
)
1642 int paramsize
, brace
;
1644 *nparam
= paramsize
= 0;
1647 /* +1: we need space for the final NULL */
1648 if (*nparam
+1 >= paramsize
) {
1649 paramsize
+= PARAM_DELTA
;
1650 *params
= nasm_realloc(*params
, sizeof(**params
) * paramsize
);
1654 if (tok_is_(t
, "{"))
1656 (*params
)[(*nparam
)++] = t
;
1657 while (tok_isnt_(t
, brace
? "}" : ","))
1659 if (t
) { /* got a comma/brace */
1663 * Now we've found the closing brace, look further
1667 if (tok_isnt_(t
, ",")) {
1669 "braces do not enclose all of macro parameter");
1670 while (tok_isnt_(t
, ","))
1674 t
= t
->next
; /* eat the comma */
1681 * Determine whether one of the various `if' conditions is true or
1684 * We must free the tline we get passed.
1686 static bool if_condition(Token
* tline
, enum preproc_token ct
)
1688 enum pp_conditional i
= PP_COND(ct
);
1690 Token
*t
, *tt
, **tptr
, *origline
;
1691 struct tokenval tokval
;
1693 enum pp_token_type needtype
;
1700 j
= false; /* have we matched yet? */
1705 if (tline
->type
!= TOK_ID
) {
1707 "`%s' expects context identifiers", pp_directives
[ct
]);
1708 free_tlist(origline
);
1711 if (cstk
&& cstk
->name
&& !nasm_stricmp(tline
->text
, cstk
->name
))
1713 tline
= tline
->next
;
1718 j
= false; /* have we matched yet? */
1721 if (!tline
|| (tline
->type
!= TOK_ID
&&
1722 (tline
->type
!= TOK_PREPROC_ID
||
1723 tline
->text
[1] != '$'))) {
1725 "`%s' expects macro identifiers", pp_directives
[ct
]);
1728 if (smacro_defined(NULL
, tline
->text
, 0, NULL
, true))
1730 tline
= tline
->next
;
1735 tline
= expand_smacro(tline
);
1736 j
= false; /* have we matched yet? */
1739 if (!tline
|| (tline
->type
!= TOK_ID
&&
1740 tline
->type
!= TOK_STRING
&&
1741 (tline
->type
!= TOK_PREPROC_ID
||
1742 tline
->text
[1] != '!'))) {
1744 "`%s' expects environment variable names",
1749 if (tline
->type
== TOK_PREPROC_ID
)
1750 p
+= 2; /* Skip leading %! */
1751 if (*p
== '\'' || *p
== '\"' || *p
== '`')
1752 nasm_unquote_cstr(p
, ct
);
1755 tline
= tline
->next
;
1761 tline
= expand_smacro(tline
);
1763 while (tok_isnt_(tt
, ","))
1767 "`%s' expects two comma-separated arguments",
1772 j
= true; /* assume equality unless proved not */
1773 while ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) && tt
) {
1774 if (tt
->type
== TOK_OTHER
&& !strcmp(tt
->text
, ",")) {
1775 error(ERR_NONFATAL
, "`%s': more than one comma on line",
1779 if (t
->type
== TOK_WHITESPACE
) {
1783 if (tt
->type
== TOK_WHITESPACE
) {
1787 if (tt
->type
!= t
->type
) {
1788 j
= false; /* found mismatching tokens */
1791 /* When comparing strings, need to unquote them first */
1792 if (t
->type
== TOK_STRING
) {
1793 size_t l1
= nasm_unquote(t
->text
, NULL
);
1794 size_t l2
= nasm_unquote(tt
->text
, NULL
);
1800 if (mmemcmp(t
->text
, tt
->text
, l1
, i
== PPC_IFIDN
)) {
1804 } else if (mstrcmp(tt
->text
, t
->text
, i
== PPC_IFIDN
) != 0) {
1805 j
= false; /* found mismatching tokens */
1812 if ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) || tt
)
1813 j
= false; /* trailing gunk on one end or other */
1819 MMacro searching
, *mmac
;
1822 tline
= expand_id(tline
);
1823 if (!tok_type_(tline
, TOK_ID
)) {
1825 "`%s' expects a macro name", pp_directives
[ct
]);
1828 searching
.name
= nasm_strdup(tline
->text
);
1829 searching
.casesense
= true;
1830 searching
.plus
= false;
1831 searching
.nolist
= false;
1832 searching
.in_progress
= 0;
1833 searching
.max_depth
= 0;
1834 searching
.rep_nest
= NULL
;
1835 searching
.nparam_min
= 0;
1836 searching
.nparam_max
= INT_MAX
;
1837 tline
= expand_smacro(tline
->next
);
1840 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
1842 "`%s' expects a parameter count or nothing",
1845 searching
.nparam_min
= searching
.nparam_max
=
1846 readnum(tline
->text
, &j
);
1849 "unable to parse parameter count `%s'",
1852 if (tline
&& tok_is_(tline
->next
, "-")) {
1853 tline
= tline
->next
->next
;
1854 if (tok_is_(tline
, "*"))
1855 searching
.nparam_max
= INT_MAX
;
1856 else if (!tok_type_(tline
, TOK_NUMBER
))
1858 "`%s' expects a parameter count after `-'",
1861 searching
.nparam_max
= readnum(tline
->text
, &j
);
1864 "unable to parse parameter count `%s'",
1866 if (searching
.nparam_min
> searching
.nparam_max
)
1868 "minimum parameter count exceeds maximum");
1871 if (tline
&& tok_is_(tline
->next
, "+")) {
1872 tline
= tline
->next
;
1873 searching
.plus
= true;
1875 mmac
= (MMacro
*) hash_findix(&mmacros
, searching
.name
);
1877 if (!strcmp(mmac
->name
, searching
.name
) &&
1878 (mmac
->nparam_min
<= searching
.nparam_max
1880 && (searching
.nparam_min
<= mmac
->nparam_max
1887 if (tline
&& tline
->next
)
1888 error(ERR_WARNING
|ERR_PASS1
,
1889 "trailing garbage after %%ifmacro ignored");
1890 nasm_free(searching
.name
);
1899 needtype
= TOK_NUMBER
;
1902 needtype
= TOK_STRING
;
1906 t
= tline
= expand_smacro(tline
);
1908 while (tok_type_(t
, TOK_WHITESPACE
) ||
1909 (needtype
== TOK_NUMBER
&&
1910 tok_type_(t
, TOK_OTHER
) &&
1911 (t
->text
[0] == '-' || t
->text
[0] == '+') &&
1915 j
= tok_type_(t
, needtype
);
1919 t
= tline
= expand_smacro(tline
);
1920 while (tok_type_(t
, TOK_WHITESPACE
))
1925 t
= t
->next
; /* Skip the actual token */
1926 while (tok_type_(t
, TOK_WHITESPACE
))
1928 j
= !t
; /* Should be nothing left */
1933 t
= tline
= expand_smacro(tline
);
1934 while (tok_type_(t
, TOK_WHITESPACE
))
1937 j
= !t
; /* Should be empty */
1941 t
= tline
= expand_smacro(tline
);
1943 tokval
.t_type
= TOKEN_INVALID
;
1944 evalresult
= evaluate(ppscan
, tptr
, &tokval
,
1945 NULL
, pass
| CRITICAL
, error
, NULL
);
1949 error(ERR_WARNING
|ERR_PASS1
,
1950 "trailing garbage after expression ignored");
1951 if (!is_simple(evalresult
)) {
1953 "non-constant value given to `%s'", pp_directives
[ct
]);
1956 j
= reloc_value(evalresult
) != 0;
1961 "preprocessor directive `%s' not yet implemented",
1966 free_tlist(origline
);
1967 return j
^ PP_NEGATIVE(ct
);
1970 free_tlist(origline
);
1975 * Common code for defining an smacro
1977 static bool define_smacro(Context
*ctx
, const char *mname
, bool casesense
,
1978 int nparam
, Token
*expansion
)
1980 SMacro
*smac
, **smhead
;
1981 struct hash_table
*smtbl
;
1983 if (smacro_defined(ctx
, mname
, nparam
, &smac
, casesense
)) {
1985 error(ERR_WARNING
|ERR_PASS1
,
1986 "single-line macro `%s' defined both with and"
1987 " without parameters", mname
);
1989 * Some instances of the old code considered this a failure,
1990 * some others didn't. What is the right thing to do here?
1992 free_tlist(expansion
);
1993 return false; /* Failure */
1996 * We're redefining, so we have to take over an
1997 * existing SMacro structure. This means freeing
1998 * what was already in it.
2000 nasm_free(smac
->name
);
2001 free_tlist(smac
->expansion
);
2004 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
2005 smhead
= (SMacro
**) hash_findi_add(smtbl
, mname
);
2006 smac
= nasm_malloc(sizeof(SMacro
));
2007 smac
->next
= *smhead
;
2010 smac
->name
= nasm_strdup(mname
);
2011 smac
->casesense
= casesense
;
2012 smac
->nparam
= nparam
;
2013 smac
->expansion
= expansion
;
2014 smac
->in_progress
= false;
2015 return true; /* Success */
2019 * Undefine an smacro
2021 static void undef_smacro(Context
*ctx
, const char *mname
)
2023 SMacro
**smhead
, *s
, **sp
;
2024 struct hash_table
*smtbl
;
2026 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
2027 smhead
= (SMacro
**)hash_findi(smtbl
, mname
, NULL
);
2031 * We now have a macro name... go hunt for it.
2034 while ((s
= *sp
) != NULL
) {
2035 if (!mstrcmp(s
->name
, mname
, s
->casesense
)) {
2038 free_tlist(s
->expansion
);
2048 * Parse a mmacro specification.
2050 static bool parse_mmacro_spec(Token
*tline
, MMacro
*def
, const char *directive
)
2054 tline
= tline
->next
;
2056 tline
= expand_id(tline
);
2057 if (!tok_type_(tline
, TOK_ID
)) {
2058 error(ERR_NONFATAL
, "`%s' expects a macro name", directive
);
2063 def
->name
= nasm_strdup(tline
->text
);
2065 def
->nolist
= false;
2066 def
->in_progress
= 0;
2067 def
->rep_nest
= NULL
;
2068 def
->nparam_min
= 0;
2069 def
->nparam_max
= 0;
2071 tline
= expand_smacro(tline
->next
);
2073 if (!tok_type_(tline
, TOK_NUMBER
)) {
2074 error(ERR_NONFATAL
, "`%s' expects a parameter count", directive
);
2076 def
->nparam_min
= def
->nparam_max
=
2077 readnum(tline
->text
, &err
);
2080 "unable to parse parameter count `%s'", tline
->text
);
2082 if (tline
&& tok_is_(tline
->next
, "-")) {
2083 tline
= tline
->next
->next
;
2084 if (tok_is_(tline
, "*")) {
2085 def
->nparam_max
= INT_MAX
;
2086 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
2088 "`%s' expects a parameter count after `-'", directive
);
2090 def
->nparam_max
= readnum(tline
->text
, &err
);
2092 error(ERR_NONFATAL
, "unable to parse parameter count `%s'",
2095 if (def
->nparam_min
> def
->nparam_max
) {
2096 error(ERR_NONFATAL
, "minimum parameter count exceeds maximum");
2100 if (tline
&& tok_is_(tline
->next
, "+")) {
2101 tline
= tline
->next
;
2104 if (tline
&& tok_type_(tline
->next
, TOK_ID
) &&
2105 !nasm_stricmp(tline
->next
->text
, ".nolist")) {
2106 tline
= tline
->next
;
2111 * Handle default parameters.
2113 if (tline
&& tline
->next
) {
2114 def
->dlist
= tline
->next
;
2116 count_mmac_params(def
->dlist
, &def
->ndefs
, &def
->defaults
);
2119 def
->defaults
= NULL
;
2121 def
->expansion
= NULL
;
2123 if (def
->defaults
&& def
->ndefs
> def
->nparam_max
- def
->nparam_min
&&
2125 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MDP
,
2126 "too many default macro parameters");
2133 * Decode a size directive
2135 static int parse_size(const char *str
) {
2136 static const char *size_names
[] =
2137 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
2138 static const int sizes
[] =
2139 { 0, 1, 4, 16, 8, 10, 2, 32 };
2141 return sizes
[bsii(str
, size_names
, ARRAY_SIZE(size_names
))+1];
2145 * find and process preprocessor directive in passed line
2146 * Find out if a line contains a preprocessor directive, and deal
2149 * If a directive _is_ found, it is the responsibility of this routine
2150 * (and not the caller) to free_tlist() the line.
2152 * @param tline a pointer to the current tokeninzed line linked list
2153 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
2156 static int do_directive(Token
* tline
)
2158 enum preproc_token i
;
2171 MMacro
*mmac
, **mmhead
;
2172 Token
*t
, *tt
, *param_start
, *macro_start
, *last
, **tptr
, *origline
;
2174 struct tokenval tokval
;
2176 MMacro
*tmp_defining
; /* Used when manipulating rep_nest */
2184 if (!tline
|| !tok_type_(tline
, TOK_PREPROC_ID
) ||
2185 (tline
->text
[1] == '%' || tline
->text
[1] == '$'
2186 || tline
->text
[1] == '!'))
2187 return NO_DIRECTIVE_FOUND
;
2189 i
= pp_token_hash(tline
->text
);
2192 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2193 * since they are known to be buggy at moment, we need to fix them
2194 * in future release (2.09-2.10)
2196 if (i
== PP_RMACRO
|| i
== PP_RMACRO
|| i
== PP_EXITMACRO
) {
2197 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2199 return NO_DIRECTIVE_FOUND
;
2203 * If we're in a non-emitting branch of a condition construct,
2204 * or walking to the end of an already terminated %rep block,
2205 * we should ignore all directives except for condition
2208 if (((istk
->conds
&& !emitting(istk
->conds
->state
)) ||
2209 (istk
->mstk
&& !istk
->mstk
->in_progress
)) && !is_condition(i
)) {
2210 return NO_DIRECTIVE_FOUND
;
2214 * If we're defining a macro or reading a %rep block, we should
2215 * ignore all directives except for %macro/%imacro (which nest),
2216 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2217 * If we're in a %rep block, another %rep nests, so should be let through.
2219 if (defining
&& i
!= PP_MACRO
&& i
!= PP_IMACRO
&&
2220 i
!= PP_RMACRO
&& i
!= PP_IRMACRO
&&
2221 i
!= PP_ENDMACRO
&& i
!= PP_ENDM
&&
2222 (defining
->name
|| (i
!= PP_ENDREP
&& i
!= PP_REP
))) {
2223 return NO_DIRECTIVE_FOUND
;
2227 if (i
== PP_MACRO
|| i
== PP_IMACRO
||
2228 i
== PP_RMACRO
|| i
== PP_IRMACRO
) {
2230 return NO_DIRECTIVE_FOUND
;
2231 } else if (nested_mac_count
> 0) {
2232 if (i
== PP_ENDMACRO
) {
2234 return NO_DIRECTIVE_FOUND
;
2237 if (!defining
->name
) {
2240 return NO_DIRECTIVE_FOUND
;
2241 } else if (nested_rep_count
> 0) {
2242 if (i
== PP_ENDREP
) {
2244 return NO_DIRECTIVE_FOUND
;
2252 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2254 return NO_DIRECTIVE_FOUND
; /* didn't get it */
2257 /* Directive to tell NASM what the default stack size is. The
2258 * default is for a 16-bit stack, and this can be overriden with
2261 tline
= tline
->next
;
2262 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2263 tline
= tline
->next
;
2264 if (!tline
|| tline
->type
!= TOK_ID
) {
2265 error(ERR_NONFATAL
, "`%%stacksize' missing size parameter");
2266 free_tlist(origline
);
2267 return DIRECTIVE_FOUND
;
2269 if (nasm_stricmp(tline
->text
, "flat") == 0) {
2270 /* All subsequent ARG directives are for a 32-bit stack */
2272 StackPointer
= "ebp";
2275 } else if (nasm_stricmp(tline
->text
, "flat64") == 0) {
2276 /* All subsequent ARG directives are for a 64-bit stack */
2278 StackPointer
= "rbp";
2281 } else if (nasm_stricmp(tline
->text
, "large") == 0) {
2282 /* All subsequent ARG directives are for a 16-bit stack,
2283 * far function call.
2286 StackPointer
= "bp";
2289 } else if (nasm_stricmp(tline
->text
, "small") == 0) {
2290 /* All subsequent ARG directives are for a 16-bit stack,
2291 * far function call. We don't support near functions.
2294 StackPointer
= "bp";
2298 error(ERR_NONFATAL
, "`%%stacksize' invalid size type");
2299 free_tlist(origline
);
2300 return DIRECTIVE_FOUND
;
2302 free_tlist(origline
);
2303 return DIRECTIVE_FOUND
;
2306 /* TASM like ARG directive to define arguments to functions, in
2307 * the following form:
2309 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2313 char *arg
, directive
[256];
2314 int size
= StackSize
;
2316 /* Find the argument name */
2317 tline
= tline
->next
;
2318 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2319 tline
= tline
->next
;
2320 if (!tline
|| tline
->type
!= TOK_ID
) {
2321 error(ERR_NONFATAL
, "`%%arg' missing argument parameter");
2322 free_tlist(origline
);
2323 return DIRECTIVE_FOUND
;
2327 /* Find the argument size type */
2328 tline
= tline
->next
;
2329 if (!tline
|| tline
->type
!= TOK_OTHER
2330 || tline
->text
[0] != ':') {
2332 "Syntax error processing `%%arg' directive");
2333 free_tlist(origline
);
2334 return DIRECTIVE_FOUND
;
2336 tline
= tline
->next
;
2337 if (!tline
|| tline
->type
!= TOK_ID
) {
2338 error(ERR_NONFATAL
, "`%%arg' missing size type parameter");
2339 free_tlist(origline
);
2340 return DIRECTIVE_FOUND
;
2343 /* Allow macro expansion of type parameter */
2344 tt
= tokenize(tline
->text
);
2345 tt
= expand_smacro(tt
);
2346 size
= parse_size(tt
->text
);
2349 "Invalid size type for `%%arg' missing directive");
2351 free_tlist(origline
);
2352 return DIRECTIVE_FOUND
;
2356 /* Round up to even stack slots */
2357 size
= ALIGN(size
, StackSize
);
2359 /* Now define the macro for the argument */
2360 snprintf(directive
, sizeof(directive
), "%%define %s (%s+%d)",
2361 arg
, StackPointer
, offset
);
2362 do_directive(tokenize(directive
));
2365 /* Move to the next argument in the list */
2366 tline
= tline
->next
;
2367 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2368 tline
= tline
->next
;
2369 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2371 free_tlist(origline
);
2372 return DIRECTIVE_FOUND
;
2375 /* TASM like LOCAL directive to define local variables for a
2376 * function, in the following form:
2378 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2380 * The '= LocalSize' at the end is ignored by NASM, but is
2381 * required by TASM to define the local parameter size (and used
2382 * by the TASM macro package).
2384 offset
= LocalOffset
;
2386 char *local
, directive
[256];
2387 int size
= StackSize
;
2389 /* Find the argument name */
2390 tline
= tline
->next
;
2391 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2392 tline
= tline
->next
;
2393 if (!tline
|| tline
->type
!= TOK_ID
) {
2395 "`%%local' missing argument parameter");
2396 free_tlist(origline
);
2397 return DIRECTIVE_FOUND
;
2399 local
= tline
->text
;
2401 /* Find the argument size type */
2402 tline
= tline
->next
;
2403 if (!tline
|| tline
->type
!= TOK_OTHER
2404 || tline
->text
[0] != ':') {
2406 "Syntax error processing `%%local' directive");
2407 free_tlist(origline
);
2408 return DIRECTIVE_FOUND
;
2410 tline
= tline
->next
;
2411 if (!tline
|| tline
->type
!= TOK_ID
) {
2413 "`%%local' missing size type parameter");
2414 free_tlist(origline
);
2415 return DIRECTIVE_FOUND
;
2418 /* Allow macro expansion of type parameter */
2419 tt
= tokenize(tline
->text
);
2420 tt
= expand_smacro(tt
);
2421 size
= parse_size(tt
->text
);
2424 "Invalid size type for `%%local' missing directive");
2426 free_tlist(origline
);
2427 return DIRECTIVE_FOUND
;
2431 /* Round up to even stack slots */
2432 size
= ALIGN(size
, StackSize
);
2434 offset
+= size
; /* Negative offset, increment before */
2436 /* Now define the macro for the argument */
2437 snprintf(directive
, sizeof(directive
), "%%define %s (%s-%d)",
2438 local
, StackPointer
, offset
);
2439 do_directive(tokenize(directive
));
2441 /* Now define the assign to setup the enter_c macro correctly */
2442 snprintf(directive
, sizeof(directive
),
2443 "%%assign %%$localsize %%$localsize+%d", size
);
2444 do_directive(tokenize(directive
));
2446 /* Move to the next argument in the list */
2447 tline
= tline
->next
;
2448 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2449 tline
= tline
->next
;
2450 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2451 LocalOffset
= offset
;
2452 free_tlist(origline
);
2453 return DIRECTIVE_FOUND
;
2457 error(ERR_WARNING
|ERR_PASS1
,
2458 "trailing garbage after `%%clear' ignored");
2461 free_tlist(origline
);
2462 return DIRECTIVE_FOUND
;
2465 t
= tline
->next
= expand_smacro(tline
->next
);
2467 if (!t
|| (t
->type
!= TOK_STRING
&&
2468 t
->type
!= TOK_INTERNAL_STRING
)) {
2469 error(ERR_NONFATAL
, "`%%depend' expects a file name");
2470 free_tlist(origline
);
2471 return DIRECTIVE_FOUND
; /* but we did _something_ */
2474 error(ERR_WARNING
|ERR_PASS1
,
2475 "trailing garbage after `%%depend' ignored");
2477 if (t
->type
!= TOK_INTERNAL_STRING
)
2478 nasm_unquote_cstr(p
, i
);
2479 if (dephead
&& !in_list(*dephead
, p
)) {
2480 StrList
*sl
= nasm_malloc(strlen(p
)+1+sizeof sl
->next
);
2484 deptail
= &sl
->next
;
2486 free_tlist(origline
);
2487 return DIRECTIVE_FOUND
;
2490 t
= tline
->next
= expand_smacro(tline
->next
);
2493 if (!t
|| (t
->type
!= TOK_STRING
&&
2494 t
->type
!= TOK_INTERNAL_STRING
)) {
2495 error(ERR_NONFATAL
, "`%%include' expects a file name");
2496 free_tlist(origline
);
2497 return DIRECTIVE_FOUND
; /* but we did _something_ */
2500 error(ERR_WARNING
|ERR_PASS1
,
2501 "trailing garbage after `%%include' ignored");
2503 if (t
->type
!= TOK_INTERNAL_STRING
)
2504 nasm_unquote_cstr(p
, i
);
2505 inc
= nasm_malloc(sizeof(Include
));
2508 inc
->fp
= inc_fopen(p
, dephead
, &deptail
, pass
== 0);
2510 /* -MG given but file not found */
2513 inc
->fname
= src_set_fname(nasm_strdup(p
));
2514 inc
->lineno
= src_set_linnum(0);
2516 inc
->expansion
= NULL
;
2519 list
->uplevel(LIST_INCLUDE
);
2521 free_tlist(origline
);
2522 return DIRECTIVE_FOUND
;
2526 static macros_t
*use_pkg
;
2527 const char *pkg_macro
= NULL
;
2529 tline
= tline
->next
;
2531 tline
= expand_id(tline
);
2533 if (!tline
|| (tline
->type
!= TOK_STRING
&&
2534 tline
->type
!= TOK_INTERNAL_STRING
&&
2535 tline
->type
!= TOK_ID
)) {
2536 error(ERR_NONFATAL
, "`%%use' expects a package name");
2537 free_tlist(origline
);
2538 return DIRECTIVE_FOUND
; /* but we did _something_ */
2541 error(ERR_WARNING
|ERR_PASS1
,
2542 "trailing garbage after `%%use' ignored");
2543 if (tline
->type
== TOK_STRING
)
2544 nasm_unquote_cstr(tline
->text
, i
);
2545 use_pkg
= nasm_stdmac_find_package(tline
->text
);
2547 error(ERR_NONFATAL
, "unknown `%%use' package: %s", tline
->text
);
2549 pkg_macro
= (char *)use_pkg
+ 1; /* The first string will be <%define>__USE_*__ */
2550 if (use_pkg
&& ! smacro_defined(NULL
, pkg_macro
, 0, NULL
, true)) {
2551 /* Not already included, go ahead and include it */
2552 stdmacpos
= use_pkg
;
2554 free_tlist(origline
);
2555 return DIRECTIVE_FOUND
;
2560 tline
= tline
->next
;
2562 tline
= expand_id(tline
);
2564 if (!tok_type_(tline
, TOK_ID
)) {
2565 error(ERR_NONFATAL
, "`%s' expects a context identifier",
2567 free_tlist(origline
);
2568 return DIRECTIVE_FOUND
; /* but we did _something_ */
2571 error(ERR_WARNING
|ERR_PASS1
,
2572 "trailing garbage after `%s' ignored",
2574 p
= nasm_strdup(tline
->text
);
2576 p
= NULL
; /* Anonymous */
2580 ctx
= nasm_malloc(sizeof(Context
));
2582 hash_init(&ctx
->localmac
, HASH_SMALL
);
2584 ctx
->number
= unique
++;
2589 error(ERR_NONFATAL
, "`%s': context stack is empty",
2591 } else if (i
== PP_POP
) {
2592 if (p
&& (!cstk
->name
|| nasm_stricmp(p
, cstk
->name
)))
2593 error(ERR_NONFATAL
, "`%%pop' in wrong context: %s, "
2595 cstk
->name
? cstk
->name
: "anonymous", p
);
2600 nasm_free(cstk
->name
);
2606 free_tlist(origline
);
2607 return DIRECTIVE_FOUND
;
2609 severity
= ERR_FATAL
;
2612 severity
= ERR_NONFATAL
;
2615 severity
= ERR_WARNING
|ERR_WARN_USER
;
2620 /* Only error out if this is the final pass */
2621 if (pass
!= 2 && i
!= PP_FATAL
)
2622 return DIRECTIVE_FOUND
;
2624 tline
->next
= expand_smacro(tline
->next
);
2625 tline
= tline
->next
;
2627 t
= tline
? tline
->next
: NULL
;
2629 if (tok_type_(tline
, TOK_STRING
) && !t
) {
2630 /* The line contains only a quoted string */
2632 nasm_unquote(p
, NULL
); /* Ignore NUL character truncation */
2633 error(severity
, "%s", p
);
2635 /* Not a quoted string, or more than a quoted string */
2636 p
= detoken(tline
, false);
2637 error(severity
, "%s", p
);
2640 free_tlist(origline
);
2641 return DIRECTIVE_FOUND
;
2645 if (istk
->conds
&& !emitting(istk
->conds
->state
))
2648 j
= if_condition(tline
->next
, i
);
2649 tline
->next
= NULL
; /* it got freed */
2650 j
= j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2652 cond
= nasm_malloc(sizeof(Cond
));
2653 cond
->next
= istk
->conds
;
2657 istk
->mstk
->condcnt
++;
2658 free_tlist(origline
);
2659 return DIRECTIVE_FOUND
;
2663 error(ERR_FATAL
, "`%s': no matching `%%if'", pp_directives
[i
]);
2664 switch(istk
->conds
->state
) {
2666 istk
->conds
->state
= COND_DONE
;
2673 case COND_ELSE_TRUE
:
2674 case COND_ELSE_FALSE
:
2675 error_precond(ERR_WARNING
|ERR_PASS1
,
2676 "`%%elif' after `%%else' ignored");
2677 istk
->conds
->state
= COND_NEVER
;
2682 * IMPORTANT: In the case of %if, we will already have
2683 * called expand_mmac_params(); however, if we're
2684 * processing an %elif we must have been in a
2685 * non-emitting mode, which would have inhibited
2686 * the normal invocation of expand_mmac_params().
2687 * Therefore, we have to do it explicitly here.
2689 j
= if_condition(expand_mmac_params(tline
->next
), i
);
2690 tline
->next
= NULL
; /* it got freed */
2691 istk
->conds
->state
=
2692 j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2695 free_tlist(origline
);
2696 return DIRECTIVE_FOUND
;
2700 error_precond(ERR_WARNING
|ERR_PASS1
,
2701 "trailing garbage after `%%else' ignored");
2703 error(ERR_FATAL
, "`%%else': no matching `%%if'");
2704 switch(istk
->conds
->state
) {
2707 istk
->conds
->state
= COND_ELSE_FALSE
;
2714 istk
->conds
->state
= COND_ELSE_TRUE
;
2717 case COND_ELSE_TRUE
:
2718 case COND_ELSE_FALSE
:
2719 error_precond(ERR_WARNING
|ERR_PASS1
,
2720 "`%%else' after `%%else' ignored.");
2721 istk
->conds
->state
= COND_NEVER
;
2724 free_tlist(origline
);
2725 return DIRECTIVE_FOUND
;
2729 error_precond(ERR_WARNING
|ERR_PASS1
,
2730 "trailing garbage after `%%endif' ignored");
2732 error(ERR_FATAL
, "`%%endif': no matching `%%if'");
2734 istk
->conds
= cond
->next
;
2737 istk
->mstk
->condcnt
--;
2738 free_tlist(origline
);
2739 return DIRECTIVE_FOUND
;
2746 error(ERR_FATAL
, "`%s': already defining a macro",
2748 return DIRECTIVE_FOUND
;
2750 defining
= nasm_malloc(sizeof(MMacro
));
2751 defining
->max_depth
=
2752 (i
== PP_RMACRO
) || (i
== PP_IRMACRO
) ? DEADMAN_LIMIT
: 0;
2753 defining
->casesense
= (i
== PP_MACRO
) || (i
== PP_RMACRO
);
2754 if (!parse_mmacro_spec(tline
, defining
, pp_directives
[i
])) {
2755 nasm_free(defining
);
2757 return DIRECTIVE_FOUND
;
2760 mmac
= (MMacro
*) hash_findix(&mmacros
, defining
->name
);
2762 if (!strcmp(mmac
->name
, defining
->name
) &&
2763 (mmac
->nparam_min
<= defining
->nparam_max
2765 && (defining
->nparam_min
<= mmac
->nparam_max
2767 error(ERR_WARNING
|ERR_PASS1
,
2768 "redefining multi-line macro `%s'", defining
->name
);
2769 return DIRECTIVE_FOUND
;
2773 free_tlist(origline
);
2774 return DIRECTIVE_FOUND
;
2778 if (! (defining
&& defining
->name
)) {
2779 error(ERR_NONFATAL
, "`%s': not defining a macro", tline
->text
);
2780 return DIRECTIVE_FOUND
;
2782 mmhead
= (MMacro
**) hash_findi_add(&mmacros
, defining
->name
);
2783 defining
->next
= *mmhead
;
2786 free_tlist(origline
);
2787 return DIRECTIVE_FOUND
;
2791 * We must search along istk->expansion until we hit a
2792 * macro-end marker for a macro with a name. Then we
2793 * bypass all lines between exitmacro and endmacro.
2795 list_for_each(l
, istk
->expansion
)
2796 if (l
->finishes
&& l
->finishes
->name
)
2801 * Remove all conditional entries relative to this
2802 * macro invocation. (safe to do in this context)
2804 for ( ; l
->finishes
->condcnt
> 0; l
->finishes
->condcnt
--) {
2806 istk
->conds
= cond
->next
;
2809 istk
->expansion
= l
;
2811 error(ERR_NONFATAL
, "`%%exitmacro' not within `%%macro' block");
2813 free_tlist(origline
);
2814 return DIRECTIVE_FOUND
;
2822 spec
.casesense
= (i
== PP_UNMACRO
);
2823 if (!parse_mmacro_spec(tline
, &spec
, pp_directives
[i
])) {
2824 return DIRECTIVE_FOUND
;
2826 mmac_p
= (MMacro
**) hash_findi(&mmacros
, spec
.name
, NULL
);
2827 while (mmac_p
&& *mmac_p
) {
2829 if (mmac
->casesense
== spec
.casesense
&&
2830 !mstrcmp(mmac
->name
, spec
.name
, spec
.casesense
) &&
2831 mmac
->nparam_min
== spec
.nparam_min
&&
2832 mmac
->nparam_max
== spec
.nparam_max
&&
2833 mmac
->plus
== spec
.plus
) {
2834 *mmac_p
= mmac
->next
;
2837 mmac_p
= &mmac
->next
;
2840 free_tlist(origline
);
2841 free_tlist(spec
.dlist
);
2842 return DIRECTIVE_FOUND
;
2846 if (tline
->next
&& tline
->next
->type
== TOK_WHITESPACE
)
2847 tline
= tline
->next
;
2849 free_tlist(origline
);
2850 error(ERR_NONFATAL
, "`%%rotate' missing rotate count");
2851 return DIRECTIVE_FOUND
;
2853 t
= expand_smacro(tline
->next
);
2855 free_tlist(origline
);
2858 tokval
.t_type
= TOKEN_INVALID
;
2860 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2863 return DIRECTIVE_FOUND
;
2865 error(ERR_WARNING
|ERR_PASS1
,
2866 "trailing garbage after expression ignored");
2867 if (!is_simple(evalresult
)) {
2868 error(ERR_NONFATAL
, "non-constant value given to `%%rotate'");
2869 return DIRECTIVE_FOUND
;
2872 while (mmac
&& !mmac
->name
) /* avoid mistaking %reps for macros */
2873 mmac
= mmac
->next_active
;
2875 error(ERR_NONFATAL
, "`%%rotate' invoked outside a macro call");
2876 } else if (mmac
->nparam
== 0) {
2878 "`%%rotate' invoked within macro without parameters");
2880 int rotate
= mmac
->rotate
+ reloc_value(evalresult
);
2882 rotate
%= (int)mmac
->nparam
;
2884 rotate
+= mmac
->nparam
;
2886 mmac
->rotate
= rotate
;
2888 return DIRECTIVE_FOUND
;
2893 tline
= tline
->next
;
2894 } while (tok_type_(tline
, TOK_WHITESPACE
));
2896 if (tok_type_(tline
, TOK_ID
) &&
2897 nasm_stricmp(tline
->text
, ".nolist") == 0) {
2900 tline
= tline
->next
;
2901 } while (tok_type_(tline
, TOK_WHITESPACE
));
2905 t
= expand_smacro(tline
);
2907 tokval
.t_type
= TOKEN_INVALID
;
2909 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2911 free_tlist(origline
);
2912 return DIRECTIVE_FOUND
;
2915 error(ERR_WARNING
|ERR_PASS1
,
2916 "trailing garbage after expression ignored");
2917 if (!is_simple(evalresult
)) {
2918 error(ERR_NONFATAL
, "non-constant value given to `%%rep'");
2919 return DIRECTIVE_FOUND
;
2921 count
= reloc_value(evalresult
);
2922 if (count
>= REP_LIMIT
) {
2923 error(ERR_NONFATAL
, "`%%rep' value exceeds limit");
2928 error(ERR_NONFATAL
, "`%%rep' expects a repeat count");
2931 free_tlist(origline
);
2933 tmp_defining
= defining
;
2934 defining
= nasm_malloc(sizeof(MMacro
));
2935 defining
->prev
= NULL
;
2936 defining
->name
= NULL
; /* flags this macro as a %rep block */
2937 defining
->casesense
= false;
2938 defining
->plus
= false;
2939 defining
->nolist
= nolist
;
2940 defining
->in_progress
= count
;
2941 defining
->max_depth
= 0;
2942 defining
->nparam_min
= defining
->nparam_max
= 0;
2943 defining
->defaults
= NULL
;
2944 defining
->dlist
= NULL
;
2945 defining
->expansion
= NULL
;
2946 defining
->next_active
= istk
->mstk
;
2947 defining
->rep_nest
= tmp_defining
;
2948 return DIRECTIVE_FOUND
;
2951 if (!defining
|| defining
->name
) {
2952 error(ERR_NONFATAL
, "`%%endrep': no matching `%%rep'");
2953 return DIRECTIVE_FOUND
;
2957 * Now we have a "macro" defined - although it has no name
2958 * and we won't be entering it in the hash tables - we must
2959 * push a macro-end marker for it on to istk->expansion.
2960 * After that, it will take care of propagating itself (a
2961 * macro-end marker line for a macro which is really a %rep
2962 * block will cause the macro to be re-expanded, complete
2963 * with another macro-end marker to ensure the process
2964 * continues) until the whole expansion is forcibly removed
2965 * from istk->expansion by a %exitrep.
2967 l
= nasm_malloc(sizeof(Line
));
2968 l
->next
= istk
->expansion
;
2969 l
->finishes
= defining
;
2971 istk
->expansion
= l
;
2973 istk
->mstk
= defining
;
2975 list
->uplevel(defining
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
2976 tmp_defining
= defining
;
2977 defining
= defining
->rep_nest
;
2978 free_tlist(origline
);
2979 return DIRECTIVE_FOUND
;
2983 * We must search along istk->expansion until we hit a
2984 * macro-end marker for a macro with no name. Then we set
2985 * its `in_progress' flag to 0.
2987 list_for_each(l
, istk
->expansion
)
2988 if (l
->finishes
&& !l
->finishes
->name
)
2992 l
->finishes
->in_progress
= 1;
2994 error(ERR_NONFATAL
, "`%%exitrep' not within `%%rep' block");
2995 free_tlist(origline
);
2996 return DIRECTIVE_FOUND
;
3002 casesense
= (i
== PP_DEFINE
|| i
== PP_XDEFINE
);
3004 tline
= tline
->next
;
3006 tline
= expand_id(tline
);
3007 if (!tline
|| (tline
->type
!= TOK_ID
&&
3008 (tline
->type
!= TOK_PREPROC_ID
||
3009 tline
->text
[1] != '$'))) {
3010 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
3012 free_tlist(origline
);
3013 return DIRECTIVE_FOUND
;
3016 ctx
= get_ctx(tline
->text
, &mname
, false);
3018 param_start
= tline
= tline
->next
;
3021 /* Expand the macro definition now for %xdefine and %ixdefine */
3022 if ((i
== PP_XDEFINE
) || (i
== PP_IXDEFINE
))
3023 tline
= expand_smacro(tline
);
3025 if (tok_is_(tline
, "(")) {
3027 * This macro has parameters.
3030 tline
= tline
->next
;
3034 error(ERR_NONFATAL
, "parameter identifier expected");
3035 free_tlist(origline
);
3036 return DIRECTIVE_FOUND
;
3038 if (tline
->type
!= TOK_ID
) {
3040 "`%s': parameter identifier expected",
3042 free_tlist(origline
);
3043 return DIRECTIVE_FOUND
;
3045 tline
->type
= TOK_SMAC_PARAM
+ nparam
++;
3046 tline
= tline
->next
;
3048 if (tok_is_(tline
, ",")) {
3049 tline
= tline
->next
;
3051 if (!tok_is_(tline
, ")")) {
3053 "`)' expected to terminate macro template");
3054 free_tlist(origline
);
3055 return DIRECTIVE_FOUND
;
3061 tline
= tline
->next
;
3063 if (tok_type_(tline
, TOK_WHITESPACE
))
3064 last
= tline
, tline
= tline
->next
;
3069 if (t
->type
== TOK_ID
) {
3070 list_for_each(tt
, param_start
)
3071 if (tt
->type
>= TOK_SMAC_PARAM
&&
3072 !strcmp(tt
->text
, t
->text
))
3076 t
->next
= macro_start
;
3081 * Good. We now have a macro name, a parameter count, and a
3082 * token list (in reverse order) for an expansion. We ought
3083 * to be OK just to create an SMacro, store it, and let
3084 * free_tlist have the rest of the line (which we have
3085 * carefully re-terminated after chopping off the expansion
3088 define_smacro(ctx
, mname
, casesense
, nparam
, macro_start
);
3089 free_tlist(origline
);
3090 return DIRECTIVE_FOUND
;
3093 tline
= tline
->next
;
3095 tline
= expand_id(tline
);
3096 if (!tline
|| (tline
->type
!= TOK_ID
&&
3097 (tline
->type
!= TOK_PREPROC_ID
||
3098 tline
->text
[1] != '$'))) {
3099 error(ERR_NONFATAL
, "`%%undef' expects a macro identifier");
3100 free_tlist(origline
);
3101 return DIRECTIVE_FOUND
;
3104 error(ERR_WARNING
|ERR_PASS1
,
3105 "trailing garbage after macro name ignored");
3108 /* Find the context that symbol belongs to */
3109 ctx
= get_ctx(tline
->text
, &mname
, false);
3110 undef_smacro(ctx
, mname
);
3111 free_tlist(origline
);
3112 return DIRECTIVE_FOUND
;
3116 casesense
= (i
== PP_DEFSTR
);
3118 tline
= tline
->next
;
3120 tline
= expand_id(tline
);
3121 if (!tline
|| (tline
->type
!= TOK_ID
&&
3122 (tline
->type
!= TOK_PREPROC_ID
||
3123 tline
->text
[1] != '$'))) {
3124 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
3126 free_tlist(origline
);
3127 return DIRECTIVE_FOUND
;
3130 ctx
= get_ctx(tline
->text
, &mname
, false);
3132 tline
= expand_smacro(tline
->next
);
3135 while (tok_type_(tline
, TOK_WHITESPACE
))
3136 tline
= delete_Token(tline
);
3138 p
= detoken(tline
, false);
3139 macro_start
= nasm_malloc(sizeof(*macro_start
));
3140 macro_start
->next
= NULL
;
3141 macro_start
->text
= nasm_quote(p
, strlen(p
));
3142 macro_start
->type
= TOK_STRING
;
3143 macro_start
->a
.mac
= NULL
;
3147 * We now have a macro name, an implicit parameter count of
3148 * zero, and a string token to use as an expansion. Create
3149 * and store an SMacro.
3151 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3152 free_tlist(origline
);
3153 return DIRECTIVE_FOUND
;
3157 casesense
= (i
== PP_DEFTOK
);
3159 tline
= tline
->next
;
3161 tline
= expand_id(tline
);
3162 if (!tline
|| (tline
->type
!= TOK_ID
&&
3163 (tline
->type
!= TOK_PREPROC_ID
||
3164 tline
->text
[1] != '$'))) {
3166 "`%s' expects a macro identifier as first parameter",
3168 free_tlist(origline
);
3169 return DIRECTIVE_FOUND
;
3171 ctx
= get_ctx(tline
->text
, &mname
, false);
3173 tline
= expand_smacro(tline
->next
);
3177 while (tok_type_(t
, TOK_WHITESPACE
))
3179 /* t should now point to the string */
3180 if (!tok_type_(t
, TOK_STRING
)) {
3182 "`%s` requires string as second parameter",
3185 free_tlist(origline
);
3186 return DIRECTIVE_FOUND
;
3189 nasm_unquote_cstr(t
->text
, i
);
3190 macro_start
= tokenize(t
->text
);
3193 * We now have a macro name, an implicit parameter count of
3194 * zero, and a numeric token to use as an expansion. Create
3195 * and store an SMacro.
3197 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3199 free_tlist(origline
);
3200 return DIRECTIVE_FOUND
;
3205 StrList
*xsl
= NULL
;
3206 StrList
**xst
= &xsl
;
3210 tline
= tline
->next
;
3212 tline
= expand_id(tline
);
3213 if (!tline
|| (tline
->type
!= TOK_ID
&&
3214 (tline
->type
!= TOK_PREPROC_ID
||
3215 tline
->text
[1] != '$'))) {
3217 "`%%pathsearch' expects a macro identifier as first parameter");
3218 free_tlist(origline
);
3219 return DIRECTIVE_FOUND
;
3221 ctx
= get_ctx(tline
->text
, &mname
, false);
3223 tline
= expand_smacro(tline
->next
);
3227 while (tok_type_(t
, TOK_WHITESPACE
))
3230 if (!t
|| (t
->type
!= TOK_STRING
&&
3231 t
->type
!= TOK_INTERNAL_STRING
)) {
3232 error(ERR_NONFATAL
, "`%%pathsearch' expects a file name");
3234 free_tlist(origline
);
3235 return DIRECTIVE_FOUND
; /* but we did _something_ */
3238 error(ERR_WARNING
|ERR_PASS1
,
3239 "trailing garbage after `%%pathsearch' ignored");
3241 if (t
->type
!= TOK_INTERNAL_STRING
)
3242 nasm_unquote(p
, NULL
);
3244 fp
= inc_fopen(p
, &xsl
, &xst
, true);
3247 fclose(fp
); /* Don't actually care about the file */
3249 macro_start
= nasm_malloc(sizeof(*macro_start
));
3250 macro_start
->next
= NULL
;
3251 macro_start
->text
= nasm_quote(p
, strlen(p
));
3252 macro_start
->type
= TOK_STRING
;
3253 macro_start
->a
.mac
= NULL
;
3258 * We now have a macro name, an implicit parameter count of
3259 * zero, and a string token to use as an expansion. Create
3260 * and store an SMacro.
3262 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3264 free_tlist(origline
);
3265 return DIRECTIVE_FOUND
;
3271 tline
= tline
->next
;
3273 tline
= expand_id(tline
);
3274 if (!tline
|| (tline
->type
!= TOK_ID
&&
3275 (tline
->type
!= TOK_PREPROC_ID
||
3276 tline
->text
[1] != '$'))) {
3278 "`%%strlen' expects a macro identifier as first parameter");
3279 free_tlist(origline
);
3280 return DIRECTIVE_FOUND
;
3282 ctx
= get_ctx(tline
->text
, &mname
, false);
3284 tline
= expand_smacro(tline
->next
);
3288 while (tok_type_(t
, TOK_WHITESPACE
))
3290 /* t should now point to the string */
3291 if (!tok_type_(t
, TOK_STRING
)) {
3293 "`%%strlen` requires string as second parameter");
3295 free_tlist(origline
);
3296 return DIRECTIVE_FOUND
;
3299 macro_start
= nasm_malloc(sizeof(*macro_start
));
3300 macro_start
->next
= NULL
;
3301 make_tok_num(macro_start
, nasm_unquote(t
->text
, NULL
));
3302 macro_start
->a
.mac
= NULL
;
3305 * We now have a macro name, an implicit parameter count of
3306 * zero, and a numeric token to use as an expansion. Create
3307 * and store an SMacro.
3309 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3311 free_tlist(origline
);
3312 return DIRECTIVE_FOUND
;
3317 tline
= tline
->next
;
3319 tline
= expand_id(tline
);
3320 if (!tline
|| (tline
->type
!= TOK_ID
&&
3321 (tline
->type
!= TOK_PREPROC_ID
||
3322 tline
->text
[1] != '$'))) {
3324 "`%%strcat' expects a macro identifier as first parameter");
3325 free_tlist(origline
);
3326 return DIRECTIVE_FOUND
;
3328 ctx
= get_ctx(tline
->text
, &mname
, false);
3330 tline
= expand_smacro(tline
->next
);
3334 list_for_each(t
, tline
) {
3336 case TOK_WHITESPACE
:
3339 len
+= t
->a
.len
= nasm_unquote(t
->text
, NULL
);
3342 if (!strcmp(t
->text
, ",")) /* permit comma separators */
3344 /* else fall through */
3347 "non-string passed to `%%strcat' (%d)", t
->type
);
3349 free_tlist(origline
);
3350 return DIRECTIVE_FOUND
;
3354 p
= pp
= nasm_malloc(len
);
3355 list_for_each(t
, tline
) {
3356 if (t
->type
== TOK_STRING
) {
3357 memcpy(p
, t
->text
, t
->a
.len
);
3363 * We now have a macro name, an implicit parameter count of
3364 * zero, and a numeric token to use as an expansion. Create
3365 * and store an SMacro.
3367 macro_start
= new_Token(NULL
, TOK_STRING
, NULL
, 0);
3368 macro_start
->text
= nasm_quote(pp
, len
);
3370 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3372 free_tlist(origline
);
3373 return DIRECTIVE_FOUND
;
3382 tline
= tline
->next
;
3384 tline
= expand_id(tline
);
3385 if (!tline
|| (tline
->type
!= TOK_ID
&&
3386 (tline
->type
!= TOK_PREPROC_ID
||
3387 tline
->text
[1] != '$'))) {
3389 "`%%substr' expects a macro identifier as first parameter");
3390 free_tlist(origline
);
3391 return DIRECTIVE_FOUND
;
3393 ctx
= get_ctx(tline
->text
, &mname
, false);
3395 tline
= expand_smacro(tline
->next
);
3399 while (tok_type_(t
, TOK_WHITESPACE
))
3402 /* t should now point to the string */
3403 if (t
->type
!= TOK_STRING
) {
3405 "`%%substr` requires string as second parameter");
3407 free_tlist(origline
);
3408 return DIRECTIVE_FOUND
;
3413 tokval
.t_type
= TOKEN_INVALID
;
3414 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3418 free_tlist(origline
);
3419 return DIRECTIVE_FOUND
;
3420 } else if (!is_simple(evalresult
)) {
3421 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3423 free_tlist(origline
);
3424 return DIRECTIVE_FOUND
;
3426 a1
= evalresult
->value
-1;
3428 while (tok_type_(tt
, TOK_WHITESPACE
))
3431 a2
= 1; /* Backwards compatibility: one character */
3433 tokval
.t_type
= TOKEN_INVALID
;
3434 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3438 free_tlist(origline
);
3439 return DIRECTIVE_FOUND
;
3440 } else if (!is_simple(evalresult
)) {
3441 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3443 free_tlist(origline
);
3444 return DIRECTIVE_FOUND
;
3446 a2
= evalresult
->value
;
3449 len
= nasm_unquote(t
->text
, NULL
);
3452 if (a1
+a2
> (int64_t)len
)
3455 macro_start
= nasm_malloc(sizeof(*macro_start
));
3456 macro_start
->next
= NULL
;
3457 macro_start
->text
= nasm_quote((a1
< 0) ? "" : t
->text
+a1
, a2
);
3458 macro_start
->type
= TOK_STRING
;
3459 macro_start
->a
.mac
= NULL
;
3462 * We now have a macro name, an implicit parameter count of
3463 * zero, and a numeric token to use as an expansion. Create
3464 * and store an SMacro.
3466 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3468 free_tlist(origline
);
3469 return DIRECTIVE_FOUND
;
3474 casesense
= (i
== PP_ASSIGN
);
3476 tline
= tline
->next
;
3478 tline
= expand_id(tline
);
3479 if (!tline
|| (tline
->type
!= TOK_ID
&&
3480 (tline
->type
!= TOK_PREPROC_ID
||
3481 tline
->text
[1] != '$'))) {
3483 "`%%%sassign' expects a macro identifier",
3484 (i
== PP_IASSIGN
? "i" : ""));
3485 free_tlist(origline
);
3486 return DIRECTIVE_FOUND
;
3488 ctx
= get_ctx(tline
->text
, &mname
, false);
3490 tline
= expand_smacro(tline
->next
);
3495 tokval
.t_type
= TOKEN_INVALID
;
3497 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
3500 free_tlist(origline
);
3501 return DIRECTIVE_FOUND
;
3505 error(ERR_WARNING
|ERR_PASS1
,
3506 "trailing garbage after expression ignored");
3508 if (!is_simple(evalresult
)) {
3510 "non-constant value given to `%%%sassign'",
3511 (i
== PP_IASSIGN
? "i" : ""));
3512 free_tlist(origline
);
3513 return DIRECTIVE_FOUND
;
3516 macro_start
= nasm_malloc(sizeof(*macro_start
));
3517 macro_start
->next
= NULL
;
3518 make_tok_num(macro_start
, reloc_value(evalresult
));
3519 macro_start
->a
.mac
= NULL
;
3522 * We now have a macro name, an implicit parameter count of
3523 * zero, and a numeric token to use as an expansion. Create
3524 * and store an SMacro.
3526 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3527 free_tlist(origline
);
3528 return DIRECTIVE_FOUND
;
3532 * Syntax is `%line nnn[+mmm] [filename]'
3534 tline
= tline
->next
;
3536 if (!tok_type_(tline
, TOK_NUMBER
)) {
3537 error(ERR_NONFATAL
, "`%%line' expects line number");
3538 free_tlist(origline
);
3539 return DIRECTIVE_FOUND
;
3541 k
= readnum(tline
->text
, &err
);
3543 tline
= tline
->next
;
3544 if (tok_is_(tline
, "+")) {
3545 tline
= tline
->next
;
3546 if (!tok_type_(tline
, TOK_NUMBER
)) {
3547 error(ERR_NONFATAL
, "`%%line' expects line increment");
3548 free_tlist(origline
);
3549 return DIRECTIVE_FOUND
;
3551 m
= readnum(tline
->text
, &err
);
3552 tline
= tline
->next
;
3558 nasm_free(src_set_fname(detoken(tline
, false)));
3560 free_tlist(origline
);
3561 return DIRECTIVE_FOUND
;
3565 "preprocessor directive `%s' not yet implemented",
3567 return DIRECTIVE_FOUND
;
3572 * Ensure that a macro parameter contains a condition code and
3573 * nothing else. Return the condition code index if so, or -1
3576 static int find_cc(Token
* t
)
3582 return -1; /* Probably a %+ without a space */
3585 if (t
->type
!= TOK_ID
)
3589 if (tt
&& (tt
->type
!= TOK_OTHER
|| strcmp(tt
->text
, ",")))
3593 j
= ARRAY_SIZE(conditions
);
3596 m
= nasm_stricmp(t
->text
, conditions
[k
]);
3611 static bool paste_tokens(Token
**head
, bool handle_paste_tokens
)
3613 Token
**tail
, *t
, *tt
;
3615 bool did_paste
= false;
3618 /* Now handle token pasting... */
3621 while ((t
= *tail
) && (tt
= t
->next
)) {
3623 case TOK_WHITESPACE
:
3624 if (tt
->type
== TOK_WHITESPACE
) {
3625 /* Zap adjacent whitespace tokens */
3626 t
->next
= delete_Token(tt
);
3628 /* Do not advance paste_head here */
3639 while (tt
&& (tt
->type
== TOK_ID
|| tt
->type
== TOK_PREPROC_ID
||
3640 tt
->type
== TOK_NUMBER
|| tt
->type
== TOK_FLOAT
||
3641 tt
->type
== TOK_OTHER
)) {
3642 len
+= strlen(tt
->text
);
3647 * Now tt points to the first token after
3648 * the potential paste area...
3650 if (tt
!= t
->next
) {
3651 /* We have at least two tokens... */
3652 len
+= strlen(t
->text
);
3653 p
= tmp
= nasm_malloc(len
+1);
3657 p
= strchr(p
, '\0');
3658 t
= delete_Token(t
);
3661 t
= *tail
= tokenize(tmp
);
3668 t
->next
= tt
; /* Attach the remaining token chain */
3676 case TOK_PASTE
: /* %+ */
3677 if (handle_paste_tokens
) {
3678 /* Zap %+ and whitespace tokens to the right */
3679 while (t
&& (t
->type
== TOK_WHITESPACE
||
3680 t
->type
== TOK_PASTE
))
3681 t
= *tail
= delete_Token(t
);
3682 if (!paste_head
|| !t
)
3683 break; /* Nothing to paste with */
3687 while (tok_type_(tt
, TOK_WHITESPACE
))
3688 tt
= t
->next
= delete_Token(tt
);
3691 tmp
= nasm_strcat(t
->text
, tt
->text
);
3693 tt
= delete_Token(tt
);
3694 t
= *tail
= tokenize(tmp
);
3700 t
->next
= tt
; /* Attach the remaining token chain */
3707 /* else fall through */
3710 if (!tok_type_(t
->next
, TOK_WHITESPACE
))
3719 * expands to a list of tokens from %{x:y}
3721 static Token
*expand_mmac_params_range(MMacro
*mac
, Token
*tline
, Token
***last
)
3723 Token
*t
= tline
, **tt
, *tm
, *head
;
3727 pos
= strchr(tline
->text
, ':');
3730 lst
= atoi(pos
+ 1);
3731 fst
= atoi(tline
->text
+ 1);
3734 * only macros params are accounted so
3735 * if someone passes %0 -- we reject such
3738 if (lst
== 0 || fst
== 0)
3741 /* the values should be sane */
3742 if ((fst
> (int)mac
->nparam
|| fst
< (-(int)mac
->nparam
)) ||
3743 (lst
> (int)mac
->nparam
|| lst
< (-(int)mac
->nparam
)))
3746 fst
= fst
< 0 ? fst
+ (int)mac
->nparam
+ 1: fst
;
3747 lst
= lst
< 0 ? lst
+ (int)mac
->nparam
+ 1: lst
;
3749 /* counted from zero */
3753 * it will be at least one token
3755 tm
= mac
->params
[(fst
+ mac
->rotate
) % mac
->nparam
];
3756 t
= new_Token(NULL
, tm
->type
, tm
->text
, 0);
3757 head
= t
, tt
= &t
->next
;
3759 for (i
= fst
+ 1; i
<= lst
; i
++) {
3760 t
= new_Token(NULL
, TOK_OTHER
, ",", 0);
3761 *tt
= t
, tt
= &t
->next
;
3762 j
= (i
+ mac
->rotate
) % mac
->nparam
;
3763 tm
= mac
->params
[j
];
3764 t
= new_Token(NULL
, tm
->type
, tm
->text
, 0);
3765 *tt
= t
, tt
= &t
->next
;
3768 for (i
= fst
- 1; i
>= lst
; i
--) {
3769 t
= new_Token(NULL
, TOK_OTHER
, ",", 0);
3770 *tt
= t
, tt
= &t
->next
;
3771 j
= (i
+ mac
->rotate
) % mac
->nparam
;
3772 tm
= mac
->params
[j
];
3773 t
= new_Token(NULL
, tm
->type
, tm
->text
, 0);
3774 *tt
= t
, tt
= &t
->next
;
3782 error(ERR_NONFATAL
, "`%%{%s}': macro parameters out of range",
3788 * Expand MMacro-local things: parameter references (%0, %n, %+n,
3789 * %-n) and MMacro-local identifiers (%%foo) as well as
3790 * macro indirection (%[...]) and range (%{..:..}).
3792 static Token
*expand_mmac_params(Token
* tline
)
3794 Token
*t
, *tt
, **tail
, *thead
;
3795 bool changed
= false;
3802 if (tline
->type
== TOK_PREPROC_ID
&&
3803 (((tline
->text
[1] == '+' || tline
->text
[1] == '-') && tline
->text
[2]) ||
3804 (tline
->text
[1] >= '0' && tline
->text
[1] <= '9') ||
3805 tline
->text
[1] == '%')) {
3807 int type
= 0, cc
; /* type = 0 to placate optimisers */
3814 tline
= tline
->next
;
3817 while (mac
&& !mac
->name
) /* avoid mistaking %reps for macros */
3818 mac
= mac
->next_active
;
3820 error(ERR_NONFATAL
, "`%s': not in a macro call", t
->text
);
3822 pos
= strchr(t
->text
, ':');
3824 switch (t
->text
[1]) {
3826 * We have to make a substitution of one of the
3827 * forms %1, %-1, %+1, %%foo, %0.
3831 snprintf(tmpbuf
, sizeof(tmpbuf
), "%d", mac
->nparam
);
3832 text
= nasm_strdup(tmpbuf
);
3836 snprintf(tmpbuf
, sizeof(tmpbuf
), "..@%"PRIu64
".",
3838 text
= nasm_strcat(tmpbuf
, t
->text
+ 2);
3841 n
= atoi(t
->text
+ 2) - 1;
3842 if (n
>= mac
->nparam
)
3845 if (mac
->nparam
> 1)
3846 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3847 tt
= mac
->params
[n
];
3852 "macro parameter %d is not a condition code",
3857 if (inverse_ccs
[cc
] == -1) {
3859 "condition code `%s' is not invertible",
3863 text
= nasm_strdup(conditions
[inverse_ccs
[cc
]]);
3867 n
= atoi(t
->text
+ 2) - 1;
3868 if (n
>= mac
->nparam
)
3871 if (mac
->nparam
> 1)
3872 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3873 tt
= mac
->params
[n
];
3878 "macro parameter %d is not a condition code",
3883 text
= nasm_strdup(conditions
[cc
]);
3887 n
= atoi(t
->text
+ 1) - 1;
3888 if (n
>= mac
->nparam
)
3891 if (mac
->nparam
> 1)
3892 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3893 tt
= mac
->params
[n
];
3896 for (i
= 0; i
< mac
->paramlen
[n
]; i
++) {
3897 *tail
= new_Token(NULL
, tt
->type
, tt
->text
, 0);
3898 tail
= &(*tail
)->next
;
3902 text
= NULL
; /* we've done it here */
3907 * seems we have a parameters range here
3909 Token
*head
, **last
;
3910 head
= expand_mmac_params_range(mac
, t
, &last
);
3931 } else if (tline
->type
== TOK_INDIRECT
) {
3933 tline
= tline
->next
;
3934 tt
= tokenize(t
->text
);
3935 tt
= expand_mmac_params(tt
);
3936 tt
= expand_smacro(tt
);
3939 tt
->a
.mac
= NULL
; /* Necessary? */
3947 tline
= tline
->next
;
3955 paste_tokens(&thead
, false);
3961 * Expand all single-line macro calls made in the given line.
3962 * Return the expanded version of the line. The original is deemed
3963 * to be destroyed in the process. (In reality we'll just move
3964 * Tokens from input to output a lot of the time, rather than
3965 * actually bothering to destroy and replicate.)
3968 static Token
*expand_smacro(Token
* tline
)
3970 Token
*t
, *tt
, *mstart
, **tail
, *thead
;
3971 SMacro
*head
= NULL
, *m
;
3974 unsigned int nparam
, sparam
;
3976 Token
*org_tline
= tline
;
3979 int deadman
= DEADMAN_LIMIT
;
3983 * Trick: we should avoid changing the start token pointer since it can
3984 * be contained in "next" field of other token. Because of this
3985 * we allocate a copy of first token and work with it; at the end of
3986 * routine we copy it back
3989 tline
= new_Token(org_tline
->next
, org_tline
->type
,
3990 org_tline
->text
, 0);
3991 tline
->a
.mac
= org_tline
->a
.mac
;
3992 nasm_free(org_tline
->text
);
3993 org_tline
->text
= NULL
;
3996 expanded
= true; /* Always expand %+ at least once */
4002 while (tline
) { /* main token loop */
4004 error(ERR_NONFATAL
, "interminable macro recursion");
4008 if ((mname
= tline
->text
)) {
4009 /* if this token is a local macro, look in local context */
4010 if (tline
->type
== TOK_ID
) {
4011 head
= (SMacro
*)hash_findix(&smacros
, mname
);
4012 } else if (tline
->type
== TOK_PREPROC_ID
) {
4013 ctx
= get_ctx(mname
, &mname
, true);
4014 head
= ctx
? (SMacro
*)hash_findix(&ctx
->localmac
, mname
) : NULL
;
4019 * We've hit an identifier. As in is_mmacro below, we first
4020 * check whether the identifier is a single-line macro at
4021 * all, then think about checking for parameters if
4024 list_for_each(m
, head
)
4025 if (!mstrcmp(m
->name
, mname
, m
->casesense
))
4031 if (m
->nparam
== 0) {
4033 * Simple case: the macro is parameterless. Discard the
4034 * one token that the macro call took, and push the
4035 * expansion back on the to-do stack.
4037 if (!m
->expansion
) {
4038 if (!strcmp("__FILE__", m
->name
)) {
4041 src_get(&num
, &file
);
4042 tline
->text
= nasm_quote(file
, strlen(file
));
4043 tline
->type
= TOK_STRING
;
4047 if (!strcmp("__LINE__", m
->name
)) {
4048 nasm_free(tline
->text
);
4049 make_tok_num(tline
, src_get_linnum());
4052 if (!strcmp("__BITS__", m
->name
)) {
4053 nasm_free(tline
->text
);
4054 make_tok_num(tline
, globalbits
);
4057 tline
= delete_Token(tline
);
4062 * Complicated case: at least one macro with this name
4063 * exists and takes parameters. We must find the
4064 * parameters in the call, count them, find the SMacro
4065 * that corresponds to that form of the macro call, and
4066 * substitute for the parameters when we expand. What a
4069 /*tline = tline->next;
4070 skip_white_(tline); */
4073 while (tok_type_(t
, TOK_SMAC_END
)) {
4074 t
->a
.mac
->in_progress
= false;
4076 t
= tline
->next
= delete_Token(t
);
4079 } while (tok_type_(tline
, TOK_WHITESPACE
));
4080 if (!tok_is_(tline
, "(")) {
4082 * This macro wasn't called with parameters: ignore
4083 * the call. (Behaviour borrowed from gnu cpp.)
4092 sparam
= PARAM_DELTA
;
4093 params
= nasm_malloc(sparam
* sizeof(Token
*));
4094 params
[0] = tline
->next
;
4095 paramsize
= nasm_malloc(sparam
* sizeof(int));
4097 while (true) { /* parameter loop */
4099 * For some unusual expansions
4100 * which concatenates function call
4103 while (tok_type_(t
, TOK_SMAC_END
)) {
4104 t
->a
.mac
->in_progress
= false;
4106 t
= tline
->next
= delete_Token(t
);
4112 "macro call expects terminating `)'");
4115 if (tline
->type
== TOK_WHITESPACE
4117 if (paramsize
[nparam
])
4120 params
[nparam
] = tline
->next
;
4121 continue; /* parameter loop */
4123 if (tline
->type
== TOK_OTHER
4124 && tline
->text
[1] == 0) {
4125 char ch
= tline
->text
[0];
4126 if (ch
== ',' && !paren
&& brackets
<= 0) {
4127 if (++nparam
>= sparam
) {
4128 sparam
+= PARAM_DELTA
;
4129 params
= nasm_realloc(params
,
4130 sparam
* sizeof(Token
*));
4131 paramsize
= nasm_realloc(paramsize
,
4132 sparam
* sizeof(int));
4134 params
[nparam
] = tline
->next
;
4135 paramsize
[nparam
] = 0;
4137 continue; /* parameter loop */
4140 (brackets
> 0 || (brackets
== 0 &&
4141 !paramsize
[nparam
])))
4143 if (!(brackets
++)) {
4144 params
[nparam
] = tline
->next
;
4145 continue; /* parameter loop */
4148 if (ch
== '}' && brackets
> 0)
4149 if (--brackets
== 0) {
4151 continue; /* parameter loop */
4153 if (ch
== '(' && !brackets
)
4155 if (ch
== ')' && brackets
<= 0)
4161 error(ERR_NONFATAL
, "braces do not "
4162 "enclose all of macro parameter");
4164 paramsize
[nparam
] += white
+ 1;
4166 } /* parameter loop */
4168 while (m
&& (m
->nparam
!= nparam
||
4169 mstrcmp(m
->name
, mname
,
4173 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
4174 "macro `%s' exists, "
4175 "but not taking %d parameters",
4176 mstart
->text
, nparam
);
4179 if (m
&& m
->in_progress
)
4181 if (!m
) { /* in progess or didn't find '(' or wrong nparam */
4183 * Design question: should we handle !tline, which
4184 * indicates missing ')' here, or expand those
4185 * macros anyway, which requires the (t) test a few
4189 nasm_free(paramsize
);
4193 * Expand the macro: we are placed on the last token of the
4194 * call, so that we can easily split the call from the
4195 * following tokens. We also start by pushing an SMAC_END
4196 * token for the cycle removal.
4203 tt
= new_Token(tline
, TOK_SMAC_END
, NULL
, 0);
4205 m
->in_progress
= true;
4207 list_for_each(t
, m
->expansion
) {
4208 if (t
->type
>= TOK_SMAC_PARAM
) {
4209 Token
*pcopy
= tline
, **ptail
= &pcopy
;
4213 ttt
= params
[t
->type
- TOK_SMAC_PARAM
];
4214 i
= paramsize
[t
->type
- TOK_SMAC_PARAM
];
4216 pt
= *ptail
= new_Token(tline
, ttt
->type
,
4222 } else if (t
->type
== TOK_PREPROC_Q
) {
4223 tt
= new_Token(tline
, TOK_ID
, mname
, 0);
4225 } else if (t
->type
== TOK_PREPROC_QQ
) {
4226 tt
= new_Token(tline
, TOK_ID
, m
->name
, 0);
4229 tt
= new_Token(tline
, t
->type
, t
->text
, 0);
4235 * Having done that, get rid of the macro call, and clean
4236 * up the parameters.
4239 nasm_free(paramsize
);
4242 continue; /* main token loop */
4247 if (tline
->type
== TOK_SMAC_END
) {
4248 tline
->a
.mac
->in_progress
= false;
4249 tline
= delete_Token(tline
);
4252 tline
= tline
->next
;
4260 * Now scan the entire line and look for successive TOK_IDs that resulted
4261 * after expansion (they can't be produced by tokenize()). The successive
4262 * TOK_IDs should be concatenated.
4263 * Also we look for %+ tokens and concatenate the tokens before and after
4264 * them (without white spaces in between).
4266 if (expanded
&& paste_tokens(&thead
, true)) {
4268 * If we concatenated something, *and* we had previously expanded
4269 * an actual macro, scan the lines again for macros...
4279 *org_tline
= *thead
;
4280 /* since we just gave text to org_line, don't free it */
4282 delete_Token(thead
);
4284 /* the expression expanded to empty line;
4285 we can't return NULL for some reasons
4286 we just set the line to a single WHITESPACE token. */
4287 memset(org_tline
, 0, sizeof(*org_tline
));
4288 org_tline
->text
= NULL
;
4289 org_tline
->type
= TOK_WHITESPACE
;
4298 * Similar to expand_smacro but used exclusively with macro identifiers
4299 * right before they are fetched in. The reason is that there can be
4300 * identifiers consisting of several subparts. We consider that if there
4301 * are more than one element forming the name, user wants a expansion,
4302 * otherwise it will be left as-is. Example:
4306 * the identifier %$abc will be left as-is so that the handler for %define
4307 * will suck it and define the corresponding value. Other case:
4309 * %define _%$abc cde
4311 * In this case user wants name to be expanded *before* %define starts
4312 * working, so we'll expand %$abc into something (if it has a value;
4313 * otherwise it will be left as-is) then concatenate all successive
4316 static Token
*expand_id(Token
* tline
)
4318 Token
*cur
, *oldnext
= NULL
;
4320 if (!tline
|| !tline
->next
)
4325 (cur
->next
->type
== TOK_ID
||
4326 cur
->next
->type
== TOK_PREPROC_ID
4327 || cur
->next
->type
== TOK_NUMBER
))
4330 /* If identifier consists of just one token, don't expand */
4335 oldnext
= cur
->next
; /* Detach the tail past identifier */
4336 cur
->next
= NULL
; /* so that expand_smacro stops here */
4339 tline
= expand_smacro(tline
);
4342 /* expand_smacro possibly changhed tline; re-scan for EOL */
4344 while (cur
&& cur
->next
)
4347 cur
->next
= oldnext
;
4354 * Determine whether the given line constitutes a multi-line macro
4355 * call, and return the MMacro structure called if so. Doesn't have
4356 * to check for an initial label - that's taken care of in
4357 * expand_mmacro - but must check numbers of parameters. Guaranteed
4358 * to be called with tline->type == TOK_ID, so the putative macro
4359 * name is easy to find.
4361 static MMacro
*is_mmacro(Token
* tline
, Token
*** params_array
)
4367 head
= (MMacro
*) hash_findix(&mmacros
, tline
->text
);
4370 * Efficiency: first we see if any macro exists with the given
4371 * name. If not, we can return NULL immediately. _Then_ we
4372 * count the parameters, and then we look further along the
4373 * list if necessary to find the proper MMacro.
4375 list_for_each(m
, head
)
4376 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4382 * OK, we have a potential macro. Count and demarcate the
4385 count_mmac_params(tline
->next
, &nparam
, ¶ms
);
4388 * So we know how many parameters we've got. Find the MMacro
4389 * structure that handles this number.
4392 if (m
->nparam_min
<= nparam
4393 && (m
->plus
|| nparam
<= m
->nparam_max
)) {
4395 * This one is right. Just check if cycle removal
4396 * prohibits us using it before we actually celebrate...
4398 if (m
->in_progress
> m
->max_depth
) {
4399 if (m
->max_depth
> 0) {
4401 "reached maximum recursion depth of %i",
4408 * It's right, and we can use it. Add its default
4409 * parameters to the end of our list if necessary.
4411 if (m
->defaults
&& nparam
< m
->nparam_min
+ m
->ndefs
) {
4413 nasm_realloc(params
,
4414 ((m
->nparam_min
+ m
->ndefs
+
4415 1) * sizeof(*params
)));
4416 while (nparam
< m
->nparam_min
+ m
->ndefs
) {
4417 params
[nparam
] = m
->defaults
[nparam
- m
->nparam_min
];
4422 * If we've gone over the maximum parameter count (and
4423 * we're in Plus mode), ignore parameters beyond
4426 if (m
->plus
&& nparam
> m
->nparam_max
)
4427 nparam
= m
->nparam_max
;
4429 * Then terminate the parameter list, and leave.
4431 if (!params
) { /* need this special case */
4432 params
= nasm_malloc(sizeof(*params
));
4435 params
[nparam
] = NULL
;
4436 *params_array
= params
;
4440 * This one wasn't right: look for the next one with the
4443 list_for_each(m
, m
->next
)
4444 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4449 * After all that, we didn't find one with the right number of
4450 * parameters. Issue a warning, and fail to expand the macro.
4452 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
4453 "macro `%s' exists, but not taking %d parameters",
4454 tline
->text
, nparam
);
4461 * Save MMacro invocation specific fields in
4462 * preparation for a recursive macro expansion
4464 static void push_mmacro(MMacro
*m
)
4466 MMacroInvocation
*i
;
4468 i
= nasm_malloc(sizeof(MMacroInvocation
));
4470 i
->params
= m
->params
;
4471 i
->iline
= m
->iline
;
4472 i
->nparam
= m
->nparam
;
4473 i
->rotate
= m
->rotate
;
4474 i
->paramlen
= m
->paramlen
;
4475 i
->unique
= m
->unique
;
4476 i
->condcnt
= m
->condcnt
;
4482 * Restore MMacro invocation specific fields that were
4483 * saved during a previous recursive macro expansion
4485 static void pop_mmacro(MMacro
*m
)
4487 MMacroInvocation
*i
;
4492 m
->params
= i
->params
;
4493 m
->iline
= i
->iline
;
4494 m
->nparam
= i
->nparam
;
4495 m
->rotate
= i
->rotate
;
4496 m
->paramlen
= i
->paramlen
;
4497 m
->unique
= i
->unique
;
4498 m
->condcnt
= i
->condcnt
;
4505 * Expand the multi-line macro call made by the given line, if
4506 * there is one to be expanded. If there is, push the expansion on
4507 * istk->expansion and return 1. Otherwise return 0.
4509 static int expand_mmacro(Token
* tline
)
4511 Token
*startline
= tline
;
4512 Token
*label
= NULL
;
4513 int dont_prepend
= 0;
4514 Token
**params
, *t
, *mtok
, *tt
;
4517 int i
, nparam
, *paramlen
;
4522 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
4523 if (!tok_type_(t
, TOK_ID
) && !tok_type_(t
, TOK_PREPROC_ID
))
4526 m
= is_mmacro(t
, ¶ms
);
4532 * We have an id which isn't a macro call. We'll assume
4533 * it might be a label; we'll also check to see if a
4534 * colon follows it. Then, if there's another id after
4535 * that lot, we'll check it again for macro-hood.
4539 if (tok_type_(t
, TOK_WHITESPACE
))
4540 last
= t
, t
= t
->next
;
4541 if (tok_is_(t
, ":")) {
4543 last
= t
, t
= t
->next
;
4544 if (tok_type_(t
, TOK_WHITESPACE
))
4545 last
= t
, t
= t
->next
;
4547 if (!tok_type_(t
, TOK_ID
) || !(m
= is_mmacro(t
, ¶ms
)))
4555 * Fix up the parameters: this involves stripping leading and
4556 * trailing whitespace, then stripping braces if they are
4559 for (nparam
= 0; params
[nparam
]; nparam
++) ;
4560 paramlen
= nparam
? nasm_malloc(nparam
* sizeof(*paramlen
)) : NULL
;
4562 for (i
= 0; params
[i
]; i
++) {
4564 int comma
= (!m
->plus
|| i
< nparam
- 1);
4568 if (tok_is_(t
, "{"))
4569 t
= t
->next
, brace
= true, comma
= false;
4573 if (comma
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, ","))
4574 break; /* ... because we have hit a comma */
4575 if (comma
&& t
->type
== TOK_WHITESPACE
4576 && tok_is_(t
->next
, ","))
4577 break; /* ... or a space then a comma */
4578 if (brace
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, "}"))
4579 break; /* ... or a brace */
4586 * OK, we have a MMacro structure together with a set of
4587 * parameters. We must now go through the expansion and push
4588 * copies of each Line on to istk->expansion. Substitution of
4589 * parameter tokens and macro-local tokens doesn't get done
4590 * until the single-line macro substitution process; this is
4591 * because delaying them allows us to change the semantics
4592 * later through %rotate.
4594 * First, push an end marker on to istk->expansion, mark this
4595 * macro as in progress, and set up its invocation-specific
4598 ll
= nasm_malloc(sizeof(Line
));
4599 ll
->next
= istk
->expansion
;
4602 istk
->expansion
= ll
;
4605 * Save the previous MMacro expansion in the case of
4608 if (m
->max_depth
&& m
->in_progress
)
4616 m
->paramlen
= paramlen
;
4617 m
->unique
= unique
++;
4621 m
->next_active
= istk
->mstk
;
4624 list_for_each(l
, m
->expansion
) {
4627 ll
= nasm_malloc(sizeof(Line
));
4628 ll
->finishes
= NULL
;
4629 ll
->next
= istk
->expansion
;
4630 istk
->expansion
= ll
;
4633 list_for_each(t
, l
->first
) {
4637 tt
= *tail
= new_Token(NULL
, TOK_ID
, mname
, 0);
4639 case TOK_PREPROC_QQ
:
4640 tt
= *tail
= new_Token(NULL
, TOK_ID
, m
->name
, 0);
4642 case TOK_PREPROC_ID
:
4643 if (t
->text
[1] == '0' && t
->text
[2] == '0') {
4651 tt
= *tail
= new_Token(NULL
, x
->type
, x
->text
, 0);
4660 * If we had a label, push it on as the first line of
4661 * the macro expansion.
4664 if (dont_prepend
< 0)
4665 free_tlist(startline
);
4667 ll
= nasm_malloc(sizeof(Line
));
4668 ll
->finishes
= NULL
;
4669 ll
->next
= istk
->expansion
;
4670 istk
->expansion
= ll
;
4671 ll
->first
= startline
;
4672 if (!dont_prepend
) {
4674 label
= label
->next
;
4675 label
->next
= tt
= new_Token(NULL
, TOK_OTHER
, ":", 0);
4680 list
->uplevel(m
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
4685 /* The function that actually does the error reporting */
4686 static void verror(int severity
, const char *fmt
, va_list arg
)
4690 vsnprintf(buff
, sizeof(buff
), fmt
, arg
);
4692 if (istk
&& istk
->mstk
&& istk
->mstk
->name
)
4693 nasm_error(severity
, "(%s:%d) %s", istk
->mstk
->name
,
4694 istk
->mstk
->lineno
, buff
);
4696 nasm_error(severity
, "%s", buff
);
4700 * Since preprocessor always operate only on the line that didn't
4701 * arrived yet, we should always use ERR_OFFBY1.
4703 static void error(int severity
, const char *fmt
, ...)
4707 /* If we're in a dead branch of IF or something like it, ignore the error */
4708 if (istk
&& istk
->conds
&& !emitting(istk
->conds
->state
))
4712 verror(severity
, fmt
, arg
);
4717 * Because %else etc are evaluated in the state context
4718 * of the previous branch, errors might get lost with error():
4719 * %if 0 ... %else trailing garbage ... %endif
4720 * So %else etc should report errors with this function.
4722 static void error_precond(int severity
, const char *fmt
, ...)
4726 /* Only ignore the error if it's really in a dead branch */
4727 if (istk
&& istk
->conds
&& istk
->conds
->state
== COND_NEVER
)
4731 verror(severity
, fmt
, arg
);
4736 pp_reset(char *file
, int apass
, ListGen
* listgen
, StrList
**deplist
)
4741 istk
= nasm_malloc(sizeof(Include
));
4744 istk
->expansion
= NULL
;
4746 istk
->fp
= fopen(file
, "r");
4748 src_set_fname(nasm_strdup(file
));
4752 error(ERR_FATAL
|ERR_NOFILE
, "unable to open input file `%s'",
4755 nested_mac_count
= 0;
4756 nested_rep_count
= 0;
4759 if (tasm_compatible_mode
) {
4760 stdmacpos
= nasm_stdmac
;
4762 stdmacpos
= nasm_stdmac_after_tasm
;
4764 any_extrastdmac
= extrastdmac
&& *extrastdmac
;
4769 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4770 * The caller, however, will also pass in 3 for preprocess-only so
4771 * we can set __PASS__ accordingly.
4773 pass
= apass
> 2 ? 2 : apass
;
4775 dephead
= deptail
= deplist
;
4777 StrList
*sl
= nasm_malloc(strlen(file
)+1+sizeof sl
->next
);
4779 strcpy(sl
->str
, file
);
4781 deptail
= &sl
->next
;
4785 * Define the __PASS__ macro. This is defined here unlike
4786 * all the other builtins, because it is special -- it varies between
4789 t
= nasm_malloc(sizeof(*t
));
4791 make_tok_num(t
, apass
);
4793 define_smacro(NULL
, "__PASS__", true, 0, t
);
4796 static char *pp_getline(void)
4803 * Fetch a tokenized line, either from the macro-expansion
4804 * buffer or from the input file.
4807 while (istk
->expansion
&& istk
->expansion
->finishes
) {
4808 Line
*l
= istk
->expansion
;
4809 if (!l
->finishes
->name
&& l
->finishes
->in_progress
> 1) {
4813 * This is a macro-end marker for a macro with no
4814 * name, which means it's not really a macro at all
4815 * but a %rep block, and the `in_progress' field is
4816 * more than 1, meaning that we still need to
4817 * repeat. (1 means the natural last repetition; 0
4818 * means termination by %exitrep.) We have
4819 * therefore expanded up to the %endrep, and must
4820 * push the whole block on to the expansion buffer
4821 * again. We don't bother to remove the macro-end
4822 * marker: we'd only have to generate another one
4825 l
->finishes
->in_progress
--;
4826 list_for_each(l
, l
->finishes
->expansion
) {
4827 Token
*t
, *tt
, **tail
;
4829 ll
= nasm_malloc(sizeof(Line
));
4830 ll
->next
= istk
->expansion
;
4831 ll
->finishes
= NULL
;
4835 list_for_each(t
, l
->first
) {
4836 if (t
->text
|| t
->type
== TOK_WHITESPACE
) {
4837 tt
= *tail
= new_Token(NULL
, t
->type
, t
->text
, 0);
4842 istk
->expansion
= ll
;
4846 * Check whether a `%rep' was started and not ended
4847 * within this macro expansion. This can happen and
4848 * should be detected. It's a fatal error because
4849 * I'm too confused to work out how to recover
4855 "defining with name in expansion");
4856 else if (istk
->mstk
->name
)
4858 "`%%rep' without `%%endrep' within"
4859 " expansion of macro `%s'",
4864 * FIXME: investigate the relationship at this point between
4865 * istk->mstk and l->finishes
4868 MMacro
*m
= istk
->mstk
;
4869 istk
->mstk
= m
->next_active
;
4872 * This was a real macro call, not a %rep, and
4873 * therefore the parameter information needs to
4878 l
->finishes
->in_progress
--;
4880 nasm_free(m
->params
);
4881 free_tlist(m
->iline
);
4882 nasm_free(m
->paramlen
);
4883 l
->finishes
->in_progress
= 0;
4888 istk
->expansion
= l
->next
;
4890 list
->downlevel(LIST_MACRO
);
4893 while (1) { /* until we get a line we can use */
4895 if (istk
->expansion
) { /* from a macro expansion */
4897 Line
*l
= istk
->expansion
;
4899 istk
->mstk
->lineno
++;
4901 istk
->expansion
= l
->next
;
4903 p
= detoken(tline
, false);
4904 list
->line(LIST_MACRO
, p
);
4909 if (line
) { /* from the current input file */
4910 line
= prepreproc(line
);
4911 tline
= tokenize(line
);
4916 * The current file has ended; work down the istk
4923 "expected `%%endif' before end of file");
4924 /* only set line and file name if there's a next node */
4926 src_set_linnum(i
->lineno
);
4927 nasm_free(src_set_fname(i
->fname
));
4930 list
->downlevel(LIST_INCLUDE
);
4934 if (istk
->expansion
&& istk
->expansion
->finishes
)
4940 * We must expand MMacro parameters and MMacro-local labels
4941 * _before_ we plunge into directive processing, to cope
4942 * with things like `%define something %1' such as STRUC
4943 * uses. Unless we're _defining_ a MMacro, in which case
4944 * those tokens should be left alone to go into the
4945 * definition; and unless we're in a non-emitting
4946 * condition, in which case we don't want to meddle with
4949 if (!defining
&& !(istk
->conds
&& !emitting(istk
->conds
->state
))
4950 && !(istk
->mstk
&& !istk
->mstk
->in_progress
)) {
4951 tline
= expand_mmac_params(tline
);
4955 * Check the line to see if it's a preprocessor directive.
4957 if (do_directive(tline
) == DIRECTIVE_FOUND
) {
4959 } else if (defining
) {
4961 * We're defining a multi-line macro. We emit nothing
4963 * shove the tokenized line on to the macro definition.
4965 Line
*l
= nasm_malloc(sizeof(Line
));
4966 l
->next
= defining
->expansion
;
4969 defining
->expansion
= l
;
4971 } else if (istk
->conds
&& !emitting(istk
->conds
->state
)) {
4973 * We're in a non-emitting branch of a condition block.
4974 * Emit nothing at all, not even a blank line: when we
4975 * emerge from the condition we'll give a line-number
4976 * directive so we keep our place correctly.
4980 } else if (istk
->mstk
&& !istk
->mstk
->in_progress
) {
4982 * We're in a %rep block which has been terminated, so
4983 * we're walking through to the %endrep without
4984 * emitting anything. Emit nothing at all, not even a
4985 * blank line: when we emerge from the %rep block we'll
4986 * give a line-number directive so we keep our place
4992 tline
= expand_smacro(tline
);
4993 if (!expand_mmacro(tline
)) {
4995 * De-tokenize the line again, and emit it.
4997 line
= detoken(tline
, true);
5001 continue; /* expand_mmacro calls free_tlist */
5009 static void pp_cleanup(int pass
)
5012 if (defining
->name
) {
5014 "end of file while still defining macro `%s'",
5017 error(ERR_NONFATAL
, "end of file while still in %%rep");
5020 free_mmacro(defining
);
5030 nasm_free(i
->fname
);
5035 nasm_free(src_set_fname(NULL
));
5040 while ((i
= ipath
)) {
5049 void pp_include_path(char *path
)
5053 i
= nasm_malloc(sizeof(IncPath
));
5054 i
->path
= path
? nasm_strdup(path
) : NULL
;
5067 void pp_pre_include(char *fname
)
5069 Token
*inc
, *space
, *name
;
5072 name
= new_Token(NULL
, TOK_INTERNAL_STRING
, fname
, 0);
5073 space
= new_Token(name
, TOK_WHITESPACE
, NULL
, 0);
5074 inc
= new_Token(space
, TOK_PREPROC_ID
, "%include", 0);
5076 l
= nasm_malloc(sizeof(Line
));
5083 void pp_pre_define(char *definition
)
5089 equals
= strchr(definition
, '=');
5090 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
5091 def
= new_Token(space
, TOK_PREPROC_ID
, "%define", 0);
5094 space
->next
= tokenize(definition
);
5098 l
= nasm_malloc(sizeof(Line
));
5105 void pp_pre_undefine(char *definition
)
5110 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
5111 def
= new_Token(space
, TOK_PREPROC_ID
, "%undef", 0);
5112 space
->next
= tokenize(definition
);
5114 l
= nasm_malloc(sizeof(Line
));
5122 * Added by Keith Kanios:
5124 * This function is used to assist with "runtime" preprocessor
5125 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
5127 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
5128 * PASS A VALID STRING TO THIS FUNCTION!!!!!
5131 void pp_runtime(char *definition
)
5135 def
= tokenize(definition
);
5136 if (do_directive(def
) == NO_DIRECTIVE_FOUND
)
5141 void pp_extra_stdmac(macros_t
*macros
)
5143 extrastdmac
= macros
;
5146 static void make_tok_num(Token
* tok
, int64_t val
)
5149 snprintf(numbuf
, sizeof(numbuf
), "%"PRId64
"", val
);
5150 tok
->text
= nasm_strdup(numbuf
);
5151 tok
->type
= TOK_NUMBER
;