blob: cd4a94949b189fff2934d725b6e5f70b52169c3c [file] [log] [blame]
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07001/* ----------------------------------------------------------------------- *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002 *
H. Peter Anvina6e26d92017-03-07 21:32:37 -08003 * Copyright 1996-2017 The NASM Authors - All Rights Reserved
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07004 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00006 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07007 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000010 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070011 * * 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.
Cyrill Gorcunovaccda192010-02-16 10:27:56 +030017 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070018 * 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.
31 *
32 * ----------------------------------------------------------------------- */
33
34/*
35 * preproc.c macro preprocessor for the Netwide Assembler
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000036 */
37
H. Peter Anvin4836e332002-04-30 20:56:43 +000038/* Typical flow of text through preproc
39 *
Keith Kaniosb7a89542007-04-12 02:40:54 +000040 * pp_getline gets tokenized lines, either
H. Peter Anvin4836e332002-04-30 20:56:43 +000041 *
42 * from a macro expansion
43 *
44 * or
45 * {
46 * read_line gets raw text from stdmacpos, or predef, or current input file
Keith Kaniosb7a89542007-04-12 02:40:54 +000047 * tokenize converts to tokens
H. Peter Anvin4836e332002-04-30 20:56:43 +000048 * }
49 *
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
53 *
54 * do_directive checks for directives
55 *
56 * expand_smacro is used to expand single line macros
57 *
58 * expand_mmacro is used to expand multi-line macros
59 *
60 * detoken is used to convert the line back to text
61 */
H. Peter Anvineba20a72002-04-30 20:53:55 +000062
H. Peter Anvinfe501952007-10-02 21:53:51 -070063#include "compiler.h"
64
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000065#include <stdio.h>
H. Peter Anvinaf535c12002-04-30 20:59:21 +000066#include <stdarg.h>
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000067#include <stdlib.h>
68#include <stddef.h>
69#include <string.h>
70#include <ctype.h>
H. Peter Anvin76690a12002-04-30 20:52:49 +000071#include <limits.h>
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000072
73#include "nasm.h"
74#include "nasmlib.h"
H. Peter Anvinb20bc732017-03-07 19:23:03 -080075#include "error.h"
H. Peter Anvin4169a472007-09-12 01:29:43 +000076#include "preproc.h"
H. Peter Anvin97a23472007-09-16 17:57:25 -070077#include "hashtbl.h"
H. Peter Anvin8cad14b2008-06-01 17:23:51 -070078#include "quote.h"
H. Peter Anvinc2df2822007-10-24 15:29:28 -070079#include "stdscan.h"
H. Peter Anvindbb640b2009-07-18 18:57:16 -070080#include "eval.h"
H. Peter Anvinc2df2822007-10-24 15:29:28 -070081#include "tokens.h"
H. Peter Anvina4835d42008-05-20 14:21:29 -070082#include "tables.h"
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -080083#include "listing.h"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000084
85typedef struct SMacro SMacro;
H. Peter Anvin36206cd2012-03-03 16:14:51 -080086typedef struct MMacro MMacro;
87typedef struct MMacroInvocation MMacroInvocation;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000088typedef struct Context Context;
89typedef struct Token Token;
H. Peter Anvince616072002-04-30 21:02:23 +000090typedef struct Blocks Blocks;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000091typedef struct Line Line;
92typedef struct Include Include;
H. Peter Anvin36206cd2012-03-03 16:14:51 -080093typedef struct Cond Cond;
H. Peter Anvin6768eb72002-04-30 20:52:26 +000094typedef struct IncPath IncPath;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000095
96/*
H. Peter Anvin97a23472007-09-16 17:57:25 -070097 * Note on the storage of both SMacro and MMacros: the hash table
98 * indexes them case-insensitively, and we then have to go through a
99 * linked list of potential case aliases (and, for MMacros, parameter
100 * ranges); this is to preserve the matching semantics of the earlier
101 * code. If the number of case aliases for a specific macro is a
102 * performance issue, you may want to reconsider your coding style.
103 */
104
105/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000106 * Store the definition of a single-line macro.
107 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000108struct SMacro {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800109 SMacro *next;
110 char *name;
111 bool casesense;
112 bool in_progress;
113 unsigned int nparam;
114 Token *expansion;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000115};
116
117/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800118 * Store the definition of a multi-line macro. This is also used to
119 * store the interiors of `%rep...%endrep' blocks, which are
120 * effectively self-re-invoking multi-line macros which simply
121 * don't have a name or bother to appear in the hash tables. %rep
122 * blocks are signified by having a NULL `name' field.
123 *
124 * In a MMacro describing a `%rep' block, the `in_progress' field
125 * isn't merely boolean, but gives the number of repeats left to
126 * run.
127 *
128 * The `next' field is used for storing MMacros in hash tables; the
129 * `next_active' field is for stacking them on istk entries.
130 *
131 * When a MMacro is being expanded, `params', `iline', `nparam',
132 * `paramlen', `rotate' and `unique' are local to the invocation.
133 */
134struct MMacro {
135 MMacro *next;
136 MMacroInvocation *prev; /* previous invocation */
137 char *name;
138 int nparam_min, nparam_max;
139 bool casesense;
140 bool plus; /* is the last parameter greedy? */
141 bool nolist; /* is this macro listing-inhibited? */
142 int64_t in_progress; /* is this macro currently being expanded? */
143 int32_t max_depth; /* maximum number of recursive expansions allowed */
144 Token *dlist; /* All defaults as one list */
145 Token **defaults; /* Parameter default pointers */
146 int ndefs; /* number of default parameters */
147 Line *expansion;
148
149 MMacro *next_active;
150 MMacro *rep_nest; /* used for nesting %rep */
151 Token **params; /* actual parameters */
152 Token *iline; /* invocation line */
153 unsigned int nparam, rotate;
154 int *paramlen;
155 uint64_t unique;
156 int lineno; /* Current line number on expansion */
157 uint64_t condcnt; /* number of if blocks... */
H. Peter Anvin4def1a82016-05-09 13:59:44 -0700158
H. Peter Anvin274cda82016-05-10 02:56:29 -0700159 const char *fname; /* File where defined */
H. Peter Anvin4def1a82016-05-09 13:59:44 -0700160 int32_t xline; /* First line in macro */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800161};
162
163
164/* Store the definition of a multi-line macro, as defined in a
165 * previous recursive macro expansion.
166 */
167struct MMacroInvocation {
168 MMacroInvocation *prev; /* previous invocation */
169 Token **params; /* actual parameters */
170 Token *iline; /* invocation line */
171 unsigned int nparam, rotate;
172 int *paramlen;
173 uint64_t unique;
174 uint64_t condcnt;
175};
176
177
178/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000179 * The context stack is composed of a linked list of these.
180 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000181struct Context {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800182 Context *next;
183 char *name;
184 struct hash_table localmac;
185 uint32_t number;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000186};
187
188/*
189 * This is the internal form which we break input lines up into.
190 * Typically stored in linked lists.
191 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000192 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
193 * necessarily used as-is, but is intended to denote the number of
194 * the substituted parameter. So in the definition
195 *
196 * %define a(x,y) ( (x) & ~(y) )
H. Peter Anvin70653092007-10-19 14:42:29 -0700197 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000198 * the token representing `x' will have its type changed to
199 * TOK_SMAC_PARAM, but the one representing `y' will be
200 * TOK_SMAC_PARAM+1.
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000201 *
202 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
203 * which doesn't need quotes around it. Used in the pre-include
204 * mechanism as an alternative to trying to find a sensible type of
205 * quote to use on the filename we were passed.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000206 */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000207enum pp_token_type {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800208 TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID,
209 TOK_PREPROC_ID, TOK_STRING,
210 TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER,
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700211 TOK_INTERNAL_STRING,
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800212 TOK_PREPROC_Q, TOK_PREPROC_QQ,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300213 TOK_PASTE, /* %+ */
214 TOK_INDIRECT, /* %[...] */
215 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
216 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000217};
218
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +0400219#define PP_CONCAT_MASK(x) (1 << (x))
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +0400220#define PP_CONCAT_MATCH(t, mask) (PP_CONCAT_MASK((t)->type) & mask)
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +0400221
Cyrill Gorcunov575d4282010-10-06 00:25:55 +0400222struct tokseq_match {
223 int mask_head;
224 int mask_tail;
225};
226
H. Peter Anvine2c80182005-01-15 22:15:51 +0000227struct Token {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800228 Token *next;
229 char *text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -0700230 union {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800231 SMacro *mac; /* associated macro for TOK_SMAC_END */
232 size_t len; /* scratch length field */
233 } a; /* Auxiliary data */
234 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000235};
236
237/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800238 * Multi-line macro definitions are stored as a linked list of
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000239 * these, which is essentially a container to allow several linked
240 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700241 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000242 * Note that in this module, linked lists are treated as stacks
243 * wherever possible. For this reason, Lines are _pushed_ on to the
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800244 * `expansion' field in MMacro structures, so that the linked list,
245 * if walked, would give the macro lines in reverse order; this
246 * means that we can walk the list when expanding a macro, and thus
247 * push the lines on to the `expansion' field in _istk_ in reverse
248 * order (so that when popped back off they are in the right
249 * order). It may seem cockeyed, and it relies on my design having
250 * an even number of steps in, but it works...
251 *
252 * Some of these structures, rather than being actual lines, are
253 * markers delimiting the end of the expansion of a given macro.
254 * This is for use in the cycle-tracking and %rep-handling code.
255 * Such structures have `finishes' non-NULL, and `first' NULL. All
256 * others have `finishes' NULL, but `first' may still be NULL if
257 * the line is blank.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000258 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000259struct Line {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800260 Line *next;
261 MMacro *finishes;
262 Token *first;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500263};
264
265/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000266 * To handle an arbitrary level of file inclusion, we maintain a
267 * stack (ie linked list) of these things.
268 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000269struct Include {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800270 Include *next;
271 FILE *fp;
272 Cond *conds;
273 Line *expansion;
H. Peter Anvin274cda82016-05-10 02:56:29 -0700274 const char *fname;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800275 int lineno, lineinc;
276 MMacro *mstk; /* stack of active macros/reps */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000277};
278
279/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000280 * Include search path. This is simply a list of strings which get
281 * prepended, in turn, to the name of an include file, in an
282 * attempt to find the file if it's not in the current directory.
283 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000284struct IncPath {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800285 IncPath *next;
286 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000287};
288
289/*
H. Peter Anvin169ac7c2016-09-25 17:08:05 -0700290 * File real name hash, so we don't have to re-search the include
291 * path for every pass (and potentially more than that if a file
292 * is used more than once.)
293 */
294struct hash_table FileHash;
295
296/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000297 * Conditional assembly: we maintain a separate stack of these for
298 * each level of file inclusion. (The only reason we keep the
299 * stacks separate is to ensure that a stray `%endif' in a file
300 * included from within the true branch of a `%if' won't terminate
301 * it and cause confusion: instead, rightly, it'll cause an error.)
302 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800303struct Cond {
304 Cond *next;
305 int state;
306};
H. Peter Anvine2c80182005-01-15 22:15:51 +0000307enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000308 /*
309 * These states are for use just after %if or %elif: IF_TRUE
310 * means the condition has evaluated to truth so we are
311 * currently emitting, whereas IF_FALSE means we are not
312 * currently emitting but will start doing so if a %else comes
313 * up. In these states, all directives are admissible: %elif,
314 * %else and %endif. (And of course %if.)
315 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800316 COND_IF_TRUE, COND_IF_FALSE,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000317 /*
318 * These states come up after a %else: ELSE_TRUE means we're
319 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
320 * any %elif or %else will cause an error.
321 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800322 COND_ELSE_TRUE, COND_ELSE_FALSE,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000323 /*
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200324 * These states mean that we're not emitting now, and also that
325 * nothing until %endif will be emitted at all. COND_DONE is
326 * used when we've had our moment of emission
327 * and have now started seeing %elifs. COND_NEVER is used when
328 * the condition construct in question is contained within a
329 * non-emitting branch of a larger condition construct,
330 * or if there is an error.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000331 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800332 COND_DONE, COND_NEVER
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000333};
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800334#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000335
H. Peter Anvin70653092007-10-19 14:42:29 -0700336/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000337 * These defines are used as the possible return values for do_directive
338 */
339#define NO_DIRECTIVE_FOUND 0
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300340#define DIRECTIVE_FOUND 1
Ed Beroset3ab3f412002-06-11 03:31:49 +0000341
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000342/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800343 * This define sets the upper limit for smacro and recursive mmacro
344 * expansions
Keith Kanios852f1ee2009-07-12 00:19:55 -0500345 */
346#define DEADMAN_LIMIT (1 << 20)
347
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +0400348/* max reps */
349#define REP_LIMIT ((INT64_C(1) << 62))
350
Keith Kanios852f1ee2009-07-12 00:19:55 -0500351/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000352 * Condition codes. Note that we use c_ prefix not C_ because C_ is
353 * used in nasm.h for the "real" condition codes. At _this_ level,
354 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
355 * ones, so we need a different enum...
356 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700357static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000358 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
359 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000360 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000361};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700362enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000363 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
364 c_NA, c_NAE, c_NB, c_NBE, c_NC, c_NE, c_NG, c_NGE, c_NL, c_NLE, c_NO,
H. Peter Anvin476d2862007-10-02 22:04:15 -0700365 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
366 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000367};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700368static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000369 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
370 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,
H. Peter Anvince9be342007-09-12 00:22:29 +0000371 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000372};
373
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800374/*
375 * Directive names.
376 */
377/* If this is a an IF, ELIF, ELSE or ENDIF keyword */
378static int is_condition(enum preproc_token arg)
379{
380 return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF);
381}
382
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000383/* For TASM compatibility we need to be able to recognise TASM compatible
384 * conditional compilation directives. Using the NASM pre-processor does
385 * not work, so we look for them specifically from the following list and
386 * then jam in the equivalent NASM directive into the input stream.
387 */
388
H. Peter Anvine2c80182005-01-15 22:15:51 +0000389enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000390 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
391 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
392};
393
H. Peter Anvin476d2862007-10-02 22:04:15 -0700394static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000395 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
396 "ifndef", "include", "local"
397};
398
399static int StackSize = 4;
H. Peter Anvin6c8b2be2016-05-24 23:46:50 -0700400static const char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000401static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800402static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000403
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000404static Context *cstk;
405static Include *istk;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800406static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000407
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300408static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvin9924d1e2016-10-04 00:59:39 -0700409static StrList **dephead;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000410
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300411static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000412
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800413static Line *predef = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700414static bool do_predef;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000415
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000416/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800417 * The current set of multi-line macros we have defined.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000418 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800419static struct hash_table mmacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000420
421/*
422 * The current set of single-line macros we have defined.
423 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700424static struct hash_table smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000425
426/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800427 * The multi-line macro we are currently defining, or the %rep
428 * block we are currently reading, if any.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000429 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800430static MMacro *defining;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000431
Charles Crayned4200be2008-07-12 16:42:33 -0700432static uint64_t nested_mac_count;
433static uint64_t nested_rep_count;
434
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000435/*
436 * The number of macro parameters to allocate space for at a time.
437 */
438#define PARAM_DELTA 16
439
440/*
H. Peter Anvinf7606612016-07-13 14:23:48 -0700441 * The standard macro set: defined in macros.c in a set of arrays.
442 * This gives our position in any macro set, while we are processing it.
443 * The stdmacset is an array of such macro sets.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000444 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700445static macros_t *stdmacpos;
H. Peter Anvinf7606612016-07-13 14:23:48 -0700446static macros_t **stdmacnext;
447static macros_t *stdmacros[8];
Cyrill Gorcunov15ce78f2017-01-06 20:21:28 +0300448static macros_t *extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000449
450/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000451 * Tokens are allocated in blocks to improve speed
452 */
453#define TOKEN_BLOCKSIZE 4096
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800454static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000455struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000456 Blocks *next;
457 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000458};
459
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800460static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000461
462/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000463 * Forward declarations.
464 */
H. Peter Anvinf7606612016-07-13 14:23:48 -0700465static void pp_add_stdmac(macros_t *macros);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000466static Token *expand_mmac_params(Token * tline);
467static Token *expand_smacro(Token * tline);
468static Token *expand_id(Token * tline);
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +0400469static Context *get_ctx(const char *name, const char **namep);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700470static void make_tok_num(Token * tok, int64_t val);
H. Peter Anvin130736c2016-02-17 20:27:41 -0800471static void pp_verror(int severity, const char *fmt, va_list ap);
472static vefunc real_verror;
H. Peter Anvince616072002-04-30 21:02:23 +0000473static void *new_Block(size_t size);
474static void delete_Blocks(void);
H. Peter Anvinc751e862008-06-09 10:18:45 -0700475static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300476 const char *text, int txtlen);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000477static Token *delete_Token(Token * t);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000478
479/*
480 * Macros for safe checking of token pointers, avoid *(NULL)
481 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300482#define tok_type_(x,t) ((x) && (x)->type == (t))
483#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
484#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
485#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000486
Cyrill Gorcunov194ba892011-06-30 01:16:35 +0400487/*
H. Peter Anvin077fb932010-07-20 14:56:30 -0700488 * nasm_unquote with error if the string contains NUL characters.
489 * If the string contains NUL characters, issue an error and return
490 * the C len, i.e. truncate at the NUL.
491 */
492static size_t nasm_unquote_cstr(char *qstr, enum preproc_token directive)
493{
494 size_t len = nasm_unquote(qstr, NULL);
495 size_t clen = strlen(qstr);
496
497 if (len != clen)
H. Peter Anvin130736c2016-02-17 20:27:41 -0800498 nasm_error(ERR_NONFATAL, "NUL character in `%s' directive",
H. Peter Anvin077fb932010-07-20 14:56:30 -0700499 pp_directives[directive]);
500
501 return clen;
502}
503
504/*
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700505 * In-place reverse a list of tokens.
506 */
507static Token *reverse_tokens(Token *t)
508{
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800509 Token *prev = NULL;
510 Token *next;
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700511
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800512 while (t) {
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +0400513 next = t->next;
514 t->next = prev;
515 prev = t;
516 t = next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800517 }
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700518
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800519 return prev;
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700520}
521
522/*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300523 * Handle TASM specific directives, which do not contain a % in
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000524 * front of them. We do it here because I could not find any other
525 * place to do it for the moment, and it is a hack (ideally it would
526 * be nice to be able to use the NASM pre-processor to do it).
527 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000528static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000529{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000530 int32_t i, j, k, m, len;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400531 char *p, *q, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000532
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400533 p = nasm_skip_spaces(line);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000534
535 /* Binary search for the directive name */
536 i = -1;
Cyrill Gorcunova7319242010-06-03 22:04:36 +0400537 j = ARRAY_SIZE(tasm_directives);
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400538 q = nasm_skip_word(p);
539 len = q - p;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000540 if (len) {
541 oldchar = p[len];
542 p[len] = 0;
543 while (j - i > 1) {
544 k = (j + i) / 2;
545 m = nasm_stricmp(p, tasm_directives[k]);
546 if (m == 0) {
547 /* We have found a directive, so jam a % in front of it
548 * so that NASM will then recognise it as one if it's own.
549 */
550 p[len] = oldchar;
551 len = strlen(p);
552 oldline = line;
553 line = nasm_malloc(len + 2);
554 line[0] = '%';
555 if (k == TM_IFDIFI) {
H. Peter Anvin18f48792009-06-27 15:56:27 -0700556 /*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300557 * NASM does not recognise IFDIFI, so we convert
558 * it to %if 0. This is not used in NASM
559 * compatible code, but does need to parse for the
560 * TASM macro package.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000561 */
H. Peter Anvin18f48792009-06-27 15:56:27 -0700562 strcpy(line + 1, "if 0");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000563 } else {
564 memcpy(line + 1, p, len + 1);
565 }
566 nasm_free(oldline);
567 return line;
568 } else if (m < 0) {
569 j = k;
570 } else
571 i = k;
572 }
573 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000574 }
575 return line;
576}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000577
H. Peter Anvin76690a12002-04-30 20:52:49 +0000578/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000579 * The pre-preprocessing stage... This function translates line
580 * number indications as they emerge from GNU cpp (`# lineno "file"
581 * flags') into NASM preprocessor line number indications (`%line
582 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000583 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000584static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000585{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000586 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000587 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000588
H. Peter Anvine2c80182005-01-15 22:15:51 +0000589 if (line[0] == '#' && line[1] == ' ') {
590 oldline = line;
591 fname = oldline + 2;
592 lineno = atoi(fname);
593 fname += strspn(fname, "0123456789 ");
594 if (*fname == '"')
595 fname++;
596 fnlen = strcspn(fname, "\"");
597 line = nasm_malloc(20 + fnlen);
598 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
599 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000600 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000601 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000602 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000603 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000604}
605
606/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000607 * Free a linked list of tokens.
608 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000609static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000610{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400611 while (list)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000612 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000613}
614
615/*
616 * Free a linked list of lines.
617 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000618static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000619{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400620 Line *l, *tmp;
621 list_for_each_safe(l, tmp, list) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000622 free_tlist(l->first);
623 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000624 }
625}
626
627/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800628 * Free an MMacro
H. Peter Anvineba20a72002-04-30 20:53:55 +0000629 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800630static void free_mmacro(MMacro * m)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000631{
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800632 nasm_free(m->name);
633 free_tlist(m->dlist);
634 nasm_free(m->defaults);
635 free_llist(m->expansion);
636 nasm_free(m);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000637}
638
639/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700640 * Free all currently defined macros, and free the hash tables
641 */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700642static void free_smacro_table(struct hash_table *smt)
H. Peter Anvin97a23472007-09-16 17:57:25 -0700643{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400644 SMacro *s, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700645 const char *key;
646 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700647
H. Peter Anvin072771e2008-05-22 13:17:51 -0700648 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300649 nasm_free((void *)key);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400650 list_for_each_safe(s, tmp, s) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300651 nasm_free(s->name);
652 free_tlist(s->expansion);
653 nasm_free(s);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300654 }
H. Peter Anvin97a23472007-09-16 17:57:25 -0700655 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700656 hash_free(smt);
657}
658
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800659static void free_mmacro_table(struct hash_table *mmt)
H. Peter Anvin072771e2008-05-22 13:17:51 -0700660{
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800661 MMacro *m, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700662 const char *key;
663 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700664
665 it = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800666 while ((m = hash_iterate(mmt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300667 nasm_free((void *)key);
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800668 list_for_each_safe(m ,tmp, m)
669 free_mmacro(m);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700670 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800671 hash_free(mmt);
H. Peter Anvin072771e2008-05-22 13:17:51 -0700672}
673
674static void free_macros(void)
675{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700676 free_smacro_table(&smacros);
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800677 free_mmacro_table(&mmacros);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700678}
679
680/*
681 * Initialize the hash tables
682 */
683static void init_macros(void)
684{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700685 hash_init(&smacros, HASH_LARGE);
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800686 hash_init(&mmacros, HASH_LARGE);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700687}
688
689/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000690 * Pop the context stack.
691 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000692static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000693{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000694 Context *c = cstk;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000695
696 cstk = cstk->next;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700697 free_smacro_table(&c->localmac);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000698 nasm_free(c->name);
699 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000700}
701
H. Peter Anvin072771e2008-05-22 13:17:51 -0700702/*
703 * Search for a key in the hash index; adding it if necessary
704 * (in which case we initialize the data pointer to NULL.)
705 */
706static void **
707hash_findi_add(struct hash_table *hash, const char *str)
708{
709 struct hash_insert hi;
710 void **r;
711 char *strx;
712
713 r = hash_findi(hash, str, &hi);
714 if (r)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300715 return r;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700716
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300717 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700718 return hash_add(&hi, strx, NULL);
719}
720
721/*
722 * Like hash_findi, but returns the data element rather than a pointer
723 * to it. Used only when not adding a new element, hence no third
724 * argument.
725 */
726static void *
727hash_findix(struct hash_table *hash, const char *str)
728{
729 void **p;
730
731 p = hash_findi(hash, str, NULL);
732 return p ? *p : NULL;
733}
734
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400735/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800736 * read line from standart macros set,
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400737 * if there no more left -- return NULL
738 */
739static char *line_from_stdmac(void)
740{
741 unsigned char c;
742 const unsigned char *p = stdmacpos;
743 char *line, *q;
744 size_t len = 0;
745
746 if (!stdmacpos)
747 return NULL;
748
749 while ((c = *p++)) {
750 if (c >= 0x80)
751 len += pp_directives_len[c - 0x80] + 1;
752 else
753 len++;
754 }
755
756 line = nasm_malloc(len + 1);
757 q = line;
758 while ((c = *stdmacpos++)) {
759 if (c >= 0x80) {
760 memcpy(q, pp_directives[c - 0x80], pp_directives_len[c - 0x80]);
761 q += pp_directives_len[c - 0x80];
762 *q++ = ' ';
763 } else {
764 *q++ = c;
765 }
766 }
767 stdmacpos = p;
768 *q = '\0';
769
770 if (!*stdmacpos) {
H. Peter Anvinf7606612016-07-13 14:23:48 -0700771 /* This was the last of this particular macro set */
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400772 stdmacpos = NULL;
H. Peter Anvinf7606612016-07-13 14:23:48 -0700773 if (*stdmacnext) {
774 stdmacpos = *stdmacnext++;
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400775 } else if (do_predef) {
776 Line *pd, *l;
777 Token *head, **tail, *t;
778
779 /*
780 * Nasty hack: here we push the contents of
781 * `predef' on to the top-level expansion stack,
782 * since this is the most convenient way to
783 * implement the pre-include and pre-define
784 * features.
785 */
786 list_for_each(pd, predef) {
787 head = NULL;
788 tail = &head;
789 list_for_each(t, pd->first) {
790 *tail = new_Token(NULL, t->type, t->text, 0);
791 tail = &(*tail)->next;
792 }
793
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800794 l = nasm_malloc(sizeof(Line));
795 l->next = istk->expansion;
796 l->first = head;
797 l->finishes = NULL;
798
799 istk->expansion = l;
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400800 }
801 do_predef = false;
802 }
803 }
804
805 return line;
806}
807
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000808static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000809{
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400810 unsigned int size, c, next;
811 const unsigned int delta = 512;
812 const unsigned int pad = 8;
813 unsigned int nr_cont = 0;
814 bool cont = false;
815 char *buffer, *p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000816
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400817 /* Standart macros set (predefined) goes first */
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400818 p = line_from_stdmac();
819 if (p)
820 return p;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700821
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400822 size = delta;
823 p = buffer = nasm_malloc(size);
824
825 for (;;) {
826 c = fgetc(istk->fp);
827 if ((int)(c) == EOF) {
828 p[0] = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000829 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000830 }
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400831
832 switch (c) {
833 case '\r':
834 next = fgetc(istk->fp);
835 if (next != '\n')
836 ungetc(next, istk->fp);
837 if (cont) {
838 cont = false;
839 continue;
840 }
841 break;
842
843 case '\n':
844 if (cont) {
845 cont = false;
846 continue;
847 }
848 break;
849
850 case '\\':
851 next = fgetc(istk->fp);
852 ungetc(next, istk->fp);
Cyrill Gorcunov490f85e2012-12-27 20:02:17 +0400853 if (next == '\r' || next == '\n') {
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400854 cont = true;
855 nr_cont++;
856 continue;
857 }
858 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000859 }
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400860
861 if (c == '\r' || c == '\n') {
862 *p++ = 0;
863 break;
864 }
865
866 if (p >= (buffer + size - pad)) {
867 buffer = nasm_realloc(buffer, size + delta);
868 p = buffer + size - pad;
869 size += delta;
870 }
871
872 *p++ = (unsigned char)c;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000873 }
874
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400875 if (p == buffer) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000876 nasm_free(buffer);
877 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000878 }
879
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300880 src_set_linnum(src_get_linnum() + istk->lineinc +
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400881 (nr_cont * istk->lineinc));
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000882
883 /*
884 * Handle spurious ^Z, which may be inserted into source files
885 * by some file transfer utilities.
886 */
887 buffer[strcspn(buffer, "\032")] = '\0';
888
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -0800889 lfmt->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000890
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000891 return buffer;
892}
893
894/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000895 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000896 * don't need to parse the value out of e.g. numeric tokens: we
897 * simply split one string into many.
898 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000899static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000900{
H. Peter Anvinca544db2008-10-19 19:30:11 -0700901 char c, *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000902 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000903 Token *list = NULL;
904 Token *t, **tail = &list;
905
H. Peter Anvine2c80182005-01-15 22:15:51 +0000906 while (*line) {
907 p = line;
908 if (*p == '%') {
909 p++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300910 if (*p == '+' && !nasm_isdigit(p[1])) {
911 p++;
912 type = TOK_PASTE;
913 } else if (nasm_isdigit(*p) ||
914 ((*p == '-' || *p == '+') && nasm_isdigit(p[1]))) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000915 do {
916 p++;
917 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700918 while (nasm_isdigit(*p));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000919 type = TOK_PREPROC_ID;
920 } else if (*p == '{') {
921 p++;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800922 while (*p) {
923 if (*p == '}')
924 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000925 p[-1] = *p;
926 p++;
927 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800928 if (*p != '}')
H. Peter Anvin130736c2016-02-17 20:27:41 -0800929 nasm_error(ERR_WARNING | ERR_PASS1,
930 "unterminated %%{ construct");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000931 p[-1] = '\0';
932 if (*p)
933 p++;
934 type = TOK_PREPROC_ID;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300935 } else if (*p == '[') {
936 int lvl = 1;
937 line += 2; /* Skip the leading %[ */
938 p++;
939 while (lvl && (c = *p++)) {
940 switch (c) {
941 case ']':
942 lvl--;
943 break;
944 case '%':
945 if (*p == '[')
946 lvl++;
947 break;
948 case '\'':
949 case '\"':
950 case '`':
Cyrill Gorcunov3144e842017-10-22 10:50:55 +0300951 p = nasm_skip_string(p - 1);
952 if (*p)
953 p++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300954 break;
955 default:
956 break;
957 }
958 }
959 p--;
960 if (*p)
961 *p++ = '\0';
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800962 if (lvl)
H. Peter Anvin130736c2016-02-17 20:27:41 -0800963 nasm_error(ERR_NONFATAL|ERR_PASS1,
964 "unterminated %%[ construct");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300965 type = TOK_INDIRECT;
966 } else if (*p == '?') {
967 type = TOK_PREPROC_Q; /* %? */
968 p++;
969 if (*p == '?') {
970 type = TOK_PREPROC_QQ; /* %?? */
971 p++;
972 }
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +0400973 } else if (*p == '!') {
974 type = TOK_PREPROC_ID;
975 p++;
976 if (isidchar(*p)) {
977 do {
978 p++;
979 }
980 while (isidchar(*p));
981 } else if (*p == '\'' || *p == '\"' || *p == '`') {
982 p = nasm_skip_string(p);
983 if (*p)
984 p++;
985 else
H. Peter Anvin130736c2016-02-17 20:27:41 -0800986 nasm_error(ERR_NONFATAL|ERR_PASS1,
987 "unterminated %%! string");
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +0400988 } else {
989 /* %! without string or identifier */
990 type = TOK_OTHER; /* Legacy behavior... */
991 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000992 } else if (isidchar(*p) ||
993 ((*p == '!' || *p == '%' || *p == '$') &&
994 isidchar(p[1]))) {
995 do {
996 p++;
997 }
998 while (isidchar(*p));
999 type = TOK_PREPROC_ID;
1000 } else {
1001 type = TOK_OTHER;
1002 if (*p == '%')
1003 p++;
1004 }
1005 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
1006 type = TOK_ID;
1007 p++;
1008 while (*p && isidchar(*p))
1009 p++;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07001010 } else if (*p == '\'' || *p == '"' || *p == '`') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001011 /*
1012 * A string token.
1013 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001014 type = TOK_STRING;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001015 p = nasm_skip_string(p);
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001016
H. Peter Anvine2c80182005-01-15 22:15:51 +00001017 if (*p) {
1018 p++;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001019 } else {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001020 nasm_error(ERR_WARNING|ERR_PASS1, "unterminated string");
H. Peter Anvine2c80182005-01-15 22:15:51 +00001021 /* Handling unterminated strings by UNV */
1022 /* type = -1; */
1023 }
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001024 } else if (p[0] == '$' && p[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001025 type = TOK_OTHER; /* TOKEN_BASE */
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001026 p += 2;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001027 } else if (isnumstart(*p)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001028 bool is_hex = false;
1029 bool is_float = false;
1030 bool has_e = false;
1031 char c, *r;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001032
H. Peter Anvine2c80182005-01-15 22:15:51 +00001033 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001034 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001035 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001036
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001037 if (*p == '$') {
1038 p++;
1039 is_hex = true;
1040 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001041
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001042 for (;;) {
1043 c = *p++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001044
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001045 if (!is_hex && (c == 'e' || c == 'E')) {
1046 has_e = true;
1047 if (*p == '+' || *p == '-') {
1048 /*
1049 * e can only be followed by +/- if it is either a
1050 * prefixed hex number or a floating-point number
1051 */
1052 p++;
1053 is_float = true;
1054 }
1055 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
1056 is_hex = true;
1057 } else if (c == 'P' || c == 'p') {
1058 is_float = true;
1059 if (*p == '+' || *p == '-')
1060 p++;
Martin Lindheb150e382016-11-16 15:36:53 +01001061 } else if (isnumchar(c))
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001062 ; /* just advance */
1063 else if (c == '.') {
1064 /*
1065 * we need to deal with consequences of the legacy
1066 * parser, like "1.nolist" being two tokens
1067 * (TOK_NUMBER, TOK_ID) here; at least give it
1068 * a shot for now. In the future, we probably need
1069 * a flex-based scanner with proper pattern matching
1070 * to do it as well as it can be done. Nothing in
1071 * the world is going to help the person who wants
1072 * 0x123.p16 interpreted as two tokens, though.
1073 */
1074 r = p;
1075 while (*r == '_')
1076 r++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001077
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001078 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
1079 (!is_hex && (*r == 'e' || *r == 'E')) ||
1080 (*r == 'p' || *r == 'P')) {
1081 p = r;
1082 is_float = true;
1083 } else
1084 break; /* Terminate the token */
1085 } else
1086 break;
1087 }
1088 p--; /* Point to first character beyond number */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001089
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001090 if (p == line+1 && *line == '$') {
1091 type = TOK_OTHER; /* TOKEN_HERE */
1092 } else {
1093 if (has_e && !is_hex) {
1094 /* 1e13 is floating-point, but 1e13h is not */
1095 is_float = true;
1096 }
H. Peter Anvind784a082009-04-20 14:01:18 -07001097
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001098 type = is_float ? TOK_FLOAT : TOK_NUMBER;
1099 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -07001100 } else if (nasm_isspace(*p)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001101 type = TOK_WHITESPACE;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +04001102 p = nasm_skip_spaces(p);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001103 /*
1104 * Whitespace just before end-of-line is discarded by
1105 * pretending it's a comment; whitespace just before a
1106 * comment gets lumped into the comment.
1107 */
1108 if (!*p || *p == ';') {
1109 type = TOK_COMMENT;
1110 while (*p)
1111 p++;
1112 }
1113 } else if (*p == ';') {
1114 type = TOK_COMMENT;
1115 while (*p)
1116 p++;
1117 } else {
1118 /*
1119 * Anything else is an operator of some kind. We check
1120 * for all the double-character operators (>>, <<, //,
1121 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001122 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001123 */
1124 type = TOK_OTHER;
1125 if ((p[0] == '>' && p[1] == '>') ||
1126 (p[0] == '<' && p[1] == '<') ||
1127 (p[0] == '/' && p[1] == '/') ||
1128 (p[0] == '<' && p[1] == '=') ||
1129 (p[0] == '>' && p[1] == '=') ||
1130 (p[0] == '=' && p[1] == '=') ||
1131 (p[0] == '!' && p[1] == '=') ||
1132 (p[0] == '<' && p[1] == '>') ||
1133 (p[0] == '&' && p[1] == '&') ||
1134 (p[0] == '|' && p[1] == '|') ||
1135 (p[0] == '^' && p[1] == '^')) {
1136 p++;
1137 }
1138 p++;
1139 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001140
H. Peter Anvine2c80182005-01-15 22:15:51 +00001141 /* Handling unterminated string by UNV */
1142 /*if (type == -1)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001143 {
1144 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1145 t->text[p-line] = *line;
1146 tail = &t->next;
1147 }
1148 else */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001149 if (type != TOK_COMMENT) {
1150 *tail = t = new_Token(NULL, type, line, p - line);
1151 tail = &t->next;
1152 }
1153 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001154 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001155 return list;
1156}
1157
H. Peter Anvince616072002-04-30 21:02:23 +00001158/*
1159 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -07001160 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +00001161 * deleted only all at once by the delete_Blocks function.
1162 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001163static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +00001164{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001165 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001166
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001167 /* first, get to the end of the linked list */
1168 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001169 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001170 /* now allocate the requested chunk */
1171 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001172
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001173 /* now allocate a new block for the next request */
Cyrill Gorcunovc31767c2014-06-28 02:22:17 +04001174 b->next = nasm_zalloc(sizeof(Blocks));
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001175 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +00001176}
1177
1178/*
1179 * this function deletes all managed blocks of memory
1180 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001181static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +00001182{
H. Peter Anvine2c80182005-01-15 22:15:51 +00001183 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +00001184
H. Peter Anvin70653092007-10-19 14:42:29 -07001185 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001186 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -07001187 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001188 * free it.
1189 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001190 while (b) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001191 if (b->chunk)
1192 nasm_free(b->chunk);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001193 a = b;
1194 b = b->next;
1195 if (a != &blocks)
1196 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001197 }
Cyrill Gorcunovdae24d72014-06-28 10:17:39 +04001198 memset(&blocks, 0, sizeof(blocks));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001199}
H. Peter Anvin734b1882002-04-30 21:01:08 +00001200
1201/*
H. Peter Anvin70653092007-10-19 14:42:29 -07001202 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +00001203 * back to the caller. It sets the type and text elements, and
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001204 * also the a.mac and next elements to NULL.
H. Peter Anvin734b1882002-04-30 21:01:08 +00001205 */
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001206static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001207 const char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001208{
1209 Token *t;
1210 int i;
1211
H. Peter Anvin89cee572009-07-15 09:16:54 -04001212 if (!freeTokens) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001213 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1214 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1215 freeTokens[i].next = &freeTokens[i + 1];
1216 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001217 }
1218 t = freeTokens;
1219 freeTokens = t->next;
1220 t->next = next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001221 t->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001222 t->type = type;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001223 if (type == TOK_WHITESPACE || !text) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001224 t->text = NULL;
1225 } else {
1226 if (txtlen == 0)
1227 txtlen = strlen(text);
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001228 t->text = nasm_malloc(txtlen+1);
1229 memcpy(t->text, text, txtlen);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001230 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +00001231 }
1232 return t;
1233}
1234
H. Peter Anvine2c80182005-01-15 22:15:51 +00001235static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001236{
1237 Token *next = t->next;
1238 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +00001239 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001240 freeTokens = t;
1241 return next;
1242}
1243
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001244/*
1245 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001246 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1247 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001248 */
H. Peter Anvin9e200162008-06-04 17:23:14 -07001249static char *detoken(Token * tlist, bool expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001250{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001251 Token *t;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001252 char *line, *p;
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001253 const char *q;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001254 int len = 0;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001255
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001256 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001257 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001258 char *v;
1259 char *q = t->text;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001260
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001261 v = t->text + 2;
1262 if (*v == '\'' || *v == '\"' || *v == '`') {
1263 size_t len = nasm_unquote(v, NULL);
1264 size_t clen = strlen(v);
H. Peter Anvin077fb932010-07-20 14:56:30 -07001265
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001266 if (len != clen) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001267 nasm_error(ERR_NONFATAL | ERR_PASS1,
1268 "NUL character in %%! string");
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001269 v = NULL;
1270 }
1271 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001272
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001273 if (v) {
1274 char *p = getenv(v);
1275 if (!p) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001276 nasm_error(ERR_NONFATAL | ERR_PASS1,
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001277 "nonexistent environment variable `%s'", v);
Cyrill Gorcunovbbb7a1a2016-06-19 12:15:24 +03001278 /*
1279 * FIXME We better should investigate if accessing
1280 * ->text[1] without ->text[0] is safe enough.
1281 */
1282 t->text = nasm_zalloc(2);
1283 } else
1284 t->text = nasm_strdup(p);
Cyrill Gorcunov75004872017-07-26 01:21:16 +03001285 nasm_free(q);
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001286 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001287 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001288
H. Peter Anvine2c80182005-01-15 22:15:51 +00001289 /* Expand local macros here and not during preprocessing */
1290 if (expand_locals &&
1291 t->type == TOK_PREPROC_ID && t->text &&
1292 t->text[0] == '%' && t->text[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001293 const char *q;
1294 char *p;
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001295 Context *ctx = get_ctx(t->text, &q);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001296 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001297 char buffer[40];
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001298 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001299 p = nasm_strcat(buffer, q);
1300 nasm_free(t->text);
1301 t->text = p;
1302 }
1303 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001304 if (t->type == TOK_WHITESPACE)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001305 len++;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001306 else if (t->text)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001307 len += strlen(t->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001308 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001309
H. Peter Anvin734b1882002-04-30 21:01:08 +00001310 p = line = nasm_malloc(len + 1);
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001311
1312 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001313 if (t->type == TOK_WHITESPACE) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001314 *p++ = ' ';
H. Peter Anvine2c80182005-01-15 22:15:51 +00001315 } else if (t->text) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001316 q = t->text;
1317 while (*q)
1318 *p++ = *q++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001319 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001320 }
1321 *p = '\0';
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001322
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001323 return line;
1324}
1325
1326/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001327 * A scanner, suitable for use by the expression evaluator, which
1328 * operates on a line of Tokens. Expects a pointer to a pointer to
1329 * the first token in the line to be passed in as its private_data
1330 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001331 *
1332 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001333 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001334static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001335{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001336 Token **tlineptr = private_data;
1337 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001338 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001339
H. Peter Anvine2c80182005-01-15 22:15:51 +00001340 do {
1341 tline = *tlineptr;
1342 *tlineptr = tline ? tline->next : NULL;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04001343 } while (tline && (tline->type == TOK_WHITESPACE ||
1344 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001345
1346 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001347 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001348
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001349 tokval->t_charptr = tline->text;
1350
H. Peter Anvin76690a12002-04-30 20:52:49 +00001351 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001352 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001353 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001354 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001355
H. Peter Anvine2c80182005-01-15 22:15:51 +00001356 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001357 p = tokval->t_charptr = tline->text;
1358 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001359 tokval->t_charptr++;
1360 return tokval->t_type = TOKEN_ID;
1361 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001362
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001363 for (r = p, s = ourcopy; *r; r++) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001364 if (r >= p+MAX_KEYWORD)
1365 return tokval->t_type = TOKEN_ID; /* Not a keyword */
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -07001366 *s++ = nasm_tolower(*r);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001367 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001368 *s = '\0';
1369 /* right, so we have an identifier sitting in temp storage. now,
1370 * is it actually a register or instruction name, or what? */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001371 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001372 }
1373
H. Peter Anvine2c80182005-01-15 22:15:51 +00001374 if (tline->type == TOK_NUMBER) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001375 bool rn_error;
1376 tokval->t_integer = readnum(tline->text, &rn_error);
1377 tokval->t_charptr = tline->text;
1378 if (rn_error)
1379 return tokval->t_type = TOKEN_ERRNUM;
1380 else
1381 return tokval->t_type = TOKEN_NUM;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001382 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001383
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001384 if (tline->type == TOK_FLOAT) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001385 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001386 }
1387
H. Peter Anvine2c80182005-01-15 22:15:51 +00001388 if (tline->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001389 char bq, *ep;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001390
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001391 bq = tline->text[0];
H. Peter Anvin11627042008-06-09 20:45:19 -07001392 tokval->t_charptr = tline->text;
1393 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
H. Peter Anvind2456592008-06-19 15:04:18 -07001394
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001395 if (ep[0] != bq || ep[1] != '\0')
1396 return tokval->t_type = TOKEN_ERRSTR;
1397 else
1398 return tokval->t_type = TOKEN_STR;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001399 }
1400
H. Peter Anvine2c80182005-01-15 22:15:51 +00001401 if (tline->type == TOK_OTHER) {
1402 if (!strcmp(tline->text, "<<"))
1403 return tokval->t_type = TOKEN_SHL;
1404 if (!strcmp(tline->text, ">>"))
1405 return tokval->t_type = TOKEN_SHR;
1406 if (!strcmp(tline->text, "//"))
1407 return tokval->t_type = TOKEN_SDIV;
1408 if (!strcmp(tline->text, "%%"))
1409 return tokval->t_type = TOKEN_SMOD;
1410 if (!strcmp(tline->text, "=="))
1411 return tokval->t_type = TOKEN_EQ;
1412 if (!strcmp(tline->text, "<>"))
1413 return tokval->t_type = TOKEN_NE;
1414 if (!strcmp(tline->text, "!="))
1415 return tokval->t_type = TOKEN_NE;
1416 if (!strcmp(tline->text, "<="))
1417 return tokval->t_type = TOKEN_LE;
1418 if (!strcmp(tline->text, ">="))
1419 return tokval->t_type = TOKEN_GE;
1420 if (!strcmp(tline->text, "&&"))
1421 return tokval->t_type = TOKEN_DBL_AND;
1422 if (!strcmp(tline->text, "^^"))
1423 return tokval->t_type = TOKEN_DBL_XOR;
1424 if (!strcmp(tline->text, "||"))
1425 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001426 }
1427
1428 /*
1429 * We have no other options: just return the first character of
1430 * the token text.
1431 */
1432 return tokval->t_type = tline->text[0];
1433}
1434
1435/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001436 * Compare a string to the name of an existing macro; this is a
1437 * simple wrapper which calls either strcmp or nasm_stricmp
1438 * depending on the value of the `casesense' parameter.
1439 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001440static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001441{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001442 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001443}
1444
1445/*
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001446 * Compare a string to the name of an existing macro; this is a
1447 * simple wrapper which calls either strcmp or nasm_stricmp
1448 * depending on the value of the `casesense' parameter.
1449 */
1450static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1451{
1452 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1453}
1454
1455/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001456 * Return the Context structure associated with a %$ token. Return
1457 * NULL, having _already_ reported an error condition, if the
1458 * context stack isn't deep enough for the supplied number of $
1459 * signs.
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001460 *
1461 * If "namep" is non-NULL, set it to the pointer to the macro name
1462 * tail, i.e. the part beyond %$...
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001463 */
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001464static Context *get_ctx(const char *name, const char **namep)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001465{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001466 Context *ctx;
1467 int i;
1468
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001469 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001470 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001471
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001472 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001473 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001474
H. Peter Anvine2c80182005-01-15 22:15:51 +00001475 if (!cstk) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001476 nasm_error(ERR_NONFATAL, "`%s': context stack is empty", name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001477 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001478 }
1479
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001480 name += 2;
1481 ctx = cstk;
1482 i = 0;
1483 while (ctx && *name == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001484 name++;
1485 i++;
1486 ctx = ctx->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001487 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001488 if (!ctx) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001489 nasm_error(ERR_NONFATAL, "`%s': context stack is only"
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001490 " %d level%s deep", name, i, (i == 1 ? "" : "s"));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001491 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001492 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001493
1494 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001495 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001496
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001497 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001498}
1499
1500/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001501 * Open an include file. This routine must always return a valid
1502 * file pointer if it returns - it's responsible for throwing an
1503 * ERR_FATAL and bombing out completely if not. It should also try
1504 * the include path one by one until it finds the file or reaches
1505 * the end of the path.
H. Peter Anvind81a2352016-09-21 14:03:18 -07001506 *
1507 * Note: for INC_PROBE the function returns NULL at all times;
1508 * instead look for the
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001509 */
H. Peter Anvind81a2352016-09-21 14:03:18 -07001510enum incopen_mode {
1511 INC_NEEDED, /* File must exist */
1512 INC_OPTIONAL, /* Missing is OK */
1513 INC_PROBE /* Only an existence probe */
1514};
1515
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001516/* This is conducts a full pathname search */
1517static FILE *inc_fopen_search(const char *file, StrList **slpath,
1518 enum incopen_mode omode, enum file_flags fmode)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001519{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001520 FILE *fp;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001521 char *prefix = "";
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001522 const IncPath *ip = ipath;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001523 int len = strlen(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001524 size_t prefix_len = 0;
1525 StrList *sl;
Jim Kukunas65a8afc2016-06-13 16:00:42 -04001526 size_t path_len;
H. Peter Anvind81a2352016-09-21 14:03:18 -07001527 bool found;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001528
H. Peter Anvine2c80182005-01-15 22:15:51 +00001529 while (1) {
Jim Kukunas65a8afc2016-06-13 16:00:42 -04001530 path_len = prefix_len + len + 1;
1531
1532 sl = nasm_malloc(path_len + sizeof sl->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001533 memcpy(sl->str, prefix, prefix_len);
1534 memcpy(sl->str+prefix_len, file, len+1);
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001535 sl->next = NULL;
Jim Kukunas65a8afc2016-06-13 16:00:42 -04001536
H. Peter Anvind81a2352016-09-21 14:03:18 -07001537 if (omode == INC_PROBE) {
1538 fp = NULL;
1539 found = nasm_file_exists(sl->str);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001540 } else {
H. Peter Anvind81a2352016-09-21 14:03:18 -07001541 fp = nasm_open_read(sl->str, fmode);
1542 found = (fp != NULL);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001543 }
H. Peter Anvind81a2352016-09-21 14:03:18 -07001544 if (found) {
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001545 *slpath = sl;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001546 return fp;
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001547 }
Jim Kukunas65a8afc2016-06-13 16:00:42 -04001548
H. Peter Anvind81a2352016-09-21 14:03:18 -07001549 nasm_free(sl);
Jim Kukunas65a8afc2016-06-13 16:00:42 -04001550
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001551 if (!ip)
1552 return NULL;
1553
1554 prefix = ip->path;
1555 prefix_len = strlen(prefix);
1556 ip = ip->next;
1557 }
1558}
1559
1560/*
1561 * Open a file, or test for the presence of one (depending on omode),
1562 * considering the include path.
1563 */
1564static FILE *inc_fopen(const char *file,
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07001565 StrList **dhead,
H. Peter Anvinccad6f92016-10-04 00:34:35 -07001566 const char **found_path,
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001567 enum incopen_mode omode,
1568 enum file_flags fmode)
1569{
1570 StrList *sl;
1571 struct hash_insert hi;
1572 void **hp;
1573 char *path;
1574 FILE *fp = NULL;
1575
1576 hp = hash_find(&FileHash, file, &hi);
1577 if (hp) {
1578 path = *hp;
Martin Storsjöf283c8f2017-08-13 17:28:46 +03001579 if (path || omode != INC_NEEDED) {
H. Peter Anvin97fda4c2017-08-16 15:52:51 -07001580 nasm_add_string_to_strlist(dhead, path ? path : file);
Martin Storsjöf283c8f2017-08-13 17:28:46 +03001581 }
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001582 } else {
1583 /* Need to do the actual path search */
1584 size_t file_len;
1585
1586 sl = NULL;
1587 fp = inc_fopen_search(file, &sl, omode, fmode);
1588
1589 file_len = strlen(file);
1590
1591 if (!sl) {
1592 /* Store negative result for this file */
1593 sl = nasm_malloc(file_len + 1 + sizeof sl->next);
1594 memcpy(sl->str, file, file_len+1);
1595 sl->next = NULL;
1596 file = sl->str;
1597 path = NULL;
1598 } else {
1599 path = sl->str;
1600 file = strchr(path, '\0') - file_len;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001601 }
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001602
1603 hash_add(&hi, file, path); /* Positive or negative result */
1604
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07001605 /*
1606 * Add file to dependency path. The in_list() is needed
1607 * in case the file was already added with %depend.
1608 */
1609 if (path || omode != INC_NEEDED)
H. Peter Anvin436e3672016-10-04 01:12:28 -07001610 nasm_add_to_strlist(dhead, sl);
H. Peter Anvineba20a72002-04-30 20:53:55 +00001611 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001612
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001613 if (!path) {
1614 if (omode == INC_NEEDED)
1615 nasm_fatal(0, "unable to open include file `%s'", file);
1616
1617 if (found_path)
1618 *found_path = NULL;
1619
1620 return NULL;
1621 }
1622
1623 if (!fp && omode != INC_PROBE)
Cyrill Gorcunov4ff8c632017-01-06 00:36:23 +03001624 fp = nasm_open_read(path, fmode);
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001625
1626 if (found_path)
H. Peter Anvinccad6f92016-10-04 00:34:35 -07001627 *found_path = path;
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07001628
1629 return fp;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001630}
1631
1632/*
Fabian Giesen0bbc38d2016-04-28 13:48:14 -07001633 * Opens an include or input file. Public version, for use by modules
1634 * that get a file:lineno pair and need to look at the file again
1635 * (e.g. the CodeView debug backend). Returns NULL on failure.
1636 */
H. Peter Anvin3e83cec2016-05-25 04:28:46 -07001637FILE *pp_input_fopen(const char *filename, enum file_flags mode)
Fabian Giesen0bbc38d2016-04-28 13:48:14 -07001638{
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07001639 return inc_fopen(filename, NULL, NULL, INC_OPTIONAL, mode);
Fabian Giesen0bbc38d2016-04-28 13:48:14 -07001640}
1641
1642/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001643 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001644 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001645 * return true if _any_ single-line macro of that name is defined.
1646 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001647 * `nparam' or no parameters is defined.
1648 *
1649 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001650 * defined, or nparam is -1, the address of the definition structure
1651 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001652 * is NULL, no action will be taken regarding its contents, and no
1653 * error will occur.
1654 *
1655 * Note that this is also called with nparam zero to resolve
1656 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001657 *
1658 * If you already know which context macro belongs to, you can pass
1659 * the context pointer as first parameter; if you won't but name begins
1660 * with %$ the context will be automatically computed. If all_contexts
1661 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001662 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001663static bool
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001664smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001665 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001666{
H. Peter Anvin166c2472008-05-28 12:28:58 -07001667 struct hash_table *smtbl;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001668 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001669
H. Peter Anvin97a23472007-09-16 17:57:25 -07001670 if (ctx) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001671 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001672 } else if (name[0] == '%' && name[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001673 if (cstk)
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001674 ctx = get_ctx(name, &name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001675 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001676 return false; /* got to return _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001677 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001678 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001679 smtbl = &smacros;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001680 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001681 m = (SMacro *) hash_findix(smtbl, name);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001682
H. Peter Anvine2c80182005-01-15 22:15:51 +00001683 while (m) {
1684 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001685 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001686 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001687 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001688 *defn = m;
1689 else
1690 *defn = NULL;
1691 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001692 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001693 }
1694 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001695 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001696
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001697 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001698}
1699
1700/*
1701 * Count and mark off the parameters in a multi-line macro call.
1702 * This is called both from within the multi-line macro expansion
1703 * code, and also to mark off the default parameters when provided
1704 * in a %macro definition line.
1705 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001706static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001707{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001708 int paramsize, brace;
1709
1710 *nparam = paramsize = 0;
1711 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001712 while (t) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001713 /* +1: we need space for the final NULL */
H. Peter Anvin91fb6f12008-09-01 10:56:33 -07001714 if (*nparam+1 >= paramsize) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001715 paramsize += PARAM_DELTA;
1716 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1717 }
1718 skip_white_(t);
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08001719 brace = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001720 if (tok_is_(t, "{"))
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08001721 brace++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001722 (*params)[(*nparam)++] = t;
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08001723 if (brace) {
1724 while (brace && (t = t->next) != NULL) {
1725 if (tok_is_(t, "{"))
1726 brace++;
1727 else if (tok_is_(t, "}"))
1728 brace--;
1729 }
1730
1731 if (t) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001732 /*
1733 * Now we've found the closing brace, look further
1734 * for the comma.
1735 */
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08001736 t = t->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001737 skip_white_(t);
1738 if (tok_isnt_(t, ",")) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001739 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001740 "braces do not enclose all of macro parameter");
1741 while (tok_isnt_(t, ","))
1742 t = t->next;
1743 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001744 }
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08001745 } else {
1746 while (tok_isnt_(t, ","))
1747 t = t->next;
1748 }
1749 if (t) { /* got a comma/brace */
1750 t = t->next; /* eat the comma */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001751 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001752 }
1753}
1754
1755/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001756 * Determine whether one of the various `if' conditions is true or
1757 * not.
1758 *
1759 * We must free the tline we get passed.
1760 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001761static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001762{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001763 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001764 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001765 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001766 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001767 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001768 enum pp_token_type needtype;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001769 char *p;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001770
1771 origline = tline;
1772
H. Peter Anvine2c80182005-01-15 22:15:51 +00001773 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001774 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001775 j = false; /* have we matched yet? */
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001776 while (true) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001777 skip_white_(tline);
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001778 if (!tline)
1779 break;
1780 if (tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001781 nasm_error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001782 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001783 free_tlist(origline);
1784 return -1;
1785 }
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001786 if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001787 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001788 tline = tline->next;
1789 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001790 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001791
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001792 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001793 j = false; /* have we matched yet? */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001794 while (tline) {
1795 skip_white_(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001796 if (!tline || (tline->type != TOK_ID &&
1797 (tline->type != TOK_PREPROC_ID ||
1798 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001799 nasm_error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001800 "`%s' expects macro identifiers", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001801 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001802 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001803 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001804 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001805 tline = tline->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001806 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001807 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001808
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001809 case PPC_IFENV:
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001810 tline = expand_smacro(tline);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001811 j = false; /* have we matched yet? */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001812 while (tline) {
1813 skip_white_(tline);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001814 if (!tline || (tline->type != TOK_ID &&
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001815 tline->type != TOK_STRING &&
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001816 (tline->type != TOK_PREPROC_ID ||
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001817 tline->text[1] != '!'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001818 nasm_error(ERR_NONFATAL,
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001819 "`%s' expects environment variable names",
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001820 pp_directives[ct]);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001821 goto fail;
1822 }
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04001823 p = tline->text;
1824 if (tline->type == TOK_PREPROC_ID)
1825 p += 2; /* Skip leading %! */
1826 if (*p == '\'' || *p == '\"' || *p == '`')
1827 nasm_unquote_cstr(p, ct);
1828 if (getenv(p))
1829 j = true;
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001830 tline = tline->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001831 }
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001832 break;
1833
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001834 case PPC_IFIDN:
1835 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001836 tline = expand_smacro(tline);
1837 t = tt = tline;
1838 while (tok_isnt_(tt, ","))
1839 tt = tt->next;
1840 if (!tt) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001841 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001842 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001843 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001844 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001845 }
1846 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001847 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001848 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1849 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001850 nasm_error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001851 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001852 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001853 }
1854 if (t->type == TOK_WHITESPACE) {
1855 t = t->next;
1856 continue;
1857 }
1858 if (tt->type == TOK_WHITESPACE) {
1859 tt = tt->next;
1860 continue;
1861 }
1862 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001863 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001864 break;
1865 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001866 /* When comparing strings, need to unquote them first */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001867 if (t->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001868 size_t l1 = nasm_unquote(t->text, NULL);
1869 size_t l2 = nasm_unquote(tt->text, NULL);
H. Peter Anvind2456592008-06-19 15:04:18 -07001870
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001871 if (l1 != l2) {
1872 j = false;
1873 break;
1874 }
1875 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
1876 j = false;
1877 break;
1878 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001879 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001880 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001881 break;
1882 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001883
H. Peter Anvine2c80182005-01-15 22:15:51 +00001884 t = t->next;
1885 tt = tt->next;
1886 }
1887 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001888 j = false; /* trailing gunk on one end or other */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001889 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001890
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001891 case PPC_IFMACRO:
H. Peter Anvin89cee572009-07-15 09:16:54 -04001892 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001893 bool found = false;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001894 MMacro searching, *mmac;
H. Peter Anvin65747262002-05-07 00:10:05 +00001895
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001896 skip_white_(tline);
1897 tline = expand_id(tline);
1898 if (!tok_type_(tline, TOK_ID)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001899 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001900 "`%s' expects a macro name", pp_directives[ct]);
1901 goto fail;
1902 }
1903 searching.name = nasm_strdup(tline->text);
1904 searching.casesense = true;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001905 searching.plus = false;
1906 searching.nolist = false;
1907 searching.in_progress = 0;
1908 searching.max_depth = 0;
1909 searching.rep_nest = NULL;
1910 searching.nparam_min = 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001911 searching.nparam_max = INT_MAX;
1912 tline = expand_smacro(tline->next);
1913 skip_white_(tline);
1914 if (!tline) {
1915 } else if (!tok_type_(tline, TOK_NUMBER)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001916 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001917 "`%s' expects a parameter count or nothing",
1918 pp_directives[ct]);
1919 } else {
1920 searching.nparam_min = searching.nparam_max =
1921 readnum(tline->text, &j);
1922 if (j)
H. Peter Anvin130736c2016-02-17 20:27:41 -08001923 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001924 "unable to parse parameter count `%s'",
1925 tline->text);
1926 }
1927 if (tline && tok_is_(tline->next, "-")) {
1928 tline = tline->next->next;
1929 if (tok_is_(tline, "*"))
1930 searching.nparam_max = INT_MAX;
1931 else if (!tok_type_(tline, TOK_NUMBER))
H. Peter Anvin130736c2016-02-17 20:27:41 -08001932 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001933 "`%s' expects a parameter count after `-'",
1934 pp_directives[ct]);
1935 else {
1936 searching.nparam_max = readnum(tline->text, &j);
1937 if (j)
H. Peter Anvin130736c2016-02-17 20:27:41 -08001938 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001939 "unable to parse parameter count `%s'",
1940 tline->text);
Cyrill Gorcunovc9244ea2017-10-22 15:25:48 +03001941 if (searching.nparam_min > searching.nparam_max) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08001942 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001943 "minimum parameter count exceeds maximum");
Cyrill Gorcunovc9244ea2017-10-22 15:25:48 +03001944 searching.nparam_max = searching.nparam_min;
1945 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001946 }
1947 }
1948 if (tline && tok_is_(tline->next, "+")) {
1949 tline = tline->next;
1950 searching.plus = true;
1951 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001952 mmac = (MMacro *) hash_findix(&mmacros, searching.name);
1953 while (mmac) {
1954 if (!strcmp(mmac->name, searching.name) &&
1955 (mmac->nparam_min <= searching.nparam_max
1956 || searching.plus)
1957 && (searching.nparam_min <= mmac->nparam_max
1958 || mmac->plus)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001959 found = true;
1960 break;
1961 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001962 mmac = mmac->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001963 }
1964 if (tline && tline->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08001965 nasm_error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001966 "trailing garbage after %%ifmacro ignored");
1967 nasm_free(searching.name);
1968 j = found;
1969 break;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001970 }
H. Peter Anvin65747262002-05-07 00:10:05 +00001971
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001972 case PPC_IFID:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001973 needtype = TOK_ID;
1974 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001975 case PPC_IFNUM:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001976 needtype = TOK_NUMBER;
1977 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001978 case PPC_IFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001979 needtype = TOK_STRING;
1980 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001981
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001982iftype:
1983 t = tline = expand_smacro(tline);
H. Peter Anvind85d2502008-05-04 17:53:31 -07001984
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001985 while (tok_type_(t, TOK_WHITESPACE) ||
1986 (needtype == TOK_NUMBER &&
1987 tok_type_(t, TOK_OTHER) &&
1988 (t->text[0] == '-' || t->text[0] == '+') &&
1989 !t->text[1]))
1990 t = t->next;
H. Peter Anvind85d2502008-05-04 17:53:31 -07001991
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001992 j = tok_type_(t, needtype);
1993 break;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001994
1995 case PPC_IFTOKEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001996 t = tline = expand_smacro(tline);
1997 while (tok_type_(t, TOK_WHITESPACE))
1998 t = t->next;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001999
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002000 j = false;
2001 if (t) {
2002 t = t->next; /* Skip the actual token */
2003 while (tok_type_(t, TOK_WHITESPACE))
2004 t = t->next;
2005 j = !t; /* Should be nothing left */
2006 }
2007 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002008
H. Peter Anvin134b9462008-02-16 17:01:40 -08002009 case PPC_IFEMPTY:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002010 t = tline = expand_smacro(tline);
2011 while (tok_type_(t, TOK_WHITESPACE))
2012 t = t->next;
H. Peter Anvin134b9462008-02-16 17:01:40 -08002013
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002014 j = !t; /* Should be empty */
2015 break;
H. Peter Anvin134b9462008-02-16 17:01:40 -08002016
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002017 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002018 t = tline = expand_smacro(tline);
2019 tptr = &t;
2020 tokval.t_type = TOKEN_INVALID;
2021 evalresult = evaluate(ppscan, tptr, &tokval,
H. Peter Anvin130736c2016-02-17 20:27:41 -08002022 NULL, pass | CRITICAL, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002023 if (!evalresult)
2024 return -1;
2025 if (tokval.t_type)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002026 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002027 "trailing garbage after expression ignored");
2028 if (!is_simple(evalresult)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002029 nasm_error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002030 "non-constant value given to `%s'", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002031 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002032 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00002033 j = reloc_value(evalresult) != 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002034 break;
H. Peter Anvin95e28822007-09-12 04:20:08 +00002035
H. Peter Anvine2c80182005-01-15 22:15:51 +00002036 default:
H. Peter Anvin130736c2016-02-17 20:27:41 -08002037 nasm_error(ERR_FATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002038 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002039 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002040 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002041 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002042
2043 free_tlist(origline);
2044 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07002045
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002046fail:
2047 free_tlist(origline);
2048 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002049}
2050
2051/*
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002052 * Common code for defining an smacro
2053 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002054static bool define_smacro(Context *ctx, const char *mname, bool casesense,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002055 int nparam, Token *expansion)
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002056{
2057 SMacro *smac, **smhead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002058 struct hash_table *smtbl;
H. Peter Anvin70653092007-10-19 14:42:29 -07002059
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002060 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002061 if (!smac) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002062 nasm_error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002063 "single-line macro `%s' defined both with and"
2064 " without parameters", mname);
2065 /*
2066 * Some instances of the old code considered this a failure,
2067 * some others didn't. What is the right thing to do here?
2068 */
2069 free_tlist(expansion);
2070 return false; /* Failure */
2071 } else {
2072 /*
2073 * We're redefining, so we have to take over an
2074 * existing SMacro structure. This means freeing
2075 * what was already in it.
2076 */
2077 nasm_free(smac->name);
2078 free_tlist(smac->expansion);
2079 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002080 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002081 smtbl = ctx ? &ctx->localmac : &smacros;
2082 smhead = (SMacro **) hash_findi_add(smtbl, mname);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002083 smac = nasm_malloc(sizeof(SMacro));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002084 smac->next = *smhead;
2085 *smhead = smac;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002086 }
2087 smac->name = nasm_strdup(mname);
2088 smac->casesense = casesense;
2089 smac->nparam = nparam;
2090 smac->expansion = expansion;
2091 smac->in_progress = false;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002092 return true; /* Success */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002093}
2094
2095/*
2096 * Undefine an smacro
2097 */
2098static void undef_smacro(Context *ctx, const char *mname)
2099{
2100 SMacro **smhead, *s, **sp;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002101 struct hash_table *smtbl;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002102
H. Peter Anvin166c2472008-05-28 12:28:58 -07002103 smtbl = ctx ? &ctx->localmac : &smacros;
2104 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
H. Peter Anvin70653092007-10-19 14:42:29 -07002105
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002106 if (smhead) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002107 /*
2108 * We now have a macro name... go hunt for it.
2109 */
2110 sp = smhead;
2111 while ((s = *sp) != NULL) {
2112 if (!mstrcmp(s->name, mname, s->casesense)) {
2113 *sp = s->next;
2114 nasm_free(s->name);
2115 free_tlist(s->expansion);
2116 nasm_free(s);
2117 } else {
2118 sp = &s->next;
2119 }
2120 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002121 }
2122}
2123
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002124/*
H. Peter Anvina26433d2008-07-16 14:40:01 -07002125 * Parse a mmacro specification.
2126 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002127static bool parse_mmacro_spec(Token *tline, MMacro *def, const char *directive)
H. Peter Anvina26433d2008-07-16 14:40:01 -07002128{
2129 bool err;
2130
2131 tline = tline->next;
2132 skip_white_(tline);
2133 tline = expand_id(tline);
2134 if (!tok_type_(tline, TOK_ID)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002135 nasm_error(ERR_NONFATAL, "`%s' expects a macro name", directive);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002136 return false;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002137 }
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002138
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002139 def->prev = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002140 def->name = nasm_strdup(tline->text);
2141 def->plus = false;
2142 def->nolist = false;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002143 def->in_progress = 0;
2144 def->rep_nest = NULL;
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002145 def->nparam_min = 0;
2146 def->nparam_max = 0;
2147
H. Peter Anvina26433d2008-07-16 14:40:01 -07002148 tline = expand_smacro(tline->next);
2149 skip_white_(tline);
2150 if (!tok_type_(tline, TOK_NUMBER)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002151 nasm_error(ERR_NONFATAL, "`%s' expects a parameter count", directive);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002152 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002153 def->nparam_min = def->nparam_max =
2154 readnum(tline->text, &err);
2155 if (err)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002156 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002157 "unable to parse parameter count `%s'", tline->text);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002158 }
2159 if (tline && tok_is_(tline->next, "-")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002160 tline = tline->next->next;
2161 if (tok_is_(tline, "*")) {
2162 def->nparam_max = INT_MAX;
2163 } else if (!tok_type_(tline, TOK_NUMBER)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002164 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002165 "`%s' expects a parameter count after `-'", directive);
2166 } else {
2167 def->nparam_max = readnum(tline->text, &err);
2168 if (err) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002169 nasm_error(ERR_NONFATAL, "unable to parse parameter count `%s'",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002170 tline->text);
2171 }
2172 if (def->nparam_min > def->nparam_max) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002173 nasm_error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
Cyrill Gorcunovc9244ea2017-10-22 15:25:48 +03002174 def->nparam_max = def->nparam_min;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002175 }
2176 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002177 }
2178 if (tline && tok_is_(tline->next, "+")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002179 tline = tline->next;
2180 def->plus = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002181 }
2182 if (tline && tok_type_(tline->next, TOK_ID) &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002183 !nasm_stricmp(tline->next->text, ".nolist")) {
2184 tline = tline->next;
2185 def->nolist = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002186 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002187
H. Peter Anvina26433d2008-07-16 14:40:01 -07002188 /*
2189 * Handle default parameters.
2190 */
2191 if (tline && tline->next) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002192 def->dlist = tline->next;
2193 tline->next = NULL;
2194 count_mmac_params(def->dlist, &def->ndefs, &def->defaults);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002195 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002196 def->dlist = NULL;
2197 def->defaults = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002198 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002199 def->expansion = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002200
H. Peter Anvin89cee572009-07-15 09:16:54 -04002201 if (def->defaults && def->ndefs > def->nparam_max - def->nparam_min &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002202 !def->plus)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002203 nasm_error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002204 "too many default macro parameters");
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002205
H. Peter Anvina26433d2008-07-16 14:40:01 -07002206 return true;
2207}
2208
2209
2210/*
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002211 * Decode a size directive
2212 */
2213static int parse_size(const char *str) {
2214 static const char *size_names[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002215 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002216 static const int sizes[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002217 { 0, 1, 4, 16, 8, 10, 2, 32 };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002218
Cyrill Gorcunova7319242010-06-03 22:04:36 +04002219 return sizes[bsii(str, size_names, ARRAY_SIZE(size_names))+1];
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002220}
2221
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002222/*
2223 * Process a preprocessor %pragma directive. Currently there are none.
2224 * Gets passed the token list starting with the "preproc" token from
2225 * "%pragma preproc".
2226 */
2227static void do_pragma_preproc(Token *tline)
2228{
2229 /* Skip to the real stuff */
2230 tline = tline->next;
2231 skip_white_(tline);
2232 if (!tline)
2233 return;
2234
2235 (void)tline; /* Nothing else to do at present */
2236}
2237
Ed Beroset3ab3f412002-06-11 03:31:49 +00002238/**
2239 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002240 * Find out if a line contains a preprocessor directive, and deal
2241 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07002242 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002243 * If a directive _is_ found, it is the responsibility of this routine
2244 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002245 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002246 * @param tline a pointer to the current tokeninzed line linked list
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002247 * @param output if this directive generated output
Ed Beroset3ab3f412002-06-11 03:31:49 +00002248 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07002249 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002250 */
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002251static int do_directive(Token *tline, char **output)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002252{
H. Peter Anvin4169a472007-09-12 01:29:43 +00002253 enum preproc_token i;
2254 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07002255 bool err;
2256 int nparam;
2257 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002258 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07002259 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002260 int offset;
H. Peter Anvinccad6f92016-10-04 00:34:35 -07002261 char *p, *pp;
2262 const char *found_path;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002263 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002264 Include *inc;
2265 Context *ctx;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002266 Cond *cond;
2267 MMacro *mmac, **mmhead;
Jin Kyu Songc9486b92013-10-28 17:07:57 -07002268 Token *t = NULL, *tt, *param_start, *macro_start, *last, **tptr, *origline;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002269 Line *l;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002270 struct tokenval tokval;
2271 expr *evalresult;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002272 MMacro *tmp_defining; /* Used when manipulating rep_nest */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002273 int64_t count;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002274 size_t len;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002275 int severity;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002276
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002277 *output = NULL; /* No output generated */
H. Peter Anvin76690a12002-04-30 20:52:49 +00002278 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002279
H. Peter Anvineba20a72002-04-30 20:53:55 +00002280 skip_white_(tline);
H. Peter Anvinf2936d72008-06-04 15:11:23 -07002281 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00002282 (tline->text[1] == '%' || tline->text[1] == '$'
2283 || tline->text[1] == '!'))
2284 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002285
H. Peter Anvin4169a472007-09-12 01:29:43 +00002286 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002287
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002288 /*
2289 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2290 * since they are known to be buggy at moment, we need to fix them
2291 * in future release (2.09-2.10)
2292 */
Philipp Klokeb432f572013-03-31 12:01:23 +02002293 if (i == PP_RMACRO || i == PP_IRMACRO || i == PP_EXITMACRO) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002294 nasm_error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002295 tline->text);
2296 return NO_DIRECTIVE_FOUND;
2297 }
2298
2299 /*
2300 * If we're in a non-emitting branch of a condition construct,
2301 * or walking to the end of an already terminated %rep block,
2302 * we should ignore all directives except for condition
2303 * directives.
2304 */
2305 if (((istk->conds && !emitting(istk->conds->state)) ||
2306 (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) {
2307 return NO_DIRECTIVE_FOUND;
2308 }
2309
2310 /*
2311 * If we're defining a macro or reading a %rep block, we should
2312 * ignore all directives except for %macro/%imacro (which nest),
2313 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2314 * If we're in a %rep block, another %rep nests, so should be let through.
2315 */
2316 if (defining && i != PP_MACRO && i != PP_IMACRO &&
2317 i != PP_RMACRO && i != PP_IRMACRO &&
2318 i != PP_ENDMACRO && i != PP_ENDM &&
2319 (defining->name || (i != PP_ENDREP && i != PP_REP))) {
2320 return NO_DIRECTIVE_FOUND;
2321 }
2322
2323 if (defining) {
2324 if (i == PP_MACRO || i == PP_IMACRO ||
2325 i == PP_RMACRO || i == PP_IRMACRO) {
2326 nested_mac_count++;
2327 return NO_DIRECTIVE_FOUND;
2328 } else if (nested_mac_count > 0) {
2329 if (i == PP_ENDMACRO) {
2330 nested_mac_count--;
2331 return NO_DIRECTIVE_FOUND;
2332 }
2333 }
2334 if (!defining->name) {
2335 if (i == PP_REP) {
2336 nested_rep_count++;
2337 return NO_DIRECTIVE_FOUND;
2338 } else if (nested_rep_count > 0) {
2339 if (i == PP_ENDREP) {
2340 nested_rep_count--;
2341 return NO_DIRECTIVE_FOUND;
2342 }
2343 }
2344 }
2345 }
2346
H. Peter Anvin4169a472007-09-12 01:29:43 +00002347 switch (i) {
2348 case PP_INVALID:
H. Peter Anvin130736c2016-02-17 20:27:41 -08002349 nasm_error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
H. Peter Anvine2c80182005-01-15 22:15:51 +00002350 tline->text);
2351 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002352
H. Peter Anvin3f87a2a2016-10-04 14:07:19 -07002353 case PP_PRAGMA:
2354 /*
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002355 * %pragma namespace options...
2356 *
2357 * The namespace "preproc" is reserved for the preprocessor;
2358 * all other namespaces generate a [pragma] assembly directive.
2359 *
2360 * Invalid %pragmas are ignored and may have different
2361 * meaning in future versions of NASM.
H. Peter Anvin3f87a2a2016-10-04 14:07:19 -07002362 */
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002363 tline = tline->next;
2364 skip_white_(tline);
2365 tline = expand_smacro(tline);
2366 if (tok_type_(tline, TOK_ID)) {
2367 if (!nasm_stricmp(tline->text, "preproc")) {
2368 /* Preprocessor pragma */
2369 do_pragma_preproc(tline);
2370 } else {
2371 /* Build the assembler directive */
2372 t = new_Token(NULL, TOK_OTHER, "[", 1);
2373 t->next = new_Token(NULL, TOK_ID, "pragma", 6);
2374 t->next->next = new_Token(tline, TOK_WHITESPACE, NULL, 0);
2375 tline = t;
2376 for (t = tline; t->next; t = t->next)
2377 ;
2378 t->next = new_Token(NULL, TOK_OTHER, "]", 1);
2379 /* true here can be revisited in the future */
2380 *output = detoken(tline, true);
2381 }
2382 }
H. Peter Anvin3f87a2a2016-10-04 14:07:19 -07002383 free_tlist(origline);
2384 return DIRECTIVE_FOUND;
2385
H. Peter Anvine2c80182005-01-15 22:15:51 +00002386 case PP_STACKSIZE:
2387 /* Directive to tell NASM what the default stack size is. The
2388 * default is for a 16-bit stack, and this can be overriden with
2389 * %stacksize large.
H. Peter Anvine2c80182005-01-15 22:15:51 +00002390 */
2391 tline = tline->next;
2392 if (tline && tline->type == TOK_WHITESPACE)
2393 tline = tline->next;
2394 if (!tline || tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002395 nasm_error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002396 free_tlist(origline);
2397 return DIRECTIVE_FOUND;
2398 }
2399 if (nasm_stricmp(tline->text, "flat") == 0) {
2400 /* All subsequent ARG directives are for a 32-bit stack */
2401 StackSize = 4;
2402 StackPointer = "ebp";
2403 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002404 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002405 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
2406 /* All subsequent ARG directives are for a 64-bit stack */
2407 StackSize = 8;
2408 StackPointer = "rbp";
Per Jessen53252e02010-02-11 00:16:59 +03002409 ArgOffset = 16;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002410 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002411 } else if (nasm_stricmp(tline->text, "large") == 0) {
2412 /* All subsequent ARG directives are for a 16-bit stack,
2413 * far function call.
2414 */
2415 StackSize = 2;
2416 StackPointer = "bp";
2417 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002418 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002419 } else if (nasm_stricmp(tline->text, "small") == 0) {
2420 /* All subsequent ARG directives are for a 16-bit stack,
2421 * far function call. We don't support near functions.
2422 */
2423 StackSize = 2;
2424 StackPointer = "bp";
2425 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002426 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002427 } else {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002428 nasm_error(ERR_NONFATAL, "`%%stacksize' invalid size type");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002429 free_tlist(origline);
2430 return DIRECTIVE_FOUND;
2431 }
2432 free_tlist(origline);
2433 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002434
H. Peter Anvine2c80182005-01-15 22:15:51 +00002435 case PP_ARG:
2436 /* TASM like ARG directive to define arguments to functions, in
2437 * the following form:
2438 *
2439 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2440 */
2441 offset = ArgOffset;
2442 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002443 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002444 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002445
H. Peter Anvine2c80182005-01-15 22:15:51 +00002446 /* Find the argument name */
2447 tline = tline->next;
2448 if (tline && tline->type == TOK_WHITESPACE)
2449 tline = tline->next;
2450 if (!tline || tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002451 nasm_error(ERR_NONFATAL, "`%%arg' missing argument parameter");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002452 free_tlist(origline);
2453 return DIRECTIVE_FOUND;
2454 }
2455 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002456
H. Peter Anvine2c80182005-01-15 22:15:51 +00002457 /* Find the argument size type */
2458 tline = tline->next;
2459 if (!tline || tline->type != TOK_OTHER
2460 || tline->text[0] != ':') {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002461 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002462 "Syntax error processing `%%arg' directive");
2463 free_tlist(origline);
2464 return DIRECTIVE_FOUND;
2465 }
2466 tline = tline->next;
2467 if (!tline || tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002468 nasm_error(ERR_NONFATAL, "`%%arg' missing size type parameter");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002469 free_tlist(origline);
2470 return DIRECTIVE_FOUND;
2471 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002472
H. Peter Anvine2c80182005-01-15 22:15:51 +00002473 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002474 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002475 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002476 size = parse_size(tt->text);
2477 if (!size) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002478 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002479 "Invalid size type for `%%arg' missing directive");
2480 free_tlist(tt);
2481 free_tlist(origline);
2482 return DIRECTIVE_FOUND;
2483 }
2484 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002485
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002486 /* Round up to even stack slots */
2487 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002488
H. Peter Anvine2c80182005-01-15 22:15:51 +00002489 /* Now define the macro for the argument */
2490 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
2491 arg, StackPointer, offset);
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002492 do_directive(tokenize(directive), output);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002493 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002494
H. Peter Anvine2c80182005-01-15 22:15:51 +00002495 /* Move to the next argument in the list */
2496 tline = tline->next;
2497 if (tline && tline->type == TOK_WHITESPACE)
2498 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002499 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002500 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002501 free_tlist(origline);
2502 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002503
H. Peter Anvine2c80182005-01-15 22:15:51 +00002504 case PP_LOCAL:
2505 /* TASM like LOCAL directive to define local variables for a
2506 * function, in the following form:
2507 *
2508 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2509 *
2510 * The '= LocalSize' at the end is ignored by NASM, but is
2511 * required by TASM to define the local parameter size (and used
2512 * by the TASM macro package).
2513 */
2514 offset = LocalOffset;
2515 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002516 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002517 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002518
H. Peter Anvine2c80182005-01-15 22:15:51 +00002519 /* Find the argument name */
2520 tline = tline->next;
2521 if (tline && tline->type == TOK_WHITESPACE)
2522 tline = tline->next;
2523 if (!tline || tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002524 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002525 "`%%local' missing argument parameter");
2526 free_tlist(origline);
2527 return DIRECTIVE_FOUND;
2528 }
2529 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002530
H. Peter Anvine2c80182005-01-15 22:15:51 +00002531 /* Find the argument size type */
2532 tline = tline->next;
2533 if (!tline || tline->type != TOK_OTHER
2534 || tline->text[0] != ':') {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002535 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002536 "Syntax error processing `%%local' directive");
2537 free_tlist(origline);
2538 return DIRECTIVE_FOUND;
2539 }
2540 tline = tline->next;
2541 if (!tline || tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002542 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002543 "`%%local' missing size type parameter");
2544 free_tlist(origline);
2545 return DIRECTIVE_FOUND;
2546 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002547
H. Peter Anvine2c80182005-01-15 22:15:51 +00002548 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002549 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002550 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002551 size = parse_size(tt->text);
2552 if (!size) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002553 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002554 "Invalid size type for `%%local' missing directive");
2555 free_tlist(tt);
2556 free_tlist(origline);
2557 return DIRECTIVE_FOUND;
2558 }
2559 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002560
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002561 /* Round up to even stack slots */
2562 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002563
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002564 offset += size; /* Negative offset, increment before */
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002565
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002566 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002567 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2568 local, StackPointer, offset);
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002569 do_directive(tokenize(directive), output);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002570
H. Peter Anvine2c80182005-01-15 22:15:51 +00002571 /* Now define the assign to setup the enter_c macro correctly */
2572 snprintf(directive, sizeof(directive),
2573 "%%assign %%$localsize %%$localsize+%d", size);
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07002574 do_directive(tokenize(directive), output);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002575
H. Peter Anvine2c80182005-01-15 22:15:51 +00002576 /* Move to the next argument in the list */
2577 tline = tline->next;
2578 if (tline && tline->type == TOK_WHITESPACE)
2579 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002580 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002581 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002582 free_tlist(origline);
2583 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002584
H. Peter Anvine2c80182005-01-15 22:15:51 +00002585 case PP_CLEAR:
2586 if (tline->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002587 nasm_error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002588 "trailing garbage after `%%clear' ignored");
2589 free_macros();
2590 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002591 free_tlist(origline);
2592 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002593
H. Peter Anvin418ca702008-05-30 10:42:30 -07002594 case PP_DEPEND:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002595 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002596 skip_white_(t);
2597 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002598 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002599 nasm_error(ERR_NONFATAL, "`%%depend' expects a file name");
H. Peter Anvin418ca702008-05-30 10:42:30 -07002600 free_tlist(origline);
2601 return DIRECTIVE_FOUND; /* but we did _something_ */
2602 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002603 if (t->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002604 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07002605 "trailing garbage after `%%depend' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002606 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002607 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002608 nasm_unquote_cstr(p, i);
H. Peter Anvin436e3672016-10-04 01:12:28 -07002609 nasm_add_string_to_strlist(dephead, p);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002610 free_tlist(origline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002611 return DIRECTIVE_FOUND;
2612
2613 case PP_INCLUDE:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002614 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002615 skip_white_(t);
H. Peter Anvind2456592008-06-19 15:04:18 -07002616
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002617 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002618 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002619 nasm_error(ERR_NONFATAL, "`%%include' expects a file name");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002620 free_tlist(origline);
2621 return DIRECTIVE_FOUND; /* but we did _something_ */
2622 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002623 if (t->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002624 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002625 "trailing garbage after `%%include' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002626 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002627 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002628 nasm_unquote_cstr(p, i);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002629 inc = nasm_malloc(sizeof(Include));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002630 inc->next = istk;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002631 inc->conds = NULL;
Jim Kukunas65a8afc2016-06-13 16:00:42 -04002632 found_path = NULL;
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07002633 inc->fp = inc_fopen(p, dephead, &found_path,
H. Peter Anvind81a2352016-09-21 14:03:18 -07002634 pass == 0 ? INC_OPTIONAL : INC_NEEDED, NF_TEXT);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002635 if (!inc->fp) {
2636 /* -MG given but file not found */
2637 nasm_free(inc);
2638 } else {
Jim Kukunas65a8afc2016-06-13 16:00:42 -04002639 inc->fname = src_set_fname(found_path ? found_path : p);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002640 inc->lineno = src_set_linnum(0);
2641 inc->lineinc = 1;
2642 inc->expansion = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002643 inc->mstk = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002644 istk = inc;
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08002645 lfmt->uplevel(LIST_INCLUDE);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002646 }
2647 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002648 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002649
H. Peter Anvind2456592008-06-19 15:04:18 -07002650 case PP_USE:
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002651 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002652 static macros_t *use_pkg;
2653 const char *pkg_macro = NULL;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002654
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002655 tline = tline->next;
2656 skip_white_(tline);
2657 tline = expand_id(tline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002658
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002659 if (!tline || (tline->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002660 tline->type != TOK_INTERNAL_STRING &&
2661 tline->type != TOK_ID)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002662 nasm_error(ERR_NONFATAL, "`%%use' expects a package name");
H. Peter Anvind2456592008-06-19 15:04:18 -07002663 free_tlist(origline);
2664 return DIRECTIVE_FOUND; /* but we did _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002665 }
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002666 if (tline->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002667 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvind2456592008-06-19 15:04:18 -07002668 "trailing garbage after `%%use' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002669 if (tline->type == TOK_STRING)
2670 nasm_unquote_cstr(tline->text, i);
2671 use_pkg = nasm_stdmac_find_package(tline->text);
2672 if (!use_pkg)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002673 nasm_error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002674 else
2675 pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */
Victor van den Elzen35eb2ea2010-03-10 22:33:48 +01002676 if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002677 /* Not already included, go ahead and include it */
2678 stdmacpos = use_pkg;
2679 }
2680 free_tlist(origline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002681 return DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002682 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002683 case PP_PUSH:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002684 case PP_REPL:
H. Peter Anvin42b56392008-10-24 16:24:21 -07002685 case PP_POP:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002686 tline = tline->next;
2687 skip_white_(tline);
2688 tline = expand_id(tline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002689 if (tline) {
2690 if (!tok_type_(tline, TOK_ID)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002691 nasm_error(ERR_NONFATAL, "`%s' expects a context identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002692 pp_directives[i]);
2693 free_tlist(origline);
2694 return DIRECTIVE_FOUND; /* but we did _something_ */
2695 }
2696 if (tline->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002697 nasm_error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002698 "trailing garbage after `%s' ignored",
2699 pp_directives[i]);
2700 p = nasm_strdup(tline->text);
2701 } else {
2702 p = NULL; /* Anonymous */
2703 }
H. Peter Anvin42b56392008-10-24 16:24:21 -07002704
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002705 if (i == PP_PUSH) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002706 ctx = nasm_malloc(sizeof(Context));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002707 ctx->next = cstk;
2708 hash_init(&ctx->localmac, HASH_SMALL);
2709 ctx->name = p;
2710 ctx->number = unique++;
2711 cstk = ctx;
2712 } else {
2713 /* %pop or %repl */
2714 if (!cstk) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002715 nasm_error(ERR_NONFATAL, "`%s': context stack is empty",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002716 pp_directives[i]);
2717 } else if (i == PP_POP) {
2718 if (p && (!cstk->name || nasm_stricmp(p, cstk->name)))
H. Peter Anvin130736c2016-02-17 20:27:41 -08002719 nasm_error(ERR_NONFATAL, "`%%pop' in wrong context: %s, "
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002720 "expected %s",
2721 cstk->name ? cstk->name : "anonymous", p);
2722 else
2723 ctx_pop();
2724 } else {
2725 /* i == PP_REPL */
2726 nasm_free(cstk->name);
2727 cstk->name = p;
2728 p = NULL;
2729 }
2730 nasm_free(p);
2731 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002732 free_tlist(origline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002733 return DIRECTIVE_FOUND;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002734 case PP_FATAL:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002735 severity = ERR_FATAL;
2736 goto issue_error;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002737 case PP_ERROR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002738 severity = ERR_NONFATAL;
2739 goto issue_error;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002740 case PP_WARNING:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002741 severity = ERR_WARNING|ERR_WARN_USER;
2742 goto issue_error;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002743
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002744issue_error:
H. Peter Anvin7df04172008-06-10 18:27:38 -07002745 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002746 /* Only error out if this is the final pass */
2747 if (pass != 2 && i != PP_FATAL)
2748 return DIRECTIVE_FOUND;
2749
2750 tline->next = expand_smacro(tline->next);
2751 tline = tline->next;
2752 skip_white_(tline);
2753 t = tline ? tline->next : NULL;
2754 skip_white_(t);
2755 if (tok_type_(tline, TOK_STRING) && !t) {
2756 /* The line contains only a quoted string */
2757 p = tline->text;
2758 nasm_unquote(p, NULL); /* Ignore NUL character truncation */
H. Peter Anvin130736c2016-02-17 20:27:41 -08002759 nasm_error(severity, "%s", p);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002760 } else {
2761 /* Not a quoted string, or more than a quoted string */
2762 p = detoken(tline, false);
H. Peter Anvin130736c2016-02-17 20:27:41 -08002763 nasm_error(severity, "%s", p);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002764 nasm_free(p);
2765 }
2766 free_tlist(origline);
2767 return DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002768 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002769
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002770 CASE_PP_IF:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002771 if (istk->conds && !emitting(istk->conds->state))
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002772 j = COND_NEVER;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002773 else {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002774 j = if_condition(tline->next, i);
2775 tline->next = NULL; /* it got freed */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002776 j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002777 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002778 cond = nasm_malloc(sizeof(Cond));
2779 cond->next = istk->conds;
2780 cond->state = j;
2781 istk->conds = cond;
2782 if(istk->mstk)
2783 istk->mstk->condcnt ++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002784 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002785 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002786
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002787 CASE_PP_ELIF:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002788 if (!istk->conds)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002789 nasm_error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002790 switch(istk->conds->state) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002791 case COND_IF_TRUE:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002792 istk->conds->state = COND_DONE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002793 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002794
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002795 case COND_DONE:
2796 case COND_NEVER:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002797 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002798
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002799 case COND_ELSE_TRUE:
2800 case COND_ELSE_FALSE:
H. Peter Anvin130736c2016-02-17 20:27:41 -08002801 nasm_error(ERR_WARNING|ERR_PASS1|ERR_PP_PRECOND,
2802 "`%%elif' after `%%else' ignored");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002803 istk->conds->state = COND_NEVER;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002804 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002805
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002806 case COND_IF_FALSE:
2807 /*
2808 * IMPORTANT: In the case of %if, we will already have
2809 * called expand_mmac_params(); however, if we're
2810 * processing an %elif we must have been in a
2811 * non-emitting mode, which would have inhibited
2812 * the normal invocation of expand_mmac_params().
2813 * Therefore, we have to do it explicitly here.
2814 */
2815 j = if_condition(expand_mmac_params(tline->next), i);
2816 tline->next = NULL; /* it got freed */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002817 istk->conds->state =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002818 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2819 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002820 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002821 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002822 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002823
H. Peter Anvine2c80182005-01-15 22:15:51 +00002824 case PP_ELSE:
2825 if (tline->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002826 nasm_error(ERR_WARNING|ERR_PASS1|ERR_PP_PRECOND,
2827 "trailing garbage after `%%else' ignored");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002828 if (!istk->conds)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002829 nasm_fatal(0, "`%%else: no matching `%%if'");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002830 switch(istk->conds->state) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002831 case COND_IF_TRUE:
2832 case COND_DONE:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002833 istk->conds->state = COND_ELSE_FALSE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002834 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002835
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002836 case COND_NEVER:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002837 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002838
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002839 case COND_IF_FALSE:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002840 istk->conds->state = COND_ELSE_TRUE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002841 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002842
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002843 case COND_ELSE_TRUE:
2844 case COND_ELSE_FALSE:
H. Peter Anvin130736c2016-02-17 20:27:41 -08002845 nasm_error(ERR_WARNING|ERR_PASS1|ERR_PP_PRECOND,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002846 "`%%else' after `%%else' ignored.");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002847 istk->conds->state = COND_NEVER;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002848 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002849 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002850 free_tlist(origline);
2851 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002852
H. Peter Anvine2c80182005-01-15 22:15:51 +00002853 case PP_ENDIF:
2854 if (tline->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002855 nasm_error(ERR_WARNING|ERR_PASS1|ERR_PP_PRECOND,
2856 "trailing garbage after `%%endif' ignored");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002857 if (!istk->conds)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002858 nasm_error(ERR_FATAL, "`%%endif': no matching `%%if'");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002859 cond = istk->conds;
2860 istk->conds = cond->next;
2861 nasm_free(cond);
2862 if(istk->mstk)
2863 istk->mstk->condcnt --;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002864 free_tlist(origline);
2865 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002866
H. Peter Anvindb8f96e2009-07-15 09:07:29 -04002867 case PP_RMACRO:
2868 case PP_IRMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002869 case PP_MACRO:
2870 case PP_IMACRO:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002871 if (defining) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002872 nasm_error(ERR_FATAL, "`%s': already defining a macro",
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002873 pp_directives[i]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002874 return DIRECTIVE_FOUND;
2875 }
H. Peter Anvin4def1a82016-05-09 13:59:44 -07002876 defining = nasm_zalloc(sizeof(MMacro));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002877 defining->max_depth =
2878 (i == PP_RMACRO) || (i == PP_IRMACRO) ? DEADMAN_LIMIT : 0;
2879 defining->casesense = (i == PP_MACRO) || (i == PP_RMACRO);
2880 if (!parse_mmacro_spec(tline, defining, pp_directives[i])) {
2881 nasm_free(defining);
2882 defining = NULL;
2883 return DIRECTIVE_FOUND;
2884 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002885
H. Peter Anvin4def1a82016-05-09 13:59:44 -07002886 src_get(&defining->xline, &defining->fname);
2887
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002888 mmac = (MMacro *) hash_findix(&mmacros, defining->name);
2889 while (mmac) {
2890 if (!strcmp(mmac->name, defining->name) &&
2891 (mmac->nparam_min <= defining->nparam_max
2892 || defining->plus)
2893 && (defining->nparam_min <= mmac->nparam_max
2894 || mmac->plus)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002895 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002896 "redefining multi-line macro `%s'", defining->name);
2897 return DIRECTIVE_FOUND;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002898 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002899 mmac = mmac->next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002900 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002901 free_tlist(origline);
2902 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002903
H. Peter Anvine2c80182005-01-15 22:15:51 +00002904 case PP_ENDM:
2905 case PP_ENDMACRO:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002906 if (! (defining && defining->name)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002907 nasm_error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002908 return DIRECTIVE_FOUND;
2909 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002910 mmhead = (MMacro **) hash_findi_add(&mmacros, defining->name);
2911 defining->next = *mmhead;
2912 *mmhead = defining;
2913 defining = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002914 free_tlist(origline);
2915 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002916
H. Peter Anvin89cee572009-07-15 09:16:54 -04002917 case PP_EXITMACRO:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002918 /*
2919 * We must search along istk->expansion until we hit a
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002920 * macro-end marker for a macro with a name. Then we
2921 * bypass all lines between exitmacro and endmacro.
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002922 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002923 list_for_each(l, istk->expansion)
2924 if (l->finishes && l->finishes->name)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002925 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002926
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002927 if (l) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002928 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002929 * Remove all conditional entries relative to this
2930 * macro invocation. (safe to do in this context)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002931 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002932 for ( ; l->finishes->condcnt > 0; l->finishes->condcnt --) {
2933 cond = istk->conds;
2934 istk->conds = cond->next;
2935 nasm_free(cond);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002936 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002937 istk->expansion = l;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002938 } else {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002939 nasm_error(ERR_NONFATAL, "`%%exitmacro' not within `%%macro' block");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002940 }
Keith Kanios852f1ee2009-07-12 00:19:55 -05002941 free_tlist(origline);
2942 return DIRECTIVE_FOUND;
2943
H. Peter Anvina26433d2008-07-16 14:40:01 -07002944 case PP_UNMACRO:
2945 case PP_UNIMACRO:
2946 {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002947 MMacro **mmac_p;
2948 MMacro spec;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002949
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002950 spec.casesense = (i == PP_UNMACRO);
2951 if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) {
2952 return DIRECTIVE_FOUND;
2953 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002954 mmac_p = (MMacro **) hash_findi(&mmacros, spec.name, NULL);
2955 while (mmac_p && *mmac_p) {
2956 mmac = *mmac_p;
2957 if (mmac->casesense == spec.casesense &&
2958 !mstrcmp(mmac->name, spec.name, spec.casesense) &&
2959 mmac->nparam_min == spec.nparam_min &&
2960 mmac->nparam_max == spec.nparam_max &&
2961 mmac->plus == spec.plus) {
2962 *mmac_p = mmac->next;
2963 free_mmacro(mmac);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002964 } else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002965 mmac_p = &mmac->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002966 }
2967 }
2968 free_tlist(origline);
2969 free_tlist(spec.dlist);
2970 return DIRECTIVE_FOUND;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002971 }
2972
H. Peter Anvine2c80182005-01-15 22:15:51 +00002973 case PP_ROTATE:
2974 if (tline->next && tline->next->type == TOK_WHITESPACE)
2975 tline = tline->next;
H. Peter Anvin89cee572009-07-15 09:16:54 -04002976 if (!tline->next) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002977 free_tlist(origline);
H. Peter Anvin130736c2016-02-17 20:27:41 -08002978 nasm_error(ERR_NONFATAL, "`%%rotate' missing rotate count");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002979 return DIRECTIVE_FOUND;
2980 }
2981 t = expand_smacro(tline->next);
2982 tline->next = NULL;
2983 free_tlist(origline);
2984 tline = t;
2985 tptr = &t;
2986 tokval.t_type = TOKEN_INVALID;
2987 evalresult =
H. Peter Anvin130736c2016-02-17 20:27:41 -08002988 evaluate(ppscan, tptr, &tokval, NULL, pass, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002989 free_tlist(tline);
2990 if (!evalresult)
2991 return DIRECTIVE_FOUND;
2992 if (tokval.t_type)
H. Peter Anvin130736c2016-02-17 20:27:41 -08002993 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002994 "trailing garbage after expression ignored");
2995 if (!is_simple(evalresult)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08002996 nasm_error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002997 return DIRECTIVE_FOUND;
2998 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002999 mmac = istk->mstk;
3000 while (mmac && !mmac->name) /* avoid mistaking %reps for macros */
3001 mmac = mmac->next_active;
3002 if (!mmac) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003003 nasm_error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003004 } else if (mmac->nparam == 0) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003005 nasm_error(ERR_NONFATAL,
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003006 "`%%rotate' invoked within macro without parameters");
3007 } else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003008 int rotate = mmac->rotate + reloc_value(evalresult);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003009
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003010 rotate %= (int)mmac->nparam;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003011 if (rotate < 0)
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003012 rotate += mmac->nparam;
3013
3014 mmac->rotate = rotate;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003015 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003016 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003017
H. Peter Anvine2c80182005-01-15 22:15:51 +00003018 case PP_REP:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003019 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003020 do {
3021 tline = tline->next;
3022 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003023
H. Peter Anvine2c80182005-01-15 22:15:51 +00003024 if (tok_type_(tline, TOK_ID) &&
3025 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003026 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003027 do {
3028 tline = tline->next;
3029 } while (tok_type_(tline, TOK_WHITESPACE));
3030 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003031
H. Peter Anvine2c80182005-01-15 22:15:51 +00003032 if (tline) {
3033 t = expand_smacro(tline);
3034 tptr = &t;
3035 tokval.t_type = TOKEN_INVALID;
3036 evalresult =
H. Peter Anvin130736c2016-02-17 20:27:41 -08003037 evaluate(ppscan, tptr, &tokval, NULL, pass, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003038 if (!evalresult) {
3039 free_tlist(origline);
3040 return DIRECTIVE_FOUND;
3041 }
3042 if (tokval.t_type)
H. Peter Anvin130736c2016-02-17 20:27:41 -08003043 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003044 "trailing garbage after expression ignored");
3045 if (!is_simple(evalresult)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003046 nasm_error(ERR_NONFATAL, "non-constant value given to `%%rep'");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003047 return DIRECTIVE_FOUND;
3048 }
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04003049 count = reloc_value(evalresult);
3050 if (count >= REP_LIMIT) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003051 nasm_error(ERR_NONFATAL, "`%%rep' value exceeds limit");
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04003052 count = 0;
3053 } else
3054 count++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003055 } else {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003056 nasm_error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07003057 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003058 }
3059 free_tlist(origline);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003060
3061 tmp_defining = defining;
3062 defining = nasm_malloc(sizeof(MMacro));
3063 defining->prev = NULL;
3064 defining->name = NULL; /* flags this macro as a %rep block */
3065 defining->casesense = false;
3066 defining->plus = false;
3067 defining->nolist = nolist;
3068 defining->in_progress = count;
3069 defining->max_depth = 0;
3070 defining->nparam_min = defining->nparam_max = 0;
3071 defining->defaults = NULL;
3072 defining->dlist = NULL;
3073 defining->expansion = NULL;
3074 defining->next_active = istk->mstk;
3075 defining->rep_nest = tmp_defining;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003076 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003077
H. Peter Anvine2c80182005-01-15 22:15:51 +00003078 case PP_ENDREP:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003079 if (!defining || defining->name) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003080 nasm_error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003081 return DIRECTIVE_FOUND;
3082 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003083
H. Peter Anvine2c80182005-01-15 22:15:51 +00003084 /*
3085 * Now we have a "macro" defined - although it has no name
3086 * and we won't be entering it in the hash tables - we must
3087 * push a macro-end marker for it on to istk->expansion.
3088 * After that, it will take care of propagating itself (a
3089 * macro-end marker line for a macro which is really a %rep
3090 * block will cause the macro to be re-expanded, complete
3091 * with another macro-end marker to ensure the process
3092 * continues) until the whole expansion is forcibly removed
3093 * from istk->expansion by a %exitrep.
3094 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003095 l = nasm_malloc(sizeof(Line));
3096 l->next = istk->expansion;
3097 l->finishes = defining;
3098 l->first = NULL;
3099 istk->expansion = l;
3100
3101 istk->mstk = defining;
3102
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08003103 lfmt->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003104 tmp_defining = defining;
3105 defining = defining->rep_nest;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003106 free_tlist(origline);
3107 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003108
H. Peter Anvine2c80182005-01-15 22:15:51 +00003109 case PP_EXITREP:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003110 /*
3111 * We must search along istk->expansion until we hit a
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003112 * macro-end marker for a macro with no name. Then we set
3113 * its `in_progress' flag to 0.
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003114 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003115 list_for_each(l, istk->expansion)
3116 if (l->finishes && !l->finishes->name)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003117 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003118
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003119 if (l)
3120 l->finishes->in_progress = 1;
3121 else
H. Peter Anvin130736c2016-02-17 20:27:41 -08003122 nasm_error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003123 free_tlist(origline);
3124 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003125
H. Peter Anvine2c80182005-01-15 22:15:51 +00003126 case PP_XDEFINE:
3127 case PP_IXDEFINE:
3128 case PP_DEFINE:
3129 case PP_IDEFINE:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003130 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003131
H. Peter Anvine2c80182005-01-15 22:15:51 +00003132 tline = tline->next;
3133 skip_white_(tline);
3134 tline = expand_id(tline);
3135 if (!tline || (tline->type != TOK_ID &&
3136 (tline->type != TOK_PREPROC_ID ||
3137 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003138 nasm_error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003139 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003140 free_tlist(origline);
3141 return DIRECTIVE_FOUND;
3142 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003143
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003144 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003145 last = tline;
3146 param_start = tline = tline->next;
3147 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003148
H. Peter Anvine2c80182005-01-15 22:15:51 +00003149 /* Expand the macro definition now for %xdefine and %ixdefine */
3150 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
3151 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003152
H. Peter Anvine2c80182005-01-15 22:15:51 +00003153 if (tok_is_(tline, "(")) {
3154 /*
3155 * This macro has parameters.
3156 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003157
H. Peter Anvine2c80182005-01-15 22:15:51 +00003158 tline = tline->next;
3159 while (1) {
3160 skip_white_(tline);
3161 if (!tline) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003162 nasm_error(ERR_NONFATAL, "parameter identifier expected");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003163 free_tlist(origline);
3164 return DIRECTIVE_FOUND;
3165 }
3166 if (tline->type != TOK_ID) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003167 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003168 "`%s': parameter identifier expected",
3169 tline->text);
3170 free_tlist(origline);
3171 return DIRECTIVE_FOUND;
3172 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003173 tline->type = TOK_SMAC_PARAM + nparam++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003174 tline = tline->next;
3175 skip_white_(tline);
3176 if (tok_is_(tline, ",")) {
3177 tline = tline->next;
H. Peter Anvinca348b62008-07-23 10:49:26 -04003178 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003179 if (!tok_is_(tline, ")")) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003180 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003181 "`)' expected to terminate macro template");
3182 free_tlist(origline);
3183 return DIRECTIVE_FOUND;
3184 }
3185 break;
3186 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003187 }
3188 last = tline;
3189 tline = tline->next;
3190 }
3191 if (tok_type_(tline, TOK_WHITESPACE))
3192 last = tline, tline = tline->next;
3193 macro_start = NULL;
3194 last->next = NULL;
3195 t = tline;
3196 while (t) {
3197 if (t->type == TOK_ID) {
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003198 list_for_each(tt, param_start)
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003199 if (tt->type >= TOK_SMAC_PARAM &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00003200 !strcmp(tt->text, t->text))
3201 t->type = tt->type;
3202 }
3203 tt = t->next;
3204 t->next = macro_start;
3205 macro_start = t;
3206 t = tt;
3207 }
3208 /*
3209 * Good. We now have a macro name, a parameter count, and a
3210 * token list (in reverse order) for an expansion. We ought
3211 * to be OK just to create an SMacro, store it, and let
3212 * free_tlist have the rest of the line (which we have
3213 * carefully re-terminated after chopping off the expansion
3214 * from the end).
3215 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003216 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003217 free_tlist(origline);
3218 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003219
H. Peter Anvine2c80182005-01-15 22:15:51 +00003220 case PP_UNDEF:
3221 tline = tline->next;
3222 skip_white_(tline);
3223 tline = expand_id(tline);
3224 if (!tline || (tline->type != TOK_ID &&
3225 (tline->type != TOK_PREPROC_ID ||
3226 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003227 nasm_error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003228 free_tlist(origline);
3229 return DIRECTIVE_FOUND;
3230 }
3231 if (tline->next) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003232 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003233 "trailing garbage after macro name ignored");
3234 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003235
H. Peter Anvine2c80182005-01-15 22:15:51 +00003236 /* Find the context that symbol belongs to */
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003237 ctx = get_ctx(tline->text, &mname);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003238 undef_smacro(ctx, mname);
3239 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003240 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003241
H. Peter Anvin9e200162008-06-04 17:23:14 -07003242 case PP_DEFSTR:
3243 case PP_IDEFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003244 casesense = (i == PP_DEFSTR);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003245
3246 tline = tline->next;
3247 skip_white_(tline);
3248 tline = expand_id(tline);
3249 if (!tline || (tline->type != TOK_ID &&
3250 (tline->type != TOK_PREPROC_ID ||
3251 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003252 nasm_error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003253 pp_directives[i]);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003254 free_tlist(origline);
3255 return DIRECTIVE_FOUND;
3256 }
3257
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003258 ctx = get_ctx(tline->text, &mname);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003259 last = tline;
3260 tline = expand_smacro(tline->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003261 last->next = NULL;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003262
3263 while (tok_type_(tline, TOK_WHITESPACE))
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003264 tline = delete_Token(tline);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003265
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003266 p = detoken(tline, false);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003267 macro_start = nasm_malloc(sizeof(*macro_start));
3268 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003269 macro_start->text = nasm_quote(p, strlen(p));
3270 macro_start->type = TOK_STRING;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003271 macro_start->a.mac = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003272 nasm_free(p);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003273
3274 /*
3275 * We now have a macro name, an implicit parameter count of
3276 * zero, and a string token to use as an expansion. Create
3277 * and store an SMacro.
3278 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003279 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003280 free_tlist(origline);
3281 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003282
H. Peter Anvin2f55bda2009-07-14 15:04:04 -04003283 case PP_DEFTOK:
3284 case PP_IDEFTOK:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003285 casesense = (i == PP_DEFTOK);
3286
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003287 tline = tline->next;
3288 skip_white_(tline);
3289 tline = expand_id(tline);
3290 if (!tline || (tline->type != TOK_ID &&
3291 (tline->type != TOK_PREPROC_ID ||
3292 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003293 nasm_error(ERR_NONFATAL,
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003294 "`%s' expects a macro identifier as first parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003295 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003296 free_tlist(origline);
3297 return DIRECTIVE_FOUND;
3298 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003299 ctx = get_ctx(tline->text, &mname);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003300 last = tline;
3301 tline = expand_smacro(tline->next);
3302 last->next = NULL;
3303
3304 t = tline;
3305 while (tok_type_(t, TOK_WHITESPACE))
3306 t = t->next;
3307 /* t should now point to the string */
Cyrill Gorcunov6908e582010-09-06 19:36:15 +04003308 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003309 nasm_error(ERR_NONFATAL,
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003310 "`%s` requires string as second parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003311 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003312 free_tlist(tline);
3313 free_tlist(origline);
3314 return DIRECTIVE_FOUND;
3315 }
3316
Cyrill Gorcunov4d8dbd92014-06-28 10:15:18 +04003317 /*
3318 * Convert the string to a token stream. Note that smacros
3319 * are stored with the token stream reversed, so we have to
3320 * reverse the output of tokenize().
3321 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003322 nasm_unquote_cstr(t->text, i);
H. Peter Anvinb40992c2010-09-15 08:57:21 -07003323 macro_start = reverse_tokens(tokenize(t->text));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003324
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003325 /*
3326 * We now have a macro name, an implicit parameter count of
3327 * zero, and a numeric token to use as an expansion. Create
3328 * and store an SMacro.
3329 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003330 define_smacro(ctx, mname, casesense, 0, macro_start);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003331 free_tlist(tline);
3332 free_tlist(origline);
3333 return DIRECTIVE_FOUND;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003334
H. Peter Anvin418ca702008-05-30 10:42:30 -07003335 case PP_PATHSEARCH:
3336 {
H. Peter Anvinccad6f92016-10-04 00:34:35 -07003337 const char *found_path;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003338
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003339 casesense = true;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003340
3341 tline = tline->next;
3342 skip_white_(tline);
3343 tline = expand_id(tline);
3344 if (!tline || (tline->type != TOK_ID &&
3345 (tline->type != TOK_PREPROC_ID ||
3346 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003347 nasm_error(ERR_NONFATAL,
H. Peter Anvin418ca702008-05-30 10:42:30 -07003348 "`%%pathsearch' expects a macro identifier as first parameter");
3349 free_tlist(origline);
3350 return DIRECTIVE_FOUND;
3351 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003352 ctx = get_ctx(tline->text, &mname);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003353 last = tline;
3354 tline = expand_smacro(tline->next);
3355 last->next = NULL;
3356
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003357 t = tline;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003358 while (tok_type_(t, TOK_WHITESPACE))
3359 t = t->next;
3360
3361 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003362 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003363 nasm_error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003364 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003365 free_tlist(origline);
3366 return DIRECTIVE_FOUND; /* but we did _something_ */
3367 }
3368 if (t->next)
H. Peter Anvin130736c2016-02-17 20:27:41 -08003369 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07003370 "trailing garbage after `%%pathsearch' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003371 p = t->text;
H. Peter Anvin427cc912008-06-01 21:43:03 -07003372 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003373 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003374
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07003375 inc_fopen(p, NULL, &found_path, INC_PROBE, NF_BINARY);
H. Peter Anvinccad6f92016-10-04 00:34:35 -07003376 if (!found_path)
3377 found_path = p;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003378 macro_start = nasm_malloc(sizeof(*macro_start));
3379 macro_start->next = NULL;
H. Peter Anvinccad6f92016-10-04 00:34:35 -07003380 macro_start->text = nasm_quote(found_path, strlen(found_path));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003381 macro_start->type = TOK_STRING;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003382 macro_start->a.mac = NULL;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003383
3384 /*
3385 * We now have a macro name, an implicit parameter count of
3386 * zero, and a string token to use as an expansion. Create
3387 * and store an SMacro.
3388 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003389 define_smacro(ctx, mname, casesense, 0, macro_start);
3390 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003391 free_tlist(origline);
3392 return DIRECTIVE_FOUND;
3393 }
3394
H. Peter Anvine2c80182005-01-15 22:15:51 +00003395 case PP_STRLEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003396 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07003397
H. Peter Anvine2c80182005-01-15 22:15:51 +00003398 tline = tline->next;
3399 skip_white_(tline);
3400 tline = expand_id(tline);
3401 if (!tline || (tline->type != TOK_ID &&
3402 (tline->type != TOK_PREPROC_ID ||
3403 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003404 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003405 "`%%strlen' expects a macro identifier as first parameter");
3406 free_tlist(origline);
3407 return DIRECTIVE_FOUND;
3408 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003409 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003410 last = tline;
3411 tline = expand_smacro(tline->next);
3412 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003413
H. Peter Anvine2c80182005-01-15 22:15:51 +00003414 t = tline;
3415 while (tok_type_(t, TOK_WHITESPACE))
3416 t = t->next;
3417 /* t should now point to the string */
Cyrill Gorcunov4e1d5ab2010-07-23 18:51:51 +04003418 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003419 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003420 "`%%strlen` requires string as second parameter");
3421 free_tlist(tline);
3422 free_tlist(origline);
3423 return DIRECTIVE_FOUND;
3424 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003425
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003426 macro_start = nasm_malloc(sizeof(*macro_start));
3427 macro_start->next = NULL;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003428 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003429 macro_start->a.mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003430
H. Peter Anvine2c80182005-01-15 22:15:51 +00003431 /*
3432 * We now have a macro name, an implicit parameter count of
3433 * zero, and a numeric token to use as an expansion. Create
3434 * and store an SMacro.
3435 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003436 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003437 free_tlist(tline);
3438 free_tlist(origline);
3439 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003440
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003441 case PP_STRCAT:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003442 casesense = true;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003443
3444 tline = tline->next;
3445 skip_white_(tline);
3446 tline = expand_id(tline);
3447 if (!tline || (tline->type != TOK_ID &&
3448 (tline->type != TOK_PREPROC_ID ||
3449 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003450 nasm_error(ERR_NONFATAL,
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003451 "`%%strcat' expects a macro identifier as first parameter");
3452 free_tlist(origline);
3453 return DIRECTIVE_FOUND;
3454 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003455 ctx = get_ctx(tline->text, &mname);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003456 last = tline;
3457 tline = expand_smacro(tline->next);
3458 last->next = NULL;
3459
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003460 len = 0;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003461 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003462 switch (t->type) {
3463 case TOK_WHITESPACE:
3464 break;
3465 case TOK_STRING:
3466 len += t->a.len = nasm_unquote(t->text, NULL);
3467 break;
3468 case TOK_OTHER:
3469 if (!strcmp(t->text, ",")) /* permit comma separators */
3470 break;
3471 /* else fall through */
3472 default:
H. Peter Anvin130736c2016-02-17 20:27:41 -08003473 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003474 "non-string passed to `%%strcat' (%d)", t->type);
3475 free_tlist(tline);
3476 free_tlist(origline);
3477 return DIRECTIVE_FOUND;
3478 }
3479 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003480
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003481 p = pp = nasm_malloc(len);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003482 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003483 if (t->type == TOK_STRING) {
3484 memcpy(p, t->text, t->a.len);
3485 p += t->a.len;
3486 }
3487 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003488
3489 /*
3490 * We now have a macro name, an implicit parameter count of
3491 * zero, and a numeric token to use as an expansion. Create
3492 * and store an SMacro.
3493 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003494 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
3495 macro_start->text = nasm_quote(pp, len);
3496 nasm_free(pp);
3497 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003498 free_tlist(tline);
3499 free_tlist(origline);
3500 return DIRECTIVE_FOUND;
3501
H. Peter Anvine2c80182005-01-15 22:15:51 +00003502 case PP_SUBSTR:
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003503 {
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003504 int64_t start, count;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003505 size_t len;
H. Peter Anvind2456592008-06-19 15:04:18 -07003506
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003507 casesense = true;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003508
H. Peter Anvine2c80182005-01-15 22:15:51 +00003509 tline = tline->next;
3510 skip_white_(tline);
3511 tline = expand_id(tline);
3512 if (!tline || (tline->type != TOK_ID &&
3513 (tline->type != TOK_PREPROC_ID ||
3514 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003515 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003516 "`%%substr' expects a macro identifier as first parameter");
3517 free_tlist(origline);
3518 return DIRECTIVE_FOUND;
3519 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003520 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003521 last = tline;
3522 tline = expand_smacro(tline->next);
3523 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003524
Cyrill Gorcunov35519d62010-09-06 23:49:52 +04003525 if (tline) /* skip expanded id */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003526 t = tline->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003527 while (tok_type_(t, TOK_WHITESPACE))
3528 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003529
H. Peter Anvine2c80182005-01-15 22:15:51 +00003530 /* t should now point to the string */
Cyrill Gorcunov35519d62010-09-06 23:49:52 +04003531 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003532 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003533 "`%%substr` requires string as second parameter");
3534 free_tlist(tline);
3535 free_tlist(origline);
3536 return DIRECTIVE_FOUND;
3537 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003538
H. Peter Anvine2c80182005-01-15 22:15:51 +00003539 tt = t->next;
3540 tptr = &tt;
3541 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin130736c2016-02-17 20:27:41 -08003542 evalresult = evaluate(ppscan, tptr, &tokval, NULL, pass, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003543 if (!evalresult) {
3544 free_tlist(tline);
3545 free_tlist(origline);
3546 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003547 } else if (!is_simple(evalresult)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003548 nasm_error(ERR_NONFATAL, "non-constant value given to `%%substr`");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003549 free_tlist(tline);
3550 free_tlist(origline);
3551 return DIRECTIVE_FOUND;
3552 }
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003553 start = evalresult->value - 1;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003554
3555 while (tok_type_(tt, TOK_WHITESPACE))
3556 tt = tt->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003557 if (!tt) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003558 count = 1; /* Backwards compatibility: one character */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003559 } else {
3560 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin130736c2016-02-17 20:27:41 -08003561 evalresult = evaluate(ppscan, tptr, &tokval, NULL, pass, NULL);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003562 if (!evalresult) {
3563 free_tlist(tline);
3564 free_tlist(origline);
3565 return DIRECTIVE_FOUND;
3566 } else if (!is_simple(evalresult)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003567 nasm_error(ERR_NONFATAL, "non-constant value given to `%%substr`");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003568 free_tlist(tline);
3569 free_tlist(origline);
3570 return DIRECTIVE_FOUND;
3571 }
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003572 count = evalresult->value;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003573 }
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003574
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003575 len = nasm_unquote(t->text, NULL);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003576
Cyrill Gorcunovcff031e2010-09-07 20:31:11 +04003577 /* make start and count being in range */
3578 if (start < 0)
3579 start = 0;
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003580 if (count < 0)
3581 count = len + count + 1 - start;
3582 if (start + count > (int64_t)len)
Cyrill Gorcunovcff031e2010-09-07 20:31:11 +04003583 count = len - start;
3584 if (!len || count < 0 || start >=(int64_t)len)
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003585 start = -1, count = 0; /* empty string */
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003586
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003587 macro_start = nasm_malloc(sizeof(*macro_start));
3588 macro_start->next = NULL;
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003589 macro_start->text = nasm_quote((start < 0) ? "" : t->text + start, count);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003590 macro_start->type = TOK_STRING;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003591 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003592
H. Peter Anvine2c80182005-01-15 22:15:51 +00003593 /*
3594 * We now have a macro name, an implicit parameter count of
3595 * zero, and a numeric token to use as an expansion. Create
3596 * and store an SMacro.
3597 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003598 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003599 free_tlist(tline);
3600 free_tlist(origline);
3601 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003602 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003603
H. Peter Anvine2c80182005-01-15 22:15:51 +00003604 case PP_ASSIGN:
3605 case PP_IASSIGN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003606 casesense = (i == PP_ASSIGN);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003607
H. Peter Anvine2c80182005-01-15 22:15:51 +00003608 tline = tline->next;
3609 skip_white_(tline);
3610 tline = expand_id(tline);
3611 if (!tline || (tline->type != TOK_ID &&
3612 (tline->type != TOK_PREPROC_ID ||
3613 tline->text[1] != '$'))) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003614 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003615 "`%%%sassign' expects a macro identifier",
3616 (i == PP_IASSIGN ? "i" : ""));
3617 free_tlist(origline);
3618 return DIRECTIVE_FOUND;
3619 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003620 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003621 last = tline;
3622 tline = expand_smacro(tline->next);
3623 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003624
H. Peter Anvine2c80182005-01-15 22:15:51 +00003625 t = tline;
3626 tptr = &t;
3627 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin130736c2016-02-17 20:27:41 -08003628 evalresult = evaluate(ppscan, tptr, &tokval, NULL, pass, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003629 free_tlist(tline);
3630 if (!evalresult) {
3631 free_tlist(origline);
3632 return DIRECTIVE_FOUND;
3633 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003634
H. Peter Anvine2c80182005-01-15 22:15:51 +00003635 if (tokval.t_type)
H. Peter Anvin130736c2016-02-17 20:27:41 -08003636 nasm_error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003637 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00003638
H. Peter Anvine2c80182005-01-15 22:15:51 +00003639 if (!is_simple(evalresult)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003640 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003641 "non-constant value given to `%%%sassign'",
3642 (i == PP_IASSIGN ? "i" : ""));
3643 free_tlist(origline);
3644 return DIRECTIVE_FOUND;
3645 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003646
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003647 macro_start = nasm_malloc(sizeof(*macro_start));
3648 macro_start->next = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003649 make_tok_num(macro_start, reloc_value(evalresult));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003650 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003651
H. Peter Anvine2c80182005-01-15 22:15:51 +00003652 /*
3653 * We now have a macro name, an implicit parameter count of
3654 * zero, and a numeric token to use as an expansion. Create
3655 * and store an SMacro.
3656 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003657 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003658 free_tlist(origline);
3659 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003660
H. Peter Anvine2c80182005-01-15 22:15:51 +00003661 case PP_LINE:
3662 /*
3663 * Syntax is `%line nnn[+mmm] [filename]'
3664 */
3665 tline = tline->next;
3666 skip_white_(tline);
3667 if (!tok_type_(tline, TOK_NUMBER)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003668 nasm_error(ERR_NONFATAL, "`%%line' expects line number");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003669 free_tlist(origline);
3670 return DIRECTIVE_FOUND;
3671 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003672 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003673 m = 1;
3674 tline = tline->next;
3675 if (tok_is_(tline, "+")) {
3676 tline = tline->next;
3677 if (!tok_type_(tline, TOK_NUMBER)) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08003678 nasm_error(ERR_NONFATAL, "`%%line' expects line increment");
H. Peter Anvine2c80182005-01-15 22:15:51 +00003679 free_tlist(origline);
3680 return DIRECTIVE_FOUND;
3681 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003682 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003683 tline = tline->next;
3684 }
3685 skip_white_(tline);
3686 src_set_linnum(k);
3687 istk->lineinc = m;
3688 if (tline) {
H. Peter Anvin274cda82016-05-10 02:56:29 -07003689 char *fname = detoken(tline, false);
3690 src_set_fname(fname);
3691 nasm_free(fname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003692 }
3693 free_tlist(origline);
3694 return DIRECTIVE_FOUND;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05003695
H. Peter Anvine2c80182005-01-15 22:15:51 +00003696 default:
H. Peter Anvin130736c2016-02-17 20:27:41 -08003697 nasm_error(ERR_FATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003698 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00003699 pp_directives[i]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003700 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003701 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003702}
3703
3704/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00003705 * Ensure that a macro parameter contains a condition code and
3706 * nothing else. Return the condition code index if so, or -1
3707 * otherwise.
3708 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003709static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003710{
H. Peter Anvin76690a12002-04-30 20:52:49 +00003711 Token *tt;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003712
H. Peter Anvin25a99342007-09-22 17:45:45 -07003713 if (!t)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003714 return -1; /* Probably a %+ without a space */
H. Peter Anvin25a99342007-09-22 17:45:45 -07003715
H. Peter Anvineba20a72002-04-30 20:53:55 +00003716 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003717 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003718 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003719 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003720 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003721 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003722 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003723
Cyrill Gorcunov19456392012-05-02 00:18:56 +04003724 return bsii(t->text, (const char **)conditions, ARRAY_SIZE(conditions));
H. Peter Anvin76690a12002-04-30 20:52:49 +00003725}
3726
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003727/*
3728 * This routines walks over tokens strem and hadnles tokens
3729 * pasting, if @handle_explicit passed then explicit pasting
3730 * term is handled, otherwise -- implicit pastings only.
3731 */
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003732static bool paste_tokens(Token **head, const struct tokseq_match *m,
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003733 size_t mnum, bool handle_explicit)
H. Peter Anvind784a082009-04-20 14:01:18 -07003734{
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003735 Token *tok, *next, **prev_next, **prev_nonspace;
3736 bool pasted = false;
3737 char *buf, *p;
3738 size_t len, i;
H. Peter Anvind784a082009-04-20 14:01:18 -07003739
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003740 /*
3741 * The last token before pasting. We need it
3742 * to be able to connect new handled tokens.
3743 * In other words if there were a tokens stream
3744 *
3745 * A -> B -> C -> D
3746 *
3747 * and we've joined tokens B and C, the resulting
3748 * stream should be
3749 *
3750 * A -> BC -> D
3751 */
3752 tok = *head;
3753 prev_next = NULL;
3754
3755 if (!tok_type_(tok, TOK_WHITESPACE) && !tok_type_(tok, TOK_PASTE))
3756 prev_nonspace = head;
3757 else
3758 prev_nonspace = NULL;
3759
3760 while (tok && (next = tok->next)) {
3761
3762 switch (tok->type) {
H. Peter Anvind784a082009-04-20 14:01:18 -07003763 case TOK_WHITESPACE:
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003764 /* Zap redundant whitespaces */
3765 while (tok_type_(next, TOK_WHITESPACE))
3766 next = delete_Token(next);
3767 tok->next = next;
H. Peter Anvind784a082009-04-20 14:01:18 -07003768 break;
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003769
3770 case TOK_PASTE:
3771 /* Explicit pasting */
3772 if (!handle_explicit)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003773 break;
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003774 next = delete_Token(tok);
3775
3776 while (tok_type_(next, TOK_WHITESPACE))
3777 next = delete_Token(next);
3778
3779 if (!pasted)
3780 pasted = true;
3781
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003782 /* Left pasting token is start of line */
3783 if (!prev_nonspace)
H. Peter Anvin130736c2016-02-17 20:27:41 -08003784 nasm_error(ERR_FATAL, "No lvalue found on pasting");
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003785
Cyrill Gorcunov8b5c9fb2013-02-04 01:24:54 +04003786 /*
3787 * No ending token, this might happen in two
3788 * cases
3789 *
3790 * 1) There indeed no right token at all
3791 * 2) There is a bare "%define ID" statement,
3792 * and @ID does expand to whitespace.
3793 *
3794 * So technically we need to do a grammar analysis
3795 * in another stage of parsing, but for now lets don't
3796 * change the behaviour people used to. Simply allow
3797 * whitespace after paste token.
3798 */
3799 if (!next) {
3800 /*
3801 * Zap ending space tokens and that's all.
3802 */
3803 tok = (*prev_nonspace)->next;
3804 while (tok_type_(tok, TOK_WHITESPACE))
3805 tok = delete_Token(tok);
3806 tok = *prev_nonspace;
3807 tok->next = NULL;
3808 break;
3809 }
3810
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003811 tok = *prev_nonspace;
3812 while (tok_type_(tok, TOK_WHITESPACE))
3813 tok = delete_Token(tok);
3814 len = strlen(tok->text);
3815 len += strlen(next->text);
3816
3817 p = buf = nasm_malloc(len + 1);
3818 strcpy(p, tok->text);
3819 p = strchr(p, '\0');
3820 strcpy(p, next->text);
3821
3822 delete_Token(tok);
3823
3824 tok = tokenize(buf);
3825 nasm_free(buf);
3826
3827 *prev_nonspace = tok;
3828 while (tok && tok->next)
3829 tok = tok->next;
3830
3831 tok->next = delete_Token(next);
3832
3833 /* Restart from pasted tokens head */
3834 tok = *prev_nonspace;
3835 break;
3836
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003837 default:
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003838 /* implicit pasting */
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003839 for (i = 0; i < mnum; i++) {
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003840 if (!(PP_CONCAT_MATCH(tok, m[i].mask_head)))
3841 continue;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04003842
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003843 len = 0;
3844 while (next && PP_CONCAT_MATCH(next, m[i].mask_tail)) {
3845 len += strlen(next->text);
3846 next = next->next;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04003847 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003848
3849 /* No match */
3850 if (tok == next)
3851 break;
3852
3853 len += strlen(tok->text);
3854 p = buf = nasm_malloc(len + 1);
3855
Adam Majer1a069432017-07-25 11:12:35 +02003856 strcpy(p, tok->text);
3857 p = strchr(p, '\0');
3858 tok = delete_Token(tok);
3859
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003860 while (tok != next) {
Adam Majer1a069432017-07-25 11:12:35 +02003861 if (PP_CONCAT_MATCH(tok, m[i].mask_tail)) {
3862 strcpy(p, tok->text);
3863 p = strchr(p, '\0');
3864 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003865 tok = delete_Token(tok);
3866 }
3867
3868 tok = tokenize(buf);
3869 nasm_free(buf);
3870
3871 if (prev_next)
3872 *prev_next = tok;
3873 else
3874 *head = tok;
3875
3876 /*
3877 * Connect pasted into original stream,
3878 * ie A -> new-tokens -> B
3879 */
3880 while (tok && tok->next)
3881 tok = tok->next;
3882 tok->next = next;
3883
3884 if (!pasted)
3885 pasted = true;
3886
3887 /* Restart from pasted tokens head */
3888 tok = prev_next ? *prev_next : *head;
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003889 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003890
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003891 break;
H. Peter Anvind784a082009-04-20 14:01:18 -07003892 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003893
3894 prev_next = &tok->next;
3895
3896 if (tok->next &&
3897 !tok_type_(tok->next, TOK_WHITESPACE) &&
3898 !tok_type_(tok->next, TOK_PASTE))
3899 prev_nonspace = prev_next;
3900
3901 tok = tok->next;
H. Peter Anvind784a082009-04-20 14:01:18 -07003902 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003903
3904 return pasted;
H. Peter Anvind784a082009-04-20 14:01:18 -07003905}
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003906
3907/*
3908 * expands to a list of tokens from %{x:y}
3909 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003910static Token *expand_mmac_params_range(MMacro *mac, Token *tline, Token ***last)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003911{
3912 Token *t = tline, **tt, *tm, *head;
3913 char *pos;
3914 int fst, lst, j, i;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003915
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003916 pos = strchr(tline->text, ':');
3917 nasm_assert(pos);
3918
3919 lst = atoi(pos + 1);
3920 fst = atoi(tline->text + 1);
3921
3922 /*
3923 * only macros params are accounted so
3924 * if someone passes %0 -- we reject such
3925 * value(s)
3926 */
3927 if (lst == 0 || fst == 0)
3928 goto err;
3929
3930 /* the values should be sane */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003931 if ((fst > (int)mac->nparam || fst < (-(int)mac->nparam)) ||
3932 (lst > (int)mac->nparam || lst < (-(int)mac->nparam)))
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003933 goto err;
3934
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003935 fst = fst < 0 ? fst + (int)mac->nparam + 1: fst;
3936 lst = lst < 0 ? lst + (int)mac->nparam + 1: lst;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003937
3938 /* counted from zero */
3939 fst--, lst--;
3940
3941 /*
Cyrill Gorcunove75331c2013-11-09 12:02:15 +04003942 * It will be at least one token. Note we
3943 * need to scan params until separator, otherwise
3944 * only first token will be passed.
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003945 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003946 tm = mac->params[(fst + mac->rotate) % mac->nparam];
Cyrill Gorcunove75331c2013-11-09 12:02:15 +04003947 head = new_Token(NULL, tm->type, tm->text, 0);
3948 tt = &head->next, tm = tm->next;
3949 while (tok_isnt_(tm, ",")) {
3950 t = new_Token(NULL, tm->type, tm->text, 0);
3951 *tt = t, tt = &t->next, tm = tm->next;
3952 }
3953
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003954 if (fst < lst) {
3955 for (i = fst + 1; i <= lst; i++) {
3956 t = new_Token(NULL, TOK_OTHER, ",", 0);
3957 *tt = t, tt = &t->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003958 j = (i + mac->rotate) % mac->nparam;
3959 tm = mac->params[j];
Cyrill Gorcunove75331c2013-11-09 12:02:15 +04003960 while (tok_isnt_(tm, ",")) {
3961 t = new_Token(NULL, tm->type, tm->text, 0);
3962 *tt = t, tt = &t->next, tm = tm->next;
3963 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003964 }
3965 } else {
3966 for (i = fst - 1; i >= lst; i--) {
3967 t = new_Token(NULL, TOK_OTHER, ",", 0);
3968 *tt = t, tt = &t->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003969 j = (i + mac->rotate) % mac->nparam;
3970 tm = mac->params[j];
Cyrill Gorcunove75331c2013-11-09 12:02:15 +04003971 while (tok_isnt_(tm, ",")) {
3972 t = new_Token(NULL, tm->type, tm->text, 0);
3973 *tt = t, tt = &t->next, tm = tm->next;
3974 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003975 }
3976 }
3977
3978 *last = tt;
3979 return head;
3980
3981err:
H. Peter Anvin130736c2016-02-17 20:27:41 -08003982 nasm_error(ERR_NONFATAL, "`%%{%s}': macro parameters out of range",
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003983 &tline->text[1]);
3984 return tline;
3985}
3986
H. Peter Anvin76690a12002-04-30 20:52:49 +00003987/*
3988 * Expand MMacro-local things: parameter references (%0, %n, %+n,
H. Peter Anvin67c63722008-10-26 23:49:00 -07003989 * %-n) and MMacro-local identifiers (%%foo) as well as
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003990 * macro indirection (%[...]) and range (%{..:..}).
H. Peter Anvin76690a12002-04-30 20:52:49 +00003991 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003992static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003993{
H. Peter Anvin734b1882002-04-30 21:01:08 +00003994 Token *t, *tt, **tail, *thead;
H. Peter Anvin6125b622009-04-08 14:02:25 -07003995 bool changed = false;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003996 char *pos;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003997
3998 tail = &thead;
3999 thead = NULL;
4000
H. Peter Anvine2c80182005-01-15 22:15:51 +00004001 while (tline) {
4002 if (tline->type == TOK_PREPROC_ID &&
Cyrill Gorcunovca611192010-06-04 09:22:12 +04004003 (((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) ||
4004 (tline->text[1] >= '0' && tline->text[1] <= '9') ||
4005 tline->text[1] == '%')) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004006 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004007 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004008 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07004009 unsigned int n;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004010 int i;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004011 MMacro *mac;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004012
H. Peter Anvine2c80182005-01-15 22:15:51 +00004013 t = tline;
4014 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004015
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004016 mac = istk->mstk;
4017 while (mac && !mac->name) /* avoid mistaking %reps for macros */
4018 mac = mac->next_active;
4019 if (!mac) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004020 nasm_error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004021 } else {
4022 pos = strchr(t->text, ':');
4023 if (!pos) {
4024 switch (t->text[1]) {
4025 /*
4026 * We have to make a substitution of one of the
4027 * forms %1, %-1, %+1, %%foo, %0.
4028 */
4029 case '0':
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004030 type = TOK_NUMBER;
4031 snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam);
4032 text = nasm_strdup(tmpbuf);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004033 break;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004034 case '%':
H. Peter Anvine2c80182005-01-15 22:15:51 +00004035 type = TOK_ID;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004036 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004037 mac->unique);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004038 text = nasm_strcat(tmpbuf, t->text + 2);
4039 break;
4040 case '-':
4041 n = atoi(t->text + 2) - 1;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004042 if (n >= mac->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004043 tt = NULL;
4044 else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004045 if (mac->nparam > 1)
4046 n = (n + mac->rotate) % mac->nparam;
4047 tt = mac->params[n];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004048 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004049 cc = find_cc(tt);
4050 if (cc == -1) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004051 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004052 "macro parameter %d is not a condition code",
4053 n + 1);
4054 text = NULL;
4055 } else {
4056 type = TOK_ID;
4057 if (inverse_ccs[cc] == -1) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004058 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004059 "condition code `%s' is not invertible",
4060 conditions[cc]);
4061 text = NULL;
4062 } else
4063 text = nasm_strdup(conditions[inverse_ccs[cc]]);
4064 }
4065 break;
4066 case '+':
4067 n = atoi(t->text + 2) - 1;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004068 if (n >= mac->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004069 tt = NULL;
4070 else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004071 if (mac->nparam > 1)
4072 n = (n + mac->rotate) % mac->nparam;
4073 tt = mac->params[n];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004074 }
4075 cc = find_cc(tt);
4076 if (cc == -1) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004077 nasm_error(ERR_NONFATAL,
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004078 "macro parameter %d is not a condition code",
4079 n + 1);
4080 text = NULL;
4081 } else {
4082 type = TOK_ID;
4083 text = nasm_strdup(conditions[cc]);
4084 }
4085 break;
4086 default:
4087 n = atoi(t->text + 1) - 1;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004088 if (n >= mac->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004089 tt = NULL;
4090 else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004091 if (mac->nparam > 1)
4092 n = (n + mac->rotate) % mac->nparam;
4093 tt = mac->params[n];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004094 }
4095 if (tt) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004096 for (i = 0; i < mac->paramlen[n]; i++) {
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004097 *tail = new_Token(NULL, tt->type, tt->text, 0);
4098 tail = &(*tail)->next;
4099 tt = tt->next;
4100 }
4101 }
4102 text = NULL; /* we've done it here */
4103 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004104 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004105 } else {
4106 /*
4107 * seems we have a parameters range here
4108 */
4109 Token *head, **last;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004110 head = expand_mmac_params_range(mac, t, &last);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004111 if (head != t) {
4112 *tail = head;
4113 *last = tline;
4114 tline = head;
4115 text = NULL;
4116 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004117 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004118 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004119 if (!text) {
4120 delete_Token(t);
4121 } else {
4122 *tail = t;
4123 tail = &t->next;
4124 t->type = type;
4125 nasm_free(t->text);
4126 t->text = text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004127 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004128 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004129 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004130 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004131 } else if (tline->type == TOK_INDIRECT) {
4132 t = tline;
4133 tline = tline->next;
4134 tt = tokenize(t->text);
4135 tt = expand_mmac_params(tt);
4136 tt = expand_smacro(tt);
4137 *tail = tt;
4138 while (tt) {
4139 tt->a.mac = NULL; /* Necessary? */
4140 tail = &tt->next;
4141 tt = tt->next;
4142 }
4143 delete_Token(t);
4144 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004145 } else {
4146 t = *tail = tline;
4147 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004148 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004149 tail = &t->next;
4150 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004151 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00004152 *tail = NULL;
H. Peter Anvin67c63722008-10-26 23:49:00 -07004153
Cyrill Gorcunovc6a742c2011-06-27 01:23:09 +04004154 if (changed) {
4155 const struct tokseq_match t[] = {
4156 {
4157 PP_CONCAT_MASK(TOK_ID) |
4158 PP_CONCAT_MASK(TOK_FLOAT), /* head */
4159 PP_CONCAT_MASK(TOK_ID) |
4160 PP_CONCAT_MASK(TOK_NUMBER) |
4161 PP_CONCAT_MASK(TOK_FLOAT) |
4162 PP_CONCAT_MASK(TOK_OTHER) /* tail */
4163 },
4164 {
4165 PP_CONCAT_MASK(TOK_NUMBER), /* head */
4166 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4167 }
4168 };
4169 paste_tokens(&thead, t, ARRAY_SIZE(t), false);
4170 }
H. Peter Anvin6125b622009-04-08 14:02:25 -07004171
H. Peter Anvin76690a12002-04-30 20:52:49 +00004172 return thead;
4173}
4174
4175/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004176 * Expand all single-line macro calls made in the given line.
4177 * Return the expanded version of the line. The original is deemed
4178 * to be destroyed in the process. (In reality we'll just move
4179 * Tokens from input to output a lot of the time, rather than
4180 * actually bothering to destroy and replicate.)
4181 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004182
H. Peter Anvine2c80182005-01-15 22:15:51 +00004183static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004184{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004185 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004186 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004187 Token **params;
4188 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07004189 unsigned int nparam, sparam;
H. Peter Anvind784a082009-04-20 14:01:18 -07004190 int brackets;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004191 Token *org_tline = tline;
4192 Context *ctx;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08004193 const char *mname;
H. Peter Anvin2a15e692007-11-19 13:14:59 -08004194 int deadman = DEADMAN_LIMIT;
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004195 bool expanded;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004196
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004197 /*
4198 * Trick: we should avoid changing the start token pointer since it can
4199 * be contained in "next" field of other token. Because of this
4200 * we allocate a copy of first token and work with it; at the end of
4201 * routine we copy it back
4202 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004203 if (org_tline) {
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004204 tline = new_Token(org_tline->next, org_tline->type,
4205 org_tline->text, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004206 tline->a.mac = org_tline->a.mac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004207 nasm_free(org_tline->text);
4208 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004209 }
4210
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004211 expanded = true; /* Always expand %+ at least once */
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004212
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004213again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004214 thead = NULL;
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004215 tail = &thead;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004216
H. Peter Anvine2c80182005-01-15 22:15:51 +00004217 while (tline) { /* main token loop */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004218 if (!--deadman) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004219 nasm_error(ERR_NONFATAL, "interminable macro recursion");
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004220 goto err;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004221 }
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004222
H. Peter Anvine2c80182005-01-15 22:15:51 +00004223 if ((mname = tline->text)) {
4224 /* if this token is a local macro, look in local context */
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004225 if (tline->type == TOK_ID) {
4226 head = (SMacro *)hash_findix(&smacros, mname);
4227 } else if (tline->type == TOK_PREPROC_ID) {
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04004228 ctx = get_ctx(mname, &mname);
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004229 head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL;
4230 } else
4231 head = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -07004232
H. Peter Anvine2c80182005-01-15 22:15:51 +00004233 /*
4234 * We've hit an identifier. As in is_mmacro below, we first
4235 * check whether the identifier is a single-line macro at
4236 * all, then think about checking for parameters if
4237 * necessary.
4238 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004239 list_for_each(m, head)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004240 if (!mstrcmp(m->name, mname, m->casesense))
4241 break;
4242 if (m) {
4243 mstart = tline;
4244 params = NULL;
4245 paramsize = NULL;
4246 if (m->nparam == 0) {
4247 /*
4248 * Simple case: the macro is parameterless. Discard the
4249 * one token that the macro call took, and push the
4250 * expansion back on the to-do stack.
4251 */
4252 if (!m->expansion) {
4253 if (!strcmp("__FILE__", m->name)) {
H. Peter Anvin274cda82016-05-10 02:56:29 -07004254 const char *file = src_get_fname();
4255 /* nasm_free(tline->text); here? */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004256 tline->text = nasm_quote(file, strlen(file));
4257 tline->type = TOK_STRING;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004258 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004259 }
4260 if (!strcmp("__LINE__", m->name)) {
4261 nasm_free(tline->text);
4262 make_tok_num(tline, src_get_linnum());
4263 continue;
4264 }
4265 if (!strcmp("__BITS__", m->name)) {
4266 nasm_free(tline->text);
4267 make_tok_num(tline, globalbits);
4268 continue;
4269 }
4270 tline = delete_Token(tline);
4271 continue;
4272 }
4273 } else {
4274 /*
4275 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00004276 * exists and takes parameters. We must find the
4277 * parameters in the call, count them, find the SMacro
4278 * that corresponds to that form of the macro call, and
4279 * substitute for the parameters when we expand. What a
4280 * pain.
4281 */
4282 /*tline = tline->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004283 skip_white_(tline); */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004284 do {
4285 t = tline->next;
4286 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004287 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004288 t->text = NULL;
4289 t = tline->next = delete_Token(t);
4290 }
4291 tline = t;
4292 } while (tok_type_(tline, TOK_WHITESPACE));
4293 if (!tok_is_(tline, "(")) {
4294 /*
4295 * This macro wasn't called with parameters: ignore
4296 * the call. (Behaviour borrowed from gnu cpp.)
4297 */
4298 tline = mstart;
4299 m = NULL;
4300 } else {
4301 int paren = 0;
4302 int white = 0;
4303 brackets = 0;
4304 nparam = 0;
4305 sparam = PARAM_DELTA;
4306 params = nasm_malloc(sparam * sizeof(Token *));
4307 params[0] = tline->next;
4308 paramsize = nasm_malloc(sparam * sizeof(int));
4309 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004310 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004311 /*
4312 * For some unusual expansions
4313 * which concatenates function call
4314 */
4315 t = tline->next;
4316 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004317 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004318 t->text = NULL;
4319 t = tline->next = delete_Token(t);
4320 }
4321 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00004322
H. Peter Anvine2c80182005-01-15 22:15:51 +00004323 if (!tline) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004324 nasm_error(ERR_NONFATAL,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004325 "macro call expects terminating `)'");
4326 break;
4327 }
4328 if (tline->type == TOK_WHITESPACE
4329 && brackets <= 0) {
4330 if (paramsize[nparam])
4331 white++;
4332 else
4333 params[nparam] = tline->next;
4334 continue; /* parameter loop */
4335 }
4336 if (tline->type == TOK_OTHER
4337 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004338 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004339 if (ch == ',' && !paren && brackets <= 0) {
4340 if (++nparam >= sparam) {
4341 sparam += PARAM_DELTA;
4342 params = nasm_realloc(params,
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004343 sparam * sizeof(Token *));
4344 paramsize = nasm_realloc(paramsize,
4345 sparam * sizeof(int));
H. Peter Anvine2c80182005-01-15 22:15:51 +00004346 }
4347 params[nparam] = tline->next;
4348 paramsize[nparam] = 0;
4349 white = 0;
4350 continue; /* parameter loop */
4351 }
4352 if (ch == '{' &&
4353 (brackets > 0 || (brackets == 0 &&
4354 !paramsize[nparam])))
4355 {
4356 if (!(brackets++)) {
4357 params[nparam] = tline->next;
4358 continue; /* parameter loop */
4359 }
4360 }
4361 if (ch == '}' && brackets > 0)
4362 if (--brackets == 0) {
4363 brackets = -1;
4364 continue; /* parameter loop */
4365 }
4366 if (ch == '(' && !brackets)
4367 paren++;
4368 if (ch == ')' && brackets <= 0)
4369 if (--paren < 0)
4370 break;
4371 }
4372 if (brackets < 0) {
4373 brackets = 0;
H. Peter Anvin130736c2016-02-17 20:27:41 -08004374 nasm_error(ERR_NONFATAL, "braces do not "
H. Peter Anvine2c80182005-01-15 22:15:51 +00004375 "enclose all of macro parameter");
4376 }
4377 paramsize[nparam] += white + 1;
4378 white = 0;
4379 } /* parameter loop */
4380 nparam++;
4381 while (m && (m->nparam != nparam ||
4382 mstrcmp(m->name, mname,
4383 m->casesense)))
4384 m = m->next;
4385 if (!m)
H. Peter Anvin130736c2016-02-17 20:27:41 -08004386 nasm_error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004387 "macro `%s' exists, "
4388 "but not taking %d parameters",
4389 mstart->text, nparam);
4390 }
4391 }
4392 if (m && m->in_progress)
4393 m = NULL;
4394 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07004395 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00004396 * Design question: should we handle !tline, which
4397 * indicates missing ')' here, or expand those
4398 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07004399 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00004400 */
4401 nasm_free(params);
4402 nasm_free(paramsize);
4403 tline = mstart;
4404 } else {
4405 /*
4406 * Expand the macro: we are placed on the last token of the
4407 * call, so that we can easily split the call from the
4408 * following tokens. We also start by pushing an SMAC_END
4409 * token for the cycle removal.
4410 */
4411 t = tline;
4412 if (t) {
4413 tline = t->next;
4414 t->next = NULL;
4415 }
4416 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004417 tt->a.mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004418 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004419 tline = tt;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004420 list_for_each(t, m->expansion) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004421 if (t->type >= TOK_SMAC_PARAM) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004422 Token *pcopy = tline, **ptail = &pcopy;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004423 Token *ttt, *pt;
4424 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004425
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004426 ttt = params[t->type - TOK_SMAC_PARAM];
4427 i = paramsize[t->type - TOK_SMAC_PARAM];
4428 while (--i >= 0) {
4429 pt = *ptail = new_Token(tline, ttt->type,
4430 ttt->text, 0);
4431 ptail = &pt->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004432 ttt = ttt->next;
Cyrill Gorcunov59ce1c62017-10-22 18:42:07 +03004433 if (!ttt && i > 0) {
4434 /*
4435 * FIXME: Need to handle more gracefully,
4436 * exiting early on agruments analysis.
4437 */
4438 nasm_error(ERR_FATAL,
4439 "macro `%s' expects %d args",
4440 mstart->text,
4441 (int)paramsize[t->type - TOK_SMAC_PARAM]);
4442 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004443 }
4444 tline = pcopy;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004445 } else if (t->type == TOK_PREPROC_Q) {
4446 tt = new_Token(tline, TOK_ID, mname, 0);
4447 tline = tt;
4448 } else if (t->type == TOK_PREPROC_QQ) {
4449 tt = new_Token(tline, TOK_ID, m->name, 0);
4450 tline = tt;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004451 } else {
4452 tt = new_Token(tline, t->type, t->text, 0);
4453 tline = tt;
4454 }
4455 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004456
H. Peter Anvine2c80182005-01-15 22:15:51 +00004457 /*
4458 * Having done that, get rid of the macro call, and clean
4459 * up the parameters.
4460 */
4461 nasm_free(params);
4462 nasm_free(paramsize);
4463 free_tlist(mstart);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004464 expanded = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004465 continue; /* main token loop */
4466 }
4467 }
4468 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004469
H. Peter Anvine2c80182005-01-15 22:15:51 +00004470 if (tline->type == TOK_SMAC_END) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004471 tline->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004472 tline = delete_Token(tline);
4473 } else {
4474 t = *tail = tline;
4475 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004476 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004477 t->next = NULL;
4478 tail = &t->next;
4479 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004480 }
4481
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004482 /*
4483 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00004484 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004485 * TOK_IDs should be concatenated.
4486 * Also we look for %+ tokens and concatenate the tokens before and after
4487 * them (without white spaces in between).
4488 */
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004489 if (expanded) {
Cyrill Gorcunovc6a742c2011-06-27 01:23:09 +04004490 const struct tokseq_match t[] = {
4491 {
4492 PP_CONCAT_MASK(TOK_ID) |
4493 PP_CONCAT_MASK(TOK_PREPROC_ID), /* head */
4494 PP_CONCAT_MASK(TOK_ID) |
4495 PP_CONCAT_MASK(TOK_PREPROC_ID) |
4496 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4497 }
4498 };
4499 if (paste_tokens(&thead, t, ARRAY_SIZE(t), true)) {
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004500 /*
4501 * If we concatenated something, *and* we had previously expanded
4502 * an actual macro, scan the lines again for macros...
4503 */
4504 tline = thead;
4505 expanded = false;
4506 goto again;
4507 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004508 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004509
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004510err:
H. Peter Anvine2c80182005-01-15 22:15:51 +00004511 if (org_tline) {
4512 if (thead) {
4513 *org_tline = *thead;
4514 /* since we just gave text to org_line, don't free it */
4515 thead->text = NULL;
4516 delete_Token(thead);
4517 } else {
4518 /* the expression expanded to empty line;
4519 we can't return NULL for some reasons
4520 we just set the line to a single WHITESPACE token. */
4521 memset(org_tline, 0, sizeof(*org_tline));
4522 org_tline->text = NULL;
4523 org_tline->type = TOK_WHITESPACE;
4524 }
4525 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004526 }
4527
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004528 return thead;
4529}
4530
4531/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004532 * Similar to expand_smacro but used exclusively with macro identifiers
4533 * right before they are fetched in. The reason is that there can be
4534 * identifiers consisting of several subparts. We consider that if there
4535 * are more than one element forming the name, user wants a expansion,
4536 * otherwise it will be left as-is. Example:
4537 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004538 * %define %$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004539 *
4540 * the identifier %$abc will be left as-is so that the handler for %define
4541 * will suck it and define the corresponding value. Other case:
4542 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004543 * %define _%$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004544 *
4545 * In this case user wants name to be expanded *before* %define starts
4546 * working, so we'll expand %$abc into something (if it has a value;
4547 * otherwise it will be left as-is) then concatenate all successive
4548 * PP_IDs into one.
4549 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004550static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004551{
4552 Token *cur, *oldnext = NULL;
4553
H. Peter Anvin734b1882002-04-30 21:01:08 +00004554 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004555 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004556
4557 cur = tline;
4558 while (cur->next &&
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004559 (cur->next->type == TOK_ID ||
4560 cur->next->type == TOK_PREPROC_ID
4561 || cur->next->type == TOK_NUMBER))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004562 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004563
4564 /* If identifier consists of just one token, don't expand */
4565 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004566 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004567
H. Peter Anvine2c80182005-01-15 22:15:51 +00004568 if (cur) {
4569 oldnext = cur->next; /* Detach the tail past identifier */
4570 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004571 }
4572
H. Peter Anvin734b1882002-04-30 21:01:08 +00004573 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004574
H. Peter Anvine2c80182005-01-15 22:15:51 +00004575 if (cur) {
4576 /* expand_smacro possibly changhed tline; re-scan for EOL */
4577 cur = tline;
4578 while (cur && cur->next)
4579 cur = cur->next;
4580 if (cur)
4581 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004582 }
4583
4584 return tline;
4585}
4586
4587/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004588 * Determine whether the given line constitutes a multi-line macro
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004589 * call, and return the MMacro structure called if so. Doesn't have
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004590 * to check for an initial label - that's taken care of in
4591 * expand_mmacro - but must check numbers of parameters. Guaranteed
4592 * to be called with tline->type == TOK_ID, so the putative macro
4593 * name is easy to find.
4594 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004595static MMacro *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004596{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004597 MMacro *head, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004598 Token **params;
4599 int nparam;
4600
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004601 head = (MMacro *) hash_findix(&mmacros, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004602
4603 /*
4604 * Efficiency: first we see if any macro exists with the given
4605 * name. If not, we can return NULL immediately. _Then_ we
4606 * count the parameters, and then we look further along the
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004607 * list if necessary to find the proper MMacro.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004608 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004609 list_for_each(m, head)
4610 if (!mstrcmp(m->name, tline->text, m->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004611 break;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004612 if (!m)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004613 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004614
4615 /*
4616 * OK, we have a potential macro. Count and demarcate the
4617 * parameters.
4618 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00004619 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004620
4621 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004622 * So we know how many parameters we've got. Find the MMacro
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004623 * structure that handles this number.
4624 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004625 while (m) {
4626 if (m->nparam_min <= nparam
4627 && (m->plus || nparam <= m->nparam_max)) {
4628 /*
4629 * This one is right. Just check if cycle removal
4630 * prohibits us using it before we actually celebrate...
4631 */
4632 if (m->in_progress > m->max_depth) {
4633 if (m->max_depth > 0) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08004634 nasm_error(ERR_WARNING,
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004635 "reached maximum recursion depth of %i",
4636 m->max_depth);
4637 }
4638 nasm_free(params);
4639 return NULL;
4640 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004641 /*
4642 * It's right, and we can use it. Add its default
4643 * parameters to the end of our list if necessary.
4644 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004645 if (m->defaults && nparam < m->nparam_min + m->ndefs) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004646 params =
4647 nasm_realloc(params,
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004648 ((m->nparam_min + m->ndefs +
H. Peter Anvine2c80182005-01-15 22:15:51 +00004649 1) * sizeof(*params)));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004650 while (nparam < m->nparam_min + m->ndefs) {
4651 params[nparam] = m->defaults[nparam - m->nparam_min];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004652 nparam++;
4653 }
4654 }
4655 /*
4656 * If we've gone over the maximum parameter count (and
4657 * we're in Plus mode), ignore parameters beyond
4658 * nparam_max.
4659 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004660 if (m->plus && nparam > m->nparam_max)
4661 nparam = m->nparam_max;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004662 /*
4663 * Then terminate the parameter list, and leave.
4664 */
4665 if (!params) { /* need this special case */
4666 params = nasm_malloc(sizeof(*params));
4667 nparam = 0;
4668 }
4669 params[nparam] = NULL;
4670 *params_array = params;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004671 return m;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004672 }
4673 /*
4674 * This one wasn't right: look for the next one with the
4675 * same name.
4676 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004677 list_for_each(m, m->next)
4678 if (!mstrcmp(m->name, tline->text, m->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004679 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004680 }
4681
4682 /*
4683 * After all that, we didn't find one with the right number of
4684 * parameters. Issue a warning, and fail to expand the macro.
4685 */
H. Peter Anvin130736c2016-02-17 20:27:41 -08004686 nasm_error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004687 "macro `%s' exists, but not taking %d parameters",
4688 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004689 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004690 return NULL;
4691}
4692
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004693
4694/*
4695 * Save MMacro invocation specific fields in
4696 * preparation for a recursive macro expansion
4697 */
4698static void push_mmacro(MMacro *m)
4699{
4700 MMacroInvocation *i;
4701
4702 i = nasm_malloc(sizeof(MMacroInvocation));
4703 i->prev = m->prev;
4704 i->params = m->params;
4705 i->iline = m->iline;
4706 i->nparam = m->nparam;
4707 i->rotate = m->rotate;
4708 i->paramlen = m->paramlen;
4709 i->unique = m->unique;
4710 i->condcnt = m->condcnt;
4711 m->prev = i;
4712}
4713
4714
4715/*
4716 * Restore MMacro invocation specific fields that were
4717 * saved during a previous recursive macro expansion
4718 */
4719static void pop_mmacro(MMacro *m)
4720{
4721 MMacroInvocation *i;
4722
4723 if (m->prev) {
4724 i = m->prev;
4725 m->prev = i->prev;
4726 m->params = i->params;
4727 m->iline = i->iline;
4728 m->nparam = i->nparam;
4729 m->rotate = i->rotate;
4730 m->paramlen = i->paramlen;
4731 m->unique = i->unique;
4732 m->condcnt = i->condcnt;
4733 nasm_free(i);
4734 }
4735}
4736
4737
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004738/*
4739 * Expand the multi-line macro call made by the given line, if
4740 * there is one to be expanded. If there is, push the expansion on
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004741 * istk->expansion and return 1. Otherwise return 0.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004742 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004743static int expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004744{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004745 Token *startline = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004746 Token *label = NULL;
4747 int dont_prepend = 0;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004748 Token **params, *t, *tt;
4749 MMacro *m;
4750 Line *l, *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004751 int i, nparam, *paramlen;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004752 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004753
4754 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004755 skip_white_(t);
H. Peter Anvince2233b2008-05-25 21:57:00 -07004756 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00004757 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004758 return 0;
4759 m = is_mmacro(t, &params);
4760 if (m) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004761 mname = t->text;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004762 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004763 Token *last;
4764 /*
4765 * We have an id which isn't a macro call. We'll assume
4766 * it might be a label; we'll also check to see if a
4767 * colon follows it. Then, if there's another id after
4768 * that lot, we'll check it again for macro-hood.
4769 */
4770 label = last = t;
4771 t = t->next;
4772 if (tok_type_(t, TOK_WHITESPACE))
4773 last = t, t = t->next;
4774 if (tok_is_(t, ":")) {
4775 dont_prepend = 1;
4776 last = t, t = t->next;
4777 if (tok_type_(t, TOK_WHITESPACE))
4778 last = t, t = t->next;
4779 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004780 if (!tok_type_(t, TOK_ID) || !(m = is_mmacro(t, &params)))
4781 return 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004782 last->next = NULL;
Keith Kanios891775e2009-07-11 06:08:54 -05004783 mname = t->text;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004784 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004785 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004786
4787 /*
4788 * Fix up the parameters: this involves stripping leading and
4789 * trailing whitespace, then stripping braces if they are
4790 * present.
4791 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004792 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004793 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004794
H. Peter Anvine2c80182005-01-15 22:15:51 +00004795 for (i = 0; params[i]; i++) {
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08004796 int brace = 0;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004797 int comma = (!m->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004798
H. Peter Anvine2c80182005-01-15 22:15:51 +00004799 t = params[i];
4800 skip_white_(t);
4801 if (tok_is_(t, "{"))
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08004802 t = t->next, brace++, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004803 params[i] = t;
4804 paramlen[i] = 0;
4805 while (t) {
4806 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
4807 break; /* ... because we have hit a comma */
4808 if (comma && t->type == TOK_WHITESPACE
4809 && tok_is_(t->next, ","))
4810 break; /* ... or a space then a comma */
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08004811 if (brace && t->type == TOK_OTHER) {
4812 if (t->text[0] == '{')
4813 brace++; /* ... or a nested opening brace */
4814 else if (t->text[0] == '}')
4815 if (!--brace)
4816 break; /* ... or a brace */
4817 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004818 t = t->next;
4819 paramlen[i]++;
4820 }
Jin Kyu Song5eac14b2013-11-27 20:52:16 -08004821 if (brace)
H. Peter Anvin130736c2016-02-17 20:27:41 -08004822 nasm_error(ERR_NONFATAL, "macro params should be enclosed in braces");
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004823 }
4824
4825 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004826 * OK, we have a MMacro structure together with a set of
4827 * parameters. We must now go through the expansion and push
4828 * copies of each Line on to istk->expansion. Substitution of
H. Peter Anvin76690a12002-04-30 20:52:49 +00004829 * parameter tokens and macro-local tokens doesn't get done
4830 * until the single-line macro substitution process; this is
4831 * because delaying them allows us to change the semantics
4832 * later through %rotate.
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004833 *
4834 * First, push an end marker on to istk->expansion, mark this
4835 * macro as in progress, and set up its invocation-specific
4836 * variables.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004837 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004838 ll = nasm_malloc(sizeof(Line));
4839 ll->next = istk->expansion;
4840 ll->finishes = m;
4841 ll->first = NULL;
4842 istk->expansion = ll;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004843
4844 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004845 * Save the previous MMacro expansion in the case of
4846 * macro recursion
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004847 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004848 if (m->max_depth && m->in_progress)
4849 push_mmacro(m);
4850
4851 m->in_progress ++;
4852 m->params = params;
4853 m->iline = tline;
4854 m->nparam = nparam;
4855 m->rotate = 0;
4856 m->paramlen = paramlen;
4857 m->unique = unique++;
4858 m->lineno = 0;
4859 m->condcnt = 0;
4860
4861 m->next_active = istk->mstk;
4862 istk->mstk = m;
4863
4864 list_for_each(l, m->expansion) {
4865 Token **tail;
4866
4867 ll = nasm_malloc(sizeof(Line));
4868 ll->finishes = NULL;
4869 ll->next = istk->expansion;
4870 istk->expansion = ll;
4871 tail = &ll->first;
4872
4873 list_for_each(t, l->first) {
4874 Token *x = t;
4875 switch (t->type) {
4876 case TOK_PREPROC_Q:
4877 tt = *tail = new_Token(NULL, TOK_ID, mname, 0);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004878 break;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004879 case TOK_PREPROC_QQ:
4880 tt = *tail = new_Token(NULL, TOK_ID, m->name, 0);
4881 break;
4882 case TOK_PREPROC_ID:
4883 if (t->text[1] == '0' && t->text[2] == '0') {
4884 dont_prepend = -1;
4885 x = label;
4886 if (!x)
4887 continue;
4888 }
4889 /* fall through */
4890 default:
4891 tt = *tail = new_Token(NULL, x->type, x->text, 0);
4892 break;
4893 }
4894 tail = &tt->next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004895 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004896 *tail = NULL;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004897 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004898
4899 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00004900 * If we had a label, push it on as the first line of
4901 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004902 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004903 if (label) {
4904 if (dont_prepend < 0)
4905 free_tlist(startline);
4906 else {
4907 ll = nasm_malloc(sizeof(Line));
4908 ll->finishes = NULL;
4909 ll->next = istk->expansion;
4910 istk->expansion = ll;
4911 ll->first = startline;
4912 if (!dont_prepend) {
4913 while (label->next)
4914 label = label->next;
4915 label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004916 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004917 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004918 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004919
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08004920 lfmt->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004921
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004922 return 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004923}
4924
H. Peter Anvin130736c2016-02-17 20:27:41 -08004925/*
4926 * This function adds macro names to error messages, and suppresses
4927 * them if necessary.
4928 */
4929static void pp_verror(int severity, const char *fmt, va_list arg)
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004930{
H. Peter Anvin130736c2016-02-17 20:27:41 -08004931 char buff[BUFSIZ];
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004932 MMacro *mmac = NULL;
4933 int delta = 0;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004934
H. Peter Anvin130736c2016-02-17 20:27:41 -08004935 /*
4936 * If we're in a dead branch of IF or something like it, ignore the error.
4937 * However, because %else etc are evaluated in the state context
4938 * of the previous branch, errors might get lost:
4939 * %if 0 ... %else trailing garbage ... %endif
4940 * So %else etc should set the ERR_PP_PRECOND flag.
4941 */
4942 if ((severity & ERR_MASK) < ERR_FATAL &&
4943 istk && istk->conds &&
4944 ((severity & ERR_PP_PRECOND) ?
4945 istk->conds->state == COND_NEVER :
H. Peter Anvineb6653f2016-04-05 13:03:10 -07004946 !emitting(istk->conds->state)))
H. Peter Anvin130736c2016-02-17 20:27:41 -08004947 return;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004948
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004949 /* get %macro name */
H. Peter Anvin130736c2016-02-17 20:27:41 -08004950 if (!(severity & ERR_NOFILE) && istk && istk->mstk) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004951 mmac = istk->mstk;
4952 /* but %rep blocks should be skipped */
4953 while (mmac && !mmac->name)
4954 mmac = mmac->next_active, delta++;
Cyrill Gorcunov9900c6b2011-10-09 18:58:46 +04004955 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004956
H. Peter Anvin130736c2016-02-17 20:27:41 -08004957 if (mmac) {
4958 vsnprintf(buff, sizeof(buff), fmt, arg);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004959
H. Peter Anvin130736c2016-02-17 20:27:41 -08004960 nasm_set_verror(real_verror);
4961 nasm_error(severity, "(%s:%d) %s",
4962 mmac->name, mmac->lineno - delta, buff);
4963 nasm_set_verror(pp_verror);
4964 } else {
4965 real_verror(severity, fmt, arg);
4966 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004967}
4968
H. Peter Anvin734b1882002-04-30 21:01:08 +00004969static void
H. Peter Anvin130736c2016-02-17 20:27:41 -08004970pp_reset(char *file, int apass, StrList **deplist)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004971{
H. Peter Anvin7383b402008-09-24 10:20:40 -07004972 Token *t;
4973
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004974 cstk = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004975 istk = nasm_malloc(sizeof(Include));
4976 istk->next = NULL;
4977 istk->conds = NULL;
4978 istk->expansion = NULL;
4979 istk->mstk = NULL;
H. Peter Anvin3e83cec2016-05-25 04:28:46 -07004980 istk->fp = nasm_open_read(file, NF_TEXT);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004981 istk->fname = NULL;
H. Peter Anvin274cda82016-05-10 02:56:29 -07004982 src_set(0, file);
H. Peter Anvineba20a72002-04-30 20:53:55 +00004983 istk->lineinc = 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004984 if (!istk->fp)
H. Peter Anvin130736c2016-02-17 20:27:41 -08004985 nasm_fatal(ERR_NOFILE, "unable to open input file `%s'", file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004986 defining = NULL;
Charles Crayned4200be2008-07-12 16:42:33 -07004987 nested_mac_count = 0;
4988 nested_rep_count = 0;
H. Peter Anvin97a23472007-09-16 17:57:25 -07004989 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004990 unique = 0;
H. Peter Anvinf7606612016-07-13 14:23:48 -07004991
4992 if (tasm_compatible_mode)
4993 pp_add_stdmac(nasm_stdmac_tasm);
4994
4995 pp_add_stdmac(nasm_stdmac_nasm);
4996 pp_add_stdmac(nasm_stdmac_version);
4997
Cyrill Gorcunov15ce78f2017-01-06 20:21:28 +03004998 if (extrastdmac)
4999 pp_add_stdmac(extrastdmac);
5000
H. Peter Anvinf7606612016-07-13 14:23:48 -07005001 stdmacpos = stdmacros[0];
5002 stdmacnext = &stdmacros[1];
5003
H. Peter Anvind2456592008-06-19 15:04:18 -07005004 do_predef = true;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07005005
5006 /*
5007 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
5008 * The caller, however, will also pass in 3 for preprocess-only so
5009 * we can set __PASS__ accordingly.
5010 */
5011 pass = apass > 2 ? 2 : apass;
5012
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07005013 dephead = deplist;
H. Peter Anvin436e3672016-10-04 01:12:28 -07005014 nasm_add_string_to_strlist(dephead, file);
H. Peter Anvin9924d1e2016-10-04 00:59:39 -07005015
H. Peter Anvin61f130f2008-09-25 15:45:06 -07005016 /*
5017 * Define the __PASS__ macro. This is defined here unlike
5018 * all the other builtins, because it is special -- it varies between
5019 * passes.
5020 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005021 t = nasm_malloc(sizeof(*t));
5022 t->next = NULL;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07005023 make_tok_num(t, apass);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005024 t->a.mac = NULL;
H. Peter Anvin7383b402008-09-24 10:20:40 -07005025 define_smacro(NULL, "__PASS__", true, 0, t);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005026}
5027
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07005028static void pp_init(void)
5029{
5030 hash_init(&FileHash, HASH_MEDIUM);
5031}
5032
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005033static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005034{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005035 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005036 Token *tline;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005037
H. Peter Anvin130736c2016-02-17 20:27:41 -08005038 real_verror = nasm_set_verror(pp_verror);
H. Peter Anvin215186f2016-02-17 20:27:41 -08005039
H. Peter Anvine2c80182005-01-15 22:15:51 +00005040 while (1) {
5041 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005042 * Fetch a tokenized line, either from the macro-expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00005043 * buffer or from the input file.
5044 */
5045 tline = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005046 while (istk->expansion && istk->expansion->finishes) {
5047 Line *l = istk->expansion;
5048 if (!l->finishes->name && l->finishes->in_progress > 1) {
5049 Line *ll;
H. Peter Anvineba20a72002-04-30 20:53:55 +00005050
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005051 /*
5052 * This is a macro-end marker for a macro with no
5053 * name, which means it's not really a macro at all
5054 * but a %rep block, and the `in_progress' field is
5055 * more than 1, meaning that we still need to
5056 * repeat. (1 means the natural last repetition; 0
5057 * means termination by %exitrep.) We have
5058 * therefore expanded up to the %endrep, and must
5059 * push the whole block on to the expansion buffer
5060 * again. We don't bother to remove the macro-end
5061 * marker: we'd only have to generate another one
5062 * if we did.
5063 */
5064 l->finishes->in_progress--;
5065 list_for_each(l, l->finishes->expansion) {
5066 Token *t, *tt, **tail;
5067
5068 ll = nasm_malloc(sizeof(Line));
5069 ll->next = istk->expansion;
5070 ll->finishes = NULL;
5071 ll->first = NULL;
5072 tail = &ll->first;
5073
5074 list_for_each(t, l->first) {
5075 if (t->text || t->type == TOK_WHITESPACE) {
5076 tt = *tail = new_Token(NULL, t->type, t->text, 0);
5077 tail = &tt->next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005078 }
5079 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005080
5081 istk->expansion = ll;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005082 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005083 } else {
5084 /*
5085 * Check whether a `%rep' was started and not ended
5086 * within this macro expansion. This can happen and
5087 * should be detected. It's a fatal error because
5088 * I'm too confused to work out how to recover
5089 * sensibly from it.
5090 */
5091 if (defining) {
5092 if (defining->name)
H. Peter Anvin130736c2016-02-17 20:27:41 -08005093 nasm_panic(0, "defining with name in expansion");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005094 else if (istk->mstk->name)
H. Peter Anvin130736c2016-02-17 20:27:41 -08005095 nasm_fatal(0, "`%%rep' without `%%endrep' within"
5096 " expansion of macro `%s'",
5097 istk->mstk->name);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005098 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005099
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005100 /*
5101 * FIXME: investigate the relationship at this point between
5102 * istk->mstk and l->finishes
5103 */
5104 {
5105 MMacro *m = istk->mstk;
5106 istk->mstk = m->next_active;
5107 if (m->name) {
5108 /*
5109 * This was a real macro call, not a %rep, and
5110 * therefore the parameter information needs to
5111 * be freed.
5112 */
5113 if (m->prev) {
5114 pop_mmacro(m);
5115 l->finishes->in_progress --;
5116 } else {
5117 nasm_free(m->params);
5118 free_tlist(m->iline);
5119 nasm_free(m->paramlen);
5120 l->finishes->in_progress = 0;
5121 }
Adam Majer91e72402017-07-25 10:42:01 +02005122 }
5123
5124 /*
5125 * FIXME It is incorrect to always free_mmacro here.
5126 * It leads to usage-after-free.
5127 *
5128 * https://bugzilla.nasm.us/show_bug.cgi?id=3392414
5129 */
5130#if 0
5131 else
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005132 free_mmacro(m);
Adam Majer91e72402017-07-25 10:42:01 +02005133#endif
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005134 }
5135 istk->expansion = l->next;
5136 nasm_free(l);
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08005137 lfmt->downlevel(LIST_MACRO);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005138 }
5139 }
5140 while (1) { /* until we get a line we can use */
5141
5142 if (istk->expansion) { /* from a macro expansion */
5143 char *p;
5144 Line *l = istk->expansion;
5145 if (istk->mstk)
5146 istk->mstk->lineno++;
5147 tline = l->first;
5148 istk->expansion = l->next;
5149 nasm_free(l);
5150 p = detoken(tline, false);
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08005151 lfmt->line(LIST_MACRO, p);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005152 nasm_free(p);
5153 break;
5154 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005155 line = read_line();
5156 if (line) { /* from the current input file */
5157 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00005158 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005159 nasm_free(line);
5160 break;
5161 }
5162 /*
5163 * The current file has ended; work down the istk
5164 */
5165 {
5166 Include *i = istk;
5167 fclose(i->fp);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005168 if (i->conds) {
5169 /* nasm_error can't be conditionally suppressed */
H. Peter Anvin41087062016-03-03 14:27:34 -08005170 nasm_fatal(0,
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005171 "expected `%%endif' before end of file");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005172 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005173 /* only set line and file name if there's a next node */
H. Peter Anvin274cda82016-05-10 02:56:29 -07005174 if (i->next)
5175 src_set(i->lineno, i->fname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005176 istk = i->next;
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08005177 lfmt->downlevel(LIST_INCLUDE);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005178 nasm_free(i);
H. Peter Anvin130736c2016-02-17 20:27:41 -08005179 if (!istk) {
5180 line = NULL;
5181 goto done;
5182 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005183 if (istk->expansion && istk->expansion->finishes)
5184 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005185 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005186 }
5187
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005188 /*
5189 * We must expand MMacro parameters and MMacro-local labels
5190 * _before_ we plunge into directive processing, to cope
5191 * with things like `%define something %1' such as STRUC
5192 * uses. Unless we're _defining_ a MMacro, in which case
5193 * those tokens should be left alone to go into the
5194 * definition; and unless we're in a non-emitting
5195 * condition, in which case we don't want to meddle with
5196 * anything.
5197 */
5198 if (!defining && !(istk->conds && !emitting(istk->conds->state))
5199 && !(istk->mstk && !istk->mstk->in_progress)) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005200 tline = expand_mmac_params(tline);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005201 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005202
H. Peter Anvine2c80182005-01-15 22:15:51 +00005203 /*
5204 * Check the line to see if it's a preprocessor directive.
5205 */
H. Peter Anvinbc7f4fe2016-10-04 14:57:17 -07005206 if (do_directive(tline, &line) == DIRECTIVE_FOUND) {
5207 if (line)
5208 break; /* Directive generated output */
5209 else
5210 continue;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005211 } else if (defining) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005212 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005213 * We're defining a multi-line macro. We emit nothing
5214 * at all, and just
5215 * shove the tokenized line on to the macro definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005216 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005217 Line *l = nasm_malloc(sizeof(Line));
5218 l->next = defining->expansion;
5219 l->first = tline;
5220 l->finishes = NULL;
5221 defining->expansion = l;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005222 continue;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005223 } else if (istk->conds && !emitting(istk->conds->state)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005224 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005225 * We're in a non-emitting branch of a condition block.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005226 * Emit nothing at all, not even a blank line: when we
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005227 * emerge from the condition we'll give a line-number
H. Peter Anvine2c80182005-01-15 22:15:51 +00005228 * directive so we keep our place correctly.
5229 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005230 free_tlist(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005231 continue;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005232 } else if (istk->mstk && !istk->mstk->in_progress) {
5233 /*
5234 * We're in a %rep block which has been terminated, so
5235 * we're walking through to the %endrep without
5236 * emitting anything. Emit nothing at all, not even a
5237 * blank line: when we emerge from the %rep block we'll
5238 * give a line-number directive so we keep our place
5239 * correctly.
5240 */
5241 free_tlist(tline);
5242 continue;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005243 } else {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005244 tline = expand_smacro(tline);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005245 if (!expand_mmacro(tline)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005246 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00005247 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005248 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005249 line = detoken(tline, true);
5250 free_tlist(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005251 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005252 } else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005253 continue; /* expand_mmacro calls free_tlist */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005254 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005255 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005256 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005257
H. Peter Anvin130736c2016-02-17 20:27:41 -08005258done:
5259 nasm_set_verror(real_verror);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005260 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005261}
5262
H. Peter Anvine2c80182005-01-15 22:15:51 +00005263static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005264{
H. Peter Anvin130736c2016-02-17 20:27:41 -08005265 real_verror = nasm_set_verror(pp_verror);
H. Peter Anvin215186f2016-02-17 20:27:41 -08005266
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005267 if (defining) {
5268 if (defining->name) {
H. Peter Anvin130736c2016-02-17 20:27:41 -08005269 nasm_error(ERR_NONFATAL,
5270 "end of file while still defining macro `%s'",
5271 defining->name);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005272 } else {
H. Peter Anvin130736c2016-02-17 20:27:41 -08005273 nasm_error(ERR_NONFATAL, "end of file while still in %%rep");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005274 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005275
5276 free_mmacro(defining);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005277 defining = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005278 }
H. Peter Anvin130736c2016-02-17 20:27:41 -08005279
5280 nasm_set_verror(real_verror);
H. Peter Anvin215186f2016-02-17 20:27:41 -08005281
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005282 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005283 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07005284 free_macros();
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005285 while (istk) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005286 Include *i = istk;
5287 istk = istk->next;
5288 fclose(i->fp);
Cyrill Gorcunov8dcfd882011-03-03 09:18:56 +03005289 nasm_free(i);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005290 }
5291 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005292 ctx_pop();
H. Peter Anvin274cda82016-05-10 02:56:29 -07005293 src_set_fname(NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005294 if (pass == 0) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005295 IncPath *i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005296 free_llist(predef);
Cyrill Gorcunovdae24d72014-06-28 10:17:39 +04005297 predef = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005298 delete_Blocks();
Cyrill Gorcunovdae24d72014-06-28 10:17:39 +04005299 freeTokens = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005300 while ((i = ipath)) {
5301 ipath = i->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005302 if (i->path)
5303 nasm_free(i->path);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005304 nasm_free(i);
5305 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07005306 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005307}
5308
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005309static void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005310{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005311 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07005312
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005313 i = nasm_malloc(sizeof(IncPath));
5314 i->path = path ? nasm_strdup(path) : NULL;
5315 i->next = NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005316
H. Peter Anvin89cee572009-07-15 09:16:54 -04005317 if (ipath) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005318 IncPath *j = ipath;
H. Peter Anvin89cee572009-07-15 09:16:54 -04005319 while (j->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005320 j = j->next;
5321 j->next = i;
5322 } else {
5323 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005324 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005325}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005326
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005327static void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005328{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005329 Token *inc, *space, *name;
5330 Line *l;
5331
H. Peter Anvin734b1882002-04-30 21:01:08 +00005332 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
5333 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
5334 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005335
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005336 l = nasm_malloc(sizeof(Line));
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005337 l->next = predef;
5338 l->first = inc;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005339 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005340 predef = l;
5341}
5342
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005343static void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005344{
5345 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005346 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005347 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005348
H. Peter Anvin130736c2016-02-17 20:27:41 -08005349 real_verror = nasm_set_verror(pp_verror);
H. Peter Anvin215186f2016-02-17 20:27:41 -08005350
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005351 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00005352 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5353 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005354 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005355 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00005356 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005357 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005358 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005359
Cyrill Gorcunov6d42e9b2015-02-08 11:07:17 +03005360 if (space->next->type != TOK_PREPROC_ID &&
5361 space->next->type != TOK_ID)
H. Peter Anvin130736c2016-02-17 20:27:41 -08005362 nasm_error(ERR_WARNING, "pre-defining non ID `%s\'\n", definition);
Cyrill Gorcunov6d42e9b2015-02-08 11:07:17 +03005363
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005364 l = nasm_malloc(sizeof(Line));
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005365 l->next = predef;
5366 l->first = def;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005367 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005368 predef = l;
H. Peter Anvin130736c2016-02-17 20:27:41 -08005369
5370 nasm_set_verror(real_verror);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005371}
5372
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005373static void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00005374{
5375 Token *def, *space;
5376 Line *l;
5377
H. Peter Anvin734b1882002-04-30 21:01:08 +00005378 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5379 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00005380 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00005381
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005382 l = nasm_malloc(sizeof(Line));
H. Peter Anvin620515a2002-04-30 20:57:38 +00005383 l->next = predef;
5384 l->first = def;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005385 l->finishes = NULL;
H. Peter Anvin620515a2002-04-30 20:57:38 +00005386 predef = l;
5387}
5388
H. Peter Anvinf7606612016-07-13 14:23:48 -07005389static void pp_add_stdmac(macros_t *macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005390{
H. Peter Anvinf7606612016-07-13 14:23:48 -07005391 macros_t **mp;
5392
5393 /* Find the end of the list and avoid duplicates */
5394 for (mp = stdmacros; *mp; mp++) {
5395 if (*mp == macros)
5396 return; /* Nothing to do */
5397 }
5398
5399 nasm_assert(mp < &stdmacros[ARRAY_SIZE(stdmacros)-1]);
5400
5401 *mp = macros;
H. Peter Anvin76690a12002-04-30 20:52:49 +00005402}
5403
Cyrill Gorcunov15ce78f2017-01-06 20:21:28 +03005404static void pp_extra_stdmac(macros_t *macros)
5405{
5406 extrastdmac = macros;
5407}
5408
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005409static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005410{
Cyrill Gorcunovce652742013-05-06 23:43:43 +04005411 char numbuf[32];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005412 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00005413 tok->text = nasm_strdup(numbuf);
5414 tok->type = TOK_NUMBER;
5415}
5416
H. Peter Anvin37368952016-05-09 14:10:32 -07005417static void pp_list_one_macro(MMacro *m, int severity)
5418{
5419 if (!m)
5420 return;
5421
5422 /* We need to print the next_active list in reverse order */
5423 pp_list_one_macro(m->next_active, severity);
5424
5425 if (m->name && !m->nolist) {
H. Peter Anvin274cda82016-05-10 02:56:29 -07005426 src_set(m->xline + m->lineno, m->fname);
H. Peter Anvin37368952016-05-09 14:10:32 -07005427 nasm_error(severity, "... from macro `%s' defined here", m->name);
5428 }
5429}
5430
H. Peter Anvin4def1a82016-05-09 13:59:44 -07005431static void pp_error_list_macros(int severity)
5432{
H. Peter Anvin4def1a82016-05-09 13:59:44 -07005433 int32_t saved_line;
5434 const char *saved_fname = NULL;
5435
5436 severity |= ERR_PP_LISTMACRO | ERR_NO_SEVERITY;
H. Peter Anvin274cda82016-05-10 02:56:29 -07005437 src_get(&saved_line, &saved_fname);
H. Peter Anvin4def1a82016-05-09 13:59:44 -07005438
Cyrill Gorcunov771d04e2016-05-10 23:27:03 +03005439 if (istk)
5440 pp_list_one_macro(istk->mstk, severity);
H. Peter Anvin4def1a82016-05-09 13:59:44 -07005441
H. Peter Anvin274cda82016-05-10 02:56:29 -07005442 src_set(saved_line, saved_fname);
H. Peter Anvin4def1a82016-05-09 13:59:44 -07005443}
5444
H. Peter Anvine7469712016-02-18 02:20:59 -08005445const struct preproc_ops nasmpp = {
H. Peter Anvin169ac7c2016-09-25 17:08:05 -07005446 pp_init,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005447 pp_reset,
5448 pp_getline,
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005449 pp_cleanup,
Cyrill Gorcunov15ce78f2017-01-06 20:21:28 +03005450 pp_extra_stdmac,
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005451 pp_pre_define,
5452 pp_pre_undefine,
5453 pp_pre_include,
H. Peter Anvin4def1a82016-05-09 13:59:44 -07005454 pp_include_path,
5455 pp_error_list_macros,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005456};