blob: 1a1905a4298023549e5166f77b44b5de44dcb639 [file] [log] [blame]
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07001/* ----------------------------------------------------------------------- *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002 *
3 * Copyright 1996-2010 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;
85typedef struct MMacro MMacro;
Keith Kanios891775e2009-07-11 06:08:54 -050086typedef 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;
92typedef 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 Anvind7ed89e2002-04-30 20:52:08 +0000108 SMacro *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000109 char *name;
H. Peter Anvin70055962007-10-11 00:05:31 -0700110 bool casesense;
H. Peter Anvin16ed4382007-10-11 10:06:19 -0700111 bool in_progress;
H. Peter Anvin70055962007-10-11 00:05:31 -0700112 unsigned int nparam;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000113 Token *expansion;
114};
115
116/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000117 * 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.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000132 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000133struct MMacro {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000134 MMacro *next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300135 MMacroInvocation *prev; /* previous invocation */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000136 char *name;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -0700137 int nparam_min, nparam_max;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700138 bool casesense;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300139 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 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000143 Token *dlist; /* All defaults as one list */
144 Token **defaults; /* Parameter default pointers */
145 int ndefs; /* number of default parameters */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000146 Line *expansion;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000147
148 MMacro *next_active;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000149 MMacro *rep_nest; /* used for nesting %rep */
150 Token **params; /* actual parameters */
151 Token *iline; /* invocation line */
H. Peter Anvin25a99342007-09-22 17:45:45 -0700152 unsigned int nparam, rotate;
153 int *paramlen;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700154 uint64_t unique;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000155 int lineno; /* Current line number on expansion */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300156 uint64_t condcnt; /* number of if blocks... */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000157};
158
Keith Kanios891775e2009-07-11 06:08:54 -0500159
160/* Store the definition of a multi-line macro, as defined in a
161 * previous recursive macro expansion.
162 */
163struct MMacroInvocation {
H. Peter Anvin89cee572009-07-15 09:16:54 -0400164 MMacroInvocation *prev; /* previous invocation */
165 Token **params; /* actual parameters */
166 Token *iline; /* invocation line */
Keith Kanios891775e2009-07-11 06:08:54 -0500167 unsigned int nparam, rotate;
168 int *paramlen;
169 uint64_t unique;
Keith Kanios3c0d91f2009-10-25 13:28:03 -0500170 uint64_t condcnt;
Keith Kanios891775e2009-07-11 06:08:54 -0500171};
172
173
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000174/*
175 * The context stack is composed of a linked list of these.
176 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000177struct Context {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000178 Context *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000179 char *name;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700180 struct hash_table localmac;
Keith Kaniosb7a89542007-04-12 02:40:54 +0000181 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 {
204 TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID,
205 TOK_PREPROC_ID, TOK_STRING,
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700206 TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER,
207 TOK_INTERNAL_STRING,
208 TOK_PREPROC_Q, TOK_PREPROC_QQ,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300209 TOK_PASTE, /* %+ */
210 TOK_INDIRECT, /* %[...] */
211 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
212 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000213};
214
H. Peter Anvine2c80182005-01-15 22:15:51 +0000215struct Token {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000216 Token *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000217 char *text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -0700218 union {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300219 SMacro *mac; /* associated macro for TOK_SMAC_END */
220 size_t len; /* scratch length field */
221 } a; /* Auxiliary data */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000222 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000223};
224
225/*
226 * Multi-line macro definitions are stored as a linked list of
227 * these, which is essentially a container to allow several linked
228 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700229 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000230 * Note that in this module, linked lists are treated as stacks
231 * wherever possible. For this reason, Lines are _pushed_ on to the
232 * `expansion' field in MMacro structures, so that the linked list,
233 * if walked, would give the macro lines in reverse order; this
234 * means that we can walk the list when expanding a macro, and thus
235 * push the lines on to the `expansion' field in _istk_ in reverse
236 * order (so that when popped back off they are in the right
237 * order). It may seem cockeyed, and it relies on my design having
238 * an even number of steps in, but it works...
239 *
240 * Some of these structures, rather than being actual lines, are
241 * markers delimiting the end of the expansion of a given macro.
H. Peter Anvin76690a12002-04-30 20:52:49 +0000242 * This is for use in the cycle-tracking and %rep-handling code.
243 * Such structures have `finishes' non-NULL, and `first' NULL. All
244 * others have `finishes' NULL, but `first' may still be NULL if
245 * the line is blank.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000246 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000247struct Line {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000248 Line *next;
249 MMacro *finishes;
250 Token *first;
251};
252
253/*
254 * To handle an arbitrary level of file inclusion, we maintain a
255 * stack (ie linked list) of these things.
256 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000257struct Include {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000258 Include *next;
259 FILE *fp;
260 Cond *conds;
261 Line *expansion;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000262 char *fname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000263 int lineno, lineinc;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300264 MMacro *mstk; /* stack of active macros/reps */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000265};
266
267/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000268 * Include search path. This is simply a list of strings which get
269 * prepended, in turn, to the name of an include file, in an
270 * attempt to find the file if it's not in the current directory.
271 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000272struct IncPath {
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000273 IncPath *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000274 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000275};
276
277/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000278 * Conditional assembly: we maintain a separate stack of these for
279 * each level of file inclusion. (The only reason we keep the
280 * stacks separate is to ensure that a stray `%endif' in a file
281 * included from within the true branch of a `%if' won't terminate
282 * it and cause confusion: instead, rightly, it'll cause an error.)
283 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000284struct Cond {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000285 Cond *next;
286 int state;
287};
H. Peter Anvine2c80182005-01-15 22:15:51 +0000288enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000289 /*
290 * These states are for use just after %if or %elif: IF_TRUE
291 * means the condition has evaluated to truth so we are
292 * currently emitting, whereas IF_FALSE means we are not
293 * currently emitting but will start doing so if a %else comes
294 * up. In these states, all directives are admissible: %elif,
295 * %else and %endif. (And of course %if.)
296 */
297 COND_IF_TRUE, COND_IF_FALSE,
298 /*
299 * These states come up after a %else: ELSE_TRUE means we're
300 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
301 * any %elif or %else will cause an error.
302 */
303 COND_ELSE_TRUE, COND_ELSE_FALSE,
304 /*
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200305 * These states mean that we're not emitting now, and also that
306 * nothing until %endif will be emitted at all. COND_DONE is
307 * used when we've had our moment of emission
308 * and have now started seeing %elifs. COND_NEVER is used when
309 * the condition construct in question is contained within a
310 * non-emitting branch of a larger condition construct,
311 * or if there is an error.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000312 */
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200313 COND_DONE, COND_NEVER
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000314};
315#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
316
H. Peter Anvin70653092007-10-19 14:42:29 -0700317/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000318 * These defines are used as the possible return values for do_directive
319 */
320#define NO_DIRECTIVE_FOUND 0
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300321#define DIRECTIVE_FOUND 1
Ed Beroset3ab3f412002-06-11 03:31:49 +0000322
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000323/*
Keith Kanios852f1ee2009-07-12 00:19:55 -0500324 * This define sets the upper limit for smacro and recursive mmacro
325 * expansions
326 */
327#define DEADMAN_LIMIT (1 << 20)
328
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +0400329/* max reps */
330#define REP_LIMIT ((INT64_C(1) << 62))
331
Keith Kanios852f1ee2009-07-12 00:19:55 -0500332/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000333 * Condition codes. Note that we use c_ prefix not C_ because C_ is
334 * used in nasm.h for the "real" condition codes. At _this_ level,
335 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
336 * ones, so we need a different enum...
337 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700338static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000339 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
340 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000341 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000342};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700343enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000344 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
345 c_NA, c_NAE, c_NB, c_NBE, c_NC, c_NE, c_NG, c_NGE, c_NL, c_NLE, c_NO,
H. Peter Anvin476d2862007-10-02 22:04:15 -0700346 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
347 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000348};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700349static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000350 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
351 c_A, c_AE, c_B, c_BE, c_C, c_E, c_G, c_GE, c_L, c_LE, c_O, c_P, c_S,
H. Peter Anvince9be342007-09-12 00:22:29 +0000352 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000353};
354
H. Peter Anvin76690a12002-04-30 20:52:49 +0000355/*
356 * Directive names.
357 */
H. Peter Anvin65747262002-05-07 00:10:05 +0000358/* If this is a an IF, ELIF, ELSE or ENDIF keyword */
H. Peter Anvin9bf0aa72007-09-12 02:12:07 +0000359static int is_condition(enum preproc_token arg)
H. Peter Anvin65747262002-05-07 00:10:05 +0000360{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000361 return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF);
H. Peter Anvin65747262002-05-07 00:10:05 +0000362}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000363
364/* For TASM compatibility we need to be able to recognise TASM compatible
365 * conditional compilation directives. Using the NASM pre-processor does
366 * not work, so we look for them specifically from the following list and
367 * then jam in the equivalent NASM directive into the input stream.
368 */
369
H. Peter Anvine2c80182005-01-15 22:15:51 +0000370enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000371 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
372 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
373};
374
H. Peter Anvin476d2862007-10-02 22:04:15 -0700375static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000376 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
377 "ifndef", "include", "local"
378};
379
380static int StackSize = 4;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000381static char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000382static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800383static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000384
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000385static Context *cstk;
386static Include *istk;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000387static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000388
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300389static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700390static StrList **dephead, **deptail; /* Dependency list */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000391
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300392static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000393
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000394static Line *predef = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700395static bool do_predef;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000396
397static ListGen *list;
398
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000399/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000400 * The current set of multi-line macros we have defined.
401 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700402static struct hash_table mmacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000403
404/*
405 * The current set of single-line macros we have defined.
406 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700407static struct hash_table smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000408
409/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000410 * The multi-line macro we are currently defining, or the %rep
411 * block we are currently reading, if any.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000412 */
413static MMacro *defining;
414
Charles Crayned4200be2008-07-12 16:42:33 -0700415static uint64_t nested_mac_count;
416static uint64_t nested_rep_count;
417
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000418/*
419 * The number of macro parameters to allocate space for at a time.
420 */
421#define PARAM_DELTA 16
422
423/*
H. Peter Anvina4835d42008-05-20 14:21:29 -0700424 * The standard macro set: defined in macros.c in the array nasm_stdmac.
425 * This gives our position in the macro set, when we're processing it.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000426 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700427static macros_t *stdmacpos;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000428
429/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000430 * The extra standard macros that come from the object format, if
431 * any.
432 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700433static macros_t *extrastdmac = NULL;
H. Peter Anvincfb71762008-06-20 15:20:16 -0700434static bool any_extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000435
436/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000437 * Tokens are allocated in blocks to improve speed
438 */
439#define TOKEN_BLOCKSIZE 4096
440static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000441struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000442 Blocks *next;
443 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000444};
445
446static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000447
448/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000449 * Forward declarations.
450 */
H. Peter Anvin734b1882002-04-30 21:01:08 +0000451static Token *expand_mmac_params(Token * tline);
452static Token *expand_smacro(Token * tline);
453static Token *expand_id(Token * tline);
H. Peter Anvinf8ad5322009-02-21 17:55:08 -0800454static Context *get_ctx(const char *name, const char **namep,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300455 bool all_contexts);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700456static void make_tok_num(Token * tok, int64_t val);
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000457static void error(int severity, const char *fmt, ...);
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200458static void error_precond(int severity, const char *fmt, ...);
H. Peter Anvince616072002-04-30 21:02:23 +0000459static void *new_Block(size_t size);
460static void delete_Blocks(void);
H. Peter Anvinc751e862008-06-09 10:18:45 -0700461static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300462 const char *text, int txtlen);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000463static Token *delete_Token(Token * t);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000464
465/*
466 * Macros for safe checking of token pointers, avoid *(NULL)
467 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300468#define tok_type_(x,t) ((x) && (x)->type == (t))
469#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
470#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
471#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000472
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300473/*
H. Peter Anvin077fb932010-07-20 14:56:30 -0700474 * nasm_unquote with error if the string contains NUL characters.
475 * If the string contains NUL characters, issue an error and return
476 * the C len, i.e. truncate at the NUL.
477 */
478static size_t nasm_unquote_cstr(char *qstr, enum preproc_token directive)
479{
480 size_t len = nasm_unquote(qstr, NULL);
481 size_t clen = strlen(qstr);
482
483 if (len != clen)
484 error(ERR_NONFATAL, "NUL character in `%s' directive",
485 pp_directives[directive]);
486
487 return clen;
488}
489
490/*
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700491 * In-place reverse a list of tokens.
492 */
493static Token *reverse_tokens(Token *t)
494{
495 Token *prev = NULL;
496 Token *next;
497
498 while (t) {
499 next = t->next;
500 t->next = prev;
501 prev = t;
502 t = next;
503 }
504
505 return prev;
506}
507
508/*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300509 * Handle TASM specific directives, which do not contain a % in
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000510 * front of them. We do it here because I could not find any other
511 * place to do it for the moment, and it is a hack (ideally it would
512 * be nice to be able to use the NASM pre-processor to do it).
513 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000514static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000515{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000516 int32_t i, j, k, m, len;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400517 char *p, *q, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000518
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400519 p = nasm_skip_spaces(line);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000520
521 /* Binary search for the directive name */
522 i = -1;
Cyrill Gorcunova7319242010-06-03 22:04:36 +0400523 j = ARRAY_SIZE(tasm_directives);
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400524 q = nasm_skip_word(p);
525 len = q - p;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000526 if (len) {
527 oldchar = p[len];
528 p[len] = 0;
529 while (j - i > 1) {
530 k = (j + i) / 2;
531 m = nasm_stricmp(p, tasm_directives[k]);
532 if (m == 0) {
533 /* We have found a directive, so jam a % in front of it
534 * so that NASM will then recognise it as one if it's own.
535 */
536 p[len] = oldchar;
537 len = strlen(p);
538 oldline = line;
539 line = nasm_malloc(len + 2);
540 line[0] = '%';
541 if (k == TM_IFDIFI) {
H. Peter Anvin18f48792009-06-27 15:56:27 -0700542 /*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300543 * NASM does not recognise IFDIFI, so we convert
544 * it to %if 0. This is not used in NASM
545 * compatible code, but does need to parse for the
546 * TASM macro package.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000547 */
H. Peter Anvin18f48792009-06-27 15:56:27 -0700548 strcpy(line + 1, "if 0");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000549 } else {
550 memcpy(line + 1, p, len + 1);
551 }
552 nasm_free(oldline);
553 return line;
554 } else if (m < 0) {
555 j = k;
556 } else
557 i = k;
558 }
559 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000560 }
561 return line;
562}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000563
H. Peter Anvin76690a12002-04-30 20:52:49 +0000564/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000565 * The pre-preprocessing stage... This function translates line
566 * number indications as they emerge from GNU cpp (`# lineno "file"
567 * flags') into NASM preprocessor line number indications (`%line
568 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000569 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000570static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000571{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000572 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000573 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000574
H. Peter Anvine2c80182005-01-15 22:15:51 +0000575 if (line[0] == '#' && line[1] == ' ') {
576 oldline = line;
577 fname = oldline + 2;
578 lineno = atoi(fname);
579 fname += strspn(fname, "0123456789 ");
580 if (*fname == '"')
581 fname++;
582 fnlen = strcspn(fname, "\"");
583 line = nasm_malloc(20 + fnlen);
584 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
585 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000586 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000587 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000588 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000589 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000590}
591
592/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000593 * Free a linked list of tokens.
594 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000595static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000596{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400597 while (list)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000598 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000599}
600
601/*
602 * Free a linked list of lines.
603 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000604static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000605{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400606 Line *l, *tmp;
607 list_for_each_safe(l, tmp, list) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000608 free_tlist(l->first);
609 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000610 }
611}
612
613/*
H. Peter Anvineba20a72002-04-30 20:53:55 +0000614 * Free an MMacro
615 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000616static void free_mmacro(MMacro * m)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000617{
H. Peter Anvin734b1882002-04-30 21:01:08 +0000618 nasm_free(m->name);
619 free_tlist(m->dlist);
620 nasm_free(m->defaults);
621 free_llist(m->expansion);
622 nasm_free(m);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000623}
624
625/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700626 * Free all currently defined macros, and free the hash tables
627 */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700628static void free_smacro_table(struct hash_table *smt)
H. Peter Anvin97a23472007-09-16 17:57:25 -0700629{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400630 SMacro *s, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700631 const char *key;
632 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700633
H. Peter Anvin072771e2008-05-22 13:17:51 -0700634 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300635 nasm_free((void *)key);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400636 list_for_each_safe(s, tmp, s) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300637 nasm_free(s->name);
638 free_tlist(s->expansion);
639 nasm_free(s);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300640 }
H. Peter Anvin97a23472007-09-16 17:57:25 -0700641 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700642 hash_free(smt);
643}
644
645static void free_mmacro_table(struct hash_table *mmt)
646{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400647 MMacro *m, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700648 const char *key;
649 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700650
651 it = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700652 while ((m = hash_iterate(mmt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300653 nasm_free((void *)key);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400654 list_for_each_safe(m ,tmp, m)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300655 free_mmacro(m);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700656 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700657 hash_free(mmt);
658}
659
660static void free_macros(void)
661{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700662 free_smacro_table(&smacros);
663 free_mmacro_table(&mmacros);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700664}
665
666/*
667 * Initialize the hash tables
668 */
669static void init_macros(void)
670{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700671 hash_init(&smacros, HASH_LARGE);
672 hash_init(&mmacros, HASH_LARGE);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700673}
674
675/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000676 * Pop the context stack.
677 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000678static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000679{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000680 Context *c = cstk;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000681
682 cstk = cstk->next;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700683 free_smacro_table(&c->localmac);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000684 nasm_free(c->name);
685 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000686}
687
H. Peter Anvin072771e2008-05-22 13:17:51 -0700688/*
689 * Search for a key in the hash index; adding it if necessary
690 * (in which case we initialize the data pointer to NULL.)
691 */
692static void **
693hash_findi_add(struct hash_table *hash, const char *str)
694{
695 struct hash_insert hi;
696 void **r;
697 char *strx;
698
699 r = hash_findi(hash, str, &hi);
700 if (r)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300701 return r;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700702
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300703 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700704 return hash_add(&hi, strx, NULL);
705}
706
707/*
708 * Like hash_findi, but returns the data element rather than a pointer
709 * to it. Used only when not adding a new element, hence no third
710 * argument.
711 */
712static void *
713hash_findix(struct hash_table *hash, const char *str)
714{
715 void **p;
716
717 p = hash_findi(hash, str, NULL);
718 return p ? *p : NULL;
719}
720
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400721/*
722 * read line from standart macros set,
723 * if there no more left -- return NULL
724 */
725static char *line_from_stdmac(void)
726{
727 unsigned char c;
728 const unsigned char *p = stdmacpos;
729 char *line, *q;
730 size_t len = 0;
731
732 if (!stdmacpos)
733 return NULL;
734
735 while ((c = *p++)) {
736 if (c >= 0x80)
737 len += pp_directives_len[c - 0x80] + 1;
738 else
739 len++;
740 }
741
742 line = nasm_malloc(len + 1);
743 q = line;
744 while ((c = *stdmacpos++)) {
745 if (c >= 0x80) {
746 memcpy(q, pp_directives[c - 0x80], pp_directives_len[c - 0x80]);
747 q += pp_directives_len[c - 0x80];
748 *q++ = ' ';
749 } else {
750 *q++ = c;
751 }
752 }
753 stdmacpos = p;
754 *q = '\0';
755
756 if (!*stdmacpos) {
757 /* This was the last of the standard macro chain... */
758 stdmacpos = NULL;
759 if (any_extrastdmac) {
760 stdmacpos = extrastdmac;
761 any_extrastdmac = false;
762 } else if (do_predef) {
763 Line *pd, *l;
764 Token *head, **tail, *t;
765
766 /*
767 * Nasty hack: here we push the contents of
768 * `predef' on to the top-level expansion stack,
769 * since this is the most convenient way to
770 * implement the pre-include and pre-define
771 * features.
772 */
773 list_for_each(pd, predef) {
774 head = NULL;
775 tail = &head;
776 list_for_each(t, pd->first) {
777 *tail = new_Token(NULL, t->type, t->text, 0);
778 tail = &(*tail)->next;
779 }
780
781 l = nasm_malloc(sizeof(Line));
782 l->next = istk->expansion;
783 l->first = head;
784 l->finishes = NULL;
785
786 istk->expansion = l;
787 }
788 do_predef = false;
789 }
790 }
791
792 return line;
793}
794
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000795#define BUF_DELTA 512
796/*
797 * Read a line from the top file in istk, handling multiple CR/LFs
798 * at the end of the line read, and handling spurious ^Zs. Will
799 * return lines from the standard macro set if this has not already
800 * been done.
801 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000802static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000803{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000804 char *buffer, *p, *q;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000805 int bufsize, continued_count;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000806
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400807 /*
808 * standart macros set (predefined) goes first
809 */
810 p = line_from_stdmac();
811 if (p)
812 return p;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700813
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400814 /*
815 * regular read from a file
816 */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000817 bufsize = BUF_DELTA;
818 buffer = nasm_malloc(BUF_DELTA);
819 p = buffer;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000820 continued_count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000821 while (1) {
822 q = fgets(p, bufsize - (p - buffer), istk->fp);
823 if (!q)
824 break;
825 p += strlen(p);
826 if (p > buffer && p[-1] == '\n') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300827 /*
828 * Convert backslash-CRLF line continuation sequences into
829 * nothing at all (for DOS and Windows)
830 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000831 if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) {
832 p -= 3;
833 *p = 0;
834 continued_count++;
835 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300836 /*
837 * Also convert backslash-LF line continuation sequences into
838 * nothing at all (for Unix)
839 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000840 else if (((p - 1) > buffer) && (p[-2] == '\\')) {
841 p -= 2;
842 *p = 0;
843 continued_count++;
844 } else {
845 break;
846 }
847 }
848 if (p - buffer > bufsize - 10) {
Keith Kaniosb7a89542007-04-12 02:40:54 +0000849 int32_t offset = p - buffer;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000850 bufsize += BUF_DELTA;
851 buffer = nasm_realloc(buffer, bufsize);
852 p = buffer + offset; /* prevent stale-pointer problems */
853 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000854 }
855
H. Peter Anvine2c80182005-01-15 22:15:51 +0000856 if (!q && p == buffer) {
857 nasm_free(buffer);
858 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000859 }
860
H. Peter Anvine2c80182005-01-15 22:15:51 +0000861 src_set_linnum(src_get_linnum() + istk->lineinc +
862 (continued_count * istk->lineinc));
H. Peter Anvineba20a72002-04-30 20:53:55 +0000863
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000864 /*
865 * Play safe: remove CRs as well as LFs, if any of either are
866 * present at the end of the line.
867 */
H. Peter Anvineba20a72002-04-30 20:53:55 +0000868 while (--p >= buffer && (*p == '\n' || *p == '\r'))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000869 *p = '\0';
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000870
871 /*
872 * Handle spurious ^Z, which may be inserted into source files
873 * by some file transfer utilities.
874 */
875 buffer[strcspn(buffer, "\032")] = '\0';
876
H. Peter Anvin734b1882002-04-30 21:01:08 +0000877 list->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000878
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000879 return buffer;
880}
881
882/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000883 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000884 * don't need to parse the value out of e.g. numeric tokens: we
885 * simply split one string into many.
886 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000887static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000888{
H. Peter Anvinca544db2008-10-19 19:30:11 -0700889 char c, *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000890 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000891 Token *list = NULL;
892 Token *t, **tail = &list;
893
H. Peter Anvine2c80182005-01-15 22:15:51 +0000894 while (*line) {
895 p = line;
896 if (*p == '%') {
897 p++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300898 if (*p == '+' && !nasm_isdigit(p[1])) {
899 p++;
900 type = TOK_PASTE;
901 } else if (nasm_isdigit(*p) ||
902 ((*p == '-' || *p == '+') && nasm_isdigit(p[1]))) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000903 do {
904 p++;
905 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700906 while (nasm_isdigit(*p));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000907 type = TOK_PREPROC_ID;
908 } else if (*p == '{') {
909 p++;
910 while (*p && *p != '}') {
911 p[-1] = *p;
912 p++;
913 }
914 p[-1] = '\0';
915 if (*p)
916 p++;
917 type = TOK_PREPROC_ID;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300918 } else if (*p == '[') {
919 int lvl = 1;
920 line += 2; /* Skip the leading %[ */
921 p++;
922 while (lvl && (c = *p++)) {
923 switch (c) {
924 case ']':
925 lvl--;
926 break;
927 case '%':
928 if (*p == '[')
929 lvl++;
930 break;
931 case '\'':
932 case '\"':
933 case '`':
Cyrill Gorcunovc6360a72010-07-13 13:32:19 +0400934 p = nasm_skip_string(p - 1) + 1;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300935 break;
936 default:
937 break;
938 }
939 }
940 p--;
941 if (*p)
942 *p++ = '\0';
943 if (lvl)
944 error(ERR_NONFATAL, "unterminated %[ construct");
945 type = TOK_INDIRECT;
946 } else if (*p == '?') {
947 type = TOK_PREPROC_Q; /* %? */
948 p++;
949 if (*p == '?') {
950 type = TOK_PREPROC_QQ; /* %?? */
951 p++;
952 }
H. Peter Anvin077fb932010-07-20 14:56:30 -0700953 } else if (*p == '!') {
954 type = TOK_PREPROC_ID;
955 p++;
956 if (isidchar(*p)) {
957 do {
958 p++;
959 }
960 while (isidchar(*p));
961 } else if (*p == '\'' || *p == '\"' || *p == '`') {
962 p = nasm_skip_string(p);
963 if (*p)
964 p++;
965 else
966 error(ERR_NONFATAL|ERR_PASS1, "unterminated %! string");
967 } else {
968 /* %! without string or identifier */
969 type = TOK_OTHER; /* Legacy behavior... */
970 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000971 } else if (isidchar(*p) ||
972 ((*p == '!' || *p == '%' || *p == '$') &&
973 isidchar(p[1]))) {
974 do {
975 p++;
976 }
977 while (isidchar(*p));
978 type = TOK_PREPROC_ID;
979 } else {
980 type = TOK_OTHER;
981 if (*p == '%')
982 p++;
983 }
984 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
985 type = TOK_ID;
986 p++;
987 while (*p && isidchar(*p))
988 p++;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -0700989 } else if (*p == '\'' || *p == '"' || *p == '`') {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000990 /*
991 * A string token.
992 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000993 type = TOK_STRING;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300994 p = nasm_skip_string(p);
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000995
H. Peter Anvine2c80182005-01-15 22:15:51 +0000996 if (*p) {
997 p++;
998 } else {
H. Peter Anvin917a3492008-09-24 09:14:49 -0700999 error(ERR_WARNING|ERR_PASS1, "unterminated string");
H. Peter Anvine2c80182005-01-15 22:15:51 +00001000 /* Handling unterminated strings by UNV */
1001 /* type = -1; */
1002 }
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001003 } else if (p[0] == '$' && p[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001004 type = TOK_OTHER; /* TOKEN_BASE */
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001005 p += 2;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001006 } else if (isnumstart(*p)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001007 bool is_hex = false;
1008 bool is_float = false;
1009 bool has_e = false;
1010 char c, *r;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001011
H. Peter Anvine2c80182005-01-15 22:15:51 +00001012 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001013 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001014 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001015
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001016 if (*p == '$') {
1017 p++;
1018 is_hex = true;
1019 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001020
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001021 for (;;) {
1022 c = *p++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001023
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001024 if (!is_hex && (c == 'e' || c == 'E')) {
1025 has_e = true;
1026 if (*p == '+' || *p == '-') {
1027 /*
1028 * e can only be followed by +/- if it is either a
1029 * prefixed hex number or a floating-point number
1030 */
1031 p++;
1032 is_float = true;
1033 }
1034 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
1035 is_hex = true;
1036 } else if (c == 'P' || c == 'p') {
1037 is_float = true;
1038 if (*p == '+' || *p == '-')
1039 p++;
1040 } else if (isnumchar(c) || c == '_')
1041 ; /* just advance */
1042 else if (c == '.') {
1043 /*
1044 * we need to deal with consequences of the legacy
1045 * parser, like "1.nolist" being two tokens
1046 * (TOK_NUMBER, TOK_ID) here; at least give it
1047 * a shot for now. In the future, we probably need
1048 * a flex-based scanner with proper pattern matching
1049 * to do it as well as it can be done. Nothing in
1050 * the world is going to help the person who wants
1051 * 0x123.p16 interpreted as two tokens, though.
1052 */
1053 r = p;
1054 while (*r == '_')
1055 r++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001056
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001057 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
1058 (!is_hex && (*r == 'e' || *r == 'E')) ||
1059 (*r == 'p' || *r == 'P')) {
1060 p = r;
1061 is_float = true;
1062 } else
1063 break; /* Terminate the token */
1064 } else
1065 break;
1066 }
1067 p--; /* Point to first character beyond number */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001068
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001069 if (p == line+1 && *line == '$') {
1070 type = TOK_OTHER; /* TOKEN_HERE */
1071 } else {
1072 if (has_e && !is_hex) {
1073 /* 1e13 is floating-point, but 1e13h is not */
1074 is_float = true;
1075 }
H. Peter Anvind784a082009-04-20 14:01:18 -07001076
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001077 type = is_float ? TOK_FLOAT : TOK_NUMBER;
1078 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -07001079 } else if (nasm_isspace(*p)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001080 type = TOK_WHITESPACE;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +04001081 p = nasm_skip_spaces(p);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001082 /*
1083 * Whitespace just before end-of-line is discarded by
1084 * pretending it's a comment; whitespace just before a
1085 * comment gets lumped into the comment.
1086 */
1087 if (!*p || *p == ';') {
1088 type = TOK_COMMENT;
1089 while (*p)
1090 p++;
1091 }
1092 } else if (*p == ';') {
1093 type = TOK_COMMENT;
1094 while (*p)
1095 p++;
1096 } else {
1097 /*
1098 * Anything else is an operator of some kind. We check
1099 * for all the double-character operators (>>, <<, //,
1100 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001101 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001102 */
1103 type = TOK_OTHER;
1104 if ((p[0] == '>' && p[1] == '>') ||
1105 (p[0] == '<' && p[1] == '<') ||
1106 (p[0] == '/' && p[1] == '/') ||
1107 (p[0] == '<' && p[1] == '=') ||
1108 (p[0] == '>' && p[1] == '=') ||
1109 (p[0] == '=' && p[1] == '=') ||
1110 (p[0] == '!' && p[1] == '=') ||
1111 (p[0] == '<' && p[1] == '>') ||
1112 (p[0] == '&' && p[1] == '&') ||
1113 (p[0] == '|' && p[1] == '|') ||
1114 (p[0] == '^' && p[1] == '^')) {
1115 p++;
1116 }
1117 p++;
1118 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001119
H. Peter Anvine2c80182005-01-15 22:15:51 +00001120 /* Handling unterminated string by UNV */
1121 /*if (type == -1)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001122 {
1123 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1124 t->text[p-line] = *line;
1125 tail = &t->next;
1126 }
1127 else */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001128 if (type != TOK_COMMENT) {
1129 *tail = t = new_Token(NULL, type, line, p - line);
1130 tail = &t->next;
1131 }
1132 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001133 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001134 return list;
1135}
1136
H. Peter Anvince616072002-04-30 21:02:23 +00001137/*
1138 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -07001139 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +00001140 * deleted only all at once by the delete_Blocks function.
1141 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001142static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +00001143{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001144 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001145
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001146 /* first, get to the end of the linked list */
1147 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001148 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001149 /* now allocate the requested chunk */
1150 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001151
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001152 /* now allocate a new block for the next request */
1153 b->next = nasm_malloc(sizeof(Blocks));
1154 /* and initialize the contents of the new block */
1155 b->next->next = NULL;
1156 b->next->chunk = NULL;
1157 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +00001158}
1159
1160/*
1161 * this function deletes all managed blocks of memory
1162 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001163static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +00001164{
H. Peter Anvine2c80182005-01-15 22:15:51 +00001165 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +00001166
H. Peter Anvin70653092007-10-19 14:42:29 -07001167 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001168 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -07001169 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001170 * free it.
1171 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001172 while (b) {
1173 if (b->chunk)
1174 nasm_free(b->chunk);
1175 a = b;
1176 b = b->next;
1177 if (a != &blocks)
1178 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001179 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001180}
H. Peter Anvin734b1882002-04-30 21:01:08 +00001181
1182/*
H. Peter Anvin70653092007-10-19 14:42:29 -07001183 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +00001184 * back to the caller. It sets the type and text elements, and
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001185 * also the a.mac and next elements to NULL.
H. Peter Anvin734b1882002-04-30 21:01:08 +00001186 */
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001187static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001188 const char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001189{
1190 Token *t;
1191 int i;
1192
H. Peter Anvin89cee572009-07-15 09:16:54 -04001193 if (!freeTokens) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001194 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1195 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1196 freeTokens[i].next = &freeTokens[i + 1];
1197 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001198 }
1199 t = freeTokens;
1200 freeTokens = t->next;
1201 t->next = next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001202 t->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001203 t->type = type;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001204 if (type == TOK_WHITESPACE || !text) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001205 t->text = NULL;
1206 } else {
1207 if (txtlen == 0)
1208 txtlen = strlen(text);
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001209 t->text = nasm_malloc(txtlen+1);
1210 memcpy(t->text, text, txtlen);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001211 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +00001212 }
1213 return t;
1214}
1215
H. Peter Anvine2c80182005-01-15 22:15:51 +00001216static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001217{
1218 Token *next = t->next;
1219 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +00001220 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001221 freeTokens = t;
1222 return next;
1223}
1224
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001225/*
1226 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001227 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1228 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001229 */
H. Peter Anvin9e200162008-06-04 17:23:14 -07001230static char *detoken(Token * tlist, bool expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001231{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001232 Token *t;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001233 char *line, *p;
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001234 const char *q;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001235 int len = 0;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001236
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001237 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001238 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
H. Peter Anvin077fb932010-07-20 14:56:30 -07001239 char *v;
1240 char *q = t->text;
1241
1242 v = t->text + 2;
1243 if (*v == '\'' || *v == '\"' || *v == '`') {
1244 size_t len = nasm_unquote(v, NULL);
1245 size_t clen = strlen(v);
1246
1247 if (len != clen) {
1248 error(ERR_NONFATAL | ERR_PASS1,
1249 "NUL character in %! string");
1250 v = NULL;
1251 }
H. Peter Anvin5b00bf42010-07-13 11:43:06 -07001252 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001253
1254 if (v) {
1255 char *p = getenv(v);
1256 if (!p) {
1257 error(ERR_NONFATAL | ERR_PASS1,
1258 "nonexistent environment variable `%s'", v);
1259 p = "";
1260 }
1261 t->text = nasm_strdup(p);
1262 }
1263 nasm_free(q);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001264 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001265
H. Peter Anvine2c80182005-01-15 22:15:51 +00001266 /* Expand local macros here and not during preprocessing */
1267 if (expand_locals &&
1268 t->type == TOK_PREPROC_ID && t->text &&
1269 t->text[0] == '%' && t->text[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001270 const char *q;
1271 char *p;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001272 Context *ctx = get_ctx(t->text, &q, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001273 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001274 char buffer[40];
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001275 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001276 p = nasm_strcat(buffer, q);
1277 nasm_free(t->text);
1278 t->text = p;
1279 }
1280 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001281 if (t->type == TOK_WHITESPACE)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001282 len++;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001283 else if (t->text)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001284 len += strlen(t->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001285 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001286
H. Peter Anvin734b1882002-04-30 21:01:08 +00001287 p = line = nasm_malloc(len + 1);
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001288
1289 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001290 if (t->type == TOK_WHITESPACE) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001291 *p++ = ' ';
H. Peter Anvine2c80182005-01-15 22:15:51 +00001292 } else if (t->text) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001293 q = t->text;
1294 while (*q)
1295 *p++ = *q++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001296 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001297 }
1298 *p = '\0';
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001299
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001300 return line;
1301}
1302
1303/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001304 * A scanner, suitable for use by the expression evaluator, which
1305 * operates on a line of Tokens. Expects a pointer to a pointer to
1306 * the first token in the line to be passed in as its private_data
1307 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001308 *
1309 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001310 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001311static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001312{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001313 Token **tlineptr = private_data;
1314 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001315 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001316
H. Peter Anvine2c80182005-01-15 22:15:51 +00001317 do {
1318 tline = *tlineptr;
1319 *tlineptr = tline ? tline->next : NULL;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04001320 } while (tline && (tline->type == TOK_WHITESPACE ||
1321 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001322
1323 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001324 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001325
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001326 tokval->t_charptr = tline->text;
1327
H. Peter Anvin76690a12002-04-30 20:52:49 +00001328 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001329 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001330 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001331 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001332
H. Peter Anvine2c80182005-01-15 22:15:51 +00001333 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001334 p = tokval->t_charptr = tline->text;
1335 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001336 tokval->t_charptr++;
1337 return tokval->t_type = TOKEN_ID;
1338 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001339
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001340 for (r = p, s = ourcopy; *r; r++) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001341 if (r >= p+MAX_KEYWORD)
1342 return tokval->t_type = TOKEN_ID; /* Not a keyword */
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -07001343 *s++ = nasm_tolower(*r);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001344 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001345 *s = '\0';
1346 /* right, so we have an identifier sitting in temp storage. now,
1347 * is it actually a register or instruction name, or what? */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001348 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001349 }
1350
H. Peter Anvine2c80182005-01-15 22:15:51 +00001351 if (tline->type == TOK_NUMBER) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001352 bool rn_error;
1353 tokval->t_integer = readnum(tline->text, &rn_error);
1354 tokval->t_charptr = tline->text;
1355 if (rn_error)
1356 return tokval->t_type = TOKEN_ERRNUM;
1357 else
1358 return tokval->t_type = TOKEN_NUM;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001359 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001360
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001361 if (tline->type == TOK_FLOAT) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001362 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001363 }
1364
H. Peter Anvine2c80182005-01-15 22:15:51 +00001365 if (tline->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001366 char bq, *ep;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001367
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001368 bq = tline->text[0];
H. Peter Anvin11627042008-06-09 20:45:19 -07001369 tokval->t_charptr = tline->text;
1370 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
H. Peter Anvind2456592008-06-19 15:04:18 -07001371
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001372 if (ep[0] != bq || ep[1] != '\0')
1373 return tokval->t_type = TOKEN_ERRSTR;
1374 else
1375 return tokval->t_type = TOKEN_STR;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001376 }
1377
H. Peter Anvine2c80182005-01-15 22:15:51 +00001378 if (tline->type == TOK_OTHER) {
1379 if (!strcmp(tline->text, "<<"))
1380 return tokval->t_type = TOKEN_SHL;
1381 if (!strcmp(tline->text, ">>"))
1382 return tokval->t_type = TOKEN_SHR;
1383 if (!strcmp(tline->text, "//"))
1384 return tokval->t_type = TOKEN_SDIV;
1385 if (!strcmp(tline->text, "%%"))
1386 return tokval->t_type = TOKEN_SMOD;
1387 if (!strcmp(tline->text, "=="))
1388 return tokval->t_type = TOKEN_EQ;
1389 if (!strcmp(tline->text, "<>"))
1390 return tokval->t_type = TOKEN_NE;
1391 if (!strcmp(tline->text, "!="))
1392 return tokval->t_type = TOKEN_NE;
1393 if (!strcmp(tline->text, "<="))
1394 return tokval->t_type = TOKEN_LE;
1395 if (!strcmp(tline->text, ">="))
1396 return tokval->t_type = TOKEN_GE;
1397 if (!strcmp(tline->text, "&&"))
1398 return tokval->t_type = TOKEN_DBL_AND;
1399 if (!strcmp(tline->text, "^^"))
1400 return tokval->t_type = TOKEN_DBL_XOR;
1401 if (!strcmp(tline->text, "||"))
1402 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001403 }
1404
1405 /*
1406 * We have no other options: just return the first character of
1407 * the token text.
1408 */
1409 return tokval->t_type = tline->text[0];
1410}
1411
1412/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001413 * Compare a string to the name of an existing macro; this is a
1414 * simple wrapper which calls either strcmp or nasm_stricmp
1415 * depending on the value of the `casesense' parameter.
1416 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001417static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001418{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001419 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001420}
1421
1422/*
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001423 * Compare a string to the name of an existing macro; this is a
1424 * simple wrapper which calls either strcmp or nasm_stricmp
1425 * depending on the value of the `casesense' parameter.
1426 */
1427static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1428{
1429 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1430}
1431
1432/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001433 * Return the Context structure associated with a %$ token. Return
1434 * NULL, having _already_ reported an error condition, if the
1435 * context stack isn't deep enough for the supplied number of $
1436 * signs.
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001437 * If all_contexts == true, contexts that enclose current are
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001438 * also scanned for such smacro, until it is found; if not -
1439 * only the context that directly results from the number of $'s
1440 * in variable's name.
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001441 *
1442 * If "namep" is non-NULL, set it to the pointer to the macro name
1443 * tail, i.e. the part beyond %$...
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001444 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001445static Context *get_ctx(const char *name, const char **namep,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001446 bool all_contexts)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001447{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001448 Context *ctx;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001449 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001450 int i;
1451
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001452 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001453 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001454
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001455 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001456 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001457
H. Peter Anvine2c80182005-01-15 22:15:51 +00001458 if (!cstk) {
1459 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1460 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001461 }
1462
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001463 name += 2;
1464 ctx = cstk;
1465 i = 0;
1466 while (ctx && *name == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001467 name++;
1468 i++;
1469 ctx = ctx->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001470 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001471 if (!ctx) {
1472 error(ERR_NONFATAL, "`%s': context stack is only"
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001473 " %d level%s deep", name, i, (i == 1 ? "" : "s"));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001474 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001475 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001476
1477 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001478 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001479
Keith Kanios404589e2010-08-10 20:12:57 -05001480 if (!all_contexts)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001481 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001482
Cyrill Gorcunovd90693c2010-08-11 20:31:46 +04001483 /*
1484 * NOTE: In 2.10 we will not need lookup in extarnal
1485 * contexts, so this is a gentle way to inform users
1486 * about their source code need to be updated
1487 */
1488
1489 /* first round -- check the current context */
1490 m = hash_findix(&ctx->localmac, name);
1491 while (m) {
1492 if (!mstrcmp(m->name, name, m->casesense))
1493 return ctx;
1494 m = m->next;
1495 }
1496
1497 /* second round - external contexts */
1498 while ((ctx = ctx->next)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001499 /* Search for this smacro in found context */
H. Peter Anvin166c2472008-05-28 12:28:58 -07001500 m = hash_findix(&ctx->localmac, name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001501 while (m) {
Keith Kanios404589e2010-08-10 20:12:57 -05001502 if (!mstrcmp(m->name, name, m->casesense)) {
Keith Kanios88d947e2010-08-14 12:47:45 -05001503 /* NOTE: deprecated as of 2.10 */
Cyrill Gorcunovd90693c2010-08-11 20:31:46 +04001504 static int once = 0;
1505 if (!once) {
1506 error(ERR_WARNING, "context-local macro expansion"
Keith Kanios88d947e2010-08-14 12:47:45 -05001507 " fall-through (automatic searching of outer"
1508 " contexts) will be deprecated starting in"
1509 " NASM 2.10, please see the NASM Manual for"
1510 " more information");
Cyrill Gorcunovd90693c2010-08-11 20:31:46 +04001511 once = 1;
1512 }
Keith Kanios88d947e2010-08-14 12:47:45 -05001513 error(ERR_WARNING, "`%s': context-local macro expansion fall-through", name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001514 return ctx;
Cyrill Gorcunovd90693c2010-08-11 20:31:46 +04001515 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001516 m = m->next;
1517 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00001518 }
Cyrill Gorcunovd90693c2010-08-11 20:31:46 +04001519
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001520 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001521}
1522
1523/*
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001524 * Check to see if a file is already in a string list
1525 */
1526static bool in_list(const StrList *list, const char *str)
1527{
1528 while (list) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001529 if (!strcmp(list->str, str))
1530 return true;
1531 list = list->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001532 }
1533 return false;
1534}
1535
1536/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001537 * Open an include file. This routine must always return a valid
1538 * file pointer if it returns - it's responsible for throwing an
1539 * ERR_FATAL and bombing out completely if not. It should also try
1540 * the include path one by one until it finds the file or reaches
1541 * the end of the path.
1542 */
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001543static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001544 bool missing_ok)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001545{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001546 FILE *fp;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001547 char *prefix = "";
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001548 IncPath *ip = ipath;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001549 int len = strlen(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001550 size_t prefix_len = 0;
1551 StrList *sl;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001552
H. Peter Anvine2c80182005-01-15 22:15:51 +00001553 while (1) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001554 sl = nasm_malloc(prefix_len+len+1+sizeof sl->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001555 memcpy(sl->str, prefix, prefix_len);
1556 memcpy(sl->str+prefix_len, file, len+1);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001557 fp = fopen(sl->str, "r");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001558 if (fp && dhead && !in_list(*dhead, sl->str)) {
1559 sl->next = NULL;
1560 **dtail = sl;
1561 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001562 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001563 nasm_free(sl);
1564 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001565 if (fp)
1566 return fp;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001567 if (!ip) {
1568 if (!missing_ok)
1569 break;
1570 prefix = NULL;
1571 } else {
1572 prefix = ip->path;
1573 ip = ip->next;
1574 }
1575 if (prefix) {
1576 prefix_len = strlen(prefix);
1577 } else {
1578 /* -MG given and file not found */
1579 if (dhead && !in_list(*dhead, file)) {
1580 sl = nasm_malloc(len+1+sizeof sl->next);
1581 sl->next = NULL;
1582 strcpy(sl->str, file);
1583 **dtail = sl;
1584 *dtail = &sl->next;
1585 }
1586 return NULL;
1587 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001588 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001589
H. Peter Anvin734b1882002-04-30 21:01:08 +00001590 error(ERR_FATAL, "unable to open include file `%s'", file);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001591 return NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001592}
1593
1594/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001595 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001596 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001597 * return true if _any_ single-line macro of that name is defined.
1598 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001599 * `nparam' or no parameters is defined.
1600 *
1601 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001602 * defined, or nparam is -1, the address of the definition structure
1603 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001604 * is NULL, no action will be taken regarding its contents, and no
1605 * error will occur.
1606 *
1607 * Note that this is also called with nparam zero to resolve
1608 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001609 *
1610 * If you already know which context macro belongs to, you can pass
1611 * the context pointer as first parameter; if you won't but name begins
1612 * with %$ the context will be automatically computed. If all_contexts
1613 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001614 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001615static bool
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001616smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001617 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001618{
H. Peter Anvin166c2472008-05-28 12:28:58 -07001619 struct hash_table *smtbl;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001620 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001621
H. Peter Anvin97a23472007-09-16 17:57:25 -07001622 if (ctx) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001623 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001624 } else if (name[0] == '%' && name[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001625 if (cstk)
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001626 ctx = get_ctx(name, &name, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001627 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001628 return false; /* got to return _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001629 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001630 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001631 smtbl = &smacros;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001632 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001633 m = (SMacro *) hash_findix(smtbl, name);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001634
H. Peter Anvine2c80182005-01-15 22:15:51 +00001635 while (m) {
1636 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001637 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001638 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001639 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001640 *defn = m;
1641 else
1642 *defn = NULL;
1643 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001644 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001645 }
1646 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001647 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001648
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001649 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001650}
1651
1652/*
1653 * Count and mark off the parameters in a multi-line macro call.
1654 * This is called both from within the multi-line macro expansion
1655 * code, and also to mark off the default parameters when provided
1656 * in a %macro definition line.
1657 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001658static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001659{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001660 int paramsize, brace;
1661
1662 *nparam = paramsize = 0;
1663 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001664 while (t) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001665 /* +1: we need space for the final NULL */
H. Peter Anvin91fb6f12008-09-01 10:56:33 -07001666 if (*nparam+1 >= paramsize) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001667 paramsize += PARAM_DELTA;
1668 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1669 }
1670 skip_white_(t);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001671 brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001672 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001673 brace = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001674 (*params)[(*nparam)++] = t;
1675 while (tok_isnt_(t, brace ? "}" : ","))
1676 t = t->next;
1677 if (t) { /* got a comma/brace */
1678 t = t->next;
1679 if (brace) {
1680 /*
1681 * Now we've found the closing brace, look further
1682 * for the comma.
1683 */
1684 skip_white_(t);
1685 if (tok_isnt_(t, ",")) {
1686 error(ERR_NONFATAL,
1687 "braces do not enclose all of macro parameter");
1688 while (tok_isnt_(t, ","))
1689 t = t->next;
1690 }
1691 if (t)
1692 t = t->next; /* eat the comma */
1693 }
1694 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001695 }
1696}
1697
1698/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001699 * Determine whether one of the various `if' conditions is true or
1700 * not.
1701 *
1702 * We must free the tline we get passed.
1703 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001704static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001705{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001706 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001707 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001708 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001709 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001710 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001711 enum pp_token_type needtype;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001712 char *p;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001713
1714 origline = tline;
1715
H. Peter Anvine2c80182005-01-15 22:15:51 +00001716 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001717 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001718 j = false; /* have we matched yet? */
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001719 while (true) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001720 skip_white_(tline);
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001721 if (!tline)
1722 break;
1723 if (tline->type != TOK_ID) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001724 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001725 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001726 free_tlist(origline);
1727 return -1;
1728 }
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001729 if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001730 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001731 tline = tline->next;
1732 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001733 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001734
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001735 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001736 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001737 while (tline) {
1738 skip_white_(tline);
1739 if (!tline || (tline->type != TOK_ID &&
1740 (tline->type != TOK_PREPROC_ID ||
1741 tline->text[1] != '$'))) {
1742 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001743 "`%s' expects macro identifiers", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001744 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001745 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001746 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001747 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001748 tline = tline->next;
1749 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001750 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001751
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001752 case PPC_IFENV:
1753 tline = expand_smacro(tline);
1754 j = false; /* have we matched yet? */
1755 while (tline) {
1756 skip_white_(tline);
1757 if (!tline || (tline->type != TOK_ID &&
H. Peter Anvin077fb932010-07-20 14:56:30 -07001758 tline->type != TOK_STRING &&
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001759 (tline->type != TOK_PREPROC_ID ||
H. Peter Anvin077fb932010-07-20 14:56:30 -07001760 tline->text[1] != '!'))) {
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001761 error(ERR_NONFATAL,
1762 "`%s' expects environment variable names",
1763 pp_directives[ct]);
1764 goto fail;
1765 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001766 p = tline->text;
1767 if (tline->type == TOK_PREPROC_ID)
1768 p += 2; /* Skip leading %! */
1769 if (*p == '\'' || *p == '\"' || *p == '`')
1770 nasm_unquote_cstr(p, ct);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001771 if (getenv(p))
1772 j = true;
1773 tline = tline->next;
1774 }
1775 break;
1776
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001777 case PPC_IFIDN:
1778 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001779 tline = expand_smacro(tline);
1780 t = tt = tline;
1781 while (tok_isnt_(tt, ","))
1782 tt = tt->next;
1783 if (!tt) {
1784 error(ERR_NONFATAL,
1785 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001786 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001787 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001788 }
1789 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001790 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001791 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1792 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1793 error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001794 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001795 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001796 }
1797 if (t->type == TOK_WHITESPACE) {
1798 t = t->next;
1799 continue;
1800 }
1801 if (tt->type == TOK_WHITESPACE) {
1802 tt = tt->next;
1803 continue;
1804 }
1805 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001806 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001807 break;
1808 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001809 /* When comparing strings, need to unquote them first */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001810 if (t->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001811 size_t l1 = nasm_unquote(t->text, NULL);
1812 size_t l2 = nasm_unquote(tt->text, NULL);
H. Peter Anvind2456592008-06-19 15:04:18 -07001813
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001814 if (l1 != l2) {
1815 j = false;
1816 break;
1817 }
1818 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
1819 j = false;
1820 break;
1821 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001822 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001823 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001824 break;
1825 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001826
H. Peter Anvine2c80182005-01-15 22:15:51 +00001827 t = t->next;
1828 tt = tt->next;
1829 }
1830 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001831 j = false; /* trailing gunk on one end or other */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001832 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001833
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001834 case PPC_IFMACRO:
H. Peter Anvin89cee572009-07-15 09:16:54 -04001835 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001836 bool found = false;
1837 MMacro searching, *mmac;
H. Peter Anvin65747262002-05-07 00:10:05 +00001838
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001839 skip_white_(tline);
1840 tline = expand_id(tline);
1841 if (!tok_type_(tline, TOK_ID)) {
1842 error(ERR_NONFATAL,
1843 "`%s' expects a macro name", pp_directives[ct]);
1844 goto fail;
1845 }
1846 searching.name = nasm_strdup(tline->text);
1847 searching.casesense = true;
1848 searching.plus = false;
1849 searching.nolist = false;
1850 searching.in_progress = 0;
1851 searching.max_depth = 0;
1852 searching.rep_nest = NULL;
1853 searching.nparam_min = 0;
1854 searching.nparam_max = INT_MAX;
1855 tline = expand_smacro(tline->next);
1856 skip_white_(tline);
1857 if (!tline) {
1858 } else if (!tok_type_(tline, TOK_NUMBER)) {
1859 error(ERR_NONFATAL,
1860 "`%s' expects a parameter count or nothing",
1861 pp_directives[ct]);
1862 } else {
1863 searching.nparam_min = searching.nparam_max =
1864 readnum(tline->text, &j);
1865 if (j)
1866 error(ERR_NONFATAL,
1867 "unable to parse parameter count `%s'",
1868 tline->text);
1869 }
1870 if (tline && tok_is_(tline->next, "-")) {
1871 tline = tline->next->next;
1872 if (tok_is_(tline, "*"))
1873 searching.nparam_max = INT_MAX;
1874 else if (!tok_type_(tline, TOK_NUMBER))
1875 error(ERR_NONFATAL,
1876 "`%s' expects a parameter count after `-'",
1877 pp_directives[ct]);
1878 else {
1879 searching.nparam_max = readnum(tline->text, &j);
1880 if (j)
1881 error(ERR_NONFATAL,
1882 "unable to parse parameter count `%s'",
1883 tline->text);
1884 if (searching.nparam_min > searching.nparam_max)
1885 error(ERR_NONFATAL,
1886 "minimum parameter count exceeds maximum");
1887 }
1888 }
1889 if (tline && tok_is_(tline->next, "+")) {
1890 tline = tline->next;
1891 searching.plus = true;
1892 }
1893 mmac = (MMacro *) hash_findix(&mmacros, searching.name);
1894 while (mmac) {
1895 if (!strcmp(mmac->name, searching.name) &&
1896 (mmac->nparam_min <= searching.nparam_max
1897 || searching.plus)
1898 && (searching.nparam_min <= mmac->nparam_max
1899 || mmac->plus)) {
1900 found = true;
1901 break;
1902 }
1903 mmac = mmac->next;
1904 }
1905 if (tline && tline->next)
1906 error(ERR_WARNING|ERR_PASS1,
1907 "trailing garbage after %%ifmacro ignored");
1908 nasm_free(searching.name);
1909 j = found;
1910 break;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001911 }
H. Peter Anvin65747262002-05-07 00:10:05 +00001912
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001913 case PPC_IFID:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001914 needtype = TOK_ID;
1915 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001916 case PPC_IFNUM:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001917 needtype = TOK_NUMBER;
1918 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001919 case PPC_IFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001920 needtype = TOK_STRING;
1921 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001922
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001923iftype:
1924 t = tline = expand_smacro(tline);
H. Peter Anvind85d2502008-05-04 17:53:31 -07001925
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001926 while (tok_type_(t, TOK_WHITESPACE) ||
1927 (needtype == TOK_NUMBER &&
1928 tok_type_(t, TOK_OTHER) &&
1929 (t->text[0] == '-' || t->text[0] == '+') &&
1930 !t->text[1]))
1931 t = t->next;
H. Peter Anvind85d2502008-05-04 17:53:31 -07001932
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001933 j = tok_type_(t, needtype);
1934 break;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001935
1936 case PPC_IFTOKEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001937 t = tline = expand_smacro(tline);
1938 while (tok_type_(t, TOK_WHITESPACE))
1939 t = t->next;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001940
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001941 j = false;
1942 if (t) {
1943 t = t->next; /* Skip the actual token */
1944 while (tok_type_(t, TOK_WHITESPACE))
1945 t = t->next;
1946 j = !t; /* Should be nothing left */
1947 }
1948 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001949
H. Peter Anvin134b9462008-02-16 17:01:40 -08001950 case PPC_IFEMPTY:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001951 t = tline = expand_smacro(tline);
1952 while (tok_type_(t, TOK_WHITESPACE))
1953 t = t->next;
H. Peter Anvin134b9462008-02-16 17:01:40 -08001954
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001955 j = !t; /* Should be empty */
1956 break;
H. Peter Anvin134b9462008-02-16 17:01:40 -08001957
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001958 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001959 t = tline = expand_smacro(tline);
1960 tptr = &t;
1961 tokval.t_type = TOKEN_INVALID;
1962 evalresult = evaluate(ppscan, tptr, &tokval,
1963 NULL, pass | CRITICAL, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001964 if (!evalresult)
1965 return -1;
1966 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07001967 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001968 "trailing garbage after expression ignored");
1969 if (!is_simple(evalresult)) {
1970 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001971 "non-constant value given to `%s'", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001972 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001973 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001974 j = reloc_value(evalresult) != 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001975 break;
H. Peter Anvin95e28822007-09-12 04:20:08 +00001976
H. Peter Anvine2c80182005-01-15 22:15:51 +00001977 default:
1978 error(ERR_FATAL,
1979 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001980 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001981 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001982 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001983
1984 free_tlist(origline);
1985 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07001986
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001987fail:
1988 free_tlist(origline);
1989 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001990}
1991
1992/*
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001993 * Common code for defining an smacro
1994 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001995static bool define_smacro(Context *ctx, const char *mname, bool casesense,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001996 int nparam, Token *expansion)
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001997{
1998 SMacro *smac, **smhead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07001999 struct hash_table *smtbl;
H. Peter Anvin70653092007-10-19 14:42:29 -07002000
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002001 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002002 if (!smac) {
2003 error(ERR_WARNING|ERR_PASS1,
2004 "single-line macro `%s' defined both with and"
2005 " without parameters", mname);
2006 /*
2007 * Some instances of the old code considered this a failure,
2008 * some others didn't. What is the right thing to do here?
2009 */
2010 free_tlist(expansion);
2011 return false; /* Failure */
2012 } else {
2013 /*
2014 * We're redefining, so we have to take over an
2015 * existing SMacro structure. This means freeing
2016 * what was already in it.
2017 */
2018 nasm_free(smac->name);
2019 free_tlist(smac->expansion);
2020 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002021 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002022 smtbl = ctx ? &ctx->localmac : &smacros;
2023 smhead = (SMacro **) hash_findi_add(smtbl, mname);
2024 smac = nasm_malloc(sizeof(SMacro));
2025 smac->next = *smhead;
2026 *smhead = smac;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002027 }
2028 smac->name = nasm_strdup(mname);
2029 smac->casesense = casesense;
2030 smac->nparam = nparam;
2031 smac->expansion = expansion;
2032 smac->in_progress = false;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002033 return true; /* Success */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002034}
2035
2036/*
2037 * Undefine an smacro
2038 */
2039static void undef_smacro(Context *ctx, const char *mname)
2040{
2041 SMacro **smhead, *s, **sp;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002042 struct hash_table *smtbl;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002043
H. Peter Anvin166c2472008-05-28 12:28:58 -07002044 smtbl = ctx ? &ctx->localmac : &smacros;
2045 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
H. Peter Anvin70653092007-10-19 14:42:29 -07002046
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002047 if (smhead) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002048 /*
2049 * We now have a macro name... go hunt for it.
2050 */
2051 sp = smhead;
2052 while ((s = *sp) != NULL) {
2053 if (!mstrcmp(s->name, mname, s->casesense)) {
2054 *sp = s->next;
2055 nasm_free(s->name);
2056 free_tlist(s->expansion);
2057 nasm_free(s);
2058 } else {
2059 sp = &s->next;
2060 }
2061 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002062 }
2063}
2064
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002065/*
H. Peter Anvina26433d2008-07-16 14:40:01 -07002066 * Parse a mmacro specification.
2067 */
2068static bool parse_mmacro_spec(Token *tline, MMacro *def, const char *directive)
2069{
2070 bool err;
2071
2072 tline = tline->next;
2073 skip_white_(tline);
2074 tline = expand_id(tline);
2075 if (!tok_type_(tline, TOK_ID)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002076 error(ERR_NONFATAL, "`%s' expects a macro name", directive);
2077 return false;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002078 }
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002079
H. Peter Anvin89cee572009-07-15 09:16:54 -04002080 def->prev = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002081 def->name = nasm_strdup(tline->text);
2082 def->plus = false;
2083 def->nolist = false;
2084 def->in_progress = 0;
2085 def->rep_nest = NULL;
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002086 def->nparam_min = 0;
2087 def->nparam_max = 0;
2088
H. Peter Anvina26433d2008-07-16 14:40:01 -07002089 tline = expand_smacro(tline->next);
2090 skip_white_(tline);
2091 if (!tok_type_(tline, TOK_NUMBER)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002092 error(ERR_NONFATAL, "`%s' expects a parameter count", directive);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002093 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002094 def->nparam_min = def->nparam_max =
2095 readnum(tline->text, &err);
2096 if (err)
2097 error(ERR_NONFATAL,
2098 "unable to parse parameter count `%s'", tline->text);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002099 }
2100 if (tline && tok_is_(tline->next, "-")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002101 tline = tline->next->next;
2102 if (tok_is_(tline, "*")) {
2103 def->nparam_max = INT_MAX;
2104 } else if (!tok_type_(tline, TOK_NUMBER)) {
2105 error(ERR_NONFATAL,
2106 "`%s' expects a parameter count after `-'", directive);
2107 } else {
2108 def->nparam_max = readnum(tline->text, &err);
2109 if (err) {
2110 error(ERR_NONFATAL, "unable to parse parameter count `%s'",
2111 tline->text);
2112 }
2113 if (def->nparam_min > def->nparam_max) {
2114 error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
2115 }
2116 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002117 }
2118 if (tline && tok_is_(tline->next, "+")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002119 tline = tline->next;
2120 def->plus = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002121 }
2122 if (tline && tok_type_(tline->next, TOK_ID) &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002123 !nasm_stricmp(tline->next->text, ".nolist")) {
2124 tline = tline->next;
2125 def->nolist = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002126 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002127
H. Peter Anvina26433d2008-07-16 14:40:01 -07002128 /*
2129 * Handle default parameters.
2130 */
2131 if (tline && tline->next) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002132 def->dlist = tline->next;
2133 tline->next = NULL;
2134 count_mmac_params(def->dlist, &def->ndefs, &def->defaults);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002135 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002136 def->dlist = NULL;
2137 def->defaults = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002138 }
2139 def->expansion = NULL;
2140
H. Peter Anvin89cee572009-07-15 09:16:54 -04002141 if (def->defaults && def->ndefs > def->nparam_max - def->nparam_min &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002142 !def->plus)
2143 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP,
2144 "too many default macro parameters");
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002145
H. Peter Anvina26433d2008-07-16 14:40:01 -07002146 return true;
2147}
2148
2149
2150/*
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002151 * Decode a size directive
2152 */
2153static int parse_size(const char *str) {
2154 static const char *size_names[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002155 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002156 static const int sizes[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002157 { 0, 1, 4, 16, 8, 10, 2, 32 };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002158
Cyrill Gorcunova7319242010-06-03 22:04:36 +04002159 return sizes[bsii(str, size_names, ARRAY_SIZE(size_names))+1];
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002160}
2161
Ed Beroset3ab3f412002-06-11 03:31:49 +00002162/**
2163 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002164 * Find out if a line contains a preprocessor directive, and deal
2165 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07002166 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002167 * If a directive _is_ found, it is the responsibility of this routine
2168 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002169 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002170 * @param tline a pointer to the current tokeninzed line linked list
2171 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07002172 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002173 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002174static int do_directive(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002175{
H. Peter Anvin4169a472007-09-12 01:29:43 +00002176 enum preproc_token i;
2177 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07002178 bool err;
2179 int nparam;
2180 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002181 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07002182 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002183 int offset;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002184 char *p, *pp;
2185 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002186 Include *inc;
2187 Context *ctx;
2188 Cond *cond;
H. Peter Anvin97a23472007-09-16 17:57:25 -07002189 MMacro *mmac, **mmhead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002190 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
2191 Line *l;
2192 struct tokenval tokval;
2193 expr *evalresult;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002194 MMacro *tmp_defining; /* Used when manipulating rep_nest */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002195 int64_t count;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002196 size_t len;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002197 int severity;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002198
2199 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002200
H. Peter Anvineba20a72002-04-30 20:53:55 +00002201 skip_white_(tline);
H. Peter Anvinf2936d72008-06-04 15:11:23 -07002202 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00002203 (tline->text[1] == '%' || tline->text[1] == '$'
2204 || tline->text[1] == '!'))
2205 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002206
H. Peter Anvin4169a472007-09-12 01:29:43 +00002207 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002208
2209 /*
Cyrill Gorcunovf09116f2010-02-28 11:52:53 +03002210 * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO
2211 * since they are known to be buggy at moment, we need to fix them
2212 * in future release (2.09-2.10)
2213 */
2214 if (i == PP_RMACRO || i == PP_RMACRO || i == PP_EXITMACRO) {
2215 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2216 tline->text);
2217 return NO_DIRECTIVE_FOUND;
2218 }
2219
2220 /*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002221 * If we're in a non-emitting branch of a condition construct,
H. Peter Anvin76690a12002-04-30 20:52:49 +00002222 * or walking to the end of an already terminated %rep block,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002223 * we should ignore all directives except for condition
2224 * directives.
2225 */
H. Peter Anvin76690a12002-04-30 20:52:49 +00002226 if (((istk->conds && !emitting(istk->conds->state)) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00002227 (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) {
2228 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00002229 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002230
2231 /*
H. Peter Anvin76690a12002-04-30 20:52:49 +00002232 * If we're defining a macro or reading a %rep block, we should
Victor van den Elzen8f1120f2008-07-16 13:41:37 +02002233 * ignore all directives except for %macro/%imacro (which nest),
2234 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2235 * If we're in a %rep block, another %rep nests, so should be let through.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002236 */
2237 if (defining && i != PP_MACRO && i != PP_IMACRO &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002238 i != PP_RMACRO && i != PP_IRMACRO &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00002239 i != PP_ENDMACRO && i != PP_ENDM &&
2240 (defining->name || (i != PP_ENDREP && i != PP_REP))) {
2241 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00002242 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002243
Charles Crayned4200be2008-07-12 16:42:33 -07002244 if (defining) {
Keith Kanios852f1ee2009-07-12 00:19:55 -05002245 if (i == PP_MACRO || i == PP_IMACRO ||
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002246 i == PP_RMACRO || i == PP_IRMACRO) {
Charles Crayned4200be2008-07-12 16:42:33 -07002247 nested_mac_count++;
2248 return NO_DIRECTIVE_FOUND;
2249 } else if (nested_mac_count > 0) {
2250 if (i == PP_ENDMACRO) {
2251 nested_mac_count--;
2252 return NO_DIRECTIVE_FOUND;
2253 }
2254 }
2255 if (!defining->name) {
2256 if (i == PP_REP) {
2257 nested_rep_count++;
2258 return NO_DIRECTIVE_FOUND;
2259 } else if (nested_rep_count > 0) {
2260 if (i == PP_ENDREP) {
2261 nested_rep_count--;
2262 return NO_DIRECTIVE_FOUND;
2263 }
2264 }
2265 }
2266 }
2267
H. Peter Anvin4169a472007-09-12 01:29:43 +00002268 switch (i) {
2269 case PP_INVALID:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002270 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2271 tline->text);
2272 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002273
H. Peter Anvine2c80182005-01-15 22:15:51 +00002274 case PP_STACKSIZE:
2275 /* Directive to tell NASM what the default stack size is. The
2276 * default is for a 16-bit stack, and this can be overriden with
2277 * %stacksize large.
H. Peter Anvine2c80182005-01-15 22:15:51 +00002278 */
2279 tline = tline->next;
2280 if (tline && tline->type == TOK_WHITESPACE)
2281 tline = tline->next;
2282 if (!tline || tline->type != TOK_ID) {
2283 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
2284 free_tlist(origline);
2285 return DIRECTIVE_FOUND;
2286 }
2287 if (nasm_stricmp(tline->text, "flat") == 0) {
2288 /* All subsequent ARG directives are for a 32-bit stack */
2289 StackSize = 4;
2290 StackPointer = "ebp";
2291 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002292 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002293 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
2294 /* All subsequent ARG directives are for a 64-bit stack */
2295 StackSize = 8;
2296 StackPointer = "rbp";
Per Jessen53252e02010-02-11 00:16:59 +03002297 ArgOffset = 16;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002298 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002299 } else if (nasm_stricmp(tline->text, "large") == 0) {
2300 /* All subsequent ARG directives are for a 16-bit stack,
2301 * far function call.
2302 */
2303 StackSize = 2;
2304 StackPointer = "bp";
2305 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002306 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002307 } else if (nasm_stricmp(tline->text, "small") == 0) {
2308 /* All subsequent ARG directives are for a 16-bit stack,
2309 * far function call. We don't support near functions.
2310 */
2311 StackSize = 2;
2312 StackPointer = "bp";
2313 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002314 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002315 } else {
2316 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
2317 free_tlist(origline);
2318 return DIRECTIVE_FOUND;
2319 }
2320 free_tlist(origline);
2321 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002322
H. Peter Anvine2c80182005-01-15 22:15:51 +00002323 case PP_ARG:
2324 /* TASM like ARG directive to define arguments to functions, in
2325 * the following form:
2326 *
2327 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2328 */
2329 offset = ArgOffset;
2330 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002331 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002332 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002333
H. Peter Anvine2c80182005-01-15 22:15:51 +00002334 /* Find the argument name */
2335 tline = tline->next;
2336 if (tline && tline->type == TOK_WHITESPACE)
2337 tline = tline->next;
2338 if (!tline || tline->type != TOK_ID) {
2339 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
2340 free_tlist(origline);
2341 return DIRECTIVE_FOUND;
2342 }
2343 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002344
H. Peter Anvine2c80182005-01-15 22:15:51 +00002345 /* Find the argument size type */
2346 tline = tline->next;
2347 if (!tline || tline->type != TOK_OTHER
2348 || tline->text[0] != ':') {
2349 error(ERR_NONFATAL,
2350 "Syntax error processing `%%arg' directive");
2351 free_tlist(origline);
2352 return DIRECTIVE_FOUND;
2353 }
2354 tline = tline->next;
2355 if (!tline || tline->type != TOK_ID) {
2356 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
2357 free_tlist(origline);
2358 return DIRECTIVE_FOUND;
2359 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002360
H. Peter Anvine2c80182005-01-15 22:15:51 +00002361 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002362 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002363 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002364 size = parse_size(tt->text);
2365 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002366 error(ERR_NONFATAL,
2367 "Invalid size type for `%%arg' missing directive");
2368 free_tlist(tt);
2369 free_tlist(origline);
2370 return DIRECTIVE_FOUND;
2371 }
2372 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002373
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002374 /* Round up to even stack slots */
2375 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002376
H. Peter Anvine2c80182005-01-15 22:15:51 +00002377 /* Now define the macro for the argument */
2378 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
2379 arg, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002380 do_directive(tokenize(directive));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002381 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002382
H. Peter Anvine2c80182005-01-15 22:15:51 +00002383 /* Move to the next argument in the list */
2384 tline = tline->next;
2385 if (tline && tline->type == TOK_WHITESPACE)
2386 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002387 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002388 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002389 free_tlist(origline);
2390 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002391
H. Peter Anvine2c80182005-01-15 22:15:51 +00002392 case PP_LOCAL:
2393 /* TASM like LOCAL directive to define local variables for a
2394 * function, in the following form:
2395 *
2396 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2397 *
2398 * The '= LocalSize' at the end is ignored by NASM, but is
2399 * required by TASM to define the local parameter size (and used
2400 * by the TASM macro package).
2401 */
2402 offset = LocalOffset;
2403 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002404 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002405 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002406
H. Peter Anvine2c80182005-01-15 22:15:51 +00002407 /* Find the argument name */
2408 tline = tline->next;
2409 if (tline && tline->type == TOK_WHITESPACE)
2410 tline = tline->next;
2411 if (!tline || tline->type != TOK_ID) {
2412 error(ERR_NONFATAL,
2413 "`%%local' missing argument parameter");
2414 free_tlist(origline);
2415 return DIRECTIVE_FOUND;
2416 }
2417 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002418
H. Peter Anvine2c80182005-01-15 22:15:51 +00002419 /* Find the argument size type */
2420 tline = tline->next;
2421 if (!tline || tline->type != TOK_OTHER
2422 || tline->text[0] != ':') {
2423 error(ERR_NONFATAL,
2424 "Syntax error processing `%%local' directive");
2425 free_tlist(origline);
2426 return DIRECTIVE_FOUND;
2427 }
2428 tline = tline->next;
2429 if (!tline || tline->type != TOK_ID) {
2430 error(ERR_NONFATAL,
2431 "`%%local' missing size type parameter");
2432 free_tlist(origline);
2433 return DIRECTIVE_FOUND;
2434 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002435
H. Peter Anvine2c80182005-01-15 22:15:51 +00002436 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002437 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002438 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002439 size = parse_size(tt->text);
2440 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002441 error(ERR_NONFATAL,
2442 "Invalid size type for `%%local' missing directive");
2443 free_tlist(tt);
2444 free_tlist(origline);
2445 return DIRECTIVE_FOUND;
2446 }
2447 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002448
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002449 /* Round up to even stack slots */
2450 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002451
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002452 offset += size; /* Negative offset, increment before */
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002453
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002454 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002455 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2456 local, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002457 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002458
H. Peter Anvine2c80182005-01-15 22:15:51 +00002459 /* Now define the assign to setup the enter_c macro correctly */
2460 snprintf(directive, sizeof(directive),
2461 "%%assign %%$localsize %%$localsize+%d", size);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002462 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002463
H. Peter Anvine2c80182005-01-15 22:15:51 +00002464 /* Move to the next argument in the list */
2465 tline = tline->next;
2466 if (tline && tline->type == TOK_WHITESPACE)
2467 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002468 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002469 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002470 free_tlist(origline);
2471 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002472
H. Peter Anvine2c80182005-01-15 22:15:51 +00002473 case PP_CLEAR:
2474 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002475 error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002476 "trailing garbage after `%%clear' ignored");
2477 free_macros();
2478 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002479 free_tlist(origline);
2480 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002481
H. Peter Anvin418ca702008-05-30 10:42:30 -07002482 case PP_DEPEND:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002483 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002484 skip_white_(t);
2485 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002486 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07002487 error(ERR_NONFATAL, "`%%depend' expects a file name");
2488 free_tlist(origline);
2489 return DIRECTIVE_FOUND; /* but we did _something_ */
2490 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002491 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002492 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07002493 "trailing garbage after `%%depend' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002494 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002495 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002496 nasm_unquote_cstr(p, i);
2497 if (dephead && !in_list(*dephead, p)) {
2498 StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next);
2499 sl->next = NULL;
2500 strcpy(sl->str, p);
2501 *deptail = sl;
2502 deptail = &sl->next;
2503 }
2504 free_tlist(origline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002505 return DIRECTIVE_FOUND;
2506
2507 case PP_INCLUDE:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002508 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002509 skip_white_(t);
H. Peter Anvind2456592008-06-19 15:04:18 -07002510
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002511 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002512 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002513 error(ERR_NONFATAL, "`%%include' expects a file name");
2514 free_tlist(origline);
2515 return DIRECTIVE_FOUND; /* but we did _something_ */
2516 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002517 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002518 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002519 "trailing garbage after `%%include' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002520 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002521 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002522 nasm_unquote_cstr(p, i);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002523 inc = nasm_malloc(sizeof(Include));
2524 inc->next = istk;
2525 inc->conds = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002526 inc->fp = inc_fopen(p, dephead, &deptail, pass == 0);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002527 if (!inc->fp) {
2528 /* -MG given but file not found */
2529 nasm_free(inc);
2530 } else {
2531 inc->fname = src_set_fname(nasm_strdup(p));
2532 inc->lineno = src_set_linnum(0);
2533 inc->lineinc = 1;
2534 inc->expansion = NULL;
2535 inc->mstk = NULL;
2536 istk = inc;
2537 list->uplevel(LIST_INCLUDE);
2538 }
2539 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002540 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002541
H. Peter Anvind2456592008-06-19 15:04:18 -07002542 case PP_USE:
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002543 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002544 static macros_t *use_pkg;
2545 const char *pkg_macro = NULL;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002546
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002547 tline = tline->next;
2548 skip_white_(tline);
2549 tline = expand_id(tline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002550
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002551 if (!tline || (tline->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002552 tline->type != TOK_INTERNAL_STRING &&
2553 tline->type != TOK_ID)) {
H. Peter Anvin926fc402008-06-19 16:26:12 -07002554 error(ERR_NONFATAL, "`%%use' expects a package name");
H. Peter Anvind2456592008-06-19 15:04:18 -07002555 free_tlist(origline);
2556 return DIRECTIVE_FOUND; /* but we did _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002557 }
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002558 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002559 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvind2456592008-06-19 15:04:18 -07002560 "trailing garbage after `%%use' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002561 if (tline->type == TOK_STRING)
2562 nasm_unquote_cstr(tline->text, i);
2563 use_pkg = nasm_stdmac_find_package(tline->text);
2564 if (!use_pkg)
2565 error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
2566 else
2567 pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */
Victor van den Elzen35eb2ea2010-03-10 22:33:48 +01002568 if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002569 /* Not already included, go ahead and include it */
2570 stdmacpos = use_pkg;
2571 }
2572 free_tlist(origline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002573 return DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002574 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002575 case PP_PUSH:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002576 case PP_REPL:
H. Peter Anvin42b56392008-10-24 16:24:21 -07002577 case PP_POP:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002578 tline = tline->next;
2579 skip_white_(tline);
2580 tline = expand_id(tline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002581 if (tline) {
2582 if (!tok_type_(tline, TOK_ID)) {
2583 error(ERR_NONFATAL, "`%s' expects a context identifier",
2584 pp_directives[i]);
2585 free_tlist(origline);
2586 return DIRECTIVE_FOUND; /* but we did _something_ */
2587 }
2588 if (tline->next)
2589 error(ERR_WARNING|ERR_PASS1,
2590 "trailing garbage after `%s' ignored",
2591 pp_directives[i]);
2592 p = nasm_strdup(tline->text);
2593 } else {
2594 p = NULL; /* Anonymous */
2595 }
H. Peter Anvin42b56392008-10-24 16:24:21 -07002596
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002597 if (i == PP_PUSH) {
2598 ctx = nasm_malloc(sizeof(Context));
2599 ctx->next = cstk;
2600 hash_init(&ctx->localmac, HASH_SMALL);
2601 ctx->name = p;
2602 ctx->number = unique++;
2603 cstk = ctx;
2604 } else {
2605 /* %pop or %repl */
2606 if (!cstk) {
2607 error(ERR_NONFATAL, "`%s': context stack is empty",
2608 pp_directives[i]);
2609 } else if (i == PP_POP) {
2610 if (p && (!cstk->name || nasm_stricmp(p, cstk->name)))
2611 error(ERR_NONFATAL, "`%%pop' in wrong context: %s, "
2612 "expected %s",
2613 cstk->name ? cstk->name : "anonymous", p);
2614 else
2615 ctx_pop();
2616 } else {
2617 /* i == PP_REPL */
2618 nasm_free(cstk->name);
2619 cstk->name = p;
2620 p = NULL;
2621 }
2622 nasm_free(p);
2623 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002624 free_tlist(origline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002625 return DIRECTIVE_FOUND;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002626 case PP_FATAL:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002627 severity = ERR_FATAL;
2628 goto issue_error;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002629 case PP_ERROR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002630 severity = ERR_NONFATAL;
2631 goto issue_error;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002632 case PP_WARNING:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002633 severity = ERR_WARNING|ERR_WARN_USER;
2634 goto issue_error;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002635
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002636issue_error:
H. Peter Anvin7df04172008-06-10 18:27:38 -07002637 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002638 /* Only error out if this is the final pass */
2639 if (pass != 2 && i != PP_FATAL)
2640 return DIRECTIVE_FOUND;
2641
2642 tline->next = expand_smacro(tline->next);
2643 tline = tline->next;
2644 skip_white_(tline);
2645 t = tline ? tline->next : NULL;
2646 skip_white_(t);
2647 if (tok_type_(tline, TOK_STRING) && !t) {
2648 /* The line contains only a quoted string */
2649 p = tline->text;
2650 nasm_unquote(p, NULL); /* Ignore NUL character truncation */
2651 error(severity, "%s", p);
2652 } else {
2653 /* Not a quoted string, or more than a quoted string */
2654 p = detoken(tline, false);
2655 error(severity, "%s", p);
2656 nasm_free(p);
2657 }
2658 free_tlist(origline);
2659 return DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002660 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002661
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002662 CASE_PP_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002663 if (istk->conds && !emitting(istk->conds->state))
2664 j = COND_NEVER;
2665 else {
2666 j = if_condition(tline->next, i);
2667 tline->next = NULL; /* it got freed */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002668 j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2669 }
2670 cond = nasm_malloc(sizeof(Cond));
2671 cond->next = istk->conds;
2672 cond->state = j;
2673 istk->conds = cond;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002674 if(istk->mstk)
Keith Kanios3c0d91f2009-10-25 13:28:03 -05002675 istk->mstk->condcnt ++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002676 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002677 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002678
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002679 CASE_PP_ELIF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002680 if (!istk->conds)
H. Peter Anvin4169a472007-09-12 01:29:43 +00002681 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002682 switch(istk->conds->state) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002683 case COND_IF_TRUE:
2684 istk->conds->state = COND_DONE;
2685 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002686
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002687 case COND_DONE:
2688 case COND_NEVER:
2689 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002690
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002691 case COND_ELSE_TRUE:
2692 case COND_ELSE_FALSE:
2693 error_precond(ERR_WARNING|ERR_PASS1,
2694 "`%%elif' after `%%else' ignored");
2695 istk->conds->state = COND_NEVER;
2696 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002697
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002698 case COND_IF_FALSE:
2699 /*
2700 * IMPORTANT: In the case of %if, we will already have
2701 * called expand_mmac_params(); however, if we're
2702 * processing an %elif we must have been in a
2703 * non-emitting mode, which would have inhibited
2704 * the normal invocation of expand_mmac_params().
2705 * Therefore, we have to do it explicitly here.
2706 */
2707 j = if_condition(expand_mmac_params(tline->next), i);
2708 tline->next = NULL; /* it got freed */
2709 istk->conds->state =
2710 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2711 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002712 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002713 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002714 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002715
H. Peter Anvine2c80182005-01-15 22:15:51 +00002716 case PP_ELSE:
2717 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002718 error_precond(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002719 "trailing garbage after `%%else' ignored");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002720 if (!istk->conds)
2721 error(ERR_FATAL, "`%%else': no matching `%%if'");
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002722 switch(istk->conds->state) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002723 case COND_IF_TRUE:
2724 case COND_DONE:
2725 istk->conds->state = COND_ELSE_FALSE;
2726 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002727
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002728 case COND_NEVER:
2729 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002730
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002731 case COND_IF_FALSE:
2732 istk->conds->state = COND_ELSE_TRUE;
2733 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002734
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002735 case COND_ELSE_TRUE:
2736 case COND_ELSE_FALSE:
2737 error_precond(ERR_WARNING|ERR_PASS1,
2738 "`%%else' after `%%else' ignored.");
2739 istk->conds->state = COND_NEVER;
2740 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002741 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002742 free_tlist(origline);
2743 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002744
H. Peter Anvine2c80182005-01-15 22:15:51 +00002745 case PP_ENDIF:
2746 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002747 error_precond(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002748 "trailing garbage after `%%endif' ignored");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002749 if (!istk->conds)
2750 error(ERR_FATAL, "`%%endif': no matching `%%if'");
2751 cond = istk->conds;
2752 istk->conds = cond->next;
2753 nasm_free(cond);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002754 if(istk->mstk)
Keith Kanios3c0d91f2009-10-25 13:28:03 -05002755 istk->mstk->condcnt --;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002756 free_tlist(origline);
2757 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002758
H. Peter Anvindb8f96e2009-07-15 09:07:29 -04002759 case PP_RMACRO:
2760 case PP_IRMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002761 case PP_MACRO:
2762 case PP_IMACRO:
H. Peter Anvina26433d2008-07-16 14:40:01 -07002763 if (defining) {
H. Peter Anvindb8f96e2009-07-15 09:07:29 -04002764 error(ERR_FATAL, "`%s': already defining a macro",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002765 pp_directives[i]);
2766 return DIRECTIVE_FOUND;
2767 }
2768 defining = nasm_malloc(sizeof(MMacro));
2769 defining->max_depth =
2770 (i == PP_RMACRO) || (i == PP_IRMACRO) ? DEADMAN_LIMIT : 0;
2771 defining->casesense = (i == PP_MACRO) || (i == PP_RMACRO);
2772 if (!parse_mmacro_spec(tline, defining, pp_directives[i])) {
2773 nasm_free(defining);
2774 defining = NULL;
2775 return DIRECTIVE_FOUND;
2776 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002777
H. Peter Anvin166c2472008-05-28 12:28:58 -07002778 mmac = (MMacro *) hash_findix(&mmacros, defining->name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002779 while (mmac) {
2780 if (!strcmp(mmac->name, defining->name) &&
2781 (mmac->nparam_min <= defining->nparam_max
2782 || defining->plus)
2783 && (defining->nparam_min <= mmac->nparam_max
2784 || mmac->plus)) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07002785 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002786 "redefining multi-line macro `%s'", defining->name);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002787 return DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002788 }
2789 mmac = mmac->next;
2790 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002791 free_tlist(origline);
2792 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002793
H. Peter Anvine2c80182005-01-15 22:15:51 +00002794 case PP_ENDM:
2795 case PP_ENDMACRO:
Victor van den Elzen8f1120f2008-07-16 13:41:37 +02002796 if (! (defining && defining->name)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002797 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2798 return DIRECTIVE_FOUND;
2799 }
Keith Kanios852f1ee2009-07-12 00:19:55 -05002800 mmhead = (MMacro **) hash_findi_add(&mmacros, defining->name);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002801 defining->next = *mmhead;
Keith Kanios852f1ee2009-07-12 00:19:55 -05002802 *mmhead = defining;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002803 defining = NULL;
2804 free_tlist(origline);
2805 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002806
H. Peter Anvin89cee572009-07-15 09:16:54 -04002807 case PP_EXITMACRO:
Keith Kanios852f1ee2009-07-12 00:19:55 -05002808 /*
2809 * We must search along istk->expansion until we hit a
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002810 * macro-end marker for a macro with a name. Then we
Keith Kanios3c0d91f2009-10-25 13:28:03 -05002811 * bypass all lines between exitmacro and endmacro.
Keith Kanios852f1ee2009-07-12 00:19:55 -05002812 */
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04002813 list_for_each(l, istk->expansion)
Keith Kanios852f1ee2009-07-12 00:19:55 -05002814 if (l->finishes && l->finishes->name)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002815 break;
Keith Kanios852f1ee2009-07-12 00:19:55 -05002816
2817 if (l) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002818 /*
2819 * Remove all conditional entries relative to this
2820 * macro invocation. (safe to do in this context)
2821 */
Keith Kanios3c0d91f2009-10-25 13:28:03 -05002822 for ( ; l->finishes->condcnt > 0; l->finishes->condcnt --) {
2823 cond = istk->conds;
2824 istk->conds = cond->next;
2825 nasm_free(cond);
2826 }
2827 istk->expansion = l;
Keith Kanios852f1ee2009-07-12 00:19:55 -05002828 } else {
2829 error(ERR_NONFATAL, "`%%exitmacro' not within `%%macro' block");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002830 }
Keith Kanios852f1ee2009-07-12 00:19:55 -05002831 free_tlist(origline);
2832 return DIRECTIVE_FOUND;
2833
H. Peter Anvina26433d2008-07-16 14:40:01 -07002834 case PP_UNMACRO:
2835 case PP_UNIMACRO:
2836 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002837 MMacro **mmac_p;
2838 MMacro spec;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002839
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002840 spec.casesense = (i == PP_UNMACRO);
2841 if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) {
2842 return DIRECTIVE_FOUND;
2843 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002844 mmac_p = (MMacro **) hash_findi(&mmacros, spec.name, NULL);
2845 while (mmac_p && *mmac_p) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002846 mmac = *mmac_p;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002847 if (mmac->casesense == spec.casesense &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002848 !mstrcmp(mmac->name, spec.name, spec.casesense) &&
H. Peter Anvina26433d2008-07-16 14:40:01 -07002849 mmac->nparam_min == spec.nparam_min &&
2850 mmac->nparam_max == spec.nparam_max &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002851 mmac->plus == spec.plus) {
2852 *mmac_p = mmac->next;
2853 free_mmacro(mmac);
2854 } else {
2855 mmac_p = &mmac->next;
2856 }
2857 }
2858 free_tlist(origline);
2859 free_tlist(spec.dlist);
2860 return DIRECTIVE_FOUND;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002861 }
2862
H. Peter Anvine2c80182005-01-15 22:15:51 +00002863 case PP_ROTATE:
2864 if (tline->next && tline->next->type == TOK_WHITESPACE)
2865 tline = tline->next;
H. Peter Anvin89cee572009-07-15 09:16:54 -04002866 if (!tline->next) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002867 free_tlist(origline);
2868 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
2869 return DIRECTIVE_FOUND;
2870 }
2871 t = expand_smacro(tline->next);
2872 tline->next = NULL;
2873 free_tlist(origline);
2874 tline = t;
2875 tptr = &t;
2876 tokval.t_type = TOKEN_INVALID;
2877 evalresult =
2878 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2879 free_tlist(tline);
2880 if (!evalresult)
2881 return DIRECTIVE_FOUND;
2882 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002883 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002884 "trailing garbage after expression ignored");
2885 if (!is_simple(evalresult)) {
2886 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
2887 return DIRECTIVE_FOUND;
2888 }
2889 mmac = istk->mstk;
2890 while (mmac && !mmac->name) /* avoid mistaking %reps for macros */
2891 mmac = mmac->next_active;
2892 if (!mmac) {
2893 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
2894 } else if (mmac->nparam == 0) {
2895 error(ERR_NONFATAL,
2896 "`%%rotate' invoked within macro without parameters");
2897 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002898 int rotate = mmac->rotate + reloc_value(evalresult);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002899
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002900 rotate %= (int)mmac->nparam;
2901 if (rotate < 0)
2902 rotate += mmac->nparam;
H. Peter Anvin70653092007-10-19 14:42:29 -07002903
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002904 mmac->rotate = rotate;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002905 }
2906 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002907
H. Peter Anvine2c80182005-01-15 22:15:51 +00002908 case PP_REP:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002909 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002910 do {
2911 tline = tline->next;
2912 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002913
H. Peter Anvine2c80182005-01-15 22:15:51 +00002914 if (tok_type_(tline, TOK_ID) &&
2915 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002916 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002917 do {
2918 tline = tline->next;
2919 } while (tok_type_(tline, TOK_WHITESPACE));
2920 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002921
H. Peter Anvine2c80182005-01-15 22:15:51 +00002922 if (tline) {
2923 t = expand_smacro(tline);
2924 tptr = &t;
2925 tokval.t_type = TOKEN_INVALID;
2926 evalresult =
2927 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2928 if (!evalresult) {
2929 free_tlist(origline);
2930 return DIRECTIVE_FOUND;
2931 }
2932 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002933 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002934 "trailing garbage after expression ignored");
2935 if (!is_simple(evalresult)) {
2936 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
2937 return DIRECTIVE_FOUND;
2938 }
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04002939 count = reloc_value(evalresult);
2940 if (count >= REP_LIMIT) {
Cyrill Gorcunov71f4f842010-08-09 20:17:17 +04002941 error(ERR_NONFATAL, "`%%rep' value exceeds limit");
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04002942 count = 0;
2943 } else
2944 count++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002945 } else {
2946 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002947 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002948 }
2949 free_tlist(origline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002950
H. Peter Anvine2c80182005-01-15 22:15:51 +00002951 tmp_defining = defining;
2952 defining = nasm_malloc(sizeof(MMacro));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002953 defining->prev = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002954 defining->name = NULL; /* flags this macro as a %rep block */
H. Peter Anvin70055962007-10-11 00:05:31 -07002955 defining->casesense = false;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002956 defining->plus = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002957 defining->nolist = nolist;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002958 defining->in_progress = count;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002959 defining->max_depth = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002960 defining->nparam_min = defining->nparam_max = 0;
2961 defining->defaults = NULL;
2962 defining->dlist = NULL;
2963 defining->expansion = NULL;
2964 defining->next_active = istk->mstk;
2965 defining->rep_nest = tmp_defining;
2966 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002967
H. Peter Anvine2c80182005-01-15 22:15:51 +00002968 case PP_ENDREP:
2969 if (!defining || defining->name) {
2970 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
2971 return DIRECTIVE_FOUND;
2972 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002973
H. Peter Anvine2c80182005-01-15 22:15:51 +00002974 /*
2975 * Now we have a "macro" defined - although it has no name
2976 * and we won't be entering it in the hash tables - we must
2977 * push a macro-end marker for it on to istk->expansion.
2978 * After that, it will take care of propagating itself (a
2979 * macro-end marker line for a macro which is really a %rep
2980 * block will cause the macro to be re-expanded, complete
2981 * with another macro-end marker to ensure the process
2982 * continues) until the whole expansion is forcibly removed
2983 * from istk->expansion by a %exitrep.
2984 */
2985 l = nasm_malloc(sizeof(Line));
2986 l->next = istk->expansion;
2987 l->finishes = defining;
2988 l->first = NULL;
2989 istk->expansion = l;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002990
H. Peter Anvine2c80182005-01-15 22:15:51 +00002991 istk->mstk = defining;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002992
H. Peter Anvine2c80182005-01-15 22:15:51 +00002993 list->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
2994 tmp_defining = defining;
2995 defining = defining->rep_nest;
2996 free_tlist(origline);
2997 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002998
H. Peter Anvine2c80182005-01-15 22:15:51 +00002999 case PP_EXITREP:
3000 /*
3001 * We must search along istk->expansion until we hit a
3002 * macro-end marker for a macro with no name. Then we set
3003 * its `in_progress' flag to 0.
3004 */
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003005 list_for_each(l, istk->expansion)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003006 if (l->finishes && !l->finishes->name)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003007 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003008
H. Peter Anvine2c80182005-01-15 22:15:51 +00003009 if (l)
Charles Crayned4200be2008-07-12 16:42:33 -07003010 l->finishes->in_progress = 1;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003011 else
3012 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
3013 free_tlist(origline);
3014 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003015
H. Peter Anvine2c80182005-01-15 22:15:51 +00003016 case PP_XDEFINE:
3017 case PP_IXDEFINE:
3018 case PP_DEFINE:
3019 case PP_IDEFINE:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003020 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003021
H. Peter Anvine2c80182005-01-15 22:15:51 +00003022 tline = tline->next;
3023 skip_white_(tline);
3024 tline = expand_id(tline);
3025 if (!tline || (tline->type != TOK_ID &&
3026 (tline->type != TOK_PREPROC_ID ||
3027 tline->text[1] != '$'))) {
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003028 error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003029 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003030 free_tlist(origline);
3031 return DIRECTIVE_FOUND;
3032 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003033
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003034 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003035 last = tline;
3036 param_start = tline = tline->next;
3037 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003038
H. Peter Anvine2c80182005-01-15 22:15:51 +00003039 /* Expand the macro definition now for %xdefine and %ixdefine */
3040 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
3041 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003042
H. Peter Anvine2c80182005-01-15 22:15:51 +00003043 if (tok_is_(tline, "(")) {
3044 /*
3045 * This macro has parameters.
3046 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003047
H. Peter Anvine2c80182005-01-15 22:15:51 +00003048 tline = tline->next;
3049 while (1) {
3050 skip_white_(tline);
3051 if (!tline) {
3052 error(ERR_NONFATAL, "parameter identifier expected");
3053 free_tlist(origline);
3054 return DIRECTIVE_FOUND;
3055 }
3056 if (tline->type != TOK_ID) {
3057 error(ERR_NONFATAL,
3058 "`%s': parameter identifier expected",
3059 tline->text);
3060 free_tlist(origline);
3061 return DIRECTIVE_FOUND;
3062 }
3063 tline->type = TOK_SMAC_PARAM + nparam++;
3064 tline = tline->next;
3065 skip_white_(tline);
3066 if (tok_is_(tline, ",")) {
3067 tline = tline->next;
H. Peter Anvinca348b62008-07-23 10:49:26 -04003068 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003069 if (!tok_is_(tline, ")")) {
3070 error(ERR_NONFATAL,
3071 "`)' expected to terminate macro template");
3072 free_tlist(origline);
3073 return DIRECTIVE_FOUND;
3074 }
3075 break;
3076 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003077 }
3078 last = tline;
3079 tline = tline->next;
3080 }
3081 if (tok_type_(tline, TOK_WHITESPACE))
3082 last = tline, tline = tline->next;
3083 macro_start = NULL;
3084 last->next = NULL;
3085 t = tline;
3086 while (t) {
3087 if (t->type == TOK_ID) {
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003088 list_for_each(tt, param_start)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003089 if (tt->type >= TOK_SMAC_PARAM &&
3090 !strcmp(tt->text, t->text))
3091 t->type = tt->type;
3092 }
3093 tt = t->next;
3094 t->next = macro_start;
3095 macro_start = t;
3096 t = tt;
3097 }
3098 /*
3099 * Good. We now have a macro name, a parameter count, and a
3100 * token list (in reverse order) for an expansion. We ought
3101 * to be OK just to create an SMacro, store it, and let
3102 * free_tlist have the rest of the line (which we have
3103 * carefully re-terminated after chopping off the expansion
3104 * from the end).
3105 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003106 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003107 free_tlist(origline);
3108 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003109
H. Peter Anvine2c80182005-01-15 22:15:51 +00003110 case PP_UNDEF:
3111 tline = tline->next;
3112 skip_white_(tline);
3113 tline = expand_id(tline);
3114 if (!tline || (tline->type != TOK_ID &&
3115 (tline->type != TOK_PREPROC_ID ||
3116 tline->text[1] != '$'))) {
3117 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
3118 free_tlist(origline);
3119 return DIRECTIVE_FOUND;
3120 }
3121 if (tline->next) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07003122 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003123 "trailing garbage after macro name ignored");
3124 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003125
H. Peter Anvine2c80182005-01-15 22:15:51 +00003126 /* Find the context that symbol belongs to */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003127 ctx = get_ctx(tline->text, &mname, false);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003128 undef_smacro(ctx, mname);
3129 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003130 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003131
H. Peter Anvin9e200162008-06-04 17:23:14 -07003132 case PP_DEFSTR:
3133 case PP_IDEFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003134 casesense = (i == PP_DEFSTR);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003135
3136 tline = tline->next;
3137 skip_white_(tline);
3138 tline = expand_id(tline);
3139 if (!tline || (tline->type != TOK_ID &&
3140 (tline->type != TOK_PREPROC_ID ||
3141 tline->text[1] != '$'))) {
3142 error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003143 pp_directives[i]);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003144 free_tlist(origline);
3145 return DIRECTIVE_FOUND;
3146 }
3147
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003148 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003149 last = tline;
3150 tline = expand_smacro(tline->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003151 last->next = NULL;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003152
3153 while (tok_type_(tline, TOK_WHITESPACE))
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003154 tline = delete_Token(tline);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003155
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003156 p = detoken(tline, false);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003157 macro_start = nasm_malloc(sizeof(*macro_start));
3158 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003159 macro_start->text = nasm_quote(p, strlen(p));
3160 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003161 macro_start->a.mac = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003162 nasm_free(p);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003163
3164 /*
3165 * We now have a macro name, an implicit parameter count of
3166 * zero, and a string token to use as an expansion. Create
3167 * and store an SMacro.
3168 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003169 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003170 free_tlist(origline);
3171 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003172
H. Peter Anvin2f55bda2009-07-14 15:04:04 -04003173 case PP_DEFTOK:
3174 case PP_IDEFTOK:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003175 casesense = (i == PP_DEFTOK);
3176
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003177 tline = tline->next;
3178 skip_white_(tline);
3179 tline = expand_id(tline);
3180 if (!tline || (tline->type != TOK_ID &&
3181 (tline->type != TOK_PREPROC_ID ||
3182 tline->text[1] != '$'))) {
3183 error(ERR_NONFATAL,
3184 "`%s' expects a macro identifier as first parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003185 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003186 free_tlist(origline);
3187 return DIRECTIVE_FOUND;
3188 }
3189 ctx = get_ctx(tline->text, &mname, false);
3190 last = tline;
3191 tline = expand_smacro(tline->next);
3192 last->next = NULL;
3193
3194 t = tline;
3195 while (tok_type_(t, TOK_WHITESPACE))
3196 t = t->next;
3197 /* t should now point to the string */
Cyrill Gorcunove12c50d2010-09-06 19:36:15 +04003198 if (!tok_type_(t, TOK_STRING)) {
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003199 error(ERR_NONFATAL,
3200 "`%s` requires string as second parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003201 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003202 free_tlist(tline);
3203 free_tlist(origline);
3204 return DIRECTIVE_FOUND;
3205 }
3206
H. Peter Anvinb40992c2010-09-15 08:57:21 -07003207 /*
3208 * Convert the string to a token stream. Note that smacros
3209 * are stored with the token stream reversed, so we have to
3210 * reverse the output of tokenize().
3211 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003212 nasm_unquote_cstr(t->text, i);
H. Peter Anvinb40992c2010-09-15 08:57:21 -07003213 macro_start = reverse_tokens(tokenize(t->text));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003214
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003215 /*
3216 * We now have a macro name, an implicit parameter count of
3217 * zero, and a numeric token to use as an expansion. Create
3218 * and store an SMacro.
3219 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003220 define_smacro(ctx, mname, casesense, 0, macro_start);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003221 free_tlist(tline);
3222 free_tlist(origline);
3223 return DIRECTIVE_FOUND;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003224
H. Peter Anvin418ca702008-05-30 10:42:30 -07003225 case PP_PATHSEARCH:
3226 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003227 FILE *fp;
3228 StrList *xsl = NULL;
3229 StrList **xst = &xsl;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003230
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003231 casesense = true;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003232
3233 tline = tline->next;
3234 skip_white_(tline);
3235 tline = expand_id(tline);
3236 if (!tline || (tline->type != TOK_ID &&
3237 (tline->type != TOK_PREPROC_ID ||
3238 tline->text[1] != '$'))) {
3239 error(ERR_NONFATAL,
3240 "`%%pathsearch' expects a macro identifier as first parameter");
3241 free_tlist(origline);
3242 return DIRECTIVE_FOUND;
3243 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003244 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003245 last = tline;
3246 tline = expand_smacro(tline->next);
3247 last->next = NULL;
3248
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003249 t = tline;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003250 while (tok_type_(t, TOK_WHITESPACE))
3251 t = t->next;
3252
3253 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003254 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07003255 error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003256 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003257 free_tlist(origline);
3258 return DIRECTIVE_FOUND; /* but we did _something_ */
3259 }
3260 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003261 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07003262 "trailing garbage after `%%pathsearch' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003263 p = t->text;
H. Peter Anvin427cc912008-06-01 21:43:03 -07003264 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003265 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003266
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003267 fp = inc_fopen(p, &xsl, &xst, true);
3268 if (fp) {
3269 p = xsl->str;
3270 fclose(fp); /* Don't actually care about the file */
3271 }
H. Peter Anvin418ca702008-05-30 10:42:30 -07003272 macro_start = nasm_malloc(sizeof(*macro_start));
3273 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003274 macro_start->text = nasm_quote(p, strlen(p));
3275 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003276 macro_start->a.mac = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003277 if (xsl)
3278 nasm_free(xsl);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003279
3280 /*
3281 * We now have a macro name, an implicit parameter count of
3282 * zero, and a string token to use as an expansion. Create
3283 * and store an SMacro.
3284 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003285 define_smacro(ctx, mname, casesense, 0, macro_start);
3286 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003287 free_tlist(origline);
3288 return DIRECTIVE_FOUND;
3289 }
3290
H. Peter Anvine2c80182005-01-15 22:15:51 +00003291 case PP_STRLEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003292 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07003293
H. Peter Anvine2c80182005-01-15 22:15:51 +00003294 tline = tline->next;
3295 skip_white_(tline);
3296 tline = expand_id(tline);
3297 if (!tline || (tline->type != TOK_ID &&
3298 (tline->type != TOK_PREPROC_ID ||
3299 tline->text[1] != '$'))) {
3300 error(ERR_NONFATAL,
3301 "`%%strlen' expects a macro identifier as first parameter");
3302 free_tlist(origline);
3303 return DIRECTIVE_FOUND;
3304 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003305 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003306 last = tline;
3307 tline = expand_smacro(tline->next);
3308 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003309
H. Peter Anvine2c80182005-01-15 22:15:51 +00003310 t = tline;
3311 while (tok_type_(t, TOK_WHITESPACE))
3312 t = t->next;
3313 /* t should now point to the string */
Cyrill Gorcunov4e1d5ab2010-07-23 18:51:51 +04003314 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003315 error(ERR_NONFATAL,
3316 "`%%strlen` requires string as second parameter");
3317 free_tlist(tline);
3318 free_tlist(origline);
3319 return DIRECTIVE_FOUND;
3320 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003321
H. Peter Anvine2c80182005-01-15 22:15:51 +00003322 macro_start = nasm_malloc(sizeof(*macro_start));
3323 macro_start->next = NULL;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003324 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003325 macro_start->a.mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003326
H. Peter Anvine2c80182005-01-15 22:15:51 +00003327 /*
3328 * We now have a macro name, an implicit parameter count of
3329 * zero, and a numeric token to use as an expansion. Create
3330 * and store an SMacro.
3331 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003332 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003333 free_tlist(tline);
3334 free_tlist(origline);
3335 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003336
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003337 case PP_STRCAT:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003338 casesense = true;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003339
3340 tline = tline->next;
3341 skip_white_(tline);
3342 tline = expand_id(tline);
3343 if (!tline || (tline->type != TOK_ID &&
3344 (tline->type != TOK_PREPROC_ID ||
3345 tline->text[1] != '$'))) {
3346 error(ERR_NONFATAL,
3347 "`%%strcat' expects a macro identifier as first parameter");
3348 free_tlist(origline);
3349 return DIRECTIVE_FOUND;
3350 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003351 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003352 last = tline;
3353 tline = expand_smacro(tline->next);
3354 last->next = NULL;
3355
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003356 len = 0;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003357 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003358 switch (t->type) {
3359 case TOK_WHITESPACE:
3360 break;
3361 case TOK_STRING:
3362 len += t->a.len = nasm_unquote(t->text, NULL);
3363 break;
3364 case TOK_OTHER:
3365 if (!strcmp(t->text, ",")) /* permit comma separators */
3366 break;
3367 /* else fall through */
3368 default:
3369 error(ERR_NONFATAL,
3370 "non-string passed to `%%strcat' (%d)", t->type);
3371 free_tlist(tline);
3372 free_tlist(origline);
3373 return DIRECTIVE_FOUND;
3374 }
3375 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003376
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003377 p = pp = nasm_malloc(len);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003378 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003379 if (t->type == TOK_STRING) {
3380 memcpy(p, t->text, t->a.len);
3381 p += t->a.len;
3382 }
3383 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003384
3385 /*
3386 * We now have a macro name, an implicit parameter count of
3387 * zero, and a numeric token to use as an expansion. Create
3388 * and store an SMacro.
3389 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003390 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
3391 macro_start->text = nasm_quote(pp, len);
3392 nasm_free(pp);
3393 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003394 free_tlist(tline);
3395 free_tlist(origline);
3396 return DIRECTIVE_FOUND;
3397
H. Peter Anvine2c80182005-01-15 22:15:51 +00003398 case PP_SUBSTR:
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003399 {
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003400 int64_t start, count;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003401 size_t len;
H. Peter Anvind2456592008-06-19 15:04:18 -07003402
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003403 casesense = true;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003404
H. Peter Anvine2c80182005-01-15 22:15:51 +00003405 tline = tline->next;
3406 skip_white_(tline);
3407 tline = expand_id(tline);
3408 if (!tline || (tline->type != TOK_ID &&
3409 (tline->type != TOK_PREPROC_ID ||
3410 tline->text[1] != '$'))) {
3411 error(ERR_NONFATAL,
3412 "`%%substr' expects a macro identifier as first parameter");
3413 free_tlist(origline);
3414 return DIRECTIVE_FOUND;
3415 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003416 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003417 last = tline;
3418 tline = expand_smacro(tline->next);
3419 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003420
Cyrill Gorcunov49cd6fb2010-09-06 23:49:52 +04003421 if (tline) /* skip expanded id */
3422 t = tline->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003423 while (tok_type_(t, TOK_WHITESPACE))
3424 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003425
H. Peter Anvine2c80182005-01-15 22:15:51 +00003426 /* t should now point to the string */
Cyrill Gorcunov49cd6fb2010-09-06 23:49:52 +04003427 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003428 error(ERR_NONFATAL,
3429 "`%%substr` requires string as second parameter");
3430 free_tlist(tline);
3431 free_tlist(origline);
3432 return DIRECTIVE_FOUND;
3433 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003434
H. Peter Anvine2c80182005-01-15 22:15:51 +00003435 tt = t->next;
3436 tptr = &tt;
3437 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003438 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003439 pass, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003440 if (!evalresult) {
3441 free_tlist(tline);
3442 free_tlist(origline);
3443 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003444 } else if (!is_simple(evalresult)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003445 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3446 free_tlist(tline);
3447 free_tlist(origline);
3448 return DIRECTIVE_FOUND;
3449 }
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003450 start = evalresult->value - 1;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003451
3452 while (tok_type_(tt, TOK_WHITESPACE))
3453 tt = tt->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003454 if (!tt) {
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003455 count = 1; /* Backwards compatibility: one character */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003456 } else {
3457 tokval.t_type = TOKEN_INVALID;
3458 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3459 pass, error, NULL);
3460 if (!evalresult) {
3461 free_tlist(tline);
3462 free_tlist(origline);
3463 return DIRECTIVE_FOUND;
3464 } else if (!is_simple(evalresult)) {
3465 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3466 free_tlist(tline);
3467 free_tlist(origline);
3468 return DIRECTIVE_FOUND;
3469 }
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003470 count = evalresult->value;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003471 }
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003472
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003473 len = nasm_unquote(t->text, NULL);
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003474
Cyrill Gorcunovbf11db62010-09-07 20:31:11 +04003475 /* make start and count being in range */
3476 if (start < 0)
3477 start = 0;
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003478 if (count < 0)
3479 count = len + count + 1 - start;
3480 if (start + count > (int64_t)len)
Cyrill Gorcunovbf11db62010-09-07 20:31:11 +04003481 count = len - start;
3482 if (!len || count < 0 || start >=(int64_t)len)
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003483 start = -1, count = 0; /* empty string */
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003484
H. Peter Anvine2c80182005-01-15 22:15:51 +00003485 macro_start = nasm_malloc(sizeof(*macro_start));
3486 macro_start->next = NULL;
Cyrill Gorcunov8fccbf32010-09-07 10:42:02 +04003487 macro_start->text = nasm_quote((start < 0) ? "" : t->text + start, count);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003488 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003489 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003490
H. Peter Anvine2c80182005-01-15 22:15:51 +00003491 /*
3492 * We now have a macro name, an implicit parameter count of
3493 * zero, and a numeric token to use as an expansion. Create
3494 * and store an SMacro.
3495 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003496 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003497 free_tlist(tline);
3498 free_tlist(origline);
3499 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003500 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003501
H. Peter Anvine2c80182005-01-15 22:15:51 +00003502 case PP_ASSIGN:
3503 case PP_IASSIGN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003504 casesense = (i == PP_ASSIGN);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003505
H. Peter Anvine2c80182005-01-15 22:15:51 +00003506 tline = tline->next;
3507 skip_white_(tline);
3508 tline = expand_id(tline);
3509 if (!tline || (tline->type != TOK_ID &&
3510 (tline->type != TOK_PREPROC_ID ||
3511 tline->text[1] != '$'))) {
3512 error(ERR_NONFATAL,
3513 "`%%%sassign' expects a macro identifier",
3514 (i == PP_IASSIGN ? "i" : ""));
3515 free_tlist(origline);
3516 return DIRECTIVE_FOUND;
3517 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003518 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003519 last = tline;
3520 tline = expand_smacro(tline->next);
3521 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003522
H. Peter Anvine2c80182005-01-15 22:15:51 +00003523 t = tline;
3524 tptr = &t;
3525 tokval.t_type = TOKEN_INVALID;
3526 evalresult =
3527 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3528 free_tlist(tline);
3529 if (!evalresult) {
3530 free_tlist(origline);
3531 return DIRECTIVE_FOUND;
3532 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003533
H. Peter Anvine2c80182005-01-15 22:15:51 +00003534 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003535 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003536 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00003537
H. Peter Anvine2c80182005-01-15 22:15:51 +00003538 if (!is_simple(evalresult)) {
3539 error(ERR_NONFATAL,
3540 "non-constant value given to `%%%sassign'",
3541 (i == PP_IASSIGN ? "i" : ""));
3542 free_tlist(origline);
3543 return DIRECTIVE_FOUND;
3544 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003545
H. Peter Anvine2c80182005-01-15 22:15:51 +00003546 macro_start = nasm_malloc(sizeof(*macro_start));
3547 macro_start->next = NULL;
3548 make_tok_num(macro_start, reloc_value(evalresult));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003549 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003550
H. Peter Anvine2c80182005-01-15 22:15:51 +00003551 /*
3552 * We now have a macro name, an implicit parameter count of
3553 * zero, and a numeric token to use as an expansion. Create
3554 * and store an SMacro.
3555 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003556 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003557 free_tlist(origline);
3558 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003559
H. Peter Anvine2c80182005-01-15 22:15:51 +00003560 case PP_LINE:
3561 /*
3562 * Syntax is `%line nnn[+mmm] [filename]'
3563 */
3564 tline = tline->next;
3565 skip_white_(tline);
3566 if (!tok_type_(tline, TOK_NUMBER)) {
3567 error(ERR_NONFATAL, "`%%line' expects line number");
3568 free_tlist(origline);
3569 return DIRECTIVE_FOUND;
3570 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003571 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003572 m = 1;
3573 tline = tline->next;
3574 if (tok_is_(tline, "+")) {
3575 tline = tline->next;
3576 if (!tok_type_(tline, TOK_NUMBER)) {
3577 error(ERR_NONFATAL, "`%%line' expects line increment");
3578 free_tlist(origline);
3579 return DIRECTIVE_FOUND;
3580 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003581 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003582 tline = tline->next;
3583 }
3584 skip_white_(tline);
3585 src_set_linnum(k);
3586 istk->lineinc = m;
3587 if (tline) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003588 nasm_free(src_set_fname(detoken(tline, false)));
H. Peter Anvine2c80182005-01-15 22:15:51 +00003589 }
3590 free_tlist(origline);
3591 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003592
H. Peter Anvine2c80182005-01-15 22:15:51 +00003593 default:
3594 error(ERR_FATAL,
3595 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00003596 pp_directives[i]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003597 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003598 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003599}
3600
3601/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00003602 * Ensure that a macro parameter contains a condition code and
3603 * nothing else. Return the condition code index if so, or -1
3604 * otherwise.
3605 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003606static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003607{
H. Peter Anvin76690a12002-04-30 20:52:49 +00003608 Token *tt;
3609 int i, j, k, m;
3610
H. Peter Anvin25a99342007-09-22 17:45:45 -07003611 if (!t)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003612 return -1; /* Probably a %+ without a space */
H. Peter Anvin25a99342007-09-22 17:45:45 -07003613
H. Peter Anvineba20a72002-04-30 20:53:55 +00003614 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003615 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003616 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003617 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003618 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003619 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003620 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003621
3622 i = -1;
Cyrill Gorcunova7319242010-06-03 22:04:36 +04003623 j = ARRAY_SIZE(conditions);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003624 while (j - i > 1) {
3625 k = (j + i) / 2;
3626 m = nasm_stricmp(t->text, conditions[k]);
3627 if (m == 0) {
3628 i = k;
3629 j = -2;
3630 break;
3631 } else if (m < 0) {
3632 j = k;
3633 } else
3634 i = k;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003635 }
3636 if (j != -2)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003637 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003638 return i;
3639}
3640
H. Peter Anvind784a082009-04-20 14:01:18 -07003641static bool paste_tokens(Token **head, bool handle_paste_tokens)
3642{
3643 Token **tail, *t, *tt;
3644 Token **paste_head;
3645 bool did_paste = false;
3646 char *tmp;
3647
3648 /* Now handle token pasting... */
3649 paste_head = NULL;
3650 tail = head;
3651 while ((t = *tail) && (tt = t->next)) {
3652 switch (t->type) {
3653 case TOK_WHITESPACE:
3654 if (tt->type == TOK_WHITESPACE) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003655 /* Zap adjacent whitespace tokens */
H. Peter Anvind784a082009-04-20 14:01:18 -07003656 t->next = delete_Token(tt);
3657 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003658 /* Do not advance paste_head here */
3659 tail = &t->next;
3660 }
H. Peter Anvind784a082009-04-20 14:01:18 -07003661 break;
3662 case TOK_ID:
Cyrill Gorcunov8bc80172010-09-16 00:16:19 +04003663 case TOK_PREPROC_ID:
H. Peter Anvind784a082009-04-20 14:01:18 -07003664 case TOK_NUMBER:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003665 case TOK_FLOAT:
3666 {
3667 size_t len = 0;
3668 char *tmp, *p;
H. Peter Anvind784a082009-04-20 14:01:18 -07003669
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003670 while (tt && (tt->type == TOK_ID || tt->type == TOK_PREPROC_ID ||
3671 tt->type == TOK_NUMBER || tt->type == TOK_FLOAT ||
3672 tt->type == TOK_OTHER)) {
3673 len += strlen(tt->text);
3674 tt = tt->next;
3675 }
H. Peter Anvind784a082009-04-20 14:01:18 -07003676
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003677 /*
3678 * Now tt points to the first token after
3679 * the potential paste area...
3680 */
3681 if (tt != t->next) {
3682 /* We have at least two tokens... */
3683 len += strlen(t->text);
3684 p = tmp = nasm_malloc(len+1);
H. Peter Anvind784a082009-04-20 14:01:18 -07003685
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003686 while (t != tt) {
3687 strcpy(p, t->text);
3688 p = strchr(p, '\0');
3689 t = delete_Token(t);
3690 }
H. Peter Anvind784a082009-04-20 14:01:18 -07003691
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003692 t = *tail = tokenize(tmp);
3693 nasm_free(tmp);
H. Peter Anvind784a082009-04-20 14:01:18 -07003694
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003695 while (t->next) {
3696 tail = &t->next;
3697 t = t->next;
3698 }
3699 t->next = tt; /* Attach the remaining token chain */
H. Peter Anvind784a082009-04-20 14:01:18 -07003700
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003701 did_paste = true;
3702 }
3703 paste_head = tail;
3704 tail = &t->next;
3705 break;
3706 }
3707 case TOK_PASTE: /* %+ */
3708 if (handle_paste_tokens) {
3709 /* Zap %+ and whitespace tokens to the right */
3710 while (t && (t->type == TOK_WHITESPACE ||
3711 t->type == TOK_PASTE))
3712 t = *tail = delete_Token(t);
3713 if (!paste_head || !t)
3714 break; /* Nothing to paste with */
3715 tail = paste_head;
3716 t = *tail;
3717 tt = t->next;
3718 while (tok_type_(tt, TOK_WHITESPACE))
3719 tt = t->next = delete_Token(tt);
H. Peter Anvind784a082009-04-20 14:01:18 -07003720
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003721 if (tt) {
3722 tmp = nasm_strcat(t->text, tt->text);
3723 delete_Token(t);
3724 tt = delete_Token(tt);
3725 t = *tail = tokenize(tmp);
3726 nasm_free(tmp);
3727 while (t->next) {
3728 tail = &t->next;
3729 t = t->next;
3730 }
3731 t->next = tt; /* Attach the remaining token chain */
3732 did_paste = true;
3733 }
3734 paste_head = tail;
3735 tail = &t->next;
3736 break;
3737 }
3738 /* else fall through */
3739 default:
Cyrill Gorcunovadabc152010-07-10 02:11:41 +04003740 tail = &t->next;
3741 if (!tok_type_(t->next, TOK_WHITESPACE))
3742 paste_head = tail;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003743 break;
H. Peter Anvind784a082009-04-20 14:01:18 -07003744 }
3745 }
3746 return did_paste;
3747}
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003748
3749/*
3750 * expands to a list of tokens from %{x:y}
3751 */
3752static Token *expand_mmac_params_range(MMacro *mac, Token *tline, Token ***last)
3753{
3754 Token *t = tline, **tt, *tm, *head;
3755 char *pos;
3756 int fst, lst, j, i;
3757
3758 pos = strchr(tline->text, ':');
3759 nasm_assert(pos);
3760
3761 lst = atoi(pos + 1);
3762 fst = atoi(tline->text + 1);
3763
3764 /*
3765 * only macros params are accounted so
3766 * if someone passes %0 -- we reject such
3767 * value(s)
3768 */
3769 if (lst == 0 || fst == 0)
3770 goto err;
3771
3772 /* the values should be sane */
Cyrill Gorcunov2f403752010-06-05 10:47:10 +04003773 if ((fst > (int)mac->nparam || fst < (-(int)mac->nparam)) ||
3774 (lst > (int)mac->nparam || lst < (-(int)mac->nparam)))
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003775 goto err;
3776
Cyrill Gorcunovefb35832010-06-20 01:52:19 +04003777 fst = fst < 0 ? fst + (int)mac->nparam + 1: fst;
3778 lst = lst < 0 ? lst + (int)mac->nparam + 1: lst;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003779
3780 /* counted from zero */
3781 fst--, lst--;
3782
3783 /*
3784 * it will be at least one token
3785 */
3786 tm = mac->params[(fst + mac->rotate) % mac->nparam];
3787 t = new_Token(NULL, tm->type, tm->text, 0);
3788 head = t, tt = &t->next;
3789 if (fst < lst) {
3790 for (i = fst + 1; i <= lst; i++) {
3791 t = new_Token(NULL, TOK_OTHER, ",", 0);
3792 *tt = t, tt = &t->next;
3793 j = (i + mac->rotate) % mac->nparam;
3794 tm = mac->params[j];
3795 t = new_Token(NULL, tm->type, tm->text, 0);
3796 *tt = t, tt = &t->next;
3797 }
3798 } else {
3799 for (i = fst - 1; i >= lst; i--) {
3800 t = new_Token(NULL, TOK_OTHER, ",", 0);
3801 *tt = t, tt = &t->next;
3802 j = (i + mac->rotate) % mac->nparam;
3803 tm = mac->params[j];
3804 t = new_Token(NULL, tm->type, tm->text, 0);
3805 *tt = t, tt = &t->next;
3806 }
3807 }
3808
3809 *last = tt;
3810 return head;
3811
3812err:
3813 error(ERR_NONFATAL, "`%%{%s}': macro parameters out of range",
3814 &tline->text[1]);
3815 return tline;
3816}
3817
H. Peter Anvin76690a12002-04-30 20:52:49 +00003818/*
3819 * Expand MMacro-local things: parameter references (%0, %n, %+n,
H. Peter Anvin67c63722008-10-26 23:49:00 -07003820 * %-n) and MMacro-local identifiers (%%foo) as well as
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003821 * macro indirection (%[...]) and range (%{..:..}).
H. Peter Anvin76690a12002-04-30 20:52:49 +00003822 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003823static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003824{
H. Peter Anvin734b1882002-04-30 21:01:08 +00003825 Token *t, *tt, **tail, *thead;
H. Peter Anvin6125b622009-04-08 14:02:25 -07003826 bool changed = false;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003827 char *pos;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003828
3829 tail = &thead;
3830 thead = NULL;
3831
H. Peter Anvine2c80182005-01-15 22:15:51 +00003832 while (tline) {
3833 if (tline->type == TOK_PREPROC_ID &&
Cyrill Gorcunovca611192010-06-04 09:22:12 +04003834 (((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) ||
3835 (tline->text[1] >= '0' && tline->text[1] <= '9') ||
3836 tline->text[1] == '%')) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003837 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003838 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003839 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07003840 unsigned int n;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003841 int i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003842 MMacro *mac;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003843
H. Peter Anvine2c80182005-01-15 22:15:51 +00003844 t = tline;
3845 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003846
H. Peter Anvine2c80182005-01-15 22:15:51 +00003847 mac = istk->mstk;
3848 while (mac && !mac->name) /* avoid mistaking %reps for macros */
3849 mac = mac->next_active;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003850 if (!mac) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003851 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003852 } else {
3853 pos = strchr(t->text, ':');
3854 if (!pos) {
3855 switch (t->text[1]) {
3856 /*
3857 * We have to make a substitution of one of the
3858 * forms %1, %-1, %+1, %%foo, %0.
3859 */
3860 case '0':
3861 type = TOK_NUMBER;
3862 snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam);
3863 text = nasm_strdup(tmpbuf);
3864 break;
3865 case '%':
H. Peter Anvine2c80182005-01-15 22:15:51 +00003866 type = TOK_ID;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003867 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
3868 mac->unique);
3869 text = nasm_strcat(tmpbuf, t->text + 2);
3870 break;
3871 case '-':
3872 n = atoi(t->text + 2) - 1;
3873 if (n >= mac->nparam)
3874 tt = NULL;
3875 else {
3876 if (mac->nparam > 1)
3877 n = (n + mac->rotate) % mac->nparam;
3878 tt = mac->params[n];
H. Peter Anvine2c80182005-01-15 22:15:51 +00003879 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003880 cc = find_cc(tt);
3881 if (cc == -1) {
3882 error(ERR_NONFATAL,
3883 "macro parameter %d is not a condition code",
3884 n + 1);
3885 text = NULL;
3886 } else {
3887 type = TOK_ID;
3888 if (inverse_ccs[cc] == -1) {
3889 error(ERR_NONFATAL,
3890 "condition code `%s' is not invertible",
3891 conditions[cc]);
3892 text = NULL;
3893 } else
3894 text = nasm_strdup(conditions[inverse_ccs[cc]]);
3895 }
3896 break;
3897 case '+':
3898 n = atoi(t->text + 2) - 1;
3899 if (n >= mac->nparam)
3900 tt = NULL;
3901 else {
3902 if (mac->nparam > 1)
3903 n = (n + mac->rotate) % mac->nparam;
3904 tt = mac->params[n];
3905 }
3906 cc = find_cc(tt);
3907 if (cc == -1) {
3908 error(ERR_NONFATAL,
3909 "macro parameter %d is not a condition code",
3910 n + 1);
3911 text = NULL;
3912 } else {
3913 type = TOK_ID;
3914 text = nasm_strdup(conditions[cc]);
3915 }
3916 break;
3917 default:
3918 n = atoi(t->text + 1) - 1;
3919 if (n >= mac->nparam)
3920 tt = NULL;
3921 else {
3922 if (mac->nparam > 1)
3923 n = (n + mac->rotate) % mac->nparam;
3924 tt = mac->params[n];
3925 }
3926 if (tt) {
3927 for (i = 0; i < mac->paramlen[n]; i++) {
3928 *tail = new_Token(NULL, tt->type, tt->text, 0);
3929 tail = &(*tail)->next;
3930 tt = tt->next;
3931 }
3932 }
3933 text = NULL; /* we've done it here */
3934 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003935 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003936 } else {
3937 /*
3938 * seems we have a parameters range here
3939 */
3940 Token *head, **last;
3941 head = expand_mmac_params_range(mac, t, &last);
3942 if (head != t) {
3943 *tail = head;
3944 *last = tline;
3945 tline = head;
3946 text = NULL;
3947 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003948 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04003949 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003950 if (!text) {
3951 delete_Token(t);
3952 } else {
3953 *tail = t;
3954 tail = &t->next;
3955 t->type = type;
3956 nasm_free(t->text);
3957 t->text = text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003958 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003959 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003960 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003961 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003962 } else if (tline->type == TOK_INDIRECT) {
3963 t = tline;
3964 tline = tline->next;
3965 tt = tokenize(t->text);
3966 tt = expand_mmac_params(tt);
3967 tt = expand_smacro(tt);
3968 *tail = tt;
3969 while (tt) {
3970 tt->a.mac = NULL; /* Necessary? */
3971 tail = &tt->next;
3972 tt = tt->next;
3973 }
3974 delete_Token(t);
3975 changed = true;
Cyrill Gorcunov8bc80172010-09-16 00:16:19 +04003976 } else if (tline->type == TOK_PREPROC_ID &&
3977 tline->text[0] == '%' &&
3978 tline->text[1] == '$' &&
3979 !tok_type_(tline->next, TOK_WHITESPACE) &&
3980 (tok_type_(tline->next, TOK_ID) ||
3981 tok_type_(tline->next, TOK_PREPROC_ID) ||
3982 tok_type_(tline->next, TOK_NUMBER) ||
3983 tok_type_(tline->next, TOK_OTHER) ||
3984 tok_type_(tline->next, TOK_FLOAT))) {
3985 /*
3986 * In a sake of backward compatibility we allow
3987 * to expand local single macro that early before
3988 * pasting token code have place
3989 *
3990 * NOTE: that new code MUST use %+ macro to obtain
3991 * same result
3992 */
3993 t = tline;
3994 tline = tline->next;
3995 tt = tokenize(t->text);
3996 tt = expand_smacro(tt);
3997 *tail = tt;
3998 while (tt) {
3999 tt->a.mac = NULL;
4000 tail = &tt->next;
4001 tt = tt->next;
4002 }
4003 delete_Token(t);
4004 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004005 } else {
4006 t = *tail = tline;
4007 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004008 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004009 tail = &t->next;
4010 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004011 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00004012 *tail = NULL;
H. Peter Anvin67c63722008-10-26 23:49:00 -07004013
H. Peter Anvind784a082009-04-20 14:01:18 -07004014 if (changed)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004015 paste_tokens(&thead, false);
H. Peter Anvin6125b622009-04-08 14:02:25 -07004016
H. Peter Anvin76690a12002-04-30 20:52:49 +00004017 return thead;
4018}
4019
4020/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004021 * Expand all single-line macro calls made in the given line.
4022 * Return the expanded version of the line. The original is deemed
4023 * to be destroyed in the process. (In reality we'll just move
4024 * Tokens from input to output a lot of the time, rather than
4025 * actually bothering to destroy and replicate.)
4026 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004027
H. Peter Anvine2c80182005-01-15 22:15:51 +00004028static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004029{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004030 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004031 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004032 Token **params;
4033 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07004034 unsigned int nparam, sparam;
H. Peter Anvind784a082009-04-20 14:01:18 -07004035 int brackets;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004036 Token *org_tline = tline;
4037 Context *ctx;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08004038 const char *mname;
H. Peter Anvin2a15e692007-11-19 13:14:59 -08004039 int deadman = DEADMAN_LIMIT;
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004040 bool expanded;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004041
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004042 /*
4043 * Trick: we should avoid changing the start token pointer since it can
4044 * be contained in "next" field of other token. Because of this
4045 * we allocate a copy of first token and work with it; at the end of
4046 * routine we copy it back
4047 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004048 if (org_tline) {
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004049 tline = new_Token(org_tline->next, org_tline->type,
4050 org_tline->text, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004051 tline->a.mac = org_tline->a.mac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004052 nasm_free(org_tline->text);
4053 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004054 }
4055
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004056 expanded = true; /* Always expand %+ at least once */
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004057
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004058again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004059 thead = NULL;
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004060 tail = &thead;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004061
H. Peter Anvine2c80182005-01-15 22:15:51 +00004062 while (tline) { /* main token loop */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004063 if (!--deadman) {
4064 error(ERR_NONFATAL, "interminable macro recursion");
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004065 goto err;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004066 }
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004067
H. Peter Anvine2c80182005-01-15 22:15:51 +00004068 if ((mname = tline->text)) {
4069 /* if this token is a local macro, look in local context */
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004070 if (tline->type == TOK_ID) {
4071 head = (SMacro *)hash_findix(&smacros, mname);
4072 } else if (tline->type == TOK_PREPROC_ID) {
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08004073 ctx = get_ctx(mname, &mname, true);
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004074 head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL;
4075 } else
4076 head = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -07004077
H. Peter Anvine2c80182005-01-15 22:15:51 +00004078 /*
4079 * We've hit an identifier. As in is_mmacro below, we first
4080 * check whether the identifier is a single-line macro at
4081 * all, then think about checking for parameters if
4082 * necessary.
4083 */
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004084 list_for_each(m, head)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004085 if (!mstrcmp(m->name, mname, m->casesense))
4086 break;
4087 if (m) {
4088 mstart = tline;
4089 params = NULL;
4090 paramsize = NULL;
4091 if (m->nparam == 0) {
4092 /*
4093 * Simple case: the macro is parameterless. Discard the
4094 * one token that the macro call took, and push the
4095 * expansion back on the to-do stack.
4096 */
4097 if (!m->expansion) {
4098 if (!strcmp("__FILE__", m->name)) {
4099 int32_t num = 0;
4100 char *file = NULL;
4101 src_get(&num, &file);
4102 tline->text = nasm_quote(file, strlen(file));
4103 tline->type = TOK_STRING;
4104 nasm_free(file);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004105 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004106 }
4107 if (!strcmp("__LINE__", m->name)) {
4108 nasm_free(tline->text);
4109 make_tok_num(tline, src_get_linnum());
4110 continue;
4111 }
4112 if (!strcmp("__BITS__", m->name)) {
4113 nasm_free(tline->text);
4114 make_tok_num(tline, globalbits);
4115 continue;
4116 }
4117 tline = delete_Token(tline);
4118 continue;
4119 }
4120 } else {
4121 /*
4122 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00004123 * exists and takes parameters. We must find the
4124 * parameters in the call, count them, find the SMacro
4125 * that corresponds to that form of the macro call, and
4126 * substitute for the parameters when we expand. What a
4127 * pain.
4128 */
4129 /*tline = tline->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004130 skip_white_(tline); */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004131 do {
4132 t = tline->next;
4133 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004134 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004135 t->text = NULL;
4136 t = tline->next = delete_Token(t);
4137 }
4138 tline = t;
4139 } while (tok_type_(tline, TOK_WHITESPACE));
4140 if (!tok_is_(tline, "(")) {
4141 /*
4142 * This macro wasn't called with parameters: ignore
4143 * the call. (Behaviour borrowed from gnu cpp.)
4144 */
4145 tline = mstart;
4146 m = NULL;
4147 } else {
4148 int paren = 0;
4149 int white = 0;
4150 brackets = 0;
4151 nparam = 0;
4152 sparam = PARAM_DELTA;
4153 params = nasm_malloc(sparam * sizeof(Token *));
4154 params[0] = tline->next;
4155 paramsize = nasm_malloc(sparam * sizeof(int));
4156 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004157 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004158 /*
4159 * For some unusual expansions
4160 * which concatenates function call
4161 */
4162 t = tline->next;
4163 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004164 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004165 t->text = NULL;
4166 t = tline->next = delete_Token(t);
4167 }
4168 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00004169
H. Peter Anvine2c80182005-01-15 22:15:51 +00004170 if (!tline) {
4171 error(ERR_NONFATAL,
4172 "macro call expects terminating `)'");
4173 break;
4174 }
4175 if (tline->type == TOK_WHITESPACE
4176 && brackets <= 0) {
4177 if (paramsize[nparam])
4178 white++;
4179 else
4180 params[nparam] = tline->next;
4181 continue; /* parameter loop */
4182 }
4183 if (tline->type == TOK_OTHER
4184 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004185 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004186 if (ch == ',' && !paren && brackets <= 0) {
4187 if (++nparam >= sparam) {
4188 sparam += PARAM_DELTA;
4189 params = nasm_realloc(params,
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004190 sparam * sizeof(Token *));
4191 paramsize = nasm_realloc(paramsize,
4192 sparam * sizeof(int));
H. Peter Anvine2c80182005-01-15 22:15:51 +00004193 }
4194 params[nparam] = tline->next;
4195 paramsize[nparam] = 0;
4196 white = 0;
4197 continue; /* parameter loop */
4198 }
4199 if (ch == '{' &&
4200 (brackets > 0 || (brackets == 0 &&
4201 !paramsize[nparam])))
4202 {
4203 if (!(brackets++)) {
4204 params[nparam] = tline->next;
4205 continue; /* parameter loop */
4206 }
4207 }
4208 if (ch == '}' && brackets > 0)
4209 if (--brackets == 0) {
4210 brackets = -1;
4211 continue; /* parameter loop */
4212 }
4213 if (ch == '(' && !brackets)
4214 paren++;
4215 if (ch == ')' && brackets <= 0)
4216 if (--paren < 0)
4217 break;
4218 }
4219 if (brackets < 0) {
4220 brackets = 0;
4221 error(ERR_NONFATAL, "braces do not "
4222 "enclose all of macro parameter");
4223 }
4224 paramsize[nparam] += white + 1;
4225 white = 0;
4226 } /* parameter loop */
4227 nparam++;
4228 while (m && (m->nparam != nparam ||
4229 mstrcmp(m->name, mname,
4230 m->casesense)))
4231 m = m->next;
4232 if (!m)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004233 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004234 "macro `%s' exists, "
4235 "but not taking %d parameters",
4236 mstart->text, nparam);
4237 }
4238 }
4239 if (m && m->in_progress)
4240 m = NULL;
4241 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07004242 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00004243 * Design question: should we handle !tline, which
4244 * indicates missing ')' here, or expand those
4245 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07004246 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00004247 */
4248 nasm_free(params);
4249 nasm_free(paramsize);
4250 tline = mstart;
4251 } else {
4252 /*
4253 * Expand the macro: we are placed on the last token of the
4254 * call, so that we can easily split the call from the
4255 * following tokens. We also start by pushing an SMAC_END
4256 * token for the cycle removal.
4257 */
4258 t = tline;
4259 if (t) {
4260 tline = t->next;
4261 t->next = NULL;
4262 }
4263 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004264 tt->a.mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004265 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004266 tline = tt;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004267 list_for_each(t, m->expansion) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004268 if (t->type >= TOK_SMAC_PARAM) {
4269 Token *pcopy = tline, **ptail = &pcopy;
4270 Token *ttt, *pt;
4271 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004272
H. Peter Anvine2c80182005-01-15 22:15:51 +00004273 ttt = params[t->type - TOK_SMAC_PARAM];
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004274 i = paramsize[t->type - TOK_SMAC_PARAM];
4275 while (--i >= 0) {
4276 pt = *ptail = new_Token(tline, ttt->type,
4277 ttt->text, 0);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004278 ptail = &pt->next;
4279 ttt = ttt->next;
4280 }
4281 tline = pcopy;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004282 } else if (t->type == TOK_PREPROC_Q) {
4283 tt = new_Token(tline, TOK_ID, mname, 0);
4284 tline = tt;
4285 } else if (t->type == TOK_PREPROC_QQ) {
4286 tt = new_Token(tline, TOK_ID, m->name, 0);
4287 tline = tt;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004288 } else {
4289 tt = new_Token(tline, t->type, t->text, 0);
4290 tline = tt;
4291 }
4292 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004293
H. Peter Anvine2c80182005-01-15 22:15:51 +00004294 /*
4295 * Having done that, get rid of the macro call, and clean
4296 * up the parameters.
4297 */
4298 nasm_free(params);
4299 nasm_free(paramsize);
4300 free_tlist(mstart);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004301 expanded = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004302 continue; /* main token loop */
4303 }
4304 }
4305 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004306
H. Peter Anvine2c80182005-01-15 22:15:51 +00004307 if (tline->type == TOK_SMAC_END) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004308 tline->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004309 tline = delete_Token(tline);
4310 } else {
4311 t = *tail = tline;
4312 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004313 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004314 t->next = NULL;
4315 tail = &t->next;
4316 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004317 }
4318
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004319 /*
4320 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00004321 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004322 * TOK_IDs should be concatenated.
4323 * Also we look for %+ tokens and concatenate the tokens before and after
4324 * them (without white spaces in between).
4325 */
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004326 if (expanded && paste_tokens(&thead, true)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004327 /*
4328 * If we concatenated something, *and* we had previously expanded
4329 * an actual macro, scan the lines again for macros...
4330 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004331 tline = thead;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004332 expanded = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004333 goto again;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004334 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004335
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004336err:
H. Peter Anvine2c80182005-01-15 22:15:51 +00004337 if (org_tline) {
4338 if (thead) {
4339 *org_tline = *thead;
4340 /* since we just gave text to org_line, don't free it */
4341 thead->text = NULL;
4342 delete_Token(thead);
4343 } else {
4344 /* the expression expanded to empty line;
4345 we can't return NULL for some reasons
4346 we just set the line to a single WHITESPACE token. */
4347 memset(org_tline, 0, sizeof(*org_tline));
4348 org_tline->text = NULL;
4349 org_tline->type = TOK_WHITESPACE;
4350 }
4351 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004352 }
4353
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004354 return thead;
4355}
4356
4357/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004358 * Similar to expand_smacro but used exclusively with macro identifiers
4359 * right before they are fetched in. The reason is that there can be
4360 * identifiers consisting of several subparts. We consider that if there
4361 * are more than one element forming the name, user wants a expansion,
4362 * otherwise it will be left as-is. Example:
4363 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004364 * %define %$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004365 *
4366 * the identifier %$abc will be left as-is so that the handler for %define
4367 * will suck it and define the corresponding value. Other case:
4368 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004369 * %define _%$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004370 *
4371 * In this case user wants name to be expanded *before* %define starts
4372 * working, so we'll expand %$abc into something (if it has a value;
4373 * otherwise it will be left as-is) then concatenate all successive
4374 * PP_IDs into one.
4375 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004376static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004377{
4378 Token *cur, *oldnext = NULL;
4379
H. Peter Anvin734b1882002-04-30 21:01:08 +00004380 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004381 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004382
4383 cur = tline;
4384 while (cur->next &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00004385 (cur->next->type == TOK_ID ||
4386 cur->next->type == TOK_PREPROC_ID
4387 || cur->next->type == TOK_NUMBER))
4388 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004389
4390 /* If identifier consists of just one token, don't expand */
4391 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004392 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004393
H. Peter Anvine2c80182005-01-15 22:15:51 +00004394 if (cur) {
4395 oldnext = cur->next; /* Detach the tail past identifier */
4396 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004397 }
4398
H. Peter Anvin734b1882002-04-30 21:01:08 +00004399 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004400
H. Peter Anvine2c80182005-01-15 22:15:51 +00004401 if (cur) {
4402 /* expand_smacro possibly changhed tline; re-scan for EOL */
4403 cur = tline;
4404 while (cur && cur->next)
4405 cur = cur->next;
4406 if (cur)
4407 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004408 }
4409
4410 return tline;
4411}
4412
4413/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004414 * Determine whether the given line constitutes a multi-line macro
4415 * call, and return the MMacro structure called if so. Doesn't have
4416 * to check for an initial label - that's taken care of in
4417 * expand_mmacro - but must check numbers of parameters. Guaranteed
4418 * to be called with tline->type == TOK_ID, so the putative macro
4419 * name is easy to find.
4420 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004421static MMacro *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004422{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004423 MMacro *head, *m;
4424 Token **params;
4425 int nparam;
4426
H. Peter Anvin166c2472008-05-28 12:28:58 -07004427 head = (MMacro *) hash_findix(&mmacros, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004428
4429 /*
4430 * Efficiency: first we see if any macro exists with the given
4431 * name. If not, we can return NULL immediately. _Then_ we
4432 * count the parameters, and then we look further along the
4433 * list if necessary to find the proper MMacro.
4434 */
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004435 list_for_each(m, head)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004436 if (!mstrcmp(m->name, tline->text, m->casesense))
4437 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004438 if (!m)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004439 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004440
4441 /*
4442 * OK, we have a potential macro. Count and demarcate the
4443 * parameters.
4444 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00004445 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004446
4447 /*
4448 * So we know how many parameters we've got. Find the MMacro
4449 * structure that handles this number.
4450 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004451 while (m) {
4452 if (m->nparam_min <= nparam
4453 && (m->plus || nparam <= m->nparam_max)) {
4454 /*
4455 * This one is right. Just check if cycle removal
4456 * prohibits us using it before we actually celebrate...
4457 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004458 if (m->in_progress > m->max_depth) {
4459 if (m->max_depth > 0) {
4460 error(ERR_WARNING,
4461 "reached maximum recursion depth of %i",
4462 m->max_depth);
4463 }
4464 nasm_free(params);
4465 return NULL;
4466 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004467 /*
4468 * It's right, and we can use it. Add its default
4469 * parameters to the end of our list if necessary.
4470 */
4471 if (m->defaults && nparam < m->nparam_min + m->ndefs) {
4472 params =
4473 nasm_realloc(params,
4474 ((m->nparam_min + m->ndefs +
4475 1) * sizeof(*params)));
4476 while (nparam < m->nparam_min + m->ndefs) {
4477 params[nparam] = m->defaults[nparam - m->nparam_min];
4478 nparam++;
4479 }
4480 }
4481 /*
4482 * If we've gone over the maximum parameter count (and
4483 * we're in Plus mode), ignore parameters beyond
4484 * nparam_max.
4485 */
4486 if (m->plus && nparam > m->nparam_max)
4487 nparam = m->nparam_max;
4488 /*
4489 * Then terminate the parameter list, and leave.
4490 */
4491 if (!params) { /* need this special case */
4492 params = nasm_malloc(sizeof(*params));
4493 nparam = 0;
4494 }
4495 params[nparam] = NULL;
4496 *params_array = params;
4497 return m;
4498 }
4499 /*
4500 * This one wasn't right: look for the next one with the
4501 * same name.
4502 */
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004503 list_for_each(m, m->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004504 if (!mstrcmp(m->name, tline->text, m->casesense))
4505 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004506 }
4507
4508 /*
4509 * After all that, we didn't find one with the right number of
4510 * parameters. Issue a warning, and fail to expand the macro.
4511 */
H. Peter Anvin917a3492008-09-24 09:14:49 -07004512 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004513 "macro `%s' exists, but not taking %d parameters",
4514 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004515 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004516 return NULL;
4517}
4518
Keith Kanios891775e2009-07-11 06:08:54 -05004519
4520/*
4521 * Save MMacro invocation specific fields in
4522 * preparation for a recursive macro expansion
4523 */
4524static void push_mmacro(MMacro *m)
4525{
4526 MMacroInvocation *i;
4527
H. Peter Anvin89cee572009-07-15 09:16:54 -04004528 i = nasm_malloc(sizeof(MMacroInvocation));
4529 i->prev = m->prev;
4530 i->params = m->params;
4531 i->iline = m->iline;
4532 i->nparam = m->nparam;
4533 i->rotate = m->rotate;
4534 i->paramlen = m->paramlen;
4535 i->unique = m->unique;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004536 i->condcnt = m->condcnt;
H. Peter Anvin89cee572009-07-15 09:16:54 -04004537 m->prev = i;
Keith Kanios891775e2009-07-11 06:08:54 -05004538}
4539
4540
4541/*
4542 * Restore MMacro invocation specific fields that were
4543 * saved during a previous recursive macro expansion
4544 */
4545static void pop_mmacro(MMacro *m)
4546{
4547 MMacroInvocation *i;
4548
H. Peter Anvin89cee572009-07-15 09:16:54 -04004549 if (m->prev) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004550 i = m->prev;
4551 m->prev = i->prev;
4552 m->params = i->params;
4553 m->iline = i->iline;
4554 m->nparam = i->nparam;
4555 m->rotate = i->rotate;
4556 m->paramlen = i->paramlen;
4557 m->unique = i->unique;
4558 m->condcnt = i->condcnt;
4559 nasm_free(i);
H. Peter Anvin89cee572009-07-15 09:16:54 -04004560 }
Keith Kanios891775e2009-07-11 06:08:54 -05004561}
4562
4563
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004564/*
4565 * Expand the multi-line macro call made by the given line, if
4566 * there is one to be expanded. If there is, push the expansion on
H. Peter Anvineba20a72002-04-30 20:53:55 +00004567 * istk->expansion and return 1. Otherwise return 0.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004568 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004569static int expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004570{
4571 Token *startline = tline;
4572 Token *label = NULL;
4573 int dont_prepend = 0;
H. Peter Anvince2233b2008-05-25 21:57:00 -07004574 Token **params, *t, *mtok, *tt;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004575 MMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004576 Line *l, *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004577 int i, nparam, *paramlen;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004578 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004579
4580 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004581 skip_white_(t);
H. Peter Anvince2233b2008-05-25 21:57:00 -07004582 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00004583 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004584 return 0;
H. Peter Anvince2233b2008-05-25 21:57:00 -07004585 mtok = t;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004586 m = is_mmacro(t, &params);
H. Peter Anvinc751e862008-06-09 10:18:45 -07004587 if (m) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004588 mname = t->text;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004589 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004590 Token *last;
4591 /*
4592 * We have an id which isn't a macro call. We'll assume
4593 * it might be a label; we'll also check to see if a
4594 * colon follows it. Then, if there's another id after
4595 * that lot, we'll check it again for macro-hood.
4596 */
4597 label = last = t;
4598 t = t->next;
4599 if (tok_type_(t, TOK_WHITESPACE))
4600 last = t, t = t->next;
4601 if (tok_is_(t, ":")) {
4602 dont_prepend = 1;
4603 last = t, t = t->next;
4604 if (tok_type_(t, TOK_WHITESPACE))
4605 last = t, t = t->next;
4606 }
H. Peter Anvin89cee572009-07-15 09:16:54 -04004607 if (!tok_type_(t, TOK_ID) || !(m = is_mmacro(t, &params)))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004608 return 0;
4609 last->next = NULL;
Keith Kanios891775e2009-07-11 06:08:54 -05004610 mname = t->text;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004611 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004612 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004613
4614 /*
4615 * Fix up the parameters: this involves stripping leading and
4616 * trailing whitespace, then stripping braces if they are
4617 * present.
4618 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004619 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004620 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004621
H. Peter Anvine2c80182005-01-15 22:15:51 +00004622 for (i = 0; params[i]; i++) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004623 int brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004624 int comma = (!m->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004625
H. Peter Anvine2c80182005-01-15 22:15:51 +00004626 t = params[i];
4627 skip_white_(t);
4628 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004629 t = t->next, brace = true, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004630 params[i] = t;
4631 paramlen[i] = 0;
4632 while (t) {
4633 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
4634 break; /* ... because we have hit a comma */
4635 if (comma && t->type == TOK_WHITESPACE
4636 && tok_is_(t->next, ","))
4637 break; /* ... or a space then a comma */
4638 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
4639 break; /* ... or a brace */
4640 t = t->next;
4641 paramlen[i]++;
4642 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004643 }
4644
4645 /*
4646 * OK, we have a MMacro structure together with a set of
4647 * parameters. We must now go through the expansion and push
H. Peter Anvin76690a12002-04-30 20:52:49 +00004648 * copies of each Line on to istk->expansion. Substitution of
4649 * parameter tokens and macro-local tokens doesn't get done
4650 * until the single-line macro substitution process; this is
4651 * because delaying them allows us to change the semantics
4652 * later through %rotate.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004653 *
H. Peter Anvin76690a12002-04-30 20:52:49 +00004654 * First, push an end marker on to istk->expansion, mark this
4655 * macro as in progress, and set up its invocation-specific
4656 * variables.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004657 */
4658 ll = nasm_malloc(sizeof(Line));
4659 ll->next = istk->expansion;
4660 ll->finishes = m;
4661 ll->first = NULL;
4662 istk->expansion = ll;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004663
H. Peter Anvin89cee572009-07-15 09:16:54 -04004664 /*
4665 * Save the previous MMacro expansion in the case of
4666 * macro recursion
4667 */
4668 if (m->max_depth && m->in_progress)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004669 push_mmacro(m);
H. Peter Anvin76690a12002-04-30 20:52:49 +00004670
Keith Kanios891775e2009-07-11 06:08:54 -05004671 m->in_progress ++;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004672 m->params = params;
4673 m->iline = tline;
4674 m->nparam = nparam;
4675 m->rotate = 0;
4676 m->paramlen = paramlen;
4677 m->unique = unique++;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004678 m->lineno = 0;
Keith Kanios3c0d91f2009-10-25 13:28:03 -05004679 m->condcnt = 0;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004680
4681 m->next_active = istk->mstk;
4682 istk->mstk = m;
4683
Cyrill Gorcunov367d59e2010-04-09 15:43:03 +04004684 list_for_each(l, m->expansion) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004685 Token **tail;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004686
H. Peter Anvine2c80182005-01-15 22:15:51 +00004687 ll = nasm_malloc(sizeof(Line));
4688 ll->finishes = NULL;
4689 ll->next = istk->expansion;
4690 istk->expansion = ll;
4691 tail = &ll->first;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004692
Cyrill Gorcunov367d59e2010-04-09 15:43:03 +04004693 list_for_each(t, l->first) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004694 Token *x = t;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004695 switch (t->type) {
4696 case TOK_PREPROC_Q:
4697 tt = *tail = new_Token(NULL, TOK_ID, mname, 0);
4698 break;
4699 case TOK_PREPROC_QQ:
4700 tt = *tail = new_Token(NULL, TOK_ID, m->name, 0);
4701 break;
4702 case TOK_PREPROC_ID:
4703 if (t->text[1] == '0' && t->text[2] == '0') {
4704 dont_prepend = -1;
4705 x = label;
4706 if (!x)
4707 continue;
4708 }
4709 /* fall through */
4710 default:
4711 tt = *tail = new_Token(NULL, x->type, x->text, 0);
4712 break;
4713 }
4714 tail = &tt->next;
4715 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004716 *tail = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004717 }
4718
4719 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00004720 * If we had a label, push it on as the first line of
4721 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004722 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004723 if (label) {
4724 if (dont_prepend < 0)
4725 free_tlist(startline);
4726 else {
4727 ll = nasm_malloc(sizeof(Line));
4728 ll->finishes = NULL;
4729 ll->next = istk->expansion;
4730 istk->expansion = ll;
4731 ll->first = startline;
4732 if (!dont_prepend) {
4733 while (label->next)
4734 label = label->next;
4735 label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0);
4736 }
4737 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004738 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004739
H. Peter Anvin734b1882002-04-30 21:01:08 +00004740 list->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004741
H. Peter Anvineba20a72002-04-30 20:53:55 +00004742 return 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004743}
4744
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004745/* The function that actually does the error reporting */
4746static void verror(int severity, const char *fmt, va_list arg)
4747{
4748 char buff[1024];
4749
4750 vsnprintf(buff, sizeof(buff), fmt, arg);
4751
4752 if (istk && istk->mstk && istk->mstk->name)
H. Peter Anvindbb640b2009-07-18 18:57:16 -07004753 nasm_error(severity, "(%s:%d) %s", istk->mstk->name,
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004754 istk->mstk->lineno, buff);
4755 else
H. Peter Anvindbb640b2009-07-18 18:57:16 -07004756 nasm_error(severity, "%s", buff);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004757}
4758
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004759/*
4760 * Since preprocessor always operate only on the line that didn't
H. Peter Anvin917a3492008-09-24 09:14:49 -07004761 * arrived yet, we should always use ERR_OFFBY1.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004762 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004763static void error(int severity, const char *fmt, ...)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004764{
4765 va_list arg;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004766
4767 /* If we're in a dead branch of IF or something like it, ignore the error */
H. Peter Anvin77ba0c62002-05-14 03:18:53 +00004768 if (istk && istk->conds && !emitting(istk->conds->state))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004769 return;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004770
H. Peter Anvin734b1882002-04-30 21:01:08 +00004771 va_start(arg, fmt);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004772 verror(severity, fmt, arg);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004773 va_end(arg);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004774}
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004775
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004776/*
4777 * Because %else etc are evaluated in the state context
4778 * of the previous branch, errors might get lost with error():
4779 * %if 0 ... %else trailing garbage ... %endif
4780 * So %else etc should report errors with this function.
4781 */
4782static void error_precond(int severity, const char *fmt, ...)
4783{
4784 va_list arg;
4785
4786 /* Only ignore the error if it's really in a dead branch */
4787 if (istk && istk->conds && istk->conds->state == COND_NEVER)
4788 return;
4789
4790 va_start(arg, fmt);
4791 verror(severity, fmt, arg);
4792 va_end(arg);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004793}
4794
H. Peter Anvin734b1882002-04-30 21:01:08 +00004795static void
H. Peter Anvindbb640b2009-07-18 18:57:16 -07004796pp_reset(char *file, int apass, ListGen * listgen, StrList **deplist)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004797{
H. Peter Anvin7383b402008-09-24 10:20:40 -07004798 Token *t;
4799
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004800 cstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004801 istk = nasm_malloc(sizeof(Include));
4802 istk->next = NULL;
4803 istk->conds = NULL;
4804 istk->expansion = NULL;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004805 istk->mstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004806 istk->fp = fopen(file, "r");
H. Peter Anvineba20a72002-04-30 20:53:55 +00004807 istk->fname = NULL;
4808 src_set_fname(nasm_strdup(file));
4809 src_set_linnum(0);
4810 istk->lineinc = 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004811 if (!istk->fp)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004812 error(ERR_FATAL|ERR_NOFILE, "unable to open input file `%s'",
H. Peter Anvine2c80182005-01-15 22:15:51 +00004813 file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004814 defining = NULL;
Charles Crayned4200be2008-07-12 16:42:33 -07004815 nested_mac_count = 0;
4816 nested_rep_count = 0;
H. Peter Anvin97a23472007-09-16 17:57:25 -07004817 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004818 unique = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004819 if (tasm_compatible_mode) {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004820 stdmacpos = nasm_stdmac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004821 } else {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004822 stdmacpos = nasm_stdmac_after_tasm;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004823 }
H. Peter Anvind2456592008-06-19 15:04:18 -07004824 any_extrastdmac = extrastdmac && *extrastdmac;
4825 do_predef = true;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004826 list = listgen;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004827
4828 /*
4829 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4830 * The caller, however, will also pass in 3 for preprocess-only so
4831 * we can set __PASS__ accordingly.
4832 */
4833 pass = apass > 2 ? 2 : apass;
4834
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004835 dephead = deptail = deplist;
4836 if (deplist) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004837 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
4838 sl->next = NULL;
4839 strcpy(sl->str, file);
4840 *deptail = sl;
4841 deptail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004842 }
H. Peter Anvin7383b402008-09-24 10:20:40 -07004843
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004844 /*
4845 * Define the __PASS__ macro. This is defined here unlike
4846 * all the other builtins, because it is special -- it varies between
4847 * passes.
4848 */
H. Peter Anvin7383b402008-09-24 10:20:40 -07004849 t = nasm_malloc(sizeof(*t));
4850 t->next = NULL;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004851 make_tok_num(t, apass);
H. Peter Anvin7383b402008-09-24 10:20:40 -07004852 t->a.mac = NULL;
4853 define_smacro(NULL, "__PASS__", true, 0, t);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004854}
4855
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004856static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004857{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004858 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004859 Token *tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004860
H. Peter Anvine2c80182005-01-15 22:15:51 +00004861 while (1) {
4862 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00004863 * Fetch a tokenized line, either from the macro-expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00004864 * buffer or from the input file.
4865 */
4866 tline = NULL;
4867 while (istk->expansion && istk->expansion->finishes) {
4868 Line *l = istk->expansion;
4869 if (!l->finishes->name && l->finishes->in_progress > 1) {
4870 Line *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004871
H. Peter Anvine2c80182005-01-15 22:15:51 +00004872 /*
4873 * This is a macro-end marker for a macro with no
4874 * name, which means it's not really a macro at all
4875 * but a %rep block, and the `in_progress' field is
4876 * more than 1, meaning that we still need to
4877 * repeat. (1 means the natural last repetition; 0
4878 * means termination by %exitrep.) We have
4879 * therefore expanded up to the %endrep, and must
4880 * push the whole block on to the expansion buffer
4881 * again. We don't bother to remove the macro-end
4882 * marker: we'd only have to generate another one
4883 * if we did.
4884 */
4885 l->finishes->in_progress--;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004886 list_for_each(l, l->finishes->expansion) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004887 Token *t, *tt, **tail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004888
H. Peter Anvine2c80182005-01-15 22:15:51 +00004889 ll = nasm_malloc(sizeof(Line));
4890 ll->next = istk->expansion;
4891 ll->finishes = NULL;
4892 ll->first = NULL;
4893 tail = &ll->first;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004894
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004895 list_for_each(t, l->first) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004896 if (t->text || t->type == TOK_WHITESPACE) {
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004897 tt = *tail = new_Token(NULL, t->type, t->text, 0);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004898 tail = &tt->next;
4899 }
4900 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004901
H. Peter Anvine2c80182005-01-15 22:15:51 +00004902 istk->expansion = ll;
4903 }
4904 } else {
4905 /*
4906 * Check whether a `%rep' was started and not ended
4907 * within this macro expansion. This can happen and
4908 * should be detected. It's a fatal error because
4909 * I'm too confused to work out how to recover
4910 * sensibly from it.
4911 */
4912 if (defining) {
4913 if (defining->name)
4914 error(ERR_PANIC,
4915 "defining with name in expansion");
4916 else if (istk->mstk->name)
4917 error(ERR_FATAL,
4918 "`%%rep' without `%%endrep' within"
4919 " expansion of macro `%s'",
4920 istk->mstk->name);
4921 }
H. Peter Anvin87bc6192002-04-30 20:53:16 +00004922
H. Peter Anvine2c80182005-01-15 22:15:51 +00004923 /*
4924 * FIXME: investigate the relationship at this point between
4925 * istk->mstk and l->finishes
4926 */
4927 {
4928 MMacro *m = istk->mstk;
4929 istk->mstk = m->next_active;
4930 if (m->name) {
4931 /*
4932 * This was a real macro call, not a %rep, and
4933 * therefore the parameter information needs to
4934 * be freed.
4935 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004936 if (m->prev) {
4937 pop_mmacro(m);
4938 l->finishes->in_progress --;
4939 } else {
Keith Kanios891775e2009-07-11 06:08:54 -05004940 nasm_free(m->params);
4941 free_tlist(m->iline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004942 nasm_free(m->paramlen);
4943 l->finishes->in_progress = 0;
4944 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004945 } else
4946 free_mmacro(m);
4947 }
4948 istk->expansion = l->next;
4949 nasm_free(l);
4950 list->downlevel(LIST_MACRO);
4951 }
4952 }
4953 while (1) { /* until we get a line we can use */
H. Peter Anvineba20a72002-04-30 20:53:55 +00004954
H. Peter Anvine2c80182005-01-15 22:15:51 +00004955 if (istk->expansion) { /* from a macro expansion */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004956 char *p;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004957 Line *l = istk->expansion;
4958 if (istk->mstk)
4959 istk->mstk->lineno++;
4960 tline = l->first;
4961 istk->expansion = l->next;
4962 nasm_free(l);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004963 p = detoken(tline, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004964 list->line(LIST_MACRO, p);
4965 nasm_free(p);
4966 break;
4967 }
4968 line = read_line();
4969 if (line) { /* from the current input file */
4970 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004971 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004972 nasm_free(line);
4973 break;
4974 }
4975 /*
4976 * The current file has ended; work down the istk
4977 */
4978 {
4979 Include *i = istk;
4980 fclose(i->fp);
Cyrill Gorcunov530c1ed2010-09-12 02:00:05 +04004981 if (i->conds) {
4982 /* nasm_error can't be conditionally suppressed */
4983 nasm_error(ERR_FATAL,
4984 "expected `%%endif' before end of file");
4985 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004986 /* only set line and file name if there's a next node */
4987 if (i->next) {
4988 src_set_linnum(i->lineno);
4989 nasm_free(src_set_fname(i->fname));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004990 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004991 istk = i->next;
4992 list->downlevel(LIST_INCLUDE);
4993 nasm_free(i);
4994 if (!istk)
4995 return NULL;
Victor van den Elzen4c9d6222008-10-01 13:08:50 +02004996 if (istk->expansion && istk->expansion->finishes)
4997 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004998 }
4999 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005000
H. Peter Anvine2c80182005-01-15 22:15:51 +00005001 /*
5002 * We must expand MMacro parameters and MMacro-local labels
5003 * _before_ we plunge into directive processing, to cope
5004 * with things like `%define something %1' such as STRUC
5005 * uses. Unless we're _defining_ a MMacro, in which case
5006 * those tokens should be left alone to go into the
5007 * definition; and unless we're in a non-emitting
5008 * condition, in which case we don't want to meddle with
5009 * anything.
5010 */
Charles Crayned4200be2008-07-12 16:42:33 -07005011 if (!defining && !(istk->conds && !emitting(istk->conds->state))
H. Peter Anvin992fe752008-10-19 15:45:05 -07005012 && !(istk->mstk && !istk->mstk->in_progress)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005013 tline = expand_mmac_params(tline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005014 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00005015
H. Peter Anvine2c80182005-01-15 22:15:51 +00005016 /*
5017 * Check the line to see if it's a preprocessor directive.
5018 */
5019 if (do_directive(tline) == DIRECTIVE_FOUND) {
5020 continue;
5021 } else if (defining) {
5022 /*
5023 * We're defining a multi-line macro. We emit nothing
5024 * at all, and just
Keith Kaniosb7a89542007-04-12 02:40:54 +00005025 * shove the tokenized line on to the macro definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005026 */
5027 Line *l = nasm_malloc(sizeof(Line));
5028 l->next = defining->expansion;
5029 l->first = tline;
H. Peter Anvin538002d2008-06-28 18:30:27 -07005030 l->finishes = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005031 defining->expansion = l;
5032 continue;
5033 } else if (istk->conds && !emitting(istk->conds->state)) {
5034 /*
5035 * We're in a non-emitting branch of a condition block.
5036 * Emit nothing at all, not even a blank line: when we
5037 * emerge from the condition we'll give a line-number
5038 * directive so we keep our place correctly.
5039 */
5040 free_tlist(tline);
5041 continue;
5042 } else if (istk->mstk && !istk->mstk->in_progress) {
5043 /*
5044 * We're in a %rep block which has been terminated, so
5045 * we're walking through to the %endrep without
5046 * emitting anything. Emit nothing at all, not even a
5047 * blank line: when we emerge from the %rep block we'll
5048 * give a line-number directive so we keep our place
5049 * correctly.
5050 */
5051 free_tlist(tline);
5052 continue;
5053 } else {
5054 tline = expand_smacro(tline);
5055 if (!expand_mmacro(tline)) {
5056 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00005057 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005058 */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07005059 line = detoken(tline, true);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005060 free_tlist(tline);
5061 break;
5062 } else {
5063 continue; /* expand_mmacro calls free_tlist */
5064 }
5065 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005066 }
5067
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005068 return line;
5069}
5070
H. Peter Anvine2c80182005-01-15 22:15:51 +00005071static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005072{
H. Peter Anvine2c80182005-01-15 22:15:51 +00005073 if (defining) {
H. Peter Anvin89cee572009-07-15 09:16:54 -04005074 if (defining->name) {
Victor van den Elzen8f1120f2008-07-16 13:41:37 +02005075 error(ERR_NONFATAL,
5076 "end of file while still defining macro `%s'",
5077 defining->name);
5078 } else {
5079 error(ERR_NONFATAL, "end of file while still in %%rep");
5080 }
5081
H. Peter Anvine2c80182005-01-15 22:15:51 +00005082 free_mmacro(defining);
Cyrill Gorcunova327c652010-02-14 17:19:38 +03005083 defining = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005084 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005085 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005086 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07005087 free_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00005088 while (istk) {
5089 Include *i = istk;
5090 istk = istk->next;
5091 fclose(i->fp);
5092 nasm_free(i->fname);
5093 nasm_free(i);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005094 }
5095 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005096 ctx_pop();
H. Peter Anvin86877b22008-06-20 15:55:45 -07005097 nasm_free(src_set_fname(NULL));
H. Peter Anvine2c80182005-01-15 22:15:51 +00005098 if (pass == 0) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005099 IncPath *i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005100 free_llist(predef);
5101 delete_Blocks();
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005102 while ((i = ipath)) {
5103 ipath = i->next;
5104 if (i->path)
5105 nasm_free(i->path);
5106 nasm_free(i);
5107 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07005108 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005109}
5110
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005111void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005112{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005113 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07005114
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005115 i = nasm_malloc(sizeof(IncPath));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07005116 i->path = path ? nasm_strdup(path) : NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005117 i->next = NULL;
5118
H. Peter Anvin89cee572009-07-15 09:16:54 -04005119 if (ipath) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005120 IncPath *j = ipath;
H. Peter Anvin89cee572009-07-15 09:16:54 -04005121 while (j->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005122 j = j->next;
5123 j->next = i;
5124 } else {
5125 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005126 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005127}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005128
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005129void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005130{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005131 Token *inc, *space, *name;
5132 Line *l;
5133
H. Peter Anvin734b1882002-04-30 21:01:08 +00005134 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
5135 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
5136 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005137
5138 l = nasm_malloc(sizeof(Line));
5139 l->next = predef;
5140 l->first = inc;
H. Peter Anvin538002d2008-06-28 18:30:27 -07005141 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005142 predef = l;
5143}
5144
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005145void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005146{
5147 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005148 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005149 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005150
5151 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00005152 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5153 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005154 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005155 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00005156 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005157 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005158 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005159
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005160 l = nasm_malloc(sizeof(Line));
5161 l->next = predef;
5162 l->first = def;
H. Peter Anvin538002d2008-06-28 18:30:27 -07005163 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005164 predef = l;
5165}
5166
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005167void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00005168{
5169 Token *def, *space;
5170 Line *l;
5171
H. Peter Anvin734b1882002-04-30 21:01:08 +00005172 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5173 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00005174 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00005175
5176 l = nasm_malloc(sizeof(Line));
5177 l->next = predef;
5178 l->first = def;
H. Peter Anvin538002d2008-06-28 18:30:27 -07005179 l->finishes = NULL;
H. Peter Anvin620515a2002-04-30 20:57:38 +00005180 predef = l;
5181}
5182
Keith Kaniosb7a89542007-04-12 02:40:54 +00005183/*
5184 * Added by Keith Kanios:
5185 *
5186 * This function is used to assist with "runtime" preprocessor
5187 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
5188 *
5189 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
5190 * PASS A VALID STRING TO THIS FUNCTION!!!!!
5191 */
5192
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005193void pp_runtime(char *definition)
Keith Kaniosb7a89542007-04-12 02:40:54 +00005194{
5195 Token *def;
H. Peter Anvin70653092007-10-19 14:42:29 -07005196
Keith Kaniosb7a89542007-04-12 02:40:54 +00005197 def = tokenize(definition);
H. Peter Anvin89cee572009-07-15 09:16:54 -04005198 if (do_directive(def) == NO_DIRECTIVE_FOUND)
Keith Kaniosb7a89542007-04-12 02:40:54 +00005199 free_tlist(def);
H. Peter Anvin70653092007-10-19 14:42:29 -07005200
Keith Kaniosb7a89542007-04-12 02:40:54 +00005201}
5202
H. Peter Anvina70547f2008-07-19 21:44:26 -07005203void pp_extra_stdmac(macros_t *macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005204{
H. Peter Anvin76690a12002-04-30 20:52:49 +00005205 extrastdmac = macros;
5206}
5207
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005208static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005209{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005210 char numbuf[20];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005211 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00005212 tok->text = nasm_strdup(numbuf);
5213 tok->type = TOK_NUMBER;
5214}
5215
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005216Preproc nasmpp = {
5217 pp_reset,
5218 pp_getline,
5219 pp_cleanup
5220};