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
)
1167 for (t
= tlist
; t
; t
= t
->next
) {
1168 if (t
->type
== TOK_PREPROC_ID
&& t
->text
[1] == '!') {
1169 char *p
= getenv(t
->text
+ 2);
1172 t
->text
= nasm_strdup(p
);
1176 /* Expand local macros here and not during preprocessing */
1177 if (expand_locals
&&
1178 t
->type
== TOK_PREPROC_ID
&& t
->text
&&
1179 t
->text
[0] == '%' && t
->text
[1] == '$') {
1182 Context
*ctx
= get_ctx(t
->text
, &q
, false);
1185 snprintf(buffer
, sizeof(buffer
), "..@%"PRIu32
".", ctx
->number
);
1186 p
= nasm_strcat(buffer
, q
);
1191 if (t
->type
== TOK_WHITESPACE
) {
1193 } else if (t
->text
) {
1194 len
+= strlen(t
->text
);
1197 p
= line
= nasm_malloc(len
+ 1);
1198 for (t
= tlist
; t
; t
= t
->next
) {
1199 if (t
->type
== TOK_WHITESPACE
) {
1201 } else if (t
->text
) {
1212 * A scanner, suitable for use by the expression evaluator, which
1213 * operates on a line of Tokens. Expects a pointer to a pointer to
1214 * the first token in the line to be passed in as its private_data
1217 * FIX: This really needs to be unified with stdscan.
1219 static int ppscan(void *private_data
, struct tokenval
*tokval
)
1221 Token
**tlineptr
= private_data
;
1223 char ourcopy
[MAX_KEYWORD
+1], *p
, *r
, *s
;
1227 *tlineptr
= tline
? tline
->next
: NULL
;
1229 while (tline
&& (tline
->type
== TOK_WHITESPACE
||
1230 tline
->type
== TOK_COMMENT
));
1233 return tokval
->t_type
= TOKEN_EOS
;
1235 tokval
->t_charptr
= tline
->text
;
1237 if (tline
->text
[0] == '$' && !tline
->text
[1])
1238 return tokval
->t_type
= TOKEN_HERE
;
1239 if (tline
->text
[0] == '$' && tline
->text
[1] == '$' && !tline
->text
[2])
1240 return tokval
->t_type
= TOKEN_BASE
;
1242 if (tline
->type
== TOK_ID
) {
1243 p
= tokval
->t_charptr
= tline
->text
;
1245 tokval
->t_charptr
++;
1246 return tokval
->t_type
= TOKEN_ID
;
1249 for (r
= p
, s
= ourcopy
; *r
; r
++) {
1250 if (r
>= p
+MAX_KEYWORD
)
1251 return tokval
->t_type
= TOKEN_ID
; /* Not a keyword */
1252 *s
++ = nasm_tolower(*r
);
1255 /* right, so we have an identifier sitting in temp storage. now,
1256 * is it actually a register or instruction name, or what? */
1257 return nasm_token_hash(ourcopy
, tokval
);
1260 if (tline
->type
== TOK_NUMBER
) {
1262 tokval
->t_integer
= readnum(tline
->text
, &rn_error
);
1263 tokval
->t_charptr
= tline
->text
;
1265 return tokval
->t_type
= TOKEN_ERRNUM
;
1267 return tokval
->t_type
= TOKEN_NUM
;
1270 if (tline
->type
== TOK_FLOAT
) {
1271 return tokval
->t_type
= TOKEN_FLOAT
;
1274 if (tline
->type
== TOK_STRING
) {
1277 bq
= tline
->text
[0];
1278 tokval
->t_charptr
= tline
->text
;
1279 tokval
->t_inttwo
= nasm_unquote(tline
->text
, &ep
);
1281 if (ep
[0] != bq
|| ep
[1] != '\0')
1282 return tokval
->t_type
= TOKEN_ERRSTR
;
1284 return tokval
->t_type
= TOKEN_STR
;
1287 if (tline
->type
== TOK_OTHER
) {
1288 if (!strcmp(tline
->text
, "<<"))
1289 return tokval
->t_type
= TOKEN_SHL
;
1290 if (!strcmp(tline
->text
, ">>"))
1291 return tokval
->t_type
= TOKEN_SHR
;
1292 if (!strcmp(tline
->text
, "//"))
1293 return tokval
->t_type
= TOKEN_SDIV
;
1294 if (!strcmp(tline
->text
, "%%"))
1295 return tokval
->t_type
= TOKEN_SMOD
;
1296 if (!strcmp(tline
->text
, "=="))
1297 return tokval
->t_type
= TOKEN_EQ
;
1298 if (!strcmp(tline
->text
, "<>"))
1299 return tokval
->t_type
= TOKEN_NE
;
1300 if (!strcmp(tline
->text
, "!="))
1301 return tokval
->t_type
= TOKEN_NE
;
1302 if (!strcmp(tline
->text
, "<="))
1303 return tokval
->t_type
= TOKEN_LE
;
1304 if (!strcmp(tline
->text
, ">="))
1305 return tokval
->t_type
= TOKEN_GE
;
1306 if (!strcmp(tline
->text
, "&&"))
1307 return tokval
->t_type
= TOKEN_DBL_AND
;
1308 if (!strcmp(tline
->text
, "^^"))
1309 return tokval
->t_type
= TOKEN_DBL_XOR
;
1310 if (!strcmp(tline
->text
, "||"))
1311 return tokval
->t_type
= TOKEN_DBL_OR
;
1315 * We have no other options: just return the first character of
1318 return tokval
->t_type
= tline
->text
[0];
1322 * Compare a string to the name of an existing macro; this is a
1323 * simple wrapper which calls either strcmp or nasm_stricmp
1324 * depending on the value of the `casesense' parameter.
1326 static int mstrcmp(const char *p
, const char *q
, bool casesense
)
1328 return casesense
? strcmp(p
, q
) : nasm_stricmp(p
, q
);
1332 * Compare a string to the name of an existing macro; this is a
1333 * simple wrapper which calls either strcmp or nasm_stricmp
1334 * depending on the value of the `casesense' parameter.
1336 static int mmemcmp(const char *p
, const char *q
, size_t l
, bool casesense
)
1338 return casesense
? memcmp(p
, q
, l
) : nasm_memicmp(p
, q
, l
);
1342 * Return the Context structure associated with a %$ token. Return
1343 * NULL, having _already_ reported an error condition, if the
1344 * context stack isn't deep enough for the supplied number of $
1346 * If all_contexts == true, contexts that enclose current are
1347 * also scanned for such smacro, until it is found; if not -
1348 * only the context that directly results from the number of $'s
1349 * in variable's name.
1351 * If "namep" is non-NULL, set it to the pointer to the macro name
1352 * tail, i.e. the part beyond %$...
1354 static Context
*get_ctx(const char *name
, const char **namep
,
1364 if (!name
|| name
[0] != '%' || name
[1] != '$')
1368 error(ERR_NONFATAL
, "`%s': context stack is empty", name
);
1375 while (ctx
&& *name
== '$') {
1381 error(ERR_NONFATAL
, "`%s': context stack is only"
1382 " %d level%s deep", name
, i
, (i
== 1 ? "" : "s"));
1393 /* Search for this smacro in found context */
1394 m
= hash_findix(&ctx
->localmac
, name
);
1396 if (!mstrcmp(m
->name
, name
, m
->casesense
))
1407 * Check to see if a file is already in a string list
1409 static bool in_list(const StrList
*list
, const char *str
)
1412 if (!strcmp(list
->str
, str
))
1420 * Open an include file. This routine must always return a valid
1421 * file pointer if it returns - it's responsible for throwing an
1422 * ERR_FATAL and bombing out completely if not. It should also try
1423 * the include path one by one until it finds the file or reaches
1424 * the end of the path.
1426 static FILE *inc_fopen(const char *file
, StrList
**dhead
, StrList
***dtail
,
1431 IncPath
*ip
= ipath
;
1432 int len
= strlen(file
);
1433 size_t prefix_len
= 0;
1437 sl
= nasm_malloc(prefix_len
+len
+1+sizeof sl
->next
);
1438 memcpy(sl
->str
, prefix
, prefix_len
);
1439 memcpy(sl
->str
+prefix_len
, file
, len
+1);
1440 fp
= fopen(sl
->str
, "r");
1441 if (fp
&& dhead
&& !in_list(*dhead
, sl
->str
)) {
1459 prefix_len
= strlen(prefix
);
1461 /* -MG given and file not found */
1462 if (dhead
&& !in_list(*dhead
, file
)) {
1463 sl
= nasm_malloc(len
+1+sizeof sl
->next
);
1465 strcpy(sl
->str
, file
);
1473 error(ERR_FATAL
, "unable to open include file `%s'", file
);
1478 * Determine if we should warn on defining a single-line macro of
1479 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
1480 * return true if _any_ single-line macro of that name is defined.
1481 * Otherwise, will return true if a single-line macro with either
1482 * `nparam' or no parameters is defined.
1484 * If a macro with precisely the right number of parameters is
1485 * defined, or nparam is -1, the address of the definition structure
1486 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
1487 * is NULL, no action will be taken regarding its contents, and no
1490 * Note that this is also called with nparam zero to resolve
1493 * If you already know which context macro belongs to, you can pass
1494 * the context pointer as first parameter; if you won't but name begins
1495 * with %$ the context will be automatically computed. If all_contexts
1496 * is true, macro will be searched in outer contexts as well.
1499 smacro_defined(Context
* ctx
, const char *name
, int nparam
, SMacro
** defn
,
1502 struct hash_table
*smtbl
;
1506 smtbl
= &ctx
->localmac
;
1507 } else if (name
[0] == '%' && name
[1] == '$') {
1509 ctx
= get_ctx(name
, &name
, false);
1511 return false; /* got to return _something_ */
1512 smtbl
= &ctx
->localmac
;
1516 m
= (SMacro
*) hash_findix(smtbl
, name
);
1519 if (!mstrcmp(m
->name
, name
, m
->casesense
&& nocase
) &&
1520 (nparam
<= 0 || m
->nparam
== 0 || nparam
== (int) m
->nparam
)) {
1522 if (nparam
== (int) m
->nparam
|| nparam
== -1)
1536 * Count and mark off the parameters in a multi-line macro call.
1537 * This is called both from within the multi-line macro expansion
1538 * code, and also to mark off the default parameters when provided
1539 * in a %macro definition line.
1541 static void count_mmac_params(Token
* t
, int *nparam
, Token
*** params
)
1543 int paramsize
, brace
;
1545 *nparam
= paramsize
= 0;
1548 /* +1: we need space for the final NULL */
1549 if (*nparam
+1 >= paramsize
) {
1550 paramsize
+= PARAM_DELTA
;
1551 *params
= nasm_realloc(*params
, sizeof(**params
) * paramsize
);
1555 if (tok_is_(t
, "{"))
1557 (*params
)[(*nparam
)++] = t
;
1558 while (tok_isnt_(t
, brace
? "}" : ","))
1560 if (t
) { /* got a comma/brace */
1564 * Now we've found the closing brace, look further
1568 if (tok_isnt_(t
, ",")) {
1570 "braces do not enclose all of macro parameter");
1571 while (tok_isnt_(t
, ","))
1575 t
= t
->next
; /* eat the comma */
1582 * Determine whether one of the various `if' conditions is true or
1585 * We must free the tline we get passed.
1587 static bool if_condition(Token
* tline
, enum preproc_token ct
)
1589 enum pp_conditional i
= PP_COND(ct
);
1591 Token
*t
, *tt
, **tptr
, *origline
;
1592 struct tokenval tokval
;
1594 enum pp_token_type needtype
;
1600 j
= false; /* have we matched yet? */
1605 if (tline
->type
!= TOK_ID
) {
1607 "`%s' expects context identifiers", pp_directives
[ct
]);
1608 free_tlist(origline
);
1611 if (cstk
&& cstk
->name
&& !nasm_stricmp(tline
->text
, cstk
->name
))
1613 tline
= tline
->next
;
1618 j
= false; /* have we matched yet? */
1621 if (!tline
|| (tline
->type
!= TOK_ID
&&
1622 (tline
->type
!= TOK_PREPROC_ID
||
1623 tline
->text
[1] != '$'))) {
1625 "`%s' expects macro identifiers", pp_directives
[ct
]);
1628 if (smacro_defined(NULL
, tline
->text
, 0, NULL
, true))
1630 tline
= tline
->next
;
1636 tline
= expand_smacro(tline
);
1638 while (tok_isnt_(tt
, ","))
1642 "`%s' expects two comma-separated arguments",
1647 j
= true; /* assume equality unless proved not */
1648 while ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) && tt
) {
1649 if (tt
->type
== TOK_OTHER
&& !strcmp(tt
->text
, ",")) {
1650 error(ERR_NONFATAL
, "`%s': more than one comma on line",
1654 if (t
->type
== TOK_WHITESPACE
) {
1658 if (tt
->type
== TOK_WHITESPACE
) {
1662 if (tt
->type
!= t
->type
) {
1663 j
= false; /* found mismatching tokens */
1666 /* When comparing strings, need to unquote them first */
1667 if (t
->type
== TOK_STRING
) {
1668 size_t l1
= nasm_unquote(t
->text
, NULL
);
1669 size_t l2
= nasm_unquote(tt
->text
, NULL
);
1675 if (mmemcmp(t
->text
, tt
->text
, l1
, i
== PPC_IFIDN
)) {
1679 } else if (mstrcmp(tt
->text
, t
->text
, i
== PPC_IFIDN
) != 0) {
1680 j
= false; /* found mismatching tokens */
1687 if ((t
->type
!= TOK_OTHER
|| strcmp(t
->text
, ",")) || tt
)
1688 j
= false; /* trailing gunk on one end or other */
1694 MMacro searching
, *mmac
;
1697 tline
= expand_id(tline
);
1698 if (!tok_type_(tline
, TOK_ID
)) {
1700 "`%s' expects a macro name", pp_directives
[ct
]);
1703 searching
.name
= nasm_strdup(tline
->text
);
1704 searching
.casesense
= true;
1705 searching
.plus
= false;
1706 searching
.nolist
= false;
1707 searching
.in_progress
= 0;
1708 searching
.max_depth
= 0;
1709 searching
.rep_nest
= NULL
;
1710 searching
.nparam_min
= 0;
1711 searching
.nparam_max
= INT_MAX
;
1712 tline
= expand_smacro(tline
->next
);
1715 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
1717 "`%s' expects a parameter count or nothing",
1720 searching
.nparam_min
= searching
.nparam_max
=
1721 readnum(tline
->text
, &j
);
1724 "unable to parse parameter count `%s'",
1727 if (tline
&& tok_is_(tline
->next
, "-")) {
1728 tline
= tline
->next
->next
;
1729 if (tok_is_(tline
, "*"))
1730 searching
.nparam_max
= INT_MAX
;
1731 else if (!tok_type_(tline
, TOK_NUMBER
))
1733 "`%s' expects a parameter count after `-'",
1736 searching
.nparam_max
= readnum(tline
->text
, &j
);
1739 "unable to parse parameter count `%s'",
1741 if (searching
.nparam_min
> searching
.nparam_max
)
1743 "minimum parameter count exceeds maximum");
1746 if (tline
&& tok_is_(tline
->next
, "+")) {
1747 tline
= tline
->next
;
1748 searching
.plus
= true;
1750 mmac
= (MMacro
*) hash_findix(&mmacros
, searching
.name
);
1752 if (!strcmp(mmac
->name
, searching
.name
) &&
1753 (mmac
->nparam_min
<= searching
.nparam_max
1755 && (searching
.nparam_min
<= mmac
->nparam_max
1762 if (tline
&& tline
->next
)
1763 error(ERR_WARNING
|ERR_PASS1
,
1764 "trailing garbage after %%ifmacro ignored");
1765 nasm_free(searching
.name
);
1774 needtype
= TOK_NUMBER
;
1777 needtype
= TOK_STRING
;
1781 t
= tline
= expand_smacro(tline
);
1783 while (tok_type_(t
, TOK_WHITESPACE
) ||
1784 (needtype
== TOK_NUMBER
&&
1785 tok_type_(t
, TOK_OTHER
) &&
1786 (t
->text
[0] == '-' || t
->text
[0] == '+') &&
1790 j
= tok_type_(t
, needtype
);
1794 t
= tline
= expand_smacro(tline
);
1795 while (tok_type_(t
, TOK_WHITESPACE
))
1800 t
= t
->next
; /* Skip the actual token */
1801 while (tok_type_(t
, TOK_WHITESPACE
))
1803 j
= !t
; /* Should be nothing left */
1808 t
= tline
= expand_smacro(tline
);
1809 while (tok_type_(t
, TOK_WHITESPACE
))
1812 j
= !t
; /* Should be empty */
1816 t
= tline
= expand_smacro(tline
);
1818 tokval
.t_type
= TOKEN_INVALID
;
1819 evalresult
= evaluate(ppscan
, tptr
, &tokval
,
1820 NULL
, pass
| CRITICAL
, error
, NULL
);
1824 error(ERR_WARNING
|ERR_PASS1
,
1825 "trailing garbage after expression ignored");
1826 if (!is_simple(evalresult
)) {
1828 "non-constant value given to `%s'", pp_directives
[ct
]);
1831 j
= reloc_value(evalresult
) != 0;
1836 "preprocessor directive `%s' not yet implemented",
1841 free_tlist(origline
);
1842 return j
^ PP_NEGATIVE(ct
);
1845 free_tlist(origline
);
1850 * Common code for defining an smacro
1852 static bool define_smacro(Context
*ctx
, const char *mname
, bool casesense
,
1853 int nparam
, Token
*expansion
)
1855 SMacro
*smac
, **smhead
;
1856 struct hash_table
*smtbl
;
1858 if (smacro_defined(ctx
, mname
, nparam
, &smac
, casesense
)) {
1860 error(ERR_WARNING
|ERR_PASS1
,
1861 "single-line macro `%s' defined both with and"
1862 " without parameters", mname
);
1864 * Some instances of the old code considered this a failure,
1865 * some others didn't. What is the right thing to do here?
1867 free_tlist(expansion
);
1868 return false; /* Failure */
1871 * We're redefining, so we have to take over an
1872 * existing SMacro structure. This means freeing
1873 * what was already in it.
1875 nasm_free(smac
->name
);
1876 free_tlist(smac
->expansion
);
1879 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
1880 smhead
= (SMacro
**) hash_findi_add(smtbl
, mname
);
1881 smac
= nasm_malloc(sizeof(SMacro
));
1882 smac
->next
= *smhead
;
1885 smac
->name
= nasm_strdup(mname
);
1886 smac
->casesense
= casesense
;
1887 smac
->nparam
= nparam
;
1888 smac
->expansion
= expansion
;
1889 smac
->in_progress
= false;
1890 return true; /* Success */
1894 * Undefine an smacro
1896 static void undef_smacro(Context
*ctx
, const char *mname
)
1898 SMacro
**smhead
, *s
, **sp
;
1899 struct hash_table
*smtbl
;
1901 smtbl
= ctx
? &ctx
->localmac
: &smacros
;
1902 smhead
= (SMacro
**)hash_findi(smtbl
, mname
, NULL
);
1906 * We now have a macro name... go hunt for it.
1909 while ((s
= *sp
) != NULL
) {
1910 if (!mstrcmp(s
->name
, mname
, s
->casesense
)) {
1913 free_tlist(s
->expansion
);
1923 * Parse a mmacro specification.
1925 static bool parse_mmacro_spec(Token
*tline
, MMacro
*def
, const char *directive
)
1929 tline
= tline
->next
;
1931 tline
= expand_id(tline
);
1932 if (!tok_type_(tline
, TOK_ID
)) {
1933 error(ERR_NONFATAL
, "`%s' expects a macro name", directive
);
1938 def
->name
= nasm_strdup(tline
->text
);
1940 def
->nolist
= false;
1941 def
->in_progress
= 0;
1942 def
->rep_nest
= NULL
;
1943 def
->nparam_min
= 0;
1944 def
->nparam_max
= 0;
1946 tline
= expand_smacro(tline
->next
);
1948 if (!tok_type_(tline
, TOK_NUMBER
)) {
1949 error(ERR_NONFATAL
, "`%s' expects a parameter count", directive
);
1951 def
->nparam_min
= def
->nparam_max
=
1952 readnum(tline
->text
, &err
);
1955 "unable to parse parameter count `%s'", tline
->text
);
1957 if (tline
&& tok_is_(tline
->next
, "-")) {
1958 tline
= tline
->next
->next
;
1959 if (tok_is_(tline
, "*")) {
1960 def
->nparam_max
= INT_MAX
;
1961 } else if (!tok_type_(tline
, TOK_NUMBER
)) {
1963 "`%s' expects a parameter count after `-'", directive
);
1965 def
->nparam_max
= readnum(tline
->text
, &err
);
1967 error(ERR_NONFATAL
, "unable to parse parameter count `%s'",
1970 if (def
->nparam_min
> def
->nparam_max
) {
1971 error(ERR_NONFATAL
, "minimum parameter count exceeds maximum");
1975 if (tline
&& tok_is_(tline
->next
, "+")) {
1976 tline
= tline
->next
;
1979 if (tline
&& tok_type_(tline
->next
, TOK_ID
) &&
1980 !nasm_stricmp(tline
->next
->text
, ".nolist")) {
1981 tline
= tline
->next
;
1986 * Handle default parameters.
1988 if (tline
&& tline
->next
) {
1989 def
->dlist
= tline
->next
;
1991 count_mmac_params(def
->dlist
, &def
->ndefs
, &def
->defaults
);
1994 def
->defaults
= NULL
;
1996 def
->expansion
= NULL
;
1998 if (def
->defaults
&& def
->ndefs
> def
->nparam_max
- def
->nparam_min
&&
2000 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MDP
,
2001 "too many default macro parameters");
2008 * Decode a size directive
2010 static int parse_size(const char *str
) {
2011 static const char *size_names
[] =
2012 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
2013 static const int sizes
[] =
2014 { 0, 1, 4, 16, 8, 10, 2, 32 };
2016 return sizes
[bsii(str
, size_names
, elements(size_names
))+1];
2020 * nasm_unquote with error if the string contains NUL characters.
2021 * If the string contains NUL characters, issue an error and return
2022 * the C len, i.e. truncate at the NUL.
2024 static size_t nasm_unquote_cstr(char *qstr
, enum preproc_token directive
)
2026 size_t len
= nasm_unquote(qstr
, NULL
);
2027 size_t clen
= strlen(qstr
);
2030 error(ERR_NONFATAL
, "NUL character in `%s' directive",
2031 pp_directives
[directive
]);
2037 * find and process preprocessor directive in passed line
2038 * Find out if a line contains a preprocessor directive, and deal
2041 * If a directive _is_ found, it is the responsibility of this routine
2042 * (and not the caller) to free_tlist() the line.
2044 * @param tline a pointer to the current tokeninzed line linked list
2045 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
2048 static int do_directive(Token
* tline
)
2050 enum preproc_token i
;
2063 MMacro
*mmac
, **mmhead
;
2064 Token
*t
, *tt
, *param_start
, *macro_start
, *last
, **tptr
, *origline
;
2066 struct tokenval tokval
;
2068 MMacro
*tmp_defining
; /* Used when manipulating rep_nest */
2076 if (!tline
|| !tok_type_(tline
, TOK_PREPROC_ID
) ||
2077 (tline
->text
[1] == '%' || tline
->text
[1] == '$'
2078 || tline
->text
[1] == '!'))
2079 return NO_DIRECTIVE_FOUND
;
2081 i
= pp_token_hash(tline
->text
);
2084 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2085 * since they are known to be buggy at moment, we need to fix them
2086 * in future release (2.09-2.10)
2088 if (i
== PP_RMACRO
|| i
== PP_RMACRO
|| i
== PP_EXITMACRO
) {
2089 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2091 return NO_DIRECTIVE_FOUND
;
2095 * If we're in a non-emitting branch of a condition construct,
2096 * or walking to the end of an already terminated %rep block,
2097 * we should ignore all directives except for condition
2100 if (((istk
->conds
&& !emitting(istk
->conds
->state
)) ||
2101 (istk
->mstk
&& !istk
->mstk
->in_progress
)) && !is_condition(i
)) {
2102 return NO_DIRECTIVE_FOUND
;
2106 * If we're defining a macro or reading a %rep block, we should
2107 * ignore all directives except for %macro/%imacro (which nest),
2108 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2109 * If we're in a %rep block, another %rep nests, so should be let through.
2111 if (defining
&& i
!= PP_MACRO
&& i
!= PP_IMACRO
&&
2112 i
!= PP_RMACRO
&& i
!= PP_IRMACRO
&&
2113 i
!= PP_ENDMACRO
&& i
!= PP_ENDM
&&
2114 (defining
->name
|| (i
!= PP_ENDREP
&& i
!= PP_REP
))) {
2115 return NO_DIRECTIVE_FOUND
;
2119 if (i
== PP_MACRO
|| i
== PP_IMACRO
||
2120 i
== PP_RMACRO
|| i
== PP_IRMACRO
) {
2122 return NO_DIRECTIVE_FOUND
;
2123 } else if (nested_mac_count
> 0) {
2124 if (i
== PP_ENDMACRO
) {
2126 return NO_DIRECTIVE_FOUND
;
2129 if (!defining
->name
) {
2132 return NO_DIRECTIVE_FOUND
;
2133 } else if (nested_rep_count
> 0) {
2134 if (i
== PP_ENDREP
) {
2136 return NO_DIRECTIVE_FOUND
;
2144 error(ERR_NONFATAL
, "unknown preprocessor directive `%s'",
2146 return NO_DIRECTIVE_FOUND
; /* didn't get it */
2149 /* Directive to tell NASM what the default stack size is. The
2150 * default is for a 16-bit stack, and this can be overriden with
2153 tline
= tline
->next
;
2154 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2155 tline
= tline
->next
;
2156 if (!tline
|| tline
->type
!= TOK_ID
) {
2157 error(ERR_NONFATAL
, "`%%stacksize' missing size parameter");
2158 free_tlist(origline
);
2159 return DIRECTIVE_FOUND
;
2161 if (nasm_stricmp(tline
->text
, "flat") == 0) {
2162 /* All subsequent ARG directives are for a 32-bit stack */
2164 StackPointer
= "ebp";
2167 } else if (nasm_stricmp(tline
->text
, "flat64") == 0) {
2168 /* All subsequent ARG directives are for a 64-bit stack */
2170 StackPointer
= "rbp";
2173 } else if (nasm_stricmp(tline
->text
, "large") == 0) {
2174 /* All subsequent ARG directives are for a 16-bit stack,
2175 * far function call.
2178 StackPointer
= "bp";
2181 } else if (nasm_stricmp(tline
->text
, "small") == 0) {
2182 /* All subsequent ARG directives are for a 16-bit stack,
2183 * far function call. We don't support near functions.
2186 StackPointer
= "bp";
2190 error(ERR_NONFATAL
, "`%%stacksize' invalid size type");
2191 free_tlist(origline
);
2192 return DIRECTIVE_FOUND
;
2194 free_tlist(origline
);
2195 return DIRECTIVE_FOUND
;
2198 /* TASM like ARG directive to define arguments to functions, in
2199 * the following form:
2201 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2205 char *arg
, directive
[256];
2206 int size
= StackSize
;
2208 /* Find the argument name */
2209 tline
= tline
->next
;
2210 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2211 tline
= tline
->next
;
2212 if (!tline
|| tline
->type
!= TOK_ID
) {
2213 error(ERR_NONFATAL
, "`%%arg' missing argument parameter");
2214 free_tlist(origline
);
2215 return DIRECTIVE_FOUND
;
2219 /* Find the argument size type */
2220 tline
= tline
->next
;
2221 if (!tline
|| tline
->type
!= TOK_OTHER
2222 || tline
->text
[0] != ':') {
2224 "Syntax error processing `%%arg' directive");
2225 free_tlist(origline
);
2226 return DIRECTIVE_FOUND
;
2228 tline
= tline
->next
;
2229 if (!tline
|| tline
->type
!= TOK_ID
) {
2230 error(ERR_NONFATAL
, "`%%arg' missing size type parameter");
2231 free_tlist(origline
);
2232 return DIRECTIVE_FOUND
;
2235 /* Allow macro expansion of type parameter */
2236 tt
= tokenize(tline
->text
);
2237 tt
= expand_smacro(tt
);
2238 size
= parse_size(tt
->text
);
2241 "Invalid size type for `%%arg' missing directive");
2243 free_tlist(origline
);
2244 return DIRECTIVE_FOUND
;
2248 /* Round up to even stack slots */
2249 size
= ALIGN(size
, StackSize
);
2251 /* Now define the macro for the argument */
2252 snprintf(directive
, sizeof(directive
), "%%define %s (%s+%d)",
2253 arg
, StackPointer
, offset
);
2254 do_directive(tokenize(directive
));
2257 /* Move to the next argument in the list */
2258 tline
= tline
->next
;
2259 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2260 tline
= tline
->next
;
2261 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2263 free_tlist(origline
);
2264 return DIRECTIVE_FOUND
;
2267 /* TASM like LOCAL directive to define local variables for a
2268 * function, in the following form:
2270 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2272 * The '= LocalSize' at the end is ignored by NASM, but is
2273 * required by TASM to define the local parameter size (and used
2274 * by the TASM macro package).
2276 offset
= LocalOffset
;
2278 char *local
, directive
[256];
2279 int size
= StackSize
;
2281 /* Find the argument name */
2282 tline
= tline
->next
;
2283 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2284 tline
= tline
->next
;
2285 if (!tline
|| tline
->type
!= TOK_ID
) {
2287 "`%%local' missing argument parameter");
2288 free_tlist(origline
);
2289 return DIRECTIVE_FOUND
;
2291 local
= tline
->text
;
2293 /* Find the argument size type */
2294 tline
= tline
->next
;
2295 if (!tline
|| tline
->type
!= TOK_OTHER
2296 || tline
->text
[0] != ':') {
2298 "Syntax error processing `%%local' directive");
2299 free_tlist(origline
);
2300 return DIRECTIVE_FOUND
;
2302 tline
= tline
->next
;
2303 if (!tline
|| tline
->type
!= TOK_ID
) {
2305 "`%%local' missing size type parameter");
2306 free_tlist(origline
);
2307 return DIRECTIVE_FOUND
;
2310 /* Allow macro expansion of type parameter */
2311 tt
= tokenize(tline
->text
);
2312 tt
= expand_smacro(tt
);
2313 size
= parse_size(tt
->text
);
2316 "Invalid size type for `%%local' missing directive");
2318 free_tlist(origline
);
2319 return DIRECTIVE_FOUND
;
2323 /* Round up to even stack slots */
2324 size
= ALIGN(size
, StackSize
);
2326 offset
+= size
; /* Negative offset, increment before */
2328 /* Now define the macro for the argument */
2329 snprintf(directive
, sizeof(directive
), "%%define %s (%s-%d)",
2330 local
, StackPointer
, offset
);
2331 do_directive(tokenize(directive
));
2333 /* Now define the assign to setup the enter_c macro correctly */
2334 snprintf(directive
, sizeof(directive
),
2335 "%%assign %%$localsize %%$localsize+%d", size
);
2336 do_directive(tokenize(directive
));
2338 /* Move to the next argument in the list */
2339 tline
= tline
->next
;
2340 if (tline
&& tline
->type
== TOK_WHITESPACE
)
2341 tline
= tline
->next
;
2342 } while (tline
&& tline
->type
== TOK_OTHER
&& tline
->text
[0] == ',');
2343 LocalOffset
= offset
;
2344 free_tlist(origline
);
2345 return DIRECTIVE_FOUND
;
2349 error(ERR_WARNING
|ERR_PASS1
,
2350 "trailing garbage after `%%clear' ignored");
2353 free_tlist(origline
);
2354 return DIRECTIVE_FOUND
;
2357 t
= tline
->next
= expand_smacro(tline
->next
);
2359 if (!t
|| (t
->type
!= TOK_STRING
&&
2360 t
->type
!= TOK_INTERNAL_STRING
)) {
2361 error(ERR_NONFATAL
, "`%%depend' expects a file name");
2362 free_tlist(origline
);
2363 return DIRECTIVE_FOUND
; /* but we did _something_ */
2366 error(ERR_WARNING
|ERR_PASS1
,
2367 "trailing garbage after `%%depend' ignored");
2369 if (t
->type
!= TOK_INTERNAL_STRING
)
2370 nasm_unquote_cstr(p
, i
);
2371 if (dephead
&& !in_list(*dephead
, p
)) {
2372 StrList
*sl
= nasm_malloc(strlen(p
)+1+sizeof sl
->next
);
2376 deptail
= &sl
->next
;
2378 free_tlist(origline
);
2379 return DIRECTIVE_FOUND
;
2382 t
= tline
->next
= expand_smacro(tline
->next
);
2385 if (!t
|| (t
->type
!= TOK_STRING
&&
2386 t
->type
!= TOK_INTERNAL_STRING
)) {
2387 error(ERR_NONFATAL
, "`%%include' expects a file name");
2388 free_tlist(origline
);
2389 return DIRECTIVE_FOUND
; /* but we did _something_ */
2392 error(ERR_WARNING
|ERR_PASS1
,
2393 "trailing garbage after `%%include' ignored");
2395 if (t
->type
!= TOK_INTERNAL_STRING
)
2396 nasm_unquote_cstr(p
, i
);
2397 inc
= nasm_malloc(sizeof(Include
));
2400 inc
->fp
= inc_fopen(p
, dephead
, &deptail
, pass
== 0);
2402 /* -MG given but file not found */
2405 inc
->fname
= src_set_fname(nasm_strdup(p
));
2406 inc
->lineno
= src_set_linnum(0);
2408 inc
->expansion
= NULL
;
2411 list
->uplevel(LIST_INCLUDE
);
2413 free_tlist(origline
);
2414 return DIRECTIVE_FOUND
;
2418 static macros_t
*use_pkg
;
2419 const char *pkg_macro
= NULL
;
2421 tline
= tline
->next
;
2423 tline
= expand_id(tline
);
2425 if (!tline
|| (tline
->type
!= TOK_STRING
&&
2426 tline
->type
!= TOK_INTERNAL_STRING
&&
2427 tline
->type
!= TOK_ID
)) {
2428 error(ERR_NONFATAL
, "`%%use' expects a package name");
2429 free_tlist(origline
);
2430 return DIRECTIVE_FOUND
; /* but we did _something_ */
2433 error(ERR_WARNING
|ERR_PASS1
,
2434 "trailing garbage after `%%use' ignored");
2435 if (tline
->type
== TOK_STRING
)
2436 nasm_unquote_cstr(tline
->text
, i
);
2437 use_pkg
= nasm_stdmac_find_package(tline
->text
);
2439 error(ERR_NONFATAL
, "unknown `%%use' package: %s", tline
->text
);
2441 pkg_macro
= (char *)use_pkg
+ 1; /* The first string will be <%define>__USE_*__ */
2442 if (use_pkg
&& smacro_defined(NULL
, pkg_macro
, 0, NULL
, true)) {
2443 /* Not already included, go ahead and include it */
2444 stdmacpos
= use_pkg
;
2446 free_tlist(origline
);
2447 return DIRECTIVE_FOUND
;
2452 tline
= tline
->next
;
2454 tline
= expand_id(tline
);
2456 if (!tok_type_(tline
, TOK_ID
)) {
2457 error(ERR_NONFATAL
, "`%s' expects a context identifier",
2459 free_tlist(origline
);
2460 return DIRECTIVE_FOUND
; /* but we did _something_ */
2463 error(ERR_WARNING
|ERR_PASS1
,
2464 "trailing garbage after `%s' ignored",
2466 p
= nasm_strdup(tline
->text
);
2468 p
= NULL
; /* Anonymous */
2472 ctx
= nasm_malloc(sizeof(Context
));
2474 hash_init(&ctx
->localmac
, HASH_SMALL
);
2476 ctx
->number
= unique
++;
2481 error(ERR_NONFATAL
, "`%s': context stack is empty",
2483 } else if (i
== PP_POP
) {
2484 if (p
&& (!cstk
->name
|| nasm_stricmp(p
, cstk
->name
)))
2485 error(ERR_NONFATAL
, "`%%pop' in wrong context: %s, "
2487 cstk
->name
? cstk
->name
: "anonymous", p
);
2492 nasm_free(cstk
->name
);
2498 free_tlist(origline
);
2499 return DIRECTIVE_FOUND
;
2501 severity
= ERR_FATAL
;
2504 severity
= ERR_NONFATAL
;
2507 severity
= ERR_WARNING
|ERR_WARN_USER
;
2512 /* Only error out if this is the final pass */
2513 if (pass
!= 2 && i
!= PP_FATAL
)
2514 return DIRECTIVE_FOUND
;
2516 tline
->next
= expand_smacro(tline
->next
);
2517 tline
= tline
->next
;
2519 t
= tline
? tline
->next
: NULL
;
2521 if (tok_type_(tline
, TOK_STRING
) && !t
) {
2522 /* The line contains only a quoted string */
2524 nasm_unquote(p
, NULL
); /* Ignore NUL character truncation */
2525 error(severity
, "%s", p
);
2527 /* Not a quoted string, or more than a quoted string */
2528 p
= detoken(tline
, false);
2529 error(severity
, "%s", p
);
2532 free_tlist(origline
);
2533 return DIRECTIVE_FOUND
;
2537 if (istk
->conds
&& !emitting(istk
->conds
->state
))
2540 j
= if_condition(tline
->next
, i
);
2541 tline
->next
= NULL
; /* it got freed */
2542 j
= j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2544 cond
= nasm_malloc(sizeof(Cond
));
2545 cond
->next
= istk
->conds
;
2549 istk
->mstk
->condcnt
++;
2550 free_tlist(origline
);
2551 return DIRECTIVE_FOUND
;
2555 error(ERR_FATAL
, "`%s': no matching `%%if'", pp_directives
[i
]);
2556 switch(istk
->conds
->state
) {
2558 istk
->conds
->state
= COND_DONE
;
2565 case COND_ELSE_TRUE
:
2566 case COND_ELSE_FALSE
:
2567 error_precond(ERR_WARNING
|ERR_PASS1
,
2568 "`%%elif' after `%%else' ignored");
2569 istk
->conds
->state
= COND_NEVER
;
2574 * IMPORTANT: In the case of %if, we will already have
2575 * called expand_mmac_params(); however, if we're
2576 * processing an %elif we must have been in a
2577 * non-emitting mode, which would have inhibited
2578 * the normal invocation of expand_mmac_params().
2579 * Therefore, we have to do it explicitly here.
2581 j
= if_condition(expand_mmac_params(tline
->next
), i
);
2582 tline
->next
= NULL
; /* it got freed */
2583 istk
->conds
->state
=
2584 j
< 0 ? COND_NEVER
: j
? COND_IF_TRUE
: COND_IF_FALSE
;
2587 free_tlist(origline
);
2588 return DIRECTIVE_FOUND
;
2592 error_precond(ERR_WARNING
|ERR_PASS1
,
2593 "trailing garbage after `%%else' ignored");
2595 error(ERR_FATAL
, "`%%else': no matching `%%if'");
2596 switch(istk
->conds
->state
) {
2599 istk
->conds
->state
= COND_ELSE_FALSE
;
2606 istk
->conds
->state
= COND_ELSE_TRUE
;
2609 case COND_ELSE_TRUE
:
2610 case COND_ELSE_FALSE
:
2611 error_precond(ERR_WARNING
|ERR_PASS1
,
2612 "`%%else' after `%%else' ignored.");
2613 istk
->conds
->state
= COND_NEVER
;
2616 free_tlist(origline
);
2617 return DIRECTIVE_FOUND
;
2621 error_precond(ERR_WARNING
|ERR_PASS1
,
2622 "trailing garbage after `%%endif' ignored");
2624 error(ERR_FATAL
, "`%%endif': no matching `%%if'");
2626 istk
->conds
= cond
->next
;
2629 istk
->mstk
->condcnt
--;
2630 free_tlist(origline
);
2631 return DIRECTIVE_FOUND
;
2638 error(ERR_FATAL
, "`%s': already defining a macro",
2640 return DIRECTIVE_FOUND
;
2642 defining
= nasm_malloc(sizeof(MMacro
));
2643 defining
->max_depth
=
2644 (i
== PP_RMACRO
) || (i
== PP_IRMACRO
) ? DEADMAN_LIMIT
: 0;
2645 defining
->casesense
= (i
== PP_MACRO
) || (i
== PP_RMACRO
);
2646 if (!parse_mmacro_spec(tline
, defining
, pp_directives
[i
])) {
2647 nasm_free(defining
);
2649 return DIRECTIVE_FOUND
;
2652 mmac
= (MMacro
*) hash_findix(&mmacros
, defining
->name
);
2654 if (!strcmp(mmac
->name
, defining
->name
) &&
2655 (mmac
->nparam_min
<= defining
->nparam_max
2657 && (defining
->nparam_min
<= mmac
->nparam_max
2659 error(ERR_WARNING
|ERR_PASS1
,
2660 "redefining multi-line macro `%s'", defining
->name
);
2661 return DIRECTIVE_FOUND
;
2665 free_tlist(origline
);
2666 return DIRECTIVE_FOUND
;
2670 if (! (defining
&& defining
->name
)) {
2671 error(ERR_NONFATAL
, "`%s': not defining a macro", tline
->text
);
2672 return DIRECTIVE_FOUND
;
2674 mmhead
= (MMacro
**) hash_findi_add(&mmacros
, defining
->name
);
2675 defining
->next
= *mmhead
;
2678 free_tlist(origline
);
2679 return DIRECTIVE_FOUND
;
2683 * We must search along istk->expansion until we hit a
2684 * macro-end marker for a macro with a name. Then we
2685 * bypass all lines between exitmacro and endmacro.
2687 for (l
= istk
->expansion
; l
; l
= l
->next
)
2688 if (l
->finishes
&& l
->finishes
->name
)
2693 * Remove all conditional entries relative to this
2694 * macro invocation. (safe to do in this context)
2696 for ( ; l
->finishes
->condcnt
> 0; l
->finishes
->condcnt
--) {
2698 istk
->conds
= cond
->next
;
2701 istk
->expansion
= l
;
2703 error(ERR_NONFATAL
, "`%%exitmacro' not within `%%macro' block");
2705 free_tlist(origline
);
2706 return DIRECTIVE_FOUND
;
2714 spec
.casesense
= (i
== PP_UNMACRO
);
2715 if (!parse_mmacro_spec(tline
, &spec
, pp_directives
[i
])) {
2716 return DIRECTIVE_FOUND
;
2718 mmac_p
= (MMacro
**) hash_findi(&mmacros
, spec
.name
, NULL
);
2719 while (mmac_p
&& *mmac_p
) {
2721 if (mmac
->casesense
== spec
.casesense
&&
2722 !mstrcmp(mmac
->name
, spec
.name
, spec
.casesense
) &&
2723 mmac
->nparam_min
== spec
.nparam_min
&&
2724 mmac
->nparam_max
== spec
.nparam_max
&&
2725 mmac
->plus
== spec
.plus
) {
2726 *mmac_p
= mmac
->next
;
2729 mmac_p
= &mmac
->next
;
2732 free_tlist(origline
);
2733 free_tlist(spec
.dlist
);
2734 return DIRECTIVE_FOUND
;
2738 if (tline
->next
&& tline
->next
->type
== TOK_WHITESPACE
)
2739 tline
= tline
->next
;
2741 free_tlist(origline
);
2742 error(ERR_NONFATAL
, "`%%rotate' missing rotate count");
2743 return DIRECTIVE_FOUND
;
2745 t
= expand_smacro(tline
->next
);
2747 free_tlist(origline
);
2750 tokval
.t_type
= TOKEN_INVALID
;
2752 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2755 return DIRECTIVE_FOUND
;
2757 error(ERR_WARNING
|ERR_PASS1
,
2758 "trailing garbage after expression ignored");
2759 if (!is_simple(evalresult
)) {
2760 error(ERR_NONFATAL
, "non-constant value given to `%%rotate'");
2761 return DIRECTIVE_FOUND
;
2764 while (mmac
&& !mmac
->name
) /* avoid mistaking %reps for macros */
2765 mmac
= mmac
->next_active
;
2767 error(ERR_NONFATAL
, "`%%rotate' invoked outside a macro call");
2768 } else if (mmac
->nparam
== 0) {
2770 "`%%rotate' invoked within macro without parameters");
2772 int rotate
= mmac
->rotate
+ reloc_value(evalresult
);
2774 rotate
%= (int)mmac
->nparam
;
2776 rotate
+= mmac
->nparam
;
2778 mmac
->rotate
= rotate
;
2780 return DIRECTIVE_FOUND
;
2785 tline
= tline
->next
;
2786 } while (tok_type_(tline
, TOK_WHITESPACE
));
2788 if (tok_type_(tline
, TOK_ID
) &&
2789 nasm_stricmp(tline
->text
, ".nolist") == 0) {
2792 tline
= tline
->next
;
2793 } while (tok_type_(tline
, TOK_WHITESPACE
));
2797 t
= expand_smacro(tline
);
2799 tokval
.t_type
= TOKEN_INVALID
;
2801 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
2803 free_tlist(origline
);
2804 return DIRECTIVE_FOUND
;
2807 error(ERR_WARNING
|ERR_PASS1
,
2808 "trailing garbage after expression ignored");
2809 if (!is_simple(evalresult
)) {
2810 error(ERR_NONFATAL
, "non-constant value given to `%%rep'");
2811 return DIRECTIVE_FOUND
;
2813 count
= reloc_value(evalresult
) + 1;
2815 error(ERR_NONFATAL
, "`%%rep' expects a repeat count");
2818 free_tlist(origline
);
2820 tmp_defining
= defining
;
2821 defining
= nasm_malloc(sizeof(MMacro
));
2822 defining
->prev
= NULL
;
2823 defining
->name
= NULL
; /* flags this macro as a %rep block */
2824 defining
->casesense
= false;
2825 defining
->plus
= false;
2826 defining
->nolist
= nolist
;
2827 defining
->in_progress
= count
;
2828 defining
->max_depth
= 0;
2829 defining
->nparam_min
= defining
->nparam_max
= 0;
2830 defining
->defaults
= NULL
;
2831 defining
->dlist
= NULL
;
2832 defining
->expansion
= NULL
;
2833 defining
->next_active
= istk
->mstk
;
2834 defining
->rep_nest
= tmp_defining
;
2835 return DIRECTIVE_FOUND
;
2838 if (!defining
|| defining
->name
) {
2839 error(ERR_NONFATAL
, "`%%endrep': no matching `%%rep'");
2840 return DIRECTIVE_FOUND
;
2844 * Now we have a "macro" defined - although it has no name
2845 * and we won't be entering it in the hash tables - we must
2846 * push a macro-end marker for it on to istk->expansion.
2847 * After that, it will take care of propagating itself (a
2848 * macro-end marker line for a macro which is really a %rep
2849 * block will cause the macro to be re-expanded, complete
2850 * with another macro-end marker to ensure the process
2851 * continues) until the whole expansion is forcibly removed
2852 * from istk->expansion by a %exitrep.
2854 l
= nasm_malloc(sizeof(Line
));
2855 l
->next
= istk
->expansion
;
2856 l
->finishes
= defining
;
2858 istk
->expansion
= l
;
2860 istk
->mstk
= defining
;
2862 list
->uplevel(defining
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
2863 tmp_defining
= defining
;
2864 defining
= defining
->rep_nest
;
2865 free_tlist(origline
);
2866 return DIRECTIVE_FOUND
;
2870 * We must search along istk->expansion until we hit a
2871 * macro-end marker for a macro with no name. Then we set
2872 * its `in_progress' flag to 0.
2874 for (l
= istk
->expansion
; l
; l
= l
->next
)
2875 if (l
->finishes
&& !l
->finishes
->name
)
2879 l
->finishes
->in_progress
= 1;
2881 error(ERR_NONFATAL
, "`%%exitrep' not within `%%rep' block");
2882 free_tlist(origline
);
2883 return DIRECTIVE_FOUND
;
2889 casesense
= (i
== PP_DEFINE
|| i
== PP_XDEFINE
);
2891 tline
= tline
->next
;
2893 tline
= expand_id(tline
);
2894 if (!tline
|| (tline
->type
!= TOK_ID
&&
2895 (tline
->type
!= TOK_PREPROC_ID
||
2896 tline
->text
[1] != '$'))) {
2897 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
2899 free_tlist(origline
);
2900 return DIRECTIVE_FOUND
;
2903 ctx
= get_ctx(tline
->text
, &mname
, false);
2905 param_start
= tline
= tline
->next
;
2908 /* Expand the macro definition now for %xdefine and %ixdefine */
2909 if ((i
== PP_XDEFINE
) || (i
== PP_IXDEFINE
))
2910 tline
= expand_smacro(tline
);
2912 if (tok_is_(tline
, "(")) {
2914 * This macro has parameters.
2917 tline
= tline
->next
;
2921 error(ERR_NONFATAL
, "parameter identifier expected");
2922 free_tlist(origline
);
2923 return DIRECTIVE_FOUND
;
2925 if (tline
->type
!= TOK_ID
) {
2927 "`%s': parameter identifier expected",
2929 free_tlist(origline
);
2930 return DIRECTIVE_FOUND
;
2932 tline
->type
= TOK_SMAC_PARAM
+ nparam
++;
2933 tline
= tline
->next
;
2935 if (tok_is_(tline
, ",")) {
2936 tline
= tline
->next
;
2938 if (!tok_is_(tline
, ")")) {
2940 "`)' expected to terminate macro template");
2941 free_tlist(origline
);
2942 return DIRECTIVE_FOUND
;
2948 tline
= tline
->next
;
2950 if (tok_type_(tline
, TOK_WHITESPACE
))
2951 last
= tline
, tline
= tline
->next
;
2956 if (t
->type
== TOK_ID
) {
2957 for (tt
= param_start
; tt
; tt
= tt
->next
)
2958 if (tt
->type
>= TOK_SMAC_PARAM
&&
2959 !strcmp(tt
->text
, t
->text
))
2963 t
->next
= macro_start
;
2968 * Good. We now have a macro name, a parameter count, and a
2969 * token list (in reverse order) for an expansion. We ought
2970 * to be OK just to create an SMacro, store it, and let
2971 * free_tlist have the rest of the line (which we have
2972 * carefully re-terminated after chopping off the expansion
2975 define_smacro(ctx
, mname
, casesense
, nparam
, macro_start
);
2976 free_tlist(origline
);
2977 return DIRECTIVE_FOUND
;
2980 tline
= tline
->next
;
2982 tline
= expand_id(tline
);
2983 if (!tline
|| (tline
->type
!= TOK_ID
&&
2984 (tline
->type
!= TOK_PREPROC_ID
||
2985 tline
->text
[1] != '$'))) {
2986 error(ERR_NONFATAL
, "`%%undef' expects a macro identifier");
2987 free_tlist(origline
);
2988 return DIRECTIVE_FOUND
;
2991 error(ERR_WARNING
|ERR_PASS1
,
2992 "trailing garbage after macro name ignored");
2995 /* Find the context that symbol belongs to */
2996 ctx
= get_ctx(tline
->text
, &mname
, false);
2997 undef_smacro(ctx
, mname
);
2998 free_tlist(origline
);
2999 return DIRECTIVE_FOUND
;
3003 casesense
= (i
== PP_DEFSTR
);
3005 tline
= tline
->next
;
3007 tline
= expand_id(tline
);
3008 if (!tline
|| (tline
->type
!= TOK_ID
&&
3009 (tline
->type
!= TOK_PREPROC_ID
||
3010 tline
->text
[1] != '$'))) {
3011 error(ERR_NONFATAL
, "`%s' expects a macro identifier",
3013 free_tlist(origline
);
3014 return DIRECTIVE_FOUND
;
3017 ctx
= get_ctx(tline
->text
, &mname
, false);
3019 tline
= expand_smacro(tline
->next
);
3022 while (tok_type_(tline
, TOK_WHITESPACE
))
3023 tline
= delete_Token(tline
);
3025 p
= detoken(tline
, false);
3026 macro_start
= nasm_malloc(sizeof(*macro_start
));
3027 macro_start
->next
= NULL
;
3028 macro_start
->text
= nasm_quote(p
, strlen(p
));
3029 macro_start
->type
= TOK_STRING
;
3030 macro_start
->a
.mac
= NULL
;
3034 * We now have a macro name, an implicit parameter count of
3035 * zero, and a string token to use as an expansion. Create
3036 * and store an SMacro.
3038 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3039 free_tlist(origline
);
3040 return DIRECTIVE_FOUND
;
3044 casesense
= (i
== PP_DEFTOK
);
3046 tline
= tline
->next
;
3048 tline
= expand_id(tline
);
3049 if (!tline
|| (tline
->type
!= TOK_ID
&&
3050 (tline
->type
!= TOK_PREPROC_ID
||
3051 tline
->text
[1] != '$'))) {
3053 "`%s' expects a macro identifier as first parameter",
3055 free_tlist(origline
);
3056 return DIRECTIVE_FOUND
;
3058 ctx
= get_ctx(tline
->text
, &mname
, false);
3060 tline
= expand_smacro(tline
->next
);
3064 while (tok_type_(t
, TOK_WHITESPACE
))
3066 /* t should now point to the string */
3067 if (t
->type
!= TOK_STRING
) {
3069 "`%s` requires string as second parameter",
3072 free_tlist(origline
);
3073 return DIRECTIVE_FOUND
;
3076 nasm_unquote_cstr(t
->text
, i
);
3077 macro_start
= tokenize(t
->text
);
3080 * We now have a macro name, an implicit parameter count of
3081 * zero, and a numeric token to use as an expansion. Create
3082 * and store an SMacro.
3084 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3086 free_tlist(origline
);
3087 return DIRECTIVE_FOUND
;
3092 StrList
*xsl
= NULL
;
3093 StrList
**xst
= &xsl
;
3097 tline
= tline
->next
;
3099 tline
= expand_id(tline
);
3100 if (!tline
|| (tline
->type
!= TOK_ID
&&
3101 (tline
->type
!= TOK_PREPROC_ID
||
3102 tline
->text
[1] != '$'))) {
3104 "`%%pathsearch' expects a macro identifier as first parameter");
3105 free_tlist(origline
);
3106 return DIRECTIVE_FOUND
;
3108 ctx
= get_ctx(tline
->text
, &mname
, false);
3110 tline
= expand_smacro(tline
->next
);
3114 while (tok_type_(t
, TOK_WHITESPACE
))
3117 if (!t
|| (t
->type
!= TOK_STRING
&&
3118 t
->type
!= TOK_INTERNAL_STRING
)) {
3119 error(ERR_NONFATAL
, "`%%pathsearch' expects a file name");
3121 free_tlist(origline
);
3122 return DIRECTIVE_FOUND
; /* but we did _something_ */
3125 error(ERR_WARNING
|ERR_PASS1
,
3126 "trailing garbage after `%%pathsearch' ignored");
3128 if (t
->type
!= TOK_INTERNAL_STRING
)
3129 nasm_unquote(p
, NULL
);
3131 fp
= inc_fopen(p
, &xsl
, &xst
, true);
3134 fclose(fp
); /* Don't actually care about the file */
3136 macro_start
= nasm_malloc(sizeof(*macro_start
));
3137 macro_start
->next
= NULL
;
3138 macro_start
->text
= nasm_quote(p
, strlen(p
));
3139 macro_start
->type
= TOK_STRING
;
3140 macro_start
->a
.mac
= NULL
;
3145 * We now have a macro name, an implicit parameter count of
3146 * zero, and a string token to use as an expansion. Create
3147 * and store an SMacro.
3149 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3151 free_tlist(origline
);
3152 return DIRECTIVE_FOUND
;
3158 tline
= tline
->next
;
3160 tline
= expand_id(tline
);
3161 if (!tline
|| (tline
->type
!= TOK_ID
&&
3162 (tline
->type
!= TOK_PREPROC_ID
||
3163 tline
->text
[1] != '$'))) {
3165 "`%%strlen' expects a macro identifier as first parameter");
3166 free_tlist(origline
);
3167 return DIRECTIVE_FOUND
;
3169 ctx
= get_ctx(tline
->text
, &mname
, false);
3171 tline
= expand_smacro(tline
->next
);
3175 while (tok_type_(t
, TOK_WHITESPACE
))
3177 /* t should now point to the string */
3178 if (t
->type
!= TOK_STRING
) {
3180 "`%%strlen` requires string as second parameter");
3182 free_tlist(origline
);
3183 return DIRECTIVE_FOUND
;
3186 macro_start
= nasm_malloc(sizeof(*macro_start
));
3187 macro_start
->next
= NULL
;
3188 make_tok_num(macro_start
, nasm_unquote(t
->text
, NULL
));
3189 macro_start
->a
.mac
= NULL
;
3192 * We now have a macro name, an implicit parameter count of
3193 * zero, and a numeric token to use as an expansion. Create
3194 * and store an SMacro.
3196 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3198 free_tlist(origline
);
3199 return DIRECTIVE_FOUND
;
3204 tline
= tline
->next
;
3206 tline
= expand_id(tline
);
3207 if (!tline
|| (tline
->type
!= TOK_ID
&&
3208 (tline
->type
!= TOK_PREPROC_ID
||
3209 tline
->text
[1] != '$'))) {
3211 "`%%strcat' expects a macro identifier as first parameter");
3212 free_tlist(origline
);
3213 return DIRECTIVE_FOUND
;
3215 ctx
= get_ctx(tline
->text
, &mname
, false);
3217 tline
= expand_smacro(tline
->next
);
3221 for (t
= tline
; t
; t
= t
->next
) {
3223 case TOK_WHITESPACE
:
3226 len
+= t
->a
.len
= nasm_unquote(t
->text
, NULL
);
3229 if (!strcmp(t
->text
, ",")) /* permit comma separators */
3231 /* else fall through */
3234 "non-string passed to `%%strcat' (%d)", t
->type
);
3236 free_tlist(origline
);
3237 return DIRECTIVE_FOUND
;
3241 p
= pp
= nasm_malloc(len
);
3242 for (t
= tline
; t
; t
= t
->next
) {
3243 if (t
->type
== TOK_STRING
) {
3244 memcpy(p
, t
->text
, t
->a
.len
);
3250 * We now have a macro name, an implicit parameter count of
3251 * zero, and a numeric token to use as an expansion. Create
3252 * and store an SMacro.
3254 macro_start
= new_Token(NULL
, TOK_STRING
, NULL
, 0);
3255 macro_start
->text
= nasm_quote(pp
, len
);
3257 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3259 free_tlist(origline
);
3260 return DIRECTIVE_FOUND
;
3269 tline
= tline
->next
;
3271 tline
= expand_id(tline
);
3272 if (!tline
|| (tline
->type
!= TOK_ID
&&
3273 (tline
->type
!= TOK_PREPROC_ID
||
3274 tline
->text
[1] != '$'))) {
3276 "`%%substr' expects a macro identifier as first parameter");
3277 free_tlist(origline
);
3278 return DIRECTIVE_FOUND
;
3280 ctx
= get_ctx(tline
->text
, &mname
, false);
3282 tline
= expand_smacro(tline
->next
);
3286 while (tok_type_(t
, TOK_WHITESPACE
))
3289 /* t should now point to the string */
3290 if (t
->type
!= TOK_STRING
) {
3292 "`%%substr` requires string as second parameter");
3294 free_tlist(origline
);
3295 return DIRECTIVE_FOUND
;
3300 tokval
.t_type
= TOKEN_INVALID
;
3301 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3305 free_tlist(origline
);
3306 return DIRECTIVE_FOUND
;
3307 } else if (!is_simple(evalresult
)) {
3308 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3310 free_tlist(origline
);
3311 return DIRECTIVE_FOUND
;
3313 a1
= evalresult
->value
-1;
3315 while (tok_type_(tt
, TOK_WHITESPACE
))
3318 a2
= 1; /* Backwards compatibility: one character */
3320 tokval
.t_type
= TOKEN_INVALID
;
3321 evalresult
= evaluate(ppscan
, tptr
, &tokval
, NULL
,
3325 free_tlist(origline
);
3326 return DIRECTIVE_FOUND
;
3327 } else if (!is_simple(evalresult
)) {
3328 error(ERR_NONFATAL
, "non-constant value given to `%%substr`");
3330 free_tlist(origline
);
3331 return DIRECTIVE_FOUND
;
3333 a2
= evalresult
->value
;
3336 len
= nasm_unquote(t
->text
, NULL
);
3339 if (a1
+a2
> (int64_t)len
)
3342 macro_start
= nasm_malloc(sizeof(*macro_start
));
3343 macro_start
->next
= NULL
;
3344 macro_start
->text
= nasm_quote((a1
< 0) ? "" : t
->text
+a1
, a2
);
3345 macro_start
->type
= TOK_STRING
;
3346 macro_start
->a
.mac
= NULL
;
3349 * We now have a macro name, an implicit parameter count of
3350 * zero, and a numeric token to use as an expansion. Create
3351 * and store an SMacro.
3353 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3355 free_tlist(origline
);
3356 return DIRECTIVE_FOUND
;
3361 casesense
= (i
== PP_ASSIGN
);
3363 tline
= tline
->next
;
3365 tline
= expand_id(tline
);
3366 if (!tline
|| (tline
->type
!= TOK_ID
&&
3367 (tline
->type
!= TOK_PREPROC_ID
||
3368 tline
->text
[1] != '$'))) {
3370 "`%%%sassign' expects a macro identifier",
3371 (i
== PP_IASSIGN
? "i" : ""));
3372 free_tlist(origline
);
3373 return DIRECTIVE_FOUND
;
3375 ctx
= get_ctx(tline
->text
, &mname
, false);
3377 tline
= expand_smacro(tline
->next
);
3382 tokval
.t_type
= TOKEN_INVALID
;
3384 evaluate(ppscan
, tptr
, &tokval
, NULL
, pass
, error
, NULL
);
3387 free_tlist(origline
);
3388 return DIRECTIVE_FOUND
;
3392 error(ERR_WARNING
|ERR_PASS1
,
3393 "trailing garbage after expression ignored");
3395 if (!is_simple(evalresult
)) {
3397 "non-constant value given to `%%%sassign'",
3398 (i
== PP_IASSIGN
? "i" : ""));
3399 free_tlist(origline
);
3400 return DIRECTIVE_FOUND
;
3403 macro_start
= nasm_malloc(sizeof(*macro_start
));
3404 macro_start
->next
= NULL
;
3405 make_tok_num(macro_start
, reloc_value(evalresult
));
3406 macro_start
->a
.mac
= NULL
;
3409 * We now have a macro name, an implicit parameter count of
3410 * zero, and a numeric token to use as an expansion. Create
3411 * and store an SMacro.
3413 define_smacro(ctx
, mname
, casesense
, 0, macro_start
);
3414 free_tlist(origline
);
3415 return DIRECTIVE_FOUND
;
3419 * Syntax is `%line nnn[+mmm] [filename]'
3421 tline
= tline
->next
;
3423 if (!tok_type_(tline
, TOK_NUMBER
)) {
3424 error(ERR_NONFATAL
, "`%%line' expects line number");
3425 free_tlist(origline
);
3426 return DIRECTIVE_FOUND
;
3428 k
= readnum(tline
->text
, &err
);
3430 tline
= tline
->next
;
3431 if (tok_is_(tline
, "+")) {
3432 tline
= tline
->next
;
3433 if (!tok_type_(tline
, TOK_NUMBER
)) {
3434 error(ERR_NONFATAL
, "`%%line' expects line increment");
3435 free_tlist(origline
);
3436 return DIRECTIVE_FOUND
;
3438 m
= readnum(tline
->text
, &err
);
3439 tline
= tline
->next
;
3445 nasm_free(src_set_fname(detoken(tline
, false)));
3447 free_tlist(origline
);
3448 return DIRECTIVE_FOUND
;
3452 "preprocessor directive `%s' not yet implemented",
3454 return DIRECTIVE_FOUND
;
3459 * Ensure that a macro parameter contains a condition code and
3460 * nothing else. Return the condition code index if so, or -1
3463 static int find_cc(Token
* t
)
3469 return -1; /* Probably a %+ without a space */
3472 if (t
->type
!= TOK_ID
)
3476 if (tt
&& (tt
->type
!= TOK_OTHER
|| strcmp(tt
->text
, ",")))
3480 j
= elements(conditions
);
3483 m
= nasm_stricmp(t
->text
, conditions
[k
]);
3498 static bool paste_tokens(Token
**head
, bool handle_paste_tokens
)
3500 Token
**tail
, *t
, *tt
;
3502 bool did_paste
= false;
3505 /* Now handle token pasting... */
3508 while ((t
= *tail
) && (tt
= t
->next
)) {
3510 case TOK_WHITESPACE
:
3511 if (tt
->type
== TOK_WHITESPACE
) {
3512 /* Zap adjacent whitespace tokens */
3513 t
->next
= delete_Token(tt
);
3515 /* Do not advance paste_head here */
3520 case TOK_PREPROC_ID
:
3527 while (tt
&& (tt
->type
== TOK_ID
|| tt
->type
== TOK_PREPROC_ID
||
3528 tt
->type
== TOK_NUMBER
|| tt
->type
== TOK_FLOAT
||
3529 tt
->type
== TOK_OTHER
)) {
3530 len
+= strlen(tt
->text
);
3535 * Now tt points to the first token after
3536 * the potential paste area...
3538 if (tt
!= t
->next
) {
3539 /* We have at least two tokens... */
3540 len
+= strlen(t
->text
);
3541 p
= tmp
= nasm_malloc(len
+1);
3545 p
= strchr(p
, '\0');
3546 t
= delete_Token(t
);
3549 t
= *tail
= tokenize(tmp
);
3556 t
->next
= tt
; /* Attach the remaining token chain */
3564 case TOK_PASTE
: /* %+ */
3565 if (handle_paste_tokens
) {
3566 /* Zap %+ and whitespace tokens to the right */
3567 while (t
&& (t
->type
== TOK_WHITESPACE
||
3568 t
->type
== TOK_PASTE
))
3569 t
= *tail
= delete_Token(t
);
3570 if (!paste_head
|| !t
)
3571 break; /* Nothing to paste with */
3575 while (tok_type_(tt
, TOK_WHITESPACE
))
3576 tt
= t
->next
= delete_Token(tt
);
3579 tmp
= nasm_strcat(t
->text
, tt
->text
);
3581 tt
= delete_Token(tt
);
3582 t
= *tail
= tokenize(tmp
);
3588 t
->next
= tt
; /* Attach the remaining token chain */
3595 /* else fall through */
3597 tail
= paste_head
= &t
->next
;
3604 * Expand MMacro-local things: parameter references (%0, %n, %+n,
3605 * %-n) and MMacro-local identifiers (%%foo) as well as
3606 * macro indirection (%[...]).
3608 static Token
*expand_mmac_params(Token
* tline
)
3610 Token
*t
, *tt
, **tail
, *thead
;
3611 bool changed
= false;
3617 if (tline
->type
== TOK_PREPROC_ID
&&
3618 (((tline
->text
[1] == '+' || tline
->text
[1] == '-')
3619 && tline
->text
[2]) || tline
->text
[1] == '%'
3620 || (tline
->text
[1] >= '0' && tline
->text
[1] <= '9'))) {
3622 int type
= 0, cc
; /* type = 0 to placate optimisers */
3629 tline
= tline
->next
;
3632 while (mac
&& !mac
->name
) /* avoid mistaking %reps for macros */
3633 mac
= mac
->next_active
;
3635 error(ERR_NONFATAL
, "`%s': not in a macro call", t
->text
);
3637 switch (t
->text
[1]) {
3639 * We have to make a substitution of one of the
3640 * forms %1, %-1, %+1, %%foo, %0.
3644 snprintf(tmpbuf
, sizeof(tmpbuf
), "%d", mac
->nparam
);
3645 text
= nasm_strdup(tmpbuf
);
3649 snprintf(tmpbuf
, sizeof(tmpbuf
), "..@%"PRIu64
".",
3651 text
= nasm_strcat(tmpbuf
, t
->text
+ 2);
3654 n
= atoi(t
->text
+ 2) - 1;
3655 if (n
>= mac
->nparam
)
3658 if (mac
->nparam
> 1)
3659 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3660 tt
= mac
->params
[n
];
3665 "macro parameter %d is not a condition code",
3670 if (inverse_ccs
[cc
] == -1) {
3672 "condition code `%s' is not invertible",
3676 text
= nasm_strdup(conditions
[inverse_ccs
[cc
]]);
3680 n
= atoi(t
->text
+ 2) - 1;
3681 if (n
>= mac
->nparam
)
3684 if (mac
->nparam
> 1)
3685 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3686 tt
= mac
->params
[n
];
3691 "macro parameter %d is not a condition code",
3696 text
= nasm_strdup(conditions
[cc
]);
3700 n
= atoi(t
->text
+ 1) - 1;
3701 if (n
>= mac
->nparam
)
3704 if (mac
->nparam
> 1)
3705 n
= (n
+ mac
->rotate
) % mac
->nparam
;
3706 tt
= mac
->params
[n
];
3709 for (i
= 0; i
< mac
->paramlen
[n
]; i
++) {
3710 *tail
= new_Token(NULL
, tt
->type
, tt
->text
, 0);
3711 tail
= &(*tail
)->next
;
3715 text
= NULL
; /* we've done it here */
3730 } else if (tline
->type
== TOK_INDIRECT
) {
3732 tline
= tline
->next
;
3733 tt
= tokenize(t
->text
);
3734 tt
= expand_mmac_params(tt
);
3735 tt
= expand_smacro(tt
);
3738 tt
->a
.mac
= NULL
; /* Necessary? */
3746 tline
= tline
->next
;
3754 paste_tokens(&thead
, false);
3760 * Expand all single-line macro calls made in the given line.
3761 * Return the expanded version of the line. The original is deemed
3762 * to be destroyed in the process. (In reality we'll just move
3763 * Tokens from input to output a lot of the time, rather than
3764 * actually bothering to destroy and replicate.)
3767 static Token
*expand_smacro(Token
* tline
)
3769 Token
*t
, *tt
, *mstart
, **tail
, *thead
;
3770 SMacro
*head
= NULL
, *m
;
3773 unsigned int nparam
, sparam
;
3775 Token
*org_tline
= tline
;
3778 int deadman
= DEADMAN_LIMIT
;
3782 * Trick: we should avoid changing the start token pointer since it can
3783 * be contained in "next" field of other token. Because of this
3784 * we allocate a copy of first token and work with it; at the end of
3785 * routine we copy it back
3789 new_Token(org_tline
->next
, org_tline
->type
, org_tline
->text
,
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
,
3934 nasm_realloc(paramsize
,
3938 params
[nparam
] = tline
->next
;
3939 paramsize
[nparam
] = 0;
3941 continue; /* parameter loop */
3944 (brackets
> 0 || (brackets
== 0 &&
3945 !paramsize
[nparam
])))
3947 if (!(brackets
++)) {
3948 params
[nparam
] = tline
->next
;
3949 continue; /* parameter loop */
3952 if (ch
== '}' && brackets
> 0)
3953 if (--brackets
== 0) {
3955 continue; /* parameter loop */
3957 if (ch
== '(' && !brackets
)
3959 if (ch
== ')' && brackets
<= 0)
3965 error(ERR_NONFATAL
, "braces do not "
3966 "enclose all of macro parameter");
3968 paramsize
[nparam
] += white
+ 1;
3970 } /* parameter loop */
3972 while (m
&& (m
->nparam
!= nparam
||
3973 mstrcmp(m
->name
, mname
,
3977 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
3978 "macro `%s' exists, "
3979 "but not taking %d parameters",
3980 mstart
->text
, nparam
);
3983 if (m
&& m
->in_progress
)
3985 if (!m
) { /* in progess or didn't find '(' or wrong nparam */
3987 * Design question: should we handle !tline, which
3988 * indicates missing ')' here, or expand those
3989 * macros anyway, which requires the (t) test a few
3993 nasm_free(paramsize
);
3997 * Expand the macro: we are placed on the last token of the
3998 * call, so that we can easily split the call from the
3999 * following tokens. We also start by pushing an SMAC_END
4000 * token for the cycle removal.
4007 tt
= new_Token(tline
, TOK_SMAC_END
, NULL
, 0);
4009 m
->in_progress
= true;
4011 for (t
= m
->expansion
; t
; t
= t
->next
) {
4012 if (t
->type
>= TOK_SMAC_PARAM
) {
4013 Token
*pcopy
= tline
, **ptail
= &pcopy
;
4017 ttt
= params
[t
->type
- TOK_SMAC_PARAM
];
4018 for (i
= paramsize
[t
->type
- TOK_SMAC_PARAM
];
4021 new_Token(tline
, ttt
->type
, ttt
->text
,
4027 } else if (t
->type
== TOK_PREPROC_Q
) {
4028 tt
= new_Token(tline
, TOK_ID
, mname
, 0);
4030 } else if (t
->type
== TOK_PREPROC_QQ
) {
4031 tt
= new_Token(tline
, TOK_ID
, m
->name
, 0);
4034 tt
= new_Token(tline
, t
->type
, t
->text
, 0);
4040 * Having done that, get rid of the macro call, and clean
4041 * up the parameters.
4044 nasm_free(paramsize
);
4047 continue; /* main token loop */
4052 if (tline
->type
== TOK_SMAC_END
) {
4053 tline
->a
.mac
->in_progress
= false;
4054 tline
= delete_Token(tline
);
4057 tline
= tline
->next
;
4065 * Now scan the entire line and look for successive TOK_IDs that resulted
4066 * after expansion (they can't be produced by tokenize()). The successive
4067 * TOK_IDs should be concatenated.
4068 * Also we look for %+ tokens and concatenate the tokens before and after
4069 * them (without white spaces in between).
4071 if (expanded
&& paste_tokens(&thead
, true)) {
4073 * If we concatenated something, *and* we had previously expanded
4074 * an actual macro, scan the lines again for macros...
4084 *org_tline
= *thead
;
4085 /* since we just gave text to org_line, don't free it */
4087 delete_Token(thead
);
4089 /* the expression expanded to empty line;
4090 we can't return NULL for some reasons
4091 we just set the line to a single WHITESPACE token. */
4092 memset(org_tline
, 0, sizeof(*org_tline
));
4093 org_tline
->text
= NULL
;
4094 org_tline
->type
= TOK_WHITESPACE
;
4103 * Similar to expand_smacro but used exclusively with macro identifiers
4104 * right before they are fetched in. The reason is that there can be
4105 * identifiers consisting of several subparts. We consider that if there
4106 * are more than one element forming the name, user wants a expansion,
4107 * otherwise it will be left as-is. Example:
4111 * the identifier %$abc will be left as-is so that the handler for %define
4112 * will suck it and define the corresponding value. Other case:
4114 * %define _%$abc cde
4116 * In this case user wants name to be expanded *before* %define starts
4117 * working, so we'll expand %$abc into something (if it has a value;
4118 * otherwise it will be left as-is) then concatenate all successive
4121 static Token
*expand_id(Token
* tline
)
4123 Token
*cur
, *oldnext
= NULL
;
4125 if (!tline
|| !tline
->next
)
4130 (cur
->next
->type
== TOK_ID
||
4131 cur
->next
->type
== TOK_PREPROC_ID
4132 || cur
->next
->type
== TOK_NUMBER
))
4135 /* If identifier consists of just one token, don't expand */
4140 oldnext
= cur
->next
; /* Detach the tail past identifier */
4141 cur
->next
= NULL
; /* so that expand_smacro stops here */
4144 tline
= expand_smacro(tline
);
4147 /* expand_smacro possibly changhed tline; re-scan for EOL */
4149 while (cur
&& cur
->next
)
4152 cur
->next
= oldnext
;
4159 * Determine whether the given line constitutes a multi-line macro
4160 * call, and return the MMacro structure called if so. Doesn't have
4161 * to check for an initial label - that's taken care of in
4162 * expand_mmacro - but must check numbers of parameters. Guaranteed
4163 * to be called with tline->type == TOK_ID, so the putative macro
4164 * name is easy to find.
4166 static MMacro
*is_mmacro(Token
* tline
, Token
*** params_array
)
4172 head
= (MMacro
*) hash_findix(&mmacros
, tline
->text
);
4175 * Efficiency: first we see if any macro exists with the given
4176 * name. If not, we can return NULL immediately. _Then_ we
4177 * count the parameters, and then we look further along the
4178 * list if necessary to find the proper MMacro.
4180 for (m
= head
; m
; m
= m
->next
)
4181 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4187 * OK, we have a potential macro. Count and demarcate the
4190 count_mmac_params(tline
->next
, &nparam
, ¶ms
);
4193 * So we know how many parameters we've got. Find the MMacro
4194 * structure that handles this number.
4197 if (m
->nparam_min
<= nparam
4198 && (m
->plus
|| nparam
<= m
->nparam_max
)) {
4200 * This one is right. Just check if cycle removal
4201 * prohibits us using it before we actually celebrate...
4203 if (m
->in_progress
> m
->max_depth
) {
4204 if (m
->max_depth
> 0) {
4206 "reached maximum recursion depth of %i",
4213 * It's right, and we can use it. Add its default
4214 * parameters to the end of our list if necessary.
4216 if (m
->defaults
&& nparam
< m
->nparam_min
+ m
->ndefs
) {
4218 nasm_realloc(params
,
4219 ((m
->nparam_min
+ m
->ndefs
+
4220 1) * sizeof(*params
)));
4221 while (nparam
< m
->nparam_min
+ m
->ndefs
) {
4222 params
[nparam
] = m
->defaults
[nparam
- m
->nparam_min
];
4227 * If we've gone over the maximum parameter count (and
4228 * we're in Plus mode), ignore parameters beyond
4231 if (m
->plus
&& nparam
> m
->nparam_max
)
4232 nparam
= m
->nparam_max
;
4234 * Then terminate the parameter list, and leave.
4236 if (!params
) { /* need this special case */
4237 params
= nasm_malloc(sizeof(*params
));
4240 params
[nparam
] = NULL
;
4241 *params_array
= params
;
4245 * This one wasn't right: look for the next one with the
4248 for (m
= m
->next
; m
; m
= m
->next
)
4249 if (!mstrcmp(m
->name
, tline
->text
, m
->casesense
))
4254 * After all that, we didn't find one with the right number of
4255 * parameters. Issue a warning, and fail to expand the macro.
4257 error(ERR_WARNING
|ERR_PASS1
|ERR_WARN_MNP
,
4258 "macro `%s' exists, but not taking %d parameters",
4259 tline
->text
, nparam
);
4266 * Save MMacro invocation specific fields in
4267 * preparation for a recursive macro expansion
4269 static void push_mmacro(MMacro
*m
)
4271 MMacroInvocation
*i
;
4273 i
= nasm_malloc(sizeof(MMacroInvocation
));
4275 i
->params
= m
->params
;
4276 i
->iline
= m
->iline
;
4277 i
->nparam
= m
->nparam
;
4278 i
->rotate
= m
->rotate
;
4279 i
->paramlen
= m
->paramlen
;
4280 i
->unique
= m
->unique
;
4281 i
->condcnt
= m
->condcnt
;
4287 * Restore MMacro invocation specific fields that were
4288 * saved during a previous recursive macro expansion
4290 static void pop_mmacro(MMacro
*m
)
4292 MMacroInvocation
*i
;
4297 m
->params
= i
->params
;
4298 m
->iline
= i
->iline
;
4299 m
->nparam
= i
->nparam
;
4300 m
->rotate
= i
->rotate
;
4301 m
->paramlen
= i
->paramlen
;
4302 m
->unique
= i
->unique
;
4303 m
->condcnt
= i
->condcnt
;
4310 * Expand the multi-line macro call made by the given line, if
4311 * there is one to be expanded. If there is, push the expansion on
4312 * istk->expansion and return 1. Otherwise return 0.
4314 static int expand_mmacro(Token
* tline
)
4316 Token
*startline
= tline
;
4317 Token
*label
= NULL
;
4318 int dont_prepend
= 0;
4319 Token
**params
, *t
, *mtok
, *tt
;
4322 int i
, nparam
, *paramlen
;
4327 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
4328 if (!tok_type_(t
, TOK_ID
) && !tok_type_(t
, TOK_PREPROC_ID
))
4331 m
= is_mmacro(t
, ¶ms
);
4337 * We have an id which isn't a macro call. We'll assume
4338 * it might be a label; we'll also check to see if a
4339 * colon follows it. Then, if there's another id after
4340 * that lot, we'll check it again for macro-hood.
4344 if (tok_type_(t
, TOK_WHITESPACE
))
4345 last
= t
, t
= t
->next
;
4346 if (tok_is_(t
, ":")) {
4348 last
= t
, t
= t
->next
;
4349 if (tok_type_(t
, TOK_WHITESPACE
))
4350 last
= t
, t
= t
->next
;
4352 if (!tok_type_(t
, TOK_ID
) || !(m
= is_mmacro(t
, ¶ms
)))
4360 * Fix up the parameters: this involves stripping leading and
4361 * trailing whitespace, then stripping braces if they are
4364 for (nparam
= 0; params
[nparam
]; nparam
++) ;
4365 paramlen
= nparam
? nasm_malloc(nparam
* sizeof(*paramlen
)) : NULL
;
4367 for (i
= 0; params
[i
]; i
++) {
4369 int comma
= (!m
->plus
|| i
< nparam
- 1);
4373 if (tok_is_(t
, "{"))
4374 t
= t
->next
, brace
= true, comma
= false;
4378 if (comma
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, ","))
4379 break; /* ... because we have hit a comma */
4380 if (comma
&& t
->type
== TOK_WHITESPACE
4381 && tok_is_(t
->next
, ","))
4382 break; /* ... or a space then a comma */
4383 if (brace
&& t
->type
== TOK_OTHER
&& !strcmp(t
->text
, "}"))
4384 break; /* ... or a brace */
4391 * OK, we have a MMacro structure together with a set of
4392 * parameters. We must now go through the expansion and push
4393 * copies of each Line on to istk->expansion. Substitution of
4394 * parameter tokens and macro-local tokens doesn't get done
4395 * until the single-line macro substitution process; this is
4396 * because delaying them allows us to change the semantics
4397 * later through %rotate.
4399 * First, push an end marker on to istk->expansion, mark this
4400 * macro as in progress, and set up its invocation-specific
4403 ll
= nasm_malloc(sizeof(Line
));
4404 ll
->next
= istk
->expansion
;
4407 istk
->expansion
= ll
;
4410 * Save the previous MMacro expansion in the case of
4413 if (m
->max_depth
&& m
->in_progress
)
4421 m
->paramlen
= paramlen
;
4422 m
->unique
= unique
++;
4426 m
->next_active
= istk
->mstk
;
4429 for (l
= m
->expansion
; l
; l
= l
->next
) {
4432 ll
= nasm_malloc(sizeof(Line
));
4433 ll
->finishes
= NULL
;
4434 ll
->next
= istk
->expansion
;
4435 istk
->expansion
= ll
;
4438 for (t
= l
->first
; t
; t
= t
->next
) {
4442 tt
= *tail
= new_Token(NULL
, TOK_ID
, mname
, 0);
4444 case TOK_PREPROC_QQ
:
4445 tt
= *tail
= new_Token(NULL
, TOK_ID
, m
->name
, 0);
4447 case TOK_PREPROC_ID
:
4448 if (t
->text
[1] == '0' && t
->text
[2] == '0') {
4456 tt
= *tail
= new_Token(NULL
, x
->type
, x
->text
, 0);
4465 * If we had a label, push it on as the first line of
4466 * the macro expansion.
4469 if (dont_prepend
< 0)
4470 free_tlist(startline
);
4472 ll
= nasm_malloc(sizeof(Line
));
4473 ll
->finishes
= NULL
;
4474 ll
->next
= istk
->expansion
;
4475 istk
->expansion
= ll
;
4476 ll
->first
= startline
;
4477 if (!dont_prepend
) {
4479 label
= label
->next
;
4480 label
->next
= tt
= new_Token(NULL
, TOK_OTHER
, ":", 0);
4485 list
->uplevel(m
->nolist
? LIST_MACRO_NOLIST
: LIST_MACRO
);
4490 /* The function that actually does the error reporting */
4491 static void verror(int severity
, const char *fmt
, va_list arg
)
4495 vsnprintf(buff
, sizeof(buff
), fmt
, arg
);
4497 if (istk
&& istk
->mstk
&& istk
->mstk
->name
)
4498 nasm_error(severity
, "(%s:%d) %s", istk
->mstk
->name
,
4499 istk
->mstk
->lineno
, buff
);
4501 nasm_error(severity
, "%s", buff
);
4505 * Since preprocessor always operate only on the line that didn't
4506 * arrived yet, we should always use ERR_OFFBY1.
4508 static void error(int severity
, const char *fmt
, ...)
4512 /* If we're in a dead branch of IF or something like it, ignore the error */
4513 if (istk
&& istk
->conds
&& !emitting(istk
->conds
->state
))
4517 verror(severity
, fmt
, arg
);
4522 * Because %else etc are evaluated in the state context
4523 * of the previous branch, errors might get lost with error():
4524 * %if 0 ... %else trailing garbage ... %endif
4525 * So %else etc should report errors with this function.
4527 static void error_precond(int severity
, const char *fmt
, ...)
4531 /* Only ignore the error if it's really in a dead branch */
4532 if (istk
&& istk
->conds
&& istk
->conds
->state
== COND_NEVER
)
4536 verror(severity
, fmt
, arg
);
4541 pp_reset(char *file
, int apass
, ListGen
* listgen
, StrList
**deplist
)
4546 istk
= nasm_malloc(sizeof(Include
));
4549 istk
->expansion
= NULL
;
4551 istk
->fp
= fopen(file
, "r");
4553 src_set_fname(nasm_strdup(file
));
4557 error(ERR_FATAL
|ERR_NOFILE
, "unable to open input file `%s'",
4560 nested_mac_count
= 0;
4561 nested_rep_count
= 0;
4564 if (tasm_compatible_mode
) {
4565 stdmacpos
= nasm_stdmac
;
4567 stdmacpos
= nasm_stdmac_after_tasm
;
4569 any_extrastdmac
= extrastdmac
&& *extrastdmac
;
4574 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4575 * The caller, however, will also pass in 3 for preprocess-only so
4576 * we can set __PASS__ accordingly.
4578 pass
= apass
> 2 ? 2 : apass
;
4580 dephead
= deptail
= deplist
;
4582 StrList
*sl
= nasm_malloc(strlen(file
)+1+sizeof sl
->next
);
4584 strcpy(sl
->str
, file
);
4586 deptail
= &sl
->next
;
4590 * Define the __PASS__ macro. This is defined here unlike
4591 * all the other builtins, because it is special -- it varies between
4594 t
= nasm_malloc(sizeof(*t
));
4596 make_tok_num(t
, apass
);
4598 define_smacro(NULL
, "__PASS__", true, 0, t
);
4601 static char *pp_getline(void)
4608 * Fetch a tokenized line, either from the macro-expansion
4609 * buffer or from the input file.
4612 while (istk
->expansion
&& istk
->expansion
->finishes
) {
4613 Line
*l
= istk
->expansion
;
4614 if (!l
->finishes
->name
&& l
->finishes
->in_progress
> 1) {
4618 * This is a macro-end marker for a macro with no
4619 * name, which means it's not really a macro at all
4620 * but a %rep block, and the `in_progress' field is
4621 * more than 1, meaning that we still need to
4622 * repeat. (1 means the natural last repetition; 0
4623 * means termination by %exitrep.) We have
4624 * therefore expanded up to the %endrep, and must
4625 * push the whole block on to the expansion buffer
4626 * again. We don't bother to remove the macro-end
4627 * marker: we'd only have to generate another one
4630 l
->finishes
->in_progress
--;
4631 for (l
= l
->finishes
->expansion
; l
; l
= l
->next
) {
4632 Token
*t
, *tt
, **tail
;
4634 ll
= nasm_malloc(sizeof(Line
));
4635 ll
->next
= istk
->expansion
;
4636 ll
->finishes
= NULL
;
4640 for (t
= l
->first
; t
; t
= t
->next
) {
4641 if (t
->text
|| t
->type
== TOK_WHITESPACE
) {
4643 new_Token(NULL
, t
->type
, t
->text
, 0);
4648 istk
->expansion
= ll
;
4652 * Check whether a `%rep' was started and not ended
4653 * within this macro expansion. This can happen and
4654 * should be detected. It's a fatal error because
4655 * I'm too confused to work out how to recover
4661 "defining with name in expansion");
4662 else if (istk
->mstk
->name
)
4664 "`%%rep' without `%%endrep' within"
4665 " expansion of macro `%s'",
4670 * FIXME: investigate the relationship at this point between
4671 * istk->mstk and l->finishes
4674 MMacro
*m
= istk
->mstk
;
4675 istk
->mstk
= m
->next_active
;
4678 * This was a real macro call, not a %rep, and
4679 * therefore the parameter information needs to
4684 l
->finishes
->in_progress
--;
4686 nasm_free(m
->params
);
4687 free_tlist(m
->iline
);
4688 nasm_free(m
->paramlen
);
4689 l
->finishes
->in_progress
= 0;
4694 istk
->expansion
= l
->next
;
4696 list
->downlevel(LIST_MACRO
);
4699 while (1) { /* until we get a line we can use */
4701 if (istk
->expansion
) { /* from a macro expansion */
4703 Line
*l
= istk
->expansion
;
4705 istk
->mstk
->lineno
++;
4707 istk
->expansion
= l
->next
;
4709 p
= detoken(tline
, false);
4710 list
->line(LIST_MACRO
, p
);
4715 if (line
) { /* from the current input file */
4716 line
= prepreproc(line
);
4717 tline
= tokenize(line
);
4722 * The current file has ended; work down the istk
4729 "expected `%%endif' before end of file");
4730 /* only set line and file name if there's a next node */
4732 src_set_linnum(i
->lineno
);
4733 nasm_free(src_set_fname(i
->fname
));
4736 list
->downlevel(LIST_INCLUDE
);
4740 if (istk
->expansion
&& istk
->expansion
->finishes
)
4746 * We must expand MMacro parameters and MMacro-local labels
4747 * _before_ we plunge into directive processing, to cope
4748 * with things like `%define something %1' such as STRUC
4749 * uses. Unless we're _defining_ a MMacro, in which case
4750 * those tokens should be left alone to go into the
4751 * definition; and unless we're in a non-emitting
4752 * condition, in which case we don't want to meddle with
4755 if (!defining
&& !(istk
->conds
&& !emitting(istk
->conds
->state
))
4756 && !(istk
->mstk
&& !istk
->mstk
->in_progress
)) {
4757 tline
= expand_mmac_params(tline
);
4761 * Check the line to see if it's a preprocessor directive.
4763 if (do_directive(tline
) == DIRECTIVE_FOUND
) {
4765 } else if (defining
) {
4767 * We're defining a multi-line macro. We emit nothing
4769 * shove the tokenized line on to the macro definition.
4771 Line
*l
= nasm_malloc(sizeof(Line
));
4772 l
->next
= defining
->expansion
;
4775 defining
->expansion
= l
;
4777 } else if (istk
->conds
&& !emitting(istk
->conds
->state
)) {
4779 * We're in a non-emitting branch of a condition block.
4780 * Emit nothing at all, not even a blank line: when we
4781 * emerge from the condition we'll give a line-number
4782 * directive so we keep our place correctly.
4786 } else if (istk
->mstk
&& !istk
->mstk
->in_progress
) {
4788 * We're in a %rep block which has been terminated, so
4789 * we're walking through to the %endrep without
4790 * emitting anything. Emit nothing at all, not even a
4791 * blank line: when we emerge from the %rep block we'll
4792 * give a line-number directive so we keep our place
4798 tline
= expand_smacro(tline
);
4799 if (!expand_mmacro(tline
)) {
4801 * De-tokenize the line again, and emit it.
4803 line
= detoken(tline
, true);
4807 continue; /* expand_mmacro calls free_tlist */
4815 static void pp_cleanup(int pass
)
4818 if (defining
->name
) {
4820 "end of file while still defining macro `%s'",
4823 error(ERR_NONFATAL
, "end of file while still in %%rep");
4826 free_mmacro(defining
);
4836 nasm_free(i
->fname
);
4841 nasm_free(src_set_fname(NULL
));
4846 while ((i
= ipath
)) {
4855 void pp_include_path(char *path
)
4859 i
= nasm_malloc(sizeof(IncPath
));
4860 i
->path
= path
? nasm_strdup(path
) : NULL
;
4873 void pp_pre_include(char *fname
)
4875 Token
*inc
, *space
, *name
;
4878 name
= new_Token(NULL
, TOK_INTERNAL_STRING
, fname
, 0);
4879 space
= new_Token(name
, TOK_WHITESPACE
, NULL
, 0);
4880 inc
= new_Token(space
, TOK_PREPROC_ID
, "%include", 0);
4882 l
= nasm_malloc(sizeof(Line
));
4889 void pp_pre_define(char *definition
)
4895 equals
= strchr(definition
, '=');
4896 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
4897 def
= new_Token(space
, TOK_PREPROC_ID
, "%define", 0);
4900 space
->next
= tokenize(definition
);
4904 l
= nasm_malloc(sizeof(Line
));
4911 void pp_pre_undefine(char *definition
)
4916 space
= new_Token(NULL
, TOK_WHITESPACE
, NULL
, 0);
4917 def
= new_Token(space
, TOK_PREPROC_ID
, "%undef", 0);
4918 space
->next
= tokenize(definition
);
4920 l
= nasm_malloc(sizeof(Line
));
4928 * Added by Keith Kanios:
4930 * This function is used to assist with "runtime" preprocessor
4931 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
4933 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
4934 * PASS A VALID STRING TO THIS FUNCTION!!!!!
4937 void pp_runtime(char *definition
)
4941 def
= tokenize(definition
);
4942 if (do_directive(def
) == NO_DIRECTIVE_FOUND
)
4947 void pp_extra_stdmac(macros_t
*macros
)
4949 extrastdmac
= macros
;
4952 static void make_tok_num(Token
* tok
, int64_t val
)
4955 snprintf(numbuf
, sizeof(numbuf
), "%"PRId64
"", val
);
4956 tok
->text
= nasm_strdup(numbuf
);
4957 tok
->type
= TOK_NUMBER
;