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: obsolete since 2.10 */
1486 static int once
= 0;
1488 error(ERR_WARNING
, "context-local macro expansion"
1489 " to outer contexts will be deprecated"
1490 " starting in NASM 2.10, please update your"
1491 " code accordingly");
1494 error(ERR_WARNING
, "`%s': context through macro expansion", name
);
1505 * Check to see if a file is already in a string list
1507 static bool in_list(const StrList
*list
, const char *str
)
1510 if (!strcmp(list
->str
, str
))
1518 * Open an include file. This routine must always return a valid
1519 * file pointer if it returns - it's responsible for throwing an
1520 * ERR_FATAL and bombing out completely if not. It should also try
1521 * the include path one by one until it finds the file or reaches
1522 * the end of the path.
1524 static FILE *inc_fopen(const char *file
, StrList
**dhead
, StrList
***dtail
,
1529 IncPath
*ip
= ipath
;
1530 int len
= strlen(file
);
1531 size_t prefix_len
= 0;
1535 sl
= nasm_malloc(prefix_len
+len
+1+sizeof sl
->next
);
1536 memcpy(sl
->str
, prefix
, prefix_len
);
1537 memcpy(sl
->str
+prefix_len
, file
, len
+1);
1538 fp
= fopen(sl
->str
, "r");
1539 if (fp
&& dhead
&& !in_list(*dhead
, sl
->str
)) {
1557 prefix_len
= strlen(prefix
);
1559 /* -MG given and file not found */
1560 if (dhead
&& !in_list(*dhead
, file
)) {
1561 sl
= nasm_malloc(len
+1+sizeof sl
->next
);
1563 strcpy(sl
->str
, file
);
1571 error(ERR_FATAL
, "unable to open include file `%s'", file
);
1576 * Determine if we should warn on defining a single-line macro of
1577 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
1578 * return true if _any_ single-line macro of that name is defined.
1579 * Otherwise, will return true if a single-line macro with either
1580 * `nparam' or no parameters is defined.
1582 * If a macro with precisely the right number of parameters is
1583 * defined, or nparam is -1, the address of the definition structure
1584 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
1585 * is NULL, no action will be taken regarding its contents, and no
1588 * Note that this is also called with nparam zero to resolve
1591 * If you already know which context macro belongs to, you can pass
1592 * the context pointer as first parameter; if you won't but name begins
1593 * with %$ the context will be automatically computed. If all_contexts
1594 * is true, macro will be searched in outer contexts as well.
1597 smacro_defined(Context
* ctx
, const char *name
, int nparam
, SMacro
** defn
,
1600 struct hash_table
*smtbl
;
1604 smtbl
= &ctx
->localmac
;
1605 } else if (name
[0] == '%' && name
[1] == '$') {
1607 ctx
= get_ctx(name
, &name
, false);
1609 return false; /* got to return _something_ */
1610 smtbl
= &ctx
->localmac
;
1614 m
= (SMacro
*) hash_findix(smtbl
, name
);
1617 if (!mstrcmp(m
->name
, name
, m
->casesense
&& nocase
) &&
1618 (nparam
<= 0 || m
->nparam
== 0 || nparam
== (int) m
->nparam
)) {
1620 if (nparam
== (int) m
->nparam
|| nparam
== -1)
1634 * Count and mark off the parameters in a multi-line macro call.
1635 * This is called both from within the multi-line macro expansion
1636 * code, and also to mark off the default parameters when provided
1637 * in a %macro definition line.
1639 static void count_mmac_params(Token
* t
, int *nparam
, Token
*** params
)
1641 int paramsize
, brace
;
1643 *nparam
= paramsize
= 0;
1646 /* +1: we need space for the final NULL */
1647 if (*nparam
+1 >= paramsize
) {
1648 paramsize
+= PARAM_DELTA
;
1649 *params
= nasm_realloc(*params
, sizeof(**params
) * paramsize
);
1653 if (tok_is_(t
, "{"))
1655 (*params
)[(*nparam
)++] = t
;
1656 while (tok_isnt_(t
, brace
? "}" : ","))
1658 if (t
) { /* got a comma/brace */
1662 * Now we've found the closing brace, look further
1666 if (tok_isnt_(t
, ",")) {
1668 "braces do not enclose all of macro parameter");
1669 while (tok_isnt_(t
, ","))
1673 t
= t
->next
; /* eat the comma */
1680 * Determine whether one of the various `if' conditions is true or
1683 * We must free the tline we get passed.
1685 static bool if_condition(Token
* tline
, enum preproc_token ct
)
1687 enum pp_conditional i
= PP_COND(ct
);
1689 Token
*t
, *tt
, **tptr
, *origline
;
1690 struct tokenval tokval
;
1692 enum pp_token_type needtype
;
1699 j
= false; /* have we matched yet? */
1704 if (tline
->type
!= TOK_ID
) {
1706 "`%s' expects context identifiers", pp_directives
[ct
]);
1707 free_tlist(origline
);
1710 if (cstk
&& cstk
->name
&& !nasm_stricmp(tline
->text
, cstk
->name
))
1712 tline
= tline
->next
;
1717 j
= false; /* have we matched yet? */
1720 if (!tline
|| (tline
->type
!= TOK_ID
&&
1721 (tline
->type
!= TOK_PREPROC_ID
||
1722 tline
->text
[1] != '$'))) {
1724 "`%s' expects macro identifiers", pp_directives
[ct
]);
1727 if (smacro_defined(NULL
, tline
->text
, 0, NULL
, true))
1729 tline
= tline
->next
;
1734 tline
= expand_smacro(tline
);
1735 j
= false; /* have we matched yet? */
1738 if (!tline
|| (tline
->type
!= TOK_ID
&&
1739 tline
->type
!= TOK_STRING
&&
1740 (tline
->type
!= TOK_PREPROC_ID
||
1741 tline
->text
[1] != '!'))) {
1743 "`%s' expects environment variable names",
1748 if (tline
->type
== TOK_PREPROC_ID
)
1749 p
+= 2; /* Skip leading %! */
1750 if (*p
== '\'' || *p
== '\"' || *p
== '`')
1751 nasm_unquote_cstr(p
, ct
);
1754 tline
= tline
->next
;
1760 tline
= expand_smacro(tline
);
1762 while (tok_isnt_(tt
, ","))
1766 "`%s' expects two comma-separated arguments",
1771 j
= true; /* assume equality unless proved not */
1772 while ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) && tt
) {
1773 if (tt
->type
== TOK_OTHER
&& !strcmp(tt
->text
, ",")) {
1774 error(ERR_NONFATAL
, "`%s': more than one comma on line",
1778 if (t
->type
== TOK_WHITESPACE
) {
1782 if (tt
->type
== TOK_WHITESPACE
) {
1786 if (tt
->type
!= t
->type
) {
1787 j
= false; /* found mismatching tokens */
1790 /* When comparing strings, need to unquote them first */
1791 if (t
->type
== TOK_STRING
) {
1792 size_t l1
= nasm_unquote(t
->text
, NULL
);
1793 size_t l2
= nasm_unquote(tt
->text
, NULL
);
1799 if (mmemcmp(t
->text
, tt
->text
, l1
, i
== PPC_IFIDN
)) {
1803 } else if (mstrcmp(tt
->text
, t
->text
, i
== PPC_IFIDN
) != 0) {
1804 j
= false; /* found mismatching tokens */
1811 if ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) || tt
)
1812 j
= false; /* trailing gunk on one end or other */
1818 MMacro searching
, *mmac
;
1821 tline
= expand_id(tline
);
1822 if (!tok_type_(tline
, TOK_ID
)) {
1824 "`%s' expects a macro name", pp_directives
[ct
]);
1827 searching
.name
= nasm_strdup(tline
->text
);
1828 searching
.casesense
= true;
1829 searching
.plus
= false;
1830 searching
.nolist
= false;
1831 searching
.in_progress
= 0;
1832 searching
.max_depth
= 0;
1833 searching
.rep_nest
= NULL
;
1834 searching
.nparam_min
= 0;
1835 searching
.nparam_max
= INT_MAX
;
1836 tline
= expand_smacro(tline
->next
);
1839 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
1841 "`%s' expects a parameter count or nothing",
1844 searching
.nparam_min
= searching
.nparam_max
=
1845 readnum(tline
->text
, &j
);
1848 "unable to parse parameter count `%s'",
1851 if (tline
&& tok_is_(tline
->next
, "-")) {
1852 tline
= tline
->next
->next
;
1853 if (tok_is_(tline
, "*"))
1854 searching
.nparam_max
= INT_MAX
;
1855 else if (!tok_type_(tline
, TOK_NUMBER
))
1857 "`%s' expects a parameter count after `-'",
1860 searching
.nparam_max
= readnum(tline
->text
, &j
);
1863 "unable to parse parameter count `%s'",
1865 if (searching
.nparam_min
> searching
.nparam_max
)
1867 "minimum parameter count exceeds maximum");
1870 if (tline
&& tok_is_(tline
->next
, "+")) {
1871 tline
= tline
->next
;
1872 searching
.plus
= true;
1874 mmac
= (MMacro
*) hash_findix(&mmacros
, searching
.name
);
1876 if (!strcmp(mmac
->name
, searching
.name
) &&
1877 (mmac
->nparam_min
<= searching
.nparam_max
1879 && (searching
.nparam_min
<= mmac
->nparam_max
1886 if (tline
&& tline
->next
)
1887 error(ERR_WARNING
|ERR_PASS1
,
1888 "trailing garbage after %%ifmacro ignored");
1889 nasm_free(searching
.name
);
1898 needtype
= TOK_NUMBER
;
1901 needtype
= TOK_STRING
;
1905 t
= tline
= expand_smacro(tline
);
1907 while (tok_type_(t
, TOK_WHITESPACE
) ||
1908 (needtype
== TOK_NUMBER
&&
1909 tok_type_(t
, TOK_OTHER
) &&
1910 (t
->text
[0] == '-' || t
->text
[0] == '+') &&
1914 j
= tok_type_(t
, needtype
);
1918 t
= tline
= expand_smacro(tline
);
1919 while (tok_type_(t
, TOK_WHITESPACE
))
1924 t
= t
->next
; /* Skip the actual token */
1925 while (tok_type_(t
, TOK_WHITESPACE
))
1927 j
= !t
; /* Should be nothing left */
1932 t
= tline
= expand_smacro(tline
);
1933 while (tok_type_(t
, TOK_WHITESPACE
))
1936 j
= !t
; /* Should be empty */
1940 t
= tline
= expand_smacro(tline
);
1942 tokval
.t_type
= TOKEN_INVALID
;
1943 evalresult
= evaluate(ppscan
, tptr
, &tokval
,
1944 NULL
, pass
| CRITICAL
, error
, NULL
);
1948 error(ERR_WARNING
|ERR_PASS1
,
1949 "trailing garbage after expression ignored");
1950 if (!is_simple(evalresult
)) {
1952 "non-constant value given to `%s'", pp_directives
[ct
]);
1955 j
= reloc_value(evalresult
) != 0;
1960 "preprocessor directive `%s' not yet implemented",
1965 free_tlist(origline
);
1966 return j
^ PP_NEGATIVE(ct
);
1969 free_tlist(origline
);
1974 * Common code for defining an smacro
1976 static bool define_smacro(Context
*ctx
, const char *mname
, bool casesense
,
1977 int nparam
, Token
*expansion
)
1979 SMacro
*smac
, **smhead
;
1980 struct hash_table
*smtbl
;
1982 if (smacro_defined(ctx
, mname
, nparam
, &smac
, casesense
)) {
1984 error(ERR_WARNING
|ERR_PASS1
,
1985 "single-line macro `%s' defined both with and"
1986 " without parameters", mname
);
1988 * Some instances of the old code considered this a failure,
1989 * some others didn't. What is the right thing to do here?
1991 free_tlist(expansion
);
1992 return false; /* Failure */
1995 * We're redefining, so we have to take over an
1996 * existing SMacro structure. This means freeing
1997 * what was already in it.
1999 nasm_free(smac
->name
);
2000 free_tlist(smac
->expansion
);
2003 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
2004 smhead
= (SMacro
**) hash_findi_add(smtbl
, mname
);
2005 smac
= nasm_malloc(sizeof(SMacro
));
2006 smac
->next
= *smhead
;
2009 smac
->name
= nasm_strdup(mname
);
2010 smac
->casesense
= casesense
;
2011 smac
->nparam
= nparam
;
2012 smac
->expansion
= expansion
;
2013 smac
->in_progress
= false;
2014 return true; /* Success */
2018 * Undefine an smacro
2020 static void undef_smacro(Context
*ctx
, const char *mname
)
2022 SMacro
**smhead
, *s
, **sp
;
2023 struct hash_table
*smtbl
;
2025 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
2026 smhead
= (SMacro
**)hash_findi(smtbl
, mname
, NULL
);
2030 * We now have a macro name... go hunt for it.
2033 while ((s
= *sp
) != NULL
) {
2034 if (!mstrcmp(s
->name
, mname
, s
->casesense
)) {
2037 free_tlist(s
->expansion
);
2047 * Parse a mmacro specification.
2049 static bool parse_mmacro_spec(Token
*tline
, MMacro
*def
, const char *directive
)
2053 tline
= tline
->next
;
2055 tline
= expand_id(tline
);
2056 if (!tok_type_(tline
, TOK_ID
)) {
2057 error(ERR_NONFATAL
, "`%s' expects a macro name", directive
);
2062 def
->name
= nasm_strdup(tline
->text
);
2064 def
->nolist
= false;
2065 def
->in_progress
= 0;
2066 def
->rep_nest
= NULL
;
2067 def
->nparam_min
= 0;
2068 def
->nparam_max
= 0;
2070 tline
= expand_smacro(tline
->next
);
2072 if (!tok_type_(tline
, TOK_NUMBER
)) {
2073 error(ERR_NONFATAL
, "`%s' expects a parameter count", directive
);
2075 def
->nparam_min
= def
->nparam_max
=
2076 readnum(tline
->text
, &err
);
2079 "unable to parse parameter count `%s'", tline
->text
);
2081 if (tline
&& tok_is_(tline
->next
, "-")) {
2082 tline
= tline
->next
->next
;
2083 if (tok_is_(tline
, "*")) {
2084 def
->nparam_max
= INT_MAX
;
2085 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
2087 "`%s' expects a parameter count after `-'", directive
);
2089 def
->nparam_max
= readnum(tline
->text
, &err
);
2091 error(ERR_NONFATAL
, "unable to parse parameter count `%s'",
2094 if (def
->nparam_min
> def
->nparam_max
) {
2095 error(ERR_NONFATAL
, "minimum parameter count exceeds maximum");
2099 if (tline
&& tok_is_(tline
->next
, "+")) {
2100 tline
= tline
->next
;
2103 if (tline
&& tok_type_(tline
->next
, TOK_ID
) &&
2104 !nasm_stricmp(tline
->next
->text
, ".nolist")) {
2105 tline
= tline
->next
;
2110 * Handle default parameters.
2112 if (tline
&& tline
->next
) {
2113 def
->dlist
= tline
->next
;
2115 count_mmac_params(def
->dlist
, &def
->ndefs
, &def
->defaults
);
2118 def
->defaults
= NULL
;
2120 def
->expansion
= NULL
;
2122 if (def
->defaults
&& def
->ndefs
> def
->nparam_max
- def
->nparam_min
&&
2124 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MDP
,
2125 "too many default macro parameters");
2132 * Decode a size directive
2134 static int parse_size(const char *str
) {
2135 static const char *size_names
[] =
2136 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
2137 static const int sizes
[] =
2138 { 0, 1, 4, 16, 8, 10, 2, 32 };
2140 return sizes
[bsii(str
, size_names
, ARRAY_SIZE(size_names
))+1];
2144 * find and process preprocessor directive in passed line
2145 * Find out if a line contains a preprocessor directive, and deal
2148 * If a directive _is_ found, it is the responsibility of this routine
2149 * (and not the caller) to free_tlist() the line.
2151 * @param tline a pointer to the current tokeninzed line linked list
2152 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
2155 static int do_directive(Token
* tline
)
2157 enum preproc_token i
;
2170 MMacro
*mmac
, **mmhead
;
2171 Token
*t
, *tt
, *param_start
, *macro_start
, *last
, **tptr
, *origline
;
2173 struct tokenval tokval
;
2175 MMacro
*tmp_defining
; /* Used when manipulating rep_nest */
2183 if (!tline
|| !tok_type_(tline
, TOK_PREPROC_ID
) ||
2184 (tline
->text
[1] == '%' || tline
->text
[1] == '$'
2185 || tline
->text
[1] == '!'))
2186 return NO_DIRECTIVE_FOUND
;
2188 i
= pp_token_hash(tline
->text
);
2191 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2192 * since they are known to be buggy at moment, we need to fix them
2193 * in future release (2.09-2.10)
2195 if (i
== PP_RMACRO
|| i
== PP_RMACRO
|| i
== PP_EXITMACRO
) {
2196 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2198 return NO_DIRECTIVE_FOUND
;
2202 * If we're in a non-emitting branch of a condition construct,
2203 * or walking to the end of an already terminated %rep block,
2204 * we should ignore all directives except for condition
2207 if (((istk
->conds
&& !emitting(istk
->conds
->state
)) ||
2208 (istk
->mstk
&& !istk
->mstk
->in_progress
)) && !is_condition(i
)) {
2209 return NO_DIRECTIVE_FOUND
;
2213 * If we're defining a macro or reading a %rep block, we should
2214 * ignore all directives except for %macro/%imacro (which nest),
2215 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2216 * If we're in a %rep block, another %rep nests, so should be let through.
2218 if (defining
&& i
!= PP_MACRO
&& i
!= PP_IMACRO
&&
2219 i
!= PP_RMACRO
&& i
!= PP_IRMACRO
&&
2220 i
!= PP_ENDMACRO
&& i
!= PP_ENDM
&&
2221 (defining
->name
|| (i
!= PP_ENDREP
&& i
!= PP_REP
))) {
2222 return NO_DIRECTIVE_FOUND
;
2226 if (i
== PP_MACRO
|| i
== PP_IMACRO
||
2227 i
== PP_RMACRO
|| i
== PP_IRMACRO
) {
2229 return NO_DIRECTIVE_FOUND
;
2230 } else if (nested_mac_count
> 0) {
2231 if (i
== PP_ENDMACRO
) {
2233 return NO_DIRECTIVE_FOUND
;
2236 if (!defining
->name
) {
2239 return NO_DIRECTIVE_FOUND
;
2240 } else if (nested_rep_count
> 0) {
2241 if (i
== PP_ENDREP
) {
2243 return NO_DIRECTIVE_FOUND
;
2251 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2253 return NO_DIRECTIVE_FOUND
; /* didn't get it */
2256 /* Directive to tell NASM what the default stack size is. The
2257 * default is for a 16-bit stack, and this can be overriden with
2260 tline
= tline
->next
;
2261 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2262 tline
= tline
->next
;
2263 if (!tline
|| tline
->type
!= TOK_ID
) {
2264 error(ERR_NONFATAL
, "`%%stacksize' missing size parameter");
2265 free_tlist(origline
);
2266 return DIRECTIVE_FOUND
;
2268 if (nasm_stricmp(tline
->text
, "flat") == 0) {
2269 /* All subsequent ARG directives are for a 32-bit stack */
2271 StackPointer
= "ebp";
2274 } else if (nasm_stricmp(tline
->text
, "flat64") == 0) {
2275 /* All subsequent ARG directives are for a 64-bit stack */
2277 StackPointer
= "rbp";
2280 } else if (nasm_stricmp(tline
->text
, "large") == 0) {
2281 /* All subsequent ARG directives are for a 16-bit stack,
2282 * far function call.
2285 StackPointer
= "bp";
2288 } else if (nasm_stricmp(tline
->text
, "small") == 0) {
2289 /* All subsequent ARG directives are for a 16-bit stack,
2290 * far function call. We don't support near functions.
2293 StackPointer
= "bp";
2297 error(ERR_NONFATAL
, "`%%stacksize' invalid size type");
2298 free_tlist(origline
);
2299 return DIRECTIVE_FOUND
;
2301 free_tlist(origline
);
2302 return DIRECTIVE_FOUND
;
2305 /* TASM like ARG directive to define arguments to functions, in
2306 * the following form:
2308 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2312 char *arg
, directive
[256];
2313 int size
= StackSize
;
2315 /* Find the argument name */
2316 tline
= tline
->next
;
2317 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2318 tline
= tline
->next
;
2319 if (!tline
|| tline
->type
!= TOK_ID
) {
2320 error(ERR_NONFATAL
, "`%%arg' missing argument parameter");
2321 free_tlist(origline
);
2322 return DIRECTIVE_FOUND
;
2326 /* Find the argument size type */
2327 tline
= tline
->next
;
2328 if (!tline
|| tline
->type
!= TOK_OTHER
2329 || tline
->text
[0] != ':') {
2331 "Syntax error processing `%%arg' directive");
2332 free_tlist(origline
);
2333 return DIRECTIVE_FOUND
;
2335 tline
= tline
->next
;
2336 if (!tline
|| tline
->type
!= TOK_ID
) {
2337 error(ERR_NONFATAL
, "`%%arg' missing size type parameter");
2338 free_tlist(origline
);
2339 return DIRECTIVE_FOUND
;
2342 /* Allow macro expansion of type parameter */
2343 tt
= tokenize(tline
->text
);
2344 tt
= expand_smacro(tt
);
2345 size
= parse_size(tt
->text
);
2348 "Invalid size type for `%%arg' missing directive");
2350 free_tlist(origline
);
2351 return DIRECTIVE_FOUND
;
2355 /* Round up to even stack slots */
2356 size
= ALIGN(size
, StackSize
);
2358 /* Now define the macro for the argument */
2359 snprintf(directive
, sizeof(directive
), "%%define %s (%s+%d)",
2360 arg
, StackPointer
, offset
);
2361 do_directive(tokenize(directive
));
2364 /* Move to the next argument in the list */
2365 tline
= tline
->next
;
2366 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2367 tline
= tline
->next
;
2368 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2370 free_tlist(origline
);
2371 return DIRECTIVE_FOUND
;
2374 /* TASM like LOCAL directive to define local variables for a
2375 * function, in the following form:
2377 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2379 * The '= LocalSize' at the end is ignored by NASM, but is
2380 * required by TASM to define the local parameter size (and used
2381 * by the TASM macro package).
2383 offset
= LocalOffset
;
2385 char *local
, directive
[256];
2386 int size
= StackSize
;
2388 /* Find the argument name */
2389 tline
= tline
->next
;
2390 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2391 tline
= tline
->next
;
2392 if (!tline
|| tline
->type
!= TOK_ID
) {
2394 "`%%local' missing argument parameter");
2395 free_tlist(origline
);
2396 return DIRECTIVE_FOUND
;
2398 local
= tline
->text
;
2400 /* Find the argument size type */
2401 tline
= tline
->next
;
2402 if (!tline
|| tline
->type
!= TOK_OTHER
2403 || tline
->text
[0] != ':') {
2405 "Syntax error processing `%%local' directive");
2406 free_tlist(origline
);
2407 return DIRECTIVE_FOUND
;
2409 tline
= tline
->next
;
2410 if (!tline
|| tline
->type
!= TOK_ID
) {
2412 "`%%local' missing size type parameter");
2413 free_tlist(origline
);
2414 return DIRECTIVE_FOUND
;
2417 /* Allow macro expansion of type parameter */
2418 tt
= tokenize(tline
->text
);
2419 tt
= expand_smacro(tt
);
2420 size
= parse_size(tt
->text
);
2423 "Invalid size type for `%%local' missing directive");
2425 free_tlist(origline
);
2426 return DIRECTIVE_FOUND
;
2430 /* Round up to even stack slots */
2431 size
= ALIGN(size
, StackSize
);
2433 offset
+= size
; /* Negative offset, increment before */
2435 /* Now define the macro for the argument */
2436 snprintf(directive
, sizeof(directive
), "%%define %s (%s-%d)",
2437 local
, StackPointer
, offset
);
2438 do_directive(tokenize(directive
));
2440 /* Now define the assign to setup the enter_c macro correctly */
2441 snprintf(directive
, sizeof(directive
),
2442 "%%assign %%$localsize %%$localsize+%d", size
);
2443 do_directive(tokenize(directive
));
2445 /* Move to the next argument in the list */
2446 tline
= tline
->next
;
2447 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2448 tline
= tline
->next
;
2449 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2450 LocalOffset
= offset
;
2451 free_tlist(origline
);
2452 return DIRECTIVE_FOUND
;
2456 error(ERR_WARNING
|ERR_PASS1
,
2457 "trailing garbage after `%%clear' ignored");
2460 free_tlist(origline
);
2461 return DIRECTIVE_FOUND
;
2464 t
= tline
->next
= expand_smacro(tline
->next
);
2466 if (!t
|| (t
->type
!= TOK_STRING
&&
2467 t
->type
!= TOK_INTERNAL_STRING
)) {
2468 error(ERR_NONFATAL
, "`%%depend' expects a file name");
2469 free_tlist(origline
);
2470 return DIRECTIVE_FOUND
; /* but we did _something_ */
2473 error(ERR_WARNING
|ERR_PASS1
,
2474 "trailing garbage after `%%depend' ignored");
2476 if (t
->type
!= TOK_INTERNAL_STRING
)
2477 nasm_unquote_cstr(p
, i
);
2478 if (dephead
&& !in_list(*dephead
, p
)) {
2479 StrList
*sl
= nasm_malloc(strlen(p
)+1+sizeof sl
->next
);
2483 deptail
= &sl
->next
;
2485 free_tlist(origline
);
2486 return DIRECTIVE_FOUND
;
2489 t
= tline
->next
= expand_smacro(tline
->next
);
2492 if (!t
|| (t
->type
!= TOK_STRING
&&
2493 t
->type
!= TOK_INTERNAL_STRING
)) {
2494 error(ERR_NONFATAL
, "`%%include' expects a file name");
2495 free_tlist(origline
);
2496 return DIRECTIVE_FOUND
; /* but we did _something_ */
2499 error(ERR_WARNING
|ERR_PASS1
,
2500 "trailing garbage after `%%include' ignored");
2502 if (t
->type
!= TOK_INTERNAL_STRING
)
2503 nasm_unquote_cstr(p
, i
);
2504 inc
= nasm_malloc(sizeof(Include
));
2507 inc
->fp
= inc_fopen(p
, dephead
, &deptail
, pass
== 0);
2509 /* -MG given but file not found */
2512 inc
->fname
= src_set_fname(nasm_strdup(p
));
2513 inc
->lineno
= src_set_linnum(0);
2515 inc
->expansion
= NULL
;
2518 list
->uplevel(LIST_INCLUDE
);
2520 free_tlist(origline
);
2521 return DIRECTIVE_FOUND
;
2525 static macros_t
*use_pkg
;
2526 const char *pkg_macro
= NULL
;
2528 tline
= tline
->next
;
2530 tline
= expand_id(tline
);
2532 if (!tline
|| (tline
->type
!= TOK_STRING
&&
2533 tline
->type
!= TOK_INTERNAL_STRING
&&
2534 tline
->type
!= TOK_ID
)) {
2535 error(ERR_NONFATAL
, "`%%use' expects a package name");
2536 free_tlist(origline
);
2537 return DIRECTIVE_FOUND
; /* but we did _something_ */
2540 error(ERR_WARNING
|ERR_PASS1
,
2541 "trailing garbage after `%%use' ignored");
2542 if (tline
->type
== TOK_STRING
)
2543 nasm_unquote_cstr(tline
->text
, i
);
2544 use_pkg
= nasm_stdmac_find_package(tline
->text
);
2546 error(ERR_NONFATAL
, "unknown `%%use' package: %s", tline
->text
);
2548 pkg_macro
= (char *)use_pkg
+ 1; /* The first string will be <%define>__USE_*__ */
2549 if (use_pkg
&& ! smacro_defined(NULL
, pkg_macro
, 0, NULL
, true)) {
2550 /* Not already included, go ahead and include it */
2551 stdmacpos
= use_pkg
;
2553 free_tlist(origline
);
2554 return DIRECTIVE_FOUND
;
2559 tline
= tline
->next
;
2561 tline
= expand_id(tline
);
2563 if (!tok_type_(tline
, TOK_ID
)) {
2564 error(ERR_NONFATAL
, "`%s' expects a context identifier",
2566 free_tlist(origline
);
2567 return DIRECTIVE_FOUND
; /* but we did _something_ */
2570 error(ERR_WARNING
|ERR_PASS1
,
2571 "trailing garbage after `%s' ignored",
2573 p
= nasm_strdup(tline
->text
);
2575 p
= NULL
; /* Anonymous */
2579 ctx
= nasm_malloc(sizeof(Context
));
2581 hash_init(&ctx
->localmac
, HASH_SMALL
);
2583 ctx
->number
= unique
++;
2588 error(ERR_NONFATAL
, "`%s': context stack is empty",
2590 } else if (i
== PP_POP
) {
2591 if (p
&& (!cstk
->name
|| nasm_stricmp(p
, cstk
->name
)))
2592 error(ERR_NONFATAL
, "`%%pop' in wrong context: %s, "
2594 cstk
->name
? cstk
->name
: "anonymous", p
);
2599 nasm_free(cstk
->name
);
2605 free_tlist(origline
);
2606 return DIRECTIVE_FOUND
;
2608 severity
= ERR_FATAL
;
2611 severity
= ERR_NONFATAL
;
2614 severity
= ERR_WARNING
|ERR_WARN_USER
;
2619 /* Only error out if this is the final pass */
2620 if (pass
!= 2 && i
!= PP_FATAL
)
2621 return DIRECTIVE_FOUND
;
2623 tline
->next
= expand_smacro(tline
->next
);
2624 tline
= tline
->next
;
2626 t
= tline
? tline
->next
: NULL
;
2628 if (tok_type_(tline
, TOK_STRING
) && !t
) {
2629 /* The line contains only a quoted string */
2631 nasm_unquote(p
, NULL
); /* Ignore NUL character truncation */
2632 error(severity
, "%s", p
);
2634 /* Not a quoted string, or more than a quoted string */
2635 p
= detoken(tline
, false);
2636 error(severity
, "%s", p
);
2639 free_tlist(origline
);
2640 return DIRECTIVE_FOUND
;
2644 if (istk
->conds
&& !emitting(istk
->conds
->state
))
2647 j
= if_condition(tline
->next
, i
);
2648 tline
->next
= NULL
; /* it got freed */
2649 j
= j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2651 cond
= nasm_malloc(sizeof(Cond
));
2652 cond
->next
= istk
->conds
;
2656 istk
->mstk
->condcnt
++;
2657 free_tlist(origline
);
2658 return DIRECTIVE_FOUND
;
2662 error(ERR_FATAL
, "`%s': no matching `%%if'", pp_directives
[i
]);
2663 switch(istk
->conds
->state
) {
2665 istk
->conds
->state
= COND_DONE
;
2672 case COND_ELSE_TRUE
:
2673 case COND_ELSE_FALSE
:
2674 error_precond(ERR_WARNING
|ERR_PASS1
,
2675 "`%%elif' after `%%else' ignored");
2676 istk
->conds
->state
= COND_NEVER
;
2681 * IMPORTANT: In the case of %if, we will already have
2682 * called expand_mmac_params(); however, if we're
2683 * processing an %elif we must have been in a
2684 * non-emitting mode, which would have inhibited
2685 * the normal invocation of expand_mmac_params().
2686 * Therefore, we have to do it explicitly here.
2688 j
= if_condition(expand_mmac_params(tline
->next
), i
);
2689 tline
->next
= NULL
; /* it got freed */
2690 istk
->conds
->state
=
2691 j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2694 free_tlist(origline
);
2695 return DIRECTIVE_FOUND
;
2699 error_precond(ERR_WARNING
|ERR_PASS1
,
2700 "trailing garbage after `%%else' ignored");
2702 error(ERR_FATAL
, "`%%else': no matching `%%if'");
2703 switch(istk
->conds
->state
) {
2706 istk
->conds
->state
= COND_ELSE_FALSE
;
2713 istk
->conds
->state
= COND_ELSE_TRUE
;
2716 case COND_ELSE_TRUE
:
2717 case COND_ELSE_FALSE
:
2718 error_precond(ERR_WARNING
|ERR_PASS1
,
2719 "`%%else' after `%%else' ignored.");
2720 istk
->conds
->state
= COND_NEVER
;
2723 free_tlist(origline
);
2724 return DIRECTIVE_FOUND
;
2728 error_precond(ERR_WARNING
|ERR_PASS1
,
2729 "trailing garbage after `%%endif' ignored");
2731 error(ERR_FATAL
, "`%%endif': no matching `%%if'");
2733 istk
->conds
= cond
->next
;
2736 istk
->mstk
->condcnt
--;
2737 free_tlist(origline
);
2738 return DIRECTIVE_FOUND
;
2745 error(ERR_FATAL
, "`%s': already defining a macro",
2747 return DIRECTIVE_FOUND
;
2749 defining
= nasm_malloc(sizeof(MMacro
));
2750 defining
->max_depth
=
2751 (i
== PP_RMACRO
) || (i
== PP_IRMACRO
) ? DEADMAN_LIMIT
: 0;
2752 defining
->casesense
= (i
== PP_MACRO
) || (i
== PP_RMACRO
);
2753 if (!parse_mmacro_spec(tline
, defining
, pp_directives
[i
])) {
2754 nasm_free(defining
);
2756 return DIRECTIVE_FOUND
;
2759 mmac
= (MMacro
*) hash_findix(&mmacros
, defining
->name
);
2761 if (!strcmp(mmac
->name
, defining
->name
) &&
2762 (mmac
->nparam_min
<= defining
->nparam_max
2764 && (defining
->nparam_min
<= mmac
->nparam_max
2766 error(ERR_WARNING
|ERR_PASS1
,
2767 "redefining multi-line macro `%s'", defining
->name
);
2768 return DIRECTIVE_FOUND
;
2772 free_tlist(origline
);
2773 return DIRECTIVE_FOUND
;
2777 if (! (defining
&& defining
->name
)) {
2778 error(ERR_NONFATAL
, "`%s': not defining a macro", tline
->text
);
2779 return DIRECTIVE_FOUND
;
2781 mmhead
= (MMacro
**) hash_findi_add(&mmacros
, defining
->name
);
2782 defining
->next
= *mmhead
;
2785 free_tlist(origline
);
2786 return DIRECTIVE_FOUND
;
2790 * We must search along istk->expansion until we hit a
2791 * macro-end marker for a macro with a name. Then we
2792 * bypass all lines between exitmacro and endmacro.
2794 list_for_each(l
, istk
->expansion
)
2795 if (l
->finishes
&& l
->finishes
->name
)
2800 * Remove all conditional entries relative to this
2801 * macro invocation. (safe to do in this context)
2803 for ( ; l
->finishes
->condcnt
> 0; l
->finishes
->condcnt
--) {
2805 istk
->conds
= cond
->next
;
2808 istk
->expansion
= l
;
2810 error(ERR_NONFATAL
, "`%%exitmacro' not within `%%macro' block");
2812 free_tlist(origline
);
2813 return DIRECTIVE_FOUND
;
2821 spec
.casesense
= (i
== PP_UNMACRO
);
2822 if (!parse_mmacro_spec(tline
, &spec
, pp_directives
[i
])) {
2823 return DIRECTIVE_FOUND
;
2825 mmac_p
= (MMacro
**) hash_findi(&mmacros
, spec
.name
, NULL
);
2826 while (mmac_p
&& *mmac_p
) {
2828 if (mmac
->casesense
== spec
.casesense
&&
2829 !mstrcmp(mmac
->name
, spec
.name
, spec
.casesense
) &&
2830 mmac
->nparam_min
== spec
.nparam_min
&&
2831 mmac
->nparam_max
== spec
.nparam_max
&&
2832 mmac
->plus
== spec
.plus
) {
2833 *mmac_p
= mmac
->next
;
2836 mmac_p
= &mmac
->next
;
2839 free_tlist(origline
);
2840 free_tlist(spec
.dlist
);
2841 return DIRECTIVE_FOUND
;
2845 if (tline
->next
&& tline
->next
->type
== TOK_WHITESPACE
)
2846 tline
= tline
->next
;
2848 free_tlist(origline
);
2849 error(ERR_NONFATAL
, "`%%rotate' missing rotate count");
2850 return DIRECTIVE_FOUND
;
2852 t
= expand_smacro(tline
->next
);
2854 free_tlist(origline
);
2857 tokval
.t_type
= TOKEN_INVALID
;
2859 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2862 return DIRECTIVE_FOUND
;
2864 error(ERR_WARNING
|ERR_PASS1
,
2865 "trailing garbage after expression ignored");
2866 if (!is_simple(evalresult
)) {
2867 error(ERR_NONFATAL
, "non-constant value given to `%%rotate'");
2868 return DIRECTIVE_FOUND
;
2871 while (mmac
&& !mmac
->name
) /* avoid mistaking %reps for macros */
2872 mmac
= mmac
->next_active
;
2874 error(ERR_NONFATAL
, "`%%rotate' invoked outside a macro call");
2875 } else if (mmac
->nparam
== 0) {
2877 "`%%rotate' invoked within macro without parameters");
2879 int rotate
= mmac
->rotate
+ reloc_value(evalresult
);
2881 rotate
%= (int)mmac
->nparam
;
2883 rotate
+= mmac
->nparam
;
2885 mmac
->rotate
= rotate
;
2887 return DIRECTIVE_FOUND
;
2892 tline
= tline
->next
;
2893 } while (tok_type_(tline
, TOK_WHITESPACE
));
2895 if (tok_type_(tline
, TOK_ID
) &&
2896 nasm_stricmp(tline
->text
, ".nolist") == 0) {
2899 tline
= tline
->next
;
2900 } while (tok_type_(tline
, TOK_WHITESPACE
));
2904 t
= expand_smacro(tline
);
2906 tokval
.t_type
= TOKEN_INVALID
;
2908 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2910 free_tlist(origline
);
2911 return DIRECTIVE_FOUND
;
2914 error(ERR_WARNING
|ERR_PASS1
,
2915 "trailing garbage after expression ignored");
2916 if (!is_simple(evalresult
)) {
2917 error(ERR_NONFATAL
, "non-constant value given to `%%rep'");
2918 return DIRECTIVE_FOUND
;
2920 count
= reloc_value(evalresult
);
2921 if (count
>= REP_LIMIT
) {
2922 error(ERR_NONFATAL
, "`%%rep' value exceeds limit");
2927 error(ERR_NONFATAL
, "`%%rep' expects a repeat count");
2930 free_tlist(origline
);
2932 tmp_defining
= defining
;
2933 defining
= nasm_malloc(sizeof(MMacro
));
2934 defining
->prev
= NULL
;
2935 defining
->name
= NULL
; /* flags this macro as a %rep block */
2936 defining
->casesense
= false;
2937 defining
->plus
= false;
2938 defining
->nolist
= nolist
;
2939 defining
->in_progress
= count
;
2940 defining
->max_depth
= 0;
2941 defining
->nparam_min
= defining
->nparam_max
= 0;
2942 defining
->defaults
= NULL
;
2943 defining
->dlist
= NULL
;
2944 defining
->expansion
= NULL
;
2945 defining
->next_active
= istk
->mstk
;
2946 defining
->rep_nest
= tmp_defining
;
2947 return DIRECTIVE_FOUND
;
2950 if (!defining
|| defining
->name
) {
2951 error(ERR_NONFATAL
, "`%%endrep': no matching `%%rep'");
2952 return DIRECTIVE_FOUND
;
2956 * Now we have a "macro" defined - although it has no name
2957 * and we won't be entering it in the hash tables - we must
2958 * push a macro-end marker for it on to istk->expansion.
2959 * After that, it will take care of propagating itself (a
2960 * macro-end marker line for a macro which is really a %rep
2961 * block will cause the macro to be re-expanded, complete
2962 * with another macro-end marker to ensure the process
2963 * continues) until the whole expansion is forcibly removed
2964 * from istk->expansion by a %exitrep.
2966 l
= nasm_malloc(sizeof(Line
));
2967 l
->next
= istk
->expansion
;
2968 l
->finishes
= defining
;
2970 istk
->expansion
= l
;
2972 istk
->mstk
= defining
;
2974 list
->uplevel(defining
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
2975 tmp_defining
= defining
;
2976 defining
= defining
->rep_nest
;
2977 free_tlist(origline
);
2978 return DIRECTIVE_FOUND
;
2982 * We must search along istk->expansion until we hit a
2983 * macro-end marker for a macro with no name. Then we set
2984 * its `in_progress' flag to 0.
2986 list_for_each(l
, istk
->expansion
)
2987 if (l
->finishes
&& !l
->finishes
->name
)
2991 l
->finishes
->in_progress
= 1;
2993 error(ERR_NONFATAL
, "`%%exitrep' not within `%%rep' block");
2994 free_tlist(origline
);
2995 return DIRECTIVE_FOUND
;
3001 casesense
= (i
== PP_DEFINE
|| i
== PP_XDEFINE
);
3003 tline
= tline
->next
;
3005 tline
= expand_id(tline
);
3006 if (!tline
|| (tline
->type
!= TOK_ID
&&
3007 (tline
->type
!= TOK_PREPROC_ID
||
3008 tline
->text
[1] != '$'))) {
3009 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
3011 free_tlist(origline
);
3012 return DIRECTIVE_FOUND
;
3015 ctx
= get_ctx(tline
->text
, &mname
, false);
3017 param_start
= tline
= tline
->next
;
3020 /* Expand the macro definition now for %xdefine and %ixdefine */
3021 if ((i
== PP_XDEFINE
) || (i
== PP_IXDEFINE
))
3022 tline
= expand_smacro(tline
);
3024 if (tok_is_(tline
, "(")) {
3026 * This macro has parameters.
3029 tline
= tline
->next
;
3033 error(ERR_NONFATAL
, "parameter identifier expected");
3034 free_tlist(origline
);
3035 return DIRECTIVE_FOUND
;
3037 if (tline
->type
!= TOK_ID
) {
3039 "`%s': parameter identifier expected",
3041 free_tlist(origline
);
3042 return DIRECTIVE_FOUND
;
3044 tline
->type
= TOK_SMAC_PARAM
+ nparam
++;
3045 tline
= tline
->next
;
3047 if (tok_is_(tline
, ",")) {
3048 tline
= tline
->next
;
3050 if (!tok_is_(tline
, ")")) {
3052 "`)' expected to terminate macro template");
3053 free_tlist(origline
);
3054 return DIRECTIVE_FOUND
;
3060 tline
= tline
->next
;
3062 if (tok_type_(tline
, TOK_WHITESPACE
))
3063 last
= tline
, tline
= tline
->next
;
3068 if (t
->type
== TOK_ID
) {
3069 list_for_each(tt
, param_start
)
3070 if (tt
->type
>= TOK_SMAC_PARAM
&&
3071 !strcmp(tt
->text
, t
->text
))
3075 t
->next
= macro_start
;
3080 * Good. We now have a macro name, a parameter count, and a
3081 * token list (in reverse order) for an expansion. We ought
3082 * to be OK just to create an SMacro, store it, and let
3083 * free_tlist have the rest of the line (which we have
3084 * carefully re-terminated after chopping off the expansion
3087 define_smacro(ctx
, mname
, casesense
, nparam
, macro_start
);
3088 free_tlist(origline
);
3089 return DIRECTIVE_FOUND
;
3092 tline
= tline
->next
;
3094 tline
= expand_id(tline
);
3095 if (!tline
|| (tline
->type
!= TOK_ID
&&
3096 (tline
->type
!= TOK_PREPROC_ID
||
3097 tline
->text
[1] != '$'))) {
3098 error(ERR_NONFATAL
, "`%%undef' expects a macro identifier");
3099 free_tlist(origline
);
3100 return DIRECTIVE_FOUND
;
3103 error(ERR_WARNING
|ERR_PASS1
,
3104 "trailing garbage after macro name ignored");
3107 /* Find the context that symbol belongs to */
3108 ctx
= get_ctx(tline
->text
, &mname
, false);
3109 undef_smacro(ctx
, mname
);
3110 free_tlist(origline
);
3111 return DIRECTIVE_FOUND
;
3115 casesense
= (i
== PP_DEFSTR
);
3117 tline
= tline
->next
;
3119 tline
= expand_id(tline
);
3120 if (!tline
|| (tline
->type
!= TOK_ID
&&
3121 (tline
->type
!= TOK_PREPROC_ID
||
3122 tline
->text
[1] != '$'))) {
3123 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
3125 free_tlist(origline
);
3126 return DIRECTIVE_FOUND
;
3129 ctx
= get_ctx(tline
->text
, &mname
, false);
3131 tline
= expand_smacro(tline
->next
);
3134 while (tok_type_(tline
, TOK_WHITESPACE
))
3135 tline
= delete_Token(tline
);
3137 p
= detoken(tline
, false);
3138 macro_start
= nasm_malloc(sizeof(*macro_start
));
3139 macro_start
->next
= NULL
;
3140 macro_start
->text
= nasm_quote(p
, strlen(p
));
3141 macro_start
->type
= TOK_STRING
;
3142 macro_start
->a
.mac
= NULL
;
3146 * We now have a macro name, an implicit parameter count of
3147 * zero, and a string token to use as an expansion. Create
3148 * and store an SMacro.
3150 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3151 free_tlist(origline
);
3152 return DIRECTIVE_FOUND
;
3156 casesense
= (i
== PP_DEFTOK
);
3158 tline
= tline
->next
;
3160 tline
= expand_id(tline
);
3161 if (!tline
|| (tline
->type
!= TOK_ID
&&
3162 (tline
->type
!= TOK_PREPROC_ID
||
3163 tline
->text
[1] != '$'))) {
3165 "`%s' expects a macro identifier as first parameter",
3167 free_tlist(origline
);
3168 return DIRECTIVE_FOUND
;
3170 ctx
= get_ctx(tline
->text
, &mname
, false);
3172 tline
= expand_smacro(tline
->next
);
3176 while (tok_type_(t
, TOK_WHITESPACE
))
3178 /* t should now point to the string */
3179 if (t
->type
!= TOK_STRING
) {
3181 "`%s` requires string as second parameter",
3184 free_tlist(origline
);
3185 return DIRECTIVE_FOUND
;
3188 nasm_unquote_cstr(t
->text
, i
);
3189 macro_start
= tokenize(t
->text
);
3192 * We now have a macro name, an implicit parameter count of
3193 * zero, and a numeric token to use as an expansion. Create
3194 * and store an SMacro.
3196 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3198 free_tlist(origline
);
3199 return DIRECTIVE_FOUND
;
3204 StrList
*xsl
= NULL
;
3205 StrList
**xst
= &xsl
;
3209 tline
= tline
->next
;
3211 tline
= expand_id(tline
);
3212 if (!tline
|| (tline
->type
!= TOK_ID
&&
3213 (tline
->type
!= TOK_PREPROC_ID
||
3214 tline
->text
[1] != '$'))) {
3216 "`%%pathsearch' expects a macro identifier as first parameter");
3217 free_tlist(origline
);
3218 return DIRECTIVE_FOUND
;
3220 ctx
= get_ctx(tline
->text
, &mname
, false);
3222 tline
= expand_smacro(tline
->next
);
3226 while (tok_type_(t
, TOK_WHITESPACE
))
3229 if (!t
|| (t
->type
!= TOK_STRING
&&
3230 t
->type
!= TOK_INTERNAL_STRING
)) {
3231 error(ERR_NONFATAL
, "`%%pathsearch' expects a file name");
3233 free_tlist(origline
);
3234 return DIRECTIVE_FOUND
; /* but we did _something_ */
3237 error(ERR_WARNING
|ERR_PASS1
,
3238 "trailing garbage after `%%pathsearch' ignored");
3240 if (t
->type
!= TOK_INTERNAL_STRING
)
3241 nasm_unquote(p
, NULL
);
3243 fp
= inc_fopen(p
, &xsl
, &xst
, true);
3246 fclose(fp
); /* Don't actually care about the file */
3248 macro_start
= nasm_malloc(sizeof(*macro_start
));
3249 macro_start
->next
= NULL
;
3250 macro_start
->text
= nasm_quote(p
, strlen(p
));
3251 macro_start
->type
= TOK_STRING
;
3252 macro_start
->a
.mac
= NULL
;
3257 * We now have a macro name, an implicit parameter count of
3258 * zero, and a string token to use as an expansion. Create
3259 * and store an SMacro.
3261 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3263 free_tlist(origline
);
3264 return DIRECTIVE_FOUND
;
3270 tline
= tline
->next
;
3272 tline
= expand_id(tline
);
3273 if (!tline
|| (tline
->type
!= TOK_ID
&&
3274 (tline
->type
!= TOK_PREPROC_ID
||
3275 tline
->text
[1] != '$'))) {
3277 "`%%strlen' expects a macro identifier as first parameter");
3278 free_tlist(origline
);
3279 return DIRECTIVE_FOUND
;
3281 ctx
= get_ctx(tline
->text
, &mname
, false);
3283 tline
= expand_smacro(tline
->next
);
3287 while (tok_type_(t
, TOK_WHITESPACE
))
3289 /* t should now point to the string */
3290 if (!tok_type_(t
, TOK_STRING
)) {
3292 "`%%strlen` requires string as second parameter");
3294 free_tlist(origline
);
3295 return DIRECTIVE_FOUND
;
3298 macro_start
= nasm_malloc(sizeof(*macro_start
));
3299 macro_start
->next
= NULL
;
3300 make_tok_num(macro_start
, nasm_unquote(t
->text
, NULL
));
3301 macro_start
->a
.mac
= NULL
;
3304 * We now have a macro name, an implicit parameter count of
3305 * zero, and a numeric token to use as an expansion. Create
3306 * and store an SMacro.
3308 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3310 free_tlist(origline
);
3311 return DIRECTIVE_FOUND
;
3316 tline
= tline
->next
;
3318 tline
= expand_id(tline
);
3319 if (!tline
|| (tline
->type
!= TOK_ID
&&
3320 (tline
->type
!= TOK_PREPROC_ID
||
3321 tline
->text
[1] != '$'))) {
3323 "`%%strcat' expects a macro identifier as first parameter");
3324 free_tlist(origline
);
3325 return DIRECTIVE_FOUND
;
3327 ctx
= get_ctx(tline
->text
, &mname
, false);
3329 tline
= expand_smacro(tline
->next
);
3333 list_for_each(t
, tline
) {
3335 case TOK_WHITESPACE
:
3338 len
+= t
->a
.len
= nasm_unquote(t
->text
, NULL
);
3341 if (!strcmp(t
->text
, ",")) /* permit comma separators */
3343 /* else fall through */
3346 "non-string passed to `%%strcat' (%d)", t
->type
);
3348 free_tlist(origline
);
3349 return DIRECTIVE_FOUND
;
3353 p
= pp
= nasm_malloc(len
);
3354 list_for_each(t
, tline
) {
3355 if (t
->type
== TOK_STRING
) {
3356 memcpy(p
, t
->text
, t
->a
.len
);
3362 * We now have a macro name, an implicit parameter count of
3363 * zero, and a numeric token to use as an expansion. Create
3364 * and store an SMacro.
3366 macro_start
= new_Token(NULL
, TOK_STRING
, NULL
, 0);
3367 macro_start
->text
= nasm_quote(pp
, len
);
3369 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3371 free_tlist(origline
);
3372 return DIRECTIVE_FOUND
;
3381 tline
= tline
->next
;
3383 tline
= expand_id(tline
);
3384 if (!tline
|| (tline
->type
!= TOK_ID
&&
3385 (tline
->type
!= TOK_PREPROC_ID
||
3386 tline
->text
[1] != '$'))) {
3388 "`%%substr' expects a macro identifier as first parameter");
3389 free_tlist(origline
);
3390 return DIRECTIVE_FOUND
;
3392 ctx
= get_ctx(tline
->text
, &mname
, false);
3394 tline
= expand_smacro(tline
->next
);
3398 while (tok_type_(t
, TOK_WHITESPACE
))
3401 /* t should now point to the string */
3402 if (t
->type
!= TOK_STRING
) {
3404 "`%%substr` requires string as second parameter");
3406 free_tlist(origline
);
3407 return DIRECTIVE_FOUND
;
3412 tokval
.t_type
= TOKEN_INVALID
;
3413 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3417 free_tlist(origline
);
3418 return DIRECTIVE_FOUND
;
3419 } else if (!is_simple(evalresult
)) {
3420 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3422 free_tlist(origline
);
3423 return DIRECTIVE_FOUND
;
3425 a1
= evalresult
->value
-1;
3427 while (tok_type_(tt
, TOK_WHITESPACE
))
3430 a2
= 1; /* Backwards compatibility: one character */
3432 tokval
.t_type
= TOKEN_INVALID
;
3433 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3437 free_tlist(origline
);
3438 return DIRECTIVE_FOUND
;
3439 } else if (!is_simple(evalresult
)) {
3440 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3442 free_tlist(origline
);
3443 return DIRECTIVE_FOUND
;
3445 a2
= evalresult
->value
;
3448 len
= nasm_unquote(t
->text
, NULL
);
3451 if (a1
+a2
> (int64_t)len
)
3454 macro_start
= nasm_malloc(sizeof(*macro_start
));
3455 macro_start
->next
= NULL
;
3456 macro_start
->text
= nasm_quote((a1
< 0) ? "" : t
->text
+a1
, a2
);
3457 macro_start
->type
= TOK_STRING
;
3458 macro_start
->a
.mac
= NULL
;
3461 * We now have a macro name, an implicit parameter count of
3462 * zero, and a numeric token to use as an expansion. Create
3463 * and store an SMacro.
3465 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3467 free_tlist(origline
);
3468 return DIRECTIVE_FOUND
;
3473 casesense
= (i
== PP_ASSIGN
);
3475 tline
= tline
->next
;
3477 tline
= expand_id(tline
);
3478 if (!tline
|| (tline
->type
!= TOK_ID
&&
3479 (tline
->type
!= TOK_PREPROC_ID
||
3480 tline
->text
[1] != '$'))) {
3482 "`%%%sassign' expects a macro identifier",
3483 (i
== PP_IASSIGN
? "i" : ""));
3484 free_tlist(origline
);
3485 return DIRECTIVE_FOUND
;
3487 ctx
= get_ctx(tline
->text
, &mname
, false);
3489 tline
= expand_smacro(tline
->next
);
3494 tokval
.t_type
= TOKEN_INVALID
;
3496 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
3499 free_tlist(origline
);
3500 return DIRECTIVE_FOUND
;
3504 error(ERR_WARNING
|ERR_PASS1
,
3505 "trailing garbage after expression ignored");
3507 if (!is_simple(evalresult
)) {
3509 "non-constant value given to `%%%sassign'",
3510 (i
== PP_IASSIGN
? "i" : ""));
3511 free_tlist(origline
);
3512 return DIRECTIVE_FOUND
;
3515 macro_start
= nasm_malloc(sizeof(*macro_start
));
3516 macro_start
->next
= NULL
;
3517 make_tok_num(macro_start
, reloc_value(evalresult
));
3518 macro_start
->a
.mac
= NULL
;
3521 * We now have a macro name, an implicit parameter count of
3522 * zero, and a numeric token to use as an expansion. Create
3523 * and store an SMacro.
3525 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3526 free_tlist(origline
);
3527 return DIRECTIVE_FOUND
;
3531 * Syntax is `%line nnn[+mmm] [filename]'
3533 tline
= tline
->next
;
3535 if (!tok_type_(tline
, TOK_NUMBER
)) {
3536 error(ERR_NONFATAL
, "`%%line' expects line number");
3537 free_tlist(origline
);
3538 return DIRECTIVE_FOUND
;
3540 k
= readnum(tline
->text
, &err
);
3542 tline
= tline
->next
;
3543 if (tok_is_(tline
, "+")) {
3544 tline
= tline
->next
;
3545 if (!tok_type_(tline
, TOK_NUMBER
)) {
3546 error(ERR_NONFATAL
, "`%%line' expects line increment");
3547 free_tlist(origline
);
3548 return DIRECTIVE_FOUND
;
3550 m
= readnum(tline
->text
, &err
);
3551 tline
= tline
->next
;
3557 nasm_free(src_set_fname(detoken(tline
, false)));
3559 free_tlist(origline
);
3560 return DIRECTIVE_FOUND
;
3564 "preprocessor directive `%s' not yet implemented",
3566 return DIRECTIVE_FOUND
;
3571 * Ensure that a macro parameter contains a condition code and
3572 * nothing else. Return the condition code index if so, or -1
3575 static int find_cc(Token
* t
)
3581 return -1; /* Probably a %+ without a space */
3584 if (t
->type
!= TOK_ID
)
3588 if (tt
&& (tt
->type
!= TOK_OTHER
|| strcmp(tt
->text
, ",")))
3592 j
= ARRAY_SIZE(conditions
);
3595 m
= nasm_stricmp(t
->text
, conditions
[k
]);
3610 static bool paste_tokens(Token
**head
, bool handle_paste_tokens
)
3612 Token
**tail
, *t
, *tt
;
3614 bool did_paste
= false;
3617 /* Now handle token pasting... */
3620 while ((t
= *tail
) && (tt
= t
->next
)) {
3622 case TOK_WHITESPACE
:
3623 if (tt
->type
== TOK_WHITESPACE
) {
3624 /* Zap adjacent whitespace tokens */
3625 t
->next
= delete_Token(tt
);
3627 /* Do not advance paste_head here */
3638 while (tt
&& (tt
->type
== TOK_ID
|| tt
->type
== TOK_PREPROC_ID
||
3639 tt
->type
== TOK_NUMBER
|| tt
->type
== TOK_FLOAT
||
3640 tt
->type
== TOK_OTHER
)) {
3641 len
+= strlen(tt
->text
);
3646 * Now tt points to the first token after
3647 * the potential paste area...
3649 if (tt
!= t
->next
) {
3650 /* We have at least two tokens... */
3651 len
+= strlen(t
->text
);
3652 p
= tmp
= nasm_malloc(len
+1);
3656 p
= strchr(p
, '\0');
3657 t
= delete_Token(t
);
3660 t
= *tail
= tokenize(tmp
);
3667 t
->next
= tt
; /* Attach the remaining token chain */
3675 case TOK_PASTE
: /* %+ */
3676 if (handle_paste_tokens
) {
3677 /* Zap %+ and whitespace tokens to the right */
3678 while (t
&& (t
->type
== TOK_WHITESPACE
||
3679 t
->type
== TOK_PASTE
))
3680 t
= *tail
= delete_Token(t
);
3681 if (!paste_head
|| !t
)
3682 break; /* Nothing to paste with */
3686 while (tok_type_(tt
, TOK_WHITESPACE
))
3687 tt
= t
->next
= delete_Token(tt
);
3690 tmp
= nasm_strcat(t
->text
, tt
->text
);
3692 tt
= delete_Token(tt
);
3693 t
= *tail
= tokenize(tmp
);
3699 t
->next
= tt
; /* Attach the remaining token chain */
3706 /* else fall through */
3709 if (!tok_type_(t
->next
, TOK_WHITESPACE
))
3718 * expands to a list of tokens from %{x:y}
3720 static Token
*expand_mmac_params_range(MMacro
*mac
, Token
*tline
, Token
***last
)
3722 Token
*t
= tline
, **tt
, *tm
, *head
;
3726 pos
= strchr(tline
->text
, ':');
3729 lst
= atoi(pos
+ 1);
3730 fst
= atoi(tline
->text
+ 1);
3733 * only macros params are accounted so
3734 * if someone passes %0 -- we reject such
3737 if (lst
== 0 || fst
== 0)
3740 /* the values should be sane */
3741 if ((fst
> (int)mac
->nparam
|| fst
< (-(int)mac
->nparam
)) ||
3742 (lst
> (int)mac
->nparam
|| lst
< (-(int)mac
->nparam
)))
3745 fst
= fst
< 0 ? fst
+ (int)mac
->nparam
+ 1: fst
;
3746 lst
= lst
< 0 ? lst
+ (int)mac
->nparam
+ 1: lst
;
3748 /* counted from zero */
3752 * it will be at least one token
3754 tm
= mac
->params
[(fst
+ mac
->rotate
) % mac
->nparam
];
3755 t
= new_Token(NULL
, tm
->type
, tm
->text
, 0);
3756 head
= t
, tt
= &t
->next
;
3758 for (i
= fst
+ 1; i
<= lst
; i
++) {
3759 t
= new_Token(NULL
, TOK_OTHER
, ",", 0);
3760 *tt
= t
, tt
= &t
->next
;
3761 j
= (i
+ mac
->rotate
) % mac
->nparam
;
3762 tm
= mac
->params
[j
];
3763 t
= new_Token(NULL
, tm
->type
, tm
->text
, 0);
3764 *tt
= t
, tt
= &t
->next
;
3767 for (i
= fst
- 1; i
>= lst
; i
--) {
3768 t
= new_Token(NULL
, TOK_OTHER
, ",", 0);
3769 *tt
= t
, tt
= &t
->next
;
3770 j
= (i
+ mac
->rotate
) % mac
->nparam
;
3771 tm
= mac
->params
[j
];
3772 t
= new_Token(NULL
, tm
->type
, tm
->text
, 0);
3773 *tt
= t
, tt
= &t
->next
;
3781 error(ERR_NONFATAL
, "`%%{%s}': macro parameters out of range",
3787 * Expand MMacro-local things: parameter references (%0, %n, %+n,
3788 * %-n) and MMacro-local identifiers (%%foo) as well as
3789 * macro indirection (%[...]) and range (%{..:..}).
3791 static Token
*expand_mmac_params(Token
* tline
)
3793 Token
*t
, *tt
, **tail
, *thead
;
3794 bool changed
= false;
3801 if (tline
->type
== TOK_PREPROC_ID
&&
3802 (((tline
->text
[1] == '+' || tline
->text
[1] == '-') && tline
->text
[2]) ||
3803 (tline
->text
[1] >= '0' && tline
->text
[1] <= '9') ||
3804 tline
->text
[1] == '%')) {
3806 int type
= 0, cc
; /* type = 0 to placate optimisers */
3813 tline
= tline
->next
;
3816 while (mac
&& !mac
->name
) /* avoid mistaking %reps for macros */
3817 mac
= mac
->next_active
;
3819 error(ERR_NONFATAL
, "`%s': not in a macro call", t
->text
);
3821 pos
= strchr(t
->text
, ':');
3823 switch (t
->text
[1]) {
3825 * We have to make a substitution of one of the
3826 * forms %1, %-1, %+1, %%foo, %0.
3830 snprintf(tmpbuf
, sizeof(tmpbuf
), "%d", mac
->nparam
);
3831 text
= nasm_strdup(tmpbuf
);
3835 snprintf(tmpbuf
, sizeof(tmpbuf
), "..@%"PRIu64
".",
3837 text
= nasm_strcat(tmpbuf
, t
->text
+ 2);
3840 n
= atoi(t
->text
+ 2) - 1;
3841 if (n
>= mac
->nparam
)
3844 if (mac
->nparam
> 1)
3845 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3846 tt
= mac
->params
[n
];
3851 "macro parameter %d is not a condition code",
3856 if (inverse_ccs
[cc
] == -1) {
3858 "condition code `%s' is not invertible",
3862 text
= nasm_strdup(conditions
[inverse_ccs
[cc
]]);
3866 n
= atoi(t
->text
+ 2) - 1;
3867 if (n
>= mac
->nparam
)
3870 if (mac
->nparam
> 1)
3871 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3872 tt
= mac
->params
[n
];
3877 "macro parameter %d is not a condition code",
3882 text
= nasm_strdup(conditions
[cc
]);
3886 n
= atoi(t
->text
+ 1) - 1;
3887 if (n
>= mac
->nparam
)
3890 if (mac
->nparam
> 1)
3891 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3892 tt
= mac
->params
[n
];
3895 for (i
= 0; i
< mac
->paramlen
[n
]; i
++) {
3896 *tail
= new_Token(NULL
, tt
->type
, tt
->text
, 0);
3897 tail
= &(*tail
)->next
;
3901 text
= NULL
; /* we've done it here */
3906 * seems we have a parameters range here
3908 Token
*head
, **last
;
3909 head
= expand_mmac_params_range(mac
, t
, &last
);
3930 } else if (tline
->type
== TOK_INDIRECT
) {
3932 tline
= tline
->next
;
3933 tt
= tokenize(t
->text
);
3934 tt
= expand_mmac_params(tt
);
3935 tt
= expand_smacro(tt
);
3938 tt
->a
.mac
= NULL
; /* Necessary? */
3946 tline
= tline
->next
;
3954 paste_tokens(&thead
, false);
3960 * Expand all single-line macro calls made in the given line.
3961 * Return the expanded version of the line. The original is deemed
3962 * to be destroyed in the process. (In reality we'll just move
3963 * Tokens from input to output a lot of the time, rather than
3964 * actually bothering to destroy and replicate.)
3967 static Token
*expand_smacro(Token
* tline
)
3969 Token
*t
, *tt
, *mstart
, **tail
, *thead
;
3970 SMacro
*head
= NULL
, *m
;
3973 unsigned int nparam
, sparam
;
3975 Token
*org_tline
= tline
;
3978 int deadman
= DEADMAN_LIMIT
;
3982 * Trick: we should avoid changing the start token pointer since it can
3983 * be contained in "next" field of other token. Because of this
3984 * we allocate a copy of first token and work with it; at the end of
3985 * routine we copy it back
3988 tline
= new_Token(org_tline
->next
, org_tline
->type
,
3989 org_tline
->text
, 0);
3990 tline
->a
.mac
= org_tline
->a
.mac
;
3991 nasm_free(org_tline
->text
);
3992 org_tline
->text
= NULL
;
3995 expanded
= true; /* Always expand %+ at least once */
4001 while (tline
) { /* main token loop */
4003 error(ERR_NONFATAL
, "interminable macro recursion");
4007 if ((mname
= tline
->text
)) {
4008 /* if this token is a local macro, look in local context */
4009 if (tline
->type
== TOK_ID
) {
4010 head
= (SMacro
*)hash_findix(&smacros
, mname
);
4011 } else if (tline
->type
== TOK_PREPROC_ID
) {
4012 ctx
= get_ctx(mname
, &mname
, true);
4013 head
= ctx
? (SMacro
*)hash_findix(&ctx
->localmac
, mname
) : NULL
;
4018 * We've hit an identifier. As in is_mmacro below, we first
4019 * check whether the identifier is a single-line macro at
4020 * all, then think about checking for parameters if
4023 list_for_each(m
, head
)
4024 if (!mstrcmp(m
->name
, mname
, m
->casesense
))
4030 if (m
->nparam
== 0) {
4032 * Simple case: the macro is parameterless. Discard the
4033 * one token that the macro call took, and push the
4034 * expansion back on the to-do stack.
4036 if (!m
->expansion
) {
4037 if (!strcmp("__FILE__", m
->name
)) {
4040 src_get(&num
, &file
);
4041 tline
->text
= nasm_quote(file
, strlen(file
));
4042 tline
->type
= TOK_STRING
;
4046 if (!strcmp("__LINE__", m
->name
)) {
4047 nasm_free(tline
->text
);
4048 make_tok_num(tline
, src_get_linnum());
4051 if (!strcmp("__BITS__", m
->name
)) {
4052 nasm_free(tline
->text
);
4053 make_tok_num(tline
, globalbits
);
4056 tline
= delete_Token(tline
);
4061 * Complicated case: at least one macro with this name
4062 * exists and takes parameters. We must find the
4063 * parameters in the call, count them, find the SMacro
4064 * that corresponds to that form of the macro call, and
4065 * substitute for the parameters when we expand. What a
4068 /*tline = tline->next;
4069 skip_white_(tline); */
4072 while (tok_type_(t
, TOK_SMAC_END
)) {
4073 t
->a
.mac
->in_progress
= false;
4075 t
= tline
->next
= delete_Token(t
);
4078 } while (tok_type_(tline
, TOK_WHITESPACE
));
4079 if (!tok_is_(tline
, "(")) {
4081 * This macro wasn't called with parameters: ignore
4082 * the call. (Behaviour borrowed from gnu cpp.)
4091 sparam
= PARAM_DELTA
;
4092 params
= nasm_malloc(sparam
* sizeof(Token
*));
4093 params
[0] = tline
->next
;
4094 paramsize
= nasm_malloc(sparam
* sizeof(int));
4096 while (true) { /* parameter loop */
4098 * For some unusual expansions
4099 * which concatenates function call
4102 while (tok_type_(t
, TOK_SMAC_END
)) {
4103 t
->a
.mac
->in_progress
= false;
4105 t
= tline
->next
= delete_Token(t
);
4111 "macro call expects terminating `)'");
4114 if (tline
->type
== TOK_WHITESPACE
4116 if (paramsize
[nparam
])
4119 params
[nparam
] = tline
->next
;
4120 continue; /* parameter loop */
4122 if (tline
->type
== TOK_OTHER
4123 && tline
->text
[1] == 0) {
4124 char ch
= tline
->text
[0];
4125 if (ch
== ',' && !paren
&& brackets
<= 0) {
4126 if (++nparam
>= sparam
) {
4127 sparam
+= PARAM_DELTA
;
4128 params
= nasm_realloc(params
,
4129 sparam
* sizeof(Token
*));
4130 paramsize
= nasm_realloc(paramsize
,
4131 sparam
* sizeof(int));
4133 params
[nparam
] = tline
->next
;
4134 paramsize
[nparam
] = 0;
4136 continue; /* parameter loop */
4139 (brackets
> 0 || (brackets
== 0 &&
4140 !paramsize
[nparam
])))
4142 if (!(brackets
++)) {
4143 params
[nparam
] = tline
->next
;
4144 continue; /* parameter loop */
4147 if (ch
== '}' && brackets
> 0)
4148 if (--brackets
== 0) {
4150 continue; /* parameter loop */
4152 if (ch
== '(' && !brackets
)
4154 if (ch
== ')' && brackets
<= 0)
4160 error(ERR_NONFATAL
, "braces do not "
4161 "enclose all of macro parameter");
4163 paramsize
[nparam
] += white
+ 1;
4165 } /* parameter loop */
4167 while (m
&& (m
->nparam
!= nparam
||
4168 mstrcmp(m
->name
, mname
,
4172 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
4173 "macro `%s' exists, "
4174 "but not taking %d parameters",
4175 mstart
->text
, nparam
);
4178 if (m
&& m
->in_progress
)
4180 if (!m
) { /* in progess or didn't find '(' or wrong nparam */
4182 * Design question: should we handle !tline, which
4183 * indicates missing ')' here, or expand those
4184 * macros anyway, which requires the (t) test a few
4188 nasm_free(paramsize
);
4192 * Expand the macro: we are placed on the last token of the
4193 * call, so that we can easily split the call from the
4194 * following tokens. We also start by pushing an SMAC_END
4195 * token for the cycle removal.
4202 tt
= new_Token(tline
, TOK_SMAC_END
, NULL
, 0);
4204 m
->in_progress
= true;
4206 list_for_each(t
, m
->expansion
) {
4207 if (t
->type
>= TOK_SMAC_PARAM
) {
4208 Token
*pcopy
= tline
, **ptail
= &pcopy
;
4212 ttt
= params
[t
->type
- TOK_SMAC_PARAM
];
4213 i
= paramsize
[t
->type
- TOK_SMAC_PARAM
];
4215 pt
= *ptail
= new_Token(tline
, ttt
->type
,
4221 } else if (t
->type
== TOK_PREPROC_Q
) {
4222 tt
= new_Token(tline
, TOK_ID
, mname
, 0);
4224 } else if (t
->type
== TOK_PREPROC_QQ
) {
4225 tt
= new_Token(tline
, TOK_ID
, m
->name
, 0);
4228 tt
= new_Token(tline
, t
->type
, t
->text
, 0);
4234 * Having done that, get rid of the macro call, and clean
4235 * up the parameters.
4238 nasm_free(paramsize
);
4241 continue; /* main token loop */
4246 if (tline
->type
== TOK_SMAC_END
) {
4247 tline
->a
.mac
->in_progress
= false;
4248 tline
= delete_Token(tline
);
4251 tline
= tline
->next
;
4259 * Now scan the entire line and look for successive TOK_IDs that resulted
4260 * after expansion (they can't be produced by tokenize()). The successive
4261 * TOK_IDs should be concatenated.
4262 * Also we look for %+ tokens and concatenate the tokens before and after
4263 * them (without white spaces in between).
4265 if (expanded
&& paste_tokens(&thead
, true)) {
4267 * If we concatenated something, *and* we had previously expanded
4268 * an actual macro, scan the lines again for macros...
4278 *org_tline
= *thead
;
4279 /* since we just gave text to org_line, don't free it */
4281 delete_Token(thead
);
4283 /* the expression expanded to empty line;
4284 we can't return NULL for some reasons
4285 we just set the line to a single WHITESPACE token. */
4286 memset(org_tline
, 0, sizeof(*org_tline
));
4287 org_tline
->text
= NULL
;
4288 org_tline
->type
= TOK_WHITESPACE
;
4297 * Similar to expand_smacro but used exclusively with macro identifiers
4298 * right before they are fetched in. The reason is that there can be
4299 * identifiers consisting of several subparts. We consider that if there
4300 * are more than one element forming the name, user wants a expansion,
4301 * otherwise it will be left as-is. Example:
4305 * the identifier %$abc will be left as-is so that the handler for %define
4306 * will suck it and define the corresponding value. Other case:
4308 * %define _%$abc cde
4310 * In this case user wants name to be expanded *before* %define starts
4311 * working, so we'll expand %$abc into something (if it has a value;
4312 * otherwise it will be left as-is) then concatenate all successive
4315 static Token
*expand_id(Token
* tline
)
4317 Token
*cur
, *oldnext
= NULL
;
4319 if (!tline
|| !tline
->next
)
4324 (cur
->next
->type
== TOK_ID
||
4325 cur
->next
->type
== TOK_PREPROC_ID
4326 || cur
->next
->type
== TOK_NUMBER
))
4329 /* If identifier consists of just one token, don't expand */
4334 oldnext
= cur
->next
; /* Detach the tail past identifier */
4335 cur
->next
= NULL
; /* so that expand_smacro stops here */
4338 tline
= expand_smacro(tline
);
4341 /* expand_smacro possibly changhed tline; re-scan for EOL */
4343 while (cur
&& cur
->next
)
4346 cur
->next
= oldnext
;
4353 * Determine whether the given line constitutes a multi-line macro
4354 * call, and return the MMacro structure called if so. Doesn't have
4355 * to check for an initial label - that's taken care of in
4356 * expand_mmacro - but must check numbers of parameters. Guaranteed
4357 * to be called with tline->type == TOK_ID, so the putative macro
4358 * name is easy to find.
4360 static MMacro
*is_mmacro(Token
* tline
, Token
*** params_array
)
4366 head
= (MMacro
*) hash_findix(&mmacros
, tline
->text
);
4369 * Efficiency: first we see if any macro exists with the given
4370 * name. If not, we can return NULL immediately. _Then_ we
4371 * count the parameters, and then we look further along the
4372 * list if necessary to find the proper MMacro.
4374 list_for_each(m
, head
)
4375 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4381 * OK, we have a potential macro. Count and demarcate the
4384 count_mmac_params(tline
->next
, &nparam
, ¶ms
);
4387 * So we know how many parameters we've got. Find the MMacro
4388 * structure that handles this number.
4391 if (m
->nparam_min
<= nparam
4392 && (m
->plus
|| nparam
<= m
->nparam_max
)) {
4394 * This one is right. Just check if cycle removal
4395 * prohibits us using it before we actually celebrate...
4397 if (m
->in_progress
> m
->max_depth
) {
4398 if (m
->max_depth
> 0) {
4400 "reached maximum recursion depth of %i",
4407 * It's right, and we can use it. Add its default
4408 * parameters to the end of our list if necessary.
4410 if (m
->defaults
&& nparam
< m
->nparam_min
+ m
->ndefs
) {
4412 nasm_realloc(params
,
4413 ((m
->nparam_min
+ m
->ndefs
+
4414 1) * sizeof(*params
)));
4415 while (nparam
< m
->nparam_min
+ m
->ndefs
) {
4416 params
[nparam
] = m
->defaults
[nparam
- m
->nparam_min
];
4421 * If we've gone over the maximum parameter count (and
4422 * we're in Plus mode), ignore parameters beyond
4425 if (m
->plus
&& nparam
> m
->nparam_max
)
4426 nparam
= m
->nparam_max
;
4428 * Then terminate the parameter list, and leave.
4430 if (!params
) { /* need this special case */
4431 params
= nasm_malloc(sizeof(*params
));
4434 params
[nparam
] = NULL
;
4435 *params_array
= params
;
4439 * This one wasn't right: look for the next one with the
4442 list_for_each(m
, m
->next
)
4443 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4448 * After all that, we didn't find one with the right number of
4449 * parameters. Issue a warning, and fail to expand the macro.
4451 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
4452 "macro `%s' exists, but not taking %d parameters",
4453 tline
->text
, nparam
);
4460 * Save MMacro invocation specific fields in
4461 * preparation for a recursive macro expansion
4463 static void push_mmacro(MMacro
*m
)
4465 MMacroInvocation
*i
;
4467 i
= nasm_malloc(sizeof(MMacroInvocation
));
4469 i
->params
= m
->params
;
4470 i
->iline
= m
->iline
;
4471 i
->nparam
= m
->nparam
;
4472 i
->rotate
= m
->rotate
;
4473 i
->paramlen
= m
->paramlen
;
4474 i
->unique
= m
->unique
;
4475 i
->condcnt
= m
->condcnt
;
4481 * Restore MMacro invocation specific fields that were
4482 * saved during a previous recursive macro expansion
4484 static void pop_mmacro(MMacro
*m
)
4486 MMacroInvocation
*i
;
4491 m
->params
= i
->params
;
4492 m
->iline
= i
->iline
;
4493 m
->nparam
= i
->nparam
;
4494 m
->rotate
= i
->rotate
;
4495 m
->paramlen
= i
->paramlen
;
4496 m
->unique
= i
->unique
;
4497 m
->condcnt
= i
->condcnt
;
4504 * Expand the multi-line macro call made by the given line, if
4505 * there is one to be expanded. If there is, push the expansion on
4506 * istk->expansion and return 1. Otherwise return 0.
4508 static int expand_mmacro(Token
* tline
)
4510 Token
*startline
= tline
;
4511 Token
*label
= NULL
;
4512 int dont_prepend
= 0;
4513 Token
**params
, *t
, *mtok
, *tt
;
4516 int i
, nparam
, *paramlen
;
4521 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
4522 if (!tok_type_(t
, TOK_ID
) && !tok_type_(t
, TOK_PREPROC_ID
))
4525 m
= is_mmacro(t
, ¶ms
);
4531 * We have an id which isn't a macro call. We'll assume
4532 * it might be a label; we'll also check to see if a
4533 * colon follows it. Then, if there's another id after
4534 * that lot, we'll check it again for macro-hood.
4538 if (tok_type_(t
, TOK_WHITESPACE
))
4539 last
= t
, t
= t
->next
;
4540 if (tok_is_(t
, ":")) {
4542 last
= t
, t
= t
->next
;
4543 if (tok_type_(t
, TOK_WHITESPACE
))
4544 last
= t
, t
= t
->next
;
4546 if (!tok_type_(t
, TOK_ID
) || !(m
= is_mmacro(t
, ¶ms
)))
4554 * Fix up the parameters: this involves stripping leading and
4555 * trailing whitespace, then stripping braces if they are
4558 for (nparam
= 0; params
[nparam
]; nparam
++) ;
4559 paramlen
= nparam
? nasm_malloc(nparam
* sizeof(*paramlen
)) : NULL
;
4561 for (i
= 0; params
[i
]; i
++) {
4563 int comma
= (!m
->plus
|| i
< nparam
- 1);
4567 if (tok_is_(t
, "{"))
4568 t
= t
->next
, brace
= true, comma
= false;
4572 if (comma
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, ","))
4573 break; /* ... because we have hit a comma */
4574 if (comma
&& t
->type
== TOK_WHITESPACE
4575 && tok_is_(t
->next
, ","))
4576 break; /* ... or a space then a comma */
4577 if (brace
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, "}"))
4578 break; /* ... or a brace */
4585 * OK, we have a MMacro structure together with a set of
4586 * parameters. We must now go through the expansion and push
4587 * copies of each Line on to istk->expansion. Substitution of
4588 * parameter tokens and macro-local tokens doesn't get done
4589 * until the single-line macro substitution process; this is
4590 * because delaying them allows us to change the semantics
4591 * later through %rotate.
4593 * First, push an end marker on to istk->expansion, mark this
4594 * macro as in progress, and set up its invocation-specific
4597 ll
= nasm_malloc(sizeof(Line
));
4598 ll
->next
= istk
->expansion
;
4601 istk
->expansion
= ll
;
4604 * Save the previous MMacro expansion in the case of
4607 if (m
->max_depth
&& m
->in_progress
)
4615 m
->paramlen
= paramlen
;
4616 m
->unique
= unique
++;
4620 m
->next_active
= istk
->mstk
;
4623 list_for_each(l
, m
->expansion
) {
4626 ll
= nasm_malloc(sizeof(Line
));
4627 ll
->finishes
= NULL
;
4628 ll
->next
= istk
->expansion
;
4629 istk
->expansion
= ll
;
4632 list_for_each(t
, l
->first
) {
4636 tt
= *tail
= new_Token(NULL
, TOK_ID
, mname
, 0);
4638 case TOK_PREPROC_QQ
:
4639 tt
= *tail
= new_Token(NULL
, TOK_ID
, m
->name
, 0);
4641 case TOK_PREPROC_ID
:
4642 if (t
->text
[1] == '0' && t
->text
[2] == '0') {
4650 tt
= *tail
= new_Token(NULL
, x
->type
, x
->text
, 0);
4659 * If we had a label, push it on as the first line of
4660 * the macro expansion.
4663 if (dont_prepend
< 0)
4664 free_tlist(startline
);
4666 ll
= nasm_malloc(sizeof(Line
));
4667 ll
->finishes
= NULL
;
4668 ll
->next
= istk
->expansion
;
4669 istk
->expansion
= ll
;
4670 ll
->first
= startline
;
4671 if (!dont_prepend
) {
4673 label
= label
->next
;
4674 label
->next
= tt
= new_Token(NULL
, TOK_OTHER
, ":", 0);
4679 list
->uplevel(m
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
4684 /* The function that actually does the error reporting */
4685 static void verror(int severity
, const char *fmt
, va_list arg
)
4689 vsnprintf(buff
, sizeof(buff
), fmt
, arg
);
4691 if (istk
&& istk
->mstk
&& istk
->mstk
->name
)
4692 nasm_error(severity
, "(%s:%d) %s", istk
->mstk
->name
,
4693 istk
->mstk
->lineno
, buff
);
4695 nasm_error(severity
, "%s", buff
);
4699 * Since preprocessor always operate only on the line that didn't
4700 * arrived yet, we should always use ERR_OFFBY1.
4702 static void error(int severity
, const char *fmt
, ...)
4706 /* If we're in a dead branch of IF or something like it, ignore the error */
4707 if (istk
&& istk
->conds
&& !emitting(istk
->conds
->state
))
4711 verror(severity
, fmt
, arg
);
4716 * Because %else etc are evaluated in the state context
4717 * of the previous branch, errors might get lost with error():
4718 * %if 0 ... %else trailing garbage ... %endif
4719 * So %else etc should report errors with this function.
4721 static void error_precond(int severity
, const char *fmt
, ...)
4725 /* Only ignore the error if it's really in a dead branch */
4726 if (istk
&& istk
->conds
&& istk
->conds
->state
== COND_NEVER
)
4730 verror(severity
, fmt
, arg
);
4735 pp_reset(char *file
, int apass
, ListGen
* listgen
, StrList
**deplist
)
4740 istk
= nasm_malloc(sizeof(Include
));
4743 istk
->expansion
= NULL
;
4745 istk
->fp
= fopen(file
, "r");
4747 src_set_fname(nasm_strdup(file
));
4751 error(ERR_FATAL
|ERR_NOFILE
, "unable to open input file `%s'",
4754 nested_mac_count
= 0;
4755 nested_rep_count
= 0;
4758 if (tasm_compatible_mode
) {
4759 stdmacpos
= nasm_stdmac
;
4761 stdmacpos
= nasm_stdmac_after_tasm
;
4763 any_extrastdmac
= extrastdmac
&& *extrastdmac
;
4768 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4769 * The caller, however, will also pass in 3 for preprocess-only so
4770 * we can set __PASS__ accordingly.
4772 pass
= apass
> 2 ? 2 : apass
;
4774 dephead
= deptail
= deplist
;
4776 StrList
*sl
= nasm_malloc(strlen(file
)+1+sizeof sl
->next
);
4778 strcpy(sl
->str
, file
);
4780 deptail
= &sl
->next
;
4784 * Define the __PASS__ macro. This is defined here unlike
4785 * all the other builtins, because it is special -- it varies between
4788 t
= nasm_malloc(sizeof(*t
));
4790 make_tok_num(t
, apass
);
4792 define_smacro(NULL
, "__PASS__", true, 0, t
);
4795 static char *pp_getline(void)
4802 * Fetch a tokenized line, either from the macro-expansion
4803 * buffer or from the input file.
4806 while (istk
->expansion
&& istk
->expansion
->finishes
) {
4807 Line
*l
= istk
->expansion
;
4808 if (!l
->finishes
->name
&& l
->finishes
->in_progress
> 1) {
4812 * This is a macro-end marker for a macro with no
4813 * name, which means it's not really a macro at all
4814 * but a %rep block, and the `in_progress' field is
4815 * more than 1, meaning that we still need to
4816 * repeat. (1 means the natural last repetition; 0
4817 * means termination by %exitrep.) We have
4818 * therefore expanded up to the %endrep, and must
4819 * push the whole block on to the expansion buffer
4820 * again. We don't bother to remove the macro-end
4821 * marker: we'd only have to generate another one
4824 l
->finishes
->in_progress
--;
4825 list_for_each(l
, l
->finishes
->expansion
) {
4826 Token
*t
, *tt
, **tail
;
4828 ll
= nasm_malloc(sizeof(Line
));
4829 ll
->next
= istk
->expansion
;
4830 ll
->finishes
= NULL
;
4834 list_for_each(t
, l
->first
) {
4835 if (t
->text
|| t
->type
== TOK_WHITESPACE
) {
4836 tt
= *tail
= new_Token(NULL
, t
->type
, t
->text
, 0);
4841 istk
->expansion
= ll
;
4845 * Check whether a `%rep' was started and not ended
4846 * within this macro expansion. This can happen and
4847 * should be detected. It's a fatal error because
4848 * I'm too confused to work out how to recover
4854 "defining with name in expansion");
4855 else if (istk
->mstk
->name
)
4857 "`%%rep' without `%%endrep' within"
4858 " expansion of macro `%s'",
4863 * FIXME: investigate the relationship at this point between
4864 * istk->mstk and l->finishes
4867 MMacro
*m
= istk
->mstk
;
4868 istk
->mstk
= m
->next_active
;
4871 * This was a real macro call, not a %rep, and
4872 * therefore the parameter information needs to
4877 l
->finishes
->in_progress
--;
4879 nasm_free(m
->params
);
4880 free_tlist(m
->iline
);
4881 nasm_free(m
->paramlen
);
4882 l
->finishes
->in_progress
= 0;
4887 istk
->expansion
= l
->next
;
4889 list
->downlevel(LIST_MACRO
);
4892 while (1) { /* until we get a line we can use */
4894 if (istk
->expansion
) { /* from a macro expansion */
4896 Line
*l
= istk
->expansion
;
4898 istk
->mstk
->lineno
++;
4900 istk
->expansion
= l
->next
;
4902 p
= detoken(tline
, false);
4903 list
->line(LIST_MACRO
, p
);
4908 if (line
) { /* from the current input file */
4909 line
= prepreproc(line
);
4910 tline
= tokenize(line
);
4915 * The current file has ended; work down the istk
4922 "expected `%%endif' before end of file");
4923 /* only set line and file name if there's a next node */
4925 src_set_linnum(i
->lineno
);
4926 nasm_free(src_set_fname(i
->fname
));
4929 list
->downlevel(LIST_INCLUDE
);
4933 if (istk
->expansion
&& istk
->expansion
->finishes
)
4939 * We must expand MMacro parameters and MMacro-local labels
4940 * _before_ we plunge into directive processing, to cope
4941 * with things like `%define something %1' such as STRUC
4942 * uses. Unless we're _defining_ a MMacro, in which case
4943 * those tokens should be left alone to go into the
4944 * definition; and unless we're in a non-emitting
4945 * condition, in which case we don't want to meddle with
4948 if (!defining
&& !(istk
->conds
&& !emitting(istk
->conds
->state
))
4949 && !(istk
->mstk
&& !istk
->mstk
->in_progress
)) {
4950 tline
= expand_mmac_params(tline
);
4954 * Check the line to see if it's a preprocessor directive.
4956 if (do_directive(tline
) == DIRECTIVE_FOUND
) {
4958 } else if (defining
) {
4960 * We're defining a multi-line macro. We emit nothing
4962 * shove the tokenized line on to the macro definition.
4964 Line
*l
= nasm_malloc(sizeof(Line
));
4965 l
->next
= defining
->expansion
;
4968 defining
->expansion
= l
;
4970 } else if (istk
->conds
&& !emitting(istk
->conds
->state
)) {
4972 * We're in a non-emitting branch of a condition block.
4973 * Emit nothing at all, not even a blank line: when we
4974 * emerge from the condition we'll give a line-number
4975 * directive so we keep our place correctly.
4979 } else if (istk
->mstk
&& !istk
->mstk
->in_progress
) {
4981 * We're in a %rep block which has been terminated, so
4982 * we're walking through to the %endrep without
4983 * emitting anything. Emit nothing at all, not even a
4984 * blank line: when we emerge from the %rep block we'll
4985 * give a line-number directive so we keep our place
4991 tline
= expand_smacro(tline
);
4992 if (!expand_mmacro(tline
)) {
4994 * De-tokenize the line again, and emit it.
4996 line
= detoken(tline
, true);
5000 continue; /* expand_mmacro calls free_tlist */
5008 static void pp_cleanup(int pass
)
5011 if (defining
->name
) {
5013 "end of file while still defining macro `%s'",
5016 error(ERR_NONFATAL
, "end of file while still in %%rep");
5019 free_mmacro(defining
);
5029 nasm_free(i
->fname
);
5034 nasm_free(src_set_fname(NULL
));
5039 while ((i
= ipath
)) {
5048 void pp_include_path(char *path
)
5052 i
= nasm_malloc(sizeof(IncPath
));
5053 i
->path
= path
? nasm_strdup(path
) : NULL
;
5066 void pp_pre_include(char *fname
)
5068 Token
*inc
, *space
, *name
;
5071 name
= new_Token(NULL
, TOK_INTERNAL_STRING
, fname
, 0);
5072 space
= new_Token(name
, TOK_WHITESPACE
, NULL
, 0);
5073 inc
= new_Token(space
, TOK_PREPROC_ID
, "%include", 0);
5075 l
= nasm_malloc(sizeof(Line
));
5082 void pp_pre_define(char *definition
)
5088 equals
= strchr(definition
, '=');
5089 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
5090 def
= new_Token(space
, TOK_PREPROC_ID
, "%define", 0);
5093 space
->next
= tokenize(definition
);
5097 l
= nasm_malloc(sizeof(Line
));
5104 void pp_pre_undefine(char *definition
)
5109 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
5110 def
= new_Token(space
, TOK_PREPROC_ID
, "%undef", 0);
5111 space
->next
= tokenize(definition
);
5113 l
= nasm_malloc(sizeof(Line
));
5121 * Added by Keith Kanios:
5123 * This function is used to assist with "runtime" preprocessor
5124 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
5126 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
5127 * PASS A VALID STRING TO THIS FUNCTION!!!!!
5130 void pp_runtime(char *definition
)
5134 def
= tokenize(definition
);
5135 if (do_directive(def
) == NO_DIRECTIVE_FOUND
)
5140 void pp_extra_stdmac(macros_t
*macros
)
5142 extrastdmac
= macros
;
5145 static void make_tok_num(Token
* tok
, int64_t val
)
5148 snprintf(numbuf
, sizeof(numbuf
), "%"PRId64
"", val
);
5149 tok
->text
= nasm_strdup(numbuf
);
5150 tok
->type
= TOK_NUMBER
;