blob: 642c54f93f59b9ee4b7d1d81582e1dd2720881dd [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;
Keith Kaniosb307a4f2010-11-06 17:41:51 -050085typedef struct ExpDef ExpDef;
86typedef struct ExpInv ExpInv;
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 Anvind7ed89e2002-04-30 20:52:08 +0000117 * The context stack is composed of a linked list of these.
118 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000119struct Context {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000120 Context *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000121 char *name;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700122 struct hash_table localmac;
Keith Kaniosb7a89542007-04-12 02:40:54 +0000123 uint32_t number;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000124};
125
126/*
127 * This is the internal form which we break input lines up into.
128 * Typically stored in linked lists.
129 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000130 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
131 * necessarily used as-is, but is intended to denote the number of
132 * the substituted parameter. So in the definition
133 *
134 * %define a(x,y) ( (x) & ~(y) )
H. Peter Anvin70653092007-10-19 14:42:29 -0700135 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000136 * the token representing `x' will have its type changed to
137 * TOK_SMAC_PARAM, but the one representing `y' will be
138 * TOK_SMAC_PARAM+1.
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000139 *
140 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
141 * which doesn't need quotes around it. Used in the pre-include
142 * mechanism as an alternative to trying to find a sensible type of
143 * quote to use on the filename we were passed.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000144 */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000145enum pp_token_type {
146 TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID,
147 TOK_PREPROC_ID, TOK_STRING,
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700148 TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER,
149 TOK_INTERNAL_STRING,
150 TOK_PREPROC_Q, TOK_PREPROC_QQ,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300151 TOK_PASTE, /* %+ */
152 TOK_INDIRECT, /* %[...] */
153 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
154 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000155};
156
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +0400157#define PP_CONCAT_MASK(x) (1 << (x))
158
Cyrill Gorcunov575d4282010-10-06 00:25:55 +0400159struct tokseq_match {
160 int mask_head;
161 int mask_tail;
162};
163
H. Peter Anvine2c80182005-01-15 22:15:51 +0000164struct Token {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000165 Token *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000166 char *text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -0700167 union {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300168 SMacro *mac; /* associated macro for TOK_SMAC_END */
169 size_t len; /* scratch length field */
170 } a; /* Auxiliary data */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000171 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000172};
173
174/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500175 * Expansion definitions are stored as a linked list of
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000176 * these, which is essentially a container to allow several linked
177 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700178 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000179 * Note that in this module, linked lists are treated as stacks
180 * wherever possible. For this reason, Lines are _pushed_ on to the
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500181 * `last' field in ExpDef structures, so that the linked list,
182 * if walked, would emit the expansion lines in the proper order.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000183 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000184struct Line {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000185 Line *next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000186 Token *first;
187};
188
189/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500190 * Expansion Types
191 */
192enum pp_exp_type {
193 EXP_NONE = 0, EXP_PREDEF,
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300194 EXP_MMACRO, EXP_REP,
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500195 EXP_IF, EXP_WHILE,
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300196 EXP_COMMENT, EXP_FINAL,
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500197 EXP_MAX = INT_MAX /* Keep compiler from reducing the range */
198};
199
200/*
201 * Store the definition of an expansion, in which is any
202 * preprocessor directive that has an ending pair.
203 *
204 * This design allows for arbitrary expansion/recursion depth,
205 * upto the DEADMAN_LIMIT.
206 *
207 * The `next' field is used for storing ExpDef in hash tables; the
208 * `prev' field is for the global `expansions` linked-list.
209 */
210struct ExpDef {
211 ExpDef *prev; /* previous definition */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300212 ExpDef *next; /* next in hash table */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500213 enum pp_exp_type type; /* expansion type */
214 char *name; /* definition name */
215 int nparam_min, nparam_max;
216 bool casesense;
217 bool plus; /* is the last parameter greedy? */
218 bool nolist; /* is this expansion listing-inhibited? */
219 Token *dlist; /* all defaults as one list */
220 Token **defaults; /* parameter default pointers */
221 int ndefs; /* number of default parameters */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300222
223 int prepend; /* label prepend state */
224 Line *label;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500225 Line *line;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300226 Line *last;
227 int linecount; /* number of lines within expansion */
228
229 int64_t def_depth; /* current number of definition pairs deep */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500230 int64_t cur_depth; /* current number of expansions */
231 int64_t max_depth; /* maximum number of expansions allowed */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300232
233 int state; /* condition state */
234 bool ignoring; /* ignoring definition lines */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500235};
236
237/*
238 * Store the invocation of an expansion.
239 *
240 * The `prev' field is for the `istk->expansion` linked-list.
241 *
242 * When an expansion is being expanded, `params', `iline', `nparam',
243 * `paramlen', `rotate' and `unique' are local to the invocation.
244 */
245struct ExpInv {
246 ExpInv *prev; /* previous invocation */
247 enum pp_exp_type type; /* expansion type */
248 ExpDef *def; /* pointer to expansion definition */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300249 char *name; /* invocation name */
250 Line *label; /* pointer to label */
251 char *label_text; /* pointer to label text */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500252 Line *current; /* pointer to current line in invocation */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300253
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500254 Token **params; /* actual parameters */
255 Token *iline; /* invocation line */
256 unsigned int nparam, rotate;
257 int *paramlen;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300258
259 uint64_t unique;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500260 bool emitting;
261 int lineno; /* current line number in expansion */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300262 int linnum; /* line number at invocation */
263 int relno; /* relative line number at invocation */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500264};
265
266/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000267 * To handle an arbitrary level of file inclusion, we maintain a
268 * stack (ie linked list) of these things.
269 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000270struct Include {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000271 Include *next;
272 FILE *fp;
273 Cond *conds;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500274 ExpInv *expansion;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000275 char *fname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000276 int lineno, lineinc;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300277 int mmac_depth;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000278};
279
280/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000281 * Include search path. This is simply a list of strings which get
282 * prepended, in turn, to the name of an include file, in an
283 * attempt to find the file if it's not in the current directory.
284 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000285struct IncPath {
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000286 IncPath *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000287 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000288};
289
290/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000291 * Conditional assembly: we maintain a separate stack of these for
292 * each level of file inclusion. (The only reason we keep the
293 * stacks separate is to ensure that a stray `%endif' in a file
294 * included from within the true branch of a `%if' won't terminate
295 * it and cause confusion: instead, rightly, it'll cause an error.)
296 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000297enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000298 /*
299 * These states are for use just after %if or %elif: IF_TRUE
300 * means the condition has evaluated to truth so we are
301 * currently emitting, whereas IF_FALSE means we are not
302 * currently emitting but will start doing so if a %else comes
303 * up. In these states, all directives are admissible: %elif,
304 * %else and %endif. (And of course %if.)
305 */
306 COND_IF_TRUE, COND_IF_FALSE,
307 /*
308 * These states come up after a %else: ELSE_TRUE means we're
309 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
310 * any %elif or %else will cause an error.
311 */
312 COND_ELSE_TRUE, COND_ELSE_FALSE,
313 /*
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200314 * These states mean that we're not emitting now, and also that
315 * nothing until %endif will be emitted at all. COND_DONE is
316 * used when we've had our moment of emission
317 * and have now started seeing %elifs. COND_NEVER is used when
318 * the condition construct in question is contained within a
319 * non-emitting branch of a larger condition construct,
320 * or if there is an error.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000321 */
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200322 COND_DONE, COND_NEVER
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000323};
324#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
325
H. Peter Anvin70653092007-10-19 14:42:29 -0700326/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000327 * These defines are used as the possible return values for do_directive
328 */
329#define NO_DIRECTIVE_FOUND 0
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300330#define DIRECTIVE_FOUND 1
Ed Beroset3ab3f412002-06-11 03:31:49 +0000331
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000332/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500333 * This define sets the upper limit for smacro and expansions
Keith Kanios852f1ee2009-07-12 00:19:55 -0500334 */
335#define DEADMAN_LIMIT (1 << 20)
336
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +0400337/* max reps */
338#define REP_LIMIT ((INT64_C(1) << 62))
339
Keith Kanios852f1ee2009-07-12 00:19:55 -0500340/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000341 * Condition codes. Note that we use c_ prefix not C_ because C_ is
342 * used in nasm.h for the "real" condition codes. At _this_ level,
343 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
344 * ones, so we need a different enum...
345 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700346static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000347 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
348 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000349 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000350};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700351enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000352 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
353 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 -0700354 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
355 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000356};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700357static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000358 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
359 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 +0000360 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000361};
362
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000363/* For TASM compatibility we need to be able to recognise TASM compatible
364 * conditional compilation directives. Using the NASM pre-processor does
365 * not work, so we look for them specifically from the following list and
366 * then jam in the equivalent NASM directive into the input stream.
367 */
368
H. Peter Anvine2c80182005-01-15 22:15:51 +0000369enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000370 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
371 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
372};
373
H. Peter Anvin476d2862007-10-02 22:04:15 -0700374static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000375 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
376 "ifndef", "include", "local"
377};
378
379static int StackSize = 4;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000380static char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000381static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800382static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000383
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000384static Context *cstk;
385static Include *istk;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000386static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000387
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300388static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700389static StrList **dephead, **deptail; /* Dependency list */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000390
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300391static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000392
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000393static Line *predef = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700394static bool do_predef;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000395
396static ListGen *list;
397
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000398/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500399 * The current set of expansion definitions we have defined.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000400 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500401static struct hash_table expdefs;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000402
403/*
404 * The current set of single-line macros we have defined.
405 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700406static struct hash_table smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000407
408/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500409 * Linked List of all active expansion definitions
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000410 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500411struct ExpDef *expansions = NULL;
412
413/*
414 * The expansion we are currently defining
415 */
416static ExpDef *defining = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000417
Charles Crayned4200be2008-07-12 16:42:33 -0700418static uint64_t nested_mac_count;
419static uint64_t nested_rep_count;
420
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000421/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500422 * Linked-list of lines to preprocess, prior to cleanup
423 */
424static Line *finals = NULL;
425static bool in_final = false;
426
427/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000428 * The number of macro parameters to allocate space for at a time.
429 */
430#define PARAM_DELTA 16
431
432/*
H. Peter Anvina4835d42008-05-20 14:21:29 -0700433 * The standard macro set: defined in macros.c in the array nasm_stdmac.
434 * This gives our position in the macro set, when we're processing it.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000435 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700436static macros_t *stdmacpos;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000437
438/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000439 * The extra standard macros that come from the object format, if
440 * any.
441 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700442static macros_t *extrastdmac = NULL;
H. Peter Anvincfb71762008-06-20 15:20:16 -0700443static bool any_extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000444
445/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000446 * Tokens are allocated in blocks to improve speed
447 */
448#define TOKEN_BLOCKSIZE 4096
449static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000450struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000451 Blocks *next;
452 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000453};
454
455static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000456
457/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000458 * Forward declarations.
459 */
H. Peter Anvin734b1882002-04-30 21:01:08 +0000460static Token *expand_mmac_params(Token * tline);
461static Token *expand_smacro(Token * tline);
462static Token *expand_id(Token * tline);
H. Peter Anvinf8ad5322009-02-21 17:55:08 -0800463static Context *get_ctx(const char *name, const char **namep,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300464 bool all_contexts);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700465static void make_tok_num(Token * tok, int64_t val);
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000466static void error(int severity, const char *fmt, ...);
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200467static void error_precond(int severity, const char *fmt, ...);
H. Peter Anvince616072002-04-30 21:02:23 +0000468static void *new_Block(size_t size);
469static void delete_Blocks(void);
H. Peter Anvinc751e862008-06-09 10:18:45 -0700470static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300471 const char *text, int txtlen);
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500472static Token *copy_Token(Token * tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000473static Token *delete_Token(Token * t);
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500474static Line *new_Line(void);
475static ExpDef *new_ExpDef(int exp_type);
476static ExpInv *new_ExpInv(int exp_type, ExpDef *ed);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000477
478/*
479 * Macros for safe checking of token pointers, avoid *(NULL)
480 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300481#define tok_type_(x,t) ((x) && (x)->type == (t))
482#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
483#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
484#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000485
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300486/*
H. Peter Anvin077fb932010-07-20 14:56:30 -0700487 * nasm_unquote with error if the string contains NUL characters.
488 * If the string contains NUL characters, issue an error and return
489 * the C len, i.e. truncate at the NUL.
490 */
491static size_t nasm_unquote_cstr(char *qstr, enum preproc_token directive)
492{
493 size_t len = nasm_unquote(qstr, NULL);
494 size_t clen = strlen(qstr);
495
496 if (len != clen)
497 error(ERR_NONFATAL, "NUL character in `%s' directive",
498 pp_directives[directive]);
499
500 return clen;
501}
502
503/*
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700504 * In-place reverse a list of tokens.
505 */
506static Token *reverse_tokens(Token *t)
507{
508 Token *prev = NULL;
509 Token *next;
510
511 while (t) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500512 next = t->next;
513 t->next = prev;
514 prev = t;
515 t = next;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300516 }
H. Peter Anvinb40992c2010-09-15 08:57:21 -0700517
518 return prev;
519}
520
521/*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300522 * Handle TASM specific directives, which do not contain a % in
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000523 * front of them. We do it here because I could not find any other
524 * place to do it for the moment, and it is a hack (ideally it would
525 * be nice to be able to use the NASM pre-processor to do it).
526 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000527static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000528{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000529 int32_t i, j, k, m, len;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400530 char *p, *q, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000531
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400532 p = nasm_skip_spaces(line);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000533
534 /* Binary search for the directive name */
535 i = -1;
Cyrill Gorcunova7319242010-06-03 22:04:36 +0400536 j = ARRAY_SIZE(tasm_directives);
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +0400537 q = nasm_skip_word(p);
538 len = q - p;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000539 if (len) {
540 oldchar = p[len];
541 p[len] = 0;
542 while (j - i > 1) {
543 k = (j + i) / 2;
544 m = nasm_stricmp(p, tasm_directives[k]);
545 if (m == 0) {
546 /* We have found a directive, so jam a % in front of it
547 * so that NASM will then recognise it as one if it's own.
548 */
549 p[len] = oldchar;
550 len = strlen(p);
551 oldline = line;
552 line = nasm_malloc(len + 2);
553 line[0] = '%';
554 if (k == TM_IFDIFI) {
H. Peter Anvin18f48792009-06-27 15:56:27 -0700555 /*
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300556 * NASM does not recognise IFDIFI, so we convert
557 * it to %if 0. This is not used in NASM
558 * compatible code, but does need to parse for the
559 * TASM macro package.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000560 */
H. Peter Anvin18f48792009-06-27 15:56:27 -0700561 strcpy(line + 1, "if 0");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000562 } else {
563 memcpy(line + 1, p, len + 1);
564 }
565 nasm_free(oldline);
566 return line;
567 } else if (m < 0) {
568 j = k;
569 } else
570 i = k;
571 }
572 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000573 }
574 return line;
575}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000576
H. Peter Anvin76690a12002-04-30 20:52:49 +0000577/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000578 * The pre-preprocessing stage... This function translates line
579 * number indications as they emerge from GNU cpp (`# lineno "file"
580 * flags') into NASM preprocessor line number indications (`%line
581 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000582 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000583static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000584{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000585 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000586 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000587
H. Peter Anvine2c80182005-01-15 22:15:51 +0000588 if (line[0] == '#' && line[1] == ' ') {
589 oldline = line;
590 fname = oldline + 2;
591 lineno = atoi(fname);
592 fname += strspn(fname, "0123456789 ");
593 if (*fname == '"')
594 fname++;
595 fnlen = strcspn(fname, "\"");
596 line = nasm_malloc(20 + fnlen);
597 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
598 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000599 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000600 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000601 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000602 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000603}
604
605/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000606 * Free a linked list of tokens.
607 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000608static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000609{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400610 while (list)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000611 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000612}
613
614/*
615 * Free a linked list of lines.
616 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000617static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000618{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400619 Line *l, *tmp;
620 list_for_each_safe(l, tmp, list) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000621 free_tlist(l->first);
622 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000623 }
624}
625
626/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500627 * Free an ExpDef
H. Peter Anvineba20a72002-04-30 20:53:55 +0000628 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500629static void free_expdef(ExpDef * ed)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000630{
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500631 nasm_free(ed->name);
632 free_tlist(ed->dlist);
633 nasm_free(ed->defaults);
634 free_llist(ed->line);
635 nasm_free(ed);
636}
637
638/*
639 * Free an ExpInv
640 */
641static void free_expinv(ExpInv * ei)
642{
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300643 if (ei->name != NULL)
644 nasm_free(ei->name);
645 if (ei->label_text != NULL)
646 nasm_free(ei->label_text);
647 nasm_free(ei);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000648}
649
650/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700651 * Free all currently defined macros, and free the hash tables
652 */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700653static void free_smacro_table(struct hash_table *smt)
H. Peter Anvin97a23472007-09-16 17:57:25 -0700654{
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400655 SMacro *s, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700656 const char *key;
657 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700658
H. Peter Anvin072771e2008-05-22 13:17:51 -0700659 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300660 nasm_free((void *)key);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +0400661 list_for_each_safe(s, tmp, s) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300662 nasm_free(s->name);
663 free_tlist(s->expansion);
664 nasm_free(s);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300665 }
H. Peter Anvin97a23472007-09-16 17:57:25 -0700666 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700667 hash_free(smt);
668}
669
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500670static void free_expdef_table(struct hash_table *edt)
H. Peter Anvin072771e2008-05-22 13:17:51 -0700671{
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500672 ExpDef *ed, *tmp;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700673 const char *key;
674 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700675
676 it = NULL;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500677 while ((ed = hash_iterate(edt, &it, &key)) != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300678 nasm_free((void *)key);
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500679 list_for_each_safe(ed ,tmp, ed)
680 free_expdef(ed);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700681 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500682 hash_free(edt);
H. Peter Anvin072771e2008-05-22 13:17:51 -0700683}
684
685static void free_macros(void)
686{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700687 free_smacro_table(&smacros);
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500688 free_expdef_table(&expdefs);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700689}
690
691/*
692 * Initialize the hash tables
693 */
694static void init_macros(void)
695{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700696 hash_init(&smacros, HASH_LARGE);
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500697 hash_init(&expdefs, HASH_LARGE);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700698}
699
700/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000701 * Pop the context stack.
702 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000703static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000704{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000705 Context *c = cstk;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000706
707 cstk = cstk->next;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700708 free_smacro_table(&c->localmac);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000709 nasm_free(c->name);
710 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000711}
712
H. Peter Anvin072771e2008-05-22 13:17:51 -0700713/*
714 * Search for a key in the hash index; adding it if necessary
715 * (in which case we initialize the data pointer to NULL.)
716 */
717static void **
718hash_findi_add(struct hash_table *hash, const char *str)
719{
720 struct hash_insert hi;
721 void **r;
722 char *strx;
723
724 r = hash_findi(hash, str, &hi);
725 if (r)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300726 return r;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700727
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300728 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700729 return hash_add(&hi, strx, NULL);
730}
731
732/*
733 * Like hash_findi, but returns the data element rather than a pointer
734 * to it. Used only when not adding a new element, hence no third
735 * argument.
736 */
737static void *
738hash_findix(struct hash_table *hash, const char *str)
739{
740 void **p;
741
742 p = hash_findi(hash, str, NULL);
743 return p ? *p : NULL;
744}
745
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400746/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500747 * read line from standard macros set,
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400748 * if there no more left -- return NULL
749 */
750static char *line_from_stdmac(void)
751{
752 unsigned char c;
753 const unsigned char *p = stdmacpos;
754 char *line, *q;
755 size_t len = 0;
756
757 if (!stdmacpos)
758 return NULL;
759
760 while ((c = *p++)) {
761 if (c >= 0x80)
762 len += pp_directives_len[c - 0x80] + 1;
763 else
764 len++;
765 }
766
767 line = nasm_malloc(len + 1);
768 q = line;
769 while ((c = *stdmacpos++)) {
770 if (c >= 0x80) {
771 memcpy(q, pp_directives[c - 0x80], pp_directives_len[c - 0x80]);
772 q += pp_directives_len[c - 0x80];
773 *q++ = ' ';
774 } else {
775 *q++ = c;
776 }
777 }
778 stdmacpos = p;
779 *q = '\0';
780
781 if (!*stdmacpos) {
782 /* This was the last of the standard macro chain... */
783 stdmacpos = NULL;
784 if (any_extrastdmac) {
785 stdmacpos = extrastdmac;
786 any_extrastdmac = false;
787 } else if (do_predef) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300788 ExpInv *ei;
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400789 Line *pd, *l;
790 Token *head, **tail, *t;
791
792 /*
793 * Nasty hack: here we push the contents of
794 * `predef' on to the top-level expansion stack,
795 * since this is the most convenient way to
796 * implement the pre-include and pre-define
797 * features.
798 */
799 list_for_each(pd, predef) {
800 head = NULL;
801 tail = &head;
802 list_for_each(t, pd->first) {
803 *tail = new_Token(NULL, t->type, t->text, 0);
804 tail = &(*tail)->next;
805 }
806
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500807 l = new_Line();
808 l->first = head;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300809 ei = new_ExpInv(EXP_PREDEF, NULL);
810 ei->current = l;
811 ei->emitting = true;
812 ei->prev = istk->expansion;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500813 istk->expansion = ei;
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400814 }
815 do_predef = false;
816 }
817 }
818
819 return line;
820}
821
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000822#define BUF_DELTA 512
823/*
824 * Read a line from the top file in istk, handling multiple CR/LFs
825 * at the end of the line read, and handling spurious ^Zs. Will
826 * return lines from the standard macro set if this has not already
827 * been done.
828 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000829static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000830{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000831 char *buffer, *p, *q;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000832 int bufsize, continued_count;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000833
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400834 /*
835 * standart macros set (predefined) goes first
836 */
837 p = line_from_stdmac();
838 if (p)
839 return p;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700840
Cyrill Gorcunov15bdc512010-07-13 11:27:41 +0400841 /*
842 * regular read from a file
843 */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000844 bufsize = BUF_DELTA;
845 buffer = nasm_malloc(BUF_DELTA);
846 p = buffer;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000847 continued_count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000848 while (1) {
849 q = fgets(p, bufsize - (p - buffer), istk->fp);
850 if (!q)
851 break;
852 p += strlen(p);
853 if (p > buffer && p[-1] == '\n') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300854 /*
855 * Convert backslash-CRLF line continuation sequences into
856 * nothing at all (for DOS and Windows)
857 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000858 if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) {
859 p -= 3;
860 *p = 0;
861 continued_count++;
862 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300863 /*
864 * Also convert backslash-LF line continuation sequences into
865 * nothing at all (for Unix)
866 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000867 else if (((p - 1) > buffer) && (p[-2] == '\\')) {
868 p -= 2;
869 *p = 0;
870 continued_count++;
871 } else {
872 break;
873 }
874 }
875 if (p - buffer > bufsize - 10) {
Keith Kaniosb7a89542007-04-12 02:40:54 +0000876 int32_t offset = p - buffer;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000877 bufsize += BUF_DELTA;
878 buffer = nasm_realloc(buffer, bufsize);
879 p = buffer + offset; /* prevent stale-pointer problems */
880 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000881 }
882
H. Peter Anvine2c80182005-01-15 22:15:51 +0000883 if (!q && p == buffer) {
884 nasm_free(buffer);
885 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000886 }
887
Cyrill Gorcunova5aea572010-11-11 10:14:45 +0300888 src_set_linnum(src_get_linnum() + istk->lineinc +
889 (continued_count * istk->lineinc));
H. Peter Anvineba20a72002-04-30 20:53:55 +0000890
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000891 /*
892 * Play safe: remove CRs as well as LFs, if any of either are
893 * present at the end of the line.
894 */
H. Peter Anvineba20a72002-04-30 20:53:55 +0000895 while (--p >= buffer && (*p == '\n' || *p == '\r'))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000896 *p = '\0';
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000897
898 /*
899 * Handle spurious ^Z, which may be inserted into source files
900 * by some file transfer utilities.
901 */
902 buffer[strcspn(buffer, "\032")] = '\0';
903
H. Peter Anvin734b1882002-04-30 21:01:08 +0000904 list->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000905
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000906 return buffer;
907}
908
909/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000910 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000911 * don't need to parse the value out of e.g. numeric tokens: we
912 * simply split one string into many.
913 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000914static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000915{
H. Peter Anvinca544db2008-10-19 19:30:11 -0700916 char c, *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000917 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000918 Token *list = NULL;
919 Token *t, **tail = &list;
920
H. Peter Anvine2c80182005-01-15 22:15:51 +0000921 while (*line) {
922 p = line;
923 if (*p == '%') {
924 p++;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300925 if (*p == '+' && !nasm_isdigit(p[1])) {
926 p++;
927 type = TOK_PASTE;
928 } else if (nasm_isdigit(*p) ||
929 ((*p == '-' || *p == '+') && nasm_isdigit(p[1]))) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000930 do {
931 p++;
932 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700933 while (nasm_isdigit(*p));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000934 type = TOK_PREPROC_ID;
935 } else if (*p == '{') {
936 p++;
Keith Kaniosb307a4f2010-11-06 17:41:51 -0500937 while (*p && *p != '}') {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000938 p[-1] = *p;
939 p++;
940 }
941 p[-1] = '\0';
942 if (*p)
943 p++;
944 type = TOK_PREPROC_ID;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300945 } else if (*p == '[') {
946 int lvl = 1;
947 line += 2; /* Skip the leading %[ */
948 p++;
949 while (lvl && (c = *p++)) {
950 switch (c) {
951 case ']':
952 lvl--;
953 break;
954 case '%':
955 if (*p == '[')
956 lvl++;
957 break;
958 case '\'':
959 case '\"':
960 case '`':
Cyrill Gorcunovc6360a72010-07-13 13:32:19 +0400961 p = nasm_skip_string(p - 1) + 1;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +0300962 break;
963 default:
964 break;
965 }
966 }
967 p--;
968 if (*p)
969 *p++ = '\0';
970 if (lvl)
971 error(ERR_NONFATAL, "unterminated %[ construct");
972 type = TOK_INDIRECT;
973 } else if (*p == '?') {
974 type = TOK_PREPROC_Q; /* %? */
975 p++;
976 if (*p == '?') {
977 type = TOK_PREPROC_QQ; /* %?? */
978 p++;
979 }
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +0400980 } else if (*p == '!') {
981 type = TOK_PREPROC_ID;
982 p++;
983 if (isidchar(*p)) {
984 do {
985 p++;
986 } while (isidchar(*p));
987 } else if (*p == '\'' || *p == '\"' || *p == '`') {
988 p = nasm_skip_string(p);
989 if (*p)
990 p++;
991 else
992 error(ERR_NONFATAL|ERR_PASS1, "unterminated %! string");
993 } else {
994 /* %! without string or identifier */
995 type = TOK_OTHER; /* Legacy behavior... */
996 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000997 } else if (isidchar(*p) ||
998 ((*p == '!' || *p == '%' || *p == '$') &&
999 isidchar(p[1]))) {
1000 do {
1001 p++;
1002 }
1003 while (isidchar(*p));
1004 type = TOK_PREPROC_ID;
1005 } else {
1006 type = TOK_OTHER;
1007 if (*p == '%')
1008 p++;
1009 }
1010 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
1011 type = TOK_ID;
1012 p++;
1013 while (*p && isidchar(*p))
1014 p++;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07001015 } else if (*p == '\'' || *p == '"' || *p == '`') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001016 /*
1017 * A string token.
1018 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001019 type = TOK_STRING;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001020 p = nasm_skip_string(p);
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001021
H. Peter Anvine2c80182005-01-15 22:15:51 +00001022 if (*p) {
1023 p++;
1024 } else {
H. Peter Anvin917a3492008-09-24 09:14:49 -07001025 error(ERR_WARNING|ERR_PASS1, "unterminated string");
H. Peter Anvine2c80182005-01-15 22:15:51 +00001026 /* Handling unterminated strings by UNV */
1027 /* type = -1; */
1028 }
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001029 } else if (p[0] == '$' && p[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001030 type = TOK_OTHER; /* TOKEN_BASE */
Victor van den Elzenfb5f2512009-04-17 16:17:59 +02001031 p += 2;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001032 } else if (isnumstart(*p)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001033 bool is_hex = false;
1034 bool is_float = false;
1035 bool has_e = false;
1036 char c, *r;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001037
H. Peter Anvine2c80182005-01-15 22:15:51 +00001038 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001039 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001040 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001041
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001042 if (*p == '$') {
1043 p++;
1044 is_hex = true;
1045 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001046
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001047 for (;;) {
1048 c = *p++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001049
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001050 if (!is_hex && (c == 'e' || c == 'E')) {
1051 has_e = true;
1052 if (*p == '+' || *p == '-') {
1053 /*
1054 * e can only be followed by +/- if it is either a
1055 * prefixed hex number or a floating-point number
1056 */
1057 p++;
1058 is_float = true;
1059 }
1060 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
1061 is_hex = true;
1062 } else if (c == 'P' || c == 'p') {
1063 is_float = true;
1064 if (*p == '+' || *p == '-')
1065 p++;
1066 } else if (isnumchar(c) || c == '_')
1067 ; /* just advance */
1068 else if (c == '.') {
1069 /*
1070 * we need to deal with consequences of the legacy
1071 * parser, like "1.nolist" being two tokens
1072 * (TOK_NUMBER, TOK_ID) here; at least give it
1073 * a shot for now. In the future, we probably need
1074 * a flex-based scanner with proper pattern matching
1075 * to do it as well as it can be done. Nothing in
1076 * the world is going to help the person who wants
1077 * 0x123.p16 interpreted as two tokens, though.
1078 */
1079 r = p;
1080 while (*r == '_')
1081 r++;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001082
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001083 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
1084 (!is_hex && (*r == 'e' || *r == 'E')) ||
1085 (*r == 'p' || *r == 'P')) {
1086 p = r;
1087 is_float = true;
1088 } else
1089 break; /* Terminate the token */
1090 } else
1091 break;
1092 }
1093 p--; /* Point to first character beyond number */
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001094
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001095 if (p == line+1 && *line == '$') {
1096 type = TOK_OTHER; /* TOKEN_HERE */
1097 } else {
1098 if (has_e && !is_hex) {
1099 /* 1e13 is floating-point, but 1e13h is not */
1100 is_float = true;
1101 }
H. Peter Anvind784a082009-04-20 14:01:18 -07001102
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001103 type = is_float ? TOK_FLOAT : TOK_NUMBER;
1104 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -07001105 } else if (nasm_isspace(*p)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001106 type = TOK_WHITESPACE;
Cyrill Gorcunovf66ac7d2009-10-12 20:41:13 +04001107 p = nasm_skip_spaces(p);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001108 /*
1109 * Whitespace just before end-of-line is discarded by
1110 * pretending it's a comment; whitespace just before a
1111 * comment gets lumped into the comment.
1112 */
1113 if (!*p || *p == ';') {
1114 type = TOK_COMMENT;
1115 while (*p)
1116 p++;
1117 }
1118 } else if (*p == ';') {
1119 type = TOK_COMMENT;
1120 while (*p)
1121 p++;
1122 } else {
1123 /*
1124 * Anything else is an operator of some kind. We check
1125 * for all the double-character operators (>>, <<, //,
1126 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001127 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +00001128 */
1129 type = TOK_OTHER;
1130 if ((p[0] == '>' && p[1] == '>') ||
1131 (p[0] == '<' && p[1] == '<') ||
1132 (p[0] == '/' && p[1] == '/') ||
1133 (p[0] == '<' && p[1] == '=') ||
1134 (p[0] == '>' && p[1] == '=') ||
1135 (p[0] == '=' && p[1] == '=') ||
1136 (p[0] == '!' && p[1] == '=') ||
1137 (p[0] == '<' && p[1] == '>') ||
1138 (p[0] == '&' && p[1] == '&') ||
1139 (p[0] == '|' && p[1] == '|') ||
1140 (p[0] == '^' && p[1] == '^')) {
1141 p++;
1142 }
1143 p++;
1144 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001145
H. Peter Anvine2c80182005-01-15 22:15:51 +00001146 /* Handling unterminated string by UNV */
1147 /*if (type == -1)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001148 {
1149 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
1150 t->text[p-line] = *line;
1151 tail = &t->next;
1152 }
1153 else */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001154 if (type != TOK_COMMENT) {
1155 *tail = t = new_Token(NULL, type, line, p - line);
1156 tail = &t->next;
1157 }
1158 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001159 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001160 return list;
1161}
1162
H. Peter Anvince616072002-04-30 21:02:23 +00001163/*
1164 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -07001165 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +00001166 * deleted only all at once by the delete_Blocks function.
1167 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001168static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +00001169{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001170 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001171
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001172 /* first, get to the end of the linked list */
1173 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001174 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001175 /* now allocate the requested chunk */
1176 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001177
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001178 /* now allocate a new block for the next request */
1179 b->next = nasm_malloc(sizeof(Blocks));
1180 /* and initialize the contents of the new block */
1181 b->next->next = NULL;
1182 b->next->chunk = NULL;
1183 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +00001184}
1185
1186/*
1187 * this function deletes all managed blocks of memory
1188 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001189static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +00001190{
H. Peter Anvine2c80182005-01-15 22:15:51 +00001191 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +00001192
H. Peter Anvin70653092007-10-19 14:42:29 -07001193 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001194 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -07001195 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001196 * free it.
1197 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001198 while (b) {
1199 if (b->chunk)
1200 nasm_free(b->chunk);
1201 a = b;
1202 b = b->next;
1203 if (a != &blocks)
1204 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001205 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001206}
H. Peter Anvin734b1882002-04-30 21:01:08 +00001207
1208/*
H. Peter Anvin70653092007-10-19 14:42:29 -07001209 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +00001210 * back to the caller. It sets the type and text elements, and
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001211 * also the a.mac and next elements to NULL.
H. Peter Anvin734b1882002-04-30 21:01:08 +00001212 */
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001213static Token *new_Token(Token * next, enum pp_token_type type,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001214 const char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001215{
1216 Token *t;
1217 int i;
1218
H. Peter Anvin89cee572009-07-15 09:16:54 -04001219 if (!freeTokens) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001220 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1221 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1222 freeTokens[i].next = &freeTokens[i + 1];
1223 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001224 }
1225 t = freeTokens;
1226 freeTokens = t->next;
1227 t->next = next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001228 t->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001229 t->type = type;
H. Peter Anvin89cee572009-07-15 09:16:54 -04001230 if (type == TOK_WHITESPACE || !text) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001231 t->text = NULL;
1232 } else {
1233 if (txtlen == 0)
1234 txtlen = strlen(text);
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001235 t->text = nasm_malloc(txtlen+1);
1236 memcpy(t->text, text, txtlen);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001237 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +00001238 }
1239 return t;
1240}
1241
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001242static Token *copy_Token(Token * tline)
1243{
1244 Token *t, *tt, *first = NULL, *prev = NULL;
1245 int i;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03001246 for (tt = tline; tt != NULL; tt = tt->next) {
1247 if (!freeTokens) {
1248 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1249 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1250 freeTokens[i].next = &freeTokens[i + 1];
1251 freeTokens[i].next = NULL;
1252 }
1253 t = freeTokens;
1254 freeTokens = t->next;
1255 t->next = NULL;
1256 t->text = tt->text ? nasm_strdup(tt->text) : NULL;
1257 t->a.mac = tt->a.mac;
1258 t->a.len = tt->a.len;
1259 t->type = tt->type;
1260 if (prev != NULL) {
1261 prev->next = t;
1262 } else {
1263 first = t;
1264 }
1265 prev = t;
1266 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001267 return first;
1268}
1269
H. Peter Anvine2c80182005-01-15 22:15:51 +00001270static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001271{
1272 Token *next = t->next;
1273 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +00001274 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001275 freeTokens = t;
1276 return next;
1277}
1278
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001279/*
1280 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001281 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1282 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001283 */
H. Peter Anvin9e200162008-06-04 17:23:14 -07001284static char *detoken(Token * tlist, bool expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001285{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001286 Token *t;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001287 char *line, *p;
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001288 const char *q;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001289 int len = 0;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001290
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001291 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001292 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001293 char *v;
1294 char *q = t->text;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001295
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001296 v = t->text + 2;
1297 if (*v == '\'' || *v == '\"' || *v == '`') {
1298 size_t len = nasm_unquote(v, NULL);
1299 size_t clen = strlen(v);
H. Peter Anvin077fb932010-07-20 14:56:30 -07001300
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001301 if (len != clen) {
1302 error(ERR_NONFATAL | ERR_PASS1,
1303 "NUL character in %! string");
1304 v = NULL;
1305 }
1306 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001307
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001308 if (v) {
1309 char *p = getenv(v);
1310 if (!p) {
1311 error(ERR_NONFATAL | ERR_PASS1,
1312 "nonexistent environment variable `%s'", v);
1313 p = "";
1314 }
1315 t->text = nasm_strdup(p);
1316 }
1317 nasm_free(q);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001318 }
H. Peter Anvin077fb932010-07-20 14:56:30 -07001319
H. Peter Anvine2c80182005-01-15 22:15:51 +00001320 /* Expand local macros here and not during preprocessing */
1321 if (expand_locals &&
1322 t->type == TOK_PREPROC_ID && t->text &&
1323 t->text[0] == '%' && t->text[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001324 const char *q;
1325 char *p;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001326 Context *ctx = get_ctx(t->text, &q, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001327 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001328 char buffer[40];
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001329 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001330 p = nasm_strcat(buffer, q);
1331 nasm_free(t->text);
1332 t->text = p;
1333 }
1334 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001335
1336 /* Expand %? and %?? directives */
1337 if (expand_locals && (istk->expansion != NULL) &&
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03001338 ((t->type == TOK_PREPROC_Q) ||
1339 (t->type == TOK_PREPROC_QQ))) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001340 ExpInv *ei;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03001341 for (ei = istk->expansion; ei != NULL; ei = ei->prev){
1342 if (ei->type == EXP_MMACRO) {
1343 nasm_free(t->text);
1344 if (t->type == TOK_PREPROC_Q) {
1345 t->text = nasm_strdup(ei->name);
1346 } else {
1347 t->text = nasm_strdup(ei->def->name);
1348 }
1349 break;
1350 }
1351 }
1352 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001353
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001354 if (t->type == TOK_WHITESPACE)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001355 len++;
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001356 else if (t->text)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001357 len += strlen(t->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001358 }
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001359
H. Peter Anvin734b1882002-04-30 21:01:08 +00001360 p = line = nasm_malloc(len + 1);
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001361
1362 list_for_each(t, tlist) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001363 if (t->type == TOK_WHITESPACE) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001364 *p++ = ' ';
H. Peter Anvine2c80182005-01-15 22:15:51 +00001365 } else if (t->text) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001366 q = t->text;
1367 while (*q)
1368 *p++ = *q++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001369 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001370 }
1371 *p = '\0';
Cyrill Gorcunovf32ed142010-04-09 15:41:48 +04001372
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001373 return line;
1374}
1375
1376/*
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001377 * Initialize a new Line
1378 */
Cyrill Gorcunov29cb0bb2010-11-11 11:19:43 +03001379static inline Line *new_Line(void)
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001380{
Cyrill Gorcunov29cb0bb2010-11-11 11:19:43 +03001381 return (Line *)nasm_zalloc(sizeof(Line));
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001382}
1383
1384
1385/*
1386 * Initialize a new Expansion Definition
1387 */
1388static ExpDef *new_ExpDef(int exp_type)
1389{
Cyrill Gorcunovc5157742010-11-11 11:29:40 +03001390 ExpDef *ed = (ExpDef*)nasm_zalloc(sizeof(ExpDef));
1391 ed->type = exp_type;
1392 ed->casesense = true;
1393 ed->state = COND_NEVER;
1394
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03001395 return ed;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001396}
1397
1398
1399/*
1400 * Initialize a new Expansion Instance
1401 */
1402static ExpInv *new_ExpInv(int exp_type, ExpDef *ed)
1403{
Cyrill Gorcunovc5157742010-11-11 11:29:40 +03001404 ExpInv *ei = (ExpInv*)nasm_zalloc(sizeof(ExpInv));
1405 ei->type = exp_type;
1406 ei->def = ed;
1407 ei->unique = ++unique;
1408
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03001409 if ((istk->mmac_depth < 1) &&
1410 (istk->expansion == NULL) &&
1411 (ed != NULL) &&
1412 (ed->type != EXP_MMACRO) &&
1413 (ed->type != EXP_REP) &&
1414 (ed->type != EXP_WHILE)) {
1415 ei->linnum = src_get_linnum();
1416 src_set_linnum(ei->linnum - ed->linecount - 1);
1417 } else {
1418 ei->linnum = -1;
1419 }
1420 if ((istk->expansion == NULL) ||
1421 (ei->type == EXP_MMACRO)) {
1422 ei->relno = 0;
1423 } else {
1424 ei->relno = istk->expansion->lineno;
1425 if (ed != NULL) {
1426 ei->relno -= (ed->linecount + 1);
1427 }
1428 }
1429 return ei;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001430}
1431
1432/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001433 * A scanner, suitable for use by the expression evaluator, which
1434 * operates on a line of Tokens. Expects a pointer to a pointer to
1435 * the first token in the line to be passed in as its private_data
1436 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001437 *
1438 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001439 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001440static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001441{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001442 Token **tlineptr = private_data;
1443 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001444 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001445
H. Peter Anvine2c80182005-01-15 22:15:51 +00001446 do {
1447 tline = *tlineptr;
1448 *tlineptr = tline ? tline->next : NULL;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04001449 } while (tline && (tline->type == TOK_WHITESPACE ||
1450 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001451
1452 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001453 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001454
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001455 tokval->t_charptr = tline->text;
1456
H. Peter Anvin76690a12002-04-30 20:52:49 +00001457 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001458 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001459 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001460 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001461
H. Peter Anvine2c80182005-01-15 22:15:51 +00001462 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001463 p = tokval->t_charptr = tline->text;
1464 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001465 tokval->t_charptr++;
1466 return tokval->t_type = TOKEN_ID;
1467 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001468
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001469 for (r = p, s = ourcopy; *r; r++) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001470 if (r >= p+MAX_KEYWORD)
1471 return tokval->t_type = TOKEN_ID; /* Not a keyword */
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -07001472 *s++ = nasm_tolower(*r);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001473 }
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001474 *s = '\0';
1475 /* right, so we have an identifier sitting in temp storage. now,
1476 * is it actually a register or instruction name, or what? */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001477 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001478 }
1479
H. Peter Anvine2c80182005-01-15 22:15:51 +00001480 if (tline->type == TOK_NUMBER) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001481 bool rn_error;
1482 tokval->t_integer = readnum(tline->text, &rn_error);
1483 tokval->t_charptr = tline->text;
1484 if (rn_error)
1485 return tokval->t_type = TOKEN_ERRNUM;
1486 else
1487 return tokval->t_type = TOKEN_NUM;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001488 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001489
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001490 if (tline->type == TOK_FLOAT) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001491 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001492 }
1493
H. Peter Anvine2c80182005-01-15 22:15:51 +00001494 if (tline->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001495 char bq, *ep;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001496
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001497 bq = tline->text[0];
H. Peter Anvin11627042008-06-09 20:45:19 -07001498 tokval->t_charptr = tline->text;
1499 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
H. Peter Anvind2456592008-06-19 15:04:18 -07001500
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001501 if (ep[0] != bq || ep[1] != '\0')
1502 return tokval->t_type = TOKEN_ERRSTR;
1503 else
1504 return tokval->t_type = TOKEN_STR;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001505 }
1506
H. Peter Anvine2c80182005-01-15 22:15:51 +00001507 if (tline->type == TOK_OTHER) {
1508 if (!strcmp(tline->text, "<<"))
1509 return tokval->t_type = TOKEN_SHL;
1510 if (!strcmp(tline->text, ">>"))
1511 return tokval->t_type = TOKEN_SHR;
1512 if (!strcmp(tline->text, "//"))
1513 return tokval->t_type = TOKEN_SDIV;
1514 if (!strcmp(tline->text, "%%"))
1515 return tokval->t_type = TOKEN_SMOD;
1516 if (!strcmp(tline->text, "=="))
1517 return tokval->t_type = TOKEN_EQ;
1518 if (!strcmp(tline->text, "<>"))
1519 return tokval->t_type = TOKEN_NE;
1520 if (!strcmp(tline->text, "!="))
1521 return tokval->t_type = TOKEN_NE;
1522 if (!strcmp(tline->text, "<="))
1523 return tokval->t_type = TOKEN_LE;
1524 if (!strcmp(tline->text, ">="))
1525 return tokval->t_type = TOKEN_GE;
1526 if (!strcmp(tline->text, "&&"))
1527 return tokval->t_type = TOKEN_DBL_AND;
1528 if (!strcmp(tline->text, "^^"))
1529 return tokval->t_type = TOKEN_DBL_XOR;
1530 if (!strcmp(tline->text, "||"))
1531 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001532 }
1533
1534 /*
1535 * We have no other options: just return the first character of
1536 * the token text.
1537 */
1538 return tokval->t_type = tline->text[0];
1539}
1540
1541/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001542 * Compare a string to the name of an existing macro; this is a
1543 * simple wrapper which calls either strcmp or nasm_stricmp
1544 * depending on the value of the `casesense' parameter.
1545 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001546static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001547{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001548 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001549}
1550
1551/*
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001552 * Compare a string to the name of an existing macro; this is a
1553 * simple wrapper which calls either strcmp or nasm_stricmp
1554 * depending on the value of the `casesense' parameter.
1555 */
1556static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1557{
1558 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1559}
1560
1561/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001562 * Return the Context structure associated with a %$ token. Return
1563 * NULL, having _already_ reported an error condition, if the
1564 * context stack isn't deep enough for the supplied number of $
1565 * signs.
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001566 * If all_contexts == true, contexts that enclose current are
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001567 * also scanned for such smacro, until it is found; if not -
1568 * only the context that directly results from the number of $'s
1569 * in variable's name.
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001570 *
1571 * If "namep" is non-NULL, set it to the pointer to the macro name
1572 * tail, i.e. the part beyond %$...
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001573 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001574static Context *get_ctx(const char *name, const char **namep,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001575 bool all_contexts)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001576{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001577 Context *ctx;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001578 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001579 int i;
1580
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001581 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001582 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001583
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001584 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001585 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001586
H. Peter Anvine2c80182005-01-15 22:15:51 +00001587 if (!cstk) {
1588 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1589 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001590 }
1591
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001592 name += 2;
1593 ctx = cstk;
1594 i = 0;
1595 while (ctx && *name == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001596 name++;
1597 i++;
1598 ctx = ctx->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001599 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001600 if (!ctx) {
1601 error(ERR_NONFATAL, "`%s': context stack is only"
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001602 " %d level%s deep", name, i, (i == 1 ? "" : "s"));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001603 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001604 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001605
1606 if (namep)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001607 *namep = name;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001608
Keith Kanios404589e2010-08-10 20:12:57 -05001609 if (!all_contexts)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001610 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001611
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001612 do {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001613 /* Search for this smacro in found context */
H. Peter Anvin166c2472008-05-28 12:28:58 -07001614 m = hash_findix(&ctx->localmac, name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001615 while (m) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001616 if (!mstrcmp(m->name, name, m->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00001617 return ctx;
1618 m = m->next;
1619 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001620 ctx = ctx->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001621 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001622 while (ctx);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001623 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001624}
1625
1626/*
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001627 * Check to see if a file is already in a string list
1628 */
1629static bool in_list(const StrList *list, const char *str)
1630{
1631 while (list) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001632 if (!strcmp(list->str, str))
1633 return true;
1634 list = list->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001635 }
1636 return false;
1637}
1638
1639/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001640 * Open an include file. This routine must always return a valid
1641 * file pointer if it returns - it's responsible for throwing an
1642 * ERR_FATAL and bombing out completely if not. It should also try
1643 * the include path one by one until it finds the file or reaches
1644 * the end of the path.
1645 */
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001646static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001647 bool missing_ok)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001648{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001649 FILE *fp;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001650 char *prefix = "";
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001651 IncPath *ip = ipath;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001652 int len = strlen(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001653 size_t prefix_len = 0;
1654 StrList *sl;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001655
H. Peter Anvine2c80182005-01-15 22:15:51 +00001656 while (1) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001657 sl = nasm_malloc(prefix_len+len+1+sizeof sl->next);
Cyrill Gorcunov6f38fe62010-11-11 11:32:16 +03001658 sl->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001659 memcpy(sl->str, prefix, prefix_len);
1660 memcpy(sl->str+prefix_len, file, len+1);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001661 fp = fopen(sl->str, "r");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001662 if (fp && dhead && !in_list(*dhead, sl->str)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001663 **dtail = sl;
1664 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001665 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001666 nasm_free(sl);
1667 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001668 if (fp)
1669 return fp;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001670 if (!ip) {
1671 if (!missing_ok)
1672 break;
1673 prefix = NULL;
1674 } else {
1675 prefix = ip->path;
1676 ip = ip->next;
1677 }
1678 if (prefix) {
1679 prefix_len = strlen(prefix);
1680 } else {
1681 /* -MG given and file not found */
1682 if (dhead && !in_list(*dhead, file)) {
1683 sl = nasm_malloc(len+1+sizeof sl->next);
1684 sl->next = NULL;
1685 strcpy(sl->str, file);
1686 **dtail = sl;
1687 *dtail = &sl->next;
1688 }
1689 return NULL;
1690 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001691 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001692
H. Peter Anvin734b1882002-04-30 21:01:08 +00001693 error(ERR_FATAL, "unable to open include file `%s'", file);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001694 return NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001695}
1696
1697/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001698 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001699 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001700 * return true if _any_ single-line macro of that name is defined.
1701 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001702 * `nparam' or no parameters is defined.
1703 *
1704 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001705 * defined, or nparam is -1, the address of the definition structure
1706 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001707 * is NULL, no action will be taken regarding its contents, and no
1708 * error will occur.
1709 *
1710 * Note that this is also called with nparam zero to resolve
1711 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001712 *
1713 * If you already know which context macro belongs to, you can pass
1714 * the context pointer as first parameter; if you won't but name begins
1715 * with %$ the context will be automatically computed. If all_contexts
1716 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001717 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001718static bool
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001719smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001720 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001721{
H. Peter Anvin166c2472008-05-28 12:28:58 -07001722 struct hash_table *smtbl;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001723 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001724
H. Peter Anvin97a23472007-09-16 17:57:25 -07001725 if (ctx) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001726 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001727 } else if (name[0] == '%' && name[1] == '$') {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001728 if (cstk)
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001729 ctx = get_ctx(name, &name, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001730 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001731 return false; /* got to return _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001732 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001733 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001734 smtbl = &smacros;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001735 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001736 m = (SMacro *) hash_findix(smtbl, name);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001737
H. Peter Anvine2c80182005-01-15 22:15:51 +00001738 while (m) {
1739 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001740 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001741 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001742 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001743 *defn = m;
1744 else
1745 *defn = NULL;
1746 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001747 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001748 }
1749 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001750 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001751
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001752 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001753}
1754
1755/*
1756 * Count and mark off the parameters in a multi-line macro call.
1757 * This is called both from within the multi-line macro expansion
1758 * code, and also to mark off the default parameters when provided
1759 * in a %macro definition line.
1760 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001761static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001762{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001763 int paramsize, brace;
1764
1765 *nparam = paramsize = 0;
1766 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001767 while (t) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001768 /* +1: we need space for the final NULL */
H. Peter Anvin91fb6f12008-09-01 10:56:33 -07001769 if (*nparam+1 >= paramsize) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001770 paramsize += PARAM_DELTA;
1771 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1772 }
1773 skip_white_(t);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001774 brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001775 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001776 brace = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001777 (*params)[(*nparam)++] = t;
1778 while (tok_isnt_(t, brace ? "}" : ","))
1779 t = t->next;
1780 if (t) { /* got a comma/brace */
1781 t = t->next;
1782 if (brace) {
1783 /*
1784 * Now we've found the closing brace, look further
1785 * for the comma.
1786 */
1787 skip_white_(t);
1788 if (tok_isnt_(t, ",")) {
1789 error(ERR_NONFATAL,
1790 "braces do not enclose all of macro parameter");
1791 while (tok_isnt_(t, ","))
1792 t = t->next;
1793 }
1794 if (t)
1795 t = t->next; /* eat the comma */
1796 }
1797 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001798 }
1799}
1800
1801/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001802 * Determine whether one of the various `if' conditions is true or
1803 * not.
1804 *
1805 * We must free the tline we get passed.
1806 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001807static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001808{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001809 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001810 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001811 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001812 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001813 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001814 enum pp_token_type needtype;
H. Peter Anvin077fb932010-07-20 14:56:30 -07001815 char *p;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001816
1817 origline = tline;
1818
H. Peter Anvine2c80182005-01-15 22:15:51 +00001819 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001820 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001821 j = false; /* have we matched yet? */
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001822 while (true) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001823 skip_white_(tline);
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001824 if (!tline)
1825 break;
1826 if (tline->type != TOK_ID) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001827 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001828 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001829 free_tlist(origline);
1830 return -1;
1831 }
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001832 if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001833 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001834 tline = tline->next;
1835 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001836 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001837
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001838 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001839 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001840 while (tline) {
1841 skip_white_(tline);
1842 if (!tline || (tline->type != TOK_ID &&
1843 (tline->type != TOK_PREPROC_ID ||
1844 tline->text[1] != '$'))) {
1845 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001846 "`%s' expects macro identifiers", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001847 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001848 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001849 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001850 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001851 tline = tline->next;
1852 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001853 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001854
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001855 case PPC_IFENV:
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001856 tline = expand_smacro(tline);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001857 j = false; /* have we matched yet? */
1858 while (tline) {
1859 skip_white_(tline);
1860 if (!tline || (tline->type != TOK_ID &&
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001861 tline->type != TOK_STRING &&
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001862 (tline->type != TOK_PREPROC_ID ||
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001863 tline->text[1] != '!'))) {
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001864 error(ERR_NONFATAL,
1865 "`%s' expects environment variable names",
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001866 pp_directives[ct]);
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001867 goto fail;
1868 }
Cyrill Gorcunov84b4cba2010-09-12 21:39:40 +04001869 p = tline->text;
1870 if (tline->type == TOK_PREPROC_ID)
1871 p += 2; /* Skip leading %! */
1872 if (*p == '\'' || *p == '\"' || *p == '`')
1873 nasm_unquote_cstr(p, ct);
1874 if (getenv(p))
1875 j = true;
H. Peter Anvin6d9b2b52010-07-13 12:00:58 -07001876 tline = tline->next;
1877 }
1878 break;
1879
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001880 case PPC_IFIDN:
1881 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001882 tline = expand_smacro(tline);
1883 t = tt = tline;
1884 while (tok_isnt_(tt, ","))
1885 tt = tt->next;
1886 if (!tt) {
1887 error(ERR_NONFATAL,
1888 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001889 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001890 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001891 }
1892 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001893 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001894 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1895 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1896 error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001897 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001898 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001899 }
1900 if (t->type == TOK_WHITESPACE) {
1901 t = t->next;
1902 continue;
1903 }
1904 if (tt->type == TOK_WHITESPACE) {
1905 tt = tt->next;
1906 continue;
1907 }
1908 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001909 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001910 break;
1911 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001912 /* When comparing strings, need to unquote them first */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001913 if (t->type == TOK_STRING) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001914 size_t l1 = nasm_unquote(t->text, NULL);
1915 size_t l2 = nasm_unquote(tt->text, NULL);
H. Peter Anvind2456592008-06-19 15:04:18 -07001916
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001917 if (l1 != l2) {
1918 j = false;
1919 break;
1920 }
1921 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
1922 j = false;
1923 break;
1924 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001925 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001926 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001927 break;
1928 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001929
H. Peter Anvine2c80182005-01-15 22:15:51 +00001930 t = t->next;
1931 tt = tt->next;
1932 }
1933 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001934 j = false; /* trailing gunk on one end or other */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001935 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001936
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001937 case PPC_IFMACRO:
H. Peter Anvin89cee572009-07-15 09:16:54 -04001938 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001939 bool found = false;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001940 ExpDef searching, *ed;
H. Peter Anvin65747262002-05-07 00:10:05 +00001941
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001942 skip_white_(tline);
1943 tline = expand_id(tline);
1944 if (!tok_type_(tline, TOK_ID)) {
1945 error(ERR_NONFATAL,
1946 "`%s' expects a macro name", pp_directives[ct]);
1947 goto fail;
1948 }
Cyrill Gorcunova22e7a92010-11-11 11:42:40 +03001949 memset(&searching, 0, sizeof(searching));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001950 searching.name = nasm_strdup(tline->text);
1951 searching.casesense = true;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001952 searching.nparam_max = INT_MAX;
1953 tline = expand_smacro(tline->next);
1954 skip_white_(tline);
1955 if (!tline) {
1956 } else if (!tok_type_(tline, TOK_NUMBER)) {
1957 error(ERR_NONFATAL,
1958 "`%s' expects a parameter count or nothing",
1959 pp_directives[ct]);
1960 } else {
1961 searching.nparam_min = searching.nparam_max =
1962 readnum(tline->text, &j);
1963 if (j)
1964 error(ERR_NONFATAL,
1965 "unable to parse parameter count `%s'",
1966 tline->text);
1967 }
1968 if (tline && tok_is_(tline->next, "-")) {
1969 tline = tline->next->next;
1970 if (tok_is_(tline, "*"))
1971 searching.nparam_max = INT_MAX;
1972 else if (!tok_type_(tline, TOK_NUMBER))
1973 error(ERR_NONFATAL,
1974 "`%s' expects a parameter count after `-'",
1975 pp_directives[ct]);
1976 else {
1977 searching.nparam_max = readnum(tline->text, &j);
1978 if (j)
1979 error(ERR_NONFATAL,
1980 "unable to parse parameter count `%s'",
1981 tline->text);
1982 if (searching.nparam_min > searching.nparam_max)
1983 error(ERR_NONFATAL,
1984 "minimum parameter count exceeds maximum");
1985 }
1986 }
1987 if (tline && tok_is_(tline->next, "+")) {
1988 tline = tline->next;
1989 searching.plus = true;
1990 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001991 ed = (ExpDef *) hash_findix(&expdefs, searching.name);
1992 while (ed != NULL) {
Cyrill Gorcunova22e7a92010-11-11 11:42:40 +03001993 if (!strcmp(ed->name, searching.name) &&
1994 (ed->nparam_min <= searching.nparam_max || searching.plus) &&
1995 (searching.nparam_min <= ed->nparam_max || ed->plus)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03001996 found = true;
1997 break;
1998 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05001999 ed = ed->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002000 }
2001 if (tline && tline->next)
2002 error(ERR_WARNING|ERR_PASS1,
2003 "trailing garbage after %%ifmacro ignored");
2004 nasm_free(searching.name);
2005 j = found;
2006 break;
H. Peter Anvin89cee572009-07-15 09:16:54 -04002007 }
H. Peter Anvin65747262002-05-07 00:10:05 +00002008
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002009 case PPC_IFID:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002010 needtype = TOK_ID;
2011 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002012 case PPC_IFNUM:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002013 needtype = TOK_NUMBER;
2014 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002015 case PPC_IFSTR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002016 needtype = TOK_STRING;
2017 goto iftype;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002018
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002019iftype:
2020 t = tline = expand_smacro(tline);
H. Peter Anvind85d2502008-05-04 17:53:31 -07002021
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002022 while (tok_type_(t, TOK_WHITESPACE) ||
2023 (needtype == TOK_NUMBER &&
2024 tok_type_(t, TOK_OTHER) &&
2025 (t->text[0] == '-' || t->text[0] == '+') &&
2026 !t->text[1]))
2027 t = t->next;
H. Peter Anvind85d2502008-05-04 17:53:31 -07002028
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002029 j = tok_type_(t, needtype);
2030 break;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08002031
2032 case PPC_IFTOKEN:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002033 t = tline = expand_smacro(tline);
2034 while (tok_type_(t, TOK_WHITESPACE))
2035 t = t->next;
H. Peter Anvincbf768d2008-02-16 16:41:25 -08002036
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002037 j = false;
2038 if (t) {
2039 t = t->next; /* Skip the actual token */
2040 while (tok_type_(t, TOK_WHITESPACE))
2041 t = t->next;
2042 j = !t; /* Should be nothing left */
2043 }
2044 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002045
H. Peter Anvin134b9462008-02-16 17:01:40 -08002046 case PPC_IFEMPTY:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002047 t = tline = expand_smacro(tline);
2048 while (tok_type_(t, TOK_WHITESPACE))
2049 t = t->next;
H. Peter Anvin134b9462008-02-16 17:01:40 -08002050
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002051 j = !t; /* Should be empty */
2052 break;
H. Peter Anvin134b9462008-02-16 17:01:40 -08002053
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002054 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002055 t = tline = expand_smacro(tline);
2056 tptr = &t;
2057 tokval.t_type = TOKEN_INVALID;
2058 evalresult = evaluate(ppscan, tptr, &tokval,
2059 NULL, pass | CRITICAL, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002060 if (!evalresult)
2061 return -1;
2062 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002063 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002064 "trailing garbage after expression ignored");
2065 if (!is_simple(evalresult)) {
2066 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002067 "non-constant value given to `%s'", pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002068 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002069 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00002070 j = reloc_value(evalresult) != 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002071 break;
H. Peter Anvin95e28822007-09-12 04:20:08 +00002072
H. Peter Anvine2c80182005-01-15 22:15:51 +00002073 default:
2074 error(ERR_FATAL,
2075 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002076 pp_directives[ct]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002077 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002078 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002079
2080 free_tlist(origline);
2081 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07002082
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002083fail:
2084 free_tlist(origline);
2085 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002086}
2087
2088/*
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002089 * Common code for defining an smacro
2090 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002091static bool define_smacro(Context *ctx, const char *mname, bool casesense,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002092 int nparam, Token *expansion)
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002093{
2094 SMacro *smac, **smhead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002095 struct hash_table *smtbl;
H. Peter Anvin70653092007-10-19 14:42:29 -07002096
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002097 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002098 if (!smac) {
2099 error(ERR_WARNING|ERR_PASS1,
2100 "single-line macro `%s' defined both with and"
2101 " without parameters", mname);
2102 /*
2103 * Some instances of the old code considered this a failure,
2104 * some others didn't. What is the right thing to do here?
2105 */
2106 free_tlist(expansion);
2107 return false; /* Failure */
2108 } else {
2109 /*
2110 * We're redefining, so we have to take over an
2111 * existing SMacro structure. This means freeing
2112 * what was already in it.
2113 */
2114 nasm_free(smac->name);
2115 free_tlist(smac->expansion);
2116 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002117 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002118 smtbl = ctx ? &ctx->localmac : &smacros;
2119 smhead = (SMacro **) hash_findi_add(smtbl, mname);
2120 smac = nasm_malloc(sizeof(SMacro));
2121 smac->next = *smhead;
2122 *smhead = smac;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002123 }
2124 smac->name = nasm_strdup(mname);
2125 smac->casesense = casesense;
2126 smac->nparam = nparam;
2127 smac->expansion = expansion;
2128 smac->in_progress = false;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002129 return true; /* Success */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002130}
2131
2132/*
2133 * Undefine an smacro
2134 */
2135static void undef_smacro(Context *ctx, const char *mname)
2136{
2137 SMacro **smhead, *s, **sp;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002138 struct hash_table *smtbl;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002139
H. Peter Anvin166c2472008-05-28 12:28:58 -07002140 smtbl = ctx ? &ctx->localmac : &smacros;
2141 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
H. Peter Anvin70653092007-10-19 14:42:29 -07002142
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002143 if (smhead) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002144 /*
2145 * We now have a macro name... go hunt for it.
2146 */
2147 sp = smhead;
2148 while ((s = *sp) != NULL) {
2149 if (!mstrcmp(s->name, mname, s->casesense)) {
2150 *sp = s->next;
2151 nasm_free(s->name);
2152 free_tlist(s->expansion);
2153 nasm_free(s);
2154 } else {
2155 sp = &s->next;
2156 }
2157 }
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002158 }
2159}
2160
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002161/*
H. Peter Anvina26433d2008-07-16 14:40:01 -07002162 * Parse a mmacro specification.
2163 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002164static bool parse_mmacro_spec(Token *tline, ExpDef *def, const char *directive)
H. Peter Anvina26433d2008-07-16 14:40:01 -07002165{
2166 bool err;
2167
2168 tline = tline->next;
2169 skip_white_(tline);
2170 tline = expand_id(tline);
2171 if (!tok_type_(tline, TOK_ID)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002172 error(ERR_NONFATAL, "`%s' expects a macro name", directive);
2173 return false;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002174 }
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002175
H. Peter Anvina26433d2008-07-16 14:40:01 -07002176 def->name = nasm_strdup(tline->text);
2177 def->plus = false;
2178 def->nolist = false;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002179// def->in_progress = 0;
2180// def->rep_nest = NULL;
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002181 def->nparam_min = 0;
2182 def->nparam_max = 0;
2183
H. Peter Anvina26433d2008-07-16 14:40:01 -07002184 tline = expand_smacro(tline->next);
2185 skip_white_(tline);
2186 if (!tok_type_(tline, TOK_NUMBER)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002187 error(ERR_NONFATAL, "`%s' expects a parameter count", directive);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002188 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002189 def->nparam_min = def->nparam_max =
2190 readnum(tline->text, &err);
2191 if (err)
2192 error(ERR_NONFATAL,
2193 "unable to parse parameter count `%s'", tline->text);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002194 }
2195 if (tline && tok_is_(tline->next, "-")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002196 tline = tline->next->next;
2197 if (tok_is_(tline, "*")) {
2198 def->nparam_max = INT_MAX;
2199 } else if (!tok_type_(tline, TOK_NUMBER)) {
2200 error(ERR_NONFATAL,
2201 "`%s' expects a parameter count after `-'", directive);
2202 } else {
2203 def->nparam_max = readnum(tline->text, &err);
2204 if (err) {
2205 error(ERR_NONFATAL, "unable to parse parameter count `%s'",
2206 tline->text);
2207 }
2208 if (def->nparam_min > def->nparam_max) {
2209 error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
2210 }
2211 }
H. Peter Anvina26433d2008-07-16 14:40:01 -07002212 }
2213 if (tline && tok_is_(tline->next, "+")) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002214 tline = tline->next;
2215 def->plus = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002216 }
2217 if (tline && tok_type_(tline->next, TOK_ID) &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002218 !nasm_stricmp(tline->next->text, ".nolist")) {
2219 tline = tline->next;
2220 def->nolist = true;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002221 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002222
H. Peter Anvina26433d2008-07-16 14:40:01 -07002223 /*
2224 * Handle default parameters.
2225 */
2226 if (tline && tline->next) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002227 def->dlist = tline->next;
2228 tline->next = NULL;
2229 count_mmac_params(def->dlist, &def->ndefs, &def->defaults);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002230 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002231 def->dlist = NULL;
2232 def->defaults = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002233 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002234 def->line = NULL;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002235
H. Peter Anvin89cee572009-07-15 09:16:54 -04002236 if (def->defaults && def->ndefs > def->nparam_max - def->nparam_min &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002237 !def->plus)
2238 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP,
2239 "too many default macro parameters");
Victor van den Elzenb916ede2008-07-23 15:14:22 +02002240
H. Peter Anvina26433d2008-07-16 14:40:01 -07002241 return true;
2242}
2243
2244
2245/*
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002246 * Decode a size directive
2247 */
2248static int parse_size(const char *str) {
2249 static const char *size_names[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002250 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002251 static const int sizes[] =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002252 { 0, 1, 4, 16, 8, 10, 2, 32 };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002253
Cyrill Gorcunova7319242010-06-03 22:04:36 +04002254 return sizes[bsii(str, size_names, ARRAY_SIZE(size_names))+1];
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002255}
2256
Ed Beroset3ab3f412002-06-11 03:31:49 +00002257/**
2258 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002259 * Find out if a line contains a preprocessor directive, and deal
2260 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07002261 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002262 * If a directive _is_ found, it is the responsibility of this routine
2263 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002264 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00002265 * @param tline a pointer to the current tokeninzed line linked list
2266 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07002267 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002268 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002269static int do_directive(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002270{
H. Peter Anvin4169a472007-09-12 01:29:43 +00002271 enum preproc_token i;
2272 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07002273 bool err;
2274 int nparam;
2275 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002276 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07002277 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002278 int offset;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002279 char *p, *pp;
2280 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002281 Include *inc;
2282 Context *ctx;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002283 Line *l;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002284 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002285 struct tokenval tokval;
2286 expr *evalresult;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002287 ExpDef *ed, *eed, **edhead;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002288 ExpInv *ei, *eei;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002289 int64_t count;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002290 size_t len;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002291 int severity;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002292
2293 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002294
H. Peter Anvineba20a72002-04-30 20:53:55 +00002295 skip_white_(tline);
H. Peter Anvinf2936d72008-06-04 15:11:23 -07002296 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00002297 (tline->text[1] == '%' || tline->text[1] == '$'
2298 || tline->text[1] == '!'))
2299 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002300
H. Peter Anvin4169a472007-09-12 01:29:43 +00002301 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002302
H. Peter Anvin4169a472007-09-12 01:29:43 +00002303 switch (i) {
2304 case PP_INVALID:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002305 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002306 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2307 tline->text);
2308 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002309
H. Peter Anvine2c80182005-01-15 22:15:51 +00002310 case PP_STACKSIZE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002311 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002312 /* Directive to tell NASM what the default stack size is. The
2313 * default is for a 16-bit stack, and this can be overriden with
2314 * %stacksize large.
H. Peter Anvine2c80182005-01-15 22:15:51 +00002315 */
2316 tline = tline->next;
2317 if (tline && tline->type == TOK_WHITESPACE)
2318 tline = tline->next;
2319 if (!tline || tline->type != TOK_ID) {
2320 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
2321 free_tlist(origline);
2322 return DIRECTIVE_FOUND;
2323 }
2324 if (nasm_stricmp(tline->text, "flat") == 0) {
2325 /* All subsequent ARG directives are for a 32-bit stack */
2326 StackSize = 4;
2327 StackPointer = "ebp";
2328 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002329 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002330 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
2331 /* All subsequent ARG directives are for a 64-bit stack */
2332 StackSize = 8;
2333 StackPointer = "rbp";
Per Jessen53252e02010-02-11 00:16:59 +03002334 ArgOffset = 16;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002335 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002336 } else if (nasm_stricmp(tline->text, "large") == 0) {
2337 /* All subsequent ARG directives are for a 16-bit stack,
2338 * far function call.
2339 */
2340 StackSize = 2;
2341 StackPointer = "bp";
2342 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002343 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002344 } else if (nasm_stricmp(tline->text, "small") == 0) {
2345 /* All subsequent ARG directives are for a 16-bit stack,
2346 * far function call. We don't support near functions.
2347 */
2348 StackSize = 2;
2349 StackPointer = "bp";
2350 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002351 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002352 } else {
2353 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
2354 free_tlist(origline);
2355 return DIRECTIVE_FOUND;
2356 }
2357 free_tlist(origline);
2358 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002359
H. Peter Anvine2c80182005-01-15 22:15:51 +00002360 case PP_ARG:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002361 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002362 /* TASM like ARG directive to define arguments to functions, in
2363 * the following form:
2364 *
2365 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2366 */
2367 offset = ArgOffset;
2368 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002369 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002370 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002371
H. Peter Anvine2c80182005-01-15 22:15:51 +00002372 /* Find the argument name */
2373 tline = tline->next;
2374 if (tline && tline->type == TOK_WHITESPACE)
2375 tline = tline->next;
2376 if (!tline || tline->type != TOK_ID) {
2377 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
2378 free_tlist(origline);
2379 return DIRECTIVE_FOUND;
2380 }
2381 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002382
H. Peter Anvine2c80182005-01-15 22:15:51 +00002383 /* Find the argument size type */
2384 tline = tline->next;
2385 if (!tline || tline->type != TOK_OTHER
2386 || tline->text[0] != ':') {
2387 error(ERR_NONFATAL,
2388 "Syntax error processing `%%arg' directive");
2389 free_tlist(origline);
2390 return DIRECTIVE_FOUND;
2391 }
2392 tline = tline->next;
2393 if (!tline || tline->type != TOK_ID) {
2394 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
2395 free_tlist(origline);
2396 return DIRECTIVE_FOUND;
2397 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002398
H. Peter Anvine2c80182005-01-15 22:15:51 +00002399 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002400 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002401 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002402 size = parse_size(tt->text);
2403 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002404 error(ERR_NONFATAL,
2405 "Invalid size type for `%%arg' missing directive");
2406 free_tlist(tt);
2407 free_tlist(origline);
2408 return DIRECTIVE_FOUND;
2409 }
2410 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002411
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002412 /* Round up to even stack slots */
2413 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002414
H. Peter Anvine2c80182005-01-15 22:15:51 +00002415 /* Now define the macro for the argument */
2416 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
2417 arg, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002418 do_directive(tokenize(directive));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002419 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002420
H. Peter Anvine2c80182005-01-15 22:15:51 +00002421 /* Move to the next argument in the list */
2422 tline = tline->next;
2423 if (tline && tline->type == TOK_WHITESPACE)
2424 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002425 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002426 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002427 free_tlist(origline);
2428 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002429
H. Peter Anvine2c80182005-01-15 22:15:51 +00002430 case PP_LOCAL:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002431 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002432 /* TASM like LOCAL directive to define local variables for a
2433 * function, in the following form:
2434 *
2435 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2436 *
2437 * The '= LocalSize' at the end is ignored by NASM, but is
2438 * required by TASM to define the local parameter size (and used
2439 * by the TASM macro package).
2440 */
2441 offset = LocalOffset;
2442 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002443 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002444 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002445
H. Peter Anvine2c80182005-01-15 22:15:51 +00002446 /* Find the argument name */
2447 tline = tline->next;
2448 if (tline && tline->type == TOK_WHITESPACE)
2449 tline = tline->next;
2450 if (!tline || tline->type != TOK_ID) {
2451 error(ERR_NONFATAL,
2452 "`%%local' missing argument parameter");
2453 free_tlist(origline);
2454 return DIRECTIVE_FOUND;
2455 }
2456 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002457
H. Peter Anvine2c80182005-01-15 22:15:51 +00002458 /* Find the argument size type */
2459 tline = tline->next;
2460 if (!tline || tline->type != TOK_OTHER
2461 || tline->text[0] != ':') {
2462 error(ERR_NONFATAL,
2463 "Syntax error processing `%%local' directive");
2464 free_tlist(origline);
2465 return DIRECTIVE_FOUND;
2466 }
2467 tline = tline->next;
2468 if (!tline || tline->type != TOK_ID) {
2469 error(ERR_NONFATAL,
2470 "`%%local' missing size type parameter");
2471 free_tlist(origline);
2472 return DIRECTIVE_FOUND;
2473 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002474
H. Peter Anvine2c80182005-01-15 22:15:51 +00002475 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002476 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002477 tt = expand_smacro(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002478 size = parse_size(tt->text);
2479 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002480 error(ERR_NONFATAL,
2481 "Invalid size type for `%%local' missing directive");
2482 free_tlist(tt);
2483 free_tlist(origline);
2484 return DIRECTIVE_FOUND;
2485 }
2486 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002487
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002488 /* Round up to even stack slots */
2489 size = ALIGN(size, StackSize);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002490
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002491 offset += size; /* Negative offset, increment before */
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002492
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002493 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002494 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2495 local, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002496 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002497
H. Peter Anvine2c80182005-01-15 22:15:51 +00002498 /* Now define the assign to setup the enter_c macro correctly */
2499 snprintf(directive, sizeof(directive),
2500 "%%assign %%$localsize %%$localsize+%d", size);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002501 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002502
H. Peter Anvine2c80182005-01-15 22:15:51 +00002503 /* Move to the next argument in the list */
2504 tline = tline->next;
2505 if (tline && tline->type == TOK_WHITESPACE)
2506 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002507 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002508 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002509 free_tlist(origline);
2510 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002511
H. Peter Anvine2c80182005-01-15 22:15:51 +00002512 case PP_CLEAR:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002513 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002514 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002515 error(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002516 "trailing garbage after `%%clear' ignored");
2517 free_macros();
2518 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002519 free_tlist(origline);
2520 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002521
H. Peter Anvin418ca702008-05-30 10:42:30 -07002522 case PP_DEPEND:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002523 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002524 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002525 skip_white_(t);
2526 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002527 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07002528 error(ERR_NONFATAL, "`%%depend' expects a file name");
2529 free_tlist(origline);
2530 return DIRECTIVE_FOUND; /* but we did _something_ */
2531 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002532 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002533 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07002534 "trailing garbage after `%%depend' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002535 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002536 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002537 nasm_unquote_cstr(p, i);
2538 if (dephead && !in_list(*dephead, p)) {
2539 StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next);
2540 sl->next = NULL;
2541 strcpy(sl->str, p);
2542 *deptail = sl;
2543 deptail = &sl->next;
2544 }
2545 free_tlist(origline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002546 return DIRECTIVE_FOUND;
2547
2548 case PP_INCLUDE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002549 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002550 t = tline->next = expand_smacro(tline->next);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002551 skip_white_(t);
H. Peter Anvind2456592008-06-19 15:04:18 -07002552
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002553 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002554 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002555 error(ERR_NONFATAL, "`%%include' expects a file name");
2556 free_tlist(origline);
2557 return DIRECTIVE_FOUND; /* but we did _something_ */
2558 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002559 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002560 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002561 "trailing garbage after `%%include' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002562 p = t->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002563 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002564 nasm_unquote_cstr(p, i);
Cyrill Gorcunov55cc4d02010-11-10 23:12:06 +03002565 inc = nasm_zalloc(sizeof(Include));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002566 inc->next = istk;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002567 inc->fp = inc_fopen(p, dephead, &deptail, pass == 0);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002568 if (!inc->fp) {
2569 /* -MG given but file not found */
2570 nasm_free(inc);
2571 } else {
2572 inc->fname = src_set_fname(nasm_strdup(p));
2573 inc->lineno = src_set_linnum(0);
2574 inc->lineinc = 1;
2575 inc->expansion = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002576 istk = inc;
2577 list->uplevel(LIST_INCLUDE);
2578 }
2579 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002580 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002581
H. Peter Anvind2456592008-06-19 15:04:18 -07002582 case PP_USE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002583 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002584 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002585 static macros_t *use_pkg;
2586 const char *pkg_macro = NULL;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002587
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002588 tline = tline->next;
2589 skip_white_(tline);
2590 tline = expand_id(tline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002591
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002592 if (!tline || (tline->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002593 tline->type != TOK_INTERNAL_STRING &&
2594 tline->type != TOK_ID)) {
H. Peter Anvin926fc402008-06-19 16:26:12 -07002595 error(ERR_NONFATAL, "`%%use' expects a package name");
H. Peter Anvind2456592008-06-19 15:04:18 -07002596 free_tlist(origline);
2597 return DIRECTIVE_FOUND; /* but we did _something_ */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002598 }
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002599 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002600 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvind2456592008-06-19 15:04:18 -07002601 "trailing garbage after `%%use' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002602 if (tline->type == TOK_STRING)
2603 nasm_unquote_cstr(tline->text, i);
2604 use_pkg = nasm_stdmac_find_package(tline->text);
2605 if (!use_pkg)
2606 error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
2607 else
2608 pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */
Victor van den Elzen35eb2ea2010-03-10 22:33:48 +01002609 if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002610 /* Not already included, go ahead and include it */
2611 stdmacpos = use_pkg;
2612 }
2613 free_tlist(origline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002614 return DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002615 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002616 case PP_PUSH:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002617 case PP_REPL:
H. Peter Anvin42b56392008-10-24 16:24:21 -07002618 case PP_POP:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002619 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002620 tline = tline->next;
2621 skip_white_(tline);
2622 tline = expand_id(tline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002623 if (tline) {
2624 if (!tok_type_(tline, TOK_ID)) {
2625 error(ERR_NONFATAL, "`%s' expects a context identifier",
2626 pp_directives[i]);
2627 free_tlist(origline);
2628 return DIRECTIVE_FOUND; /* but we did _something_ */
2629 }
2630 if (tline->next)
2631 error(ERR_WARNING|ERR_PASS1,
2632 "trailing garbage after `%s' ignored",
2633 pp_directives[i]);
2634 p = nasm_strdup(tline->text);
2635 } else {
2636 p = NULL; /* Anonymous */
2637 }
H. Peter Anvin42b56392008-10-24 16:24:21 -07002638
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002639 if (i == PP_PUSH) {
2640 ctx = nasm_malloc(sizeof(Context));
2641 ctx->next = cstk;
2642 hash_init(&ctx->localmac, HASH_SMALL);
2643 ctx->name = p;
2644 ctx->number = unique++;
2645 cstk = ctx;
2646 } else {
2647 /* %pop or %repl */
2648 if (!cstk) {
2649 error(ERR_NONFATAL, "`%s': context stack is empty",
2650 pp_directives[i]);
2651 } else if (i == PP_POP) {
2652 if (p && (!cstk->name || nasm_stricmp(p, cstk->name)))
2653 error(ERR_NONFATAL, "`%%pop' in wrong context: %s, "
2654 "expected %s",
2655 cstk->name ? cstk->name : "anonymous", p);
2656 else
2657 ctx_pop();
2658 } else {
2659 /* i == PP_REPL */
2660 nasm_free(cstk->name);
2661 cstk->name = p;
2662 p = NULL;
2663 }
2664 nasm_free(p);
2665 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002666 free_tlist(origline);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002667 return DIRECTIVE_FOUND;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002668 case PP_FATAL:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002669 severity = ERR_FATAL;
2670 goto issue_error;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002671 case PP_ERROR:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002672 severity = ERR_NONFATAL;
2673 goto issue_error;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002674 case PP_WARNING:
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002675 severity = ERR_WARNING|ERR_WARN_USER;
2676 goto issue_error;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002677
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002678issue_error:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002679 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002680 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002681 /* Only error out if this is the final pass */
2682 if (pass != 2 && i != PP_FATAL)
2683 return DIRECTIVE_FOUND;
2684
2685 tline->next = expand_smacro(tline->next);
2686 tline = tline->next;
2687 skip_white_(tline);
2688 t = tline ? tline->next : NULL;
2689 skip_white_(t);
2690 if (tok_type_(tline, TOK_STRING) && !t) {
2691 /* The line contains only a quoted string */
2692 p = tline->text;
2693 nasm_unquote(p, NULL); /* Ignore NUL character truncation */
2694 error(severity, "%s", p);
2695 } else {
2696 /* Not a quoted string, or more than a quoted string */
2697 p = detoken(tline, false);
2698 error(severity, "%s", p);
2699 nasm_free(p);
2700 }
2701 free_tlist(origline);
2702 return DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002703 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002704
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002705 CASE_PP_IF:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002706 if (defining != NULL) {
2707 if (defining->type == EXP_IF) {
2708 defining->def_depth ++;
2709 }
2710 return NO_DIRECTIVE_FOUND;
2711 }
2712 if ((istk->expansion != NULL) &&
2713 (istk->expansion->emitting == false)) {
2714 j = COND_NEVER;
2715 } else {
2716 j = if_condition(tline->next, i);
2717 tline->next = NULL; /* it got freed */
2718 j = (((j < 0) ? COND_NEVER : j) ? COND_IF_TRUE : COND_IF_FALSE);
2719 }
2720 ed = new_ExpDef(EXP_IF);
2721 ed->state = j;
2722 ed->nolist = NULL;
2723 ed->def_depth = 0;
2724 ed->cur_depth = 0;
2725 ed->max_depth = 0;
2726 ed->ignoring = ((ed->state == COND_IF_TRUE) ? false : true);
2727 ed->prev = defining;
2728 defining = ed;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002729 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002730 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002731
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002732 CASE_PP_ELIF:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002733 if (defining != NULL) {
2734 if ((defining->type != EXP_IF) || (defining->def_depth > 0)) {
2735 return NO_DIRECTIVE_FOUND;
2736 }
2737 }
2738 if ((defining == NULL) || (defining->type != EXP_IF)) {
2739 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
2740 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002741 switch (defining->state) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002742 case COND_IF_TRUE:
2743 defining->state = COND_DONE;
2744 defining->ignoring = true;
2745 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002746
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002747 case COND_DONE:
2748 case COND_NEVER:
2749 defining->ignoring = true;
2750 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002751
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002752 case COND_ELSE_TRUE:
2753 case COND_ELSE_FALSE:
2754 error_precond(ERR_WARNING|ERR_PASS1,
2755 "`%%elif' after `%%else' ignored");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002756 defining->state = COND_NEVER;
2757 defining->ignoring = true;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002758 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002759
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002760 case COND_IF_FALSE:
2761 /*
2762 * IMPORTANT: In the case of %if, we will already have
2763 * called expand_mmac_params(); however, if we're
2764 * processing an %elif we must have been in a
2765 * non-emitting mode, which would have inhibited
2766 * the normal invocation of expand_mmac_params().
2767 * Therefore, we have to do it explicitly here.
2768 */
2769 j = if_condition(expand_mmac_params(tline->next), i);
2770 tline->next = NULL; /* it got freed */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002771 defining->state =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002772 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002773 defining->ignoring = ((defining->state == COND_IF_TRUE) ? false : true);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002774 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002775 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002776 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002777 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002778
H. Peter Anvine2c80182005-01-15 22:15:51 +00002779 case PP_ELSE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002780 if (defining != NULL) {
2781 if ((defining->type != EXP_IF) || (defining->def_depth > 0)) {
2782 return NO_DIRECTIVE_FOUND;
2783 }
2784 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002785 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002786 error_precond(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002787 "trailing garbage after `%%else' ignored");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002788 if ((defining == NULL) || (defining->type != EXP_IF)) {
2789 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
2790 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002791 switch (defining->state) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002792 case COND_IF_TRUE:
2793 case COND_DONE:
2794 defining->state = COND_ELSE_FALSE;
2795 defining->ignoring = true;
2796 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002797
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002798 case COND_NEVER:
2799 defining->ignoring = true;
2800 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002801
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002802 case COND_IF_FALSE:
2803 defining->state = COND_ELSE_TRUE;
2804 defining->ignoring = false;
2805 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002806
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002807 case COND_ELSE_TRUE:
2808 case COND_ELSE_FALSE:
2809 error_precond(ERR_WARNING|ERR_PASS1,
2810 "`%%else' after `%%else' ignored.");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002811 defining->state = COND_NEVER;
2812 defining->ignoring = true;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002813 break;
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002814 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002815 free_tlist(origline);
2816 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002817
H. Peter Anvine2c80182005-01-15 22:15:51 +00002818 case PP_ENDIF:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002819 if (defining != NULL) {
2820 if (defining->type == EXP_IF) {
2821 if (defining->def_depth > 0) {
2822 defining->def_depth --;
2823 return NO_DIRECTIVE_FOUND;
2824 }
2825 } else {
2826 return NO_DIRECTIVE_FOUND;
2827 }
2828 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002829 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002830 error_precond(ERR_WARNING|ERR_PASS1,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002831 "trailing garbage after `%%endif' ignored");
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002832 if ((defining == NULL) || (defining->type != EXP_IF)) {
2833 error(ERR_NONFATAL, "`%%endif': no matching `%%if'");
2834 return DIRECTIVE_FOUND;
2835 }
2836 ed = defining;
2837 defining = ed->prev;
2838 ed->prev = expansions;
2839 expansions = ed;
2840 ei = new_ExpInv(EXP_IF, ed);
2841 ei->current = ed->line;
2842 ei->emitting = true;
2843 ei->prev = istk->expansion;
2844 istk->expansion = ei;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002845 free_tlist(origline);
2846 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002847
H. Peter Anvindb8f96e2009-07-15 09:07:29 -04002848 case PP_RMACRO:
2849 case PP_IRMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002850 case PP_MACRO:
2851 case PP_IMACRO:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002852 if (defining != NULL) {
2853 if (defining->type == EXP_MMACRO) {
2854 defining->def_depth ++;
2855 }
2856 return NO_DIRECTIVE_FOUND;
2857 }
2858 ed = new_ExpDef(EXP_MMACRO);
2859 ed->max_depth =
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002860 (i == PP_RMACRO) || (i == PP_IRMACRO) ? DEADMAN_LIMIT : 0;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002861 ed->casesense = (i == PP_MACRO) || (i == PP_RMACRO);
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002862 if (!parse_mmacro_spec(tline, ed, pp_directives[i])) {
2863 nasm_free(ed);
2864 ed = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002865 return DIRECTIVE_FOUND;
2866 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002867 ed->def_depth = 0;
2868 ed->cur_depth = 0;
2869 ed->max_depth = (ed->max_depth + 1);
2870 ed->ignoring = false;
2871 ed->prev = defining;
2872 defining = ed;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002873
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002874 eed = (ExpDef *) hash_findix(&expdefs, ed->name);
2875 while (eed) {
2876 if (!strcmp(eed->name, ed->name) &&
2877 (eed->nparam_min <= ed->nparam_max
2878 || ed->plus)
2879 && (ed->nparam_min <= eed->nparam_max
2880 || eed->plus)) {
2881 error(ERR_WARNING|ERR_PASS1,
2882 "redefining multi-line macro `%s'", ed->name);
2883 return DIRECTIVE_FOUND;
2884 }
2885 eed = eed->next;
2886 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002887 free_tlist(origline);
2888 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002889
H. Peter Anvine2c80182005-01-15 22:15:51 +00002890 case PP_ENDM:
2891 case PP_ENDMACRO:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002892 if (defining != NULL) {
2893 if (defining->type == EXP_MMACRO) {
2894 if (defining->def_depth > 0) {
2895 defining->def_depth --;
2896 return NO_DIRECTIVE_FOUND;
2897 }
2898 } else {
2899 return NO_DIRECTIVE_FOUND;
2900 }
2901 }
2902 if (!(defining) || (defining->type != EXP_MMACRO)) {
2903 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2904 return DIRECTIVE_FOUND;
2905 }
2906 edhead = (ExpDef **) hash_findi_add(&expdefs, defining->name);
2907 defining->next = *edhead;
2908 *edhead = defining;
2909 ed = defining;
2910 defining = ed->prev;
2911 ed->prev = expansions;
2912 expansions = ed;
2913 ed = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002914 free_tlist(origline);
2915 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002916
H. Peter Anvin89cee572009-07-15 09:16:54 -04002917 case PP_EXITMACRO:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002918 if (defining != NULL) return NO_DIRECTIVE_FOUND;
2919 /*
2920 * We must search along istk->expansion until we hit a
2921 * macro invocation. Then we disable the emitting state(s)
2922 * between exitmacro and endmacro.
2923 */
2924 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
2925 if(ei->type == EXP_MMACRO) {
2926 break;
2927 }
2928 }
2929
2930 if (ei != NULL) {
2931 /*
2932 * Set all invocations leading back to the macro
2933 * invocation to a non-emitting state.
2934 */
2935 for (eei = istk->expansion; eei != ei; eei = eei->prev) {
2936 eei->emitting = false;
2937 }
2938 eei->emitting = false;
2939 } else {
2940 error(ERR_NONFATAL, "`%%exitmacro' not within `%%macro' block");
2941 }
Keith Kanios852f1ee2009-07-12 00:19:55 -05002942 free_tlist(origline);
2943 return DIRECTIVE_FOUND;
2944
H. Peter Anvina26433d2008-07-16 14:40:01 -07002945 case PP_UNMACRO:
2946 case PP_UNIMACRO:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002947 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002948 {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002949 ExpDef **ed_p;
2950 ExpDef spec;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002951
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002952 spec.casesense = (i == PP_UNMACRO);
2953 if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) {
2954 return DIRECTIVE_FOUND;
2955 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002956 ed_p = (ExpDef **) hash_findi(&expdefs, spec.name, NULL);
2957 while (ed_p && *ed_p) {
2958 ed = *ed_p;
2959 if (ed->casesense == spec.casesense &&
2960 !mstrcmp(ed->name, spec.name, spec.casesense) &&
2961 ed->nparam_min == spec.nparam_min &&
2962 ed->nparam_max == spec.nparam_max &&
2963 ed->plus == spec.plus) {
2964 *ed_p = ed->next;
2965 free_expdef(ed);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002966 } else {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05002967 ed_p = &ed->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03002968 }
2969 }
2970 free_tlist(origline);
2971 free_tlist(spec.dlist);
2972 return DIRECTIVE_FOUND;
H. Peter Anvina26433d2008-07-16 14:40:01 -07002973 }
2974
H. Peter Anvine2c80182005-01-15 22:15:51 +00002975 case PP_ROTATE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03002976 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002977 if (tline->next && tline->next->type == TOK_WHITESPACE)
2978 tline = tline->next;
H. Peter Anvin89cee572009-07-15 09:16:54 -04002979 if (!tline->next) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002980 free_tlist(origline);
2981 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
2982 return DIRECTIVE_FOUND;
2983 }
2984 t = expand_smacro(tline->next);
2985 tline->next = NULL;
2986 free_tlist(origline);
2987 tline = t;
2988 tptr = &t;
2989 tokval.t_type = TOKEN_INVALID;
2990 evalresult =
2991 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2992 free_tlist(tline);
2993 if (!evalresult)
2994 return DIRECTIVE_FOUND;
2995 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002996 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002997 "trailing garbage after expression ignored");
2998 if (!is_simple(evalresult)) {
2999 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
3000 return DIRECTIVE_FOUND;
3001 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003002 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3003 if (ei->type == EXP_MMACRO) {
3004 break;
3005 }
3006 }
3007 if (ei == NULL) {
3008 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
3009 } else if (ei->nparam == 0) {
3010 error(ERR_NONFATAL,
3011 "`%%rotate' invoked within macro without parameters");
3012 } else {
3013 int rotate = ei->rotate + reloc_value(evalresult);
3014
3015 rotate %= (int)ei->nparam;
3016 if (rotate < 0)
3017 rotate += ei->nparam;
3018 ei->rotate = rotate;
3019 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003020 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003021
H. Peter Anvine2c80182005-01-15 22:15:51 +00003022 case PP_REP:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003023 if (defining != NULL) {
3024 if (defining->type == EXP_REP) {
3025 defining->def_depth ++;
3026 }
3027 return NO_DIRECTIVE_FOUND;
3028 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003029 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003030 do {
3031 tline = tline->next;
3032 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003033
H. Peter Anvine2c80182005-01-15 22:15:51 +00003034 if (tok_type_(tline, TOK_ID) &&
3035 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003036 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003037 do {
3038 tline = tline->next;
3039 } while (tok_type_(tline, TOK_WHITESPACE));
3040 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003041
H. Peter Anvine2c80182005-01-15 22:15:51 +00003042 if (tline) {
3043 t = expand_smacro(tline);
3044 tptr = &t;
3045 tokval.t_type = TOKEN_INVALID;
3046 evalresult =
3047 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3048 if (!evalresult) {
3049 free_tlist(origline);
3050 return DIRECTIVE_FOUND;
3051 }
3052 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003053 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003054 "trailing garbage after expression ignored");
3055 if (!is_simple(evalresult)) {
3056 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
3057 return DIRECTIVE_FOUND;
3058 }
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04003059 count = reloc_value(evalresult);
3060 if (count >= REP_LIMIT) {
Cyrill Gorcunov71f4f842010-08-09 20:17:17 +04003061 error(ERR_NONFATAL, "`%%rep' value exceeds limit");
Cyrill Gorcunove091d6e2010-08-09 13:58:22 +04003062 count = 0;
3063 } else
3064 count++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003065 } else {
3066 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07003067 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003068 }
3069 free_tlist(origline);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003070 ed = new_ExpDef(EXP_REP);
3071 ed->nolist = nolist;
3072 ed->def_depth = 0;
3073 ed->cur_depth = 1;
3074 ed->max_depth = (count - 1);
3075 ed->ignoring = false;
3076 ed->prev = defining;
3077 defining = ed;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003078 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003079
H. Peter Anvine2c80182005-01-15 22:15:51 +00003080 case PP_ENDREP:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003081 if (defining != NULL) {
3082 if (defining->type == EXP_REP) {
3083 if (defining->def_depth > 0) {
3084 defining->def_depth --;
3085 return NO_DIRECTIVE_FOUND;
3086 }
3087 } else {
3088 return NO_DIRECTIVE_FOUND;
3089 }
3090 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05003091 if ((defining == NULL) || (defining->type != EXP_REP)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003092 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
3093 return DIRECTIVE_FOUND;
3094 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003095
H. Peter Anvine2c80182005-01-15 22:15:51 +00003096 /*
3097 * Now we have a "macro" defined - although it has no name
3098 * and we won't be entering it in the hash tables - we must
3099 * push a macro-end marker for it on to istk->expansion.
3100 * After that, it will take care of propagating itself (a
3101 * macro-end marker line for a macro which is really a %rep
3102 * block will cause the macro to be re-expanded, complete
3103 * with another macro-end marker to ensure the process
3104 * continues) until the whole expansion is forcibly removed
3105 * from istk->expansion by a %exitrep.
3106 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003107 ed = defining;
3108 defining = ed->prev;
3109 ed->prev = expansions;
3110 expansions = ed;
3111 ei = new_ExpInv(EXP_REP, ed);
3112 ei->current = ed->line;
3113 ei->emitting = ((ed->max_depth > 0) ? true : false);
3114 list->uplevel(ed->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
3115 ei->prev = istk->expansion;
3116 istk->expansion = ei;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003117 free_tlist(origline);
3118 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003119
H. Peter Anvine2c80182005-01-15 22:15:51 +00003120 case PP_EXITREP:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003121 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3122 /*
3123 * We must search along istk->expansion until we hit a
3124 * rep invocation. Then we disable the emitting state(s)
3125 * between exitrep and endrep.
3126 */
3127 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3128 if (ei->type == EXP_REP) {
3129 break;
3130 }
3131 }
3132
3133 if (ei != NULL) {
3134 /*
3135 * Set all invocations leading back to the rep
3136 * invocation to a non-emitting state.
3137 */
3138 for (eei = istk->expansion; eei != ei; eei = eei->prev) {
3139 eei->emitting = false;
3140 }
3141 eei->emitting = false;
3142 eei->current = NULL;
3143 eei->def->cur_depth = eei->def->max_depth;
3144 } else {
3145 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
3146 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003147 free_tlist(origline);
3148 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003149
H. Peter Anvine2c80182005-01-15 22:15:51 +00003150 case PP_XDEFINE:
3151 case PP_IXDEFINE:
3152 case PP_DEFINE:
3153 case PP_IDEFINE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003154 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003155 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003156
H. Peter Anvine2c80182005-01-15 22:15:51 +00003157 tline = tline->next;
3158 skip_white_(tline);
3159 tline = expand_id(tline);
3160 if (!tline || (tline->type != TOK_ID &&
3161 (tline->type != TOK_PREPROC_ID ||
3162 tline->text[1] != '$'))) {
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003163 error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003164 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003165 free_tlist(origline);
3166 return DIRECTIVE_FOUND;
3167 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003168
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003169 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003170 last = tline;
3171 param_start = tline = tline->next;
3172 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003173
H. Peter Anvine2c80182005-01-15 22:15:51 +00003174 /* Expand the macro definition now for %xdefine and %ixdefine */
3175 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
3176 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003177
H. Peter Anvine2c80182005-01-15 22:15:51 +00003178 if (tok_is_(tline, "(")) {
3179 /*
3180 * This macro has parameters.
3181 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003182
H. Peter Anvine2c80182005-01-15 22:15:51 +00003183 tline = tline->next;
3184 while (1) {
3185 skip_white_(tline);
3186 if (!tline) {
3187 error(ERR_NONFATAL, "parameter identifier expected");
3188 free_tlist(origline);
3189 return DIRECTIVE_FOUND;
3190 }
3191 if (tline->type != TOK_ID) {
3192 error(ERR_NONFATAL,
3193 "`%s': parameter identifier expected",
3194 tline->text);
3195 free_tlist(origline);
3196 return DIRECTIVE_FOUND;
3197 }
3198 tline->type = TOK_SMAC_PARAM + nparam++;
3199 tline = tline->next;
3200 skip_white_(tline);
3201 if (tok_is_(tline, ",")) {
3202 tline = tline->next;
H. Peter Anvinca348b62008-07-23 10:49:26 -04003203 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003204 if (!tok_is_(tline, ")")) {
3205 error(ERR_NONFATAL,
3206 "`)' expected to terminate macro template");
3207 free_tlist(origline);
3208 return DIRECTIVE_FOUND;
3209 }
3210 break;
3211 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003212 }
3213 last = tline;
3214 tline = tline->next;
3215 }
3216 if (tok_type_(tline, TOK_WHITESPACE))
3217 last = tline, tline = tline->next;
3218 macro_start = NULL;
3219 last->next = NULL;
3220 t = tline;
3221 while (t) {
3222 if (t->type == TOK_ID) {
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003223 list_for_each(tt, param_start)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003224 if (tt->type >= TOK_SMAC_PARAM &&
3225 !strcmp(tt->text, t->text))
3226 t->type = tt->type;
3227 }
3228 tt = t->next;
3229 t->next = macro_start;
3230 macro_start = t;
3231 t = tt;
3232 }
3233 /*
3234 * Good. We now have a macro name, a parameter count, and a
3235 * token list (in reverse order) for an expansion. We ought
3236 * to be OK just to create an SMacro, store it, and let
3237 * free_tlist have the rest of the line (which we have
3238 * carefully re-terminated after chopping off the expansion
3239 * from the end).
3240 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003241 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003242 free_tlist(origline);
3243 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003244
H. Peter Anvine2c80182005-01-15 22:15:51 +00003245 case PP_UNDEF:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003246 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003247 tline = tline->next;
3248 skip_white_(tline);
3249 tline = expand_id(tline);
3250 if (!tline || (tline->type != TOK_ID &&
3251 (tline->type != TOK_PREPROC_ID ||
3252 tline->text[1] != '$'))) {
3253 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
3254 free_tlist(origline);
3255 return DIRECTIVE_FOUND;
3256 }
3257 if (tline->next) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07003258 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003259 "trailing garbage after macro name ignored");
3260 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003261
H. Peter Anvine2c80182005-01-15 22:15:51 +00003262 /* Find the context that symbol belongs to */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003263 ctx = get_ctx(tline->text, &mname, false);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003264 undef_smacro(ctx, mname);
3265 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003266 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003267
H. Peter Anvin9e200162008-06-04 17:23:14 -07003268 case PP_DEFSTR:
3269 case PP_IDEFSTR:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003270 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003271 casesense = (i == PP_DEFSTR);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003272
3273 tline = tline->next;
3274 skip_white_(tline);
3275 tline = expand_id(tline);
3276 if (!tline || (tline->type != TOK_ID &&
3277 (tline->type != TOK_PREPROC_ID ||
3278 tline->text[1] != '$'))) {
3279 error(ERR_NONFATAL, "`%s' expects a macro identifier",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003280 pp_directives[i]);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003281 free_tlist(origline);
3282 return DIRECTIVE_FOUND;
3283 }
3284
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003285 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003286 last = tline;
3287 tline = expand_smacro(tline->next);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003288 last->next = NULL;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003289
3290 while (tok_type_(tline, TOK_WHITESPACE))
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003291 tline = delete_Token(tline);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003292
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003293 p = detoken(tline, false);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003294 macro_start = nasm_malloc(sizeof(*macro_start));
3295 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003296 macro_start->text = nasm_quote(p, strlen(p));
3297 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003298 macro_start->a.mac = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003299 nasm_free(p);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003300
3301 /*
3302 * We now have a macro name, an implicit parameter count of
3303 * zero, and a string token to use as an expansion. Create
3304 * and store an SMacro.
3305 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003306 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvin9e200162008-06-04 17:23:14 -07003307 free_tlist(origline);
3308 return DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003309
H. Peter Anvin2f55bda2009-07-14 15:04:04 -04003310 case PP_DEFTOK:
3311 case PP_IDEFTOK:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003312 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003313 casesense = (i == PP_DEFTOK);
3314
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003315 tline = tline->next;
3316 skip_white_(tline);
3317 tline = expand_id(tline);
3318 if (!tline || (tline->type != TOK_ID &&
3319 (tline->type != TOK_PREPROC_ID ||
3320 tline->text[1] != '$'))) {
3321 error(ERR_NONFATAL,
3322 "`%s' expects a macro identifier as first parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003323 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003324 free_tlist(origline);
3325 return DIRECTIVE_FOUND;
3326 }
3327 ctx = get_ctx(tline->text, &mname, false);
3328 last = tline;
3329 tline = expand_smacro(tline->next);
3330 last->next = NULL;
3331
3332 t = tline;
3333 while (tok_type_(t, TOK_WHITESPACE))
3334 t = t->next;
3335 /* t should now point to the string */
Cyrill Gorcunov6908e582010-09-06 19:36:15 +04003336 if (!tok_type_(t, TOK_STRING)) {
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003337 error(ERR_NONFATAL,
3338 "`%s` requires string as second parameter",
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003339 pp_directives[i]);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003340 free_tlist(tline);
3341 free_tlist(origline);
3342 return DIRECTIVE_FOUND;
3343 }
3344
Keith Kaniosb307a4f2010-11-06 17:41:51 -05003345 /*
3346 * Convert the string to a token stream. Note that smacros
3347 * are stored with the token stream reversed, so we have to
3348 * reverse the output of tokenize().
3349 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003350 nasm_unquote_cstr(t->text, i);
H. Peter Anvinb40992c2010-09-15 08:57:21 -07003351 macro_start = reverse_tokens(tokenize(t->text));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003352
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003353 /*
3354 * We now have a macro name, an implicit parameter count of
3355 * zero, and a numeric token to use as an expansion. Create
3356 * and store an SMacro.
3357 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003358 define_smacro(ctx, mname, casesense, 0, macro_start);
Keith Kaniosb83fd0b2009-07-14 01:04:12 -05003359 free_tlist(tline);
3360 free_tlist(origline);
3361 return DIRECTIVE_FOUND;
H. Peter Anvin9e200162008-06-04 17:23:14 -07003362
H. Peter Anvin418ca702008-05-30 10:42:30 -07003363 case PP_PATHSEARCH:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003364 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003365 {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003366 FILE *fp;
3367 StrList *xsl = NULL;
3368 StrList **xst = &xsl;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003369
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003370 casesense = true;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003371
3372 tline = tline->next;
3373 skip_white_(tline);
3374 tline = expand_id(tline);
3375 if (!tline || (tline->type != TOK_ID &&
3376 (tline->type != TOK_PREPROC_ID ||
3377 tline->text[1] != '$'))) {
3378 error(ERR_NONFATAL,
3379 "`%%pathsearch' expects a macro identifier as first parameter");
3380 free_tlist(origline);
3381 return DIRECTIVE_FOUND;
3382 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003383 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003384 last = tline;
3385 tline = expand_smacro(tline->next);
3386 last->next = NULL;
3387
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003388 t = tline;
H. Peter Anvin418ca702008-05-30 10:42:30 -07003389 while (tok_type_(t, TOK_WHITESPACE))
3390 t = t->next;
3391
3392 if (!t || (t->type != TOK_STRING &&
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003393 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07003394 error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003395 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003396 free_tlist(origline);
3397 return DIRECTIVE_FOUND; /* but we did _something_ */
3398 }
3399 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003400 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07003401 "trailing garbage after `%%pathsearch' ignored");
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003402 p = t->text;
H. Peter Anvin427cc912008-06-01 21:43:03 -07003403 if (t->type != TOK_INTERNAL_STRING)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003404 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003405
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003406 fp = inc_fopen(p, &xsl, &xst, true);
3407 if (fp) {
3408 p = xsl->str;
3409 fclose(fp); /* Don't actually care about the file */
3410 }
H. Peter Anvin418ca702008-05-30 10:42:30 -07003411 macro_start = nasm_malloc(sizeof(*macro_start));
3412 macro_start->next = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003413 macro_start->text = nasm_quote(p, strlen(p));
3414 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003415 macro_start->a.mac = NULL;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003416 if (xsl)
3417 nasm_free(xsl);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003418
3419 /*
3420 * We now have a macro name, an implicit parameter count of
3421 * zero, and a string token to use as an expansion. Create
3422 * and store an SMacro.
3423 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003424 define_smacro(ctx, mname, casesense, 0, macro_start);
3425 free_tlist(tline);
H. Peter Anvin418ca702008-05-30 10:42:30 -07003426 free_tlist(origline);
3427 return DIRECTIVE_FOUND;
3428 }
3429
H. Peter Anvine2c80182005-01-15 22:15:51 +00003430 case PP_STRLEN:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003431 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003432 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07003433
H. Peter Anvine2c80182005-01-15 22:15:51 +00003434 tline = tline->next;
3435 skip_white_(tline);
3436 tline = expand_id(tline);
3437 if (!tline || (tline->type != TOK_ID &&
3438 (tline->type != TOK_PREPROC_ID ||
3439 tline->text[1] != '$'))) {
3440 error(ERR_NONFATAL,
3441 "`%%strlen' expects a macro identifier as first parameter");
3442 free_tlist(origline);
3443 return DIRECTIVE_FOUND;
3444 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003445 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003446 last = tline;
3447 tline = expand_smacro(tline->next);
3448 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003449
H. Peter Anvine2c80182005-01-15 22:15:51 +00003450 t = tline;
3451 while (tok_type_(t, TOK_WHITESPACE))
3452 t = t->next;
3453 /* t should now point to the string */
Cyrill Gorcunov4e1d5ab2010-07-23 18:51:51 +04003454 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003455 error(ERR_NONFATAL,
3456 "`%%strlen` requires string as second parameter");
3457 free_tlist(tline);
3458 free_tlist(origline);
3459 return DIRECTIVE_FOUND;
3460 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003461
H. Peter Anvine2c80182005-01-15 22:15:51 +00003462 macro_start = nasm_malloc(sizeof(*macro_start));
3463 macro_start->next = NULL;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003464 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003465 macro_start->a.mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003466
H. Peter Anvine2c80182005-01-15 22:15:51 +00003467 /*
3468 * We now have a macro name, an implicit parameter count of
3469 * zero, and a numeric token to use as an expansion. Create
3470 * and store an SMacro.
3471 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003472 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003473 free_tlist(tline);
3474 free_tlist(origline);
3475 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003476
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003477 case PP_STRCAT:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003478 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003479 casesense = true;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003480
3481 tline = tline->next;
3482 skip_white_(tline);
3483 tline = expand_id(tline);
3484 if (!tline || (tline->type != TOK_ID &&
3485 (tline->type != TOK_PREPROC_ID ||
3486 tline->text[1] != '$'))) {
3487 error(ERR_NONFATAL,
3488 "`%%strcat' expects a macro identifier as first parameter");
3489 free_tlist(origline);
3490 return DIRECTIVE_FOUND;
3491 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003492 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003493 last = tline;
3494 tline = expand_smacro(tline->next);
3495 last->next = NULL;
3496
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003497 len = 0;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003498 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003499 switch (t->type) {
3500 case TOK_WHITESPACE:
3501 break;
3502 case TOK_STRING:
3503 len += t->a.len = nasm_unquote(t->text, NULL);
3504 break;
3505 case TOK_OTHER:
3506 if (!strcmp(t->text, ",")) /* permit comma separators */
3507 break;
3508 /* else fall through */
3509 default:
3510 error(ERR_NONFATAL,
3511 "non-string passed to `%%strcat' (%d)", t->type);
3512 free_tlist(tline);
3513 free_tlist(origline);
3514 return DIRECTIVE_FOUND;
3515 }
3516 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003517
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003518 p = pp = nasm_malloc(len);
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04003519 list_for_each(t, tline) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003520 if (t->type == TOK_STRING) {
3521 memcpy(p, t->text, t->a.len);
3522 p += t->a.len;
3523 }
3524 }
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003525
3526 /*
3527 * We now have a macro name, an implicit parameter count of
3528 * zero, and a numeric token to use as an expansion. Create
3529 * and store an SMacro.
3530 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003531 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
3532 macro_start->text = nasm_quote(pp, len);
3533 nasm_free(pp);
3534 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003535 free_tlist(tline);
3536 free_tlist(origline);
3537 return DIRECTIVE_FOUND;
3538
H. Peter Anvine2c80182005-01-15 22:15:51 +00003539 case PP_SUBSTR:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003540 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003541 {
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003542 int64_t start, count;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003543 size_t len;
H. Peter Anvind2456592008-06-19 15:04:18 -07003544
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003545 casesense = true;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003546
H. Peter Anvine2c80182005-01-15 22:15:51 +00003547 tline = tline->next;
3548 skip_white_(tline);
3549 tline = expand_id(tline);
3550 if (!tline || (tline->type != TOK_ID &&
3551 (tline->type != TOK_PREPROC_ID ||
3552 tline->text[1] != '$'))) {
3553 error(ERR_NONFATAL,
3554 "`%%substr' expects a macro identifier as first parameter");
3555 free_tlist(origline);
3556 return DIRECTIVE_FOUND;
3557 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003558 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003559 last = tline;
3560 tline = expand_smacro(tline->next);
3561 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003562
Cyrill Gorcunov35519d62010-09-06 23:49:52 +04003563 if (tline) /* skip expanded id */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003564 t = tline->next;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003565 while (tok_type_(t, TOK_WHITESPACE))
3566 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003567
H. Peter Anvine2c80182005-01-15 22:15:51 +00003568 /* t should now point to the string */
Cyrill Gorcunov35519d62010-09-06 23:49:52 +04003569 if (!tok_type_(t, TOK_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003570 error(ERR_NONFATAL,
3571 "`%%substr` requires string as second parameter");
3572 free_tlist(tline);
3573 free_tlist(origline);
3574 return DIRECTIVE_FOUND;
3575 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003576
H. Peter Anvine2c80182005-01-15 22:15:51 +00003577 tt = t->next;
3578 tptr = &tt;
3579 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003580 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003581 pass, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003582 if (!evalresult) {
3583 free_tlist(tline);
3584 free_tlist(origline);
3585 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003586 } else if (!is_simple(evalresult)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003587 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3588 free_tlist(tline);
3589 free_tlist(origline);
3590 return DIRECTIVE_FOUND;
3591 }
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003592 start = evalresult->value - 1;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003593
3594 while (tok_type_(tt, TOK_WHITESPACE))
3595 tt = tt->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003596 if (!tt) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05003597 count = 1; /* Backwards compatibility: one character */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003598 } else {
3599 tokval.t_type = TOKEN_INVALID;
3600 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3601 pass, error, NULL);
3602 if (!evalresult) {
3603 free_tlist(tline);
3604 free_tlist(origline);
3605 return DIRECTIVE_FOUND;
3606 } else if (!is_simple(evalresult)) {
3607 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3608 free_tlist(tline);
3609 free_tlist(origline);
3610 return DIRECTIVE_FOUND;
3611 }
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003612 count = evalresult->value;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003613 }
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003614
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003615 len = nasm_unquote(t->text, NULL);
Cyrill Gorcunovcff031e2010-09-07 20:31:11 +04003616 /* make start and count being in range */
3617 if (start < 0)
3618 start = 0;
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003619 if (count < 0)
3620 count = len + count + 1 - start;
3621 if (start + count > (int64_t)len)
Cyrill Gorcunovcff031e2010-09-07 20:31:11 +04003622 count = len - start;
3623 if (!len || count < 0 || start >=(int64_t)len)
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003624 start = -1, count = 0; /* empty string */
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003625
H. Peter Anvine2c80182005-01-15 22:15:51 +00003626 macro_start = nasm_malloc(sizeof(*macro_start));
3627 macro_start->next = NULL;
Cyrill Gorcunovab122872010-09-07 10:42:02 +04003628 macro_start->text = nasm_quote((start < 0) ? "" : t->text + start, count);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003629 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003630 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003631
H. Peter Anvine2c80182005-01-15 22:15:51 +00003632 /*
3633 * We now have a macro name, an implicit parameter count of
3634 * zero, and a numeric token to use as an expansion. Create
3635 * and store an SMacro.
3636 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003637 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003638 free_tlist(tline);
3639 free_tlist(origline);
3640 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003641 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003642
H. Peter Anvine2c80182005-01-15 22:15:51 +00003643 case PP_ASSIGN:
3644 case PP_IASSIGN:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003645 if (defining != NULL) return NO_DIRECTIVE_FOUND;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003646 casesense = (i == PP_ASSIGN);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003647
H. Peter Anvine2c80182005-01-15 22:15:51 +00003648 tline = tline->next;
3649 skip_white_(tline);
3650 tline = expand_id(tline);
3651 if (!tline || (tline->type != TOK_ID &&
3652 (tline->type != TOK_PREPROC_ID ||
3653 tline->text[1] != '$'))) {
3654 error(ERR_NONFATAL,
3655 "`%%%sassign' expects a macro identifier",
3656 (i == PP_IASSIGN ? "i" : ""));
3657 free_tlist(origline);
3658 return DIRECTIVE_FOUND;
3659 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003660 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003661 last = tline;
3662 tline = expand_smacro(tline->next);
3663 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003664
H. Peter Anvine2c80182005-01-15 22:15:51 +00003665 t = tline;
3666 tptr = &t;
3667 tokval.t_type = TOKEN_INVALID;
3668 evalresult =
3669 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3670 free_tlist(tline);
3671 if (!evalresult) {
3672 free_tlist(origline);
3673 return DIRECTIVE_FOUND;
3674 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003675
H. Peter Anvine2c80182005-01-15 22:15:51 +00003676 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003677 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003678 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00003679
H. Peter Anvine2c80182005-01-15 22:15:51 +00003680 if (!is_simple(evalresult)) {
3681 error(ERR_NONFATAL,
3682 "non-constant value given to `%%%sassign'",
3683 (i == PP_IASSIGN ? "i" : ""));
3684 free_tlist(origline);
3685 return DIRECTIVE_FOUND;
3686 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003687
H. Peter Anvine2c80182005-01-15 22:15:51 +00003688 macro_start = nasm_malloc(sizeof(*macro_start));
3689 macro_start->next = NULL;
3690 make_tok_num(macro_start, reloc_value(evalresult));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003691 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003692
H. Peter Anvine2c80182005-01-15 22:15:51 +00003693 /*
3694 * We now have a macro name, an implicit parameter count of
3695 * zero, and a numeric token to use as an expansion. Create
3696 * and store an SMacro.
3697 */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003698 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003699 free_tlist(origline);
3700 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003701
H. Peter Anvine2c80182005-01-15 22:15:51 +00003702 case PP_LINE:
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003703 if (defining != NULL) return NO_DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003704 /*
3705 * Syntax is `%line nnn[+mmm] [filename]'
3706 */
3707 tline = tline->next;
3708 skip_white_(tline);
3709 if (!tok_type_(tline, TOK_NUMBER)) {
3710 error(ERR_NONFATAL, "`%%line' expects line number");
3711 free_tlist(origline);
3712 return DIRECTIVE_FOUND;
3713 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003714 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003715 m = 1;
3716 tline = tline->next;
3717 if (tok_is_(tline, "+")) {
3718 tline = tline->next;
3719 if (!tok_type_(tline, TOK_NUMBER)) {
3720 error(ERR_NONFATAL, "`%%line' expects line increment");
3721 free_tlist(origline);
3722 return DIRECTIVE_FOUND;
3723 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003724 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003725 tline = tline->next;
3726 }
3727 skip_white_(tline);
3728 src_set_linnum(k);
3729 istk->lineinc = m;
3730 if (tline) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003731 nasm_free(src_set_fname(detoken(tline, false)));
H. Peter Anvine2c80182005-01-15 22:15:51 +00003732 }
3733 free_tlist(origline);
3734 return DIRECTIVE_FOUND;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05003735
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03003736 case PP_WHILE:
3737 if (defining != NULL) {
3738 if (defining->type == EXP_WHILE) {
3739 defining->def_depth ++;
3740 }
3741 return NO_DIRECTIVE_FOUND;
3742 }
3743 l = NULL;
3744 if ((istk->expansion != NULL) &&
3745 (istk->expansion->emitting == false)) {
3746 j = COND_NEVER;
3747 } else {
3748 l = new_Line();
3749 l->first = copy_Token(tline->next);
3750 j = if_condition(tline->next, i);
3751 tline->next = NULL; /* it got freed */
3752 j = (((j < 0) ? COND_NEVER : j) ? COND_IF_TRUE : COND_IF_FALSE);
3753 }
3754 ed = new_ExpDef(EXP_WHILE);
3755 ed->state = j;
3756 ed->cur_depth = 1;
3757 ed->max_depth = DEADMAN_LIMIT;
3758 ed->ignoring = ((ed->state == COND_IF_TRUE) ? false : true);
3759 if (ed->ignoring == false) {
3760 ed->line = l;
3761 ed->last = l;
3762 } else if (l != NULL) {
3763 delete_Token(l->first);
3764 nasm_free(l);
3765 l = NULL;
3766 }
3767 ed->prev = defining;
3768 defining = ed;
3769 free_tlist(origline);
3770 return DIRECTIVE_FOUND;
3771
3772 case PP_ENDWHILE:
3773 if (defining != NULL) {
3774 if (defining->type == EXP_WHILE) {
3775 if (defining->def_depth > 0) {
3776 defining->def_depth --;
3777 return NO_DIRECTIVE_FOUND;
3778 }
3779 } else {
3780 return NO_DIRECTIVE_FOUND;
3781 }
3782 }
3783 if (tline->next != NULL) {
3784 error_precond(ERR_WARNING|ERR_PASS1,
3785 "trailing garbage after `%%endwhile' ignored");
3786 }
3787 if ((defining == NULL) || (defining->type != EXP_WHILE)) {
3788 error(ERR_NONFATAL, "`%%endwhile': no matching `%%while'");
3789 return DIRECTIVE_FOUND;
3790 }
3791 ed = defining;
3792 defining = ed->prev;
3793 if (ed->ignoring == false) {
3794 ed->prev = expansions;
3795 expansions = ed;
3796 ei = new_ExpInv(EXP_WHILE, ed);
3797 ei->current = ed->line->next;
3798 ei->emitting = true;
3799 ei->prev = istk->expansion;
3800 istk->expansion = ei;
3801 } else {
3802 nasm_free(ed);
3803 }
3804 free_tlist(origline);
3805 return DIRECTIVE_FOUND;
3806
3807 case PP_EXITWHILE:
3808 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3809 /*
3810 * We must search along istk->expansion until we hit a
3811 * while invocation. Then we disable the emitting state(s)
3812 * between exitwhile and endwhile.
3813 */
3814 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
3815 if (ei->type == EXP_WHILE) {
3816 break;
3817 }
3818 }
3819
3820 if (ei != NULL) {
3821 /*
3822 * Set all invocations leading back to the while
3823 * invocation to a non-emitting state.
3824 */
3825 for (eei = istk->expansion; eei != ei; eei = eei->prev) {
3826 eei->emitting = false;
3827 }
3828 eei->emitting = false;
3829 eei->current = NULL;
3830 eei->def->cur_depth = eei->def->max_depth;
3831 } else {
3832 error(ERR_NONFATAL, "`%%exitwhile' not within `%%while' block");
3833 }
3834 free_tlist(origline);
3835 return DIRECTIVE_FOUND;
3836
3837 case PP_COMMENT:
3838 if (defining != NULL) {
3839 if (defining->type == EXP_COMMENT) {
3840 defining->def_depth ++;
3841 }
3842 return NO_DIRECTIVE_FOUND;
3843 }
3844 ed = new_ExpDef(EXP_COMMENT);
3845 ed->ignoring = true;
3846 ed->prev = defining;
3847 defining = ed;
3848 free_tlist(origline);
3849 return DIRECTIVE_FOUND;
3850
3851 case PP_ENDCOMMENT:
3852 if (defining != NULL) {
3853 if (defining->type == EXP_COMMENT) {
3854 if (defining->def_depth > 0) {
3855 defining->def_depth --;
3856 return NO_DIRECTIVE_FOUND;
3857 }
3858 } else {
3859 return NO_DIRECTIVE_FOUND;
3860 }
3861 }
3862 if ((defining == NULL) || (defining->type != EXP_COMMENT)) {
3863 error(ERR_NONFATAL, "`%%endcomment': no matching `%%comment'");
3864 return DIRECTIVE_FOUND;
3865 }
3866 ed = defining;
3867 defining = ed->prev;
3868 nasm_free(ed);
3869 free_tlist(origline);
3870 return DIRECTIVE_FOUND;
3871
3872 case PP_FINAL:
3873 if (defining != NULL) return NO_DIRECTIVE_FOUND;
3874 if (in_final != false) {
3875 error(ERR_FATAL, "`%%final' cannot be used recursively");
3876 }
3877 tline = tline->next;
3878 skip_white_(tline);
3879 if (tline == NULL) {
3880 error(ERR_NONFATAL, "`%%final' expects at least one parameter");
3881 } else {
3882 l = new_Line();
3883 l->first = copy_Token(tline);
3884 l->next = finals;
3885 finals = l;
3886 }
3887 free_tlist(origline);
3888 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003889
H. Peter Anvine2c80182005-01-15 22:15:51 +00003890 default:
3891 error(ERR_FATAL,
3892 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00003893 pp_directives[i]);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003894 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003895 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003896}
3897
3898/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00003899 * Ensure that a macro parameter contains a condition code and
3900 * nothing else. Return the condition code index if so, or -1
3901 * otherwise.
3902 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003903static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003904{
H. Peter Anvin76690a12002-04-30 20:52:49 +00003905 Token *tt;
3906 int i, j, k, m;
3907
H. Peter Anvin25a99342007-09-22 17:45:45 -07003908 if (!t)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003909 return -1; /* Probably a %+ without a space */
H. Peter Anvin25a99342007-09-22 17:45:45 -07003910
H. Peter Anvineba20a72002-04-30 20:53:55 +00003911 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003912 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003913 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003914 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003915 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003916 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003917 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003918
3919 i = -1;
Cyrill Gorcunova7319242010-06-03 22:04:36 +04003920 j = ARRAY_SIZE(conditions);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003921 while (j - i > 1) {
3922 k = (j + i) / 2;
3923 m = nasm_stricmp(t->text, conditions[k]);
3924 if (m == 0) {
3925 i = k;
3926 j = -2;
3927 break;
3928 } else if (m < 0) {
3929 j = k;
3930 } else
3931 i = k;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003932 }
3933 if (j != -2)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003934 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003935 return i;
3936}
3937
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003938static bool paste_tokens(Token **head, const struct tokseq_match *m,
3939 int mnum, bool handle_paste_tokens)
H. Peter Anvind784a082009-04-20 14:01:18 -07003940{
3941 Token **tail, *t, *tt;
3942 Token **paste_head;
3943 bool did_paste = false;
3944 char *tmp;
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003945 int i;
H. Peter Anvind784a082009-04-20 14:01:18 -07003946
3947 /* Now handle token pasting... */
3948 paste_head = NULL;
3949 tail = head;
3950 while ((t = *tail) && (tt = t->next)) {
3951 switch (t->type) {
3952 case TOK_WHITESPACE:
3953 if (tt->type == TOK_WHITESPACE) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003954 /* Zap adjacent whitespace tokens */
H. Peter Anvind784a082009-04-20 14:01:18 -07003955 t->next = delete_Token(tt);
3956 } else {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003957 /* Do not advance paste_head here */
3958 tail = &t->next;
3959 }
H. Peter Anvind784a082009-04-20 14:01:18 -07003960 break;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003961 case TOK_PASTE: /* %+ */
3962 if (handle_paste_tokens) {
3963 /* Zap %+ and whitespace tokens to the right */
3964 while (t && (t->type == TOK_WHITESPACE ||
3965 t->type == TOK_PASTE))
3966 t = *tail = delete_Token(t);
3967 if (!paste_head || !t)
3968 break; /* Nothing to paste with */
3969 tail = paste_head;
3970 t = *tail;
3971 tt = t->next;
3972 while (tok_type_(tt, TOK_WHITESPACE))
3973 tt = t->next = delete_Token(tt);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03003974 if (tt) {
3975 tmp = nasm_strcat(t->text, tt->text);
3976 delete_Token(t);
3977 tt = delete_Token(tt);
3978 t = *tail = tokenize(tmp);
3979 nasm_free(tmp);
3980 while (t->next) {
3981 tail = &t->next;
3982 t = t->next;
3983 }
3984 t->next = tt; /* Attach the remaining token chain */
3985 did_paste = true;
3986 }
3987 paste_head = tail;
3988 tail = &t->next;
3989 break;
3990 }
3991 /* else fall through */
3992 default:
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04003993 /*
3994 * Concatenation of tokens might look nontrivial
3995 * but in real it's pretty simple -- the caller
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04003996 * prepares the masks of token types to be concatenated
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04003997 * and we simply find matched sequences and slip
3998 * them together
3999 */
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004000 for (i = 0; i < mnum; i++) {
4001 if (PP_CONCAT_MASK(t->type) & m[i].mask_head) {
4002 size_t len = 0;
4003 char *tmp, *p;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004004
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004005 while (tt && (PP_CONCAT_MASK(tt->type) & m[i].mask_tail)) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004006 len += strlen(tt->text);
4007 tt = tt->next;
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004008 }
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004009
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004010 /*
4011 * Now tt points to the first token after
4012 * the potential paste area...
4013 */
4014 if (tt != t->next) {
4015 /* We have at least two tokens... */
4016 len += strlen(t->text);
4017 p = tmp = nasm_malloc(len+1);
4018 while (t != tt) {
4019 strcpy(p, t->text);
4020 p = strchr(p, '\0');
4021 t = delete_Token(t);
4022 }
4023 t = *tail = tokenize(tmp);
4024 nasm_free(tmp);
4025 while (t->next) {
4026 tail = &t->next;
4027 t = t->next;
4028 }
4029 t->next = tt; /* Attach the remaining token chain */
4030 did_paste = true;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004031 }
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004032 paste_head = tail;
4033 tail = &t->next;
4034 break;
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004035 }
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004036 }
4037 if (i >= mnum) { /* no match */
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004038 tail = &t->next;
4039 if (!tok_type_(t->next, TOK_WHITESPACE))
4040 paste_head = tail;
4041 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004042 break;
H. Peter Anvind784a082009-04-20 14:01:18 -07004043 }
4044 }
4045 return did_paste;
4046}
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004047
4048/*
4049 * expands to a list of tokens from %{x:y}
4050 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004051static Token *expand_mmac_params_range(ExpInv *ei, Token *tline, Token ***last)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004052{
4053 Token *t = tline, **tt, *tm, *head;
4054 char *pos;
4055 int fst, lst, j, i;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004056
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004057 pos = strchr(tline->text, ':');
4058 nasm_assert(pos);
4059
4060 lst = atoi(pos + 1);
4061 fst = atoi(tline->text + 1);
4062
4063 /*
4064 * only macros params are accounted so
4065 * if someone passes %0 -- we reject such
4066 * value(s)
4067 */
4068 if (lst == 0 || fst == 0)
4069 goto err;
4070
4071 /* the values should be sane */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004072 if ((fst > (int)ei->nparam || fst < (-(int)ei->nparam)) ||
4073 (lst > (int)ei->nparam || lst < (-(int)ei->nparam)))
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004074 goto err;
4075
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004076 fst = fst < 0 ? fst + (int)ei->nparam + 1: fst;
4077 lst = lst < 0 ? lst + (int)ei->nparam + 1: lst;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004078
4079 /* counted from zero */
4080 fst--, lst--;
4081
4082 /*
4083 * it will be at least one token
4084 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004085 tm = ei->params[(fst + ei->rotate) % ei->nparam];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004086 t = new_Token(NULL, tm->type, tm->text, 0);
4087 head = t, tt = &t->next;
4088 if (fst < lst) {
4089 for (i = fst + 1; i <= lst; i++) {
4090 t = new_Token(NULL, TOK_OTHER, ",", 0);
4091 *tt = t, tt = &t->next;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004092 j = (i + ei->rotate) % ei->nparam;
4093 tm = ei->params[j];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004094 t = new_Token(NULL, tm->type, tm->text, 0);
4095 *tt = t, tt = &t->next;
4096 }
4097 } else {
4098 for (i = fst - 1; i >= lst; i--) {
4099 t = new_Token(NULL, TOK_OTHER, ",", 0);
4100 *tt = t, tt = &t->next;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004101 j = (i + ei->rotate) % ei->nparam;
4102 tm = ei->params[j];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004103 t = new_Token(NULL, tm->type, tm->text, 0);
4104 *tt = t, tt = &t->next;
4105 }
4106 }
4107
4108 *last = tt;
4109 return head;
4110
4111err:
4112 error(ERR_NONFATAL, "`%%{%s}': macro parameters out of range",
4113 &tline->text[1]);
4114 return tline;
4115}
4116
H. Peter Anvin76690a12002-04-30 20:52:49 +00004117/*
4118 * Expand MMacro-local things: parameter references (%0, %n, %+n,
H. Peter Anvin67c63722008-10-26 23:49:00 -07004119 * %-n) and MMacro-local identifiers (%%foo) as well as
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004120 * macro indirection (%[...]) and range (%{..:..}).
H. Peter Anvin76690a12002-04-30 20:52:49 +00004121 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004122static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004123{
H. Peter Anvin734b1882002-04-30 21:01:08 +00004124 Token *t, *tt, **tail, *thead;
H. Peter Anvin6125b622009-04-08 14:02:25 -07004125 bool changed = false;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004126 char *pos;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004127
4128 tail = &thead;
4129 thead = NULL;
4130
H. Peter Anvine2c80182005-01-15 22:15:51 +00004131 while (tline) {
4132 if (tline->type == TOK_PREPROC_ID &&
Cyrill Gorcunovca611192010-06-04 09:22:12 +04004133 (((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) ||
4134 (tline->text[1] >= '0' && tline->text[1] <= '9') ||
4135 tline->text[1] == '%')) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004136 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004137 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004138 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07004139 unsigned int n;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004140 int i;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004141 ExpInv *ei;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004142
H. Peter Anvine2c80182005-01-15 22:15:51 +00004143 t = tline;
4144 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004145
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004146 for (ei = istk->expansion; ei != NULL; ei = ei->prev) {
4147 if (ei->type == EXP_MMACRO) {
4148 break;
4149 }
4150 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004151 if (ei == NULL) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004152 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004153 } else {
4154 pos = strchr(t->text, ':');
4155 if (!pos) {
4156 switch (t->text[1]) {
4157 /*
4158 * We have to make a substitution of one of the
4159 * forms %1, %-1, %+1, %%foo, %0.
4160 */
4161 case '0':
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004162 if ((strlen(t->text) > 2) && (t->text[2] == '0')) {
4163 type = TOK_ID;
4164 text = nasm_strdup(ei->label_text);
4165 } else {
4166 type = TOK_NUMBER;
4167 snprintf(tmpbuf, sizeof(tmpbuf), "%d", ei->nparam);
4168 text = nasm_strdup(tmpbuf);
4169 }
4170 break;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004171 case '%':
H. Peter Anvine2c80182005-01-15 22:15:51 +00004172 type = TOK_ID;
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004173 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004174 ei->unique);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004175 text = nasm_strcat(tmpbuf, t->text + 2);
4176 break;
4177 case '-':
4178 n = atoi(t->text + 2) - 1;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004179 if (n >= ei->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004180 tt = NULL;
4181 else {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004182 if (ei->nparam > 1)
4183 n = (n + ei->rotate) % ei->nparam;
4184 tt = ei->params[n];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004185 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004186 cc = find_cc(tt);
4187 if (cc == -1) {
4188 error(ERR_NONFATAL,
4189 "macro parameter %d is not a condition code",
4190 n + 1);
4191 text = NULL;
4192 } else {
4193 type = TOK_ID;
4194 if (inverse_ccs[cc] == -1) {
4195 error(ERR_NONFATAL,
4196 "condition code `%s' is not invertible",
4197 conditions[cc]);
4198 text = NULL;
4199 } else
4200 text = nasm_strdup(conditions[inverse_ccs[cc]]);
4201 }
4202 break;
4203 case '+':
4204 n = atoi(t->text + 2) - 1;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004205 if (n >= ei->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004206 tt = NULL;
4207 else {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004208 if (ei->nparam > 1)
4209 n = (n + ei->rotate) % ei->nparam;
4210 tt = ei->params[n];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004211 }
4212 cc = find_cc(tt);
4213 if (cc == -1) {
4214 error(ERR_NONFATAL,
4215 "macro parameter %d is not a condition code",
4216 n + 1);
4217 text = NULL;
4218 } else {
4219 type = TOK_ID;
4220 text = nasm_strdup(conditions[cc]);
4221 }
4222 break;
4223 default:
4224 n = atoi(t->text + 1) - 1;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004225 if (n >= ei->nparam)
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004226 tt = NULL;
4227 else {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004228 if (ei->nparam > 1)
4229 n = (n + ei->rotate) % ei->nparam;
4230 tt = ei->params[n];
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004231 }
4232 if (tt) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004233 for (i = 0; i < ei->paramlen[n]; i++) {
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004234 *tail = new_Token(NULL, tt->type, tt->text, 0);
4235 tail = &(*tail)->next;
4236 tt = tt->next;
4237 }
4238 }
4239 text = NULL; /* we've done it here */
4240 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004241 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004242 } else {
4243 /*
4244 * seems we have a parameters range here
4245 */
4246 Token *head, **last;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004247 head = expand_mmac_params_range(ei, t, &last);
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004248 if (head != t) {
4249 *tail = head;
4250 *last = tline;
4251 tline = head;
4252 text = NULL;
4253 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004254 }
Cyrill Gorcunovc29404d2010-06-05 01:50:23 +04004255 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004256 if (!text) {
4257 delete_Token(t);
4258 } else {
4259 *tail = t;
4260 tail = &t->next;
4261 t->type = type;
4262 nasm_free(t->text);
4263 t->text = text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004264 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004265 }
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004266 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004267 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004268 } else if (tline->type == TOK_INDIRECT) {
4269 t = tline;
4270 tline = tline->next;
4271 tt = tokenize(t->text);
4272 tt = expand_mmac_params(tt);
4273 tt = expand_smacro(tt);
4274 *tail = tt;
4275 while (tt) {
4276 tt->a.mac = NULL; /* Necessary? */
4277 tail = &tt->next;
4278 tt = tt->next;
4279 }
4280 delete_Token(t);
4281 changed = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004282 } else {
4283 t = *tail = tline;
4284 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004285 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004286 tail = &t->next;
4287 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004288 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00004289 *tail = NULL;
H. Peter Anvin67c63722008-10-26 23:49:00 -07004290
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004291 if (changed) {
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004292 const struct tokseq_match t[] = {
4293 {
4294 PP_CONCAT_MASK(TOK_ID) |
4295 PP_CONCAT_MASK(TOK_FLOAT), /* head */
4296 PP_CONCAT_MASK(TOK_ID) |
4297 PP_CONCAT_MASK(TOK_NUMBER) |
4298 PP_CONCAT_MASK(TOK_FLOAT) |
4299 PP_CONCAT_MASK(TOK_OTHER) /* tail */
4300 },
4301 {
4302 PP_CONCAT_MASK(TOK_NUMBER), /* head */
4303 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4304 }
4305 };
4306 paste_tokens(&thead, t, ARRAY_SIZE(t), false);
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004307 }
H. Peter Anvin6125b622009-04-08 14:02:25 -07004308
H. Peter Anvin76690a12002-04-30 20:52:49 +00004309 return thead;
4310}
4311
4312/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004313 * Expand all single-line macro calls made in the given line.
4314 * Return the expanded version of the line. The original is deemed
4315 * to be destroyed in the process. (In reality we'll just move
4316 * Tokens from input to output a lot of the time, rather than
4317 * actually bothering to destroy and replicate.)
4318 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004319
H. Peter Anvine2c80182005-01-15 22:15:51 +00004320static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004321{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004322 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004323 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004324 Token **params;
4325 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07004326 unsigned int nparam, sparam;
H. Peter Anvind784a082009-04-20 14:01:18 -07004327 int brackets;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004328 Token *org_tline = tline;
4329 Context *ctx;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08004330 const char *mname;
H. Peter Anvin2a15e692007-11-19 13:14:59 -08004331 int deadman = DEADMAN_LIMIT;
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004332 bool expanded;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004333
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004334 /*
4335 * Trick: we should avoid changing the start token pointer since it can
4336 * be contained in "next" field of other token. Because of this
4337 * we allocate a copy of first token and work with it; at the end of
4338 * routine we copy it back
4339 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004340 if (org_tline) {
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004341 tline = new_Token(org_tline->next, org_tline->type,
4342 org_tline->text, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004343 tline->a.mac = org_tline->a.mac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004344 nasm_free(org_tline->text);
4345 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004346 }
4347
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004348 expanded = true; /* Always expand %+ at least once */
H. Peter Anvin8287daf2009-07-07 16:00:58 -07004349
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004350again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004351 thead = NULL;
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004352 tail = &thead;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004353
H. Peter Anvine2c80182005-01-15 22:15:51 +00004354 while (tline) { /* main token loop */
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004355 if (!--deadman) {
4356 error(ERR_NONFATAL, "interminable macro recursion");
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004357 goto err;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004358 }
H. Peter Anvincb1cf592007-11-19 12:26:50 -08004359
H. Peter Anvine2c80182005-01-15 22:15:51 +00004360 if ((mname = tline->text)) {
4361 /* if this token is a local macro, look in local context */
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004362 if (tline->type == TOK_ID) {
4363 head = (SMacro *)hash_findix(&smacros, mname);
4364 } else if (tline->type == TOK_PREPROC_ID) {
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004365 ctx = get_ctx(mname, &mname, false);
Cyrill Gorcunovc56d9ad2010-02-11 15:12:19 +03004366 head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL;
4367 } else
4368 head = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -07004369
H. Peter Anvine2c80182005-01-15 22:15:51 +00004370 /*
4371 * We've hit an identifier. As in is_mmacro below, we first
4372 * check whether the identifier is a single-line macro at
4373 * all, then think about checking for parameters if
4374 * necessary.
4375 */
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004376 list_for_each(m, head)
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004377 if (!mstrcmp(m->name, mname, m->casesense))
4378 break;
4379 if (m) {
4380 mstart = tline;
4381 params = NULL;
4382 paramsize = NULL;
4383 if (m->nparam == 0) {
4384 /*
4385 * Simple case: the macro is parameterless. Discard the
4386 * one token that the macro call took, and push the
4387 * expansion back on the to-do stack.
4388 */
4389 if (!m->expansion) {
4390 if (!strcmp("__FILE__", m->name)) {
4391 int32_t num = 0;
4392 char *file = NULL;
4393 src_get(&num, &file);
4394 tline->text = nasm_quote(file, strlen(file));
4395 tline->type = TOK_STRING;
4396 nasm_free(file);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004397 continue;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004398 }
4399 if (!strcmp("__LINE__", m->name)) {
4400 nasm_free(tline->text);
4401 make_tok_num(tline, src_get_linnum());
4402 continue;
4403 }
4404 if (!strcmp("__BITS__", m->name)) {
4405 nasm_free(tline->text);
4406 make_tok_num(tline, globalbits);
4407 continue;
4408 }
4409 tline = delete_Token(tline);
4410 continue;
4411 }
4412 } else {
4413 /*
4414 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00004415 * exists and takes parameters. We must find the
4416 * parameters in the call, count them, find the SMacro
4417 * that corresponds to that form of the macro call, and
4418 * substitute for the parameters when we expand. What a
4419 * pain.
4420 */
4421 /*tline = tline->next;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004422 skip_white_(tline); */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004423 do {
4424 t = tline->next;
4425 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004426 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004427 t->text = NULL;
4428 t = tline->next = delete_Token(t);
4429 }
4430 tline = t;
4431 } while (tok_type_(tline, TOK_WHITESPACE));
4432 if (!tok_is_(tline, "(")) {
4433 /*
4434 * This macro wasn't called with parameters: ignore
4435 * the call. (Behaviour borrowed from gnu cpp.)
4436 */
4437 tline = mstart;
4438 m = NULL;
4439 } else {
4440 int paren = 0;
4441 int white = 0;
4442 brackets = 0;
4443 nparam = 0;
4444 sparam = PARAM_DELTA;
4445 params = nasm_malloc(sparam * sizeof(Token *));
4446 params[0] = tline->next;
4447 paramsize = nasm_malloc(sparam * sizeof(int));
4448 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004449 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004450 /*
4451 * For some unusual expansions
4452 * which concatenates function call
4453 */
4454 t = tline->next;
4455 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004456 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004457 t->text = NULL;
4458 t = tline->next = delete_Token(t);
4459 }
4460 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00004461
H. Peter Anvine2c80182005-01-15 22:15:51 +00004462 if (!tline) {
4463 error(ERR_NONFATAL,
4464 "macro call expects terminating `)'");
4465 break;
4466 }
4467 if (tline->type == TOK_WHITESPACE
4468 && brackets <= 0) {
4469 if (paramsize[nparam])
4470 white++;
4471 else
4472 params[nparam] = tline->next;
4473 continue; /* parameter loop */
4474 }
4475 if (tline->type == TOK_OTHER
4476 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004477 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004478 if (ch == ',' && !paren && brackets <= 0) {
4479 if (++nparam >= sparam) {
4480 sparam += PARAM_DELTA;
4481 params = nasm_realloc(params,
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004482 sparam * sizeof(Token *));
4483 paramsize = nasm_realloc(paramsize,
4484 sparam * sizeof(int));
H. Peter Anvine2c80182005-01-15 22:15:51 +00004485 }
4486 params[nparam] = tline->next;
4487 paramsize[nparam] = 0;
4488 white = 0;
4489 continue; /* parameter loop */
4490 }
4491 if (ch == '{' &&
4492 (brackets > 0 || (brackets == 0 &&
4493 !paramsize[nparam])))
4494 {
4495 if (!(brackets++)) {
4496 params[nparam] = tline->next;
4497 continue; /* parameter loop */
4498 }
4499 }
4500 if (ch == '}' && brackets > 0)
4501 if (--brackets == 0) {
4502 brackets = -1;
4503 continue; /* parameter loop */
4504 }
4505 if (ch == '(' && !brackets)
4506 paren++;
4507 if (ch == ')' && brackets <= 0)
4508 if (--paren < 0)
4509 break;
4510 }
4511 if (brackets < 0) {
4512 brackets = 0;
4513 error(ERR_NONFATAL, "braces do not "
4514 "enclose all of macro parameter");
4515 }
4516 paramsize[nparam] += white + 1;
4517 white = 0;
4518 } /* parameter loop */
4519 nparam++;
4520 while (m && (m->nparam != nparam ||
4521 mstrcmp(m->name, mname,
4522 m->casesense)))
4523 m = m->next;
4524 if (!m)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004525 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004526 "macro `%s' exists, "
4527 "but not taking %d parameters",
4528 mstart->text, nparam);
4529 }
4530 }
4531 if (m && m->in_progress)
4532 m = NULL;
4533 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07004534 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00004535 * Design question: should we handle !tline, which
4536 * indicates missing ')' here, or expand those
4537 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07004538 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00004539 */
4540 nasm_free(params);
4541 nasm_free(paramsize);
4542 tline = mstart;
4543 } else {
4544 /*
4545 * Expand the macro: we are placed on the last token of the
4546 * call, so that we can easily split the call from the
4547 * following tokens. We also start by pushing an SMAC_END
4548 * token for the cycle removal.
4549 */
4550 t = tline;
4551 if (t) {
4552 tline = t->next;
4553 t->next = NULL;
4554 }
4555 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004556 tt->a.mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004557 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004558 tline = tt;
Cyrill Gorcunov3b4e86b2010-06-02 15:57:51 +04004559 list_for_each(t, m->expansion) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004560 if (t->type >= TOK_SMAC_PARAM) {
4561 Token *pcopy = tline, **ptail = &pcopy;
4562 Token *ttt, *pt;
4563 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004564
H. Peter Anvine2c80182005-01-15 22:15:51 +00004565 ttt = params[t->type - TOK_SMAC_PARAM];
Cyrill Gorcunoved4a8052010-04-09 15:40:35 +04004566 i = paramsize[t->type - TOK_SMAC_PARAM];
4567 while (--i >= 0) {
4568 pt = *ptail = new_Token(tline, ttt->type,
4569 ttt->text, 0);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004570 ptail = &pt->next;
4571 ttt = ttt->next;
4572 }
4573 tline = pcopy;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004574 } else if (t->type == TOK_PREPROC_Q) {
4575 tt = new_Token(tline, TOK_ID, mname, 0);
4576 tline = tt;
4577 } else if (t->type == TOK_PREPROC_QQ) {
4578 tt = new_Token(tline, TOK_ID, m->name, 0);
4579 tline = tt;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004580 } else {
4581 tt = new_Token(tline, t->type, t->text, 0);
4582 tline = tt;
4583 }
4584 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004585
H. Peter Anvine2c80182005-01-15 22:15:51 +00004586 /*
4587 * Having done that, get rid of the macro call, and clean
4588 * up the parameters.
4589 */
4590 nasm_free(params);
4591 nasm_free(paramsize);
4592 free_tlist(mstart);
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004593 expanded = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004594 continue; /* main token loop */
4595 }
4596 }
4597 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004598
H. Peter Anvine2c80182005-01-15 22:15:51 +00004599 if (tline->type == TOK_SMAC_END) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004600 tline->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004601 tline = delete_Token(tline);
4602 } else {
4603 t = *tail = tline;
4604 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07004605 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004606 t->next = NULL;
4607 tail = &t->next;
4608 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004609 }
4610
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004611 /*
4612 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00004613 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004614 * TOK_IDs should be concatenated.
4615 * Also we look for %+ tokens and concatenate the tokens before and after
4616 * them (without white spaces in between).
4617 */
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004618 if (expanded) {
Cyrill Gorcunov575d4282010-10-06 00:25:55 +04004619 const struct tokseq_match t[] = {
4620 {
4621 PP_CONCAT_MASK(TOK_ID) |
4622 PP_CONCAT_MASK(TOK_PREPROC_ID), /* head */
4623 PP_CONCAT_MASK(TOK_ID) |
4624 PP_CONCAT_MASK(TOK_PREPROC_ID) |
4625 PP_CONCAT_MASK(TOK_NUMBER) /* tail */
4626 }
4627 };
4628 if (paste_tokens(&thead, t, ARRAY_SIZE(t), true)) {
Cyrill Gorcunov8dcbbd72010-09-25 02:33:20 +04004629 /*
4630 * If we concatenated something, *and* we had previously expanded
4631 * an actual macro, scan the lines again for macros...
4632 */
4633 tline = thead;
4634 expanded = false;
4635 goto again;
4636 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00004637 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004638
Cyrill Gorcunovbd38c8f2009-11-21 11:11:23 +03004639err:
H. Peter Anvine2c80182005-01-15 22:15:51 +00004640 if (org_tline) {
4641 if (thead) {
4642 *org_tline = *thead;
4643 /* since we just gave text to org_line, don't free it */
4644 thead->text = NULL;
4645 delete_Token(thead);
4646 } else {
4647 /* the expression expanded to empty line;
4648 we can't return NULL for some reasons
4649 we just set the line to a single WHITESPACE token. */
4650 memset(org_tline, 0, sizeof(*org_tline));
4651 org_tline->text = NULL;
4652 org_tline->type = TOK_WHITESPACE;
4653 }
4654 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004655 }
4656
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004657 return thead;
4658}
4659
4660/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004661 * Similar to expand_smacro but used exclusively with macro identifiers
4662 * right before they are fetched in. The reason is that there can be
4663 * identifiers consisting of several subparts. We consider that if there
4664 * are more than one element forming the name, user wants a expansion,
4665 * otherwise it will be left as-is. Example:
4666 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004667 * %define %$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004668 *
4669 * the identifier %$abc will be left as-is so that the handler for %define
4670 * will suck it and define the corresponding value. Other case:
4671 *
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004672 * %define _%$abc cde
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004673 *
4674 * In this case user wants name to be expanded *before* %define starts
4675 * working, so we'll expand %$abc into something (if it has a value;
4676 * otherwise it will be left as-is) then concatenate all successive
4677 * PP_IDs into one.
4678 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004679static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004680{
4681 Token *cur, *oldnext = NULL;
4682
H. Peter Anvin734b1882002-04-30 21:01:08 +00004683 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004684 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004685
4686 cur = tline;
4687 while (cur->next &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00004688 (cur->next->type == TOK_ID ||
4689 cur->next->type == TOK_PREPROC_ID
4690 || cur->next->type == TOK_NUMBER))
4691 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004692
4693 /* If identifier consists of just one token, don't expand */
4694 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004695 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004696
H. Peter Anvine2c80182005-01-15 22:15:51 +00004697 if (cur) {
4698 oldnext = cur->next; /* Detach the tail past identifier */
4699 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004700 }
4701
H. Peter Anvin734b1882002-04-30 21:01:08 +00004702 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004703
H. Peter Anvine2c80182005-01-15 22:15:51 +00004704 if (cur) {
4705 /* expand_smacro possibly changhed tline; re-scan for EOL */
4706 cur = tline;
4707 while (cur && cur->next)
4708 cur = cur->next;
4709 if (cur)
4710 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004711 }
4712
4713 return tline;
4714}
4715
4716/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004717 * Determine whether the given line constitutes a multi-line macro
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004718 * call, and return the ExpDef structure called if so. Doesn't have
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004719 * to check for an initial label - that's taken care of in
4720 * expand_mmacro - but must check numbers of parameters. Guaranteed
4721 * to be called with tline->type == TOK_ID, so the putative macro
4722 * name is easy to find.
4723 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004724static ExpDef *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004725{
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004726 ExpDef *head, *ed;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004727 Token **params;
4728 int nparam;
4729
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004730 head = (ExpDef *) hash_findix(&expdefs, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004731
4732 /*
4733 * Efficiency: first we see if any macro exists with the given
4734 * name. If not, we can return NULL immediately. _Then_ we
4735 * count the parameters, and then we look further along the
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004736 * list if necessary to find the proper ExpDef.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004737 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004738 list_for_each(ed, head)
4739 if (!mstrcmp(ed->name, tline->text, ed->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004740 break;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004741 if (!ed)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004742 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004743
4744 /*
4745 * OK, we have a potential macro. Count and demarcate the
4746 * parameters.
4747 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00004748 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004749
4750 /*
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004751 * So we know how many parameters we've got. Find the ExpDef
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004752 * structure that handles this number.
4753 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004754 while (ed) {
4755 if (ed->nparam_min <= nparam
4756 && (ed->plus || nparam <= ed->nparam_max)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004757 /*
4758 * It's right, and we can use it. Add its default
4759 * parameters to the end of our list if necessary.
4760 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004761 if (ed->defaults && nparam < ed->nparam_min + ed->ndefs) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004762 params =
4763 nasm_realloc(params,
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004764 ((ed->nparam_min + ed->ndefs +
H. Peter Anvine2c80182005-01-15 22:15:51 +00004765 1) * sizeof(*params)));
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004766 while (nparam < ed->nparam_min + ed->ndefs) {
4767 params[nparam] = ed->defaults[nparam - ed->nparam_min];
H. Peter Anvine2c80182005-01-15 22:15:51 +00004768 nparam++;
4769 }
4770 }
4771 /*
4772 * If we've gone over the maximum parameter count (and
4773 * we're in Plus mode), ignore parameters beyond
4774 * nparam_max.
4775 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004776 if (ed->plus && nparam > ed->nparam_max)
4777 nparam = ed->nparam_max;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004778 /*
4779 * Then terminate the parameter list, and leave.
4780 */
4781 if (!params) { /* need this special case */
4782 params = nasm_malloc(sizeof(*params));
4783 nparam = 0;
4784 }
4785 params[nparam] = NULL;
4786 *params_array = params;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004787 return ed;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004788 }
4789 /*
4790 * This one wasn't right: look for the next one with the
4791 * same name.
4792 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004793 list_for_each(ed, ed->next)
4794 if (!mstrcmp(ed->name, tline->text, ed->casesense))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004795 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004796 }
4797
4798 /*
4799 * After all that, we didn't find one with the right number of
4800 * parameters. Issue a warning, and fail to expand the macro.
4801 */
H. Peter Anvin917a3492008-09-24 09:14:49 -07004802 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004803 "macro `%s' exists, but not taking %d parameters",
4804 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004805 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004806 return NULL;
4807}
4808
4809/*
4810 * Expand the multi-line macro call made by the given line, if
4811 * there is one to be expanded. If there is, push the expansion on
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004812 * istk->expansion and return true. Otherwise return false.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004813 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004814static bool expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004815{
H. Peter Anvineba20a72002-04-30 20:53:55 +00004816 Token *label = NULL;
4817 int dont_prepend = 0;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004818 Token **params, *t, *mtok;
4819 Line *l = NULL;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004820 ExpDef *ed;
4821 ExpInv *ei;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004822 int i, nparam, *paramlen;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004823 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004824
4825 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004826 skip_white_(t);
H. Peter Anvince2233b2008-05-25 21:57:00 -07004827 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00004828 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004829 return false;
H. Peter Anvince2233b2008-05-25 21:57:00 -07004830 mtok = t;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004831 ed = is_mmacro(t, &params);
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004832 if (ed != NULL) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004833 mname = t->text;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004834 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004835 Token *last;
4836 /*
4837 * We have an id which isn't a macro call. We'll assume
4838 * it might be a label; we'll also check to see if a
4839 * colon follows it. Then, if there's another id after
4840 * that lot, we'll check it again for macro-hood.
4841 */
4842 label = last = t;
4843 t = t->next;
4844 if (tok_type_(t, TOK_WHITESPACE))
4845 last = t, t = t->next;
4846 if (tok_is_(t, ":")) {
4847 dont_prepend = 1;
4848 last = t, t = t->next;
4849 if (tok_type_(t, TOK_WHITESPACE))
4850 last = t, t = t->next;
4851 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004852 if (!tok_type_(t, TOK_ID) || !(ed = is_mmacro(t, &params)))
4853 return false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004854 last->next = NULL;
Keith Kanios891775e2009-07-11 06:08:54 -05004855 mname = t->text;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004856 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004857 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004858
4859 /*
4860 * Fix up the parameters: this involves stripping leading and
4861 * trailing whitespace, then stripping braces if they are
4862 * present.
4863 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004864 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004865 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004866
H. Peter Anvine2c80182005-01-15 22:15:51 +00004867 for (i = 0; params[i]; i++) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004868 int brace = false;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004869 int comma = (!ed->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004870
H. Peter Anvine2c80182005-01-15 22:15:51 +00004871 t = params[i];
4872 skip_white_(t);
4873 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004874 t = t->next, brace = true, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004875 params[i] = t;
4876 paramlen[i] = 0;
4877 while (t) {
4878 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
4879 break; /* ... because we have hit a comma */
4880 if (comma && t->type == TOK_WHITESPACE
4881 && tok_is_(t->next, ","))
4882 break; /* ... or a space then a comma */
4883 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
4884 break; /* ... or a brace */
4885 t = t->next;
4886 paramlen[i]++;
4887 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004888 }
4889
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004890 if (ed->cur_depth >= ed->max_depth) {
4891 if (ed->max_depth > 1) {
4892 error(ERR_WARNING,
4893 "reached maximum macro recursion depth of %i for %s",
4894 ed->max_depth,ed->name);
4895 }
4896 return false;
4897 } else {
4898 ed->cur_depth ++;
4899 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004900
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004901 /*
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004902 * OK, we have found a ExpDef structure representing a
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004903 * previously defined mmacro. Create an expansion invocation
4904 * and point it back to the expansion definition. Substitution of
H. Peter Anvin76690a12002-04-30 20:52:49 +00004905 * parameter tokens and macro-local tokens doesn't get done
4906 * until the single-line macro substitution process; this is
4907 * because delaying them allows us to change the semantics
4908 * later through %rotate.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004909 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004910 ei = new_ExpInv(EXP_MMACRO, ed);
4911 ei->name = nasm_strdup(mname);
4912 //ei->label = label;
4913 //ei->label_text = detoken(label, false);
4914 ei->current = ed->line;
4915 ei->emitting = true;
4916 //ei->iline = tline;
4917 ei->params = params;
4918 ei->nparam = nparam;
4919 ei->rotate = 0;
4920 ei->paramlen = paramlen;
4921 ei->lineno = 0;
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03004922
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004923 ei->prev = istk->expansion;
4924 istk->expansion = ei;
4925
4926 /*
4927 * Special case: detect %00 on first invocation; if found,
4928 * avoid emitting any labels that precede the mmacro call.
4929 * ed->prepend is set to -1 when %00 is detected, else 1.
4930 */
4931 if (ed->prepend == 0) {
4932 for (l = ed->line; l != NULL; l = l->next) {
4933 for (t = l->first; t != NULL; t = t->next) {
4934 if ((t->type == TOK_PREPROC_ID) &&
4935 (strlen(t->text) == 3) &&
4936 (t->text[1] == '0') && (t->text[2] == '0')) {
4937 dont_prepend = -1;
4938 break;
4939 }
4940 }
4941 if (dont_prepend < 0) {
4942 break;
4943 }
4944 }
4945 ed->prepend = ((dont_prepend < 0) ? -1 : 1);
4946 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004947
4948 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00004949 * If we had a label, push it on as the first line of
4950 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004951 */
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004952 if (label != NULL) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004953 if (ed->prepend < 0) {
4954 ei->label_text = detoken(label, false);
4955 } else {
4956 if (dont_prepend == 0) {
4957 t = label;
4958 while (t->next != NULL) {
4959 t = t->next;
4960 }
4961 t->next = new_Token(NULL, TOK_OTHER, ":", 0);
4962 }
4963 l = new_Line();
4964 l->first = copy_Token(label);
4965 l->next = ei->current;
4966 ei->current = l;
4967 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004968 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004969
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004970 list->uplevel(ed->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004971
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03004972 istk->mmac_depth++;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004973 return true;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004974}
4975
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004976/* The function that actually does the error reporting */
4977static void verror(int severity, const char *fmt, va_list arg)
4978{
4979 char buff[1024];
4980
4981 vsnprintf(buff, sizeof(buff), fmt, arg);
4982
Cyrill Gorcunov55cc4d02010-11-10 23:12:06 +03004983 if (istk && istk->mmac_depth > 0) {
4984 ExpInv *ei = istk->expansion;
4985 int lineno = ei->lineno;
4986 while (ei) {
4987 if (ei->type == EXP_MMACRO)
4988 break;
4989 lineno += ei->relno;
4990 ei = ei->prev;
4991 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05004992 nasm_error(severity, "(%s:%d) %s", ei->def->name,
Cyrill Gorcunov55cc4d02010-11-10 23:12:06 +03004993 lineno, buff);
4994 } else
H. Peter Anvindbb640b2009-07-18 18:57:16 -07004995 nasm_error(severity, "%s", buff);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004996}
4997
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004998/*
4999 * Since preprocessor always operate only on the line that didn't
H. Peter Anvin917a3492008-09-24 09:14:49 -07005000 * arrived yet, we should always use ERR_OFFBY1.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00005001 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005002static void error(int severity, const char *fmt, ...)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00005003{
5004 va_list arg;
H. Peter Anvin734b1882002-04-30 21:01:08 +00005005 va_start(arg, fmt);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02005006 verror(severity, fmt, arg);
H. Peter Anvin734b1882002-04-30 21:01:08 +00005007 va_end(arg);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02005008}
H. Peter Anvinaf535c12002-04-30 20:59:21 +00005009
Victor van den Elzen3b404c02008-09-18 13:51:36 +02005010/*
5011 * Because %else etc are evaluated in the state context
5012 * of the previous branch, errors might get lost with error():
5013 * %if 0 ... %else trailing garbage ... %endif
5014 * So %else etc should report errors with this function.
5015 */
5016static void error_precond(int severity, const char *fmt, ...)
5017{
5018 va_list arg;
5019
5020 /* Only ignore the error if it's really in a dead branch */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005021 if ((istk != NULL) &&
5022 (istk->expansion != NULL) &&
5023 (istk->expansion->type == EXP_IF) &&
5024 (istk->expansion->def->state == COND_NEVER))
Victor van den Elzen3b404c02008-09-18 13:51:36 +02005025 return;
5026
5027 va_start(arg, fmt);
5028 verror(severity, fmt, arg);
5029 va_end(arg);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00005030}
5031
H. Peter Anvin734b1882002-04-30 21:01:08 +00005032static void
H. Peter Anvindbb640b2009-07-18 18:57:16 -07005033pp_reset(char *file, int apass, ListGen * listgen, StrList **deplist)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005034{
H. Peter Anvin7383b402008-09-24 10:20:40 -07005035 Token *t;
5036
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005037 cstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005038 istk = nasm_malloc(sizeof(Include));
5039 istk->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005040 istk->expansion = NULL;
5041 istk->fp = fopen(file, "r");
H. Peter Anvineba20a72002-04-30 20:53:55 +00005042 istk->fname = NULL;
5043 src_set_fname(nasm_strdup(file));
5044 src_set_linnum(0);
5045 istk->lineinc = 1;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005046 istk->mmac_depth = 0;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005047 if (!istk->fp)
H. Peter Anvin917a3492008-09-24 09:14:49 -07005048 error(ERR_FATAL|ERR_NOFILE, "unable to open input file `%s'",
H. Peter Anvine2c80182005-01-15 22:15:51 +00005049 file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005050 defining = NULL;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005051 finals = NULL;
5052 in_final = false;
Charles Crayned4200be2008-07-12 16:42:33 -07005053 nested_mac_count = 0;
5054 nested_rep_count = 0;
H. Peter Anvin97a23472007-09-16 17:57:25 -07005055 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005056 unique = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005057 if (tasm_compatible_mode) {
H. Peter Anvina4835d42008-05-20 14:21:29 -07005058 stdmacpos = nasm_stdmac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005059 } else {
H. Peter Anvina4835d42008-05-20 14:21:29 -07005060 stdmacpos = nasm_stdmac_after_tasm;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005061 }
H. Peter Anvind2456592008-06-19 15:04:18 -07005062 any_extrastdmac = extrastdmac && *extrastdmac;
5063 do_predef = true;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005064 list = listgen;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07005065
5066 /*
5067 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
5068 * The caller, however, will also pass in 3 for preprocess-only so
5069 * we can set __PASS__ accordingly.
5070 */
5071 pass = apass > 2 ? 2 : apass;
5072
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07005073 dephead = deptail = deplist;
5074 if (deplist) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005075 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
5076 sl->next = NULL;
5077 strcpy(sl->str, file);
5078 *deptail = sl;
5079 deptail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07005080 }
H. Peter Anvin7383b402008-09-24 10:20:40 -07005081
H. Peter Anvin61f130f2008-09-25 15:45:06 -07005082 /*
5083 * Define the __PASS__ macro. This is defined here unlike
5084 * all the other builtins, because it is special -- it varies between
5085 * passes.
5086 */
H. Peter Anvin7383b402008-09-24 10:20:40 -07005087 t = nasm_malloc(sizeof(*t));
5088 t->next = NULL;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07005089 make_tok_num(t, apass);
H. Peter Anvin7383b402008-09-24 10:20:40 -07005090 t->a.mac = NULL;
5091 define_smacro(NULL, "__PASS__", true, 0, t);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005092}
5093
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005094static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005095{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005096 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005097 Token *tline;
Keith Kanios9858cec2010-11-08 00:58:02 -06005098 ExpDef *ed;
5099 ExpInv *ei;
5100 Line *l;
5101 int j;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005102
H. Peter Anvine2c80182005-01-15 22:15:51 +00005103 while (1) {
5104 /*
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005105 * Fetch a tokenized line, either from the expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00005106 * buffer or from the input file.
5107 */
5108 tline = NULL;
H. Peter Anvineba20a72002-04-30 20:53:55 +00005109
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005110 while (1) { /* until we get a line we can use */
5111 /*
5112 * Fetch a tokenized line from the expansion buffer
5113 */
5114 if (istk->expansion != NULL) {
5115 ei = istk->expansion;
5116 if (ei->current != NULL) {
5117 if (ei->emitting == false) {
5118 ei->current = NULL;
5119 continue;
5120 }
5121 l = ei->current;
5122 ei->current = l->next;
5123 ei->lineno++;
5124 tline = copy_Token(l->first);
5125 if (((ei->type == EXP_REP) ||
5126 (ei->type == EXP_MMACRO) ||
5127 (ei->type == EXP_WHILE))
5128 && (ei->def->nolist == false)) {
5129 char *p = detoken(tline, false);
5130 list->line(LIST_MACRO, p);
5131 nasm_free(p);
5132 }
5133 if (ei->linnum > -1) {
5134 src_set_linnum(src_get_linnum() + 1);
5135 }
5136 break;
5137 } else if ((ei->type == EXP_REP) &&
5138 (ei->def->cur_depth < ei->def->max_depth)) {
5139 ei->def->cur_depth ++;
5140 ei->current = ei->def->line;
5141 ei->lineno = 0;
5142 continue;
5143 } else if ((ei->type == EXP_WHILE) &&
5144 (ei->def->cur_depth < ei->def->max_depth)) {
5145 ei->current = ei->def->line;
5146 ei->lineno = 0;
5147 tline = copy_Token(ei->current->first);
5148 j = if_condition(tline, PP_WHILE);
5149 tline = NULL;
5150 j = (((j < 0) ? COND_NEVER : j) ? COND_IF_TRUE : COND_IF_FALSE);
5151 if (j == COND_IF_TRUE) {
5152 ei->current = ei->current->next;
5153 ei->def->cur_depth ++;
5154 } else {
5155 ei->emitting = false;
5156 ei->current = NULL;
5157 ei->def->cur_depth = ei->def->max_depth;
5158 }
5159 continue;
5160 } else {
5161 istk->expansion = ei->prev;
5162 ed = ei->def;
5163 if (ed != NULL) {
5164 if ((ei->emitting == true) &&
5165 (ed->max_depth == DEADMAN_LIMIT) &&
5166 (ed->cur_depth == DEADMAN_LIMIT)
5167 ) {
5168 error(ERR_FATAL, "runaway expansion detected, aborting");
5169 }
5170 if (ed->cur_depth > 0) {
5171 ed->cur_depth --;
5172 } else if ((ed->type != EXP_MMACRO) && (ed->type != EXP_IF)) {
5173 /***** should this really be right here??? *****/
5174 /*
5175 Line *l = NULL, *ll = NULL;
5176 for (l = ed->line; l != NULL;) {
5177 if (l->first != NULL) {
5178 free_tlist(l->first);
5179 l->first = NULL;
5180 }
5181 ll = l;
5182 l = l->next;
5183 nasm_free(ll);
5184 }
5185 expansions = ed->prev;
5186 nasm_free(ed);
5187 */
5188 }
5189 if ((ei->type == EXP_REP) ||
5190 (ei->type == EXP_MMACRO) ||
5191 (ei->type == EXP_WHILE)) {
5192 list->downlevel(LIST_MACRO);
5193 if (ei->type == EXP_MMACRO) {
5194 istk->mmac_depth--;
5195 }
5196 }
5197 }
5198 if (ei->linnum > -1) {
5199 src_set_linnum(ei->linnum);
5200 }
5201 free_expinv(ei);
5202 continue;
5203 }
5204 }
5205
5206 /*
5207 * Read in line from input and tokenize
5208 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00005209 line = read_line();
5210 if (line) { /* from the current input file */
5211 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00005212 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005213 nasm_free(line);
5214 break;
5215 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005216
H. Peter Anvine2c80182005-01-15 22:15:51 +00005217 /*
5218 * The current file has ended; work down the istk
5219 */
5220 {
5221 Include *i = istk;
5222 fclose(i->fp);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005223 if (i->expansion != NULL) {
5224 error(ERR_FATAL,
5225 "end of file while still in an expansion");
5226 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005227 /* only set line and file name if there's a next node */
5228 if (i->next) {
5229 src_set_linnum(i->lineno);
5230 nasm_free(src_set_fname(i->fname));
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005231 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005232 if ((i->next == NULL) && (finals != NULL)) {
5233 in_final = true;
5234 ei = new_ExpInv(EXP_FINAL, NULL);
5235 ei->emitting = true;
5236 ei->current = finals;
5237 istk->expansion = ei;
5238 finals = NULL;
5239 continue;
5240 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005241 istk = i->next;
5242 list->downlevel(LIST_INCLUDE);
5243 nasm_free(i);
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005244 if (istk == NULL) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005245 if (finals != NULL) {
5246 in_final = true;
5247 } else {
5248 return NULL;
5249 }
5250 }
5251 continue;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005252 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005253 }
5254
5255 if (defining == NULL) {
5256 tline = expand_mmac_params(tline);
5257 }
5258
H. Peter Anvine2c80182005-01-15 22:15:51 +00005259 /*
5260 * Check the line to see if it's a preprocessor directive.
5261 */
5262 if (do_directive(tline) == DIRECTIVE_FOUND) {
5263 continue;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005264 } else if (defining != NULL) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005265 /*
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005266 * We're defining an expansion. We emit nothing at all,
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005267 * and just shove the tokenized line on to the definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005268 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005269 if (defining->ignoring == false) {
5270 Line *l = new_Line();
5271 l->first = tline;
5272 if (defining->line == NULL) {
5273 defining->line = l;
5274 defining->last = l;
5275 } else {
5276 defining->last->next = l;
5277 defining->last = l;
5278 }
5279 } else {
5280 //free_tlist(tline); /***** sanity check: is this supposed to be here? *****/
5281 }
5282 defining->linecount++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005283 continue;
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005284 } else if ((istk->expansion != NULL) &&
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005285 (istk->expansion->emitting != true)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005286 /*
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005287 * We're in a non-emitting branch of an expansion.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005288 * Emit nothing at all, not even a blank line: when we
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005289 * emerge from the expansion we'll give a line-number
H. Peter Anvine2c80182005-01-15 22:15:51 +00005290 * directive so we keep our place correctly.
5291 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005292 free_tlist(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005293 continue;
5294 } else {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005295 tline = expand_smacro(tline);
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005296 if (expand_mmacro(tline) != true) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005297 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00005298 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00005299 */
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005300 line = detoken(tline, true);
5301 free_tlist(tline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00005302 break;
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005303 } else {
5304 continue;
5305 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00005306 }
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005307 }
5308 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005309}
5310
H. Peter Anvine2c80182005-01-15 22:15:51 +00005311static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005312{
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005313 if (defining != NULL) {
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005314 error(ERR_NONFATAL, "end of file while still defining an expansion");
5315 while (defining != NULL) {
5316 ExpDef *ed = defining;
5317 defining = ed->prev;
5318 free_expdef(ed);
5319 }
5320 defining = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005321 }
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005322 while (cstk != NULL)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005323 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07005324 free_macros();
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005325 while (istk != NULL) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005326 Include *i = istk;
5327 istk = istk->next;
5328 fclose(i->fp);
5329 nasm_free(i->fname);
5330 nasm_free(i);
Cyrill Gorcunova5aea572010-11-11 10:14:45 +03005331 while (i->expansion != NULL) {
5332 ExpInv *ei = i->expansion;
5333 i->expansion = ei->prev;
5334 free_expinv(ei);
5335 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005336 }
5337 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005338 ctx_pop();
H. Peter Anvin86877b22008-06-20 15:55:45 -07005339 nasm_free(src_set_fname(NULL));
H. Peter Anvine2c80182005-01-15 22:15:51 +00005340 if (pass == 0) {
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005341 IncPath *i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00005342 free_llist(predef);
5343 delete_Blocks();
Cyrill Gorcunovaccda192010-02-16 10:27:56 +03005344 while ((i = ipath)) {
5345 ipath = i->next;
5346 if (i->path)
5347 nasm_free(i->path);
5348 nasm_free(i);
5349 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07005350 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005351}
5352
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005353void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005354{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005355 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07005356
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005357 i = nasm_malloc(sizeof(IncPath));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07005358 i->path = path ? nasm_strdup(path) : NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005359 i->next = NULL;
5360
H. Peter Anvin89cee572009-07-15 09:16:54 -04005361 if (ipath) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00005362 IncPath *j = ipath;
H. Peter Anvin89cee572009-07-15 09:16:54 -04005363 while (j->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005364 j = j->next;
5365 j->next = i;
5366 } else {
5367 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005368 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005369}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00005370
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005371void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005372{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005373 Token *inc, *space, *name;
5374 Line *l;
5375
H. Peter Anvin734b1882002-04-30 21:01:08 +00005376 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
5377 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
5378 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005379
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005380 l = new_Line();
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005381 l->next = predef;
5382 l->first = inc;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005383 predef = l;
5384}
5385
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005386void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005387{
5388 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005389 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005390 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005391
5392 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00005393 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5394 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005395 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005396 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00005397 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005398 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00005399 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005400
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005401 l = new_Line();
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005402 l->next = predef;
5403 l->first = def;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00005404 predef = l;
5405}
5406
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005407void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00005408{
5409 Token *def, *space;
5410 Line *l;
5411
H. Peter Anvin734b1882002-04-30 21:01:08 +00005412 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
5413 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00005414 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00005415
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005416 l = new_Line();
H. Peter Anvin620515a2002-04-30 20:57:38 +00005417 l->next = predef;
5418 l->first = def;
H. Peter Anvin620515a2002-04-30 20:57:38 +00005419 predef = l;
5420}
5421
Keith Kaniosb7a89542007-04-12 02:40:54 +00005422/*
Keith Kaniosb7a89542007-04-12 02:40:54 +00005423 * This function is used to assist with "runtime" preprocessor
Keith Kaniosb307a4f2010-11-06 17:41:51 -05005424 * directives, e.g. pp_runtime("%define __BITS__ 64");
Keith Kaniosb7a89542007-04-12 02:40:54 +00005425 *
5426 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
5427 * PASS A VALID STRING TO THIS FUNCTION!!!!!
5428 */
5429
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005430void pp_runtime(char *definition)
Keith Kaniosb7a89542007-04-12 02:40:54 +00005431{
5432 Token *def;
H. Peter Anvin70653092007-10-19 14:42:29 -07005433
Keith Kaniosb7a89542007-04-12 02:40:54 +00005434 def = tokenize(definition);
H. Peter Anvin89cee572009-07-15 09:16:54 -04005435 if (do_directive(def) == NO_DIRECTIVE_FOUND)
Keith Kaniosb7a89542007-04-12 02:40:54 +00005436 free_tlist(def);
H. Peter Anvin70653092007-10-19 14:42:29 -07005437
Keith Kaniosb7a89542007-04-12 02:40:54 +00005438}
5439
H. Peter Anvina70547f2008-07-19 21:44:26 -07005440void pp_extra_stdmac(macros_t *macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005441{
H. Peter Anvin76690a12002-04-30 20:52:49 +00005442 extrastdmac = macros;
5443}
5444
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005445static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00005446{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00005447 char numbuf[20];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07005448 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00005449 tok->text = nasm_strdup(numbuf);
5450 tok->type = TOK_NUMBER;
5451}
5452
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00005453Preproc nasmpp = {
5454 pp_reset,
5455 pp_getline,
5456 pp_cleanup
5457};