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 * Condition codes. Note that we use c_ prefix not C_ because C_ is
331 * used in nasm.h for the "real" condition codes. At _this_ level,
332 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
333 * ones, so we need a different enum...
335 static const char * const conditions
[] = {
336 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
337 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
338 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
341 c_A
, c_AE
, c_B
, c_BE
, c_C
, c_CXZ
, c_E
, c_ECXZ
, c_G
, c_GE
, c_L
, c_LE
,
342 c_NA
, c_NAE
, c_NB
, c_NBE
, c_NC
, c_NE
, c_NG
, c_NGE
, c_NL
, c_NLE
, c_NO
,
343 c_NP
, c_NS
, c_NZ
, c_O
, c_P
, c_PE
, c_PO
, c_RCXZ
, c_S
, c_Z
,
346 static const enum pp_conds inverse_ccs
[] = {
347 c_NA
, c_NAE
, c_NB
, c_NBE
, c_NC
, -1, c_NE
, -1, c_NG
, c_NGE
, c_NL
, c_NLE
,
348 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
,
349 c_Z
, c_NO
, c_NP
, c_PO
, c_PE
, -1, c_NS
, c_NZ
355 /* If this is a an IF, ELIF, ELSE or ENDIF keyword */
356 static int is_condition(enum preproc_token arg
)
358 return PP_IS_COND(arg
) || (arg
== PP_ELSE
) || (arg
== PP_ENDIF
);
361 /* For TASM compatibility we need to be able to recognise TASM compatible
362 * conditional compilation directives. Using the NASM pre-processor does
363 * not work, so we look for them specifically from the following list and
364 * then jam in the equivalent NASM directive into the input stream.
368 TM_ARG
, TM_ELIF
, TM_ELSE
, TM_ENDIF
, TM_IF
, TM_IFDEF
, TM_IFDIFI
,
369 TM_IFNDEF
, TM_INCLUDE
, TM_LOCAL
372 static const char * const tasm_directives
[] = {
373 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
374 "ifndef", "include", "local"
377 static int StackSize
= 4;
378 static char *StackPointer
= "ebp";
379 static int ArgOffset
= 8;
380 static int LocalOffset
= 0;
382 static Context
*cstk
;
383 static Include
*istk
;
384 static IncPath
*ipath
= NULL
;
386 static int pass
; /* HACK: pass 0 = generate dependencies only */
387 static StrList
**dephead
, **deptail
; /* Dependency list */
389 static uint64_t unique
; /* unique identifier numbers */
391 static Line
*predef
= NULL
;
392 static bool do_predef
;
394 static ListGen
*list
;
397 * The current set of multi-line macros we have defined.
399 static struct hash_table mmacros
;
402 * The current set of single-line macros we have defined.
404 static struct hash_table smacros
;
407 * The multi-line macro we are currently defining, or the %rep
408 * block we are currently reading, if any.
410 static MMacro
*defining
;
412 static uint64_t nested_mac_count
;
413 static uint64_t nested_rep_count
;
416 * The number of macro parameters to allocate space for at a time.
418 #define PARAM_DELTA 16
421 * The standard macro set: defined in macros.c in the array nasm_stdmac.
422 * This gives our position in the macro set, when we're processing it.
424 static macros_t
*stdmacpos
;
427 * The extra standard macros that come from the object format, if
430 static macros_t
*extrastdmac
= NULL
;
431 static bool any_extrastdmac
;
434 * Tokens are allocated in blocks to improve speed
436 #define TOKEN_BLOCKSIZE 4096
437 static Token
*freeTokens
= NULL
;
443 static Blocks blocks
= { NULL
, NULL
};
446 * Forward declarations.
448 static Token
*expand_mmac_params(Token
* tline
);
449 static Token
*expand_smacro(Token
* tline
);
450 static Token
*expand_id(Token
* tline
);
451 static Context
*get_ctx(const char *name
, const char **namep
,
453 static void make_tok_num(Token
* tok
, int64_t val
);
454 static void error(int severity
, const char *fmt
, ...);
455 static void error_precond(int severity
, const char *fmt
, ...);
456 static void *new_Block(size_t size
);
457 static void delete_Blocks(void);
458 static Token
*new_Token(Token
* next
, enum pp_token_type type
,
459 const char *text
, int txtlen
);
460 static Token
*delete_Token(Token
* t
);
463 * Macros for safe checking of token pointers, avoid *(NULL)
465 #define tok_type_(x,t) ((x) && (x)->type == (t))
466 #define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
467 #define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
468 #define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
471 * Handle TASM specific directives, which do not contain a % in
472 * front of them. We do it here because I could not find any other
473 * place to do it for the moment, and it is a hack (ideally it would
474 * be nice to be able to use the NASM pre-processor to do it).
476 static char *check_tasm_directive(char *line
)
478 int32_t i
, j
, k
, m
, len
;
479 char *p
, *q
, *oldline
, oldchar
;
481 p
= nasm_skip_spaces(line
);
483 /* Binary search for the directive name */
485 j
= elements(tasm_directives
);
486 q
= nasm_skip_word(p
);
493 m
= nasm_stricmp(p
, tasm_directives
[k
]);
495 /* We have found a directive, so jam a % in front of it
496 * so that NASM will then recognise it as one if it's own.
501 line
= nasm_malloc(len
+ 2);
503 if (k
== TM_IFDIFI
) {
505 * NASM does not recognise IFDIFI, so we convert
506 * it to %if 0. This is not used in NASM
507 * compatible code, but does need to parse for the
508 * TASM macro package.
510 strcpy(line
+ 1, "if 0");
512 memcpy(line
+ 1, p
, len
+ 1);
527 * The pre-preprocessing stage... This function translates line
528 * number indications as they emerge from GNU cpp (`# lineno "file"
529 * flags') into NASM preprocessor line number indications (`%line
532 static char *prepreproc(char *line
)
535 char *fname
, *oldline
;
537 if (line
[0] == '#' && line
[1] == ' ') {
540 lineno
= atoi(fname
);
541 fname
+= strspn(fname
, "0123456789 ");
544 fnlen
= strcspn(fname
, "\"");
545 line
= nasm_malloc(20 + fnlen
);
546 snprintf(line
, 20 + fnlen
, "%%line %d %.*s", lineno
, fnlen
, fname
);
549 if (tasm_compatible_mode
)
550 return check_tasm_directive(line
);
555 * Free a linked list of tokens.
557 static void free_tlist(Token
* list
)
560 list
= delete_Token(list
);
565 * Free a linked list of lines.
567 static void free_llist(Line
* list
)
573 free_tlist(l
->first
);
581 static void free_mmacro(MMacro
* m
)
584 free_tlist(m
->dlist
);
585 nasm_free(m
->defaults
);
586 free_llist(m
->expansion
);
591 * Free all currently defined macros, and free the hash tables
593 static void free_smacro_table(struct hash_table
*smt
)
597 struct hash_tbl_node
*it
= NULL
;
599 while ((s
= hash_iterate(smt
, &it
, &key
)) != NULL
) {
600 nasm_free((void *)key
);
602 SMacro
*ns
= s
->next
;
604 free_tlist(s
->expansion
);
612 static void free_mmacro_table(struct hash_table
*mmt
)
616 struct hash_tbl_node
*it
= NULL
;
619 while ((m
= hash_iterate(mmt
, &it
, &key
)) != NULL
) {
620 nasm_free((void *)key
);
622 MMacro
*nm
= m
->next
;
630 static void free_macros(void)
632 free_smacro_table(&smacros
);
633 free_mmacro_table(&mmacros
);
637 * Initialize the hash tables
639 static void init_macros(void)
641 hash_init(&smacros
, HASH_LARGE
);
642 hash_init(&mmacros
, HASH_LARGE
);
646 * Pop the context stack.
648 static void ctx_pop(void)
653 free_smacro_table(&c
->localmac
);
659 * Search for a key in the hash index; adding it if necessary
660 * (in which case we initialize the data pointer to NULL.)
663 hash_findi_add(struct hash_table
*hash
, const char *str
)
665 struct hash_insert hi
;
669 r
= hash_findi(hash
, str
, &hi
);
673 strx
= nasm_strdup(str
); /* Use a more efficient allocator here? */
674 return hash_add(&hi
, strx
, NULL
);
678 * Like hash_findi, but returns the data element rather than a pointer
679 * to it. Used only when not adding a new element, hence no third
683 hash_findix(struct hash_table
*hash
, const char *str
)
687 p
= hash_findi(hash
, str
, NULL
);
688 return p
? *p
: NULL
;
691 #define BUF_DELTA 512
693 * Read a line from the top file in istk, handling multiple CR/LFs
694 * at the end of the line read, and handling spurious ^Zs. Will
695 * return lines from the standard macro set if this has not already
698 static char *read_line(void)
700 char *buffer
, *p
, *q
;
701 int bufsize
, continued_count
;
705 const unsigned char *p
= stdmacpos
;
710 len
+= pp_directives_len
[c
-0x80]+1;
714 ret
= nasm_malloc(len
+1);
716 while ((c
= *stdmacpos
++)) {
718 memcpy(q
, pp_directives
[c
-0x80], pp_directives_len
[c
-0x80]);
719 q
+= pp_directives_len
[c
-0x80];
729 /* This was the last of the standard macro chain... */
731 if (any_extrastdmac
) {
732 stdmacpos
= extrastdmac
;
733 any_extrastdmac
= false;
734 } else if (do_predef
) {
736 Token
*head
, **tail
, *t
;
739 * Nasty hack: here we push the contents of
740 * `predef' on to the top-level expansion stack,
741 * since this is the most convenient way to
742 * implement the pre-include and pre-define
745 for (pd
= predef
; pd
; pd
= pd
->next
) {
748 for (t
= pd
->first
; t
; t
= t
->next
) {
749 *tail
= new_Token(NULL
, t
->type
, t
->text
, 0);
750 tail
= &(*tail
)->next
;
752 l
= nasm_malloc(sizeof(Line
));
753 l
->next
= istk
->expansion
;
765 buffer
= nasm_malloc(BUF_DELTA
);
769 q
= fgets(p
, bufsize
- (p
- buffer
), istk
->fp
);
773 if (p
> buffer
&& p
[-1] == '\n') {
775 * Convert backslash-CRLF line continuation sequences into
776 * nothing at all (for DOS and Windows)
778 if (((p
- 2) > buffer
) && (p
[-3] == '\\') && (p
[-2] == '\r')) {
784 * Also convert backslash-LF line continuation sequences into
785 * nothing at all (for Unix)
787 else if (((p
- 1) > buffer
) && (p
[-2] == '\\')) {
795 if (p
- buffer
> bufsize
- 10) {
796 int32_t offset
= p
- buffer
;
797 bufsize
+= BUF_DELTA
;
798 buffer
= nasm_realloc(buffer
, bufsize
);
799 p
= buffer
+ offset
; /* prevent stale-pointer problems */
803 if (!q
&& p
== buffer
) {
808 src_set_linnum(src_get_linnum() + istk
->lineinc
+
809 (continued_count
* istk
->lineinc
));
812 * Play safe: remove CRs as well as LFs, if any of either are
813 * present at the end of the line.
815 while (--p
>= buffer
&& (*p
== '\n' || *p
== '\r'))
819 * Handle spurious ^Z, which may be inserted into source files
820 * by some file transfer utilities.
822 buffer
[strcspn(buffer
, "\032")] = '\0';
824 list
->line(LIST_READ
, buffer
);
830 * Tokenize a line of text. This is a very simple process since we
831 * don't need to parse the value out of e.g. numeric tokens: we
832 * simply split one string into many.
834 static Token
*tokenize(char *line
)
837 enum pp_token_type type
;
839 Token
*t
, **tail
= &list
;
845 if (*p
== '+' && !nasm_isdigit(p
[1])) {
848 } else if (nasm_isdigit(*p
) ||
849 ((*p
== '-' || *p
== '+') && nasm_isdigit(p
[1]))) {
853 while (nasm_isdigit(*p
));
854 type
= TOK_PREPROC_ID
;
855 } else if (*p
== '{') {
857 while (*p
&& *p
!= '}') {
864 type
= TOK_PREPROC_ID
;
865 } else if (*p
== '[') {
867 line
+= 2; /* Skip the leading %[ */
869 while (lvl
&& (c
= *p
++)) {
881 p
= nasm_skip_string(p
)+1;
891 error(ERR_NONFATAL
, "unterminated %[ construct");
893 } else if (*p
== '?') {
894 type
= TOK_PREPROC_Q
; /* %? */
897 type
= TOK_PREPROC_QQ
; /* %?? */
900 } else if (isidchar(*p
) ||
901 ((*p
== '!' || *p
== '%' || *p
== '$') &&
906 while (isidchar(*p
));
907 type
= TOK_PREPROC_ID
;
913 } else if (isidstart(*p
) || (*p
== '$' && isidstart(p
[1]))) {
916 while (*p
&& isidchar(*p
))
918 } else if (*p
== '\'' || *p
== '"' || *p
== '`') {
923 p
= nasm_skip_string(p
);
928 error(ERR_WARNING
|ERR_PASS1
, "unterminated string");
929 /* Handling unterminated strings by UNV */
932 } else if (p
[0] == '$' && p
[1] == '$') {
933 type
= TOK_OTHER
; /* TOKEN_BASE */
935 } else if (isnumstart(*p
)) {
937 bool is_float
= false;
953 if (!is_hex
&& (c
== 'e' || c
== 'E')) {
955 if (*p
== '+' || *p
== '-') {
957 * e can only be followed by +/- if it is either a
958 * prefixed hex number or a floating-point number
963 } else if (c
== 'H' || c
== 'h' || c
== 'X' || c
== 'x') {
965 } else if (c
== 'P' || c
== 'p') {
967 if (*p
== '+' || *p
== '-')
969 } else if (isnumchar(c
) || c
== '_')
973 * we need to deal with consequences of the legacy
974 * parser, like "1.nolist" being two tokens
975 * (TOK_NUMBER, TOK_ID) here; at least give it
976 * a shot for now. In the future, we probably need
977 * a flex-based scanner with proper pattern matching
978 * to do it as well as it can be done. Nothing in
979 * the world is going to help the person who wants
980 * 0x123.p16 interpreted as two tokens, though.
986 if (nasm_isdigit(*r
) || (is_hex
&& nasm_isxdigit(*r
)) ||
987 (!is_hex
&& (*r
== 'e' || *r
== 'E')) ||
988 (*r
== 'p' || *r
== 'P')) {
992 break; /* Terminate the token */
996 p
--; /* Point to first character beyond number */
998 if (p
== line
+1 && *line
== '$') {
999 type
= TOK_OTHER
; /* TOKEN_HERE */
1001 if (has_e
&& !is_hex
) {
1002 /* 1e13 is floating-point, but 1e13h is not */
1006 type
= is_float
? TOK_FLOAT
: TOK_NUMBER
;
1008 } else if (nasm_isspace(*p
)) {
1009 type
= TOK_WHITESPACE
;
1010 p
= nasm_skip_spaces(p
);
1012 * Whitespace just before end-of-line is discarded by
1013 * pretending it's a comment; whitespace just before a
1014 * comment gets lumped into the comment.
1016 if (!*p
|| *p
== ';') {
1021 } else if (*p
== ';') {
1027 * Anything else is an operator of some kind. We check
1028 * for all the double-character operators (>>, <<, //,
1029 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
1030 * else is a single-character operator.
1033 if ((p
[0] == '>' && p
[1] == '>') ||
1034 (p
[0] == '<' && p
[1] == '<') ||
1035 (p
[0] == '/' && p
[1] == '/') ||
1036 (p
[0] == '<' && p
[1] == '=') ||
1037 (p
[0] == '>' && p
[1] == '=') ||
1038 (p
[0] == '=' && p
[1] == '=') ||
1039 (p
[0] == '!' && p
[1] == '=') ||
1040 (p
[0] == '<' && p
[1] == '>') ||
1041 (p
[0] == '&' && p
[1] == '&') ||
1042 (p
[0] == '|' && p
[1] == '|') ||
1043 (p
[0] == '^' && p
[1] == '^')) {
1049 /* Handling unterminated string by UNV */
1052 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1053 t->text[p-line] = *line;
1057 if (type
!= TOK_COMMENT
) {
1058 *tail
= t
= new_Token(NULL
, type
, line
, p
- line
);
1067 * this function allocates a new managed block of memory and
1068 * returns a pointer to the block. The managed blocks are
1069 * deleted only all at once by the delete_Blocks function.
1071 static void *new_Block(size_t size
)
1073 Blocks
*b
= &blocks
;
1075 /* first, get to the end of the linked list */
1078 /* now allocate the requested chunk */
1079 b
->chunk
= nasm_malloc(size
);
1081 /* now allocate a new block for the next request */
1082 b
->next
= nasm_malloc(sizeof(Blocks
));
1083 /* and initialize the contents of the new block */
1084 b
->next
->next
= NULL
;
1085 b
->next
->chunk
= NULL
;
1090 * this function deletes all managed blocks of memory
1092 static void delete_Blocks(void)
1094 Blocks
*a
, *b
= &blocks
;
1097 * keep in mind that the first block, pointed to by blocks
1098 * is a static and not dynamically allocated, so we don't
1103 nasm_free(b
->chunk
);
1112 * this function creates a new Token and passes a pointer to it
1113 * back to the caller. It sets the type and text elements, and
1114 * also the a.mac and next elements to NULL.
1116 static Token
*new_Token(Token
* next
, enum pp_token_type type
,
1117 const char *text
, int txtlen
)
1123 freeTokens
= (Token
*) new_Block(TOKEN_BLOCKSIZE
* sizeof(Token
));
1124 for (i
= 0; i
< TOKEN_BLOCKSIZE
- 1; i
++)
1125 freeTokens
[i
].next
= &freeTokens
[i
+ 1];
1126 freeTokens
[i
].next
= NULL
;
1129 freeTokens
= t
->next
;
1133 if (type
== TOK_WHITESPACE
|| !text
) {
1137 txtlen
= strlen(text
);
1138 t
->text
= nasm_malloc(txtlen
+1);
1139 memcpy(t
->text
, text
, txtlen
);
1140 t
->text
[txtlen
] = '\0';
1145 static Token
*delete_Token(Token
* t
)
1147 Token
*next
= t
->next
;
1149 t
->next
= freeTokens
;
1155 * Convert a line of tokens back into text.
1156 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1157 * will be transformed into ..@ctxnum.xxx
1159 static char *detoken(Token
* tlist
, bool expand_locals
)
1166 list_for_each(t
, tlist
) {
1167 if (t
->type
== TOK_PREPROC_ID
&& t
->text
[1] == '!') {
1168 char *p
= getenv(t
->text
+ 2);
1171 t
->text
= nasm_strdup(p
);
1175 /* Expand local macros here and not during preprocessing */
1176 if (expand_locals
&&
1177 t
->type
== TOK_PREPROC_ID
&& t
->text
&&
1178 t
->text
[0] == '%' && t
->text
[1] == '$') {
1181 Context
*ctx
= get_ctx(t
->text
, &q
, false);
1184 snprintf(buffer
, sizeof(buffer
), "..@%"PRIu32
".", ctx
->number
);
1185 p
= nasm_strcat(buffer
, q
);
1190 if (t
->type
== TOK_WHITESPACE
)
1193 len
+= strlen(t
->text
);
1196 p
= line
= nasm_malloc(len
+ 1);
1198 list_for_each(t
, tlist
) {
1199 if (t
->type
== TOK_WHITESPACE
) {
1201 } else if (t
->text
) {
1213 * A scanner, suitable for use by the expression evaluator, which
1214 * operates on a line of Tokens. Expects a pointer to a pointer to
1215 * the first token in the line to be passed in as its private_data
1218 * FIX: This really needs to be unified with stdscan.
1220 static int ppscan(void *private_data
, struct tokenval
*tokval
)
1222 Token
**tlineptr
= private_data
;
1224 char ourcopy
[MAX_KEYWORD
+1], *p
, *r
, *s
;
1228 *tlineptr
= tline
? tline
->next
: NULL
;
1230 while (tline
&& (tline
->type
== TOK_WHITESPACE
||
1231 tline
->type
== TOK_COMMENT
));
1234 return tokval
->t_type
= TOKEN_EOS
;
1236 tokval
->t_charptr
= tline
->text
;
1238 if (tline
->text
[0] == '$' && !tline
->text
[1])
1239 return tokval
->t_type
= TOKEN_HERE
;
1240 if (tline
->text
[0] == '$' && tline
->text
[1] == '$' && !tline
->text
[2])
1241 return tokval
->t_type
= TOKEN_BASE
;
1243 if (tline
->type
== TOK_ID
) {
1244 p
= tokval
->t_charptr
= tline
->text
;
1246 tokval
->t_charptr
++;
1247 return tokval
->t_type
= TOKEN_ID
;
1250 for (r
= p
, s
= ourcopy
; *r
; r
++) {
1251 if (r
>= p
+MAX_KEYWORD
)
1252 return tokval
->t_type
= TOKEN_ID
; /* Not a keyword */
1253 *s
++ = nasm_tolower(*r
);
1256 /* right, so we have an identifier sitting in temp storage. now,
1257 * is it actually a register or instruction name, or what? */
1258 return nasm_token_hash(ourcopy
, tokval
);
1261 if (tline
->type
== TOK_NUMBER
) {
1263 tokval
->t_integer
= readnum(tline
->text
, &rn_error
);
1264 tokval
->t_charptr
= tline
->text
;
1266 return tokval
->t_type
= TOKEN_ERRNUM
;
1268 return tokval
->t_type
= TOKEN_NUM
;
1271 if (tline
->type
== TOK_FLOAT
) {
1272 return tokval
->t_type
= TOKEN_FLOAT
;
1275 if (tline
->type
== TOK_STRING
) {
1278 bq
= tline
->text
[0];
1279 tokval
->t_charptr
= tline
->text
;
1280 tokval
->t_inttwo
= nasm_unquote(tline
->text
, &ep
);
1282 if (ep
[0] != bq
|| ep
[1] != '\0')
1283 return tokval
->t_type
= TOKEN_ERRSTR
;
1285 return tokval
->t_type
= TOKEN_STR
;
1288 if (tline
->type
== TOK_OTHER
) {
1289 if (!strcmp(tline
->text
, "<<"))
1290 return tokval
->t_type
= TOKEN_SHL
;
1291 if (!strcmp(tline
->text
, ">>"))
1292 return tokval
->t_type
= TOKEN_SHR
;
1293 if (!strcmp(tline
->text
, "//"))
1294 return tokval
->t_type
= TOKEN_SDIV
;
1295 if (!strcmp(tline
->text
, "%%"))
1296 return tokval
->t_type
= TOKEN_SMOD
;
1297 if (!strcmp(tline
->text
, "=="))
1298 return tokval
->t_type
= TOKEN_EQ
;
1299 if (!strcmp(tline
->text
, "<>"))
1300 return tokval
->t_type
= TOKEN_NE
;
1301 if (!strcmp(tline
->text
, "!="))
1302 return tokval
->t_type
= TOKEN_NE
;
1303 if (!strcmp(tline
->text
, "<="))
1304 return tokval
->t_type
= TOKEN_LE
;
1305 if (!strcmp(tline
->text
, ">="))
1306 return tokval
->t_type
= TOKEN_GE
;
1307 if (!strcmp(tline
->text
, "&&"))
1308 return tokval
->t_type
= TOKEN_DBL_AND
;
1309 if (!strcmp(tline
->text
, "^^"))
1310 return tokval
->t_type
= TOKEN_DBL_XOR
;
1311 if (!strcmp(tline
->text
, "||"))
1312 return tokval
->t_type
= TOKEN_DBL_OR
;
1316 * We have no other options: just return the first character of
1319 return tokval
->t_type
= tline
->text
[0];
1323 * Compare a string to the name of an existing macro; this is a
1324 * simple wrapper which calls either strcmp or nasm_stricmp
1325 * depending on the value of the `casesense' parameter.
1327 static int mstrcmp(const char *p
, const char *q
, bool casesense
)
1329 return casesense
? strcmp(p
, q
) : nasm_stricmp(p
, q
);
1333 * Compare a string to the name of an existing macro; this is a
1334 * simple wrapper which calls either strcmp or nasm_stricmp
1335 * depending on the value of the `casesense' parameter.
1337 static int mmemcmp(const char *p
, const char *q
, size_t l
, bool casesense
)
1339 return casesense
? memcmp(p
, q
, l
) : nasm_memicmp(p
, q
, l
);
1343 * Return the Context structure associated with a %$ token. Return
1344 * NULL, having _already_ reported an error condition, if the
1345 * context stack isn't deep enough for the supplied number of $
1347 * If all_contexts == true, contexts that enclose current are
1348 * also scanned for such smacro, until it is found; if not -
1349 * only the context that directly results from the number of $'s
1350 * in variable's name.
1352 * If "namep" is non-NULL, set it to the pointer to the macro name
1353 * tail, i.e. the part beyond %$...
1355 static Context
*get_ctx(const char *name
, const char **namep
,
1365 if (!name
|| name
[0] != '%' || name
[1] != '$')
1369 error(ERR_NONFATAL
, "`%s': context stack is empty", name
);
1376 while (ctx
&& *name
== '$') {
1382 error(ERR_NONFATAL
, "`%s': context stack is only"
1383 " %d level%s deep", name
, i
, (i
== 1 ? "" : "s"));
1394 /* Search for this smacro in found context */
1395 m
= hash_findix(&ctx
->localmac
, name
);
1397 if (!mstrcmp(m
->name
, name
, m
->casesense
))
1408 * Check to see if a file is already in a string list
1410 static bool in_list(const StrList
*list
, const char *str
)
1413 if (!strcmp(list
->str
, str
))
1421 * Open an include file. This routine must always return a valid
1422 * file pointer if it returns - it's responsible for throwing an
1423 * ERR_FATAL and bombing out completely if not. It should also try
1424 * the include path one by one until it finds the file or reaches
1425 * the end of the path.
1427 static FILE *inc_fopen(const char *file
, StrList
**dhead
, StrList
***dtail
,
1432 IncPath
*ip
= ipath
;
1433 int len
= strlen(file
);
1434 size_t prefix_len
= 0;
1438 sl
= nasm_malloc(prefix_len
+len
+1+sizeof sl
->next
);
1439 memcpy(sl
->str
, prefix
, prefix_len
);
1440 memcpy(sl
->str
+prefix_len
, file
, len
+1);
1441 fp
= fopen(sl
->str
, "r");
1442 if (fp
&& dhead
&& !in_list(*dhead
, sl
->str
)) {
1460 prefix_len
= strlen(prefix
);
1462 /* -MG given and file not found */
1463 if (dhead
&& !in_list(*dhead
, file
)) {
1464 sl
= nasm_malloc(len
+1+sizeof sl
->next
);
1466 strcpy(sl
->str
, file
);
1474 error(ERR_FATAL
, "unable to open include file `%s'", file
);
1479 * Determine if we should warn on defining a single-line macro of
1480 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
1481 * return true if _any_ single-line macro of that name is defined.
1482 * Otherwise, will return true if a single-line macro with either
1483 * `nparam' or no parameters is defined.
1485 * If a macro with precisely the right number of parameters is
1486 * defined, or nparam is -1, the address of the definition structure
1487 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
1488 * is NULL, no action will be taken regarding its contents, and no
1491 * Note that this is also called with nparam zero to resolve
1494 * If you already know which context macro belongs to, you can pass
1495 * the context pointer as first parameter; if you won't but name begins
1496 * with %$ the context will be automatically computed. If all_contexts
1497 * is true, macro will be searched in outer contexts as well.
1500 smacro_defined(Context
* ctx
, const char *name
, int nparam
, SMacro
** defn
,
1503 struct hash_table
*smtbl
;
1507 smtbl
= &ctx
->localmac
;
1508 } else if (name
[0] == '%' && name
[1] == '$') {
1510 ctx
= get_ctx(name
, &name
, false);
1512 return false; /* got to return _something_ */
1513 smtbl
= &ctx
->localmac
;
1517 m
= (SMacro
*) hash_findix(smtbl
, name
);
1520 if (!mstrcmp(m
->name
, name
, m
->casesense
&& nocase
) &&
1521 (nparam
<= 0 || m
->nparam
== 0 || nparam
== (int) m
->nparam
)) {
1523 if (nparam
== (int) m
->nparam
|| nparam
== -1)
1537 * Count and mark off the parameters in a multi-line macro call.
1538 * This is called both from within the multi-line macro expansion
1539 * code, and also to mark off the default parameters when provided
1540 * in a %macro definition line.
1542 static void count_mmac_params(Token
* t
, int *nparam
, Token
*** params
)
1544 int paramsize
, brace
;
1546 *nparam
= paramsize
= 0;
1549 /* +1: we need space for the final NULL */
1550 if (*nparam
+1 >= paramsize
) {
1551 paramsize
+= PARAM_DELTA
;
1552 *params
= nasm_realloc(*params
, sizeof(**params
) * paramsize
);
1556 if (tok_is_(t
, "{"))
1558 (*params
)[(*nparam
)++] = t
;
1559 while (tok_isnt_(t
, brace
? "}" : ","))
1561 if (t
) { /* got a comma/brace */
1565 * Now we've found the closing brace, look further
1569 if (tok_isnt_(t
, ",")) {
1571 "braces do not enclose all of macro parameter");
1572 while (tok_isnt_(t
, ","))
1576 t
= t
->next
; /* eat the comma */
1583 * Determine whether one of the various `if' conditions is true or
1586 * We must free the tline we get passed.
1588 static bool if_condition(Token
* tline
, enum preproc_token ct
)
1590 enum pp_conditional i
= PP_COND(ct
);
1592 Token
*t
, *tt
, **tptr
, *origline
;
1593 struct tokenval tokval
;
1595 enum pp_token_type needtype
;
1601 j
= false; /* have we matched yet? */
1606 if (tline
->type
!= TOK_ID
) {
1608 "`%s' expects context identifiers", pp_directives
[ct
]);
1609 free_tlist(origline
);
1612 if (cstk
&& cstk
->name
&& !nasm_stricmp(tline
->text
, cstk
->name
))
1614 tline
= tline
->next
;
1619 j
= false; /* have we matched yet? */
1622 if (!tline
|| (tline
->type
!= TOK_ID
&&
1623 (tline
->type
!= TOK_PREPROC_ID
||
1624 tline
->text
[1] != '$'))) {
1626 "`%s' expects macro identifiers", pp_directives
[ct
]);
1629 if (smacro_defined(NULL
, tline
->text
, 0, NULL
, true))
1631 tline
= tline
->next
;
1637 tline
= expand_smacro(tline
);
1639 while (tok_isnt_(tt
, ","))
1643 "`%s' expects two comma-separated arguments",
1648 j
= true; /* assume equality unless proved not */
1649 while ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) && tt
) {
1650 if (tt
->type
== TOK_OTHER
&& !strcmp(tt
->text
, ",")) {
1651 error(ERR_NONFATAL
, "`%s': more than one comma on line",
1655 if (t
->type
== TOK_WHITESPACE
) {
1659 if (tt
->type
== TOK_WHITESPACE
) {
1663 if (tt
->type
!= t
->type
) {
1664 j
= false; /* found mismatching tokens */
1667 /* When comparing strings, need to unquote them first */
1668 if (t
->type
== TOK_STRING
) {
1669 size_t l1
= nasm_unquote(t
->text
, NULL
);
1670 size_t l2
= nasm_unquote(tt
->text
, NULL
);
1676 if (mmemcmp(t
->text
, tt
->text
, l1
, i
== PPC_IFIDN
)) {
1680 } else if (mstrcmp(tt
->text
, t
->text
, i
== PPC_IFIDN
) != 0) {
1681 j
= false; /* found mismatching tokens */
1688 if ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) || tt
)
1689 j
= false; /* trailing gunk on one end or other */
1695 MMacro searching
, *mmac
;
1698 tline
= expand_id(tline
);
1699 if (!tok_type_(tline
, TOK_ID
)) {
1701 "`%s' expects a macro name", pp_directives
[ct
]);
1704 searching
.name
= nasm_strdup(tline
->text
);
1705 searching
.casesense
= true;
1706 searching
.plus
= false;
1707 searching
.nolist
= false;
1708 searching
.in_progress
= 0;
1709 searching
.max_depth
= 0;
1710 searching
.rep_nest
= NULL
;
1711 searching
.nparam_min
= 0;
1712 searching
.nparam_max
= INT_MAX
;
1713 tline
= expand_smacro(tline
->next
);
1716 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
1718 "`%s' expects a parameter count or nothing",
1721 searching
.nparam_min
= searching
.nparam_max
=
1722 readnum(tline
->text
, &j
);
1725 "unable to parse parameter count `%s'",
1728 if (tline
&& tok_is_(tline
->next
, "-")) {
1729 tline
= tline
->next
->next
;
1730 if (tok_is_(tline
, "*"))
1731 searching
.nparam_max
= INT_MAX
;
1732 else if (!tok_type_(tline
, TOK_NUMBER
))
1734 "`%s' expects a parameter count after `-'",
1737 searching
.nparam_max
= readnum(tline
->text
, &j
);
1740 "unable to parse parameter count `%s'",
1742 if (searching
.nparam_min
> searching
.nparam_max
)
1744 "minimum parameter count exceeds maximum");
1747 if (tline
&& tok_is_(tline
->next
, "+")) {
1748 tline
= tline
->next
;
1749 searching
.plus
= true;
1751 mmac
= (MMacro
*) hash_findix(&mmacros
, searching
.name
);
1753 if (!strcmp(mmac
->name
, searching
.name
) &&
1754 (mmac
->nparam_min
<= searching
.nparam_max
1756 && (searching
.nparam_min
<= mmac
->nparam_max
1763 if (tline
&& tline
->next
)
1764 error(ERR_WARNING
|ERR_PASS1
,
1765 "trailing garbage after %%ifmacro ignored");
1766 nasm_free(searching
.name
);
1775 needtype
= TOK_NUMBER
;
1778 needtype
= TOK_STRING
;
1782 t
= tline
= expand_smacro(tline
);
1784 while (tok_type_(t
, TOK_WHITESPACE
) ||
1785 (needtype
== TOK_NUMBER
&&
1786 tok_type_(t
, TOK_OTHER
) &&
1787 (t
->text
[0] == '-' || t
->text
[0] == '+') &&
1791 j
= tok_type_(t
, needtype
);
1795 t
= tline
= expand_smacro(tline
);
1796 while (tok_type_(t
, TOK_WHITESPACE
))
1801 t
= t
->next
; /* Skip the actual token */
1802 while (tok_type_(t
, TOK_WHITESPACE
))
1804 j
= !t
; /* Should be nothing left */
1809 t
= tline
= expand_smacro(tline
);
1810 while (tok_type_(t
, TOK_WHITESPACE
))
1813 j
= !t
; /* Should be empty */
1817 t
= tline
= expand_smacro(tline
);
1819 tokval
.t_type
= TOKEN_INVALID
;
1820 evalresult
= evaluate(ppscan
, tptr
, &tokval
,
1821 NULL
, pass
| CRITICAL
, error
, NULL
);
1825 error(ERR_WARNING
|ERR_PASS1
,
1826 "trailing garbage after expression ignored");
1827 if (!is_simple(evalresult
)) {
1829 "non-constant value given to `%s'", pp_directives
[ct
]);
1832 j
= reloc_value(evalresult
) != 0;
1837 "preprocessor directive `%s' not yet implemented",
1842 free_tlist(origline
);
1843 return j
^ PP_NEGATIVE(ct
);
1846 free_tlist(origline
);
1851 * Common code for defining an smacro
1853 static bool define_smacro(Context
*ctx
, const char *mname
, bool casesense
,
1854 int nparam
, Token
*expansion
)
1856 SMacro
*smac
, **smhead
;
1857 struct hash_table
*smtbl
;
1859 if (smacro_defined(ctx
, mname
, nparam
, &smac
, casesense
)) {
1861 error(ERR_WARNING
|ERR_PASS1
,
1862 "single-line macro `%s' defined both with and"
1863 " without parameters", mname
);
1865 * Some instances of the old code considered this a failure,
1866 * some others didn't. What is the right thing to do here?
1868 free_tlist(expansion
);
1869 return false; /* Failure */
1872 * We're redefining, so we have to take over an
1873 * existing SMacro structure. This means freeing
1874 * what was already in it.
1876 nasm_free(smac
->name
);
1877 free_tlist(smac
->expansion
);
1880 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
1881 smhead
= (SMacro
**) hash_findi_add(smtbl
, mname
);
1882 smac
= nasm_malloc(sizeof(SMacro
));
1883 smac
->next
= *smhead
;
1886 smac
->name
= nasm_strdup(mname
);
1887 smac
->casesense
= casesense
;
1888 smac
->nparam
= nparam
;
1889 smac
->expansion
= expansion
;
1890 smac
->in_progress
= false;
1891 return true; /* Success */
1895 * Undefine an smacro
1897 static void undef_smacro(Context
*ctx
, const char *mname
)
1899 SMacro
**smhead
, *s
, **sp
;
1900 struct hash_table
*smtbl
;
1902 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
1903 smhead
= (SMacro
**)hash_findi(smtbl
, mname
, NULL
);
1907 * We now have a macro name... go hunt for it.
1910 while ((s
= *sp
) != NULL
) {
1911 if (!mstrcmp(s
->name
, mname
, s
->casesense
)) {
1914 free_tlist(s
->expansion
);
1924 * Parse a mmacro specification.
1926 static bool parse_mmacro_spec(Token
*tline
, MMacro
*def
, const char *directive
)
1930 tline
= tline
->next
;
1932 tline
= expand_id(tline
);
1933 if (!tok_type_(tline
, TOK_ID
)) {
1934 error(ERR_NONFATAL
, "`%s' expects a macro name", directive
);
1939 def
->name
= nasm_strdup(tline
->text
);
1941 def
->nolist
= false;
1942 def
->in_progress
= 0;
1943 def
->rep_nest
= NULL
;
1944 def
->nparam_min
= 0;
1945 def
->nparam_max
= 0;
1947 tline
= expand_smacro(tline
->next
);
1949 if (!tok_type_(tline
, TOK_NUMBER
)) {
1950 error(ERR_NONFATAL
, "`%s' expects a parameter count", directive
);
1952 def
->nparam_min
= def
->nparam_max
=
1953 readnum(tline
->text
, &err
);
1956 "unable to parse parameter count `%s'", tline
->text
);
1958 if (tline
&& tok_is_(tline
->next
, "-")) {
1959 tline
= tline
->next
->next
;
1960 if (tok_is_(tline
, "*")) {
1961 def
->nparam_max
= INT_MAX
;
1962 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
1964 "`%s' expects a parameter count after `-'", directive
);
1966 def
->nparam_max
= readnum(tline
->text
, &err
);
1968 error(ERR_NONFATAL
, "unable to parse parameter count `%s'",
1971 if (def
->nparam_min
> def
->nparam_max
) {
1972 error(ERR_NONFATAL
, "minimum parameter count exceeds maximum");
1976 if (tline
&& tok_is_(tline
->next
, "+")) {
1977 tline
= tline
->next
;
1980 if (tline
&& tok_type_(tline
->next
, TOK_ID
) &&
1981 !nasm_stricmp(tline
->next
->text
, ".nolist")) {
1982 tline
= tline
->next
;
1987 * Handle default parameters.
1989 if (tline
&& tline
->next
) {
1990 def
->dlist
= tline
->next
;
1992 count_mmac_params(def
->dlist
, &def
->ndefs
, &def
->defaults
);
1995 def
->defaults
= NULL
;
1997 def
->expansion
= NULL
;
1999 if (def
->defaults
&& def
->ndefs
> def
->nparam_max
- def
->nparam_min
&&
2001 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MDP
,
2002 "too many default macro parameters");
2009 * Decode a size directive
2011 static int parse_size(const char *str
) {
2012 static const char *size_names
[] =
2013 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
2014 static const int sizes
[] =
2015 { 0, 1, 4, 16, 8, 10, 2, 32 };
2017 return sizes
[bsii(str
, size_names
, elements(size_names
))+1];
2021 * nasm_unquote with error if the string contains NUL characters.
2022 * If the string contains NUL characters, issue an error and return
2023 * the C len, i.e. truncate at the NUL.
2025 static size_t nasm_unquote_cstr(char *qstr
, enum preproc_token directive
)
2027 size_t len
= nasm_unquote(qstr
, NULL
);
2028 size_t clen
= strlen(qstr
);
2031 error(ERR_NONFATAL
, "NUL character in `%s' directive",
2032 pp_directives
[directive
]);
2038 * find and process preprocessor directive in passed line
2039 * Find out if a line contains a preprocessor directive, and deal
2042 * If a directive _is_ found, it is the responsibility of this routine
2043 * (and not the caller) to free_tlist() the line.
2045 * @param tline a pointer to the current tokeninzed line linked list
2046 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
2049 static int do_directive(Token
* tline
)
2051 enum preproc_token i
;
2064 MMacro
*mmac
, **mmhead
;
2065 Token
*t
, *tt
, *param_start
, *macro_start
, *last
, **tptr
, *origline
;
2067 struct tokenval tokval
;
2069 MMacro
*tmp_defining
; /* Used when manipulating rep_nest */
2077 if (!tline
|| !tok_type_(tline
, TOK_PREPROC_ID
) ||
2078 (tline
->text
[1] == '%' || tline
->text
[1] == '$'
2079 || tline
->text
[1] == '!'))
2080 return NO_DIRECTIVE_FOUND
;
2082 i
= pp_token_hash(tline
->text
);
2085 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2086 * since they are known to be buggy at moment, we need to fix them
2087 * in future release (2.09-2.10)
2089 if (i
== PP_RMACRO
|| i
== PP_RMACRO
|| i
== PP_EXITMACRO
) {
2090 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2092 return NO_DIRECTIVE_FOUND
;
2096 * If we're in a non-emitting branch of a condition construct,
2097 * or walking to the end of an already terminated %rep block,
2098 * we should ignore all directives except for condition
2101 if (((istk
->conds
&& !emitting(istk
->conds
->state
)) ||
2102 (istk
->mstk
&& !istk
->mstk
->in_progress
)) && !is_condition(i
)) {
2103 return NO_DIRECTIVE_FOUND
;
2107 * If we're defining a macro or reading a %rep block, we should
2108 * ignore all directives except for %macro/%imacro (which nest),
2109 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2110 * If we're in a %rep block, another %rep nests, so should be let through.
2112 if (defining
&& i
!= PP_MACRO
&& i
!= PP_IMACRO
&&
2113 i
!= PP_RMACRO
&& i
!= PP_IRMACRO
&&
2114 i
!= PP_ENDMACRO
&& i
!= PP_ENDM
&&
2115 (defining
->name
|| (i
!= PP_ENDREP
&& i
!= PP_REP
))) {
2116 return NO_DIRECTIVE_FOUND
;
2120 if (i
== PP_MACRO
|| i
== PP_IMACRO
||
2121 i
== PP_RMACRO
|| i
== PP_IRMACRO
) {
2123 return NO_DIRECTIVE_FOUND
;
2124 } else if (nested_mac_count
> 0) {
2125 if (i
== PP_ENDMACRO
) {
2127 return NO_DIRECTIVE_FOUND
;
2130 if (!defining
->name
) {
2133 return NO_DIRECTIVE_FOUND
;
2134 } else if (nested_rep_count
> 0) {
2135 if (i
== PP_ENDREP
) {
2137 return NO_DIRECTIVE_FOUND
;
2145 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2147 return NO_DIRECTIVE_FOUND
; /* didn't get it */
2150 /* Directive to tell NASM what the default stack size is. The
2151 * default is for a 16-bit stack, and this can be overriden with
2154 tline
= tline
->next
;
2155 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2156 tline
= tline
->next
;
2157 if (!tline
|| tline
->type
!= TOK_ID
) {
2158 error(ERR_NONFATAL
, "`%%stacksize' missing size parameter");
2159 free_tlist(origline
);
2160 return DIRECTIVE_FOUND
;
2162 if (nasm_stricmp(tline
->text
, "flat") == 0) {
2163 /* All subsequent ARG directives are for a 32-bit stack */
2165 StackPointer
= "ebp";
2168 } else if (nasm_stricmp(tline
->text
, "flat64") == 0) {
2169 /* All subsequent ARG directives are for a 64-bit stack */
2171 StackPointer
= "rbp";
2174 } else if (nasm_stricmp(tline
->text
, "large") == 0) {
2175 /* All subsequent ARG directives are for a 16-bit stack,
2176 * far function call.
2179 StackPointer
= "bp";
2182 } else if (nasm_stricmp(tline
->text
, "small") == 0) {
2183 /* All subsequent ARG directives are for a 16-bit stack,
2184 * far function call. We don't support near functions.
2187 StackPointer
= "bp";
2191 error(ERR_NONFATAL
, "`%%stacksize' invalid size type");
2192 free_tlist(origline
);
2193 return DIRECTIVE_FOUND
;
2195 free_tlist(origline
);
2196 return DIRECTIVE_FOUND
;
2199 /* TASM like ARG directive to define arguments to functions, in
2200 * the following form:
2202 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2206 char *arg
, directive
[256];
2207 int size
= StackSize
;
2209 /* Find the argument name */
2210 tline
= tline
->next
;
2211 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2212 tline
= tline
->next
;
2213 if (!tline
|| tline
->type
!= TOK_ID
) {
2214 error(ERR_NONFATAL
, "`%%arg' missing argument parameter");
2215 free_tlist(origline
);
2216 return DIRECTIVE_FOUND
;
2220 /* Find the argument size type */
2221 tline
= tline
->next
;
2222 if (!tline
|| tline
->type
!= TOK_OTHER
2223 || tline
->text
[0] != ':') {
2225 "Syntax error processing `%%arg' directive");
2226 free_tlist(origline
);
2227 return DIRECTIVE_FOUND
;
2229 tline
= tline
->next
;
2230 if (!tline
|| tline
->type
!= TOK_ID
) {
2231 error(ERR_NONFATAL
, "`%%arg' missing size type parameter");
2232 free_tlist(origline
);
2233 return DIRECTIVE_FOUND
;
2236 /* Allow macro expansion of type parameter */
2237 tt
= tokenize(tline
->text
);
2238 tt
= expand_smacro(tt
);
2239 size
= parse_size(tt
->text
);
2242 "Invalid size type for `%%arg' missing directive");
2244 free_tlist(origline
);
2245 return DIRECTIVE_FOUND
;
2249 /* Round up to even stack slots */
2250 size
= ALIGN(size
, StackSize
);
2252 /* Now define the macro for the argument */
2253 snprintf(directive
, sizeof(directive
), "%%define %s (%s+%d)",
2254 arg
, StackPointer
, offset
);
2255 do_directive(tokenize(directive
));
2258 /* Move to the next argument in the list */
2259 tline
= tline
->next
;
2260 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2261 tline
= tline
->next
;
2262 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2264 free_tlist(origline
);
2265 return DIRECTIVE_FOUND
;
2268 /* TASM like LOCAL directive to define local variables for a
2269 * function, in the following form:
2271 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2273 * The '= LocalSize' at the end is ignored by NASM, but is
2274 * required by TASM to define the local parameter size (and used
2275 * by the TASM macro package).
2277 offset
= LocalOffset
;
2279 char *local
, directive
[256];
2280 int size
= StackSize
;
2282 /* Find the argument name */
2283 tline
= tline
->next
;
2284 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2285 tline
= tline
->next
;
2286 if (!tline
|| tline
->type
!= TOK_ID
) {
2288 "`%%local' missing argument parameter");
2289 free_tlist(origline
);
2290 return DIRECTIVE_FOUND
;
2292 local
= tline
->text
;
2294 /* Find the argument size type */
2295 tline
= tline
->next
;
2296 if (!tline
|| tline
->type
!= TOK_OTHER
2297 || tline
->text
[0] != ':') {
2299 "Syntax error processing `%%local' directive");
2300 free_tlist(origline
);
2301 return DIRECTIVE_FOUND
;
2303 tline
= tline
->next
;
2304 if (!tline
|| tline
->type
!= TOK_ID
) {
2306 "`%%local' missing size type parameter");
2307 free_tlist(origline
);
2308 return DIRECTIVE_FOUND
;
2311 /* Allow macro expansion of type parameter */
2312 tt
= tokenize(tline
->text
);
2313 tt
= expand_smacro(tt
);
2314 size
= parse_size(tt
->text
);
2317 "Invalid size type for `%%local' missing directive");
2319 free_tlist(origline
);
2320 return DIRECTIVE_FOUND
;
2324 /* Round up to even stack slots */
2325 size
= ALIGN(size
, StackSize
);
2327 offset
+= size
; /* Negative offset, increment before */
2329 /* Now define the macro for the argument */
2330 snprintf(directive
, sizeof(directive
), "%%define %s (%s-%d)",
2331 local
, StackPointer
, offset
);
2332 do_directive(tokenize(directive
));
2334 /* Now define the assign to setup the enter_c macro correctly */
2335 snprintf(directive
, sizeof(directive
),
2336 "%%assign %%$localsize %%$localsize+%d", size
);
2337 do_directive(tokenize(directive
));
2339 /* Move to the next argument in the list */
2340 tline
= tline
->next
;
2341 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2342 tline
= tline
->next
;
2343 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2344 LocalOffset
= offset
;
2345 free_tlist(origline
);
2346 return DIRECTIVE_FOUND
;
2350 error(ERR_WARNING
|ERR_PASS1
,
2351 "trailing garbage after `%%clear' ignored");
2354 free_tlist(origline
);
2355 return DIRECTIVE_FOUND
;
2358 t
= tline
->next
= expand_smacro(tline
->next
);
2360 if (!t
|| (t
->type
!= TOK_STRING
&&
2361 t
->type
!= TOK_INTERNAL_STRING
)) {
2362 error(ERR_NONFATAL
, "`%%depend' expects a file name");
2363 free_tlist(origline
);
2364 return DIRECTIVE_FOUND
; /* but we did _something_ */
2367 error(ERR_WARNING
|ERR_PASS1
,
2368 "trailing garbage after `%%depend' ignored");
2370 if (t
->type
!= TOK_INTERNAL_STRING
)
2371 nasm_unquote_cstr(p
, i
);
2372 if (dephead
&& !in_list(*dephead
, p
)) {
2373 StrList
*sl
= nasm_malloc(strlen(p
)+1+sizeof sl
->next
);
2377 deptail
= &sl
->next
;
2379 free_tlist(origline
);
2380 return DIRECTIVE_FOUND
;
2383 t
= tline
->next
= expand_smacro(tline
->next
);
2386 if (!t
|| (t
->type
!= TOK_STRING
&&
2387 t
->type
!= TOK_INTERNAL_STRING
)) {
2388 error(ERR_NONFATAL
, "`%%include' expects a file name");
2389 free_tlist(origline
);
2390 return DIRECTIVE_FOUND
; /* but we did _something_ */
2393 error(ERR_WARNING
|ERR_PASS1
,
2394 "trailing garbage after `%%include' ignored");
2396 if (t
->type
!= TOK_INTERNAL_STRING
)
2397 nasm_unquote_cstr(p
, i
);
2398 inc
= nasm_malloc(sizeof(Include
));
2401 inc
->fp
= inc_fopen(p
, dephead
, &deptail
, pass
== 0);
2403 /* -MG given but file not found */
2406 inc
->fname
= src_set_fname(nasm_strdup(p
));
2407 inc
->lineno
= src_set_linnum(0);
2409 inc
->expansion
= NULL
;
2412 list
->uplevel(LIST_INCLUDE
);
2414 free_tlist(origline
);
2415 return DIRECTIVE_FOUND
;
2419 static macros_t
*use_pkg
;
2420 const char *pkg_macro
= NULL
;
2422 tline
= tline
->next
;
2424 tline
= expand_id(tline
);
2426 if (!tline
|| (tline
->type
!= TOK_STRING
&&
2427 tline
->type
!= TOK_INTERNAL_STRING
&&
2428 tline
->type
!= TOK_ID
)) {
2429 error(ERR_NONFATAL
, "`%%use' expects a package name");
2430 free_tlist(origline
);
2431 return DIRECTIVE_FOUND
; /* but we did _something_ */
2434 error(ERR_WARNING
|ERR_PASS1
,
2435 "trailing garbage after `%%use' ignored");
2436 if (tline
->type
== TOK_STRING
)
2437 nasm_unquote_cstr(tline
->text
, i
);
2438 use_pkg
= nasm_stdmac_find_package(tline
->text
);
2440 error(ERR_NONFATAL
, "unknown `%%use' package: %s", tline
->text
);
2442 pkg_macro
= (char *)use_pkg
+ 1; /* The first string will be <%define>__USE_*__ */
2443 if (use_pkg
&& ! smacro_defined(NULL
, pkg_macro
, 0, NULL
, true)) {
2444 /* Not already included, go ahead and include it */
2445 stdmacpos
= use_pkg
;
2447 free_tlist(origline
);
2448 return DIRECTIVE_FOUND
;
2453 tline
= tline
->next
;
2455 tline
= expand_id(tline
);
2457 if (!tok_type_(tline
, TOK_ID
)) {
2458 error(ERR_NONFATAL
, "`%s' expects a context identifier",
2460 free_tlist(origline
);
2461 return DIRECTIVE_FOUND
; /* but we did _something_ */
2464 error(ERR_WARNING
|ERR_PASS1
,
2465 "trailing garbage after `%s' ignored",
2467 p
= nasm_strdup(tline
->text
);
2469 p
= NULL
; /* Anonymous */
2473 ctx
= nasm_malloc(sizeof(Context
));
2475 hash_init(&ctx
->localmac
, HASH_SMALL
);
2477 ctx
->number
= unique
++;
2482 error(ERR_NONFATAL
, "`%s': context stack is empty",
2484 } else if (i
== PP_POP
) {
2485 if (p
&& (!cstk
->name
|| nasm_stricmp(p
, cstk
->name
)))
2486 error(ERR_NONFATAL
, "`%%pop' in wrong context: %s, "
2488 cstk
->name
? cstk
->name
: "anonymous", p
);
2493 nasm_free(cstk
->name
);
2499 free_tlist(origline
);
2500 return DIRECTIVE_FOUND
;
2502 severity
= ERR_FATAL
;
2505 severity
= ERR_NONFATAL
;
2508 severity
= ERR_WARNING
|ERR_WARN_USER
;
2513 /* Only error out if this is the final pass */
2514 if (pass
!= 2 && i
!= PP_FATAL
)
2515 return DIRECTIVE_FOUND
;
2517 tline
->next
= expand_smacro(tline
->next
);
2518 tline
= tline
->next
;
2520 t
= tline
? tline
->next
: NULL
;
2522 if (tok_type_(tline
, TOK_STRING
) && !t
) {
2523 /* The line contains only a quoted string */
2525 nasm_unquote(p
, NULL
); /* Ignore NUL character truncation */
2526 error(severity
, "%s", p
);
2528 /* Not a quoted string, or more than a quoted string */
2529 p
= detoken(tline
, false);
2530 error(severity
, "%s", p
);
2533 free_tlist(origline
);
2534 return DIRECTIVE_FOUND
;
2538 if (istk
->conds
&& !emitting(istk
->conds
->state
))
2541 j
= if_condition(tline
->next
, i
);
2542 tline
->next
= NULL
; /* it got freed */
2543 j
= j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2545 cond
= nasm_malloc(sizeof(Cond
));
2546 cond
->next
= istk
->conds
;
2550 istk
->mstk
->condcnt
++;
2551 free_tlist(origline
);
2552 return DIRECTIVE_FOUND
;
2556 error(ERR_FATAL
, "`%s': no matching `%%if'", pp_directives
[i
]);
2557 switch(istk
->conds
->state
) {
2559 istk
->conds
->state
= COND_DONE
;
2566 case COND_ELSE_TRUE
:
2567 case COND_ELSE_FALSE
:
2568 error_precond(ERR_WARNING
|ERR_PASS1
,
2569 "`%%elif' after `%%else' ignored");
2570 istk
->conds
->state
= COND_NEVER
;
2575 * IMPORTANT: In the case of %if, we will already have
2576 * called expand_mmac_params(); however, if we're
2577 * processing an %elif we must have been in a
2578 * non-emitting mode, which would have inhibited
2579 * the normal invocation of expand_mmac_params().
2580 * Therefore, we have to do it explicitly here.
2582 j
= if_condition(expand_mmac_params(tline
->next
), i
);
2583 tline
->next
= NULL
; /* it got freed */
2584 istk
->conds
->state
=
2585 j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2588 free_tlist(origline
);
2589 return DIRECTIVE_FOUND
;
2593 error_precond(ERR_WARNING
|ERR_PASS1
,
2594 "trailing garbage after `%%else' ignored");
2596 error(ERR_FATAL
, "`%%else': no matching `%%if'");
2597 switch(istk
->conds
->state
) {
2600 istk
->conds
->state
= COND_ELSE_FALSE
;
2607 istk
->conds
->state
= COND_ELSE_TRUE
;
2610 case COND_ELSE_TRUE
:
2611 case COND_ELSE_FALSE
:
2612 error_precond(ERR_WARNING
|ERR_PASS1
,
2613 "`%%else' after `%%else' ignored.");
2614 istk
->conds
->state
= COND_NEVER
;
2617 free_tlist(origline
);
2618 return DIRECTIVE_FOUND
;
2622 error_precond(ERR_WARNING
|ERR_PASS1
,
2623 "trailing garbage after `%%endif' ignored");
2625 error(ERR_FATAL
, "`%%endif': no matching `%%if'");
2627 istk
->conds
= cond
->next
;
2630 istk
->mstk
->condcnt
--;
2631 free_tlist(origline
);
2632 return DIRECTIVE_FOUND
;
2639 error(ERR_FATAL
, "`%s': already defining a macro",
2641 return DIRECTIVE_FOUND
;
2643 defining
= nasm_malloc(sizeof(MMacro
));
2644 defining
->max_depth
=
2645 (i
== PP_RMACRO
) || (i
== PP_IRMACRO
) ? DEADMAN_LIMIT
: 0;
2646 defining
->casesense
= (i
== PP_MACRO
) || (i
== PP_RMACRO
);
2647 if (!parse_mmacro_spec(tline
, defining
, pp_directives
[i
])) {
2648 nasm_free(defining
);
2650 return DIRECTIVE_FOUND
;
2653 mmac
= (MMacro
*) hash_findix(&mmacros
, defining
->name
);
2655 if (!strcmp(mmac
->name
, defining
->name
) &&
2656 (mmac
->nparam_min
<= defining
->nparam_max
2658 && (defining
->nparam_min
<= mmac
->nparam_max
2660 error(ERR_WARNING
|ERR_PASS1
,
2661 "redefining multi-line macro `%s'", defining
->name
);
2662 return DIRECTIVE_FOUND
;
2666 free_tlist(origline
);
2667 return DIRECTIVE_FOUND
;
2671 if (! (defining
&& defining
->name
)) {
2672 error(ERR_NONFATAL
, "`%s': not defining a macro", tline
->text
);
2673 return DIRECTIVE_FOUND
;
2675 mmhead
= (MMacro
**) hash_findi_add(&mmacros
, defining
->name
);
2676 defining
->next
= *mmhead
;
2679 free_tlist(origline
);
2680 return DIRECTIVE_FOUND
;
2684 * We must search along istk->expansion until we hit a
2685 * macro-end marker for a macro with a name. Then we
2686 * bypass all lines between exitmacro and endmacro.
2688 for (l
= istk
->expansion
; l
; l
= l
->next
)
2689 if (l
->finishes
&& l
->finishes
->name
)
2694 * Remove all conditional entries relative to this
2695 * macro invocation. (safe to do in this context)
2697 for ( ; l
->finishes
->condcnt
> 0; l
->finishes
->condcnt
--) {
2699 istk
->conds
= cond
->next
;
2702 istk
->expansion
= l
;
2704 error(ERR_NONFATAL
, "`%%exitmacro' not within `%%macro' block");
2706 free_tlist(origline
);
2707 return DIRECTIVE_FOUND
;
2715 spec
.casesense
= (i
== PP_UNMACRO
);
2716 if (!parse_mmacro_spec(tline
, &spec
, pp_directives
[i
])) {
2717 return DIRECTIVE_FOUND
;
2719 mmac_p
= (MMacro
**) hash_findi(&mmacros
, spec
.name
, NULL
);
2720 while (mmac_p
&& *mmac_p
) {
2722 if (mmac
->casesense
== spec
.casesense
&&
2723 !mstrcmp(mmac
->name
, spec
.name
, spec
.casesense
) &&
2724 mmac
->nparam_min
== spec
.nparam_min
&&
2725 mmac
->nparam_max
== spec
.nparam_max
&&
2726 mmac
->plus
== spec
.plus
) {
2727 *mmac_p
= mmac
->next
;
2730 mmac_p
= &mmac
->next
;
2733 free_tlist(origline
);
2734 free_tlist(spec
.dlist
);
2735 return DIRECTIVE_FOUND
;
2739 if (tline
->next
&& tline
->next
->type
== TOK_WHITESPACE
)
2740 tline
= tline
->next
;
2742 free_tlist(origline
);
2743 error(ERR_NONFATAL
, "`%%rotate' missing rotate count");
2744 return DIRECTIVE_FOUND
;
2746 t
= expand_smacro(tline
->next
);
2748 free_tlist(origline
);
2751 tokval
.t_type
= TOKEN_INVALID
;
2753 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2756 return DIRECTIVE_FOUND
;
2758 error(ERR_WARNING
|ERR_PASS1
,
2759 "trailing garbage after expression ignored");
2760 if (!is_simple(evalresult
)) {
2761 error(ERR_NONFATAL
, "non-constant value given to `%%rotate'");
2762 return DIRECTIVE_FOUND
;
2765 while (mmac
&& !mmac
->name
) /* avoid mistaking %reps for macros */
2766 mmac
= mmac
->next_active
;
2768 error(ERR_NONFATAL
, "`%%rotate' invoked outside a macro call");
2769 } else if (mmac
->nparam
== 0) {
2771 "`%%rotate' invoked within macro without parameters");
2773 int rotate
= mmac
->rotate
+ reloc_value(evalresult
);
2775 rotate
%= (int)mmac
->nparam
;
2777 rotate
+= mmac
->nparam
;
2779 mmac
->rotate
= rotate
;
2781 return DIRECTIVE_FOUND
;
2786 tline
= tline
->next
;
2787 } while (tok_type_(tline
, TOK_WHITESPACE
));
2789 if (tok_type_(tline
, TOK_ID
) &&
2790 nasm_stricmp(tline
->text
, ".nolist") == 0) {
2793 tline
= tline
->next
;
2794 } while (tok_type_(tline
, TOK_WHITESPACE
));
2798 t
= expand_smacro(tline
);
2800 tokval
.t_type
= TOKEN_INVALID
;
2802 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2804 free_tlist(origline
);
2805 return DIRECTIVE_FOUND
;
2808 error(ERR_WARNING
|ERR_PASS1
,
2809 "trailing garbage after expression ignored");
2810 if (!is_simple(evalresult
)) {
2811 error(ERR_NONFATAL
, "non-constant value given to `%%rep'");
2812 return DIRECTIVE_FOUND
;
2814 count
= reloc_value(evalresult
) + 1;
2816 error(ERR_NONFATAL
, "`%%rep' expects a repeat count");
2819 free_tlist(origline
);
2821 tmp_defining
= defining
;
2822 defining
= nasm_malloc(sizeof(MMacro
));
2823 defining
->prev
= NULL
;
2824 defining
->name
= NULL
; /* flags this macro as a %rep block */
2825 defining
->casesense
= false;
2826 defining
->plus
= false;
2827 defining
->nolist
= nolist
;
2828 defining
->in_progress
= count
;
2829 defining
->max_depth
= 0;
2830 defining
->nparam_min
= defining
->nparam_max
= 0;
2831 defining
->defaults
= NULL
;
2832 defining
->dlist
= NULL
;
2833 defining
->expansion
= NULL
;
2834 defining
->next_active
= istk
->mstk
;
2835 defining
->rep_nest
= tmp_defining
;
2836 return DIRECTIVE_FOUND
;
2839 if (!defining
|| defining
->name
) {
2840 error(ERR_NONFATAL
, "`%%endrep': no matching `%%rep'");
2841 return DIRECTIVE_FOUND
;
2845 * Now we have a "macro" defined - although it has no name
2846 * and we won't be entering it in the hash tables - we must
2847 * push a macro-end marker for it on to istk->expansion.
2848 * After that, it will take care of propagating itself (a
2849 * macro-end marker line for a macro which is really a %rep
2850 * block will cause the macro to be re-expanded, complete
2851 * with another macro-end marker to ensure the process
2852 * continues) until the whole expansion is forcibly removed
2853 * from istk->expansion by a %exitrep.
2855 l
= nasm_malloc(sizeof(Line
));
2856 l
->next
= istk
->expansion
;
2857 l
->finishes
= defining
;
2859 istk
->expansion
= l
;
2861 istk
->mstk
= defining
;
2863 list
->uplevel(defining
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
2864 tmp_defining
= defining
;
2865 defining
= defining
->rep_nest
;
2866 free_tlist(origline
);
2867 return DIRECTIVE_FOUND
;
2871 * We must search along istk->expansion until we hit a
2872 * macro-end marker for a macro with no name. Then we set
2873 * its `in_progress' flag to 0.
2875 for (l
= istk
->expansion
; l
; l
= l
->next
)
2876 if (l
->finishes
&& !l
->finishes
->name
)
2880 l
->finishes
->in_progress
= 1;
2882 error(ERR_NONFATAL
, "`%%exitrep' not within `%%rep' block");
2883 free_tlist(origline
);
2884 return DIRECTIVE_FOUND
;
2890 casesense
= (i
== PP_DEFINE
|| i
== PP_XDEFINE
);
2892 tline
= tline
->next
;
2894 tline
= expand_id(tline
);
2895 if (!tline
|| (tline
->type
!= TOK_ID
&&
2896 (tline
->type
!= TOK_PREPROC_ID
||
2897 tline
->text
[1] != '$'))) {
2898 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
2900 free_tlist(origline
);
2901 return DIRECTIVE_FOUND
;
2904 ctx
= get_ctx(tline
->text
, &mname
, false);
2906 param_start
= tline
= tline
->next
;
2909 /* Expand the macro definition now for %xdefine and %ixdefine */
2910 if ((i
== PP_XDEFINE
) || (i
== PP_IXDEFINE
))
2911 tline
= expand_smacro(tline
);
2913 if (tok_is_(tline
, "(")) {
2915 * This macro has parameters.
2918 tline
= tline
->next
;
2922 error(ERR_NONFATAL
, "parameter identifier expected");
2923 free_tlist(origline
);
2924 return DIRECTIVE_FOUND
;
2926 if (tline
->type
!= TOK_ID
) {
2928 "`%s': parameter identifier expected",
2930 free_tlist(origline
);
2931 return DIRECTIVE_FOUND
;
2933 tline
->type
= TOK_SMAC_PARAM
+ nparam
++;
2934 tline
= tline
->next
;
2936 if (tok_is_(tline
, ",")) {
2937 tline
= tline
->next
;
2939 if (!tok_is_(tline
, ")")) {
2941 "`)' expected to terminate macro template");
2942 free_tlist(origline
);
2943 return DIRECTIVE_FOUND
;
2949 tline
= tline
->next
;
2951 if (tok_type_(tline
, TOK_WHITESPACE
))
2952 last
= tline
, tline
= tline
->next
;
2957 if (t
->type
== TOK_ID
) {
2958 for (tt
= param_start
; tt
; tt
= tt
->next
)
2959 if (tt
->type
>= TOK_SMAC_PARAM
&&
2960 !strcmp(tt
->text
, t
->text
))
2964 t
->next
= macro_start
;
2969 * Good. We now have a macro name, a parameter count, and a
2970 * token list (in reverse order) for an expansion. We ought
2971 * to be OK just to create an SMacro, store it, and let
2972 * free_tlist have the rest of the line (which we have
2973 * carefully re-terminated after chopping off the expansion
2976 define_smacro(ctx
, mname
, casesense
, nparam
, macro_start
);
2977 free_tlist(origline
);
2978 return DIRECTIVE_FOUND
;
2981 tline
= tline
->next
;
2983 tline
= expand_id(tline
);
2984 if (!tline
|| (tline
->type
!= TOK_ID
&&
2985 (tline
->type
!= TOK_PREPROC_ID
||
2986 tline
->text
[1] != '$'))) {
2987 error(ERR_NONFATAL
, "`%%undef' expects a macro identifier");
2988 free_tlist(origline
);
2989 return DIRECTIVE_FOUND
;
2992 error(ERR_WARNING
|ERR_PASS1
,
2993 "trailing garbage after macro name ignored");
2996 /* Find the context that symbol belongs to */
2997 ctx
= get_ctx(tline
->text
, &mname
, false);
2998 undef_smacro(ctx
, mname
);
2999 free_tlist(origline
);
3000 return DIRECTIVE_FOUND
;
3004 casesense
= (i
== PP_DEFSTR
);
3006 tline
= tline
->next
;
3008 tline
= expand_id(tline
);
3009 if (!tline
|| (tline
->type
!= TOK_ID
&&
3010 (tline
->type
!= TOK_PREPROC_ID
||
3011 tline
->text
[1] != '$'))) {
3012 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
3014 free_tlist(origline
);
3015 return DIRECTIVE_FOUND
;
3018 ctx
= get_ctx(tline
->text
, &mname
, false);
3020 tline
= expand_smacro(tline
->next
);
3023 while (tok_type_(tline
, TOK_WHITESPACE
))
3024 tline
= delete_Token(tline
);
3026 p
= detoken(tline
, false);
3027 macro_start
= nasm_malloc(sizeof(*macro_start
));
3028 macro_start
->next
= NULL
;
3029 macro_start
->text
= nasm_quote(p
, strlen(p
));
3030 macro_start
->type
= TOK_STRING
;
3031 macro_start
->a
.mac
= NULL
;
3035 * We now have a macro name, an implicit parameter count of
3036 * zero, and a string token to use as an expansion. Create
3037 * and store an SMacro.
3039 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3040 free_tlist(origline
);
3041 return DIRECTIVE_FOUND
;
3045 casesense
= (i
== PP_DEFTOK
);
3047 tline
= tline
->next
;
3049 tline
= expand_id(tline
);
3050 if (!tline
|| (tline
->type
!= TOK_ID
&&
3051 (tline
->type
!= TOK_PREPROC_ID
||
3052 tline
->text
[1] != '$'))) {
3054 "`%s' expects a macro identifier as first parameter",
3056 free_tlist(origline
);
3057 return DIRECTIVE_FOUND
;
3059 ctx
= get_ctx(tline
->text
, &mname
, false);
3061 tline
= expand_smacro(tline
->next
);
3065 while (tok_type_(t
, TOK_WHITESPACE
))
3067 /* t should now point to the string */
3068 if (t
->type
!= TOK_STRING
) {
3070 "`%s` requires string as second parameter",
3073 free_tlist(origline
);
3074 return DIRECTIVE_FOUND
;
3077 nasm_unquote_cstr(t
->text
, i
);
3078 macro_start
= tokenize(t
->text
);
3081 * We now have a macro name, an implicit parameter count of
3082 * zero, and a numeric token to use as an expansion. Create
3083 * and store an SMacro.
3085 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3087 free_tlist(origline
);
3088 return DIRECTIVE_FOUND
;
3093 StrList
*xsl
= NULL
;
3094 StrList
**xst
= &xsl
;
3098 tline
= tline
->next
;
3100 tline
= expand_id(tline
);
3101 if (!tline
|| (tline
->type
!= TOK_ID
&&
3102 (tline
->type
!= TOK_PREPROC_ID
||
3103 tline
->text
[1] != '$'))) {
3105 "`%%pathsearch' expects a macro identifier as first parameter");
3106 free_tlist(origline
);
3107 return DIRECTIVE_FOUND
;
3109 ctx
= get_ctx(tline
->text
, &mname
, false);
3111 tline
= expand_smacro(tline
->next
);
3115 while (tok_type_(t
, TOK_WHITESPACE
))
3118 if (!t
|| (t
->type
!= TOK_STRING
&&
3119 t
->type
!= TOK_INTERNAL_STRING
)) {
3120 error(ERR_NONFATAL
, "`%%pathsearch' expects a file name");
3122 free_tlist(origline
);
3123 return DIRECTIVE_FOUND
; /* but we did _something_ */
3126 error(ERR_WARNING
|ERR_PASS1
,
3127 "trailing garbage after `%%pathsearch' ignored");
3129 if (t
->type
!= TOK_INTERNAL_STRING
)
3130 nasm_unquote(p
, NULL
);
3132 fp
= inc_fopen(p
, &xsl
, &xst
, true);
3135 fclose(fp
); /* Don't actually care about the file */
3137 macro_start
= nasm_malloc(sizeof(*macro_start
));
3138 macro_start
->next
= NULL
;
3139 macro_start
->text
= nasm_quote(p
, strlen(p
));
3140 macro_start
->type
= TOK_STRING
;
3141 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
);
3152 free_tlist(origline
);
3153 return DIRECTIVE_FOUND
;
3159 tline
= tline
->next
;
3161 tline
= expand_id(tline
);
3162 if (!tline
|| (tline
->type
!= TOK_ID
&&
3163 (tline
->type
!= TOK_PREPROC_ID
||
3164 tline
->text
[1] != '$'))) {
3166 "`%%strlen' 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 "`%%strlen` requires string as second parameter");
3183 free_tlist(origline
);
3184 return DIRECTIVE_FOUND
;
3187 macro_start
= nasm_malloc(sizeof(*macro_start
));
3188 macro_start
->next
= NULL
;
3189 make_tok_num(macro_start
, nasm_unquote(t
->text
, NULL
));
3190 macro_start
->a
.mac
= NULL
;
3193 * We now have a macro name, an implicit parameter count of
3194 * zero, and a numeric token to use as an expansion. Create
3195 * and store an SMacro.
3197 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3199 free_tlist(origline
);
3200 return DIRECTIVE_FOUND
;
3205 tline
= tline
->next
;
3207 tline
= expand_id(tline
);
3208 if (!tline
|| (tline
->type
!= TOK_ID
&&
3209 (tline
->type
!= TOK_PREPROC_ID
||
3210 tline
->text
[1] != '$'))) {
3212 "`%%strcat' expects a macro identifier as first parameter");
3213 free_tlist(origline
);
3214 return DIRECTIVE_FOUND
;
3216 ctx
= get_ctx(tline
->text
, &mname
, false);
3218 tline
= expand_smacro(tline
->next
);
3222 for (t
= tline
; t
; t
= t
->next
) {
3224 case TOK_WHITESPACE
:
3227 len
+= t
->a
.len
= nasm_unquote(t
->text
, NULL
);
3230 if (!strcmp(t
->text
, ",")) /* permit comma separators */
3232 /* else fall through */
3235 "non-string passed to `%%strcat' (%d)", t
->type
);
3237 free_tlist(origline
);
3238 return DIRECTIVE_FOUND
;
3242 p
= pp
= nasm_malloc(len
);
3243 for (t
= tline
; t
; t
= t
->next
) {
3244 if (t
->type
== TOK_STRING
) {
3245 memcpy(p
, t
->text
, t
->a
.len
);
3251 * We now have a macro name, an implicit parameter count of
3252 * zero, and a numeric token to use as an expansion. Create
3253 * and store an SMacro.
3255 macro_start
= new_Token(NULL
, TOK_STRING
, NULL
, 0);
3256 macro_start
->text
= nasm_quote(pp
, len
);
3258 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3260 free_tlist(origline
);
3261 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 "`%%substr' 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
))
3290 /* t should now point to the string */
3291 if (t
->type
!= TOK_STRING
) {
3293 "`%%substr` requires string as second parameter");
3295 free_tlist(origline
);
3296 return DIRECTIVE_FOUND
;
3301 tokval
.t_type
= TOKEN_INVALID
;
3302 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3306 free_tlist(origline
);
3307 return DIRECTIVE_FOUND
;
3308 } else if (!is_simple(evalresult
)) {
3309 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3311 free_tlist(origline
);
3312 return DIRECTIVE_FOUND
;
3314 a1
= evalresult
->value
-1;
3316 while (tok_type_(tt
, TOK_WHITESPACE
))
3319 a2
= 1; /* Backwards compatibility: one character */
3321 tokval
.t_type
= TOKEN_INVALID
;
3322 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3326 free_tlist(origline
);
3327 return DIRECTIVE_FOUND
;
3328 } else if (!is_simple(evalresult
)) {
3329 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3331 free_tlist(origline
);
3332 return DIRECTIVE_FOUND
;
3334 a2
= evalresult
->value
;
3337 len
= nasm_unquote(t
->text
, NULL
);
3340 if (a1
+a2
> (int64_t)len
)
3343 macro_start
= nasm_malloc(sizeof(*macro_start
));
3344 macro_start
->next
= NULL
;
3345 macro_start
->text
= nasm_quote((a1
< 0) ? "" : t
->text
+a1
, a2
);
3346 macro_start
->type
= TOK_STRING
;
3347 macro_start
->a
.mac
= NULL
;
3350 * We now have a macro name, an implicit parameter count of
3351 * zero, and a numeric token to use as an expansion. Create
3352 * and store an SMacro.
3354 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3356 free_tlist(origline
);
3357 return DIRECTIVE_FOUND
;
3362 casesense
= (i
== PP_ASSIGN
);
3364 tline
= tline
->next
;
3366 tline
= expand_id(tline
);
3367 if (!tline
|| (tline
->type
!= TOK_ID
&&
3368 (tline
->type
!= TOK_PREPROC_ID
||
3369 tline
->text
[1] != '$'))) {
3371 "`%%%sassign' expects a macro identifier",
3372 (i
== PP_IASSIGN
? "i" : ""));
3373 free_tlist(origline
);
3374 return DIRECTIVE_FOUND
;
3376 ctx
= get_ctx(tline
->text
, &mname
, false);
3378 tline
= expand_smacro(tline
->next
);
3383 tokval
.t_type
= TOKEN_INVALID
;
3385 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
3388 free_tlist(origline
);
3389 return DIRECTIVE_FOUND
;
3393 error(ERR_WARNING
|ERR_PASS1
,
3394 "trailing garbage after expression ignored");
3396 if (!is_simple(evalresult
)) {
3398 "non-constant value given to `%%%sassign'",
3399 (i
== PP_IASSIGN
? "i" : ""));
3400 free_tlist(origline
);
3401 return DIRECTIVE_FOUND
;
3404 macro_start
= nasm_malloc(sizeof(*macro_start
));
3405 macro_start
->next
= NULL
;
3406 make_tok_num(macro_start
, reloc_value(evalresult
));
3407 macro_start
->a
.mac
= NULL
;
3410 * We now have a macro name, an implicit parameter count of
3411 * zero, and a numeric token to use as an expansion. Create
3412 * and store an SMacro.
3414 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3415 free_tlist(origline
);
3416 return DIRECTIVE_FOUND
;
3420 * Syntax is `%line nnn[+mmm] [filename]'
3422 tline
= tline
->next
;
3424 if (!tok_type_(tline
, TOK_NUMBER
)) {
3425 error(ERR_NONFATAL
, "`%%line' expects line number");
3426 free_tlist(origline
);
3427 return DIRECTIVE_FOUND
;
3429 k
= readnum(tline
->text
, &err
);
3431 tline
= tline
->next
;
3432 if (tok_is_(tline
, "+")) {
3433 tline
= tline
->next
;
3434 if (!tok_type_(tline
, TOK_NUMBER
)) {
3435 error(ERR_NONFATAL
, "`%%line' expects line increment");
3436 free_tlist(origline
);
3437 return DIRECTIVE_FOUND
;
3439 m
= readnum(tline
->text
, &err
);
3440 tline
= tline
->next
;
3446 nasm_free(src_set_fname(detoken(tline
, false)));
3448 free_tlist(origline
);
3449 return DIRECTIVE_FOUND
;
3453 "preprocessor directive `%s' not yet implemented",
3455 return DIRECTIVE_FOUND
;
3460 * Ensure that a macro parameter contains a condition code and
3461 * nothing else. Return the condition code index if so, or -1
3464 static int find_cc(Token
* t
)
3470 return -1; /* Probably a %+ without a space */
3473 if (t
->type
!= TOK_ID
)
3477 if (tt
&& (tt
->type
!= TOK_OTHER
|| strcmp(tt
->text
, ",")))
3481 j
= elements(conditions
);
3484 m
= nasm_stricmp(t
->text
, conditions
[k
]);
3499 static bool paste_tokens(Token
**head
, bool handle_paste_tokens
)
3501 Token
**tail
, *t
, *tt
;
3503 bool did_paste
= false;
3506 /* Now handle token pasting... */
3509 while ((t
= *tail
) && (tt
= t
->next
)) {
3511 case TOK_WHITESPACE
:
3512 if (tt
->type
== TOK_WHITESPACE
) {
3513 /* Zap adjacent whitespace tokens */
3514 t
->next
= delete_Token(tt
);
3516 /* Do not advance paste_head here */
3521 case TOK_PREPROC_ID
:
3528 while (tt
&& (tt
->type
== TOK_ID
|| tt
->type
== TOK_PREPROC_ID
||
3529 tt
->type
== TOK_NUMBER
|| tt
->type
== TOK_FLOAT
||
3530 tt
->type
== TOK_OTHER
)) {
3531 len
+= strlen(tt
->text
);
3536 * Now tt points to the first token after
3537 * the potential paste area...
3539 if (tt
!= t
->next
) {
3540 /* We have at least two tokens... */
3541 len
+= strlen(t
->text
);
3542 p
= tmp
= nasm_malloc(len
+1);
3546 p
= strchr(p
, '\0');
3547 t
= delete_Token(t
);
3550 t
= *tail
= tokenize(tmp
);
3557 t
->next
= tt
; /* Attach the remaining token chain */
3565 case TOK_PASTE
: /* %+ */
3566 if (handle_paste_tokens
) {
3567 /* Zap %+ and whitespace tokens to the right */
3568 while (t
&& (t
->type
== TOK_WHITESPACE
||
3569 t
->type
== TOK_PASTE
))
3570 t
= *tail
= delete_Token(t
);
3571 if (!paste_head
|| !t
)
3572 break; /* Nothing to paste with */
3576 while (tok_type_(tt
, TOK_WHITESPACE
))
3577 tt
= t
->next
= delete_Token(tt
);
3580 tmp
= nasm_strcat(t
->text
, tt
->text
);
3582 tt
= delete_Token(tt
);
3583 t
= *tail
= tokenize(tmp
);
3589 t
->next
= tt
; /* Attach the remaining token chain */
3596 /* else fall through */
3598 tail
= paste_head
= &t
->next
;
3605 * Expand MMacro-local things: parameter references (%0, %n, %+n,
3606 * %-n) and MMacro-local identifiers (%%foo) as well as
3607 * macro indirection (%[...]).
3609 static Token
*expand_mmac_params(Token
* tline
)
3611 Token
*t
, *tt
, **tail
, *thead
;
3612 bool changed
= false;
3618 if (tline
->type
== TOK_PREPROC_ID
&&
3619 (((tline
->text
[1] == '+' || tline
->text
[1] == '-')
3620 && tline
->text
[2]) || tline
->text
[1] == '%'
3621 || (tline
->text
[1] >= '0' && tline
->text
[1] <= '9'))) {
3623 int type
= 0, cc
; /* type = 0 to placate optimisers */
3630 tline
= tline
->next
;
3633 while (mac
&& !mac
->name
) /* avoid mistaking %reps for macros */
3634 mac
= mac
->next_active
;
3636 error(ERR_NONFATAL
, "`%s': not in a macro call", t
->text
);
3638 switch (t
->text
[1]) {
3640 * We have to make a substitution of one of the
3641 * forms %1, %-1, %+1, %%foo, %0.
3645 snprintf(tmpbuf
, sizeof(tmpbuf
), "%d", mac
->nparam
);
3646 text
= nasm_strdup(tmpbuf
);
3650 snprintf(tmpbuf
, sizeof(tmpbuf
), "..@%"PRIu64
".",
3652 text
= nasm_strcat(tmpbuf
, t
->text
+ 2);
3655 n
= atoi(t
->text
+ 2) - 1;
3656 if (n
>= mac
->nparam
)
3659 if (mac
->nparam
> 1)
3660 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3661 tt
= mac
->params
[n
];
3666 "macro parameter %d is not a condition code",
3671 if (inverse_ccs
[cc
] == -1) {
3673 "condition code `%s' is not invertible",
3677 text
= nasm_strdup(conditions
[inverse_ccs
[cc
]]);
3681 n
= atoi(t
->text
+ 2) - 1;
3682 if (n
>= mac
->nparam
)
3685 if (mac
->nparam
> 1)
3686 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3687 tt
= mac
->params
[n
];
3692 "macro parameter %d is not a condition code",
3697 text
= nasm_strdup(conditions
[cc
]);
3701 n
= atoi(t
->text
+ 1) - 1;
3702 if (n
>= mac
->nparam
)
3705 if (mac
->nparam
> 1)
3706 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3707 tt
= mac
->params
[n
];
3710 for (i
= 0; i
< mac
->paramlen
[n
]; i
++) {
3711 *tail
= new_Token(NULL
, tt
->type
, tt
->text
, 0);
3712 tail
= &(*tail
)->next
;
3716 text
= NULL
; /* we've done it here */
3731 } else if (tline
->type
== TOK_INDIRECT
) {
3733 tline
= tline
->next
;
3734 tt
= tokenize(t
->text
);
3735 tt
= expand_mmac_params(tt
);
3736 tt
= expand_smacro(tt
);
3739 tt
->a
.mac
= NULL
; /* Necessary? */
3747 tline
= tline
->next
;
3755 paste_tokens(&thead
, false);
3761 * Expand all single-line macro calls made in the given line.
3762 * Return the expanded version of the line. The original is deemed
3763 * to be destroyed in the process. (In reality we'll just move
3764 * Tokens from input to output a lot of the time, rather than
3765 * actually bothering to destroy and replicate.)
3768 static Token
*expand_smacro(Token
* tline
)
3770 Token
*t
, *tt
, *mstart
, **tail
, *thead
;
3771 SMacro
*head
= NULL
, *m
;
3774 unsigned int nparam
, sparam
;
3776 Token
*org_tline
= tline
;
3779 int deadman
= DEADMAN_LIMIT
;
3783 * Trick: we should avoid changing the start token pointer since it can
3784 * be contained in "next" field of other token. Because of this
3785 * we allocate a copy of first token and work with it; at the end of
3786 * routine we copy it back
3789 tline
= new_Token(org_tline
->next
, org_tline
->type
,
3790 org_tline
->text
, 0);
3791 tline
->a
.mac
= org_tline
->a
.mac
;
3792 nasm_free(org_tline
->text
);
3793 org_tline
->text
= NULL
;
3796 expanded
= true; /* Always expand %+ at least once */
3802 while (tline
) { /* main token loop */
3804 error(ERR_NONFATAL
, "interminable macro recursion");
3808 if ((mname
= tline
->text
)) {
3809 /* if this token is a local macro, look in local context */
3810 if (tline
->type
== TOK_ID
) {
3811 head
= (SMacro
*)hash_findix(&smacros
, mname
);
3812 } else if (tline
->type
== TOK_PREPROC_ID
) {
3813 ctx
= get_ctx(mname
, &mname
, true);
3814 head
= ctx
? (SMacro
*)hash_findix(&ctx
->localmac
, mname
) : NULL
;
3819 * We've hit an identifier. As in is_mmacro below, we first
3820 * check whether the identifier is a single-line macro at
3821 * all, then think about checking for parameters if
3824 for (m
= head
; m
; m
= m
->next
)
3825 if (!mstrcmp(m
->name
, mname
, m
->casesense
))
3831 if (m
->nparam
== 0) {
3833 * Simple case: the macro is parameterless. Discard the
3834 * one token that the macro call took, and push the
3835 * expansion back on the to-do stack.
3837 if (!m
->expansion
) {
3838 if (!strcmp("__FILE__", m
->name
)) {
3841 src_get(&num
, &file
);
3842 tline
->text
= nasm_quote(file
, strlen(file
));
3843 tline
->type
= TOK_STRING
;
3847 if (!strcmp("__LINE__", m
->name
)) {
3848 nasm_free(tline
->text
);
3849 make_tok_num(tline
, src_get_linnum());
3852 if (!strcmp("__BITS__", m
->name
)) {
3853 nasm_free(tline
->text
);
3854 make_tok_num(tline
, globalbits
);
3857 tline
= delete_Token(tline
);
3862 * Complicated case: at least one macro with this name
3863 * exists and takes parameters. We must find the
3864 * parameters in the call, count them, find the SMacro
3865 * that corresponds to that form of the macro call, and
3866 * substitute for the parameters when we expand. What a
3869 /*tline = tline->next;
3870 skip_white_(tline); */
3873 while (tok_type_(t
, TOK_SMAC_END
)) {
3874 t
->a
.mac
->in_progress
= false;
3876 t
= tline
->next
= delete_Token(t
);
3879 } while (tok_type_(tline
, TOK_WHITESPACE
));
3880 if (!tok_is_(tline
, "(")) {
3882 * This macro wasn't called with parameters: ignore
3883 * the call. (Behaviour borrowed from gnu cpp.)
3892 sparam
= PARAM_DELTA
;
3893 params
= nasm_malloc(sparam
* sizeof(Token
*));
3894 params
[0] = tline
->next
;
3895 paramsize
= nasm_malloc(sparam
* sizeof(int));
3897 while (true) { /* parameter loop */
3899 * For some unusual expansions
3900 * which concatenates function call
3903 while (tok_type_(t
, TOK_SMAC_END
)) {
3904 t
->a
.mac
->in_progress
= false;
3906 t
= tline
->next
= delete_Token(t
);
3912 "macro call expects terminating `)'");
3915 if (tline
->type
== TOK_WHITESPACE
3917 if (paramsize
[nparam
])
3920 params
[nparam
] = tline
->next
;
3921 continue; /* parameter loop */
3923 if (tline
->type
== TOK_OTHER
3924 && tline
->text
[1] == 0) {
3925 char ch
= tline
->text
[0];
3926 if (ch
== ',' && !paren
&& brackets
<= 0) {
3927 if (++nparam
>= sparam
) {
3928 sparam
+= PARAM_DELTA
;
3929 params
= nasm_realloc(params
,
3930 sparam
* sizeof(Token
*));
3931 paramsize
= nasm_realloc(paramsize
,
3932 sparam
* sizeof(int));
3934 params
[nparam
] = tline
->next
;
3935 paramsize
[nparam
] = 0;
3937 continue; /* parameter loop */
3940 (brackets
> 0 || (brackets
== 0 &&
3941 !paramsize
[nparam
])))
3943 if (!(brackets
++)) {
3944 params
[nparam
] = tline
->next
;
3945 continue; /* parameter loop */
3948 if (ch
== '}' && brackets
> 0)
3949 if (--brackets
== 0) {
3951 continue; /* parameter loop */
3953 if (ch
== '(' && !brackets
)
3955 if (ch
== ')' && brackets
<= 0)
3961 error(ERR_NONFATAL
, "braces do not "
3962 "enclose all of macro parameter");
3964 paramsize
[nparam
] += white
+ 1;
3966 } /* parameter loop */
3968 while (m
&& (m
->nparam
!= nparam
||
3969 mstrcmp(m
->name
, mname
,
3973 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
3974 "macro `%s' exists, "
3975 "but not taking %d parameters",
3976 mstart
->text
, nparam
);
3979 if (m
&& m
->in_progress
)
3981 if (!m
) { /* in progess or didn't find '(' or wrong nparam */
3983 * Design question: should we handle !tline, which
3984 * indicates missing ')' here, or expand those
3985 * macros anyway, which requires the (t) test a few
3989 nasm_free(paramsize
);
3993 * Expand the macro: we are placed on the last token of the
3994 * call, so that we can easily split the call from the
3995 * following tokens. We also start by pushing an SMAC_END
3996 * token for the cycle removal.
4003 tt
= new_Token(tline
, TOK_SMAC_END
, NULL
, 0);
4005 m
->in_progress
= true;
4007 for (t
= m
->expansion
; t
; t
= t
->next
) {
4008 if (t
->type
>= TOK_SMAC_PARAM
) {
4009 Token
*pcopy
= tline
, **ptail
= &pcopy
;
4013 ttt
= params
[t
->type
- TOK_SMAC_PARAM
];
4014 i
= paramsize
[t
->type
- TOK_SMAC_PARAM
];
4016 pt
= *ptail
= new_Token(tline
, ttt
->type
,
4022 } else if (t
->type
== TOK_PREPROC_Q
) {
4023 tt
= new_Token(tline
, TOK_ID
, mname
, 0);
4025 } else if (t
->type
== TOK_PREPROC_QQ
) {
4026 tt
= new_Token(tline
, TOK_ID
, m
->name
, 0);
4029 tt
= new_Token(tline
, t
->type
, t
->text
, 0);
4035 * Having done that, get rid of the macro call, and clean
4036 * up the parameters.
4039 nasm_free(paramsize
);
4042 continue; /* main token loop */
4047 if (tline
->type
== TOK_SMAC_END
) {
4048 tline
->a
.mac
->in_progress
= false;
4049 tline
= delete_Token(tline
);
4052 tline
= tline
->next
;
4060 * Now scan the entire line and look for successive TOK_IDs that resulted
4061 * after expansion (they can't be produced by tokenize()). The successive
4062 * TOK_IDs should be concatenated.
4063 * Also we look for %+ tokens and concatenate the tokens before and after
4064 * them (without white spaces in between).
4066 if (expanded
&& paste_tokens(&thead
, true)) {
4068 * If we concatenated something, *and* we had previously expanded
4069 * an actual macro, scan the lines again for macros...
4079 *org_tline
= *thead
;
4080 /* since we just gave text to org_line, don't free it */
4082 delete_Token(thead
);
4084 /* the expression expanded to empty line;
4085 we can't return NULL for some reasons
4086 we just set the line to a single WHITESPACE token. */
4087 memset(org_tline
, 0, sizeof(*org_tline
));
4088 org_tline
->text
= NULL
;
4089 org_tline
->type
= TOK_WHITESPACE
;
4098 * Similar to expand_smacro but used exclusively with macro identifiers
4099 * right before they are fetched in. The reason is that there can be
4100 * identifiers consisting of several subparts. We consider that if there
4101 * are more than one element forming the name, user wants a expansion,
4102 * otherwise it will be left as-is. Example:
4106 * the identifier %$abc will be left as-is so that the handler for %define
4107 * will suck it and define the corresponding value. Other case:
4109 * %define _%$abc cde
4111 * In this case user wants name to be expanded *before* %define starts
4112 * working, so we'll expand %$abc into something (if it has a value;
4113 * otherwise it will be left as-is) then concatenate all successive
4116 static Token
*expand_id(Token
* tline
)
4118 Token
*cur
, *oldnext
= NULL
;
4120 if (!tline
|| !tline
->next
)
4125 (cur
->next
->type
== TOK_ID
||
4126 cur
->next
->type
== TOK_PREPROC_ID
4127 || cur
->next
->type
== TOK_NUMBER
))
4130 /* If identifier consists of just one token, don't expand */
4135 oldnext
= cur
->next
; /* Detach the tail past identifier */
4136 cur
->next
= NULL
; /* so that expand_smacro stops here */
4139 tline
= expand_smacro(tline
);
4142 /* expand_smacro possibly changhed tline; re-scan for EOL */
4144 while (cur
&& cur
->next
)
4147 cur
->next
= oldnext
;
4154 * Determine whether the given line constitutes a multi-line macro
4155 * call, and return the MMacro structure called if so. Doesn't have
4156 * to check for an initial label - that's taken care of in
4157 * expand_mmacro - but must check numbers of parameters. Guaranteed
4158 * to be called with tline->type == TOK_ID, so the putative macro
4159 * name is easy to find.
4161 static MMacro
*is_mmacro(Token
* tline
, Token
*** params_array
)
4167 head
= (MMacro
*) hash_findix(&mmacros
, tline
->text
);
4170 * Efficiency: first we see if any macro exists with the given
4171 * name. If not, we can return NULL immediately. _Then_ we
4172 * count the parameters, and then we look further along the
4173 * list if necessary to find the proper MMacro.
4175 for (m
= head
; m
; m
= m
->next
)
4176 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4182 * OK, we have a potential macro. Count and demarcate the
4185 count_mmac_params(tline
->next
, &nparam
, ¶ms
);
4188 * So we know how many parameters we've got. Find the MMacro
4189 * structure that handles this number.
4192 if (m
->nparam_min
<= nparam
4193 && (m
->plus
|| nparam
<= m
->nparam_max
)) {
4195 * This one is right. Just check if cycle removal
4196 * prohibits us using it before we actually celebrate...
4198 if (m
->in_progress
> m
->max_depth
) {
4199 if (m
->max_depth
> 0) {
4201 "reached maximum recursion depth of %i",
4208 * It's right, and we can use it. Add its default
4209 * parameters to the end of our list if necessary.
4211 if (m
->defaults
&& nparam
< m
->nparam_min
+ m
->ndefs
) {
4213 nasm_realloc(params
,
4214 ((m
->nparam_min
+ m
->ndefs
+
4215 1) * sizeof(*params
)));
4216 while (nparam
< m
->nparam_min
+ m
->ndefs
) {
4217 params
[nparam
] = m
->defaults
[nparam
- m
->nparam_min
];
4222 * If we've gone over the maximum parameter count (and
4223 * we're in Plus mode), ignore parameters beyond
4226 if (m
->plus
&& nparam
> m
->nparam_max
)
4227 nparam
= m
->nparam_max
;
4229 * Then terminate the parameter list, and leave.
4231 if (!params
) { /* need this special case */
4232 params
= nasm_malloc(sizeof(*params
));
4235 params
[nparam
] = NULL
;
4236 *params_array
= params
;
4240 * This one wasn't right: look for the next one with the
4243 for (m
= m
->next
; m
; m
= m
->next
)
4244 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4249 * After all that, we didn't find one with the right number of
4250 * parameters. Issue a warning, and fail to expand the macro.
4252 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
4253 "macro `%s' exists, but not taking %d parameters",
4254 tline
->text
, nparam
);
4261 * Save MMacro invocation specific fields in
4262 * preparation for a recursive macro expansion
4264 static void push_mmacro(MMacro
*m
)
4266 MMacroInvocation
*i
;
4268 i
= nasm_malloc(sizeof(MMacroInvocation
));
4270 i
->params
= m
->params
;
4271 i
->iline
= m
->iline
;
4272 i
->nparam
= m
->nparam
;
4273 i
->rotate
= m
->rotate
;
4274 i
->paramlen
= m
->paramlen
;
4275 i
->unique
= m
->unique
;
4276 i
->condcnt
= m
->condcnt
;
4282 * Restore MMacro invocation specific fields that were
4283 * saved during a previous recursive macro expansion
4285 static void pop_mmacro(MMacro
*m
)
4287 MMacroInvocation
*i
;
4292 m
->params
= i
->params
;
4293 m
->iline
= i
->iline
;
4294 m
->nparam
= i
->nparam
;
4295 m
->rotate
= i
->rotate
;
4296 m
->paramlen
= i
->paramlen
;
4297 m
->unique
= i
->unique
;
4298 m
->condcnt
= i
->condcnt
;
4305 * Expand the multi-line macro call made by the given line, if
4306 * there is one to be expanded. If there is, push the expansion on
4307 * istk->expansion and return 1. Otherwise return 0.
4309 static int expand_mmacro(Token
* tline
)
4311 Token
*startline
= tline
;
4312 Token
*label
= NULL
;
4313 int dont_prepend
= 0;
4314 Token
**params
, *t
, *mtok
, *tt
;
4317 int i
, nparam
, *paramlen
;
4322 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
4323 if (!tok_type_(t
, TOK_ID
) && !tok_type_(t
, TOK_PREPROC_ID
))
4326 m
= is_mmacro(t
, ¶ms
);
4332 * We have an id which isn't a macro call. We'll assume
4333 * it might be a label; we'll also check to see if a
4334 * colon follows it. Then, if there's another id after
4335 * that lot, we'll check it again for macro-hood.
4339 if (tok_type_(t
, TOK_WHITESPACE
))
4340 last
= t
, t
= t
->next
;
4341 if (tok_is_(t
, ":")) {
4343 last
= t
, t
= t
->next
;
4344 if (tok_type_(t
, TOK_WHITESPACE
))
4345 last
= t
, t
= t
->next
;
4347 if (!tok_type_(t
, TOK_ID
) || !(m
= is_mmacro(t
, ¶ms
)))
4355 * Fix up the parameters: this involves stripping leading and
4356 * trailing whitespace, then stripping braces if they are
4359 for (nparam
= 0; params
[nparam
]; nparam
++) ;
4360 paramlen
= nparam
? nasm_malloc(nparam
* sizeof(*paramlen
)) : NULL
;
4362 for (i
= 0; params
[i
]; i
++) {
4364 int comma
= (!m
->plus
|| i
< nparam
- 1);
4368 if (tok_is_(t
, "{"))
4369 t
= t
->next
, brace
= true, comma
= false;
4373 if (comma
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, ","))
4374 break; /* ... because we have hit a comma */
4375 if (comma
&& t
->type
== TOK_WHITESPACE
4376 && tok_is_(t
->next
, ","))
4377 break; /* ... or a space then a comma */
4378 if (brace
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, "}"))
4379 break; /* ... or a brace */
4386 * OK, we have a MMacro structure together with a set of
4387 * parameters. We must now go through the expansion and push
4388 * copies of each Line on to istk->expansion. Substitution of
4389 * parameter tokens and macro-local tokens doesn't get done
4390 * until the single-line macro substitution process; this is
4391 * because delaying them allows us to change the semantics
4392 * later through %rotate.
4394 * First, push an end marker on to istk->expansion, mark this
4395 * macro as in progress, and set up its invocation-specific
4398 ll
= nasm_malloc(sizeof(Line
));
4399 ll
->next
= istk
->expansion
;
4402 istk
->expansion
= ll
;
4405 * Save the previous MMacro expansion in the case of
4408 if (m
->max_depth
&& m
->in_progress
)
4416 m
->paramlen
= paramlen
;
4417 m
->unique
= unique
++;
4421 m
->next_active
= istk
->mstk
;
4424 list_for_each(l
, m
->expansion
) {
4427 ll
= nasm_malloc(sizeof(Line
));
4428 ll
->finishes
= NULL
;
4429 ll
->next
= istk
->expansion
;
4430 istk
->expansion
= ll
;
4433 list_for_each(t
, l
->first
) {
4437 tt
= *tail
= new_Token(NULL
, TOK_ID
, mname
, 0);
4439 case TOK_PREPROC_QQ
:
4440 tt
= *tail
= new_Token(NULL
, TOK_ID
, m
->name
, 0);
4442 case TOK_PREPROC_ID
:
4443 if (t
->text
[1] == '0' && t
->text
[2] == '0') {
4451 tt
= *tail
= new_Token(NULL
, x
->type
, x
->text
, 0);
4460 * If we had a label, push it on as the first line of
4461 * the macro expansion.
4464 if (dont_prepend
< 0)
4465 free_tlist(startline
);
4467 ll
= nasm_malloc(sizeof(Line
));
4468 ll
->finishes
= NULL
;
4469 ll
->next
= istk
->expansion
;
4470 istk
->expansion
= ll
;
4471 ll
->first
= startline
;
4472 if (!dont_prepend
) {
4474 label
= label
->next
;
4475 label
->next
= tt
= new_Token(NULL
, TOK_OTHER
, ":", 0);
4480 list
->uplevel(m
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
4485 /* The function that actually does the error reporting */
4486 static void verror(int severity
, const char *fmt
, va_list arg
)
4490 vsnprintf(buff
, sizeof(buff
), fmt
, arg
);
4492 if (istk
&& istk
->mstk
&& istk
->mstk
->name
)
4493 nasm_error(severity
, "(%s:%d) %s", istk
->mstk
->name
,
4494 istk
->mstk
->lineno
, buff
);
4496 nasm_error(severity
, "%s", buff
);
4500 * Since preprocessor always operate only on the line that didn't
4501 * arrived yet, we should always use ERR_OFFBY1.
4503 static void error(int severity
, const char *fmt
, ...)
4507 /* If we're in a dead branch of IF or something like it, ignore the error */
4508 if (istk
&& istk
->conds
&& !emitting(istk
->conds
->state
))
4512 verror(severity
, fmt
, arg
);
4517 * Because %else etc are evaluated in the state context
4518 * of the previous branch, errors might get lost with error():
4519 * %if 0 ... %else trailing garbage ... %endif
4520 * So %else etc should report errors with this function.
4522 static void error_precond(int severity
, const char *fmt
, ...)
4526 /* Only ignore the error if it's really in a dead branch */
4527 if (istk
&& istk
->conds
&& istk
->conds
->state
== COND_NEVER
)
4531 verror(severity
, fmt
, arg
);
4536 pp_reset(char *file
, int apass
, ListGen
* listgen
, StrList
**deplist
)
4541 istk
= nasm_malloc(sizeof(Include
));
4544 istk
->expansion
= NULL
;
4546 istk
->fp
= fopen(file
, "r");
4548 src_set_fname(nasm_strdup(file
));
4552 error(ERR_FATAL
|ERR_NOFILE
, "unable to open input file `%s'",
4555 nested_mac_count
= 0;
4556 nested_rep_count
= 0;
4559 if (tasm_compatible_mode
) {
4560 stdmacpos
= nasm_stdmac
;
4562 stdmacpos
= nasm_stdmac_after_tasm
;
4564 any_extrastdmac
= extrastdmac
&& *extrastdmac
;
4569 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4570 * The caller, however, will also pass in 3 for preprocess-only so
4571 * we can set __PASS__ accordingly.
4573 pass
= apass
> 2 ? 2 : apass
;
4575 dephead
= deptail
= deplist
;
4577 StrList
*sl
= nasm_malloc(strlen(file
)+1+sizeof sl
->next
);
4579 strcpy(sl
->str
, file
);
4581 deptail
= &sl
->next
;
4585 * Define the __PASS__ macro. This is defined here unlike
4586 * all the other builtins, because it is special -- it varies between
4589 t
= nasm_malloc(sizeof(*t
));
4591 make_tok_num(t
, apass
);
4593 define_smacro(NULL
, "__PASS__", true, 0, t
);
4596 static char *pp_getline(void)
4603 * Fetch a tokenized line, either from the macro-expansion
4604 * buffer or from the input file.
4607 while (istk
->expansion
&& istk
->expansion
->finishes
) {
4608 Line
*l
= istk
->expansion
;
4609 if (!l
->finishes
->name
&& l
->finishes
->in_progress
> 1) {
4613 * This is a macro-end marker for a macro with no
4614 * name, which means it's not really a macro at all
4615 * but a %rep block, and the `in_progress' field is
4616 * more than 1, meaning that we still need to
4617 * repeat. (1 means the natural last repetition; 0
4618 * means termination by %exitrep.) We have
4619 * therefore expanded up to the %endrep, and must
4620 * push the whole block on to the expansion buffer
4621 * again. We don't bother to remove the macro-end
4622 * marker: we'd only have to generate another one
4625 l
->finishes
->in_progress
--;
4626 for (l
= l
->finishes
->expansion
; l
; l
= l
->next
) {
4627 Token
*t
, *tt
, **tail
;
4629 ll
= nasm_malloc(sizeof(Line
));
4630 ll
->next
= istk
->expansion
;
4631 ll
->finishes
= NULL
;
4635 for (t
= l
->first
; t
; t
= t
->next
) {
4636 if (t
->text
|| t
->type
== TOK_WHITESPACE
) {
4638 new_Token(NULL
, t
->type
, t
->text
, 0);
4643 istk
->expansion
= ll
;
4647 * Check whether a `%rep' was started and not ended
4648 * within this macro expansion. This can happen and
4649 * should be detected. It's a fatal error because
4650 * I'm too confused to work out how to recover
4656 "defining with name in expansion");
4657 else if (istk
->mstk
->name
)
4659 "`%%rep' without `%%endrep' within"
4660 " expansion of macro `%s'",
4665 * FIXME: investigate the relationship at this point between
4666 * istk->mstk and l->finishes
4669 MMacro
*m
= istk
->mstk
;
4670 istk
->mstk
= m
->next_active
;
4673 * This was a real macro call, not a %rep, and
4674 * therefore the parameter information needs to
4679 l
->finishes
->in_progress
--;
4681 nasm_free(m
->params
);
4682 free_tlist(m
->iline
);
4683 nasm_free(m
->paramlen
);
4684 l
->finishes
->in_progress
= 0;
4689 istk
->expansion
= l
->next
;
4691 list
->downlevel(LIST_MACRO
);
4694 while (1) { /* until we get a line we can use */
4696 if (istk
->expansion
) { /* from a macro expansion */
4698 Line
*l
= istk
->expansion
;
4700 istk
->mstk
->lineno
++;
4702 istk
->expansion
= l
->next
;
4704 p
= detoken(tline
, false);
4705 list
->line(LIST_MACRO
, p
);
4710 if (line
) { /* from the current input file */
4711 line
= prepreproc(line
);
4712 tline
= tokenize(line
);
4717 * The current file has ended; work down the istk
4724 "expected `%%endif' before end of file");
4725 /* only set line and file name if there's a next node */
4727 src_set_linnum(i
->lineno
);
4728 nasm_free(src_set_fname(i
->fname
));
4731 list
->downlevel(LIST_INCLUDE
);
4735 if (istk
->expansion
&& istk
->expansion
->finishes
)
4741 * We must expand MMacro parameters and MMacro-local labels
4742 * _before_ we plunge into directive processing, to cope
4743 * with things like `%define something %1' such as STRUC
4744 * uses. Unless we're _defining_ a MMacro, in which case
4745 * those tokens should be left alone to go into the
4746 * definition; and unless we're in a non-emitting
4747 * condition, in which case we don't want to meddle with
4750 if (!defining
&& !(istk
->conds
&& !emitting(istk
->conds
->state
))
4751 && !(istk
->mstk
&& !istk
->mstk
->in_progress
)) {
4752 tline
= expand_mmac_params(tline
);
4756 * Check the line to see if it's a preprocessor directive.
4758 if (do_directive(tline
) == DIRECTIVE_FOUND
) {
4760 } else if (defining
) {
4762 * We're defining a multi-line macro. We emit nothing
4764 * shove the tokenized line on to the macro definition.
4766 Line
*l
= nasm_malloc(sizeof(Line
));
4767 l
->next
= defining
->expansion
;
4770 defining
->expansion
= l
;
4772 } else if (istk
->conds
&& !emitting(istk
->conds
->state
)) {
4774 * We're in a non-emitting branch of a condition block.
4775 * Emit nothing at all, not even a blank line: when we
4776 * emerge from the condition we'll give a line-number
4777 * directive so we keep our place correctly.
4781 } else if (istk
->mstk
&& !istk
->mstk
->in_progress
) {
4783 * We're in a %rep block which has been terminated, so
4784 * we're walking through to the %endrep without
4785 * emitting anything. Emit nothing at all, not even a
4786 * blank line: when we emerge from the %rep block we'll
4787 * give a line-number directive so we keep our place
4793 tline
= expand_smacro(tline
);
4794 if (!expand_mmacro(tline
)) {
4796 * De-tokenize the line again, and emit it.
4798 line
= detoken(tline
, true);
4802 continue; /* expand_mmacro calls free_tlist */
4810 static void pp_cleanup(int pass
)
4813 if (defining
->name
) {
4815 "end of file while still defining macro `%s'",
4818 error(ERR_NONFATAL
, "end of file while still in %%rep");
4821 free_mmacro(defining
);
4831 nasm_free(i
->fname
);
4836 nasm_free(src_set_fname(NULL
));
4841 while ((i
= ipath
)) {
4850 void pp_include_path(char *path
)
4854 i
= nasm_malloc(sizeof(IncPath
));
4855 i
->path
= path
? nasm_strdup(path
) : NULL
;
4868 void pp_pre_include(char *fname
)
4870 Token
*inc
, *space
, *name
;
4873 name
= new_Token(NULL
, TOK_INTERNAL_STRING
, fname
, 0);
4874 space
= new_Token(name
, TOK_WHITESPACE
, NULL
, 0);
4875 inc
= new_Token(space
, TOK_PREPROC_ID
, "%include", 0);
4877 l
= nasm_malloc(sizeof(Line
));
4884 void pp_pre_define(char *definition
)
4890 equals
= strchr(definition
, '=');
4891 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
4892 def
= new_Token(space
, TOK_PREPROC_ID
, "%define", 0);
4895 space
->next
= tokenize(definition
);
4899 l
= nasm_malloc(sizeof(Line
));
4906 void pp_pre_undefine(char *definition
)
4911 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
4912 def
= new_Token(space
, TOK_PREPROC_ID
, "%undef", 0);
4913 space
->next
= tokenize(definition
);
4915 l
= nasm_malloc(sizeof(Line
));
4923 * Added by Keith Kanios:
4925 * This function is used to assist with "runtime" preprocessor
4926 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
4928 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
4929 * PASS A VALID STRING TO THIS FUNCTION!!!!!
4932 void pp_runtime(char *definition
)
4936 def
= tokenize(definition
);
4937 if (do_directive(def
) == NO_DIRECTIVE_FOUND
)
4942 void pp_extra_stdmac(macros_t
*macros
)
4944 extrastdmac
= macros
;
4947 static void make_tok_num(Token
* tok
, int64_t val
)
4950 snprintf(numbuf
, sizeof(numbuf
), "%"PRId64
"", val
);
4951 tok
->text
= nasm_strdup(numbuf
);
4952 tok
->type
= TOK_NUMBER
;