blob: b878e4b13591a2932c2af7b3f9f653a220bc77bb [file] [log] [blame]
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07001/* ----------------------------------------------------------------------- *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002 *
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003 * Copyright 1996-2012 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>
Keith Kaniosb7a89542007-04-12 02:40:54 +000072#include <inttypes.h>
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000073
74#include "nasm.h"
75#include "nasmlib.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 Anvind7ed89e2002-04-30 20:52:08 +000083
84typedef struct SMacro SMacro;
H. Peter Anvin36206cd2012-03-03 16:14:51 -080085typedef struct MMacro MMacro;
86typedef struct MMacroInvocation MMacroInvocation;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000087typedef struct Context Context;
88typedef struct Token Token;
H. Peter Anvince616072002-04-30 21:02:23 +000089typedef struct Blocks Blocks;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000090typedef struct Line Line;
91typedef struct Include Include;
H. Peter Anvin36206cd2012-03-03 16:14:51 -080092typedef struct Cond Cond;
H. Peter Anvin6768eb72002-04-30 20:52:26 +000093typedef struct IncPath IncPath;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000094
95/*
H. Peter Anvin97a23472007-09-16 17:57:25 -070096 * Note on the storage of both SMacro and MMacros: the hash table
97 * indexes them case-insensitively, and we then have to go through a
98 * linked list of potential case aliases (and, for MMacros, parameter
99 * ranges); this is to preserve the matching semantics of the earlier
100 * code. If the number of case aliases for a specific macro is a
101 * performance issue, you may want to reconsider your coding style.
102 */
103
104/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000105 * Store the definition of a single-line macro.
106 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000107struct SMacro {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800108 SMacro *next;
109 char *name;
110 bool casesense;
111 bool in_progress;
112 unsigned int nparam;
113 Token *expansion;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000114};
115
116/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800117 * Store the definition of a multi-line macro. This is also used to
118 * store the interiors of `%rep...%endrep' blocks, which are
119 * effectively self-re-invoking multi-line macros which simply
120 * don't have a name or bother to appear in the hash tables. %rep
121 * blocks are signified by having a NULL `name' field.
122 *
123 * In a MMacro describing a `%rep' block, the `in_progress' field
124 * isn't merely boolean, but gives the number of repeats left to
125 * run.
126 *
127 * The `next' field is used for storing MMacros in hash tables; the
128 * `next_active' field is for stacking them on istk entries.
129 *
130 * When a MMacro is being expanded, `params', `iline', `nparam',
131 * `paramlen', `rotate' and `unique' are local to the invocation.
132 */
133struct MMacro {
134 MMacro *next;
135 MMacroInvocation *prev; /* previous invocation */
136 char *name;
137 int nparam_min, nparam_max;
138 bool casesense;
139 bool plus; /* is the last parameter greedy? */
140 bool nolist; /* is this macro listing-inhibited? */
141 int64_t in_progress; /* is this macro currently being expanded? */
142 int32_t max_depth; /* maximum number of recursive expansions allowed */
143 Token *dlist; /* All defaults as one list */
144 Token **defaults; /* Parameter default pointers */
145 int ndefs; /* number of default parameters */
146 Line *expansion;
147
148 MMacro *next_active;
149 MMacro *rep_nest; /* used for nesting %rep */
150 Token **params; /* actual parameters */
151 Token *iline; /* invocation line */
152 unsigned int nparam, rotate;
153 int *paramlen;
154 uint64_t unique;
155 int lineno; /* Current line number on expansion */
156 uint64_t condcnt; /* number of if blocks... */
157};
158
159
160/* Store the definition of a multi-line macro, as defined in a
161 * previous recursive macro expansion.
162 */
163struct MMacroInvocation {
164 MMacroInvocation *prev; /* previous invocation */
165 Token **params; /* actual parameters */
166 Token *iline; /* invocation line */
167 unsigned int nparam, rotate;
168 int *paramlen;
169 uint64_t unique;
170 uint64_t condcnt;
171};
172
173
174/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000175 * The context stack is composed of a linked list of these.
176 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000177struct Context {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800178 Context *next;
179 char *name;
180 struct hash_table localmac;
181 uint32_t number;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000182};
183
184/*
185 * This is the internal form which we break input lines up into.
186 * Typically stored in linked lists.
187 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000188 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
189 * necessarily used as-is, but is intended to denote the number of
190 * the substituted parameter. So in the definition
191 *
192 * %define a(x,y) ( (x) & ~(y) )
H. Peter Anvin70653092007-10-19 14:42:29 -0700193 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000194 * the token representing `x' will have its type changed to
195 * TOK_SMAC_PARAM, but the one representing `y' will be
196 * TOK_SMAC_PARAM+1.
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000197 *
198 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
199 * which doesn't need quotes around it. Used in the pre-include
200 * mechanism as an alternative to trying to find a sensible type of
201 * quote to use on the filename we were passed.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000202 */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000203enum pp_token_type {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800204 TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID,
205 TOK_PREPROC_ID, TOK_STRING,
206 TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER,
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700207 TOK_INTERNAL_STRING,
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800208 TOK_PREPROC_Q, TOK_PREPROC_QQ,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300209 TOK_PASTE, /* %+ */
210 TOK_INDIRECT, /* %[...] */
Jin Kyu Songa800aed2013-08-21 19:29:08 -0700211 TOK_BRACE, /* \{...\} */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300212 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
213 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000214};
215
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +0400216#define PP_CONCAT_MASK(x) (1 << (x))
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +0400217#define PP_CONCAT_MATCH(t, mask) (PP_CONCAT_MASK((t)->type) & mask)
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +0400218
Cyrill Gorcunov575d4282010-10-06 00:25:55 +0400219struct tokseq_match {
220 int mask_head;
221 int mask_tail;
222};
223
H. Peter Anvine2c80182005-01-15 22:15:51 +0000224struct Token {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800225 Token *next;
226 char *text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -0700227 union {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800228 SMacro *mac; /* associated macro for TOK_SMAC_END */
229 size_t len; /* scratch length field */
230 } a; /* Auxiliary data */
231 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000232};
233
234/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800235 * Multi-line macro definitions are stored as a linked list of
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000236 * these, which is essentially a container to allow several linked
237 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700238 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000239 * Note that in this module, linked lists are treated as stacks
240 * wherever possible. For this reason, Lines are _pushed_ on to the
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800241 * `expansion' field in MMacro structures, so that the linked list,
242 * if walked, would give the macro lines in reverse order; this
243 * means that we can walk the list when expanding a macro, and thus
244 * push the lines on to the `expansion' field in _istk_ in reverse
245 * order (so that when popped back off they are in the right
246 * order). It may seem cockeyed, and it relies on my design having
247 * an even number of steps in, but it works...
248 *
249 * Some of these structures, rather than being actual lines, are
250 * markers delimiting the end of the expansion of a given macro.
251 * This is for use in the cycle-tracking and %rep-handling code.
252 * Such structures have `finishes' non-NULL, and `first' NULL. All
253 * others have `finishes' NULL, but `first' may still be NULL if
254 * the line is blank.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000255 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000256struct Line {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800257 Line *next;
258 MMacro *finishes;
259 Token *first;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500260};
261
262/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000263 * To handle an arbitrary level of file inclusion, we maintain a
264 * stack (ie linked list) of these things.
265 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000266struct Include {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800267 Include *next;
268 FILE *fp;
269 Cond *conds;
270 Line *expansion;
271 char *fname;
272 int lineno, lineinc;
273 MMacro *mstk; /* stack of active macros/reps */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000274};
275
276/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000277 * Include search path. This is simply a list of strings which get
278 * prepended, in turn, to the name of an include file, in an
279 * attempt to find the file if it's not in the current directory.
280 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000281struct IncPath {
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800282 IncPath *next;
283 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000284};
285
286/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000287 * Conditional assembly: we maintain a separate stack of these for
288 * each level of file inclusion. (The only reason we keep the
289 * stacks separate is to ensure that a stray `%endif' in a file
290 * included from within the true branch of a `%if' won't terminate
291 * it and cause confusion: instead, rightly, it'll cause an error.)
292 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800293struct Cond {
294 Cond *next;
295 int state;
296};
H. Peter Anvine2c80182005-01-15 22:15:51 +0000297enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000298 /*
299 * These states are for use just after %if or %elif: IF_TRUE
300 * means the condition has evaluated to truth so we are
301 * currently emitting, whereas IF_FALSE means we are not
302 * currently emitting but will start doing so if a %else comes
303 * up. In these states, all directives are admissible: %elif,
304 * %else and %endif. (And of course %if.)
305 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800306 COND_IF_TRUE, COND_IF_FALSE,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000307 /*
308 * These states come up after a %else: ELSE_TRUE means we're
309 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
310 * any %elif or %else will cause an error.
311 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800312 COND_ELSE_TRUE, COND_ELSE_FALSE,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000313 /*
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200314 * These states mean that we're not emitting now, and also that
315 * nothing until %endif will be emitted at all. COND_DONE is
316 * used when we've had our moment of emission
317 * and have now started seeing %elifs. COND_NEVER is used when
318 * the condition construct in question is contained within a
319 * non-emitting branch of a larger condition construct,
320 * or if there is an error.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000321 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800322 COND_DONE, COND_NEVER
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000323};
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800324#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000325
H. Peter Anvin70653092007-10-19 14:42:29 -0700326/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000327 * These defines are used as the possible return values for do_directive
328 */
329#define NO_DIRECTIVE_FOUND 0
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300330#define DIRECTIVE_FOUND 1
Ed Beroset3ab3f412002-06-11 03:31:49 +0000331
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000332/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800333 * This define sets the upper limit for smacro and recursive mmacro
334 * expansions
Keith Kanios852f1ee2009-07-12 00:19:55 -0500335 */
336#define DEADMAN_LIMIT (1 << 20)
337
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +0400338/* max reps */
339#define REP_LIMIT ((INT64_C(1) << 62))
340
Keith Kanios852f1ee2009-07-12 00:19:55 -0500341/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000342 * Condition codes. Note that we use c_ prefix not C_ because C_ is
343 * used in nasm.h for the "real" condition codes. At _this_ level,
344 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
345 * ones, so we need a different enum...
346 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700347static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000348 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
349 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000350 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000351};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700352enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000353 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
354 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 -0700355 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
356 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000357};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700358static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000359 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
360 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 +0000361 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000362};
363
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800364/*
365 * Directive names.
366 */
367/* If this is a an IF, ELIF, ELSE or ENDIF keyword */
368static int is_condition(enum preproc_token arg)
369{
370 return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF);
371}
372
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000373/* For TASM compatibility we need to be able to recognise TASM compatible
374 * conditional compilation directives. Using the NASM pre-processor does
375 * not work, so we look for them specifically from the following list and
376 * then jam in the equivalent NASM directive into the input stream.
377 */
378
H. Peter Anvine2c80182005-01-15 22:15:51 +0000379enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000380 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
381 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
382};
383
H. Peter Anvin476d2862007-10-02 22:04:15 -0700384static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000385 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
386 "ifndef", "include", "local"
387};
388
389static int StackSize = 4;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000390static char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000391static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800392static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000393
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000394static Context *cstk;
395static Include *istk;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800396static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000397
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300398static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700399static StrList **dephead, **deptail; /* Dependency list */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000400
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300401static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000402
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800403static Line *predef = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700404static bool do_predef;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000405
406static ListGen *list;
407
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000408/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800409 * The current set of multi-line macros we have defined.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000410 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800411static struct hash_table mmacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000412
413/*
414 * The current set of single-line macros we have defined.
415 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700416static struct hash_table smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000417
418/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800419 * The multi-line macro we are currently defining, or the %rep
420 * block we are currently reading, if any.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000421 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800422static MMacro *defining;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000423
Charles Crayned4200be2008-07-12 16:42:33 -0700424static uint64_t nested_mac_count;
425static uint64_t nested_rep_count;
426
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000427/*
428 * The number of macro parameters to allocate space for at a time.
429 */
430#define PARAM_DELTA 16
431
432/*
H. Peter Anvina4835d42008-05-20 14:21:29 -0700433 * The standard macro set: defined in macros.c in the array nasm_stdmac.
434 * This gives our position in the macro set, when we're processing it.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000435 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700436static macros_t *stdmacpos;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000437
438/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000439 * The extra standard macros that come from the object format, if
440 * any.
441 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800442static macros_t *extrastdmac = NULL;
H. Peter Anvincfb71762008-06-20 15:20:16 -0700443static bool any_extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000444
445/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000446 * Tokens are allocated in blocks to improve speed
447 */
448#define TOKEN_BLOCKSIZE 4096
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800449static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000450struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000451 Blocks *next;
452 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000453};
454
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800455static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000456
457/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000458 * Forward declarations.
459 */
H. Peter Anvin734b1882002-04-30 21:01:08 +0000460static Token *expand_mmac_params(Token * tline);
461static Token *expand_smacro(Token * tline);
462static Token *expand_id(Token * tline);
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +0400463static Context *get_ctx(const char *name, const char **namep);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700464static void make_tok_num(Token * tok, int64_t val);
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000465static void error(int severity, const char *fmt, ...);
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200466static void error_precond(int severity, const char *fmt, ...);
H. Peter Anvince616072002-04-30 21:02:23 +0000467static void *new_Block(size_t size);
468static void delete_Blocks(void);
H. Peter Anvinc751e862008-06-09 10:18:45 -0700469static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300470 const char *text, int txtlen);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000471static Token *delete_Token(Token * t);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000472
473/*
474 * Macros for safe checking of token pointers, avoid *(NULL)
475 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300476#define tok_type_(x,t) ((x) && (x)->type == (t))
477#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
478#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
479#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000480
Cyrill Gorcunov194ba892011-06-30 01:16:35 +0400481/*
H. Peter Anvin077fb932010-07-20 14:56:30 -0700482 * nasm_unquote with error if the string contains NUL characters.
483 * If the string contains NUL characters, issue an error and return
484 * the C len, i.e. truncate at the NUL.
485 */
486static size_t nasm_unquote_cstr(char *qstr, enum preproc_token directive)
487{
488 size_t len = nasm_unquote(qstr, NULL);
489 size_t clen = strlen(qstr);
490
491 if (len != clen)
492 error(ERR_NONFATAL, "NUL character in `%s' directive",
493 pp_directives[directive]);
494
495 return clen;
496}
497
498/*
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700499 * In-place reverse a list of tokens.
500 */
501static Token *reverse_tokens(Token *t)
502{
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800503 Token *prev = NULL;
504 Token *next;
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700505
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800506 while (t) {
507 next = t->next;
508 t->next = prev;
509 prev = t;
510 t = next;
511 }
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700512
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800513 return prev;
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700514}
515
516/*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300517 * Handle TASM specific directives, which do not contain a % in
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000518 * front of them. We do it here because I could not find any other
519 * place to do it for the moment, and it is a hack (ideally it would
520 * be nice to be able to use the NASM pre-processor to do it).
521 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000522static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000523{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000524 int32_t i, j, k, m, len;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400525 char *p, *q, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000526
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400527 p = nasm_skip_spaces(line);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000528
529 /* Binary search for the directive name */
530 i = -1;
Cyrill Gorcunova7319242010-06-03 22:04:36 +0400531 j = ARRAY_SIZE(tasm_directives);
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400532 q = nasm_skip_word(p);
533 len = q - p;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000534 if (len) {
535 oldchar = p[len];
536 p[len] = 0;
537 while (j - i > 1) {
538 k = (j + i) / 2;
539 m = nasm_stricmp(p, tasm_directives[k]);
540 if (m == 0) {
541 /* We have found a directive, so jam a % in front of it
542 * so that NASM will then recognise it as one if it's own.
543 */
544 p[len] = oldchar;
545 len = strlen(p);
546 oldline = line;
547 line = nasm_malloc(len + 2);
548 line[0] = '%';
549 if (k == TM_IFDIFI) {
H. Peter Anvin18f48792009-06-27 15:56:27 -0700550 /*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300551 * NASM does not recognise IFDIFI, so we convert
552 * it to %if 0. This is not used in NASM
553 * compatible code, but does need to parse for the
554 * TASM macro package.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000555 */
H. Peter Anvin18f48792009-06-27 15:56:27 -0700556 strcpy(line + 1, "if 0");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000557 } else {
558 memcpy(line + 1, p, len + 1);
559 }
560 nasm_free(oldline);
561 return line;
562 } else if (m < 0) {
563 j = k;
564 } else
565 i = k;
566 }
567 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000568 }
569 return line;
570}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000571
H. Peter Anvin76690a12002-04-30 20:52:49 +0000572/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000573 * The pre-preprocessing stage... This function translates line
574 * number indications as they emerge from GNU cpp (`# lineno "file"
575 * flags') into NASM preprocessor line number indications (`%line
576 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000577 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000578static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000579{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000580 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000581 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000582
H. Peter Anvine2c80182005-01-15 22:15:51 +0000583 if (line[0] == '#' && line[1] == ' ') {
584 oldline = line;
585 fname = oldline + 2;
586 lineno = atoi(fname);
587 fname += strspn(fname, "0123456789 ");
588 if (*fname == '"')
589 fname++;
590 fnlen = strcspn(fname, "\"");
591 line = nasm_malloc(20 + fnlen);
592 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
593 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000594 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000595 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000596 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000597 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000598}
599
600/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000601 * Free a linked list of tokens.
602 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000603static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000604{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400605 while (list)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000606 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000607}
608
609/*
610 * Free a linked list of lines.
611 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000612static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000613{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400614 Line *l, *tmp;
615 list_for_each_safe(l, tmp, list) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000616 free_tlist(l->first);
617 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000618 }
619}
620
621/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800622 * Free an MMacro
H. Peter Anvineba20a72002-04-30 20:53:55 +0000623 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800624static void free_mmacro(MMacro * m)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000625{
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800626 nasm_free(m->name);
627 free_tlist(m->dlist);
628 nasm_free(m->defaults);
629 free_llist(m->expansion);
630 nasm_free(m);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000631}
632
633/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700634 * Free all currently defined macros, and free the hash tables
635 */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700636static void free_smacro_table(struct hash_table *smt)
H. Peter Anvin97a23472007-09-16 17:57:25 -0700637{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400638 SMacro *s, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700639 const char *key;
640 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700641
H. Peter Anvin072771e2008-05-22 13:17:51 -0700642 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300643 nasm_free((void *)key);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400644 list_for_each_safe(s, tmp, s) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300645 nasm_free(s->name);
646 free_tlist(s->expansion);
647 nasm_free(s);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300648 }
H. Peter Anvin97a23472007-09-16 17:57:25 -0700649 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700650 hash_free(smt);
651}
652
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800653static void free_mmacro_table(struct hash_table *mmt)
H. Peter Anvin072771e2008-05-22 13:17:51 -0700654{
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800655 MMacro *m, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700656 const char *key;
657 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700658
659 it = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800660 while ((m = hash_iterate(mmt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300661 nasm_free((void *)key);
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800662 list_for_each_safe(m ,tmp, m)
663 free_mmacro(m);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700664 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800665 hash_free(mmt);
H. Peter Anvin072771e2008-05-22 13:17:51 -0700666}
667
668static void free_macros(void)
669{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700670 free_smacro_table(&smacros);
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800671 free_mmacro_table(&mmacros);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700672}
673
674/*
675 * Initialize the hash tables
676 */
677static void init_macros(void)
678{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700679 hash_init(&smacros, HASH_LARGE);
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800680 hash_init(&mmacros, HASH_LARGE);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700681}
682
683/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000684 * Pop the context stack.
685 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000686static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000687{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000688 Context *c = cstk;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000689
690 cstk = cstk->next;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700691 free_smacro_table(&c->localmac);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000692 nasm_free(c->name);
693 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000694}
695
H. Peter Anvin072771e2008-05-22 13:17:51 -0700696/*
697 * Search for a key in the hash index; adding it if necessary
698 * (in which case we initialize the data pointer to NULL.)
699 */
700static void **
701hash_findi_add(struct hash_table *hash, const char *str)
702{
703 struct hash_insert hi;
704 void **r;
705 char *strx;
706
707 r = hash_findi(hash, str, &hi);
708 if (r)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300709 return r;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700710
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300711 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700712 return hash_add(&hi, strx, NULL);
713}
714
715/*
716 * Like hash_findi, but returns the data element rather than a pointer
717 * to it. Used only when not adding a new element, hence no third
718 * argument.
719 */
720static void *
721hash_findix(struct hash_table *hash, const char *str)
722{
723 void **p;
724
725 p = hash_findi(hash, str, NULL);
726 return p ? *p : NULL;
727}
728
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400729/*
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800730 * read line from standart macros set,
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400731 * if there no more left -- return NULL
732 */
733static char *line_from_stdmac(void)
734{
735 unsigned char c;
736 const unsigned char *p = stdmacpos;
737 char *line, *q;
738 size_t len = 0;
739
740 if (!stdmacpos)
741 return NULL;
742
743 while ((c = *p++)) {
744 if (c >= 0x80)
745 len += pp_directives_len[c - 0x80] + 1;
746 else
747 len++;
748 }
749
750 line = nasm_malloc(len + 1);
751 q = line;
752 while ((c = *stdmacpos++)) {
753 if (c >= 0x80) {
754 memcpy(q, pp_directives[c - 0x80], pp_directives_len[c - 0x80]);
755 q += pp_directives_len[c - 0x80];
756 *q++ = ' ';
757 } else {
758 *q++ = c;
759 }
760 }
761 stdmacpos = p;
762 *q = '\0';
763
764 if (!*stdmacpos) {
765 /* This was the last of the standard macro chain... */
766 stdmacpos = NULL;
767 if (any_extrastdmac) {
768 stdmacpos = extrastdmac;
769 any_extrastdmac = false;
770 } else if (do_predef) {
771 Line *pd, *l;
772 Token *head, **tail, *t;
773
774 /*
775 * Nasty hack: here we push the contents of
776 * `predef' on to the top-level expansion stack,
777 * since this is the most convenient way to
778 * implement the pre-include and pre-define
779 * features.
780 */
781 list_for_each(pd, predef) {
782 head = NULL;
783 tail = &head;
784 list_for_each(t, pd->first) {
785 *tail = new_Token(NULL, t->type, t->text, 0);
786 tail = &(*tail)->next;
787 }
788
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800789 l = nasm_malloc(sizeof(Line));
790 l->next = istk->expansion;
791 l->first = head;
792 l->finishes = NULL;
793
794 istk->expansion = l;
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400795 }
796 do_predef = false;
797 }
798 }
799
800 return line;
801}
802
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000803static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000804{
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400805 unsigned int size, c, next;
806 const unsigned int delta = 512;
807 const unsigned int pad = 8;
808 unsigned int nr_cont = 0;
809 bool cont = false;
810 char *buffer, *p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000811
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400812 /* Standart macros set (predefined) goes first */
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400813 p = line_from_stdmac();
814 if (p)
815 return p;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700816
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400817 size = delta;
818 p = buffer = nasm_malloc(size);
819
820 for (;;) {
821 c = fgetc(istk->fp);
822 if ((int)(c) == EOF) {
823 p[0] = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000824 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000825 }
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400826
827 switch (c) {
828 case '\r':
829 next = fgetc(istk->fp);
830 if (next != '\n')
831 ungetc(next, istk->fp);
832 if (cont) {
833 cont = false;
834 continue;
835 }
836 break;
837
838 case '\n':
839 if (cont) {
840 cont = false;
841 continue;
842 }
843 break;
844
845 case '\\':
846 next = fgetc(istk->fp);
847 ungetc(next, istk->fp);
Cyrill Gorcunov490f85e2012-12-27 20:02:17 +0400848 if (next == '\r' || next == '\n') {
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400849 cont = true;
850 nr_cont++;
851 continue;
852 }
853 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000854 }
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400855
856 if (c == '\r' || c == '\n') {
857 *p++ = 0;
858 break;
859 }
860
861 if (p >= (buffer + size - pad)) {
862 buffer = nasm_realloc(buffer, size + delta);
863 p = buffer + size - pad;
864 size += delta;
865 }
866
867 *p++ = (unsigned char)c;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000868 }
869
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400870 if (p == buffer) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000871 nasm_free(buffer);
872 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000873 }
874
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300875 src_set_linnum(src_get_linnum() + istk->lineinc +
Cyrill Gorcunovf1fe4fd2012-10-27 19:27:18 +0400876 (nr_cont * istk->lineinc));
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000877
878 /*
879 * Handle spurious ^Z, which may be inserted into source files
880 * by some file transfer utilities.
881 */
882 buffer[strcspn(buffer, "\032")] = '\0';
883
H. Peter Anvin734b1882002-04-30 21:01:08 +0000884 list->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000885
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000886 return buffer;
887}
888
889/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000890 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000891 * don't need to parse the value out of e.g. numeric tokens: we
892 * simply split one string into many.
893 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000894static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000895{
H. Peter Anvinca544db2008-10-19 19:30:11 -0700896 char c, *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000897 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000898 Token *list = NULL;
899 Token *t, **tail = &list;
900
H. Peter Anvine2c80182005-01-15 22:15:51 +0000901 while (*line) {
902 p = line;
903 if (*p == '%') {
904 p++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300905 if (*p == '+' && !nasm_isdigit(p[1])) {
906 p++;
907 type = TOK_PASTE;
908 } else if (nasm_isdigit(*p) ||
909 ((*p == '-' || *p == '+') && nasm_isdigit(p[1]))) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000910 do {
911 p++;
912 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700913 while (nasm_isdigit(*p));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000914 type = TOK_PREPROC_ID;
915 } else if (*p == '{') {
916 p++;
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800917 while (*p) {
918 if (*p == '}')
919 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000920 p[-1] = *p;
921 p++;
922 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800923 if (*p != '}')
924 error(ERR_WARNING | ERR_PASS1, "unterminated %{ construct");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000925 p[-1] = '\0';
926 if (*p)
927 p++;
928 type = TOK_PREPROC_ID;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300929 } else if (*p == '[') {
930 int lvl = 1;
931 line += 2; /* Skip the leading %[ */
932 p++;
933 while (lvl && (c = *p++)) {
934 switch (c) {
935 case ']':
936 lvl--;
937 break;
938 case '%':
939 if (*p == '[')
940 lvl++;
941 break;
942 case '\'':
943 case '\"':
944 case '`':
Cyrill Gorcunovc6360a72010-07-13 13:32:19 +0400945 p = nasm_skip_string(p - 1) + 1;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300946 break;
947 default:
948 break;
949 }
950 }
951 p--;
952 if (*p)
953 *p++ = '\0';
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800954 if (lvl)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300955 error(ERR_NONFATAL, "unterminated %[ construct");
956 type = TOK_INDIRECT;
957 } else if (*p == '?') {
958 type = TOK_PREPROC_Q; /* %? */
959 p++;
960 if (*p == '?') {
961 type = TOK_PREPROC_QQ; /* %?? */
962 p++;
963 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -0800964 } else if (*p == '!') {
965 type = TOK_PREPROC_ID;
966 p++;
967 if (isidchar(*p)) {
968 do {
969 p++;
970 }
971 while (isidchar(*p));
972 } else if (*p == '\'' || *p == '\"' || *p == '`') {
973 p = nasm_skip_string(p);
974 if (*p)
975 p++;
976 else
977 error(ERR_NONFATAL|ERR_PASS1, "unterminated %! string");
978 } else {
979 /* %! without string or identifier */
980 type = TOK_OTHER; /* Legacy behavior... */
981 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000982 } else if (isidchar(*p) ||
983 ((*p == '!' || *p == '%' || *p == '$') &&
984 isidchar(p[1]))) {
985 do {
986 p++;
987 }
988 while (isidchar(*p));
989 type = TOK_PREPROC_ID;
990 } else {
991 type = TOK_OTHER;
992 if (*p == '%')
993 p++;
994 }
995 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
996 type = TOK_ID;
997 p++;
998 while (*p && isidchar(*p))
999 p++;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07001000 } else if (*p == '\'' || *p == '"' || *p == '`') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001001 /*
1002 * A string token.
1003 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001004 type = TOK_STRING;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001005 p = nasm_skip_string(p);
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001006
H. Peter Anvine2c80182005-01-15 22:15:51 +00001007 if (*p) {
1008 p++;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001009 } else {
H. Peter Anvin917a3492008-09-24 09:14:49 -07001010 error(ERR_WARNING|ERR_PASS1, "unterminated string");
H. Peter Anvine2c80182005-01-15 22:15:51 +00001011 /* Handling unterminated strings by UNV */
1012 /* type = -1; */
1013 }
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001014 } else if (p[0] == '$' && p[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001015 type = TOK_OTHER; /* TOKEN_BASE */
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001016 p += 2;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001017 } else if (isnumstart(*p)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001018 bool is_hex = false;
1019 bool is_float = false;
1020 bool has_e = false;
1021 char c, *r;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001022
H. Peter Anvine2c80182005-01-15 22:15:51 +00001023 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001024 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001025 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001026
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001027 if (*p == '$') {
1028 p++;
1029 is_hex = true;
1030 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001031
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001032 for (;;) {
1033 c = *p++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001034
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001035 if (!is_hex && (c == 'e' || c == 'E')) {
1036 has_e = true;
1037 if (*p == '+' || *p == '-') {
1038 /*
1039 * e can only be followed by +/- if it is either a
1040 * prefixed hex number or a floating-point number
1041 */
1042 p++;
1043 is_float = true;
1044 }
1045 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
1046 is_hex = true;
1047 } else if (c == 'P' || c == 'p') {
1048 is_float = true;
1049 if (*p == '+' || *p == '-')
1050 p++;
1051 } else if (isnumchar(c) || c == '_')
1052 ; /* just advance */
1053 else if (c == '.') {
1054 /*
1055 * we need to deal with consequences of the legacy
1056 * parser, like "1.nolist" being two tokens
1057 * (TOK_NUMBER, TOK_ID) here; at least give it
1058 * a shot for now. In the future, we probably need
1059 * a flex-based scanner with proper pattern matching
1060 * to do it as well as it can be done. Nothing in
1061 * the world is going to help the person who wants
1062 * 0x123.p16 interpreted as two tokens, though.
1063 */
1064 r = p;
1065 while (*r == '_')
1066 r++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001067
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001068 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
1069 (!is_hex && (*r == 'e' || *r == 'E')) ||
1070 (*r == 'p' || *r == 'P')) {
1071 p = r;
1072 is_float = true;
1073 } else
1074 break; /* Terminate the token */
1075 } else
1076 break;
1077 }
1078 p--; /* Point to first character beyond number */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001079
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001080 if (p == line+1 && *line == '$') {
1081 type = TOK_OTHER; /* TOKEN_HERE */
1082 } else {
1083 if (has_e && !is_hex) {
1084 /* 1e13 is floating-point, but 1e13h is not */
1085 is_float = true;
1086 }
H. Peter Anvind784a082009-04-20 14:01:18 -07001087
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001088 type = is_float ? TOK_FLOAT : TOK_NUMBER;
1089 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -07001090 } else if (nasm_isspace(*p)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001091 type = TOK_WHITESPACE;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +04001092 p = nasm_skip_spaces(p);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001093 /*
1094 * Whitespace just before end-of-line is discarded by
1095 * pretending it's a comment; whitespace just before a
1096 * comment gets lumped into the comment.
1097 */
1098 if (!*p || *p == ';') {
1099 type = TOK_COMMENT;
1100 while (*p)
1101 p++;
1102 }
1103 } else if (*p == ';') {
1104 type = TOK_COMMENT;
1105 while (*p)
1106 p++;
Jin Kyu Songa800aed2013-08-21 19:29:08 -07001107 } else if (p[0] == '\\' && (p[1] == '{' || p[1] == '}')) {
1108 type = TOK_BRACE;
1109 p += 2;
1110 line++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001111 } else {
1112 /*
1113 * Anything else is an operator of some kind. We check
1114 * for all the double-character operators (>>, <<, //,
1115 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001116 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001117 */
1118 type = TOK_OTHER;
1119 if ((p[0] == '>' && p[1] == '>') ||
1120 (p[0] == '<' && p[1] == '<') ||
1121 (p[0] == '/' && p[1] == '/') ||
1122 (p[0] == '<' && p[1] == '=') ||
1123 (p[0] == '>' && p[1] == '=') ||
1124 (p[0] == '=' && p[1] == '=') ||
1125 (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++;
1131 }
1132 p++;
1133 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001134
H. Peter Anvine2c80182005-01-15 22:15:51 +00001135 /* Handling unterminated string by UNV */
1136 /*if (type == -1)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001137 {
1138 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1139 t->text[p-line] = *line;
1140 tail = &t->next;
1141 }
1142 else */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001143 if (type != TOK_COMMENT) {
1144 *tail = t = new_Token(NULL, type, line, p - line);
1145 tail = &t->next;
1146 }
1147 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001148 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001149 return list;
1150}
1151
H. Peter Anvince616072002-04-30 21:02:23 +00001152/*
1153 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -07001154 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +00001155 * deleted only all at once by the delete_Blocks function.
1156 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001157static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +00001158{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001159 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001160
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001161 /* first, get to the end of the linked list */
1162 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001163 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001164 /* now allocate the requested chunk */
1165 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001166
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001167 /* now allocate a new block for the next request */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001168 b->next = nasm_malloc(sizeof(Blocks));
1169 /* and initialize the contents of the new block */
1170 b->next->next = NULL;
1171 b->next->chunk = NULL;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001172 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +00001173}
1174
1175/*
1176 * this function deletes all managed blocks of memory
1177 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001178static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +00001179{
H. Peter Anvine2c80182005-01-15 22:15:51 +00001180 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +00001181
H. Peter Anvin70653092007-10-19 14:42:29 -07001182 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001183 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -07001184 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001185 * free it.
1186 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001187 while (b) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001188 if (b->chunk)
1189 nasm_free(b->chunk);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001190 a = b;
1191 b = b->next;
1192 if (a != &blocks)
1193 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001194 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001195}
H. Peter Anvin734b1882002-04-30 21:01:08 +00001196
1197/*
H. Peter Anvin70653092007-10-19 14:42:29 -07001198 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +00001199 * back to the caller. It sets the type and text elements, and
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001200 * also the a.mac and next elements to NULL.
H. Peter Anvin734b1882002-04-30 21:01:08 +00001201 */
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001202static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001203 const char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001204{
1205 Token *t;
1206 int i;
1207
H. Peter Anvin89cee572009-07-15 09:16:54 -04001208 if (!freeTokens) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001209 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1210 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1211 freeTokens[i].next = &freeTokens[i + 1];
1212 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001213 }
1214 t = freeTokens;
1215 freeTokens = t->next;
1216 t->next = next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001217 t->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001218 t->type = type;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001219 if (type == TOK_WHITESPACE || !text) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001220 t->text = NULL;
1221 } else {
1222 if (txtlen == 0)
1223 txtlen = strlen(text);
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001224 t->text = nasm_malloc(txtlen+1);
1225 memcpy(t->text, text, txtlen);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001226 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +00001227 }
1228 return t;
1229}
1230
H. Peter Anvine2c80182005-01-15 22:15:51 +00001231static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001232{
1233 Token *next = t->next;
1234 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +00001235 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001236 freeTokens = t;
1237 return next;
1238}
1239
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001240/*
1241 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001242 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1243 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001244 */
H. Peter Anvin9e200162008-06-04 17:23:14 -07001245static char *detoken(Token * tlist, bool expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001246{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001247 Token *t;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001248 char *line, *p;
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001249 const char *q;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001250 int len = 0;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001251
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001252 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001253 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001254 char *v;
1255 char *q = t->text;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001256
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001257 v = t->text + 2;
1258 if (*v == '\'' || *v == '\"' || *v == '`') {
1259 size_t len = nasm_unquote(v, NULL);
1260 size_t clen = strlen(v);
H. Peter Anvin077fb932010-07-20 14:56:30 -07001261
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001262 if (len != clen) {
1263 error(ERR_NONFATAL | ERR_PASS1,
1264 "NUL character in %! string");
1265 v = NULL;
1266 }
1267 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001268
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001269 if (v) {
1270 char *p = getenv(v);
1271 if (!p) {
1272 error(ERR_NONFATAL | ERR_PASS1,
1273 "nonexistent environment variable `%s'", v);
1274 p = "";
1275 }
1276 t->text = nasm_strdup(p);
1277 }
1278 nasm_free(q);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001279 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001280
H. Peter Anvine2c80182005-01-15 22:15:51 +00001281 /* Expand local macros here and not during preprocessing */
1282 if (expand_locals &&
1283 t->type == TOK_PREPROC_ID && t->text &&
1284 t->text[0] == '%' && t->text[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001285 const char *q;
1286 char *p;
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001287 Context *ctx = get_ctx(t->text, &q);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001288 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001289 char buffer[40];
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001290 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001291 p = nasm_strcat(buffer, q);
1292 nasm_free(t->text);
1293 t->text = p;
1294 }
1295 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001296 if (t->type == TOK_WHITESPACE)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001297 len++;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001298 else if (t->text)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001299 len += strlen(t->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001300 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001301
H. Peter Anvin734b1882002-04-30 21:01:08 +00001302 p = line = nasm_malloc(len + 1);
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001303
1304 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001305 if (t->type == TOK_WHITESPACE) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001306 *p++ = ' ';
H. Peter Anvine2c80182005-01-15 22:15:51 +00001307 } else if (t->text) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001308 q = t->text;
1309 while (*q)
1310 *p++ = *q++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001311 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001312 }
1313 *p = '\0';
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001314
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001315 return line;
1316}
1317
1318/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001319 * A scanner, suitable for use by the expression evaluator, which
1320 * operates on a line of Tokens. Expects a pointer to a pointer to
1321 * the first token in the line to be passed in as its private_data
1322 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001323 *
1324 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001325 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001326static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001327{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001328 Token **tlineptr = private_data;
1329 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001330 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001331
H. Peter Anvine2c80182005-01-15 22:15:51 +00001332 do {
1333 tline = *tlineptr;
1334 *tlineptr = tline ? tline->next : NULL;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04001335 } while (tline && (tline->type == TOK_WHITESPACE ||
1336 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001337
1338 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001339 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001340
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001341 tokval->t_charptr = tline->text;
1342
H. Peter Anvin76690a12002-04-30 20:52:49 +00001343 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001344 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001345 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001346 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001347
H. Peter Anvine2c80182005-01-15 22:15:51 +00001348 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001349 p = tokval->t_charptr = tline->text;
1350 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001351 tokval->t_charptr++;
1352 return tokval->t_type = TOKEN_ID;
1353 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001354
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001355 for (r = p, s = ourcopy; *r; r++) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001356 if (r >= p+MAX_KEYWORD)
1357 return tokval->t_type = TOKEN_ID; /* Not a keyword */
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -07001358 *s++ = nasm_tolower(*r);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001359 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001360 *s = '\0';
1361 /* right, so we have an identifier sitting in temp storage. now,
1362 * is it actually a register or instruction name, or what? */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001363 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001364 }
1365
H. Peter Anvine2c80182005-01-15 22:15:51 +00001366 if (tline->type == TOK_NUMBER) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001367 bool rn_error;
1368 tokval->t_integer = readnum(tline->text, &rn_error);
1369 tokval->t_charptr = tline->text;
1370 if (rn_error)
1371 return tokval->t_type = TOKEN_ERRNUM;
1372 else
1373 return tokval->t_type = TOKEN_NUM;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001374 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001375
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001376 if (tline->type == TOK_FLOAT) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001377 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001378 }
1379
H. Peter Anvine2c80182005-01-15 22:15:51 +00001380 if (tline->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001381 char bq, *ep;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001382
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001383 bq = tline->text[0];
H. Peter Anvin11627042008-06-09 20:45:19 -07001384 tokval->t_charptr = tline->text;
1385 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
H. Peter Anvind2456592008-06-19 15:04:18 -07001386
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001387 if (ep[0] != bq || ep[1] != '\0')
1388 return tokval->t_type = TOKEN_ERRSTR;
1389 else
1390 return tokval->t_type = TOKEN_STR;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001391 }
1392
H. Peter Anvine2c80182005-01-15 22:15:51 +00001393 if (tline->type == TOK_OTHER) {
1394 if (!strcmp(tline->text, "<<"))
1395 return tokval->t_type = TOKEN_SHL;
1396 if (!strcmp(tline->text, ">>"))
1397 return tokval->t_type = TOKEN_SHR;
1398 if (!strcmp(tline->text, "//"))
1399 return tokval->t_type = TOKEN_SDIV;
1400 if (!strcmp(tline->text, "%%"))
1401 return tokval->t_type = TOKEN_SMOD;
1402 if (!strcmp(tline->text, "=="))
1403 return tokval->t_type = TOKEN_EQ;
1404 if (!strcmp(tline->text, "<>"))
1405 return tokval->t_type = TOKEN_NE;
1406 if (!strcmp(tline->text, "!="))
1407 return tokval->t_type = TOKEN_NE;
1408 if (!strcmp(tline->text, "<="))
1409 return tokval->t_type = TOKEN_LE;
1410 if (!strcmp(tline->text, ">="))
1411 return tokval->t_type = TOKEN_GE;
1412 if (!strcmp(tline->text, "&&"))
1413 return tokval->t_type = TOKEN_DBL_AND;
1414 if (!strcmp(tline->text, "^^"))
1415 return tokval->t_type = TOKEN_DBL_XOR;
1416 if (!strcmp(tline->text, "||"))
1417 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001418 }
1419
1420 /*
1421 * We have no other options: just return the first character of
1422 * the token text.
1423 */
1424 return tokval->t_type = tline->text[0];
1425}
1426
1427/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001428 * Compare a string to the name of an existing macro; this is a
1429 * simple wrapper which calls either strcmp or nasm_stricmp
1430 * depending on the value of the `casesense' parameter.
1431 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001432static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001433{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001434 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001435}
1436
1437/*
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001438 * Compare a string to the name of an existing macro; this is a
1439 * simple wrapper which calls either strcmp or nasm_stricmp
1440 * depending on the value of the `casesense' parameter.
1441 */
1442static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1443{
1444 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1445}
1446
1447/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001448 * Return the Context structure associated with a %$ token. Return
1449 * NULL, having _already_ reported an error condition, if the
1450 * context stack isn't deep enough for the supplied number of $
1451 * signs.
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001452 *
1453 * If "namep" is non-NULL, set it to the pointer to the macro name
1454 * tail, i.e. the part beyond %$...
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001455 */
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001456static Context *get_ctx(const char *name, const char **namep)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001457{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001458 Context *ctx;
1459 int i;
1460
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001461 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001462 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001463
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001464 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001465 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001466
H. Peter Anvine2c80182005-01-15 22:15:51 +00001467 if (!cstk) {
1468 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1469 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001470 }
1471
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001472 name += 2;
1473 ctx = cstk;
1474 i = 0;
1475 while (ctx && *name == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001476 name++;
1477 i++;
1478 ctx = ctx->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001479 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001480 if (!ctx) {
1481 error(ERR_NONFATAL, "`%s': context stack is only"
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001482 " %d level%s deep", name, i, (i == 1 ? "" : "s"));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001483 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001484 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001485
1486 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001487 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001488
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001489 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001490}
1491
1492/*
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001493 * Check to see if a file is already in a string list
1494 */
1495static bool in_list(const StrList *list, const char *str)
1496{
1497 while (list) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001498 if (!strcmp(list->str, str))
1499 return true;
1500 list = list->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001501 }
1502 return false;
1503}
1504
1505/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001506 * Open an include file. This routine must always return a valid
1507 * file pointer if it returns - it's responsible for throwing an
1508 * ERR_FATAL and bombing out completely if not. It should also try
1509 * the include path one by one until it finds the file or reaches
1510 * the end of the path.
1511 */
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001512static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001513 bool missing_ok)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001514{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001515 FILE *fp;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001516 char *prefix = "";
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001517 IncPath *ip = ipath;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001518 int len = strlen(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001519 size_t prefix_len = 0;
1520 StrList *sl;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001521
H. Peter Anvine2c80182005-01-15 22:15:51 +00001522 while (1) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001523 sl = nasm_malloc(prefix_len+len+1+sizeof sl->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001524 memcpy(sl->str, prefix, prefix_len);
1525 memcpy(sl->str+prefix_len, file, len+1);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001526 fp = fopen(sl->str, "r");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001527 if (fp && dhead && !in_list(*dhead, sl->str)) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001528 sl->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001529 **dtail = sl;
1530 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001531 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001532 nasm_free(sl);
1533 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001534 if (fp)
1535 return fp;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001536 if (!ip) {
1537 if (!missing_ok)
1538 break;
1539 prefix = NULL;
1540 } else {
1541 prefix = ip->path;
1542 ip = ip->next;
1543 }
1544 if (prefix) {
1545 prefix_len = strlen(prefix);
1546 } else {
1547 /* -MG given and file not found */
1548 if (dhead && !in_list(*dhead, file)) {
1549 sl = nasm_malloc(len+1+sizeof sl->next);
1550 sl->next = NULL;
1551 strcpy(sl->str, file);
1552 **dtail = sl;
1553 *dtail = &sl->next;
1554 }
1555 return NULL;
1556 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001557 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001558
H. Peter Anvin734b1882002-04-30 21:01:08 +00001559 error(ERR_FATAL, "unable to open include file `%s'", file);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001560 return NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001561}
1562
1563/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001564 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001565 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001566 * return true if _any_ single-line macro of that name is defined.
1567 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001568 * `nparam' or no parameters is defined.
1569 *
1570 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001571 * defined, or nparam is -1, the address of the definition structure
1572 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001573 * is NULL, no action will be taken regarding its contents, and no
1574 * error will occur.
1575 *
1576 * Note that this is also called with nparam zero to resolve
1577 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001578 *
1579 * If you already know which context macro belongs to, you can pass
1580 * the context pointer as first parameter; if you won't but name begins
1581 * with %$ the context will be automatically computed. If all_contexts
1582 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001583 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001584static bool
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001585smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001586 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001587{
H. Peter Anvin166c2472008-05-28 12:28:58 -07001588 struct hash_table *smtbl;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001589 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001590
H. Peter Anvin97a23472007-09-16 17:57:25 -07001591 if (ctx) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001592 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001593 } else if (name[0] == '%' && name[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001594 if (cstk)
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04001595 ctx = get_ctx(name, &name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001596 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001597 return false; /* got to return _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001598 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001599 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001600 smtbl = &smacros;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001601 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001602 m = (SMacro *) hash_findix(smtbl, name);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001603
H. Peter Anvine2c80182005-01-15 22:15:51 +00001604 while (m) {
1605 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001606 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001607 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001608 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001609 *defn = m;
1610 else
1611 *defn = NULL;
1612 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001613 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001614 }
1615 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001616 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001617
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001618 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001619}
1620
1621/*
1622 * Count and mark off the parameters in a multi-line macro call.
1623 * This is called both from within the multi-line macro expansion
1624 * code, and also to mark off the default parameters when provided
1625 * in a %macro definition line.
1626 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001627static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001628{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001629 int paramsize, brace;
1630
1631 *nparam = paramsize = 0;
1632 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001633 while (t) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001634 /* +1: we need space for the final NULL */
H. Peter Anvin91fb6f12008-09-01 10:56:33 -07001635 if (*nparam+1 >= paramsize) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001636 paramsize += PARAM_DELTA;
1637 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1638 }
1639 skip_white_(t);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001640 brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001641 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001642 brace = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001643 (*params)[(*nparam)++] = t;
1644 while (tok_isnt_(t, brace ? "}" : ","))
1645 t = t->next;
1646 if (t) { /* got a comma/brace */
1647 t = t->next;
1648 if (brace) {
1649 /*
1650 * Now we've found the closing brace, look further
1651 * for the comma.
1652 */
1653 skip_white_(t);
1654 if (tok_isnt_(t, ",")) {
1655 error(ERR_NONFATAL,
1656 "braces do not enclose all of macro parameter");
1657 while (tok_isnt_(t, ","))
1658 t = t->next;
1659 }
1660 if (t)
1661 t = t->next; /* eat the comma */
1662 }
1663 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001664 }
1665}
1666
1667/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001668 * Determine whether one of the various `if' conditions is true or
1669 * not.
1670 *
1671 * We must free the tline we get passed.
1672 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001673static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001674{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001675 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001676 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001677 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001678 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001679 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001680 enum pp_token_type needtype;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001681 char *p;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001682
1683 origline = tline;
1684
H. Peter Anvine2c80182005-01-15 22:15:51 +00001685 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001686 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001687 j = false; /* have we matched yet? */
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001688 while (true) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001689 skip_white_(tline);
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001690 if (!tline)
1691 break;
1692 if (tline->type != TOK_ID) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001693 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001694 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001695 free_tlist(origline);
1696 return -1;
1697 }
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001698 if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001699 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001700 tline = tline->next;
1701 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001702 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001703
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001704 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001705 j = false; /* have we matched yet? */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001706 while (tline) {
1707 skip_white_(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001708 if (!tline || (tline->type != TOK_ID &&
1709 (tline->type != TOK_PREPROC_ID ||
1710 tline->text[1] != '$'))) {
1711 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001712 "`%s' expects macro identifiers", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001713 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001714 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001715 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001716 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001717 tline = tline->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001718 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001719 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001720
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001721 case PPC_IFENV:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001722 tline = expand_smacro(tline);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001723 j = false; /* have we matched yet? */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001724 while (tline) {
1725 skip_white_(tline);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001726 if (!tline || (tline->type != TOK_ID &&
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001727 tline->type != TOK_STRING &&
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001728 (tline->type != TOK_PREPROC_ID ||
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001729 tline->text[1] != '!'))) {
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001730 error(ERR_NONFATAL,
1731 "`%s' expects environment variable names",
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001732 pp_directives[ct]);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001733 goto fail;
1734 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001735 p = tline->text;
1736 if (tline->type == TOK_PREPROC_ID)
1737 p += 2; /* Skip leading %! */
1738 if (*p == '\'' || *p == '\"' || *p == '`')
1739 nasm_unquote_cstr(p, ct);
1740 if (getenv(p))
1741 j = true;
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001742 tline = tline->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001743 }
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001744 break;
1745
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001746 case PPC_IFIDN:
1747 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001748 tline = expand_smacro(tline);
1749 t = tt = tline;
1750 while (tok_isnt_(tt, ","))
1751 tt = tt->next;
1752 if (!tt) {
1753 error(ERR_NONFATAL,
1754 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001755 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001756 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001757 }
1758 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001759 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001760 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1761 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1762 error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001763 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001764 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001765 }
1766 if (t->type == TOK_WHITESPACE) {
1767 t = t->next;
1768 continue;
1769 }
1770 if (tt->type == TOK_WHITESPACE) {
1771 tt = tt->next;
1772 continue;
1773 }
1774 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001775 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001776 break;
1777 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001778 /* When comparing strings, need to unquote them first */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001779 if (t->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001780 size_t l1 = nasm_unquote(t->text, NULL);
1781 size_t l2 = nasm_unquote(tt->text, NULL);
H. Peter Anvind2456592008-06-19 15:04:18 -07001782
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001783 if (l1 != l2) {
1784 j = false;
1785 break;
1786 }
1787 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
1788 j = false;
1789 break;
1790 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001791 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001792 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001793 break;
1794 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001795
H. Peter Anvine2c80182005-01-15 22:15:51 +00001796 t = t->next;
1797 tt = tt->next;
1798 }
1799 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001800 j = false; /* trailing gunk on one end or other */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001801 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001802
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001803 case PPC_IFMACRO:
H. Peter Anvin89cee572009-07-15 09:16:54 -04001804 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001805 bool found = false;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001806 MMacro searching, *mmac;
H. Peter Anvin65747262002-05-07 00:10:05 +00001807
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001808 skip_white_(tline);
1809 tline = expand_id(tline);
1810 if (!tok_type_(tline, TOK_ID)) {
1811 error(ERR_NONFATAL,
1812 "`%s' expects a macro name", pp_directives[ct]);
1813 goto fail;
1814 }
1815 searching.name = nasm_strdup(tline->text);
1816 searching.casesense = true;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001817 searching.plus = false;
1818 searching.nolist = false;
1819 searching.in_progress = 0;
1820 searching.max_depth = 0;
1821 searching.rep_nest = NULL;
1822 searching.nparam_min = 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001823 searching.nparam_max = INT_MAX;
1824 tline = expand_smacro(tline->next);
1825 skip_white_(tline);
1826 if (!tline) {
1827 } else if (!tok_type_(tline, TOK_NUMBER)) {
1828 error(ERR_NONFATAL,
1829 "`%s' expects a parameter count or nothing",
1830 pp_directives[ct]);
1831 } else {
1832 searching.nparam_min = searching.nparam_max =
1833 readnum(tline->text, &j);
1834 if (j)
1835 error(ERR_NONFATAL,
1836 "unable to parse parameter count `%s'",
1837 tline->text);
1838 }
1839 if (tline && tok_is_(tline->next, "-")) {
1840 tline = tline->next->next;
1841 if (tok_is_(tline, "*"))
1842 searching.nparam_max = INT_MAX;
1843 else if (!tok_type_(tline, TOK_NUMBER))
1844 error(ERR_NONFATAL,
1845 "`%s' expects a parameter count after `-'",
1846 pp_directives[ct]);
1847 else {
1848 searching.nparam_max = readnum(tline->text, &j);
1849 if (j)
1850 error(ERR_NONFATAL,
1851 "unable to parse parameter count `%s'",
1852 tline->text);
1853 if (searching.nparam_min > searching.nparam_max)
1854 error(ERR_NONFATAL,
1855 "minimum parameter count exceeds maximum");
1856 }
1857 }
1858 if (tline && tok_is_(tline->next, "+")) {
1859 tline = tline->next;
1860 searching.plus = true;
1861 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001862 mmac = (MMacro *) hash_findix(&mmacros, searching.name);
1863 while (mmac) {
1864 if (!strcmp(mmac->name, searching.name) &&
1865 (mmac->nparam_min <= searching.nparam_max
1866 || searching.plus)
1867 && (searching.nparam_min <= mmac->nparam_max
1868 || mmac->plus)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001869 found = true;
1870 break;
1871 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001872 mmac = mmac->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001873 }
1874 if (tline && tline->next)
1875 error(ERR_WARNING|ERR_PASS1,
1876 "trailing garbage after %%ifmacro ignored");
1877 nasm_free(searching.name);
1878 j = found;
1879 break;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001880 }
H. Peter Anvin65747262002-05-07 00:10:05 +00001881
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001882 case PPC_IFID:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001883 needtype = TOK_ID;
1884 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001885 case PPC_IFNUM:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001886 needtype = TOK_NUMBER;
1887 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001888 case PPC_IFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001889 needtype = TOK_STRING;
1890 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001891
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001892iftype:
1893 t = tline = expand_smacro(tline);
H. Peter Anvind85d2502008-05-04 17:53:31 -07001894
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001895 while (tok_type_(t, TOK_WHITESPACE) ||
1896 (needtype == TOK_NUMBER &&
1897 tok_type_(t, TOK_OTHER) &&
1898 (t->text[0] == '-' || t->text[0] == '+') &&
1899 !t->text[1]))
1900 t = t->next;
H. Peter Anvind85d2502008-05-04 17:53:31 -07001901
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001902 j = tok_type_(t, needtype);
1903 break;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001904
1905 case PPC_IFTOKEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001906 t = tline = expand_smacro(tline);
1907 while (tok_type_(t, TOK_WHITESPACE))
1908 t = t->next;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001909
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001910 j = false;
1911 if (t) {
1912 t = t->next; /* Skip the actual token */
1913 while (tok_type_(t, TOK_WHITESPACE))
1914 t = t->next;
1915 j = !t; /* Should be nothing left */
1916 }
1917 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001918
H. Peter Anvin134b9462008-02-16 17:01:40 -08001919 case PPC_IFEMPTY:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001920 t = tline = expand_smacro(tline);
1921 while (tok_type_(t, TOK_WHITESPACE))
1922 t = t->next;
H. Peter Anvin134b9462008-02-16 17:01:40 -08001923
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001924 j = !t; /* Should be empty */
1925 break;
H. Peter Anvin134b9462008-02-16 17:01:40 -08001926
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001927 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001928 t = tline = expand_smacro(tline);
1929 tptr = &t;
1930 tokval.t_type = TOKEN_INVALID;
1931 evalresult = evaluate(ppscan, tptr, &tokval,
1932 NULL, pass | CRITICAL, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001933 if (!evalresult)
1934 return -1;
1935 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07001936 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001937 "trailing garbage after expression ignored");
1938 if (!is_simple(evalresult)) {
1939 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001940 "non-constant value given to `%s'", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001941 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001942 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001943 j = reloc_value(evalresult) != 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001944 break;
H. Peter Anvin95e28822007-09-12 04:20:08 +00001945
H. Peter Anvine2c80182005-01-15 22:15:51 +00001946 default:
1947 error(ERR_FATAL,
1948 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001949 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001950 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001951 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001952
1953 free_tlist(origline);
1954 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07001955
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001956fail:
1957 free_tlist(origline);
1958 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001959}
1960
1961/*
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001962 * Common code for defining an smacro
1963 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001964static bool define_smacro(Context *ctx, const char *mname, bool casesense,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001965 int nparam, Token *expansion)
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001966{
1967 SMacro *smac, **smhead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07001968 struct hash_table *smtbl;
H. Peter Anvin70653092007-10-19 14:42:29 -07001969
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001970 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001971 if (!smac) {
1972 error(ERR_WARNING|ERR_PASS1,
1973 "single-line macro `%s' defined both with and"
1974 " without parameters", mname);
1975 /*
1976 * Some instances of the old code considered this a failure,
1977 * some others didn't. What is the right thing to do here?
1978 */
1979 free_tlist(expansion);
1980 return false; /* Failure */
1981 } else {
1982 /*
1983 * We're redefining, so we have to take over an
1984 * existing SMacro structure. This means freeing
1985 * what was already in it.
1986 */
1987 nasm_free(smac->name);
1988 free_tlist(smac->expansion);
1989 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001990 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001991 smtbl = ctx ? &ctx->localmac : &smacros;
1992 smhead = (SMacro **) hash_findi_add(smtbl, mname);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08001993 smac = nasm_malloc(sizeof(SMacro));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001994 smac->next = *smhead;
1995 *smhead = smac;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001996 }
1997 smac->name = nasm_strdup(mname);
1998 smac->casesense = casesense;
1999 smac->nparam = nparam;
2000 smac->expansion = expansion;
2001 smac->in_progress = false;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002002 return true; /* Success */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002003}
2004
2005/*
2006 * Undefine an smacro
2007 */
2008static void undef_smacro(Context *ctx, const char *mname)
2009{
2010 SMacro **smhead, *s, **sp;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002011 struct hash_table *smtbl;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002012
H. Peter Anvin166c2472008-05-28 12:28:58 -07002013 smtbl = ctx ? &ctx->localmac : &smacros;
2014 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
H. Peter Anvin70653092007-10-19 14:42:29 -07002015
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002016 if (smhead) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002017 /*
2018 * We now have a macro name... go hunt for it.
2019 */
2020 sp = smhead;
2021 while ((s = *sp) != NULL) {
2022 if (!mstrcmp(s->name, mname, s->casesense)) {
2023 *sp = s->next;
2024 nasm_free(s->name);
2025 free_tlist(s->expansion);
2026 nasm_free(s);
2027 } else {
2028 sp = &s->next;
2029 }
2030 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002031 }
2032}
2033
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002034/*
H. Peter Anvina26433d2008-07-16 14:40:01 -07002035 * Parse a mmacro specification.
2036 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002037static bool parse_mmacro_spec(Token *tline, MMacro *def, const char *directive)
H. Peter Anvina26433d2008-07-16 14:40:01 -07002038{
2039 bool err;
2040
2041 tline = tline->next;
2042 skip_white_(tline);
2043 tline = expand_id(tline);
2044 if (!tok_type_(tline, TOK_ID)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002045 error(ERR_NONFATAL, "`%s' expects a macro name", directive);
2046 return false;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002047 }
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002048
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002049 def->prev = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002050 def->name = nasm_strdup(tline->text);
2051 def->plus = false;
2052 def->nolist = false;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002053 def->in_progress = 0;
2054 def->rep_nest = NULL;
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002055 def->nparam_min = 0;
2056 def->nparam_max = 0;
2057
H. Peter Anvina26433d2008-07-16 14:40:01 -07002058 tline = expand_smacro(tline->next);
2059 skip_white_(tline);
2060 if (!tok_type_(tline, TOK_NUMBER)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002061 error(ERR_NONFATAL, "`%s' expects a parameter count", directive);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002062 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002063 def->nparam_min = def->nparam_max =
2064 readnum(tline->text, &err);
2065 if (err)
2066 error(ERR_NONFATAL,
2067 "unable to parse parameter count `%s'", tline->text);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002068 }
2069 if (tline && tok_is_(tline->next, "-")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002070 tline = tline->next->next;
2071 if (tok_is_(tline, "*")) {
2072 def->nparam_max = INT_MAX;
2073 } else if (!tok_type_(tline, TOK_NUMBER)) {
2074 error(ERR_NONFATAL,
2075 "`%s' expects a parameter count after `-'", directive);
2076 } else {
2077 def->nparam_max = readnum(tline->text, &err);
2078 if (err) {
2079 error(ERR_NONFATAL, "unable to parse parameter count `%s'",
2080 tline->text);
2081 }
2082 if (def->nparam_min > def->nparam_max) {
2083 error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
2084 }
2085 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002086 }
2087 if (tline && tok_is_(tline->next, "+")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002088 tline = tline->next;
2089 def->plus = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002090 }
2091 if (tline && tok_type_(tline->next, TOK_ID) &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002092 !nasm_stricmp(tline->next->text, ".nolist")) {
2093 tline = tline->next;
2094 def->nolist = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002095 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002096
H. Peter Anvina26433d2008-07-16 14:40:01 -07002097 /*
2098 * Handle default parameters.
2099 */
2100 if (tline && tline->next) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002101 def->dlist = tline->next;
2102 tline->next = NULL;
2103 count_mmac_params(def->dlist, &def->ndefs, &def->defaults);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002104 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002105 def->dlist = NULL;
2106 def->defaults = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002107 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002108 def->expansion = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002109
H. Peter Anvin89cee572009-07-15 09:16:54 -04002110 if (def->defaults && def->ndefs > def->nparam_max - def->nparam_min &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002111 !def->plus)
2112 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP,
2113 "too many default macro parameters");
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002114
H. Peter Anvina26433d2008-07-16 14:40:01 -07002115 return true;
2116}
2117
2118
2119/*
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002120 * Decode a size directive
2121 */
2122static int parse_size(const char *str) {
2123 static const char *size_names[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002124 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002125 static const int sizes[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002126 { 0, 1, 4, 16, 8, 10, 2, 32 };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002127
Cyrill Gorcunova7319242010-06-03 22:04:36 +04002128 return sizes[bsii(str, size_names, ARRAY_SIZE(size_names))+1];
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002129}
2130
Ed Beroset3ab3f412002-06-11 03:31:49 +00002131/**
2132 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002133 * Find out if a line contains a preprocessor directive, and deal
2134 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07002135 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002136 * If a directive _is_ found, it is the responsibility of this routine
2137 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002138 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002139 * @param tline a pointer to the current tokeninzed line linked list
2140 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07002141 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002142 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002143static int do_directive(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002144{
H. Peter Anvin4169a472007-09-12 01:29:43 +00002145 enum preproc_token i;
2146 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07002147 bool err;
2148 int nparam;
2149 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002150 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07002151 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002152 int offset;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002153 char *p, *pp;
2154 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002155 Include *inc;
2156 Context *ctx;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002157 Cond *cond;
2158 MMacro *mmac, **mmhead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002159 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002160 Line *l;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002161 struct tokenval tokval;
2162 expr *evalresult;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002163 MMacro *tmp_defining; /* Used when manipulating rep_nest */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002164 int64_t count;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002165 size_t len;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002166 int severity;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002167
2168 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002169
H. Peter Anvineba20a72002-04-30 20:53:55 +00002170 skip_white_(tline);
H. Peter Anvinf2936d72008-06-04 15:11:23 -07002171 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00002172 (tline->text[1] == '%' || tline->text[1] == '$'
2173 || tline->text[1] == '!'))
2174 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002175
H. Peter Anvin4169a472007-09-12 01:29:43 +00002176 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002177
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002178 /*
2179 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2180 * since they are known to be buggy at moment, we need to fix them
2181 * in future release (2.09-2.10)
2182 */
Philipp Klokeb432f572013-03-31 12:01:23 +02002183 if (i == PP_RMACRO || i == PP_IRMACRO || i == PP_EXITMACRO) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002184 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2185 tline->text);
2186 return NO_DIRECTIVE_FOUND;
2187 }
2188
2189 /*
2190 * If we're in a non-emitting branch of a condition construct,
2191 * or walking to the end of an already terminated %rep block,
2192 * we should ignore all directives except for condition
2193 * directives.
2194 */
2195 if (((istk->conds && !emitting(istk->conds->state)) ||
2196 (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) {
2197 return NO_DIRECTIVE_FOUND;
2198 }
2199
2200 /*
2201 * If we're defining a macro or reading a %rep block, we should
2202 * ignore all directives except for %macro/%imacro (which nest),
2203 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2204 * If we're in a %rep block, another %rep nests, so should be let through.
2205 */
2206 if (defining && i != PP_MACRO && i != PP_IMACRO &&
2207 i != PP_RMACRO && i != PP_IRMACRO &&
2208 i != PP_ENDMACRO && i != PP_ENDM &&
2209 (defining->name || (i != PP_ENDREP && i != PP_REP))) {
2210 return NO_DIRECTIVE_FOUND;
2211 }
2212
2213 if (defining) {
2214 if (i == PP_MACRO || i == PP_IMACRO ||
2215 i == PP_RMACRO || i == PP_IRMACRO) {
2216 nested_mac_count++;
2217 return NO_DIRECTIVE_FOUND;
2218 } else if (nested_mac_count > 0) {
2219 if (i == PP_ENDMACRO) {
2220 nested_mac_count--;
2221 return NO_DIRECTIVE_FOUND;
2222 }
2223 }
2224 if (!defining->name) {
2225 if (i == PP_REP) {
2226 nested_rep_count++;
2227 return NO_DIRECTIVE_FOUND;
2228 } else if (nested_rep_count > 0) {
2229 if (i == PP_ENDREP) {
2230 nested_rep_count--;
2231 return NO_DIRECTIVE_FOUND;
2232 }
2233 }
2234 }
2235 }
2236
H. Peter Anvin4169a472007-09-12 01:29:43 +00002237 switch (i) {
2238 case PP_INVALID:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002239 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2240 tline->text);
2241 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002242
H. Peter Anvine2c80182005-01-15 22:15:51 +00002243 case PP_STACKSIZE:
2244 /* Directive to tell NASM what the default stack size is. The
2245 * default is for a 16-bit stack, and this can be overriden with
2246 * %stacksize large.
H. Peter Anvine2c80182005-01-15 22:15:51 +00002247 */
2248 tline = tline->next;
2249 if (tline && tline->type == TOK_WHITESPACE)
2250 tline = tline->next;
2251 if (!tline || tline->type != TOK_ID) {
2252 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
2253 free_tlist(origline);
2254 return DIRECTIVE_FOUND;
2255 }
2256 if (nasm_stricmp(tline->text, "flat") == 0) {
2257 /* All subsequent ARG directives are for a 32-bit stack */
2258 StackSize = 4;
2259 StackPointer = "ebp";
2260 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002261 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002262 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
2263 /* All subsequent ARG directives are for a 64-bit stack */
2264 StackSize = 8;
2265 StackPointer = "rbp";
Per Jessen53252e02010-02-11 00:16:59 +03002266 ArgOffset = 16;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002267 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002268 } else if (nasm_stricmp(tline->text, "large") == 0) {
2269 /* All subsequent ARG directives are for a 16-bit stack,
2270 * far function call.
2271 */
2272 StackSize = 2;
2273 StackPointer = "bp";
2274 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002275 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002276 } else if (nasm_stricmp(tline->text, "small") == 0) {
2277 /* All subsequent ARG directives are for a 16-bit stack,
2278 * far function call. We don't support near functions.
2279 */
2280 StackSize = 2;
2281 StackPointer = "bp";
2282 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002283 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002284 } else {
2285 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
2286 free_tlist(origline);
2287 return DIRECTIVE_FOUND;
2288 }
2289 free_tlist(origline);
2290 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002291
H. Peter Anvine2c80182005-01-15 22:15:51 +00002292 case PP_ARG:
2293 /* TASM like ARG directive to define arguments to functions, in
2294 * the following form:
2295 *
2296 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2297 */
2298 offset = ArgOffset;
2299 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002300 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002301 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002302
H. Peter Anvine2c80182005-01-15 22:15:51 +00002303 /* Find the argument name */
2304 tline = tline->next;
2305 if (tline && tline->type == TOK_WHITESPACE)
2306 tline = tline->next;
2307 if (!tline || tline->type != TOK_ID) {
2308 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
2309 free_tlist(origline);
2310 return DIRECTIVE_FOUND;
2311 }
2312 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002313
H. Peter Anvine2c80182005-01-15 22:15:51 +00002314 /* Find the argument size type */
2315 tline = tline->next;
2316 if (!tline || tline->type != TOK_OTHER
2317 || tline->text[0] != ':') {
2318 error(ERR_NONFATAL,
2319 "Syntax error processing `%%arg' directive");
2320 free_tlist(origline);
2321 return DIRECTIVE_FOUND;
2322 }
2323 tline = tline->next;
2324 if (!tline || tline->type != TOK_ID) {
2325 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
2326 free_tlist(origline);
2327 return DIRECTIVE_FOUND;
2328 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002329
H. Peter Anvine2c80182005-01-15 22:15:51 +00002330 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002331 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002332 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002333 size = parse_size(tt->text);
2334 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002335 error(ERR_NONFATAL,
2336 "Invalid size type for `%%arg' missing directive");
2337 free_tlist(tt);
2338 free_tlist(origline);
2339 return DIRECTIVE_FOUND;
2340 }
2341 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002342
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002343 /* Round up to even stack slots */
2344 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002345
H. Peter Anvine2c80182005-01-15 22:15:51 +00002346 /* Now define the macro for the argument */
2347 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
2348 arg, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002349 do_directive(tokenize(directive));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002350 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002351
H. Peter Anvine2c80182005-01-15 22:15:51 +00002352 /* Move to the next argument in the list */
2353 tline = tline->next;
2354 if (tline && tline->type == TOK_WHITESPACE)
2355 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002356 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002357 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002358 free_tlist(origline);
2359 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002360
H. Peter Anvine2c80182005-01-15 22:15:51 +00002361 case PP_LOCAL:
2362 /* TASM like LOCAL directive to define local variables for a
2363 * function, in the following form:
2364 *
2365 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2366 *
2367 * The '= LocalSize' at the end is ignored by NASM, but is
2368 * required by TASM to define the local parameter size (and used
2369 * by the TASM macro package).
2370 */
2371 offset = LocalOffset;
2372 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002373 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002374 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002375
H. Peter Anvine2c80182005-01-15 22:15:51 +00002376 /* Find the argument name */
2377 tline = tline->next;
2378 if (tline && tline->type == TOK_WHITESPACE)
2379 tline = tline->next;
2380 if (!tline || tline->type != TOK_ID) {
2381 error(ERR_NONFATAL,
2382 "`%%local' missing argument parameter");
2383 free_tlist(origline);
2384 return DIRECTIVE_FOUND;
2385 }
2386 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002387
H. Peter Anvine2c80182005-01-15 22:15:51 +00002388 /* Find the argument size type */
2389 tline = tline->next;
2390 if (!tline || tline->type != TOK_OTHER
2391 || tline->text[0] != ':') {
2392 error(ERR_NONFATAL,
2393 "Syntax error processing `%%local' directive");
2394 free_tlist(origline);
2395 return DIRECTIVE_FOUND;
2396 }
2397 tline = tline->next;
2398 if (!tline || tline->type != TOK_ID) {
2399 error(ERR_NONFATAL,
2400 "`%%local' missing size type parameter");
2401 free_tlist(origline);
2402 return DIRECTIVE_FOUND;
2403 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002404
H. Peter Anvine2c80182005-01-15 22:15:51 +00002405 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002406 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002407 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002408 size = parse_size(tt->text);
2409 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002410 error(ERR_NONFATAL,
2411 "Invalid size type for `%%local' missing directive");
2412 free_tlist(tt);
2413 free_tlist(origline);
2414 return DIRECTIVE_FOUND;
2415 }
2416 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002417
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002418 /* Round up to even stack slots */
2419 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002420
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002421 offset += size; /* Negative offset, increment before */
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002422
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002423 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002424 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2425 local, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002426 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002427
H. Peter Anvine2c80182005-01-15 22:15:51 +00002428 /* Now define the assign to setup the enter_c macro correctly */
2429 snprintf(directive, sizeof(directive),
2430 "%%assign %%$localsize %%$localsize+%d", size);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002431 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002432
H. Peter Anvine2c80182005-01-15 22:15:51 +00002433 /* Move to the next argument in the list */
2434 tline = tline->next;
2435 if (tline && tline->type == TOK_WHITESPACE)
2436 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002437 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002438 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002439 free_tlist(origline);
2440 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002441
H. Peter Anvine2c80182005-01-15 22:15:51 +00002442 case PP_CLEAR:
2443 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002444 error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002445 "trailing garbage after `%%clear' ignored");
2446 free_macros();
2447 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002448 free_tlist(origline);
2449 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002450
H. Peter Anvin418ca702008-05-30 10:42:30 -07002451 case PP_DEPEND:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002452 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002453 skip_white_(t);
2454 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002455 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07002456 error(ERR_NONFATAL, "`%%depend' expects a file name");
2457 free_tlist(origline);
2458 return DIRECTIVE_FOUND; /* but we did _something_ */
2459 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002460 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002461 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07002462 "trailing garbage after `%%depend' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002463 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002464 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002465 nasm_unquote_cstr(p, i);
2466 if (dephead && !in_list(*dephead, p)) {
2467 StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next);
2468 sl->next = NULL;
2469 strcpy(sl->str, p);
2470 *deptail = sl;
2471 deptail = &sl->next;
2472 }
2473 free_tlist(origline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002474 return DIRECTIVE_FOUND;
2475
2476 case PP_INCLUDE:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002477 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002478 skip_white_(t);
H. Peter Anvind2456592008-06-19 15:04:18 -07002479
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002480 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002481 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002482 error(ERR_NONFATAL, "`%%include' expects a file name");
2483 free_tlist(origline);
2484 return DIRECTIVE_FOUND; /* but we did _something_ */
2485 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002486 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002487 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002488 "trailing garbage after `%%include' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002489 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002490 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002491 nasm_unquote_cstr(p, i);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002492 inc = nasm_malloc(sizeof(Include));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002493 inc->next = istk;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002494 inc->conds = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002495 inc->fp = inc_fopen(p, dephead, &deptail, pass == 0);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002496 if (!inc->fp) {
2497 /* -MG given but file not found */
2498 nasm_free(inc);
2499 } else {
2500 inc->fname = src_set_fname(nasm_strdup(p));
2501 inc->lineno = src_set_linnum(0);
2502 inc->lineinc = 1;
2503 inc->expansion = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002504 inc->mstk = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002505 istk = inc;
2506 list->uplevel(LIST_INCLUDE);
2507 }
2508 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002509 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002510
H. Peter Anvind2456592008-06-19 15:04:18 -07002511 case PP_USE:
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002512 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002513 static macros_t *use_pkg;
2514 const char *pkg_macro = NULL;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002515
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002516 tline = tline->next;
2517 skip_white_(tline);
2518 tline = expand_id(tline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002519
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002520 if (!tline || (tline->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002521 tline->type != TOK_INTERNAL_STRING &&
2522 tline->type != TOK_ID)) {
H. Peter Anvin926fc402008-06-19 16:26:12 -07002523 error(ERR_NONFATAL, "`%%use' expects a package name");
H. Peter Anvind2456592008-06-19 15:04:18 -07002524 free_tlist(origline);
2525 return DIRECTIVE_FOUND; /* but we did _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002526 }
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002527 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002528 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvind2456592008-06-19 15:04:18 -07002529 "trailing garbage after `%%use' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002530 if (tline->type == TOK_STRING)
2531 nasm_unquote_cstr(tline->text, i);
2532 use_pkg = nasm_stdmac_find_package(tline->text);
2533 if (!use_pkg)
2534 error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
2535 else
2536 pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */
Victor van den Elzen35eb2ea2010-03-10 22:33:48 +01002537 if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002538 /* Not already included, go ahead and include it */
2539 stdmacpos = use_pkg;
2540 }
2541 free_tlist(origline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002542 return DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002543 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002544 case PP_PUSH:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002545 case PP_REPL:
H. Peter Anvin42b56392008-10-24 16:24:21 -07002546 case PP_POP:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002547 tline = tline->next;
2548 skip_white_(tline);
2549 tline = expand_id(tline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002550 if (tline) {
2551 if (!tok_type_(tline, TOK_ID)) {
2552 error(ERR_NONFATAL, "`%s' expects a context identifier",
2553 pp_directives[i]);
2554 free_tlist(origline);
2555 return DIRECTIVE_FOUND; /* but we did _something_ */
2556 }
2557 if (tline->next)
2558 error(ERR_WARNING|ERR_PASS1,
2559 "trailing garbage after `%s' ignored",
2560 pp_directives[i]);
2561 p = nasm_strdup(tline->text);
2562 } else {
2563 p = NULL; /* Anonymous */
2564 }
H. Peter Anvin42b56392008-10-24 16:24:21 -07002565
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002566 if (i == PP_PUSH) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002567 ctx = nasm_malloc(sizeof(Context));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002568 ctx->next = cstk;
2569 hash_init(&ctx->localmac, HASH_SMALL);
2570 ctx->name = p;
2571 ctx->number = unique++;
2572 cstk = ctx;
2573 } else {
2574 /* %pop or %repl */
2575 if (!cstk) {
2576 error(ERR_NONFATAL, "`%s': context stack is empty",
2577 pp_directives[i]);
2578 } else if (i == PP_POP) {
2579 if (p && (!cstk->name || nasm_stricmp(p, cstk->name)))
2580 error(ERR_NONFATAL, "`%%pop' in wrong context: %s, "
2581 "expected %s",
2582 cstk->name ? cstk->name : "anonymous", p);
2583 else
2584 ctx_pop();
2585 } else {
2586 /* i == PP_REPL */
2587 nasm_free(cstk->name);
2588 cstk->name = p;
2589 p = NULL;
2590 }
2591 nasm_free(p);
2592 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002593 free_tlist(origline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002594 return DIRECTIVE_FOUND;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002595 case PP_FATAL:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002596 severity = ERR_FATAL;
2597 goto issue_error;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002598 case PP_ERROR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002599 severity = ERR_NONFATAL;
2600 goto issue_error;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002601 case PP_WARNING:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002602 severity = ERR_WARNING|ERR_WARN_USER;
2603 goto issue_error;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002604
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002605issue_error:
H. Peter Anvin7df04172008-06-10 18:27:38 -07002606 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002607 /* Only error out if this is the final pass */
2608 if (pass != 2 && i != PP_FATAL)
2609 return DIRECTIVE_FOUND;
2610
2611 tline->next = expand_smacro(tline->next);
2612 tline = tline->next;
2613 skip_white_(tline);
2614 t = tline ? tline->next : NULL;
2615 skip_white_(t);
2616 if (tok_type_(tline, TOK_STRING) && !t) {
2617 /* The line contains only a quoted string */
2618 p = tline->text;
2619 nasm_unquote(p, NULL); /* Ignore NUL character truncation */
2620 error(severity, "%s", p);
2621 } else {
2622 /* Not a quoted string, or more than a quoted string */
2623 p = detoken(tline, false);
2624 error(severity, "%s", p);
2625 nasm_free(p);
2626 }
2627 free_tlist(origline);
2628 return DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002629 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002630
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002631 CASE_PP_IF:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002632 if (istk->conds && !emitting(istk->conds->state))
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002633 j = COND_NEVER;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002634 else {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002635 j = if_condition(tline->next, i);
2636 tline->next = NULL; /* it got freed */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002637 j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002638 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002639 cond = nasm_malloc(sizeof(Cond));
2640 cond->next = istk->conds;
2641 cond->state = j;
2642 istk->conds = cond;
2643 if(istk->mstk)
2644 istk->mstk->condcnt ++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002645 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002646 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002647
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002648 CASE_PP_ELIF:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002649 if (!istk->conds)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002650 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002651 switch(istk->conds->state) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002652 case COND_IF_TRUE:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002653 istk->conds->state = COND_DONE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002654 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002655
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002656 case COND_DONE:
2657 case COND_NEVER:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002658 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002659
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002660 case COND_ELSE_TRUE:
2661 case COND_ELSE_FALSE:
2662 error_precond(ERR_WARNING|ERR_PASS1,
2663 "`%%elif' after `%%else' ignored");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002664 istk->conds->state = COND_NEVER;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002665 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002666
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002667 case COND_IF_FALSE:
2668 /*
2669 * IMPORTANT: In the case of %if, we will already have
2670 * called expand_mmac_params(); however, if we're
2671 * processing an %elif we must have been in a
2672 * non-emitting mode, which would have inhibited
2673 * the normal invocation of expand_mmac_params().
2674 * Therefore, we have to do it explicitly here.
2675 */
2676 j = if_condition(expand_mmac_params(tline->next), i);
2677 tline->next = NULL; /* it got freed */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002678 istk->conds->state =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002679 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2680 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002681 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002682 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002683 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002684
H. Peter Anvine2c80182005-01-15 22:15:51 +00002685 case PP_ELSE:
2686 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002687 error_precond(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002688 "trailing garbage after `%%else' ignored");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002689 if (!istk->conds)
2690 error(ERR_FATAL, "`%%else': no matching `%%if'");
2691 switch(istk->conds->state) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002692 case COND_IF_TRUE:
2693 case COND_DONE:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002694 istk->conds->state = COND_ELSE_FALSE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002695 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002696
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002697 case COND_NEVER:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002698 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002699
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002700 case COND_IF_FALSE:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002701 istk->conds->state = COND_ELSE_TRUE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002702 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002703
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002704 case COND_ELSE_TRUE:
2705 case COND_ELSE_FALSE:
2706 error_precond(ERR_WARNING|ERR_PASS1,
2707 "`%%else' after `%%else' ignored.");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002708 istk->conds->state = COND_NEVER;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002709 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002710 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002711 free_tlist(origline);
2712 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002713
H. Peter Anvine2c80182005-01-15 22:15:51 +00002714 case PP_ENDIF:
2715 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002716 error_precond(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002717 "trailing garbage after `%%endif' ignored");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002718 if (!istk->conds)
2719 error(ERR_FATAL, "`%%endif': no matching `%%if'");
2720 cond = istk->conds;
2721 istk->conds = cond->next;
2722 nasm_free(cond);
2723 if(istk->mstk)
2724 istk->mstk->condcnt --;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002725 free_tlist(origline);
2726 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002727
H. Peter Anvindb8f96e2009-07-15 09:07:29 -04002728 case PP_RMACRO:
2729 case PP_IRMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002730 case PP_MACRO:
2731 case PP_IMACRO:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002732 if (defining) {
2733 error(ERR_FATAL, "`%s': already defining a macro",
2734 pp_directives[i]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002735 return DIRECTIVE_FOUND;
2736 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002737 defining = nasm_malloc(sizeof(MMacro));
2738 defining->max_depth =
2739 (i == PP_RMACRO) || (i == PP_IRMACRO) ? DEADMAN_LIMIT : 0;
2740 defining->casesense = (i == PP_MACRO) || (i == PP_RMACRO);
2741 if (!parse_mmacro_spec(tline, defining, pp_directives[i])) {
2742 nasm_free(defining);
2743 defining = NULL;
2744 return DIRECTIVE_FOUND;
2745 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002746
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002747 mmac = (MMacro *) hash_findix(&mmacros, defining->name);
2748 while (mmac) {
2749 if (!strcmp(mmac->name, defining->name) &&
2750 (mmac->nparam_min <= defining->nparam_max
2751 || defining->plus)
2752 && (defining->nparam_min <= mmac->nparam_max
2753 || mmac->plus)) {
2754 error(ERR_WARNING|ERR_PASS1,
2755 "redefining multi-line macro `%s'", defining->name);
2756 return DIRECTIVE_FOUND;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002757 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002758 mmac = mmac->next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002759 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002760 free_tlist(origline);
2761 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002762
H. Peter Anvine2c80182005-01-15 22:15:51 +00002763 case PP_ENDM:
2764 case PP_ENDMACRO:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002765 if (! (defining && defining->name)) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002766 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2767 return DIRECTIVE_FOUND;
2768 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002769 mmhead = (MMacro **) hash_findi_add(&mmacros, defining->name);
2770 defining->next = *mmhead;
2771 *mmhead = defining;
2772 defining = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002773 free_tlist(origline);
2774 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002775
H. Peter Anvin89cee572009-07-15 09:16:54 -04002776 case PP_EXITMACRO:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002777 /*
2778 * We must search along istk->expansion until we hit a
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002779 * macro-end marker for a macro with a name. Then we
2780 * bypass all lines between exitmacro and endmacro.
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002781 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002782 list_for_each(l, istk->expansion)
2783 if (l->finishes && l->finishes->name)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002784 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002785
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002786 if (l) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002787 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002788 * Remove all conditional entries relative to this
2789 * macro invocation. (safe to do in this context)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002790 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002791 for ( ; l->finishes->condcnt > 0; l->finishes->condcnt --) {
2792 cond = istk->conds;
2793 istk->conds = cond->next;
2794 nasm_free(cond);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002795 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002796 istk->expansion = l;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002797 } else {
2798 error(ERR_NONFATAL, "`%%exitmacro' not within `%%macro' block");
2799 }
Keith Kanios852f1ee2009-07-12 00:19:55 -05002800 free_tlist(origline);
2801 return DIRECTIVE_FOUND;
2802
H. Peter Anvina26433d2008-07-16 14:40:01 -07002803 case PP_UNMACRO:
2804 case PP_UNIMACRO:
2805 {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002806 MMacro **mmac_p;
2807 MMacro spec;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002808
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002809 spec.casesense = (i == PP_UNMACRO);
2810 if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) {
2811 return DIRECTIVE_FOUND;
2812 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002813 mmac_p = (MMacro **) hash_findi(&mmacros, spec.name, NULL);
2814 while (mmac_p && *mmac_p) {
2815 mmac = *mmac_p;
2816 if (mmac->casesense == spec.casesense &&
2817 !mstrcmp(mmac->name, spec.name, spec.casesense) &&
2818 mmac->nparam_min == spec.nparam_min &&
2819 mmac->nparam_max == spec.nparam_max &&
2820 mmac->plus == spec.plus) {
2821 *mmac_p = mmac->next;
2822 free_mmacro(mmac);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002823 } else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002824 mmac_p = &mmac->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002825 }
2826 }
2827 free_tlist(origline);
2828 free_tlist(spec.dlist);
2829 return DIRECTIVE_FOUND;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002830 }
2831
H. Peter Anvine2c80182005-01-15 22:15:51 +00002832 case PP_ROTATE:
2833 if (tline->next && tline->next->type == TOK_WHITESPACE)
2834 tline = tline->next;
H. Peter Anvin89cee572009-07-15 09:16:54 -04002835 if (!tline->next) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002836 free_tlist(origline);
2837 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
2838 return DIRECTIVE_FOUND;
2839 }
2840 t = expand_smacro(tline->next);
2841 tline->next = NULL;
2842 free_tlist(origline);
2843 tline = t;
2844 tptr = &t;
2845 tokval.t_type = TOKEN_INVALID;
2846 evalresult =
2847 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2848 free_tlist(tline);
2849 if (!evalresult)
2850 return DIRECTIVE_FOUND;
2851 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002852 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002853 "trailing garbage after expression ignored");
2854 if (!is_simple(evalresult)) {
2855 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
2856 return DIRECTIVE_FOUND;
2857 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002858 mmac = istk->mstk;
2859 while (mmac && !mmac->name) /* avoid mistaking %reps for macros */
2860 mmac = mmac->next_active;
2861 if (!mmac) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002862 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002863 } else if (mmac->nparam == 0) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002864 error(ERR_NONFATAL,
2865 "`%%rotate' invoked within macro without parameters");
2866 } else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002867 int rotate = mmac->rotate + reloc_value(evalresult);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002868
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002869 rotate %= (int)mmac->nparam;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002870 if (rotate < 0)
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002871 rotate += mmac->nparam;
2872
2873 mmac->rotate = rotate;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002874 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002875 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002876
H. Peter Anvine2c80182005-01-15 22:15:51 +00002877 case PP_REP:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002878 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002879 do {
2880 tline = tline->next;
2881 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002882
H. Peter Anvine2c80182005-01-15 22:15:51 +00002883 if (tok_type_(tline, TOK_ID) &&
2884 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002885 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002886 do {
2887 tline = tline->next;
2888 } while (tok_type_(tline, TOK_WHITESPACE));
2889 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002890
H. Peter Anvine2c80182005-01-15 22:15:51 +00002891 if (tline) {
2892 t = expand_smacro(tline);
2893 tptr = &t;
2894 tokval.t_type = TOKEN_INVALID;
2895 evalresult =
2896 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2897 if (!evalresult) {
2898 free_tlist(origline);
2899 return DIRECTIVE_FOUND;
2900 }
2901 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002902 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002903 "trailing garbage after expression ignored");
2904 if (!is_simple(evalresult)) {
2905 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
2906 return DIRECTIVE_FOUND;
2907 }
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04002908 count = reloc_value(evalresult);
2909 if (count >= REP_LIMIT) {
Cyrill Gorcunov71f4f842010-08-09 20:17:17 +04002910 error(ERR_NONFATAL, "`%%rep' value exceeds limit");
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04002911 count = 0;
2912 } else
2913 count++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002914 } else {
2915 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002916 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002917 }
2918 free_tlist(origline);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002919
2920 tmp_defining = defining;
2921 defining = nasm_malloc(sizeof(MMacro));
2922 defining->prev = NULL;
2923 defining->name = NULL; /* flags this macro as a %rep block */
2924 defining->casesense = false;
2925 defining->plus = false;
2926 defining->nolist = nolist;
2927 defining->in_progress = count;
2928 defining->max_depth = 0;
2929 defining->nparam_min = defining->nparam_max = 0;
2930 defining->defaults = NULL;
2931 defining->dlist = NULL;
2932 defining->expansion = NULL;
2933 defining->next_active = istk->mstk;
2934 defining->rep_nest = tmp_defining;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002935 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002936
H. Peter Anvine2c80182005-01-15 22:15:51 +00002937 case PP_ENDREP:
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002938 if (!defining || defining->name) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002939 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
2940 return DIRECTIVE_FOUND;
2941 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002942
H. Peter Anvine2c80182005-01-15 22:15:51 +00002943 /*
2944 * Now we have a "macro" defined - although it has no name
2945 * and we won't be entering it in the hash tables - we must
2946 * push a macro-end marker for it on to istk->expansion.
2947 * After that, it will take care of propagating itself (a
2948 * macro-end marker line for a macro which is really a %rep
2949 * block will cause the macro to be re-expanded, complete
2950 * with another macro-end marker to ensure the process
2951 * continues) until the whole expansion is forcibly removed
2952 * from istk->expansion by a %exitrep.
2953 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002954 l = nasm_malloc(sizeof(Line));
2955 l->next = istk->expansion;
2956 l->finishes = defining;
2957 l->first = NULL;
2958 istk->expansion = l;
2959
2960 istk->mstk = defining;
2961
2962 list->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
2963 tmp_defining = defining;
2964 defining = defining->rep_nest;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002965 free_tlist(origline);
2966 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002967
H. Peter Anvine2c80182005-01-15 22:15:51 +00002968 case PP_EXITREP:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002969 /*
2970 * We must search along istk->expansion until we hit a
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002971 * macro-end marker for a macro with no name. Then we set
2972 * its `in_progress' flag to 0.
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002973 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002974 list_for_each(l, istk->expansion)
2975 if (l->finishes && !l->finishes->name)
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002976 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002977
H. Peter Anvin36206cd2012-03-03 16:14:51 -08002978 if (l)
2979 l->finishes->in_progress = 1;
2980 else
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002981 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002982 free_tlist(origline);
2983 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002984
H. Peter Anvine2c80182005-01-15 22:15:51 +00002985 case PP_XDEFINE:
2986 case PP_IXDEFINE:
2987 case PP_DEFINE:
2988 case PP_IDEFINE:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002989 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002990
H. Peter Anvine2c80182005-01-15 22:15:51 +00002991 tline = tline->next;
2992 skip_white_(tline);
2993 tline = expand_id(tline);
2994 if (!tline || (tline->type != TOK_ID &&
2995 (tline->type != TOK_PREPROC_ID ||
2996 tline->text[1] != '$'))) {
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002997 error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002998 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002999 free_tlist(origline);
3000 return DIRECTIVE_FOUND;
3001 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003002
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003003 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003004 last = tline;
3005 param_start = tline = tline->next;
3006 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003007
H. Peter Anvine2c80182005-01-15 22:15:51 +00003008 /* Expand the macro definition now for %xdefine and %ixdefine */
3009 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
3010 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003011
H. Peter Anvine2c80182005-01-15 22:15:51 +00003012 if (tok_is_(tline, "(")) {
3013 /*
3014 * This macro has parameters.
3015 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003016
H. Peter Anvine2c80182005-01-15 22:15:51 +00003017 tline = tline->next;
3018 while (1) {
3019 skip_white_(tline);
3020 if (!tline) {
3021 error(ERR_NONFATAL, "parameter identifier expected");
3022 free_tlist(origline);
3023 return DIRECTIVE_FOUND;
3024 }
3025 if (tline->type != TOK_ID) {
3026 error(ERR_NONFATAL,
3027 "`%s': parameter identifier expected",
3028 tline->text);
3029 free_tlist(origline);
3030 return DIRECTIVE_FOUND;
3031 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003032 tline->type = TOK_SMAC_PARAM + nparam++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003033 tline = tline->next;
3034 skip_white_(tline);
3035 if (tok_is_(tline, ",")) {
3036 tline = tline->next;
H. Peter Anvinca348b62008-07-23 10:49:26 -04003037 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003038 if (!tok_is_(tline, ")")) {
3039 error(ERR_NONFATAL,
3040 "`)' expected to terminate macro template");
3041 free_tlist(origline);
3042 return DIRECTIVE_FOUND;
3043 }
3044 break;
3045 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003046 }
3047 last = tline;
3048 tline = tline->next;
3049 }
3050 if (tok_type_(tline, TOK_WHITESPACE))
3051 last = tline, tline = tline->next;
3052 macro_start = NULL;
3053 last->next = NULL;
3054 t = tline;
3055 while (t) {
3056 if (t->type == TOK_ID) {
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003057 list_for_each(tt, param_start)
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003058 if (tt->type >= TOK_SMAC_PARAM &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00003059 !strcmp(tt->text, t->text))
3060 t->type = tt->type;
3061 }
3062 tt = t->next;
3063 t->next = macro_start;
3064 macro_start = t;
3065 t = tt;
3066 }
3067 /*
3068 * Good. We now have a macro name, a parameter count, and a
3069 * token list (in reverse order) for an expansion. We ought
3070 * to be OK just to create an SMacro, store it, and let
3071 * free_tlist have the rest of the line (which we have
3072 * carefully re-terminated after chopping off the expansion
3073 * from the end).
3074 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003075 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003076 free_tlist(origline);
3077 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003078
H. Peter Anvine2c80182005-01-15 22:15:51 +00003079 case PP_UNDEF:
3080 tline = tline->next;
3081 skip_white_(tline);
3082 tline = expand_id(tline);
3083 if (!tline || (tline->type != TOK_ID &&
3084 (tline->type != TOK_PREPROC_ID ||
3085 tline->text[1] != '$'))) {
3086 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
3087 free_tlist(origline);
3088 return DIRECTIVE_FOUND;
3089 }
3090 if (tline->next) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07003091 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003092 "trailing garbage after macro name ignored");
3093 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003094
H. Peter Anvine2c80182005-01-15 22:15:51 +00003095 /* Find the context that symbol belongs to */
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003096 ctx = get_ctx(tline->text, &mname);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003097 undef_smacro(ctx, mname);
3098 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003099 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003100
H. Peter Anvin9e200162008-06-04 17:23:14 -07003101 case PP_DEFSTR:
3102 case PP_IDEFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003103 casesense = (i == PP_DEFSTR);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003104
3105 tline = tline->next;
3106 skip_white_(tline);
3107 tline = expand_id(tline);
3108 if (!tline || (tline->type != TOK_ID &&
3109 (tline->type != TOK_PREPROC_ID ||
3110 tline->text[1] != '$'))) {
3111 error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003112 pp_directives[i]);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003113 free_tlist(origline);
3114 return DIRECTIVE_FOUND;
3115 }
3116
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003117 ctx = get_ctx(tline->text, &mname);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003118 last = tline;
3119 tline = expand_smacro(tline->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003120 last->next = NULL;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003121
3122 while (tok_type_(tline, TOK_WHITESPACE))
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003123 tline = delete_Token(tline);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003124
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003125 p = detoken(tline, false);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003126 macro_start = nasm_malloc(sizeof(*macro_start));
3127 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003128 macro_start->text = nasm_quote(p, strlen(p));
3129 macro_start->type = TOK_STRING;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003130 macro_start->a.mac = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003131 nasm_free(p);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003132
3133 /*
3134 * We now have a macro name, an implicit parameter count of
3135 * zero, and a string token to use as an expansion. Create
3136 * and store an SMacro.
3137 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003138 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003139 free_tlist(origline);
3140 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003141
H. Peter Anvin2f55bda2009-07-14 15:04:04 -04003142 case PP_DEFTOK:
3143 case PP_IDEFTOK:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003144 casesense = (i == PP_DEFTOK);
3145
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003146 tline = tline->next;
3147 skip_white_(tline);
3148 tline = expand_id(tline);
3149 if (!tline || (tline->type != TOK_ID &&
3150 (tline->type != TOK_PREPROC_ID ||
3151 tline->text[1] != '$'))) {
3152 error(ERR_NONFATAL,
3153 "`%s' expects a macro identifier as first parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003154 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003155 free_tlist(origline);
3156 return DIRECTIVE_FOUND;
3157 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003158 ctx = get_ctx(tline->text, &mname);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003159 last = tline;
3160 tline = expand_smacro(tline->next);
3161 last->next = NULL;
3162
3163 t = tline;
3164 while (tok_type_(t, TOK_WHITESPACE))
3165 t = t->next;
3166 /* t should now point to the string */
Cyrill Gorcunov6908e582010-09-06 19:36:15 +04003167 if (!tok_type_(t, TOK_STRING)) {
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003168 error(ERR_NONFATAL,
3169 "`%s` requires string as second parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003170 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003171 free_tlist(tline);
3172 free_tlist(origline);
3173 return DIRECTIVE_FOUND;
3174 }
3175
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003176 /*
3177 * Convert the string to a token stream. Note that smacros
3178 * are stored with the token stream reversed, so we have to
3179 * reverse the output of tokenize().
3180 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003181 nasm_unquote_cstr(t->text, i);
H. Peter Anvinb40992c2010-09-15 08:57:21 -07003182 macro_start = reverse_tokens(tokenize(t->text));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003183
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003184 /*
3185 * We now have a macro name, an implicit parameter count of
3186 * zero, and a numeric token to use as an expansion. Create
3187 * and store an SMacro.
3188 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003189 define_smacro(ctx, mname, casesense, 0, macro_start);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003190 free_tlist(tline);
3191 free_tlist(origline);
3192 return DIRECTIVE_FOUND;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003193
H. Peter Anvin418ca702008-05-30 10:42:30 -07003194 case PP_PATHSEARCH:
3195 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003196 FILE *fp;
3197 StrList *xsl = NULL;
3198 StrList **xst = &xsl;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003199
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003200 casesense = true;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003201
3202 tline = tline->next;
3203 skip_white_(tline);
3204 tline = expand_id(tline);
3205 if (!tline || (tline->type != TOK_ID &&
3206 (tline->type != TOK_PREPROC_ID ||
3207 tline->text[1] != '$'))) {
3208 error(ERR_NONFATAL,
3209 "`%%pathsearch' expects a macro identifier as first parameter");
3210 free_tlist(origline);
3211 return DIRECTIVE_FOUND;
3212 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003213 ctx = get_ctx(tline->text, &mname);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003214 last = tline;
3215 tline = expand_smacro(tline->next);
3216 last->next = NULL;
3217
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003218 t = tline;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003219 while (tok_type_(t, TOK_WHITESPACE))
3220 t = t->next;
3221
3222 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003223 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07003224 error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003225 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003226 free_tlist(origline);
3227 return DIRECTIVE_FOUND; /* but we did _something_ */
3228 }
3229 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003230 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07003231 "trailing garbage after `%%pathsearch' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003232 p = t->text;
H. Peter Anvin427cc912008-06-01 21:43:03 -07003233 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003234 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003235
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003236 fp = inc_fopen(p, &xsl, &xst, true);
3237 if (fp) {
3238 p = xsl->str;
3239 fclose(fp); /* Don't actually care about the file */
3240 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003241 macro_start = nasm_malloc(sizeof(*macro_start));
3242 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003243 macro_start->text = nasm_quote(p, strlen(p));
3244 macro_start->type = TOK_STRING;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003245 macro_start->a.mac = NULL;
3246 if (xsl)
3247 nasm_free(xsl);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003248
3249 /*
3250 * We now have a macro name, an implicit parameter count of
3251 * zero, and a string token to use as an expansion. Create
3252 * and store an SMacro.
3253 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003254 define_smacro(ctx, mname, casesense, 0, macro_start);
3255 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003256 free_tlist(origline);
3257 return DIRECTIVE_FOUND;
3258 }
3259
H. Peter Anvine2c80182005-01-15 22:15:51 +00003260 case PP_STRLEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003261 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07003262
H. Peter Anvine2c80182005-01-15 22:15:51 +00003263 tline = tline->next;
3264 skip_white_(tline);
3265 tline = expand_id(tline);
3266 if (!tline || (tline->type != TOK_ID &&
3267 (tline->type != TOK_PREPROC_ID ||
3268 tline->text[1] != '$'))) {
3269 error(ERR_NONFATAL,
3270 "`%%strlen' expects a macro identifier as first parameter");
3271 free_tlist(origline);
3272 return DIRECTIVE_FOUND;
3273 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003274 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003275 last = tline;
3276 tline = expand_smacro(tline->next);
3277 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003278
H. Peter Anvine2c80182005-01-15 22:15:51 +00003279 t = tline;
3280 while (tok_type_(t, TOK_WHITESPACE))
3281 t = t->next;
3282 /* t should now point to the string */
Cyrill Gorcunov4e1d5ab2010-07-23 18:51:51 +04003283 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003284 error(ERR_NONFATAL,
3285 "`%%strlen` requires string as second parameter");
3286 free_tlist(tline);
3287 free_tlist(origline);
3288 return DIRECTIVE_FOUND;
3289 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003290
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003291 macro_start = nasm_malloc(sizeof(*macro_start));
3292 macro_start->next = NULL;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003293 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003294 macro_start->a.mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003295
H. Peter Anvine2c80182005-01-15 22:15:51 +00003296 /*
3297 * We now have a macro name, an implicit parameter count of
3298 * zero, and a numeric token to use as an expansion. Create
3299 * and store an SMacro.
3300 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003301 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003302 free_tlist(tline);
3303 free_tlist(origline);
3304 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003305
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003306 case PP_STRCAT:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003307 casesense = true;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003308
3309 tline = tline->next;
3310 skip_white_(tline);
3311 tline = expand_id(tline);
3312 if (!tline || (tline->type != TOK_ID &&
3313 (tline->type != TOK_PREPROC_ID ||
3314 tline->text[1] != '$'))) {
3315 error(ERR_NONFATAL,
3316 "`%%strcat' expects a macro identifier as first parameter");
3317 free_tlist(origline);
3318 return DIRECTIVE_FOUND;
3319 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003320 ctx = get_ctx(tline->text, &mname);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003321 last = tline;
3322 tline = expand_smacro(tline->next);
3323 last->next = NULL;
3324
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003325 len = 0;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003326 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003327 switch (t->type) {
3328 case TOK_WHITESPACE:
3329 break;
3330 case TOK_STRING:
3331 len += t->a.len = nasm_unquote(t->text, NULL);
3332 break;
3333 case TOK_OTHER:
3334 if (!strcmp(t->text, ",")) /* permit comma separators */
3335 break;
3336 /* else fall through */
3337 default:
3338 error(ERR_NONFATAL,
3339 "non-string passed to `%%strcat' (%d)", t->type);
3340 free_tlist(tline);
3341 free_tlist(origline);
3342 return DIRECTIVE_FOUND;
3343 }
3344 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003345
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003346 p = pp = nasm_malloc(len);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003347 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003348 if (t->type == TOK_STRING) {
3349 memcpy(p, t->text, t->a.len);
3350 p += t->a.len;
3351 }
3352 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003353
3354 /*
3355 * We now have a macro name, an implicit parameter count of
3356 * zero, and a numeric token to use as an expansion. Create
3357 * and store an SMacro.
3358 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003359 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
3360 macro_start->text = nasm_quote(pp, len);
3361 nasm_free(pp);
3362 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003363 free_tlist(tline);
3364 free_tlist(origline);
3365 return DIRECTIVE_FOUND;
3366
H. Peter Anvine2c80182005-01-15 22:15:51 +00003367 case PP_SUBSTR:
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003368 {
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003369 int64_t start, count;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003370 size_t len;
H. Peter Anvind2456592008-06-19 15:04:18 -07003371
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003372 casesense = true;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003373
H. Peter Anvine2c80182005-01-15 22:15:51 +00003374 tline = tline->next;
3375 skip_white_(tline);
3376 tline = expand_id(tline);
3377 if (!tline || (tline->type != TOK_ID &&
3378 (tline->type != TOK_PREPROC_ID ||
3379 tline->text[1] != '$'))) {
3380 error(ERR_NONFATAL,
3381 "`%%substr' expects a macro identifier as first parameter");
3382 free_tlist(origline);
3383 return DIRECTIVE_FOUND;
3384 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003385 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003386 last = tline;
3387 tline = expand_smacro(tline->next);
3388 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003389
Cyrill Gorcunov35519d62010-09-06 23:49:52 +04003390 if (tline) /* skip expanded id */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003391 t = tline->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003392 while (tok_type_(t, TOK_WHITESPACE))
3393 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003394
H. Peter Anvine2c80182005-01-15 22:15:51 +00003395 /* t should now point to the string */
Cyrill Gorcunov35519d62010-09-06 23:49:52 +04003396 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003397 error(ERR_NONFATAL,
3398 "`%%substr` requires string as second parameter");
3399 free_tlist(tline);
3400 free_tlist(origline);
3401 return DIRECTIVE_FOUND;
3402 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003403
H. Peter Anvine2c80182005-01-15 22:15:51 +00003404 tt = t->next;
3405 tptr = &tt;
3406 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003407 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003408 pass, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003409 if (!evalresult) {
3410 free_tlist(tline);
3411 free_tlist(origline);
3412 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003413 } else if (!is_simple(evalresult)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003414 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3415 free_tlist(tline);
3416 free_tlist(origline);
3417 return DIRECTIVE_FOUND;
3418 }
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003419 start = evalresult->value - 1;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003420
3421 while (tok_type_(tt, TOK_WHITESPACE))
3422 tt = tt->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003423 if (!tt) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003424 count = 1; /* Backwards compatibility: one character */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003425 } else {
3426 tokval.t_type = TOKEN_INVALID;
3427 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3428 pass, error, NULL);
3429 if (!evalresult) {
3430 free_tlist(tline);
3431 free_tlist(origline);
3432 return DIRECTIVE_FOUND;
3433 } else if (!is_simple(evalresult)) {
3434 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3435 free_tlist(tline);
3436 free_tlist(origline);
3437 return DIRECTIVE_FOUND;
3438 }
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003439 count = evalresult->value;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003440 }
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003441
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003442 len = nasm_unquote(t->text, NULL);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003443
Cyrill Gorcunovcff031e2010-09-07 20:31:11 +04003444 /* make start and count being in range */
3445 if (start < 0)
3446 start = 0;
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003447 if (count < 0)
3448 count = len + count + 1 - start;
3449 if (start + count > (int64_t)len)
Cyrill Gorcunovcff031e2010-09-07 20:31:11 +04003450 count = len - start;
3451 if (!len || count < 0 || start >=(int64_t)len)
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003452 start = -1, count = 0; /* empty string */
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003453
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003454 macro_start = nasm_malloc(sizeof(*macro_start));
3455 macro_start->next = NULL;
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003456 macro_start->text = nasm_quote((start < 0) ? "" : t->text + start, count);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003457 macro_start->type = TOK_STRING;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003458 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003459
H. Peter Anvine2c80182005-01-15 22:15:51 +00003460 /*
3461 * We now have a macro name, an implicit parameter count of
3462 * zero, and a numeric token to use as an expansion. Create
3463 * and store an SMacro.
3464 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003465 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003466 free_tlist(tline);
3467 free_tlist(origline);
3468 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003469 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003470
H. Peter Anvine2c80182005-01-15 22:15:51 +00003471 case PP_ASSIGN:
3472 case PP_IASSIGN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003473 casesense = (i == PP_ASSIGN);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003474
H. Peter Anvine2c80182005-01-15 22:15:51 +00003475 tline = tline->next;
3476 skip_white_(tline);
3477 tline = expand_id(tline);
3478 if (!tline || (tline->type != TOK_ID &&
3479 (tline->type != TOK_PREPROC_ID ||
3480 tline->text[1] != '$'))) {
3481 error(ERR_NONFATAL,
3482 "`%%%sassign' expects a macro identifier",
3483 (i == PP_IASSIGN ? "i" : ""));
3484 free_tlist(origline);
3485 return DIRECTIVE_FOUND;
3486 }
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04003487 ctx = get_ctx(tline->text, &mname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003488 last = tline;
3489 tline = expand_smacro(tline->next);
3490 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003491
H. Peter Anvine2c80182005-01-15 22:15:51 +00003492 t = tline;
3493 tptr = &t;
3494 tokval.t_type = TOKEN_INVALID;
3495 evalresult =
3496 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3497 free_tlist(tline);
3498 if (!evalresult) {
3499 free_tlist(origline);
3500 return DIRECTIVE_FOUND;
3501 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003502
H. Peter Anvine2c80182005-01-15 22:15:51 +00003503 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003504 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003505 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00003506
H. Peter Anvine2c80182005-01-15 22:15:51 +00003507 if (!is_simple(evalresult)) {
3508 error(ERR_NONFATAL,
3509 "non-constant value given to `%%%sassign'",
3510 (i == PP_IASSIGN ? "i" : ""));
3511 free_tlist(origline);
3512 return DIRECTIVE_FOUND;
3513 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003514
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003515 macro_start = nasm_malloc(sizeof(*macro_start));
3516 macro_start->next = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003517 make_tok_num(macro_start, reloc_value(evalresult));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003518 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003519
H. Peter Anvine2c80182005-01-15 22:15:51 +00003520 /*
3521 * We now have a macro name, an implicit parameter count of
3522 * zero, and a numeric token to use as an expansion. Create
3523 * and store an SMacro.
3524 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003525 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003526 free_tlist(origline);
3527 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003528
H. Peter Anvine2c80182005-01-15 22:15:51 +00003529 case PP_LINE:
3530 /*
3531 * Syntax is `%line nnn[+mmm] [filename]'
3532 */
3533 tline = tline->next;
3534 skip_white_(tline);
3535 if (!tok_type_(tline, TOK_NUMBER)) {
3536 error(ERR_NONFATAL, "`%%line' expects line number");
3537 free_tlist(origline);
3538 return DIRECTIVE_FOUND;
3539 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003540 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003541 m = 1;
3542 tline = tline->next;
3543 if (tok_is_(tline, "+")) {
3544 tline = tline->next;
3545 if (!tok_type_(tline, TOK_NUMBER)) {
3546 error(ERR_NONFATAL, "`%%line' expects line increment");
3547 free_tlist(origline);
3548 return DIRECTIVE_FOUND;
3549 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003550 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003551 tline = tline->next;
3552 }
3553 skip_white_(tline);
3554 src_set_linnum(k);
3555 istk->lineinc = m;
3556 if (tline) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003557 nasm_free(src_set_fname(detoken(tline, false)));
H. Peter Anvine2c80182005-01-15 22:15:51 +00003558 }
3559 free_tlist(origline);
3560 return DIRECTIVE_FOUND;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05003561
H. Peter Anvine2c80182005-01-15 22:15:51 +00003562 default:
3563 error(ERR_FATAL,
3564 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00003565 pp_directives[i]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003566 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003567 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003568}
3569
3570/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00003571 * Ensure that a macro parameter contains a condition code and
3572 * nothing else. Return the condition code index if so, or -1
3573 * otherwise.
3574 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003575static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003576{
H. Peter Anvin76690a12002-04-30 20:52:49 +00003577 Token *tt;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003578
H. Peter Anvin25a99342007-09-22 17:45:45 -07003579 if (!t)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003580 return -1; /* Probably a %+ without a space */
H. Peter Anvin25a99342007-09-22 17:45:45 -07003581
H. Peter Anvineba20a72002-04-30 20:53:55 +00003582 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003583 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003584 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003585 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003586 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003587 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003588 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003589
Cyrill Gorcunov19456392012-05-02 00:18:56 +04003590 return bsii(t->text, (const char **)conditions, ARRAY_SIZE(conditions));
H. Peter Anvin76690a12002-04-30 20:52:49 +00003591}
3592
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003593/*
3594 * This routines walks over tokens strem and hadnles tokens
3595 * pasting, if @handle_explicit passed then explicit pasting
3596 * term is handled, otherwise -- implicit pastings only.
3597 */
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003598static bool paste_tokens(Token **head, const struct tokseq_match *m,
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003599 size_t mnum, bool handle_explicit)
H. Peter Anvind784a082009-04-20 14:01:18 -07003600{
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003601 Token *tok, *next, **prev_next, **prev_nonspace;
3602 bool pasted = false;
3603 char *buf, *p;
3604 size_t len, i;
H. Peter Anvind784a082009-04-20 14:01:18 -07003605
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003606 /*
3607 * The last token before pasting. We need it
3608 * to be able to connect new handled tokens.
3609 * In other words if there were a tokens stream
3610 *
3611 * A -> B -> C -> D
3612 *
3613 * and we've joined tokens B and C, the resulting
3614 * stream should be
3615 *
3616 * A -> BC -> D
3617 */
3618 tok = *head;
3619 prev_next = NULL;
3620
3621 if (!tok_type_(tok, TOK_WHITESPACE) && !tok_type_(tok, TOK_PASTE))
3622 prev_nonspace = head;
3623 else
3624 prev_nonspace = NULL;
3625
3626 while (tok && (next = tok->next)) {
3627
3628 switch (tok->type) {
H. Peter Anvind784a082009-04-20 14:01:18 -07003629 case TOK_WHITESPACE:
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003630 /* Zap redundant whitespaces */
3631 while (tok_type_(next, TOK_WHITESPACE))
3632 next = delete_Token(next);
3633 tok->next = next;
H. Peter Anvind784a082009-04-20 14:01:18 -07003634 break;
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003635
3636 case TOK_PASTE:
3637 /* Explicit pasting */
3638 if (!handle_explicit)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003639 break;
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003640 next = delete_Token(tok);
3641
3642 while (tok_type_(next, TOK_WHITESPACE))
3643 next = delete_Token(next);
3644
3645 if (!pasted)
3646 pasted = true;
3647
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003648 /* Left pasting token is start of line */
3649 if (!prev_nonspace)
3650 error(ERR_FATAL, "No lvalue found on pasting");
3651
Cyrill Gorcunov8b5c9fb2013-02-04 01:24:54 +04003652 /*
3653 * No ending token, this might happen in two
3654 * cases
3655 *
3656 * 1) There indeed no right token at all
3657 * 2) There is a bare "%define ID" statement,
3658 * and @ID does expand to whitespace.
3659 *
3660 * So technically we need to do a grammar analysis
3661 * in another stage of parsing, but for now lets don't
3662 * change the behaviour people used to. Simply allow
3663 * whitespace after paste token.
3664 */
3665 if (!next) {
3666 /*
3667 * Zap ending space tokens and that's all.
3668 */
3669 tok = (*prev_nonspace)->next;
3670 while (tok_type_(tok, TOK_WHITESPACE))
3671 tok = delete_Token(tok);
3672 tok = *prev_nonspace;
3673 tok->next = NULL;
3674 break;
3675 }
3676
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003677 tok = *prev_nonspace;
3678 while (tok_type_(tok, TOK_WHITESPACE))
3679 tok = delete_Token(tok);
3680 len = strlen(tok->text);
3681 len += strlen(next->text);
3682
3683 p = buf = nasm_malloc(len + 1);
3684 strcpy(p, tok->text);
3685 p = strchr(p, '\0');
3686 strcpy(p, next->text);
3687
3688 delete_Token(tok);
3689
3690 tok = tokenize(buf);
3691 nasm_free(buf);
3692
3693 *prev_nonspace = tok;
3694 while (tok && tok->next)
3695 tok = tok->next;
3696
3697 tok->next = delete_Token(next);
3698
3699 /* Restart from pasted tokens head */
3700 tok = *prev_nonspace;
3701 break;
3702
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003703 default:
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003704 /* implicit pasting */
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003705 for (i = 0; i < mnum; i++) {
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003706 if (!(PP_CONCAT_MATCH(tok, m[i].mask_head)))
3707 continue;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04003708
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003709 len = 0;
3710 while (next && PP_CONCAT_MATCH(next, m[i].mask_tail)) {
3711 len += strlen(next->text);
3712 next = next->next;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04003713 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003714
3715 /* No match */
3716 if (tok == next)
3717 break;
3718
3719 len += strlen(tok->text);
3720 p = buf = nasm_malloc(len + 1);
3721
3722 while (tok != next) {
3723 strcpy(p, tok->text);
3724 p = strchr(p, '\0');
3725 tok = delete_Token(tok);
3726 }
3727
3728 tok = tokenize(buf);
3729 nasm_free(buf);
3730
3731 if (prev_next)
3732 *prev_next = tok;
3733 else
3734 *head = tok;
3735
3736 /*
3737 * Connect pasted into original stream,
3738 * ie A -> new-tokens -> B
3739 */
3740 while (tok && tok->next)
3741 tok = tok->next;
3742 tok->next = next;
3743
3744 if (!pasted)
3745 pasted = true;
3746
3747 /* Restart from pasted tokens head */
3748 tok = prev_next ? *prev_next : *head;
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003749 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003750
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003751 break;
H. Peter Anvind784a082009-04-20 14:01:18 -07003752 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003753
3754 prev_next = &tok->next;
3755
3756 if (tok->next &&
3757 !tok_type_(tok->next, TOK_WHITESPACE) &&
3758 !tok_type_(tok->next, TOK_PASTE))
3759 prev_nonspace = prev_next;
3760
3761 tok = tok->next;
H. Peter Anvind784a082009-04-20 14:01:18 -07003762 }
Cyrill Gorcunov1cf9b312012-08-04 10:51:58 +04003763
3764 return pasted;
H. Peter Anvind784a082009-04-20 14:01:18 -07003765}
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003766
3767/*
3768 * expands to a list of tokens from %{x:y}
3769 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003770static Token *expand_mmac_params_range(MMacro *mac, Token *tline, Token ***last)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003771{
3772 Token *t = tline, **tt, *tm, *head;
3773 char *pos;
3774 int fst, lst, j, i;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003775
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003776 pos = strchr(tline->text, ':');
3777 nasm_assert(pos);
3778
3779 lst = atoi(pos + 1);
3780 fst = atoi(tline->text + 1);
3781
3782 /*
3783 * only macros params are accounted so
3784 * if someone passes %0 -- we reject such
3785 * value(s)
3786 */
3787 if (lst == 0 || fst == 0)
3788 goto err;
3789
3790 /* the values should be sane */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003791 if ((fst > (int)mac->nparam || fst < (-(int)mac->nparam)) ||
3792 (lst > (int)mac->nparam || lst < (-(int)mac->nparam)))
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003793 goto err;
3794
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003795 fst = fst < 0 ? fst + (int)mac->nparam + 1: fst;
3796 lst = lst < 0 ? lst + (int)mac->nparam + 1: lst;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003797
3798 /* counted from zero */
3799 fst--, lst--;
3800
3801 /*
3802 * it will be at least one token
3803 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003804 tm = mac->params[(fst + mac->rotate) % mac->nparam];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003805 t = new_Token(NULL, tm->type, tm->text, 0);
3806 head = t, tt = &t->next;
3807 if (fst < lst) {
3808 for (i = fst + 1; i <= lst; i++) {
3809 t = new_Token(NULL, TOK_OTHER, ",", 0);
3810 *tt = t, tt = &t->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003811 j = (i + mac->rotate) % mac->nparam;
3812 tm = mac->params[j];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003813 t = new_Token(NULL, tm->type, tm->text, 0);
3814 *tt = t, tt = &t->next;
3815 }
3816 } else {
3817 for (i = fst - 1; i >= lst; i--) {
3818 t = new_Token(NULL, TOK_OTHER, ",", 0);
3819 *tt = t, tt = &t->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003820 j = (i + mac->rotate) % mac->nparam;
3821 tm = mac->params[j];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003822 t = new_Token(NULL, tm->type, tm->text, 0);
3823 *tt = t, tt = &t->next;
3824 }
3825 }
3826
3827 *last = tt;
3828 return head;
3829
3830err:
3831 error(ERR_NONFATAL, "`%%{%s}': macro parameters out of range",
3832 &tline->text[1]);
3833 return tline;
3834}
3835
H. Peter Anvin76690a12002-04-30 20:52:49 +00003836/*
3837 * Expand MMacro-local things: parameter references (%0, %n, %+n,
H. Peter Anvin67c63722008-10-26 23:49:00 -07003838 * %-n) and MMacro-local identifiers (%%foo) as well as
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003839 * macro indirection (%[...]) and range (%{..:..}).
H. Peter Anvin76690a12002-04-30 20:52:49 +00003840 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003841static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003842{
H. Peter Anvin734b1882002-04-30 21:01:08 +00003843 Token *t, *tt, **tail, *thead;
H. Peter Anvin6125b622009-04-08 14:02:25 -07003844 bool changed = false;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003845 char *pos;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003846
3847 tail = &thead;
3848 thead = NULL;
3849
H. Peter Anvine2c80182005-01-15 22:15:51 +00003850 while (tline) {
3851 if (tline->type == TOK_PREPROC_ID &&
Cyrill Gorcunovca611192010-06-04 09:22:12 +04003852 (((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) ||
3853 (tline->text[1] >= '0' && tline->text[1] <= '9') ||
3854 tline->text[1] == '%')) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003855 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003856 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003857 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07003858 unsigned int n;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003859 int i;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003860 MMacro *mac;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003861
H. Peter Anvine2c80182005-01-15 22:15:51 +00003862 t = tline;
3863 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003864
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003865 mac = istk->mstk;
3866 while (mac && !mac->name) /* avoid mistaking %reps for macros */
3867 mac = mac->next_active;
3868 if (!mac) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003869 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003870 } else {
3871 pos = strchr(t->text, ':');
3872 if (!pos) {
3873 switch (t->text[1]) {
3874 /*
3875 * We have to make a substitution of one of the
3876 * forms %1, %-1, %+1, %%foo, %0.
3877 */
3878 case '0':
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003879 type = TOK_NUMBER;
3880 snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam);
3881 text = nasm_strdup(tmpbuf);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003882 break;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003883 case '%':
H. Peter Anvine2c80182005-01-15 22:15:51 +00003884 type = TOK_ID;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003885 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003886 mac->unique);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003887 text = nasm_strcat(tmpbuf, t->text + 2);
3888 break;
3889 case '-':
3890 n = atoi(t->text + 2) - 1;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003891 if (n >= mac->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003892 tt = NULL;
3893 else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003894 if (mac->nparam > 1)
3895 n = (n + mac->rotate) % mac->nparam;
3896 tt = mac->params[n];
H. Peter Anvine2c80182005-01-15 22:15:51 +00003897 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003898 cc = find_cc(tt);
3899 if (cc == -1) {
3900 error(ERR_NONFATAL,
3901 "macro parameter %d is not a condition code",
3902 n + 1);
3903 text = NULL;
3904 } else {
3905 type = TOK_ID;
3906 if (inverse_ccs[cc] == -1) {
3907 error(ERR_NONFATAL,
3908 "condition code `%s' is not invertible",
3909 conditions[cc]);
3910 text = NULL;
3911 } else
3912 text = nasm_strdup(conditions[inverse_ccs[cc]]);
3913 }
3914 break;
3915 case '+':
3916 n = atoi(t->text + 2) - 1;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003917 if (n >= mac->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003918 tt = NULL;
3919 else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003920 if (mac->nparam > 1)
3921 n = (n + mac->rotate) % mac->nparam;
3922 tt = mac->params[n];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003923 }
3924 cc = find_cc(tt);
3925 if (cc == -1) {
3926 error(ERR_NONFATAL,
3927 "macro parameter %d is not a condition code",
3928 n + 1);
3929 text = NULL;
3930 } else {
3931 type = TOK_ID;
3932 text = nasm_strdup(conditions[cc]);
3933 }
3934 break;
3935 default:
3936 n = atoi(t->text + 1) - 1;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003937 if (n >= mac->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003938 tt = NULL;
3939 else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003940 if (mac->nparam > 1)
3941 n = (n + mac->rotate) % mac->nparam;
3942 tt = mac->params[n];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003943 }
3944 if (tt) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003945 for (i = 0; i < mac->paramlen[n]; i++) {
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003946 *tail = new_Token(NULL, tt->type, tt->text, 0);
3947 tail = &(*tail)->next;
3948 tt = tt->next;
3949 }
3950 }
3951 text = NULL; /* we've done it here */
3952 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003953 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003954 } else {
3955 /*
3956 * seems we have a parameters range here
3957 */
3958 Token *head, **last;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08003959 head = expand_mmac_params_range(mac, t, &last);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003960 if (head != t) {
3961 *tail = head;
3962 *last = tline;
3963 tline = head;
3964 text = NULL;
3965 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003966 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003967 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003968 if (!text) {
3969 delete_Token(t);
3970 } else {
3971 *tail = t;
3972 tail = &t->next;
3973 t->type = type;
3974 nasm_free(t->text);
3975 t->text = text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003976 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003977 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003978 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003979 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003980 } else if (tline->type == TOK_INDIRECT) {
3981 t = tline;
3982 tline = tline->next;
3983 tt = tokenize(t->text);
3984 tt = expand_mmac_params(tt);
3985 tt = expand_smacro(tt);
3986 *tail = tt;
3987 while (tt) {
3988 tt->a.mac = NULL; /* Necessary? */
3989 tail = &tt->next;
3990 tt = tt->next;
3991 }
3992 delete_Token(t);
3993 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003994 } else {
3995 t = *tail = tline;
3996 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003997 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003998 tail = &t->next;
3999 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004000 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00004001 *tail = NULL;
H. Peter Anvin67c63722008-10-26 23:49:00 -07004002
Cyrill Gorcunovc6a742c2011-06-27 01:23:09 +04004003 if (changed) {
4004 const struct tokseq_match t[] = {
4005 {
4006 PP_CONCAT_MASK(TOK_ID) |
4007 PP_CONCAT_MASK(TOK_FLOAT), /* head */
4008 PP_CONCAT_MASK(TOK_ID) |
4009 PP_CONCAT_MASK(TOK_NUMBER) |
4010 PP_CONCAT_MASK(TOK_FLOAT) |
4011 PP_CONCAT_MASK(TOK_OTHER) /* tail */
4012 },
4013 {
4014 PP_CONCAT_MASK(TOK_NUMBER), /* head */
4015 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4016 }
4017 };
4018 paste_tokens(&thead, t, ARRAY_SIZE(t), false);
4019 }
H. Peter Anvin6125b622009-04-08 14:02:25 -07004020
H. Peter Anvin76690a12002-04-30 20:52:49 +00004021 return thead;
4022}
4023
4024/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004025 * Expand all single-line macro calls made in the given line.
4026 * Return the expanded version of the line. The original is deemed
4027 * to be destroyed in the process. (In reality we'll just move
4028 * Tokens from input to output a lot of the time, rather than
4029 * actually bothering to destroy and replicate.)
4030 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004031
H. Peter Anvine2c80182005-01-15 22:15:51 +00004032static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004033{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004034 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004035 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004036 Token **params;
4037 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07004038 unsigned int nparam, sparam;
H. Peter Anvind784a082009-04-20 14:01:18 -07004039 int brackets;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004040 Token *org_tline = tline;
4041 Context *ctx;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08004042 const char *mname;
H. Peter Anvin2a15e692007-11-19 13:14:59 -08004043 int deadman = DEADMAN_LIMIT;
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004044 bool expanded;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004045
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004046 /*
4047 * Trick: we should avoid changing the start token pointer since it can
4048 * be contained in "next" field of other token. Because of this
4049 * we allocate a copy of first token and work with it; at the end of
4050 * routine we copy it back
4051 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004052 if (org_tline) {
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004053 tline = new_Token(org_tline->next, org_tline->type,
4054 org_tline->text, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004055 tline->a.mac = org_tline->a.mac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004056 nasm_free(org_tline->text);
4057 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004058 }
4059
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004060 expanded = true; /* Always expand %+ at least once */
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004061
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004062again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004063 thead = NULL;
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004064 tail = &thead;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004065
H. Peter Anvine2c80182005-01-15 22:15:51 +00004066 while (tline) { /* main token loop */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004067 if (!--deadman) {
4068 error(ERR_NONFATAL, "interminable macro recursion");
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004069 goto err;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004070 }
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004071
H. Peter Anvine2c80182005-01-15 22:15:51 +00004072 if ((mname = tline->text)) {
4073 /* if this token is a local macro, look in local context */
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004074 if (tline->type == TOK_ID) {
4075 head = (SMacro *)hash_findix(&smacros, mname);
4076 } else if (tline->type == TOK_PREPROC_ID) {
Cyrill Gorcunov1a42fb22012-03-11 11:38:47 +04004077 ctx = get_ctx(mname, &mname);
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004078 head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL;
4079 } else
4080 head = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -07004081
H. Peter Anvine2c80182005-01-15 22:15:51 +00004082 /*
4083 * We've hit an identifier. As in is_mmacro below, we first
4084 * check whether the identifier is a single-line macro at
4085 * all, then think about checking for parameters if
4086 * necessary.
4087 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004088 list_for_each(m, head)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004089 if (!mstrcmp(m->name, mname, m->casesense))
4090 break;
4091 if (m) {
4092 mstart = tline;
4093 params = NULL;
4094 paramsize = NULL;
4095 if (m->nparam == 0) {
4096 /*
4097 * Simple case: the macro is parameterless. Discard the
4098 * one token that the macro call took, and push the
4099 * expansion back on the to-do stack.
4100 */
4101 if (!m->expansion) {
4102 if (!strcmp("__FILE__", m->name)) {
4103 int32_t num = 0;
4104 char *file = NULL;
4105 src_get(&num, &file);
4106 tline->text = nasm_quote(file, strlen(file));
4107 tline->type = TOK_STRING;
4108 nasm_free(file);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004109 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004110 }
4111 if (!strcmp("__LINE__", m->name)) {
4112 nasm_free(tline->text);
4113 make_tok_num(tline, src_get_linnum());
4114 continue;
4115 }
4116 if (!strcmp("__BITS__", m->name)) {
4117 nasm_free(tline->text);
4118 make_tok_num(tline, globalbits);
4119 continue;
4120 }
4121 tline = delete_Token(tline);
4122 continue;
4123 }
4124 } else {
4125 /*
4126 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00004127 * exists and takes parameters. We must find the
4128 * parameters in the call, count them, find the SMacro
4129 * that corresponds to that form of the macro call, and
4130 * substitute for the parameters when we expand. What a
4131 * pain.
4132 */
4133 /*tline = tline->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004134 skip_white_(tline); */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004135 do {
4136 t = tline->next;
4137 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004138 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004139 t->text = NULL;
4140 t = tline->next = delete_Token(t);
4141 }
4142 tline = t;
4143 } while (tok_type_(tline, TOK_WHITESPACE));
4144 if (!tok_is_(tline, "(")) {
4145 /*
4146 * This macro wasn't called with parameters: ignore
4147 * the call. (Behaviour borrowed from gnu cpp.)
4148 */
4149 tline = mstart;
4150 m = NULL;
4151 } else {
4152 int paren = 0;
4153 int white = 0;
4154 brackets = 0;
4155 nparam = 0;
4156 sparam = PARAM_DELTA;
4157 params = nasm_malloc(sparam * sizeof(Token *));
4158 params[0] = tline->next;
4159 paramsize = nasm_malloc(sparam * sizeof(int));
4160 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004161 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004162 /*
4163 * For some unusual expansions
4164 * which concatenates function call
4165 */
4166 t = tline->next;
4167 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004168 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004169 t->text = NULL;
4170 t = tline->next = delete_Token(t);
4171 }
4172 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00004173
H. Peter Anvine2c80182005-01-15 22:15:51 +00004174 if (!tline) {
4175 error(ERR_NONFATAL,
4176 "macro call expects terminating `)'");
4177 break;
4178 }
4179 if (tline->type == TOK_WHITESPACE
4180 && brackets <= 0) {
4181 if (paramsize[nparam])
4182 white++;
4183 else
4184 params[nparam] = tline->next;
4185 continue; /* parameter loop */
4186 }
4187 if (tline->type == TOK_OTHER
4188 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004189 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004190 if (ch == ',' && !paren && brackets <= 0) {
4191 if (++nparam >= sparam) {
4192 sparam += PARAM_DELTA;
4193 params = nasm_realloc(params,
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004194 sparam * sizeof(Token *));
4195 paramsize = nasm_realloc(paramsize,
4196 sparam * sizeof(int));
H. Peter Anvine2c80182005-01-15 22:15:51 +00004197 }
4198 params[nparam] = tline->next;
4199 paramsize[nparam] = 0;
4200 white = 0;
4201 continue; /* parameter loop */
4202 }
4203 if (ch == '{' &&
4204 (brackets > 0 || (brackets == 0 &&
4205 !paramsize[nparam])))
4206 {
4207 if (!(brackets++)) {
4208 params[nparam] = tline->next;
4209 continue; /* parameter loop */
4210 }
4211 }
4212 if (ch == '}' && brackets > 0)
4213 if (--brackets == 0) {
4214 brackets = -1;
4215 continue; /* parameter loop */
4216 }
4217 if (ch == '(' && !brackets)
4218 paren++;
4219 if (ch == ')' && brackets <= 0)
4220 if (--paren < 0)
4221 break;
4222 }
4223 if (brackets < 0) {
4224 brackets = 0;
4225 error(ERR_NONFATAL, "braces do not "
4226 "enclose all of macro parameter");
4227 }
4228 paramsize[nparam] += white + 1;
4229 white = 0;
4230 } /* parameter loop */
4231 nparam++;
4232 while (m && (m->nparam != nparam ||
4233 mstrcmp(m->name, mname,
4234 m->casesense)))
4235 m = m->next;
4236 if (!m)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004237 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004238 "macro `%s' exists, "
4239 "but not taking %d parameters",
4240 mstart->text, nparam);
4241 }
4242 }
4243 if (m && m->in_progress)
4244 m = NULL;
4245 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07004246 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00004247 * Design question: should we handle !tline, which
4248 * indicates missing ')' here, or expand those
4249 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07004250 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00004251 */
4252 nasm_free(params);
4253 nasm_free(paramsize);
4254 tline = mstart;
4255 } else {
4256 /*
4257 * Expand the macro: we are placed on the last token of the
4258 * call, so that we can easily split the call from the
4259 * following tokens. We also start by pushing an SMAC_END
4260 * token for the cycle removal.
4261 */
4262 t = tline;
4263 if (t) {
4264 tline = t->next;
4265 t->next = NULL;
4266 }
4267 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004268 tt->a.mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004269 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004270 tline = tt;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004271 list_for_each(t, m->expansion) {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004272 if (t->type >= TOK_SMAC_PARAM) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004273 Token *pcopy = tline, **ptail = &pcopy;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004274 Token *ttt, *pt;
4275 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004276
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004277 ttt = params[t->type - TOK_SMAC_PARAM];
4278 i = paramsize[t->type - TOK_SMAC_PARAM];
4279 while (--i >= 0) {
4280 pt = *ptail = new_Token(tline, ttt->type,
4281 ttt->text, 0);
4282 ptail = &pt->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004283 ttt = ttt->next;
4284 }
4285 tline = pcopy;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004286 } else if (t->type == TOK_PREPROC_Q) {
4287 tt = new_Token(tline, TOK_ID, mname, 0);
4288 tline = tt;
4289 } else if (t->type == TOK_PREPROC_QQ) {
4290 tt = new_Token(tline, TOK_ID, m->name, 0);
4291 tline = tt;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004292 } else {
4293 tt = new_Token(tline, t->type, t->text, 0);
4294 tline = tt;
4295 }
4296 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004297
H. Peter Anvine2c80182005-01-15 22:15:51 +00004298 /*
4299 * Having done that, get rid of the macro call, and clean
4300 * up the parameters.
4301 */
4302 nasm_free(params);
4303 nasm_free(paramsize);
4304 free_tlist(mstart);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004305 expanded = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004306 continue; /* main token loop */
4307 }
4308 }
4309 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004310
H. Peter Anvine2c80182005-01-15 22:15:51 +00004311 if (tline->type == TOK_SMAC_END) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004312 tline->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004313 tline = delete_Token(tline);
4314 } else {
4315 t = *tail = tline;
4316 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004317 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004318 t->next = NULL;
4319 tail = &t->next;
4320 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004321 }
4322
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004323 /*
4324 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00004325 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004326 * TOK_IDs should be concatenated.
4327 * Also we look for %+ tokens and concatenate the tokens before and after
4328 * them (without white spaces in between).
4329 */
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004330 if (expanded) {
Cyrill Gorcunovc6a742c2011-06-27 01:23:09 +04004331 const struct tokseq_match t[] = {
4332 {
4333 PP_CONCAT_MASK(TOK_ID) |
4334 PP_CONCAT_MASK(TOK_PREPROC_ID), /* head */
4335 PP_CONCAT_MASK(TOK_ID) |
4336 PP_CONCAT_MASK(TOK_PREPROC_ID) |
4337 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4338 }
4339 };
4340 if (paste_tokens(&thead, t, ARRAY_SIZE(t), true)) {
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004341 /*
4342 * If we concatenated something, *and* we had previously expanded
4343 * an actual macro, scan the lines again for macros...
4344 */
4345 tline = thead;
4346 expanded = false;
4347 goto again;
4348 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004349 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004350
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004351err:
H. Peter Anvine2c80182005-01-15 22:15:51 +00004352 if (org_tline) {
4353 if (thead) {
4354 *org_tline = *thead;
4355 /* since we just gave text to org_line, don't free it */
4356 thead->text = NULL;
4357 delete_Token(thead);
4358 } else {
4359 /* the expression expanded to empty line;
4360 we can't return NULL for some reasons
4361 we just set the line to a single WHITESPACE token. */
4362 memset(org_tline, 0, sizeof(*org_tline));
4363 org_tline->text = NULL;
4364 org_tline->type = TOK_WHITESPACE;
4365 }
4366 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004367 }
4368
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004369 return thead;
4370}
4371
4372/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004373 * Similar to expand_smacro but used exclusively with macro identifiers
4374 * right before they are fetched in. The reason is that there can be
4375 * identifiers consisting of several subparts. We consider that if there
4376 * are more than one element forming the name, user wants a expansion,
4377 * otherwise it will be left as-is. Example:
4378 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004379 * %define %$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004380 *
4381 * the identifier %$abc will be left as-is so that the handler for %define
4382 * will suck it and define the corresponding value. Other case:
4383 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004384 * %define _%$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004385 *
4386 * In this case user wants name to be expanded *before* %define starts
4387 * working, so we'll expand %$abc into something (if it has a value;
4388 * otherwise it will be left as-is) then concatenate all successive
4389 * PP_IDs into one.
4390 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004391static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004392{
4393 Token *cur, *oldnext = NULL;
4394
H. Peter Anvin734b1882002-04-30 21:01:08 +00004395 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004396 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004397
4398 cur = tline;
4399 while (cur->next &&
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004400 (cur->next->type == TOK_ID ||
4401 cur->next->type == TOK_PREPROC_ID
4402 || cur->next->type == TOK_NUMBER))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004403 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004404
4405 /* If identifier consists of just one token, don't expand */
4406 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004407 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004408
H. Peter Anvine2c80182005-01-15 22:15:51 +00004409 if (cur) {
4410 oldnext = cur->next; /* Detach the tail past identifier */
4411 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004412 }
4413
H. Peter Anvin734b1882002-04-30 21:01:08 +00004414 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004415
H. Peter Anvine2c80182005-01-15 22:15:51 +00004416 if (cur) {
4417 /* expand_smacro possibly changhed tline; re-scan for EOL */
4418 cur = tline;
4419 while (cur && cur->next)
4420 cur = cur->next;
4421 if (cur)
4422 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004423 }
4424
4425 return tline;
4426}
4427
4428/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004429 * Determine whether the given line constitutes a multi-line macro
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004430 * call, and return the MMacro structure called if so. Doesn't have
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004431 * to check for an initial label - that's taken care of in
4432 * expand_mmacro - but must check numbers of parameters. Guaranteed
4433 * to be called with tline->type == TOK_ID, so the putative macro
4434 * name is easy to find.
4435 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004436static MMacro *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004437{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004438 MMacro *head, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004439 Token **params;
4440 int nparam;
4441
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004442 head = (MMacro *) hash_findix(&mmacros, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004443
4444 /*
4445 * Efficiency: first we see if any macro exists with the given
4446 * name. If not, we can return NULL immediately. _Then_ we
4447 * count the parameters, and then we look further along the
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004448 * list if necessary to find the proper MMacro.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004449 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004450 list_for_each(m, head)
4451 if (!mstrcmp(m->name, tline->text, m->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004452 break;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004453 if (!m)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004454 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004455
4456 /*
4457 * OK, we have a potential macro. Count and demarcate the
4458 * parameters.
4459 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00004460 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004461
4462 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004463 * So we know how many parameters we've got. Find the MMacro
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004464 * structure that handles this number.
4465 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004466 while (m) {
4467 if (m->nparam_min <= nparam
4468 && (m->plus || nparam <= m->nparam_max)) {
4469 /*
4470 * This one is right. Just check if cycle removal
4471 * prohibits us using it before we actually celebrate...
4472 */
4473 if (m->in_progress > m->max_depth) {
4474 if (m->max_depth > 0) {
4475 error(ERR_WARNING,
4476 "reached maximum recursion depth of %i",
4477 m->max_depth);
4478 }
4479 nasm_free(params);
4480 return NULL;
4481 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004482 /*
4483 * It's right, and we can use it. Add its default
4484 * parameters to the end of our list if necessary.
4485 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004486 if (m->defaults && nparam < m->nparam_min + m->ndefs) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004487 params =
4488 nasm_realloc(params,
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004489 ((m->nparam_min + m->ndefs +
H. Peter Anvine2c80182005-01-15 22:15:51 +00004490 1) * sizeof(*params)));
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004491 while (nparam < m->nparam_min + m->ndefs) {
4492 params[nparam] = m->defaults[nparam - m->nparam_min];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004493 nparam++;
4494 }
4495 }
4496 /*
4497 * If we've gone over the maximum parameter count (and
4498 * we're in Plus mode), ignore parameters beyond
4499 * nparam_max.
4500 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004501 if (m->plus && nparam > m->nparam_max)
4502 nparam = m->nparam_max;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004503 /*
4504 * Then terminate the parameter list, and leave.
4505 */
4506 if (!params) { /* need this special case */
4507 params = nasm_malloc(sizeof(*params));
4508 nparam = 0;
4509 }
4510 params[nparam] = NULL;
4511 *params_array = params;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004512 return m;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004513 }
4514 /*
4515 * This one wasn't right: look for the next one with the
4516 * same name.
4517 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004518 list_for_each(m, m->next)
4519 if (!mstrcmp(m->name, tline->text, m->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004520 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004521 }
4522
4523 /*
4524 * After all that, we didn't find one with the right number of
4525 * parameters. Issue a warning, and fail to expand the macro.
4526 */
H. Peter Anvin917a3492008-09-24 09:14:49 -07004527 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004528 "macro `%s' exists, but not taking %d parameters",
4529 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004530 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004531 return NULL;
4532}
4533
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004534
4535/*
4536 * Save MMacro invocation specific fields in
4537 * preparation for a recursive macro expansion
4538 */
4539static void push_mmacro(MMacro *m)
4540{
4541 MMacroInvocation *i;
4542
4543 i = nasm_malloc(sizeof(MMacroInvocation));
4544 i->prev = m->prev;
4545 i->params = m->params;
4546 i->iline = m->iline;
4547 i->nparam = m->nparam;
4548 i->rotate = m->rotate;
4549 i->paramlen = m->paramlen;
4550 i->unique = m->unique;
4551 i->condcnt = m->condcnt;
4552 m->prev = i;
4553}
4554
4555
4556/*
4557 * Restore MMacro invocation specific fields that were
4558 * saved during a previous recursive macro expansion
4559 */
4560static void pop_mmacro(MMacro *m)
4561{
4562 MMacroInvocation *i;
4563
4564 if (m->prev) {
4565 i = m->prev;
4566 m->prev = i->prev;
4567 m->params = i->params;
4568 m->iline = i->iline;
4569 m->nparam = i->nparam;
4570 m->rotate = i->rotate;
4571 m->paramlen = i->paramlen;
4572 m->unique = i->unique;
4573 m->condcnt = i->condcnt;
4574 nasm_free(i);
4575 }
4576}
4577
4578
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004579/*
4580 * Expand the multi-line macro call made by the given line, if
4581 * there is one to be expanded. If there is, push the expansion on
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004582 * istk->expansion and return 1. Otherwise return 0.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004583 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004584static int expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004585{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004586 Token *startline = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004587 Token *label = NULL;
4588 int dont_prepend = 0;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004589 Token **params, *t, *tt;
4590 MMacro *m;
4591 Line *l, *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004592 int i, nparam, *paramlen;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004593 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004594
4595 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004596 skip_white_(t);
H. Peter Anvince2233b2008-05-25 21:57:00 -07004597 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00004598 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004599 return 0;
4600 m = is_mmacro(t, &params);
4601 if (m) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004602 mname = t->text;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004603 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004604 Token *last;
4605 /*
4606 * We have an id which isn't a macro call. We'll assume
4607 * it might be a label; we'll also check to see if a
4608 * colon follows it. Then, if there's another id after
4609 * that lot, we'll check it again for macro-hood.
4610 */
4611 label = last = t;
4612 t = t->next;
4613 if (tok_type_(t, TOK_WHITESPACE))
4614 last = t, t = t->next;
4615 if (tok_is_(t, ":")) {
4616 dont_prepend = 1;
4617 last = t, t = t->next;
4618 if (tok_type_(t, TOK_WHITESPACE))
4619 last = t, t = t->next;
4620 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004621 if (!tok_type_(t, TOK_ID) || !(m = is_mmacro(t, &params)))
4622 return 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004623 last->next = NULL;
Keith Kanios891775e2009-07-11 06:08:54 -05004624 mname = t->text;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004625 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004626 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004627
4628 /*
4629 * Fix up the parameters: this involves stripping leading and
4630 * trailing whitespace, then stripping braces if they are
4631 * present.
4632 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004633 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004634 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004635
H. Peter Anvine2c80182005-01-15 22:15:51 +00004636 for (i = 0; params[i]; i++) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004637 int brace = false;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004638 int comma = (!m->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004639
H. Peter Anvine2c80182005-01-15 22:15:51 +00004640 t = params[i];
4641 skip_white_(t);
4642 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004643 t = t->next, brace = true, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004644 params[i] = t;
4645 paramlen[i] = 0;
4646 while (t) {
4647 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
4648 break; /* ... because we have hit a comma */
4649 if (comma && t->type == TOK_WHITESPACE
4650 && tok_is_(t->next, ","))
4651 break; /* ... or a space then a comma */
4652 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
4653 break; /* ... or a brace */
4654 t = t->next;
4655 paramlen[i]++;
4656 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004657 }
4658
4659 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004660 * OK, we have a MMacro structure together with a set of
4661 * parameters. We must now go through the expansion and push
4662 * copies of each Line on to istk->expansion. Substitution of
H. Peter Anvin76690a12002-04-30 20:52:49 +00004663 * parameter tokens and macro-local tokens doesn't get done
4664 * until the single-line macro substitution process; this is
4665 * because delaying them allows us to change the semantics
4666 * later through %rotate.
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004667 *
4668 * First, push an end marker on to istk->expansion, mark this
4669 * macro as in progress, and set up its invocation-specific
4670 * variables.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004671 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004672 ll = nasm_malloc(sizeof(Line));
4673 ll->next = istk->expansion;
4674 ll->finishes = m;
4675 ll->first = NULL;
4676 istk->expansion = ll;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004677
4678 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004679 * Save the previous MMacro expansion in the case of
4680 * macro recursion
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004681 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004682 if (m->max_depth && m->in_progress)
4683 push_mmacro(m);
4684
4685 m->in_progress ++;
4686 m->params = params;
4687 m->iline = tline;
4688 m->nparam = nparam;
4689 m->rotate = 0;
4690 m->paramlen = paramlen;
4691 m->unique = unique++;
4692 m->lineno = 0;
4693 m->condcnt = 0;
4694
4695 m->next_active = istk->mstk;
4696 istk->mstk = m;
4697
4698 list_for_each(l, m->expansion) {
4699 Token **tail;
4700
4701 ll = nasm_malloc(sizeof(Line));
4702 ll->finishes = NULL;
4703 ll->next = istk->expansion;
4704 istk->expansion = ll;
4705 tail = &ll->first;
4706
4707 list_for_each(t, l->first) {
4708 Token *x = t;
4709 switch (t->type) {
4710 case TOK_PREPROC_Q:
4711 tt = *tail = new_Token(NULL, TOK_ID, mname, 0);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004712 break;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004713 case TOK_PREPROC_QQ:
4714 tt = *tail = new_Token(NULL, TOK_ID, m->name, 0);
4715 break;
4716 case TOK_PREPROC_ID:
4717 if (t->text[1] == '0' && t->text[2] == '0') {
4718 dont_prepend = -1;
4719 x = label;
4720 if (!x)
4721 continue;
4722 }
4723 /* fall through */
4724 default:
4725 tt = *tail = new_Token(NULL, x->type, x->text, 0);
4726 break;
4727 }
4728 tail = &tt->next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004729 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004730 *tail = NULL;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004731 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004732
4733 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00004734 * If we had a label, push it on as the first line of
4735 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004736 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004737 if (label) {
4738 if (dont_prepend < 0)
4739 free_tlist(startline);
4740 else {
4741 ll = nasm_malloc(sizeof(Line));
4742 ll->finishes = NULL;
4743 ll->next = istk->expansion;
4744 istk->expansion = ll;
4745 ll->first = startline;
4746 if (!dont_prepend) {
4747 while (label->next)
4748 label = label->next;
4749 label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004750 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004751 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004752 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004753
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004754 list->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004755
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004756 return 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004757}
4758
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004759/* The function that actually does the error reporting */
4760static void verror(int severity, const char *fmt, va_list arg)
4761{
4762 char buff[1024];
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004763 MMacro *mmac = NULL;
4764 int delta = 0;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004765
4766 vsnprintf(buff, sizeof(buff), fmt, arg);
4767
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004768 /* get %macro name */
4769 if (istk && istk->mstk) {
4770 mmac = istk->mstk;
4771 /* but %rep blocks should be skipped */
4772 while (mmac && !mmac->name)
4773 mmac = mmac->next_active, delta++;
Cyrill Gorcunov9900c6b2011-10-09 18:58:46 +04004774 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004775
4776 if (mmac)
4777 nasm_error(severity, "(%s:%d) %s",
4778 mmac->name, mmac->lineno - delta, buff);
4779 else
4780 nasm_error(severity, "%s", buff);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004781}
4782
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004783/*
4784 * Since preprocessor always operate only on the line that didn't
H. Peter Anvin917a3492008-09-24 09:14:49 -07004785 * arrived yet, we should always use ERR_OFFBY1.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004786 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004787static void error(int severity, const char *fmt, ...)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004788{
4789 va_list arg;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004790
4791 /* If we're in a dead branch of IF or something like it, ignore the error */
4792 if (istk && istk->conds && !emitting(istk->conds->state))
4793 return;
4794
H. Peter Anvin734b1882002-04-30 21:01:08 +00004795 va_start(arg, fmt);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004796 verror(severity, fmt, arg);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004797 va_end(arg);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004798}
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004799
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004800/*
4801 * Because %else etc are evaluated in the state context
4802 * of the previous branch, errors might get lost with error():
4803 * %if 0 ... %else trailing garbage ... %endif
4804 * So %else etc should report errors with this function.
4805 */
4806static void error_precond(int severity, const char *fmt, ...)
4807{
4808 va_list arg;
4809
4810 /* Only ignore the error if it's really in a dead branch */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004811 if (istk && istk->conds && istk->conds->state == COND_NEVER)
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004812 return;
4813
4814 va_start(arg, fmt);
4815 verror(severity, fmt, arg);
4816 va_end(arg);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004817}
4818
H. Peter Anvin734b1882002-04-30 21:01:08 +00004819static void
H. Peter Anvindbb640b2009-07-18 18:57:16 -07004820pp_reset(char *file, int apass, ListGen * listgen, StrList **deplist)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004821{
H. Peter Anvin7383b402008-09-24 10:20:40 -07004822 Token *t;
4823
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004824 cstk = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004825 istk = nasm_malloc(sizeof(Include));
4826 istk->next = NULL;
4827 istk->conds = NULL;
4828 istk->expansion = NULL;
4829 istk->mstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004830 istk->fp = fopen(file, "r");
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004831 istk->fname = NULL;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004832 src_set_fname(nasm_strdup(file));
4833 src_set_linnum(0);
4834 istk->lineinc = 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004835 if (!istk->fp)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004836 error(ERR_FATAL|ERR_NOFILE, "unable to open input file `%s'",
H. Peter Anvine2c80182005-01-15 22:15:51 +00004837 file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004838 defining = NULL;
Charles Crayned4200be2008-07-12 16:42:33 -07004839 nested_mac_count = 0;
4840 nested_rep_count = 0;
H. Peter Anvin97a23472007-09-16 17:57:25 -07004841 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004842 unique = 0;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004843 if (tasm_compatible_mode) {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004844 stdmacpos = nasm_stdmac;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004845 } else {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004846 stdmacpos = nasm_stdmac_after_tasm;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004847 }
H. Peter Anvind2456592008-06-19 15:04:18 -07004848 any_extrastdmac = extrastdmac && *extrastdmac;
4849 do_predef = true;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004850 list = listgen;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004851
4852 /*
4853 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4854 * The caller, however, will also pass in 3 for preprocess-only so
4855 * we can set __PASS__ accordingly.
4856 */
4857 pass = apass > 2 ? 2 : apass;
4858
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004859 dephead = deptail = deplist;
4860 if (deplist) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004861 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
4862 sl->next = NULL;
4863 strcpy(sl->str, file);
4864 *deptail = sl;
4865 deptail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004866 }
H. Peter Anvin7383b402008-09-24 10:20:40 -07004867
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004868 /*
4869 * Define the __PASS__ macro. This is defined here unlike
4870 * all the other builtins, because it is special -- it varies between
4871 * passes.
4872 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004873 t = nasm_malloc(sizeof(*t));
4874 t->next = NULL;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004875 make_tok_num(t, apass);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004876 t->a.mac = NULL;
H. Peter Anvin7383b402008-09-24 10:20:40 -07004877 define_smacro(NULL, "__PASS__", true, 0, t);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004878}
4879
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004880static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004881{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004882 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004883 Token *tline;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004884
H. Peter Anvine2c80182005-01-15 22:15:51 +00004885 while (1) {
4886 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004887 * Fetch a tokenized line, either from the macro-expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00004888 * buffer or from the input file.
4889 */
4890 tline = NULL;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004891 while (istk->expansion && istk->expansion->finishes) {
4892 Line *l = istk->expansion;
4893 if (!l->finishes->name && l->finishes->in_progress > 1) {
4894 Line *ll;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004895
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004896 /*
4897 * This is a macro-end marker for a macro with no
4898 * name, which means it's not really a macro at all
4899 * but a %rep block, and the `in_progress' field is
4900 * more than 1, meaning that we still need to
4901 * repeat. (1 means the natural last repetition; 0
4902 * means termination by %exitrep.) We have
4903 * therefore expanded up to the %endrep, and must
4904 * push the whole block on to the expansion buffer
4905 * again. We don't bother to remove the macro-end
4906 * marker: we'd only have to generate another one
4907 * if we did.
4908 */
4909 l->finishes->in_progress--;
4910 list_for_each(l, l->finishes->expansion) {
4911 Token *t, *tt, **tail;
4912
4913 ll = nasm_malloc(sizeof(Line));
4914 ll->next = istk->expansion;
4915 ll->finishes = NULL;
4916 ll->first = NULL;
4917 tail = &ll->first;
4918
4919 list_for_each(t, l->first) {
4920 if (t->text || t->type == TOK_WHITESPACE) {
4921 tt = *tail = new_Token(NULL, t->type, t->text, 0);
4922 tail = &tt->next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004923 }
4924 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004925
4926 istk->expansion = ll;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004927 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004928 } else {
4929 /*
4930 * Check whether a `%rep' was started and not ended
4931 * within this macro expansion. This can happen and
4932 * should be detected. It's a fatal error because
4933 * I'm too confused to work out how to recover
4934 * sensibly from it.
4935 */
4936 if (defining) {
4937 if (defining->name)
4938 error(ERR_PANIC,
4939 "defining with name in expansion");
4940 else if (istk->mstk->name)
4941 error(ERR_FATAL,
4942 "`%%rep' without `%%endrep' within"
4943 " expansion of macro `%s'",
4944 istk->mstk->name);
4945 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004946
H. Peter Anvin36206cd2012-03-03 16:14:51 -08004947 /*
4948 * FIXME: investigate the relationship at this point between
4949 * istk->mstk and l->finishes
4950 */
4951 {
4952 MMacro *m = istk->mstk;
4953 istk->mstk = m->next_active;
4954 if (m->name) {
4955 /*
4956 * This was a real macro call, not a %rep, and
4957 * therefore the parameter information needs to
4958 * be freed.
4959 */
4960 if (m->prev) {
4961 pop_mmacro(m);
4962 l->finishes->in_progress --;
4963 } else {
4964 nasm_free(m->params);
4965 free_tlist(m->iline);
4966 nasm_free(m->paramlen);
4967 l->finishes->in_progress = 0;
4968 }
4969 } else
4970 free_mmacro(m);
4971 }
4972 istk->expansion = l->next;
4973 nasm_free(l);
4974 list->downlevel(LIST_MACRO);
4975 }
4976 }
4977 while (1) { /* until we get a line we can use */
4978
4979 if (istk->expansion) { /* from a macro expansion */
4980 char *p;
4981 Line *l = istk->expansion;
4982 if (istk->mstk)
4983 istk->mstk->lineno++;
4984 tline = l->first;
4985 istk->expansion = l->next;
4986 nasm_free(l);
4987 p = detoken(tline, false);
4988 list->line(LIST_MACRO, p);
4989 nasm_free(p);
4990 break;
4991 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004992 line = read_line();
4993 if (line) { /* from the current input file */
4994 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004995 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004996 nasm_free(line);
4997 break;
4998 }
4999 /*
5000 * The current file has ended; work down the istk
5001 */
5002 {
5003 Include *i = istk;
5004 fclose(i->fp);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005005 if (i->conds) {
5006 /* nasm_error can't be conditionally suppressed */
5007 nasm_error(ERR_FATAL,
5008 "expected `%%endif' before end of file");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005009 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005010 /* only set line and file name if there's a next node */
5011 if (i->next) {
5012 src_set_linnum(i->lineno);
Cyrill Gorcunovd34a1082011-03-07 11:23:08 +03005013 nasm_free(src_set_fname(nasm_strdup(i->fname)));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005014 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005015 istk = i->next;
5016 list->downlevel(LIST_INCLUDE);
5017 nasm_free(i);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005018 if (!istk)
5019 return NULL;
5020 if (istk->expansion && istk->expansion->finishes)
5021 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005022 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005023 }
5024
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005025 /*
5026 * We must expand MMacro parameters and MMacro-local labels
5027 * _before_ we plunge into directive processing, to cope
5028 * with things like `%define something %1' such as STRUC
5029 * uses. Unless we're _defining_ a MMacro, in which case
5030 * those tokens should be left alone to go into the
5031 * definition; and unless we're in a non-emitting
5032 * condition, in which case we don't want to meddle with
5033 * anything.
5034 */
5035 if (!defining && !(istk->conds && !emitting(istk->conds->state))
5036 && !(istk->mstk && !istk->mstk->in_progress)) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005037 tline = expand_mmac_params(tline);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005038 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005039
H. Peter Anvine2c80182005-01-15 22:15:51 +00005040 /*
5041 * Check the line to see if it's a preprocessor directive.
5042 */
5043 if (do_directive(tline) == DIRECTIVE_FOUND) {
5044 continue;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005045 } else if (defining) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005046 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005047 * We're defining a multi-line macro. We emit nothing
5048 * at all, and just
5049 * shove the tokenized line on to the macro definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005050 */
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005051 Line *l = nasm_malloc(sizeof(Line));
5052 l->next = defining->expansion;
5053 l->first = tline;
5054 l->finishes = NULL;
5055 defining->expansion = l;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005056 continue;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005057 } else if (istk->conds && !emitting(istk->conds->state)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005058 /*
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005059 * We're in a non-emitting branch of a condition block.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005060 * Emit nothing at all, not even a blank line: when we
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005061 * emerge from the condition we'll give a line-number
H. Peter Anvine2c80182005-01-15 22:15:51 +00005062 * directive so we keep our place correctly.
5063 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005064 free_tlist(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005065 continue;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005066 } else if (istk->mstk && !istk->mstk->in_progress) {
5067 /*
5068 * We're in a %rep block which has been terminated, so
5069 * we're walking through to the %endrep without
5070 * emitting anything. Emit nothing at all, not even a
5071 * blank line: when we emerge from the %rep block we'll
5072 * give a line-number directive so we keep our place
5073 * correctly.
5074 */
5075 free_tlist(tline);
5076 continue;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005077 } else {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005078 tline = expand_smacro(tline);
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005079 if (!expand_mmacro(tline)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005080 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00005081 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005082 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005083 line = detoken(tline, true);
5084 free_tlist(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005085 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005086 } else {
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005087 continue; /* expand_mmacro calls free_tlist */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005088 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005089 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005090 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005091
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005092 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005093}
5094
H. Peter Anvine2c80182005-01-15 22:15:51 +00005095static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005096{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005097 if (defining) {
5098 if (defining->name) {
5099 error(ERR_NONFATAL,
5100 "end of file while still defining macro `%s'",
5101 defining->name);
5102 } else {
5103 error(ERR_NONFATAL, "end of file while still in %%rep");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005104 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005105
5106 free_mmacro(defining);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005107 defining = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005108 }
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005109 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005110 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07005111 free_macros();
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005112 while (istk) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005113 Include *i = istk;
5114 istk = istk->next;
5115 fclose(i->fp);
5116 nasm_free(i->fname);
Cyrill Gorcunov8dcfd882011-03-03 09:18:56 +03005117 nasm_free(i);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005118 }
5119 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005120 ctx_pop();
H. Peter Anvin86877b22008-06-20 15:55:45 -07005121 nasm_free(src_set_fname(NULL));
H. Peter Anvine2c80182005-01-15 22:15:51 +00005122 if (pass == 0) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005123 IncPath *i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005124 free_llist(predef);
5125 delete_Blocks();
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005126 while ((i = ipath)) {
5127 ipath = i->next;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005128 if (i->path)
5129 nasm_free(i->path);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005130 nasm_free(i);
5131 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07005132 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005133}
5134
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005135static void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005136{
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005137 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07005138
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005139 i = nasm_malloc(sizeof(IncPath));
5140 i->path = path ? nasm_strdup(path) : NULL;
5141 i->next = NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005142
H. Peter Anvin89cee572009-07-15 09:16:54 -04005143 if (ipath) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005144 IncPath *j = ipath;
H. Peter Anvin89cee572009-07-15 09:16:54 -04005145 while (j->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005146 j = j->next;
5147 j->next = i;
5148 } else {
5149 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005150 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005151}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005152
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005153static void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005154{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005155 Token *inc, *space, *name;
5156 Line *l;
5157
H. Peter Anvin734b1882002-04-30 21:01:08 +00005158 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
5159 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
5160 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005161
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005162 l = nasm_malloc(sizeof(Line));
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005163 l->next = predef;
5164 l->first = inc;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005165 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005166 predef = l;
5167}
5168
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005169static void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005170{
5171 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005172 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005173 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005174
5175 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00005176 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5177 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005178 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005179 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00005180 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005181 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005182 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005183
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005184 l = nasm_malloc(sizeof(Line));
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005185 l->next = predef;
5186 l->first = def;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005187 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005188 predef = l;
5189}
5190
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005191static void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00005192{
5193 Token *def, *space;
5194 Line *l;
5195
H. Peter Anvin734b1882002-04-30 21:01:08 +00005196 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5197 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00005198 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00005199
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005200 l = nasm_malloc(sizeof(Line));
H. Peter Anvin620515a2002-04-30 20:57:38 +00005201 l->next = predef;
5202 l->first = def;
H. Peter Anvin36206cd2012-03-03 16:14:51 -08005203 l->finishes = NULL;
H. Peter Anvin620515a2002-04-30 20:57:38 +00005204 predef = l;
5205}
5206
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005207static void pp_extra_stdmac(macros_t *macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005208{
H. Peter Anvin76690a12002-04-30 20:52:49 +00005209 extrastdmac = macros;
5210}
5211
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005212static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005213{
Cyrill Gorcunovce652742013-05-06 23:43:43 +04005214 char numbuf[32];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005215 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00005216 tok->text = nasm_strdup(numbuf);
5217 tok->type = TOK_NUMBER;
5218}
5219
Cyrill Gorcunov86b2ad02011-07-01 10:38:25 +04005220struct preproc_ops nasmpp = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005221 pp_reset,
5222 pp_getline,
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +04005223 pp_cleanup,
5224 pp_extra_stdmac,
5225 pp_pre_define,
5226 pp_pre_undefine,
5227 pp_pre_include,
5228 pp_include_path
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005229};