blob: 952f481478af8f9c2ba8d09c6155e3a640b68841 [file] [log] [blame]
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001/* preproc.c macro preprocessor for the Netwide Assembler
2 *
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
Beroset095e6a22007-12-29 09:44:23 -05005 * redistributable under the license given in the file "LICENSE"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00006 * distributed in the NASM archive.
7 *
8 * initial version 18/iii/97 by Simon Tatham
9 */
10
H. Peter Anvin4836e332002-04-30 20:56:43 +000011/* Typical flow of text through preproc
12 *
Keith Kaniosb7a89542007-04-12 02:40:54 +000013 * pp_getline gets tokenized lines, either
H. Peter Anvin4836e332002-04-30 20:56:43 +000014 *
15 * from a macro expansion
16 *
17 * or
18 * {
19 * read_line gets raw text from stdmacpos, or predef, or current input file
Keith Kaniosb7a89542007-04-12 02:40:54 +000020 * tokenize converts to tokens
H. Peter Anvin4836e332002-04-30 20:56:43 +000021 * }
22 *
23 * expand_mmac_params is used to expand %1 etc., unless a macro is being
24 * defined or a false conditional is being processed
25 * (%0, %1, %+1, %-1, %%foo
26 *
27 * do_directive checks for directives
28 *
29 * expand_smacro is used to expand single line macros
30 *
31 * expand_mmacro is used to expand multi-line macros
32 *
33 * detoken is used to convert the line back to text
34 */
H. Peter Anvineba20a72002-04-30 20:53:55 +000035
H. Peter Anvinfe501952007-10-02 21:53:51 -070036#include "compiler.h"
37
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000038#include <stdio.h>
H. Peter Anvinaf535c12002-04-30 20:59:21 +000039#include <stdarg.h>
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000040#include <stdlib.h>
41#include <stddef.h>
42#include <string.h>
43#include <ctype.h>
H. Peter Anvin76690a12002-04-30 20:52:49 +000044#include <limits.h>
Keith Kaniosb7a89542007-04-12 02:40:54 +000045#include <inttypes.h>
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000046
47#include "nasm.h"
48#include "nasmlib.h"
H. Peter Anvin4169a472007-09-12 01:29:43 +000049#include "preproc.h"
H. Peter Anvin97a23472007-09-16 17:57:25 -070050#include "hashtbl.h"
H. Peter Anvin8cad14b2008-06-01 17:23:51 -070051#include "quote.h"
H. Peter Anvinc2df2822007-10-24 15:29:28 -070052#include "stdscan.h"
53#include "tokens.h"
H. Peter Anvina4835d42008-05-20 14:21:29 -070054#include "tables.h"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000055
56typedef struct SMacro SMacro;
57typedef struct MMacro MMacro;
58typedef struct Context Context;
59typedef struct Token Token;
H. Peter Anvince616072002-04-30 21:02:23 +000060typedef struct Blocks Blocks;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000061typedef struct Line Line;
62typedef struct Include Include;
63typedef struct Cond Cond;
H. Peter Anvin6768eb72002-04-30 20:52:26 +000064typedef struct IncPath IncPath;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000065
66/*
H. Peter Anvin97a23472007-09-16 17:57:25 -070067 * Note on the storage of both SMacro and MMacros: the hash table
68 * indexes them case-insensitively, and we then have to go through a
69 * linked list of potential case aliases (and, for MMacros, parameter
70 * ranges); this is to preserve the matching semantics of the earlier
71 * code. If the number of case aliases for a specific macro is a
72 * performance issue, you may want to reconsider your coding style.
73 */
74
75/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000076 * Store the definition of a single-line macro.
77 */
H. Peter Anvine2c80182005-01-15 22:15:51 +000078struct SMacro {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000079 SMacro *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +000080 char *name;
H. Peter Anvin70055962007-10-11 00:05:31 -070081 bool casesense;
H. Peter Anvin16ed4382007-10-11 10:06:19 -070082 bool in_progress;
H. Peter Anvin70055962007-10-11 00:05:31 -070083 unsigned int nparam;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000084 Token *expansion;
85};
86
87/*
H. Peter Anvin76690a12002-04-30 20:52:49 +000088 * Store the definition of a multi-line macro. This is also used to
89 * store the interiors of `%rep...%endrep' blocks, which are
90 * effectively self-re-invoking multi-line macros which simply
91 * don't have a name or bother to appear in the hash tables. %rep
92 * blocks are signified by having a NULL `name' field.
93 *
94 * In a MMacro describing a `%rep' block, the `in_progress' field
95 * isn't merely boolean, but gives the number of repeats left to
96 * run.
97 *
98 * The `next' field is used for storing MMacros in hash tables; the
99 * `next_active' field is for stacking them on istk entries.
100 *
101 * When a MMacro is being expanded, `params', `iline', `nparam',
102 * `paramlen', `rotate' and `unique' are local to the invocation.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000103 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000104struct MMacro {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000105 MMacro *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000106 char *name;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -0700107 int nparam_min, nparam_max;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700108 bool casesense;
109 bool plus; /* is the last parameter greedy? */
110 bool nolist; /* is this macro listing-inhibited? */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700111 int64_t in_progress;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000112 Token *dlist; /* All defaults as one list */
113 Token **defaults; /* Parameter default pointers */
114 int ndefs; /* number of default parameters */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000115 Line *expansion;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000116
117 MMacro *next_active;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000118 MMacro *rep_nest; /* used for nesting %rep */
119 Token **params; /* actual parameters */
120 Token *iline; /* invocation line */
H. Peter Anvin25a99342007-09-22 17:45:45 -0700121 unsigned int nparam, rotate;
122 int *paramlen;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700123 uint64_t unique;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000124 int lineno; /* Current line number on expansion */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000125};
126
127/*
128 * The context stack is composed of a linked list of these.
129 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000130struct Context {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000131 Context *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000132 char *name;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700133 struct hash_table localmac;
Keith Kaniosb7a89542007-04-12 02:40:54 +0000134 uint32_t number;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000135};
136
137/*
138 * This is the internal form which we break input lines up into.
139 * Typically stored in linked lists.
140 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000141 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
142 * necessarily used as-is, but is intended to denote the number of
143 * the substituted parameter. So in the definition
144 *
145 * %define a(x,y) ( (x) & ~(y) )
H. Peter Anvin70653092007-10-19 14:42:29 -0700146 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000147 * the token representing `x' will have its type changed to
148 * TOK_SMAC_PARAM, but the one representing `y' will be
149 * TOK_SMAC_PARAM+1.
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000150 *
151 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
152 * which doesn't need quotes around it. Used in the pre-include
153 * mechanism as an alternative to trying to find a sensible type of
154 * quote to use on the filename we were passed.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000155 */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000156enum pp_token_type {
157 TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID,
158 TOK_PREPROC_ID, TOK_STRING,
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700159 TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER,
160 TOK_INTERNAL_STRING,
161 TOK_PREPROC_Q, TOK_PREPROC_QQ,
H. Peter Anvin5b76fa22008-05-26 11:14:38 -0700162 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
163 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000164};
165
H. Peter Anvine2c80182005-01-15 22:15:51 +0000166struct Token {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000167 Token *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000168 char *text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -0700169 union {
170 SMacro *mac; /* associated macro for TOK_SMAC_END */
171 size_t len; /* scratch length field */
172 } a; /* Auxiliary data */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000173 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000174};
175
176/*
177 * Multi-line macro definitions are stored as a linked list of
178 * these, which is essentially a container to allow several linked
179 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700180 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000181 * Note that in this module, linked lists are treated as stacks
182 * wherever possible. For this reason, Lines are _pushed_ on to the
183 * `expansion' field in MMacro structures, so that the linked list,
184 * if walked, would give the macro lines in reverse order; this
185 * means that we can walk the list when expanding a macro, and thus
186 * push the lines on to the `expansion' field in _istk_ in reverse
187 * order (so that when popped back off they are in the right
188 * order). It may seem cockeyed, and it relies on my design having
189 * an even number of steps in, but it works...
190 *
191 * Some of these structures, rather than being actual lines, are
192 * markers delimiting the end of the expansion of a given macro.
H. Peter Anvin76690a12002-04-30 20:52:49 +0000193 * This is for use in the cycle-tracking and %rep-handling code.
194 * Such structures have `finishes' non-NULL, and `first' NULL. All
195 * others have `finishes' NULL, but `first' may still be NULL if
196 * the line is blank.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000197 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000198struct Line {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000199 Line *next;
200 MMacro *finishes;
201 Token *first;
202};
203
204/*
205 * To handle an arbitrary level of file inclusion, we maintain a
206 * stack (ie linked list) of these things.
207 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000208struct Include {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000209 Include *next;
210 FILE *fp;
211 Cond *conds;
212 Line *expansion;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000213 char *fname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000214 int lineno, lineinc;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000215 MMacro *mstk; /* stack of active macros/reps */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000216};
217
218/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000219 * Include search path. This is simply a list of strings which get
220 * prepended, in turn, to the name of an include file, in an
221 * attempt to find the file if it's not in the current directory.
222 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000223struct IncPath {
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000224 IncPath *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000225 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000226};
227
228/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000229 * Conditional assembly: we maintain a separate stack of these for
230 * each level of file inclusion. (The only reason we keep the
231 * stacks separate is to ensure that a stray `%endif' in a file
232 * included from within the true branch of a `%if' won't terminate
233 * it and cause confusion: instead, rightly, it'll cause an error.)
234 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000235struct Cond {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000236 Cond *next;
237 int state;
238};
H. Peter Anvine2c80182005-01-15 22:15:51 +0000239enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000240 /*
241 * These states are for use just after %if or %elif: IF_TRUE
242 * means the condition has evaluated to truth so we are
243 * currently emitting, whereas IF_FALSE means we are not
244 * currently emitting but will start doing so if a %else comes
245 * up. In these states, all directives are admissible: %elif,
246 * %else and %endif. (And of course %if.)
247 */
248 COND_IF_TRUE, COND_IF_FALSE,
249 /*
250 * These states come up after a %else: ELSE_TRUE means we're
251 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
252 * any %elif or %else will cause an error.
253 */
254 COND_ELSE_TRUE, COND_ELSE_FALSE,
255 /*
256 * This state means that we're not emitting now, and also that
257 * nothing until %endif will be emitted at all. It's for use in
258 * two circumstances: (i) when we've had our moment of emission
259 * and have now started seeing %elifs, and (ii) when the
260 * condition construct in question is contained within a
261 * non-emitting branch of a larger condition construct.
262 */
263 COND_NEVER
264};
265#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
266
H. Peter Anvin70653092007-10-19 14:42:29 -0700267/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000268 * These defines are used as the possible return values for do_directive
269 */
270#define NO_DIRECTIVE_FOUND 0
271#define DIRECTIVE_FOUND 1
272
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000273/*
274 * Condition codes. Note that we use c_ prefix not C_ because C_ is
275 * used in nasm.h for the "real" condition codes. At _this_ level,
276 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
277 * ones, so we need a different enum...
278 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700279static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000280 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
281 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000282 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000283};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700284enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000285 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
286 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 -0700287 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
288 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000289};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700290static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000291 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
292 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 +0000293 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000294};
295
H. Peter Anvin76690a12002-04-30 20:52:49 +0000296/*
297 * Directive names.
298 */
H. Peter Anvin65747262002-05-07 00:10:05 +0000299/* If this is a an IF, ELIF, ELSE or ENDIF keyword */
H. Peter Anvin9bf0aa72007-09-12 02:12:07 +0000300static int is_condition(enum preproc_token arg)
H. Peter Anvin65747262002-05-07 00:10:05 +0000301{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000302 return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF);
H. Peter Anvin65747262002-05-07 00:10:05 +0000303}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000304
305/* For TASM compatibility we need to be able to recognise TASM compatible
306 * conditional compilation directives. Using the NASM pre-processor does
307 * not work, so we look for them specifically from the following list and
308 * then jam in the equivalent NASM directive into the input stream.
309 */
310
H. Peter Anvine2c80182005-01-15 22:15:51 +0000311enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000312 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
313 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
314};
315
H. Peter Anvin476d2862007-10-02 22:04:15 -0700316static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000317 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
318 "ifndef", "include", "local"
319};
320
321static int StackSize = 4;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000322static char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000323static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800324static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000325
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000326static Context *cstk;
327static Include *istk;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000328static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000329
H. Peter Anvine2c80182005-01-15 22:15:51 +0000330static efunc _error; /* Pointer to client-provided error reporting function */
H. Peter Anvin76690a12002-04-30 20:52:49 +0000331static evalfunc evaluate;
332
H. Peter Anvine2c80182005-01-15 22:15:51 +0000333static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700334static StrList **dephead, **deptail; /* Dependency list */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000335
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700336static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000337
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000338static Line *predef = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700339static bool do_predef;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000340
341static ListGen *list;
342
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000343/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000344 * The current set of multi-line macros we have defined.
345 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700346static struct hash_table mmacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000347
348/*
349 * The current set of single-line macros we have defined.
350 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700351static struct hash_table smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000352
353/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000354 * The multi-line macro we are currently defining, or the %rep
355 * block we are currently reading, if any.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000356 */
357static MMacro *defining;
358
359/*
360 * The number of macro parameters to allocate space for at a time.
361 */
362#define PARAM_DELTA 16
363
364/*
H. Peter Anvina4835d42008-05-20 14:21:29 -0700365 * The standard macro set: defined in macros.c in the array nasm_stdmac.
366 * This gives our position in the macro set, when we're processing it.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000367 */
H. Peter Anvincda81632008-06-21 15:15:40 -0700368static const macros_t *stdmacpos;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000369
370/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000371 * The extra standard macros that come from the object format, if
372 * any.
373 */
H. Peter Anvincda81632008-06-21 15:15:40 -0700374static const macros_t *extrastdmac = NULL;
H. Peter Anvincfb71762008-06-20 15:20:16 -0700375static bool any_extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000376
377/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000378 * Tokens are allocated in blocks to improve speed
379 */
380#define TOKEN_BLOCKSIZE 4096
381static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000382struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000383 Blocks *next;
384 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000385};
386
387static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000388
389/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000390 * Forward declarations.
391 */
H. Peter Anvin734b1882002-04-30 21:01:08 +0000392static Token *expand_mmac_params(Token * tline);
393static Token *expand_smacro(Token * tline);
394static Token *expand_id(Token * tline);
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -0700395static Context *get_ctx(const char *name, bool all_contexts);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700396static void make_tok_num(Token * tok, int64_t val);
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000397static void error(int severity, const char *fmt, ...);
H. Peter Anvince616072002-04-30 21:02:23 +0000398static void *new_Block(size_t size);
399static void delete_Blocks(void);
H. Peter Anvinc751e862008-06-09 10:18:45 -0700400static Token *new_Token(Token * next, enum pp_token_type type,
401 const char *text, int txtlen);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000402static Token *delete_Token(Token * t);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000403
404/*
405 * Macros for safe checking of token pointers, avoid *(NULL)
406 */
407#define tok_type_(x,t) ((x) && (x)->type == (t))
408#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
409#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
410#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000411
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000412/* Handle TASM specific directives, which do not contain a % in
413 * front of them. We do it here because I could not find any other
414 * place to do it for the moment, and it is a hack (ideally it would
415 * be nice to be able to use the NASM pre-processor to do it).
416 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000417static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000418{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000419 int32_t i, j, k, m, len;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000420 char *p = line, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000421
422 /* Skip whitespace */
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700423 while (nasm_isspace(*p) && *p != 0)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000424 p++;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000425
426 /* Binary search for the directive name */
427 i = -1;
Ed Beroset3ab3f412002-06-11 03:31:49 +0000428 j = elements(tasm_directives);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000429 len = 0;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700430 while (!nasm_isspace(p[len]) && p[len] != 0)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000431 len++;
432 if (len) {
433 oldchar = p[len];
434 p[len] = 0;
435 while (j - i > 1) {
436 k = (j + i) / 2;
437 m = nasm_stricmp(p, tasm_directives[k]);
438 if (m == 0) {
439 /* We have found a directive, so jam a % in front of it
440 * so that NASM will then recognise it as one if it's own.
441 */
442 p[len] = oldchar;
443 len = strlen(p);
444 oldline = line;
445 line = nasm_malloc(len + 2);
446 line[0] = '%';
447 if (k == TM_IFDIFI) {
448 /* NASM does not recognise IFDIFI, so we convert it to
449 * %ifdef BOGUS. This is not used in NASM comaptible
450 * code, but does need to parse for the TASM macro
451 * package.
452 */
453 strcpy(line + 1, "ifdef BOGUS");
454 } else {
455 memcpy(line + 1, p, len + 1);
456 }
457 nasm_free(oldline);
458 return line;
459 } else if (m < 0) {
460 j = k;
461 } else
462 i = k;
463 }
464 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000465 }
466 return line;
467}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000468
H. Peter Anvin76690a12002-04-30 20:52:49 +0000469/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000470 * The pre-preprocessing stage... This function translates line
471 * number indications as they emerge from GNU cpp (`# lineno "file"
472 * flags') into NASM preprocessor line number indications (`%line
473 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000474 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000475static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000476{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000477 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000478 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000479
H. Peter Anvine2c80182005-01-15 22:15:51 +0000480 if (line[0] == '#' && line[1] == ' ') {
481 oldline = line;
482 fname = oldline + 2;
483 lineno = atoi(fname);
484 fname += strspn(fname, "0123456789 ");
485 if (*fname == '"')
486 fname++;
487 fnlen = strcspn(fname, "\"");
488 line = nasm_malloc(20 + fnlen);
489 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
490 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000491 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000492 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000493 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000494 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000495}
496
497/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000498 * Free a linked list of tokens.
499 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000500static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000501{
H. Peter Anvine2c80182005-01-15 22:15:51 +0000502 while (list) {
503 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000504 }
505}
506
507/*
508 * Free a linked list of lines.
509 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000510static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000511{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000512 Line *l;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000513 while (list) {
514 l = list;
515 list = list->next;
516 free_tlist(l->first);
517 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000518 }
519}
520
521/*
H. Peter Anvineba20a72002-04-30 20:53:55 +0000522 * Free an MMacro
523 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000524static void free_mmacro(MMacro * m)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000525{
H. Peter Anvin734b1882002-04-30 21:01:08 +0000526 nasm_free(m->name);
527 free_tlist(m->dlist);
528 nasm_free(m->defaults);
529 free_llist(m->expansion);
530 nasm_free(m);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000531}
532
533/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700534 * Free all currently defined macros, and free the hash tables
535 */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700536static void free_smacro_table(struct hash_table *smt)
H. Peter Anvin97a23472007-09-16 17:57:25 -0700537{
H. Peter Anvin97a23472007-09-16 17:57:25 -0700538 SMacro *s;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700539 const char *key;
540 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700541
H. Peter Anvin072771e2008-05-22 13:17:51 -0700542 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
H. Peter Anvin97a23472007-09-16 17:57:25 -0700543 nasm_free((void *)key);
544 while (s) {
545 SMacro *ns = s->next;
546 nasm_free(s->name);
547 free_tlist(s->expansion);
548 nasm_free(s);
549 s = ns;
550 }
551 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700552 hash_free(smt);
553}
554
555static void free_mmacro_table(struct hash_table *mmt)
556{
557 MMacro *m;
558 const char *key;
559 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700560
561 it = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700562 while ((m = hash_iterate(mmt, &it, &key)) != NULL) {
H. Peter Anvin97a23472007-09-16 17:57:25 -0700563 nasm_free((void *)key);
564 while (m) {
565 MMacro *nm = m->next;
566 free_mmacro(m);
567 m = nm;
568 }
569 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700570 hash_free(mmt);
571}
572
573static void free_macros(void)
574{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700575 free_smacro_table(&smacros);
576 free_mmacro_table(&mmacros);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700577}
578
579/*
580 * Initialize the hash tables
581 */
582static void init_macros(void)
583{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700584 hash_init(&smacros, HASH_LARGE);
585 hash_init(&mmacros, HASH_LARGE);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700586}
587
588/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000589 * Pop the context stack.
590 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000591static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000592{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000593 Context *c = cstk;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000594
595 cstk = cstk->next;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700596 free_smacro_table(&c->localmac);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000597 nasm_free(c->name);
598 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000599}
600
H. Peter Anvin072771e2008-05-22 13:17:51 -0700601/*
602 * Search for a key in the hash index; adding it if necessary
603 * (in which case we initialize the data pointer to NULL.)
604 */
605static void **
606hash_findi_add(struct hash_table *hash, const char *str)
607{
608 struct hash_insert hi;
609 void **r;
610 char *strx;
611
612 r = hash_findi(hash, str, &hi);
613 if (r)
614 return r;
615
616 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
617 return hash_add(&hi, strx, NULL);
618}
619
620/*
621 * Like hash_findi, but returns the data element rather than a pointer
622 * to it. Used only when not adding a new element, hence no third
623 * argument.
624 */
625static void *
626hash_findix(struct hash_table *hash, const char *str)
627{
628 void **p;
629
630 p = hash_findi(hash, str, NULL);
631 return p ? *p : NULL;
632}
633
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000634#define BUF_DELTA 512
635/*
636 * Read a line from the top file in istk, handling multiple CR/LFs
637 * at the end of the line read, and handling spurious ^Zs. Will
638 * return lines from the standard macro set if this has not already
639 * been done.
640 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000641static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000642{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000643 char *buffer, *p, *q;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000644 int bufsize, continued_count;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000645
H. Peter Anvine2c80182005-01-15 22:15:51 +0000646 if (stdmacpos) {
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700647 unsigned char c;
H. Peter Anvin7e50d232008-06-25 14:54:14 -0700648 const unsigned char *p = stdmacpos;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700649 char *ret, *q;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700650 size_t len = 0;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700651 while ((c = *p++)) {
652 if (c >= 0x80)
653 len += pp_directives_len[c-0x80]+1;
654 else
655 len++;
656 }
657 ret = nasm_malloc(len+1);
H. Peter Anvincda81632008-06-21 15:15:40 -0700658 q = ret;
659 while ((c = *stdmacpos++)) {
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700660 if (c >= 0x80) {
661 memcpy(q, pp_directives[c-0x80], pp_directives_len[c-0x80]);
662 q += pp_directives_len[c-0x80];
663 *q++ = ' ';
664 } else {
665 *q++ = c;
666 }
667 }
H. Peter Anvincda81632008-06-21 15:15:40 -0700668 stdmacpos = p;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700669 *q = '\0';
670
H. Peter Anvind2456592008-06-19 15:04:18 -0700671 if (!*stdmacpos) {
672 /* This was the last of the standard macro chain... */
673 stdmacpos = NULL;
674 if (any_extrastdmac) {
675 stdmacpos = extrastdmac;
676 any_extrastdmac = false;
677 } else if (do_predef) {
678 Line *pd, *l;
679 Token *head, **tail, *t;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000680
H. Peter Anvind2456592008-06-19 15:04:18 -0700681 /*
682 * Nasty hack: here we push the contents of
683 * `predef' on to the top-level expansion stack,
684 * since this is the most convenient way to
685 * implement the pre-include and pre-define
686 * features.
687 */
688 for (pd = predef; pd; pd = pd->next) {
689 head = NULL;
690 tail = &head;
691 for (t = pd->first; t; t = t->next) {
692 *tail = new_Token(NULL, t->type, t->text, 0);
693 tail = &(*tail)->next;
694 }
695 l = nasm_malloc(sizeof(Line));
696 l->next = istk->expansion;
697 l->first = head;
H. Peter Anvin538002d2008-06-28 18:30:27 -0700698 l->finishes = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700699 istk->expansion = l;
700 }
701 do_predef = false;
702 }
703 }
704 return ret;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000705 }
706
707 bufsize = BUF_DELTA;
708 buffer = nasm_malloc(BUF_DELTA);
709 p = buffer;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000710 continued_count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000711 while (1) {
712 q = fgets(p, bufsize - (p - buffer), istk->fp);
713 if (!q)
714 break;
715 p += strlen(p);
716 if (p > buffer && p[-1] == '\n') {
717 /* Convert backslash-CRLF line continuation sequences into
718 nothing at all (for DOS and Windows) */
719 if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) {
720 p -= 3;
721 *p = 0;
722 continued_count++;
723 }
724 /* Also convert backslash-LF line continuation sequences into
725 nothing at all (for Unix) */
726 else if (((p - 1) > buffer) && (p[-2] == '\\')) {
727 p -= 2;
728 *p = 0;
729 continued_count++;
730 } else {
731 break;
732 }
733 }
734 if (p - buffer > bufsize - 10) {
Keith Kaniosb7a89542007-04-12 02:40:54 +0000735 int32_t offset = p - buffer;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000736 bufsize += BUF_DELTA;
737 buffer = nasm_realloc(buffer, bufsize);
738 p = buffer + offset; /* prevent stale-pointer problems */
739 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000740 }
741
H. Peter Anvine2c80182005-01-15 22:15:51 +0000742 if (!q && p == buffer) {
743 nasm_free(buffer);
744 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000745 }
746
H. Peter Anvine2c80182005-01-15 22:15:51 +0000747 src_set_linnum(src_get_linnum() + istk->lineinc +
748 (continued_count * istk->lineinc));
H. Peter Anvineba20a72002-04-30 20:53:55 +0000749
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000750 /*
751 * Play safe: remove CRs as well as LFs, if any of either are
752 * present at the end of the line.
753 */
H. Peter Anvineba20a72002-04-30 20:53:55 +0000754 while (--p >= buffer && (*p == '\n' || *p == '\r'))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000755 *p = '\0';
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000756
757 /*
758 * Handle spurious ^Z, which may be inserted into source files
759 * by some file transfer utilities.
760 */
761 buffer[strcspn(buffer, "\032")] = '\0';
762
H. Peter Anvin734b1882002-04-30 21:01:08 +0000763 list->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000764
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000765 return buffer;
766}
767
768/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000769 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000770 * don't need to parse the value out of e.g. numeric tokens: we
771 * simply split one string into many.
772 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000773static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000774{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000775 char *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000776 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000777 Token *list = NULL;
778 Token *t, **tail = &list;
779
H. Peter Anvine2c80182005-01-15 22:15:51 +0000780 while (*line) {
781 p = line;
782 if (*p == '%') {
783 p++;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700784 if (nasm_isdigit(*p) ||
785 ((*p == '-' || *p == '+') && nasm_isdigit(p[1])) ||
786 ((*p == '+') && (nasm_isspace(p[1]) || !p[1]))) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000787 do {
788 p++;
789 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700790 while (nasm_isdigit(*p));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000791 type = TOK_PREPROC_ID;
792 } else if (*p == '{') {
793 p++;
794 while (*p && *p != '}') {
795 p[-1] = *p;
796 p++;
797 }
798 p[-1] = '\0';
799 if (*p)
800 p++;
801 type = TOK_PREPROC_ID;
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700802 } else if (*p == '?') {
803 type = TOK_PREPROC_Q; /* %? */
804 p++;
805 if (*p == '?') {
806 type = TOK_PREPROC_QQ; /* %?? */
807 p++;
808 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000809 } else if (isidchar(*p) ||
810 ((*p == '!' || *p == '%' || *p == '$') &&
811 isidchar(p[1]))) {
812 do {
813 p++;
814 }
815 while (isidchar(*p));
816 type = TOK_PREPROC_ID;
817 } else {
818 type = TOK_OTHER;
819 if (*p == '%')
820 p++;
821 }
822 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
823 type = TOK_ID;
824 p++;
825 while (*p && isidchar(*p))
826 p++;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -0700827 } else if (*p == '\'' || *p == '"' || *p == '`') {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000828 /*
829 * A string token.
830 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000831 type = TOK_STRING;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -0700832 p = nasm_skip_string(p);
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000833
H. Peter Anvine2c80182005-01-15 22:15:51 +0000834 if (*p) {
835 p++;
836 } else {
837 error(ERR_WARNING, "unterminated string");
838 /* Handling unterminated strings by UNV */
839 /* type = -1; */
840 }
841 } else if (isnumstart(*p)) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700842 bool is_hex = false;
843 bool is_float = false;
844 bool has_e = false;
845 char c, *r;
846
H. Peter Anvine2c80182005-01-15 22:15:51 +0000847 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700848 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000849 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700850
851 if (*p == '$') {
852 p++;
853 is_hex = true;
854 }
855
856 for (;;) {
857 c = *p++;
858
859 if (!is_hex && (c == 'e' || c == 'E')) {
860 has_e = true;
861 if (*p == '+' || *p == '-') {
862 /* e can only be followed by +/- if it is either a
863 prefixed hex number or a floating-point number */
864 p++;
865 is_float = true;
866 }
867 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
868 is_hex = true;
869 } else if (c == 'P' || c == 'p') {
870 is_float = true;
871 if (*p == '+' || *p == '-')
872 p++;
873 } else if (isnumchar(c) || c == '_')
874 ; /* just advance */
875 else if (c == '.') {
876 /* we need to deal with consequences of the legacy
877 parser, like "1.nolist" being two tokens
878 (TOK_NUMBER, TOK_ID) here; at least give it
879 a shot for now. In the future, we probably need
880 a flex-based scanner with proper pattern matching
881 to do it as well as it can be done. Nothing in
882 the world is going to help the person who wants
883 0x123.p16 interpreted as two tokens, though. */
884 r = p;
885 while (*r == '_')
886 r++;
887
H. Peter Anvinf221b9e2008-06-21 11:03:51 -0700888 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700889 (!is_hex && (*r == 'e' || *r == 'E')) ||
890 (*r == 'p' || *r == 'P')) {
891 p = r;
892 is_float = true;
893 } else
894 break; /* Terminate the token */
895 } else
896 break;
897 }
898 p--; /* Point to first character beyond number */
899
900 if (has_e && !is_hex) {
901 /* 1e13 is floating-point, but 1e13h is not */
902 is_float = true;
903 }
904
905 type = is_float ? TOK_FLOAT : TOK_NUMBER;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700906 } else if (nasm_isspace(*p)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000907 type = TOK_WHITESPACE;
908 p++;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700909 while (*p && nasm_isspace(*p))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000910 p++;
911 /*
912 * Whitespace just before end-of-line is discarded by
913 * pretending it's a comment; whitespace just before a
914 * comment gets lumped into the comment.
915 */
916 if (!*p || *p == ';') {
917 type = TOK_COMMENT;
918 while (*p)
919 p++;
920 }
921 } else if (*p == ';') {
922 type = TOK_COMMENT;
923 while (*p)
924 p++;
925 } else {
926 /*
927 * Anything else is an operator of some kind. We check
928 * for all the double-character operators (>>, <<, //,
929 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000930 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000931 */
932 type = TOK_OTHER;
933 if ((p[0] == '>' && p[1] == '>') ||
934 (p[0] == '<' && p[1] == '<') ||
935 (p[0] == '/' && p[1] == '/') ||
936 (p[0] == '<' && p[1] == '=') ||
937 (p[0] == '>' && p[1] == '=') ||
938 (p[0] == '=' && p[1] == '=') ||
939 (p[0] == '!' && p[1] == '=') ||
940 (p[0] == '<' && p[1] == '>') ||
941 (p[0] == '&' && p[1] == '&') ||
942 (p[0] == '|' && p[1] == '|') ||
943 (p[0] == '^' && p[1] == '^')) {
944 p++;
945 }
946 p++;
947 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000948
H. Peter Anvine2c80182005-01-15 22:15:51 +0000949 /* Handling unterminated string by UNV */
950 /*if (type == -1)
951 {
952 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
953 t->text[p-line] = *line;
954 tail = &t->next;
955 }
956 else */
957 if (type != TOK_COMMENT) {
958 *tail = t = new_Token(NULL, type, line, p - line);
959 tail = &t->next;
960 }
961 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000962 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000963 return list;
964}
965
H. Peter Anvince616072002-04-30 21:02:23 +0000966/*
967 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -0700968 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +0000969 * deleted only all at once by the delete_Blocks function.
970 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000971static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +0000972{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000973 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000974
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000975 /* first, get to the end of the linked list */
976 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000977 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000978 /* now allocate the requested chunk */
979 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000980
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000981 /* now allocate a new block for the next request */
982 b->next = nasm_malloc(sizeof(Blocks));
983 /* and initialize the contents of the new block */
984 b->next->next = NULL;
985 b->next->chunk = NULL;
986 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000987}
988
989/*
990 * this function deletes all managed blocks of memory
991 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000992static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +0000993{
H. Peter Anvine2c80182005-01-15 22:15:51 +0000994 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +0000995
H. Peter Anvin70653092007-10-19 14:42:29 -0700996 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000997 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -0700998 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000999 * free it.
1000 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001001 while (b) {
1002 if (b->chunk)
1003 nasm_free(b->chunk);
1004 a = b;
1005 b = b->next;
1006 if (a != &blocks)
1007 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001008 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001009}
H. Peter Anvin734b1882002-04-30 21:01:08 +00001010
1011/*
H. Peter Anvin70653092007-10-19 14:42:29 -07001012 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +00001013 * back to the caller. It sets the type and text elements, and
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001014 * also the a.mac and next elements to NULL.
H. Peter Anvin734b1882002-04-30 21:01:08 +00001015 */
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001016static Token *new_Token(Token * next, enum pp_token_type type,
H. Peter Anvinc751e862008-06-09 10:18:45 -07001017 const char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001018{
1019 Token *t;
1020 int i;
1021
H. Peter Anvine2c80182005-01-15 22:15:51 +00001022 if (freeTokens == NULL) {
1023 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1024 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1025 freeTokens[i].next = &freeTokens[i + 1];
1026 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001027 }
1028 t = freeTokens;
1029 freeTokens = t->next;
1030 t->next = next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001031 t->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001032 t->type = type;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001033 if (type == TOK_WHITESPACE || text == NULL) {
1034 t->text = NULL;
1035 } else {
1036 if (txtlen == 0)
1037 txtlen = strlen(text);
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001038 t->text = nasm_malloc(txtlen+1);
1039 memcpy(t->text, text, txtlen);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001040 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +00001041 }
1042 return t;
1043}
1044
H. Peter Anvine2c80182005-01-15 22:15:51 +00001045static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001046{
1047 Token *next = t->next;
1048 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +00001049 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001050 freeTokens = t;
1051 return next;
1052}
1053
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001054/*
1055 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001056 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1057 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001058 */
H. Peter Anvin9e200162008-06-04 17:23:14 -07001059static char *detoken(Token * tlist, bool expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001060{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001061 Token *t;
1062 int len;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001063 char *line, *p;
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001064 const char *q;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001065
1066 len = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001067 for (t = tlist; t; t = t->next) {
1068 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001069 char *p = getenv(t->text + 2);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001070 nasm_free(t->text);
1071 if (p)
1072 t->text = nasm_strdup(p);
1073 else
1074 t->text = NULL;
1075 }
1076 /* Expand local macros here and not during preprocessing */
1077 if (expand_locals &&
1078 t->type == TOK_PREPROC_ID && t->text &&
1079 t->text[0] == '%' && t->text[1] == '$') {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001080 Context *ctx = get_ctx(t->text, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001081 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001082 char buffer[40];
1083 char *p, *q = t->text + 2;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001084
H. Peter Anvine2c80182005-01-15 22:15:51 +00001085 q += strspn(q, "$");
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001086 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001087 p = nasm_strcat(buffer, q);
1088 nasm_free(t->text);
1089 t->text = p;
1090 }
1091 }
1092 if (t->type == TOK_WHITESPACE) {
1093 len++;
1094 } else if (t->text) {
1095 len += strlen(t->text);
1096 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001097 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00001098 p = line = nasm_malloc(len + 1);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001099 for (t = tlist; t; t = t->next) {
1100 if (t->type == TOK_WHITESPACE) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001101 *p++ = ' ';
H. Peter Anvine2c80182005-01-15 22:15:51 +00001102 } else if (t->text) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001103 q = t->text;
1104 while (*q)
1105 *p++ = *q++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001106 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001107 }
1108 *p = '\0';
1109 return line;
1110}
1111
1112/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001113 * A scanner, suitable for use by the expression evaluator, which
1114 * operates on a line of Tokens. Expects a pointer to a pointer to
1115 * the first token in the line to be passed in as its private_data
1116 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001117 *
1118 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001119 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001120static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001121{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001122 Token **tlineptr = private_data;
1123 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001124 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001125
H. Peter Anvine2c80182005-01-15 22:15:51 +00001126 do {
1127 tline = *tlineptr;
1128 *tlineptr = tline ? tline->next : NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001129 }
1130 while (tline && (tline->type == TOK_WHITESPACE ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001131 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001132
1133 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001134 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001135
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001136 tokval->t_charptr = tline->text;
1137
H. Peter Anvin76690a12002-04-30 20:52:49 +00001138 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001139 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001140 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001141 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001142
H. Peter Anvine2c80182005-01-15 22:15:51 +00001143 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001144 p = tokval->t_charptr = tline->text;
1145 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001146 tokval->t_charptr++;
1147 return tokval->t_type = TOKEN_ID;
1148 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001149
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001150 for (r = p, s = ourcopy; *r; r++) {
Philipp Thomas76ec8e72008-05-21 08:53:21 -07001151 if (r >= p+MAX_KEYWORD)
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001152 return tokval->t_type = TOKEN_ID; /* Not a keyword */
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -07001153 *s++ = nasm_tolower(*r);
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001154 }
1155 *s = '\0';
1156 /* right, so we have an identifier sitting in temp storage. now,
1157 * is it actually a register or instruction name, or what? */
1158 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001159 }
1160
H. Peter Anvine2c80182005-01-15 22:15:51 +00001161 if (tline->type == TOK_NUMBER) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001162 bool rn_error;
1163 tokval->t_integer = readnum(tline->text, &rn_error);
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001164 tokval->t_charptr = tline->text;
H. Peter Anvin11627042008-06-09 20:45:19 -07001165 if (rn_error)
1166 return tokval->t_type = TOKEN_ERRNUM;
1167 else
1168 return tokval->t_type = TOKEN_NUM;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001169 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001170
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001171 if (tline->type == TOK_FLOAT) {
1172 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001173 }
1174
H. Peter Anvine2c80182005-01-15 22:15:51 +00001175 if (tline->type == TOK_STRING) {
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07001176 char bq, *ep;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001177
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07001178 bq = tline->text[0];
H. Peter Anvin11627042008-06-09 20:45:19 -07001179 tokval->t_charptr = tline->text;
1180 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
H. Peter Anvind2456592008-06-19 15:04:18 -07001181
H. Peter Anvin11627042008-06-09 20:45:19 -07001182 if (ep[0] != bq || ep[1] != '\0')
1183 return tokval->t_type = TOKEN_ERRSTR;
1184 else
1185 return tokval->t_type = TOKEN_STR;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001186 }
1187
H. Peter Anvine2c80182005-01-15 22:15:51 +00001188 if (tline->type == TOK_OTHER) {
1189 if (!strcmp(tline->text, "<<"))
1190 return tokval->t_type = TOKEN_SHL;
1191 if (!strcmp(tline->text, ">>"))
1192 return tokval->t_type = TOKEN_SHR;
1193 if (!strcmp(tline->text, "//"))
1194 return tokval->t_type = TOKEN_SDIV;
1195 if (!strcmp(tline->text, "%%"))
1196 return tokval->t_type = TOKEN_SMOD;
1197 if (!strcmp(tline->text, "=="))
1198 return tokval->t_type = TOKEN_EQ;
1199 if (!strcmp(tline->text, "<>"))
1200 return tokval->t_type = TOKEN_NE;
1201 if (!strcmp(tline->text, "!="))
1202 return tokval->t_type = TOKEN_NE;
1203 if (!strcmp(tline->text, "<="))
1204 return tokval->t_type = TOKEN_LE;
1205 if (!strcmp(tline->text, ">="))
1206 return tokval->t_type = TOKEN_GE;
1207 if (!strcmp(tline->text, "&&"))
1208 return tokval->t_type = TOKEN_DBL_AND;
1209 if (!strcmp(tline->text, "^^"))
1210 return tokval->t_type = TOKEN_DBL_XOR;
1211 if (!strcmp(tline->text, "||"))
1212 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001213 }
1214
1215 /*
1216 * We have no other options: just return the first character of
1217 * the token text.
1218 */
1219 return tokval->t_type = tline->text[0];
1220}
1221
1222/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001223 * Compare a string to the name of an existing macro; this is a
1224 * simple wrapper which calls either strcmp or nasm_stricmp
1225 * depending on the value of the `casesense' parameter.
1226 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001227static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001228{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001229 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001230}
1231
1232/*
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001233 * Compare a string to the name of an existing macro; this is a
1234 * simple wrapper which calls either strcmp or nasm_stricmp
1235 * depending on the value of the `casesense' parameter.
1236 */
1237static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1238{
1239 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1240}
1241
1242/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001243 * Return the Context structure associated with a %$ token. Return
1244 * NULL, having _already_ reported an error condition, if the
1245 * context stack isn't deep enough for the supplied number of $
1246 * signs.
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001247 * If all_contexts == true, contexts that enclose current are
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001248 * also scanned for such smacro, until it is found; if not -
1249 * only the context that directly results from the number of $'s
1250 * in variable's name.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001251 */
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001252static Context *get_ctx(const char *name, bool all_contexts)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001253{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001254 Context *ctx;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001255 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001256 int i;
1257
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001258 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001259 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001260
H. Peter Anvine2c80182005-01-15 22:15:51 +00001261 if (!cstk) {
1262 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1263 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001264 }
1265
H. Peter Anvine2c80182005-01-15 22:15:51 +00001266 for (i = strspn(name + 2, "$"), ctx = cstk; (i > 0) && ctx; i--) {
1267 ctx = ctx->next;
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00001268/* i--; Lino - 02/25/02 */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001269 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001270 if (!ctx) {
1271 error(ERR_NONFATAL, "`%s': context stack is only"
1272 " %d level%s deep", name, i - 1, (i == 2 ? "" : "s"));
1273 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001274 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001275 if (!all_contexts)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001276 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001277
H. Peter Anvine2c80182005-01-15 22:15:51 +00001278 do {
1279 /* Search for this smacro in found context */
H. Peter Anvin166c2472008-05-28 12:28:58 -07001280 m = hash_findix(&ctx->localmac, name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001281 while (m) {
1282 if (!mstrcmp(m->name, name, m->casesense))
1283 return ctx;
1284 m = m->next;
1285 }
1286 ctx = ctx->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001287 }
1288 while (ctx);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001289 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001290}
1291
1292/*
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001293 * Check to see if a file is already in a string list
1294 */
1295static bool in_list(const StrList *list, const char *str)
1296{
1297 while (list) {
1298 if (!strcmp(list->str, str))
1299 return true;
1300 list = list->next;
1301 }
1302 return false;
1303}
1304
1305/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001306 * Open an include file. This routine must always return a valid
1307 * file pointer if it returns - it's responsible for throwing an
1308 * ERR_FATAL and bombing out completely if not. It should also try
1309 * the include path one by one until it finds the file or reaches
1310 * the end of the path.
1311 */
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001312static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
H. Peter Anvin418ca702008-05-30 10:42:30 -07001313 bool missing_ok)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001314{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001315 FILE *fp;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001316 char *prefix = "";
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001317 IncPath *ip = ipath;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001318 int len = strlen(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001319 size_t prefix_len = 0;
1320 StrList *sl;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001321
H. Peter Anvine2c80182005-01-15 22:15:51 +00001322 while (1) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001323 sl = nasm_malloc(prefix_len+len+1+sizeof sl->next);
1324 memcpy(sl->str, prefix, prefix_len);
1325 memcpy(sl->str+prefix_len, file, len+1);
1326 fp = fopen(sl->str, "r");
H. Peter Anvin418ca702008-05-30 10:42:30 -07001327 if (fp && dhead && !in_list(*dhead, sl->str)) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001328 sl->next = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001329 **dtail = sl;
1330 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001331 } else {
1332 nasm_free(sl);
1333 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001334 if (fp)
1335 return fp;
H. Peter Anvin418ca702008-05-30 10:42:30 -07001336 if (!ip) {
1337 if (!missing_ok)
1338 break;
1339 prefix = NULL;
1340 } else {
1341 prefix = ip->path;
1342 ip = ip->next;
1343 }
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001344 if (prefix) {
1345 prefix_len = strlen(prefix);
1346 } else {
1347 /* -MG given and file not found */
H. Peter Anvin418ca702008-05-30 10:42:30 -07001348 if (dhead && !in_list(*dhead, file)) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001349 sl = nasm_malloc(len+1+sizeof sl->next);
1350 sl->next = NULL;
1351 strcpy(sl->str, file);
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001352 **dtail = sl;
1353 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001354 }
H. Peter Anvin37a321f2007-09-24 13:41:58 -07001355 return NULL;
1356 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001357 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001358
H. Peter Anvin734b1882002-04-30 21:01:08 +00001359 error(ERR_FATAL, "unable to open include file `%s'", file);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001360 return NULL; /* never reached - placate compilers */
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001361}
1362
1363/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001364 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001365 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001366 * return true if _any_ single-line macro of that name is defined.
1367 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001368 * `nparam' or no parameters is defined.
1369 *
1370 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001371 * defined, or nparam is -1, the address of the definition structure
1372 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001373 * is NULL, no action will be taken regarding its contents, and no
1374 * error will occur.
1375 *
1376 * Note that this is also called with nparam zero to resolve
1377 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001378 *
1379 * If you already know which context macro belongs to, you can pass
1380 * the context pointer as first parameter; if you won't but name begins
1381 * with %$ the context will be automatically computed. If all_contexts
1382 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001383 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001384static bool
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001385smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001386 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001387{
H. Peter Anvin166c2472008-05-28 12:28:58 -07001388 struct hash_table *smtbl;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001389 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001390
H. Peter Anvin97a23472007-09-16 17:57:25 -07001391 if (ctx) {
H. Peter Anvin166c2472008-05-28 12:28:58 -07001392 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001393 } else if (name[0] == '%' && name[1] == '$') {
1394 if (cstk)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001395 ctx = get_ctx(name, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001396 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001397 return false; /* got to return _something_ */
H. Peter Anvin166c2472008-05-28 12:28:58 -07001398 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001399 } else {
H. Peter Anvin166c2472008-05-28 12:28:58 -07001400 smtbl = &smacros;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001401 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001402 m = (SMacro *) hash_findix(smtbl, name);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001403
H. Peter Anvine2c80182005-01-15 22:15:51 +00001404 while (m) {
1405 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001406 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001407 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001408 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001409 *defn = m;
1410 else
1411 *defn = NULL;
1412 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001413 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001414 }
1415 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001416 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001417
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001418 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001419}
1420
1421/*
1422 * Count and mark off the parameters in a multi-line macro call.
1423 * This is called both from within the multi-line macro expansion
1424 * code, and also to mark off the default parameters when provided
1425 * in a %macro definition line.
1426 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001427static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001428{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001429 int paramsize, brace;
1430
1431 *nparam = paramsize = 0;
1432 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001433 while (t) {
1434 if (*nparam >= paramsize) {
1435 paramsize += PARAM_DELTA;
1436 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1437 }
1438 skip_white_(t);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001439 brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001440 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001441 brace = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001442 (*params)[(*nparam)++] = t;
1443 while (tok_isnt_(t, brace ? "}" : ","))
1444 t = t->next;
1445 if (t) { /* got a comma/brace */
1446 t = t->next;
1447 if (brace) {
1448 /*
1449 * Now we've found the closing brace, look further
1450 * for the comma.
1451 */
1452 skip_white_(t);
1453 if (tok_isnt_(t, ",")) {
1454 error(ERR_NONFATAL,
1455 "braces do not enclose all of macro parameter");
1456 while (tok_isnt_(t, ","))
1457 t = t->next;
1458 }
1459 if (t)
1460 t = t->next; /* eat the comma */
1461 }
1462 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001463 }
1464}
1465
1466/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001467 * Determine whether one of the various `if' conditions is true or
1468 * not.
1469 *
1470 * We must free the tline we get passed.
1471 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001472static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001473{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001474 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001475 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001476 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001477 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001478 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001479 enum pp_token_type needtype;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001480
1481 origline = tline;
1482
H. Peter Anvine2c80182005-01-15 22:15:51 +00001483 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001484 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001485 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001486 while (cstk && tline) {
1487 skip_white_(tline);
1488 if (!tline || tline->type != TOK_ID) {
1489 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001490 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001491 free_tlist(origline);
1492 return -1;
1493 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07001494 if (cstk->name && !nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001495 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001496 tline = tline->next;
1497 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001498 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001499
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001500 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001501 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001502 while (tline) {
1503 skip_white_(tline);
1504 if (!tline || (tline->type != TOK_ID &&
1505 (tline->type != TOK_PREPROC_ID ||
1506 tline->text[1] != '$'))) {
1507 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001508 "`%s' expects macro identifiers", pp_directives[ct]);
1509 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001510 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001511 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001512 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001513 tline = tline->next;
1514 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001515 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001516
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001517 case PPC_IFIDN:
1518 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001519 tline = expand_smacro(tline);
1520 t = tt = tline;
1521 while (tok_isnt_(tt, ","))
1522 tt = tt->next;
1523 if (!tt) {
1524 error(ERR_NONFATAL,
1525 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001526 pp_directives[ct]);
1527 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001528 }
1529 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001530 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001531 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1532 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1533 error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001534 pp_directives[ct]);
1535 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001536 }
1537 if (t->type == TOK_WHITESPACE) {
1538 t = t->next;
1539 continue;
1540 }
1541 if (tt->type == TOK_WHITESPACE) {
1542 tt = tt->next;
1543 continue;
1544 }
1545 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001546 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001547 break;
1548 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001549 /* When comparing strings, need to unquote them first */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001550 if (t->type == TOK_STRING) {
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07001551 size_t l1 = nasm_unquote(t->text, NULL);
1552 size_t l2 = nasm_unquote(tt->text, NULL);
H. Peter Anvind2456592008-06-19 15:04:18 -07001553
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001554 if (l1 != l2) {
1555 j = false;
1556 break;
1557 }
1558 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
1559 j = false;
1560 break;
1561 }
1562 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001563 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001564 break;
1565 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001566
H. Peter Anvine2c80182005-01-15 22:15:51 +00001567 t = t->next;
1568 tt = tt->next;
1569 }
1570 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001571 j = false; /* trailing gunk on one end or other */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001572 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001573
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001574 case PPC_IFMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001575 {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001576 bool found = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001577 MMacro searching, *mmac;
H. Peter Anvin65747262002-05-07 00:10:05 +00001578
H. Peter Anvine2c80182005-01-15 22:15:51 +00001579 tline = tline->next;
1580 skip_white_(tline);
1581 tline = expand_id(tline);
1582 if (!tok_type_(tline, TOK_ID)) {
1583 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001584 "`%s' expects a macro name", pp_directives[ct]);
1585 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001586 }
1587 searching.name = nasm_strdup(tline->text);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001588 searching.casesense = true;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001589 searching.plus = false;
1590 searching.nolist = false;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001591 searching.in_progress = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001592 searching.rep_nest = NULL;
1593 searching.nparam_min = 0;
1594 searching.nparam_max = INT_MAX;
1595 tline = expand_smacro(tline->next);
1596 skip_white_(tline);
1597 if (!tline) {
1598 } else if (!tok_type_(tline, TOK_NUMBER)) {
1599 error(ERR_NONFATAL,
1600 "`%s' expects a parameter count or nothing",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001601 pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001602 } else {
1603 searching.nparam_min = searching.nparam_max =
1604 readnum(tline->text, &j);
1605 if (j)
1606 error(ERR_NONFATAL,
1607 "unable to parse parameter count `%s'",
1608 tline->text);
1609 }
1610 if (tline && tok_is_(tline->next, "-")) {
1611 tline = tline->next->next;
1612 if (tok_is_(tline, "*"))
1613 searching.nparam_max = INT_MAX;
1614 else if (!tok_type_(tline, TOK_NUMBER))
1615 error(ERR_NONFATAL,
1616 "`%s' expects a parameter count after `-'",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001617 pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001618 else {
1619 searching.nparam_max = readnum(tline->text, &j);
1620 if (j)
1621 error(ERR_NONFATAL,
1622 "unable to parse parameter count `%s'",
1623 tline->text);
1624 if (searching.nparam_min > searching.nparam_max)
1625 error(ERR_NONFATAL,
1626 "minimum parameter count exceeds maximum");
1627 }
1628 }
1629 if (tline && tok_is_(tline->next, "+")) {
1630 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001631 searching.plus = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001632 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001633 mmac = (MMacro *) hash_findix(&mmacros, searching.name);
H. Peter Anvin97a23472007-09-16 17:57:25 -07001634 while (mmac) {
1635 if (!strcmp(mmac->name, searching.name) &&
1636 (mmac->nparam_min <= searching.nparam_max
1637 || searching.plus)
1638 && (searching.nparam_min <= mmac->nparam_max
1639 || mmac->plus)) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001640 found = true;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001641 break;
1642 }
1643 mmac = mmac->next;
1644 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001645 nasm_free(searching.name);
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001646 j = found;
1647 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001648 }
H. Peter Anvin65747262002-05-07 00:10:05 +00001649
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001650 case PPC_IFID:
1651 needtype = TOK_ID;
1652 goto iftype;
1653 case PPC_IFNUM:
1654 needtype = TOK_NUMBER;
1655 goto iftype;
1656 case PPC_IFSTR:
1657 needtype = TOK_STRING;
1658 goto iftype;
1659
1660 iftype:
H. Peter Anvin134b9462008-02-16 17:01:40 -08001661 t = tline = expand_smacro(tline);
H. Peter Anvind85d2502008-05-04 17:53:31 -07001662
H. Peter Anvin927c92b2008-02-16 13:44:52 -08001663 while (tok_type_(t, TOK_WHITESPACE) ||
1664 (needtype == TOK_NUMBER &&
1665 tok_type_(t, TOK_OTHER) &&
1666 (t->text[0] == '-' || t->text[0] == '+') &&
1667 !t->text[1]))
1668 t = t->next;
H. Peter Anvind85d2502008-05-04 17:53:31 -07001669
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001670 j = tok_type_(t, needtype);
1671 break;
1672
1673 case PPC_IFTOKEN:
1674 t = tline = expand_smacro(tline);
1675 while (tok_type_(t, TOK_WHITESPACE))
1676 t = t->next;
1677
1678 j = false;
1679 if (t) {
1680 t = t->next; /* Skip the actual token */
1681 while (tok_type_(t, TOK_WHITESPACE))
1682 t = t->next;
1683 j = !t; /* Should be nothing left */
1684 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001685 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001686
H. Peter Anvin134b9462008-02-16 17:01:40 -08001687 case PPC_IFEMPTY:
1688 t = tline = expand_smacro(tline);
1689 while (tok_type_(t, TOK_WHITESPACE))
1690 t = t->next;
1691
1692 j = !t; /* Should be empty */
1693 break;
1694
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001695 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001696 t = tline = expand_smacro(tline);
1697 tptr = &t;
1698 tokval.t_type = TOKEN_INVALID;
1699 evalresult = evaluate(ppscan, tptr, &tokval,
1700 NULL, pass | CRITICAL, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001701 if (!evalresult)
1702 return -1;
1703 if (tokval.t_type)
1704 error(ERR_WARNING,
1705 "trailing garbage after expression ignored");
1706 if (!is_simple(evalresult)) {
1707 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001708 "non-constant value given to `%s'", pp_directives[ct]);
1709 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001710 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001711 j = reloc_value(evalresult) != 0;
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001712 return j;
H. Peter Anvin95e28822007-09-12 04:20:08 +00001713
H. Peter Anvine2c80182005-01-15 22:15:51 +00001714 default:
1715 error(ERR_FATAL,
1716 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001717 pp_directives[ct]);
1718 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001719 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001720
1721 free_tlist(origline);
1722 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07001723
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001724fail:
1725 free_tlist(origline);
1726 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001727}
1728
1729/*
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001730 * Common code for defining an smacro
1731 */
1732static bool define_smacro(Context *ctx, char *mname, bool casesense,
1733 int nparam, Token *expansion)
1734{
1735 SMacro *smac, **smhead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07001736 struct hash_table *smtbl;
H. Peter Anvin70653092007-10-19 14:42:29 -07001737
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001738 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
1739 if (!smac) {
1740 error(ERR_WARNING,
1741 "single-line macro `%s' defined both with and"
1742 " without parameters", mname);
1743
1744 /* Some instances of the old code considered this a failure,
1745 some others didn't. What is the right thing to do here? */
1746 free_tlist(expansion);
1747 return false; /* Failure */
1748 } else {
1749 /*
1750 * We're redefining, so we have to take over an
1751 * existing SMacro structure. This means freeing
1752 * what was already in it.
1753 */
1754 nasm_free(smac->name);
1755 free_tlist(smac->expansion);
1756 }
1757 } else {
H. Peter Anvin166c2472008-05-28 12:28:58 -07001758 smtbl = ctx ? &ctx->localmac : &smacros;
1759 smhead = (SMacro **) hash_findi_add(smtbl, mname);
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001760 smac = nasm_malloc(sizeof(SMacro));
1761 smac->next = *smhead;
1762 *smhead = smac;
1763 }
1764 smac->name = nasm_strdup(mname);
1765 smac->casesense = casesense;
1766 smac->nparam = nparam;
1767 smac->expansion = expansion;
1768 smac->in_progress = false;
1769 return true; /* Success */
1770}
1771
1772/*
1773 * Undefine an smacro
1774 */
1775static void undef_smacro(Context *ctx, const char *mname)
1776{
1777 SMacro **smhead, *s, **sp;
H. Peter Anvin166c2472008-05-28 12:28:58 -07001778 struct hash_table *smtbl;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001779
H. Peter Anvin166c2472008-05-28 12:28:58 -07001780 smtbl = ctx ? &ctx->localmac : &smacros;
1781 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
H. Peter Anvin70653092007-10-19 14:42:29 -07001782
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001783 if (smhead) {
1784 /*
1785 * We now have a macro name... go hunt for it.
1786 */
1787 sp = smhead;
1788 while ((s = *sp) != NULL) {
1789 if (!mstrcmp(s->name, mname, s->casesense)) {
1790 *sp = s->next;
1791 nasm_free(s->name);
1792 free_tlist(s->expansion);
1793 nasm_free(s);
1794 } else {
1795 sp = &s->next;
1796 }
1797 }
1798 }
1799}
1800
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001801/*
1802 * Decode a size directive
1803 */
1804static int parse_size(const char *str) {
1805 static const char *size_names[] =
H. Peter Anvindfb91802008-05-20 11:43:53 -07001806 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001807 static const int sizes[] =
H. Peter Anvindfb91802008-05-20 11:43:53 -07001808 { 0, 1, 4, 16, 8, 10, 2, 32 };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001809
1810 return sizes[bsii(str, size_names, elements(size_names))+1];
1811}
1812
Ed Beroset3ab3f412002-06-11 03:31:49 +00001813/**
1814 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001815 * Find out if a line contains a preprocessor directive, and deal
1816 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07001817 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00001818 * If a directive _is_ found, it is the responsibility of this routine
1819 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001820 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00001821 * @param tline a pointer to the current tokeninzed line linked list
1822 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07001823 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001824 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001825static int do_directive(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001826{
H. Peter Anvin4169a472007-09-12 01:29:43 +00001827 enum preproc_token i;
1828 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07001829 bool err;
1830 int nparam;
1831 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001832 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07001833 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001834 int offset;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001835 char *p, *pp, *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001836 Include *inc;
1837 Context *ctx;
1838 Cond *cond;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001839 MMacro *mmac, **mmhead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001840 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
1841 Line *l;
1842 struct tokenval tokval;
1843 expr *evalresult;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001844 MMacro *tmp_defining; /* Used when manipulating rep_nest */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001845 int64_t count;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001846 size_t len;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001847
1848 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001849
H. Peter Anvineba20a72002-04-30 20:53:55 +00001850 skip_white_(tline);
H. Peter Anvinf2936d72008-06-04 15:11:23 -07001851 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001852 (tline->text[1] == '%' || tline->text[1] == '$'
1853 || tline->text[1] == '!'))
1854 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001855
H. Peter Anvin4169a472007-09-12 01:29:43 +00001856 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001857
1858 /*
1859 * If we're in a non-emitting branch of a condition construct,
H. Peter Anvin76690a12002-04-30 20:52:49 +00001860 * or walking to the end of an already terminated %rep block,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001861 * we should ignore all directives except for condition
1862 * directives.
1863 */
H. Peter Anvin76690a12002-04-30 20:52:49 +00001864 if (((istk->conds && !emitting(istk->conds->state)) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001865 (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) {
1866 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001867 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001868
1869 /*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001870 * If we're defining a macro or reading a %rep block, we should
1871 * ignore all directives except for %macro/%imacro (which
1872 * generate an error), %endm/%endmacro, and (only if we're in a
H. Peter Anvineba20a72002-04-30 20:53:55 +00001873 * %rep block) %endrep. If we're in a %rep block, another %rep
1874 * causes an error, so should be let through.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001875 */
1876 if (defining && i != PP_MACRO && i != PP_IMACRO &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00001877 i != PP_ENDMACRO && i != PP_ENDM &&
1878 (defining->name || (i != PP_ENDREP && i != PP_REP))) {
1879 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001880 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001881
H. Peter Anvin4169a472007-09-12 01:29:43 +00001882 switch (i) {
1883 case PP_INVALID:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001884 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
1885 tline->text);
1886 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001887
H. Peter Anvine2c80182005-01-15 22:15:51 +00001888 case PP_STACKSIZE:
1889 /* Directive to tell NASM what the default stack size is. The
1890 * default is for a 16-bit stack, and this can be overriden with
1891 * %stacksize large.
1892 * the following form:
1893 *
1894 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
1895 */
1896 tline = tline->next;
1897 if (tline && tline->type == TOK_WHITESPACE)
1898 tline = tline->next;
1899 if (!tline || tline->type != TOK_ID) {
1900 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
1901 free_tlist(origline);
1902 return DIRECTIVE_FOUND;
1903 }
1904 if (nasm_stricmp(tline->text, "flat") == 0) {
1905 /* All subsequent ARG directives are for a 32-bit stack */
1906 StackSize = 4;
1907 StackPointer = "ebp";
1908 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001909 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08001910 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
1911 /* All subsequent ARG directives are for a 64-bit stack */
1912 StackSize = 8;
1913 StackPointer = "rbp";
1914 ArgOffset = 8;
1915 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001916 } else if (nasm_stricmp(tline->text, "large") == 0) {
1917 /* All subsequent ARG directives are for a 16-bit stack,
1918 * far function call.
1919 */
1920 StackSize = 2;
1921 StackPointer = "bp";
1922 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001923 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001924 } else if (nasm_stricmp(tline->text, "small") == 0) {
1925 /* All subsequent ARG directives are for a 16-bit stack,
1926 * far function call. We don't support near functions.
1927 */
1928 StackSize = 2;
1929 StackPointer = "bp";
1930 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001931 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001932 } else {
1933 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
1934 free_tlist(origline);
1935 return DIRECTIVE_FOUND;
1936 }
1937 free_tlist(origline);
1938 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001939
H. Peter Anvine2c80182005-01-15 22:15:51 +00001940 case PP_ARG:
1941 /* TASM like ARG directive to define arguments to functions, in
1942 * the following form:
1943 *
1944 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
1945 */
1946 offset = ArgOffset;
1947 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001948 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00001949 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001950
H. Peter Anvine2c80182005-01-15 22:15:51 +00001951 /* Find the argument name */
1952 tline = tline->next;
1953 if (tline && tline->type == TOK_WHITESPACE)
1954 tline = tline->next;
1955 if (!tline || tline->type != TOK_ID) {
1956 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
1957 free_tlist(origline);
1958 return DIRECTIVE_FOUND;
1959 }
1960 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001961
H. Peter Anvine2c80182005-01-15 22:15:51 +00001962 /* Find the argument size type */
1963 tline = tline->next;
1964 if (!tline || tline->type != TOK_OTHER
1965 || tline->text[0] != ':') {
1966 error(ERR_NONFATAL,
1967 "Syntax error processing `%%arg' directive");
1968 free_tlist(origline);
1969 return DIRECTIVE_FOUND;
1970 }
1971 tline = tline->next;
1972 if (!tline || tline->type != TOK_ID) {
1973 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
1974 free_tlist(origline);
1975 return DIRECTIVE_FOUND;
1976 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001977
H. Peter Anvine2c80182005-01-15 22:15:51 +00001978 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00001979 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001980 tt = expand_smacro(tt);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001981 size = parse_size(tt->text);
1982 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001983 error(ERR_NONFATAL,
1984 "Invalid size type for `%%arg' missing directive");
1985 free_tlist(tt);
1986 free_tlist(origline);
1987 return DIRECTIVE_FOUND;
1988 }
1989 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001990
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001991 /* Round up to even stack slots */
1992 size = (size+StackSize-1) & ~(StackSize-1);
1993
H. Peter Anvine2c80182005-01-15 22:15:51 +00001994 /* Now define the macro for the argument */
1995 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
1996 arg, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00001997 do_directive(tokenize(directive));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001998 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001999
H. Peter Anvine2c80182005-01-15 22:15:51 +00002000 /* Move to the next argument in the list */
2001 tline = tline->next;
2002 if (tline && tline->type == TOK_WHITESPACE)
2003 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002004 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2005 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002006 free_tlist(origline);
2007 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002008
H. Peter Anvine2c80182005-01-15 22:15:51 +00002009 case PP_LOCAL:
2010 /* TASM like LOCAL directive to define local variables for a
2011 * function, in the following form:
2012 *
2013 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2014 *
2015 * The '= LocalSize' at the end is ignored by NASM, but is
2016 * required by TASM to define the local parameter size (and used
2017 * by the TASM macro package).
2018 */
2019 offset = LocalOffset;
2020 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002021 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002022 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002023
H. Peter Anvine2c80182005-01-15 22:15:51 +00002024 /* Find the argument name */
2025 tline = tline->next;
2026 if (tline && tline->type == TOK_WHITESPACE)
2027 tline = tline->next;
2028 if (!tline || tline->type != TOK_ID) {
2029 error(ERR_NONFATAL,
2030 "`%%local' missing argument parameter");
2031 free_tlist(origline);
2032 return DIRECTIVE_FOUND;
2033 }
2034 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002035
H. Peter Anvine2c80182005-01-15 22:15:51 +00002036 /* Find the argument size type */
2037 tline = tline->next;
2038 if (!tline || tline->type != TOK_OTHER
2039 || tline->text[0] != ':') {
2040 error(ERR_NONFATAL,
2041 "Syntax error processing `%%local' directive");
2042 free_tlist(origline);
2043 return DIRECTIVE_FOUND;
2044 }
2045 tline = tline->next;
2046 if (!tline || tline->type != TOK_ID) {
2047 error(ERR_NONFATAL,
2048 "`%%local' missing size type parameter");
2049 free_tlist(origline);
2050 return DIRECTIVE_FOUND;
2051 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002052
H. Peter Anvine2c80182005-01-15 22:15:51 +00002053 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002054 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002055 tt = expand_smacro(tt);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002056 size = parse_size(tt->text);
2057 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002058 error(ERR_NONFATAL,
2059 "Invalid size type for `%%local' missing directive");
2060 free_tlist(tt);
2061 free_tlist(origline);
2062 return DIRECTIVE_FOUND;
2063 }
2064 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002065
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002066 /* Round up to even stack slots */
2067 size = (size+StackSize-1) & ~(StackSize-1);
2068
2069 offset += size; /* Negative offset, increment before */
2070
2071 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002072 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2073 local, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002074 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002075
H. Peter Anvine2c80182005-01-15 22:15:51 +00002076 /* Now define the assign to setup the enter_c macro correctly */
2077 snprintf(directive, sizeof(directive),
2078 "%%assign %%$localsize %%$localsize+%d", size);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002079 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002080
H. Peter Anvine2c80182005-01-15 22:15:51 +00002081 /* Move to the next argument in the list */
2082 tline = tline->next;
2083 if (tline && tline->type == TOK_WHITESPACE)
2084 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002085 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2086 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002087 free_tlist(origline);
2088 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002089
H. Peter Anvine2c80182005-01-15 22:15:51 +00002090 case PP_CLEAR:
2091 if (tline->next)
2092 error(ERR_WARNING, "trailing garbage after `%%clear' ignored");
H. Peter Anvin97a23472007-09-16 17:57:25 -07002093 free_macros();
2094 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002095 free_tlist(origline);
2096 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002097
H. Peter Anvin418ca702008-05-30 10:42:30 -07002098 case PP_DEPEND:
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002099 t = tline->next = expand_smacro(tline->next);
2100 skip_white_(t);
2101 if (!t || (t->type != TOK_STRING &&
2102 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07002103 error(ERR_NONFATAL, "`%%depend' expects a file name");
2104 free_tlist(origline);
2105 return DIRECTIVE_FOUND; /* but we did _something_ */
2106 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002107 if (t->next)
H. Peter Anvin418ca702008-05-30 10:42:30 -07002108 error(ERR_WARNING,
2109 "trailing garbage after `%%depend' ignored");
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002110 p = t->text;
2111 if (t->type != TOK_INTERNAL_STRING)
2112 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002113 if (dephead && !in_list(*dephead, p)) {
2114 StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next);
2115 sl->next = NULL;
2116 strcpy(sl->str, p);
2117 *deptail = sl;
2118 deptail = &sl->next;
2119 }
2120 free_tlist(origline);
2121 return DIRECTIVE_FOUND;
2122
2123 case PP_INCLUDE:
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002124 t = tline->next = expand_smacro(tline->next);
2125 skip_white_(t);
H. Peter Anvind2456592008-06-19 15:04:18 -07002126
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002127 if (!t || (t->type != TOK_STRING &&
2128 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002129 error(ERR_NONFATAL, "`%%include' expects a file name");
2130 free_tlist(origline);
2131 return DIRECTIVE_FOUND; /* but we did _something_ */
2132 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002133 if (t->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002134 error(ERR_WARNING,
2135 "trailing garbage after `%%include' ignored");
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002136 p = t->text;
2137 if (t->type != TOK_INTERNAL_STRING)
2138 nasm_unquote(p, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002139 inc = nasm_malloc(sizeof(Include));
2140 inc->next = istk;
2141 inc->conds = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002142 inc->fp = inc_fopen(p, dephead, &deptail, pass == 0);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002143 if (!inc->fp) {
H. Peter Anvin37a321f2007-09-24 13:41:58 -07002144 /* -MG given but file not found */
2145 nasm_free(inc);
2146 } else {
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002147 inc->fname = src_set_fname(nasm_strdup(p));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07002148 inc->lineno = src_set_linnum(0);
2149 inc->lineinc = 1;
2150 inc->expansion = NULL;
2151 inc->mstk = NULL;
2152 istk = inc;
2153 list->uplevel(LIST_INCLUDE);
2154 }
2155 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002156 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002157
H. Peter Anvind2456592008-06-19 15:04:18 -07002158 case PP_USE:
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002159 {
H. Peter Anvin7e50d232008-06-25 14:54:14 -07002160 static const macros_t *use_pkg;
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07002161 const char *pkg_macro;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002162
H. Peter Anvind2456592008-06-19 15:04:18 -07002163 t = tline->next = expand_smacro(tline->next);
2164 skip_white_(t);
2165
2166 if (!t || (t->type != TOK_STRING &&
2167 t->type != TOK_INTERNAL_STRING &&
2168 t->type != TOK_ID)) {
H. Peter Anvin926fc402008-06-19 16:26:12 -07002169 error(ERR_NONFATAL, "`%%use' expects a package name");
H. Peter Anvind2456592008-06-19 15:04:18 -07002170 free_tlist(origline);
2171 return DIRECTIVE_FOUND; /* but we did _something_ */
2172 }
2173 if (t->next)
2174 error(ERR_WARNING,
2175 "trailing garbage after `%%use' ignored");
H. Peter Anvind2456592008-06-19 15:04:18 -07002176 if (t->type == TOK_STRING)
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002177 nasm_unquote(t->text, NULL);
2178 use_pkg = nasm_stdmac_find_package(t->text);
2179 if (!use_pkg)
2180 error(ERR_NONFATAL, "unknown `%%use' package: %s", t->text);
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07002181 /* The first string will be <%define>__USE_*__ */
H. Peter Anvin7e50d232008-06-25 14:54:14 -07002182 pkg_macro = (char *)use_pkg + 1;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002183 if (!smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
2184 /* Not already included, go ahead and include it */
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002185 stdmacpos = use_pkg;
2186 }
H. Peter Anvind2456592008-06-19 15:04:18 -07002187 free_tlist(origline);
2188 return DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002189 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002190 case PP_PUSH:
2191 tline = tline->next;
2192 skip_white_(tline);
2193 tline = expand_id(tline);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002194 if (tline) {
2195 if (!tok_type_(tline, TOK_ID)) {
2196 error(ERR_NONFATAL, "`%%push' expects a context identifier");
2197 free_tlist(origline);
2198 return DIRECTIVE_FOUND; /* but we did _something_ */
2199 }
2200 if (tline->next)
2201 error(ERR_WARNING, "trailing garbage after `%%push' ignored");
2202 p = nasm_strdup(tline->text);
2203 } else {
2204 p = NULL; /* Anonymous context */
2205 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002206 ctx = nasm_malloc(sizeof(Context));
2207 ctx->next = cstk;
H. Peter Anvin166c2472008-05-28 12:28:58 -07002208 hash_init(&ctx->localmac, HASH_SMALL);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002209 ctx->name = p;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002210 ctx->number = unique++;
2211 cstk = ctx;
2212 free_tlist(origline);
2213 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002214
H. Peter Anvine2c80182005-01-15 22:15:51 +00002215 case PP_REPL:
2216 tline = tline->next;
2217 skip_white_(tline);
2218 tline = expand_id(tline);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002219 if (tline) {
2220 if (!tok_type_(tline, TOK_ID)) {
2221 error(ERR_NONFATAL, "`%%repl' expects a context identifier");
2222 free_tlist(origline);
2223 return DIRECTIVE_FOUND; /* but we did _something_ */
2224 }
2225 if (tline->next)
2226 error(ERR_WARNING, "trailing garbage after `%%repl' ignored");
2227 p = nasm_strdup(tline->text);
2228 } else {
2229 p = NULL;
2230 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002231 if (!cstk)
2232 error(ERR_NONFATAL, "`%%repl': context stack is empty");
2233 else {
2234 nasm_free(cstk->name);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002235 cstk->name = p;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002236 }
2237 free_tlist(origline);
2238 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002239
H. Peter Anvine2c80182005-01-15 22:15:51 +00002240 case PP_POP:
2241 if (tline->next)
2242 error(ERR_WARNING, "trailing garbage after `%%pop' ignored");
2243 if (!cstk)
2244 error(ERR_NONFATAL, "`%%pop': context stack is already empty");
2245 else
2246 ctx_pop();
2247 free_tlist(origline);
2248 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002249
H. Peter Anvine2c80182005-01-15 22:15:51 +00002250 case PP_ERROR:
H. Peter Anvin7df04172008-06-10 18:27:38 -07002251 case PP_WARNING:
2252 {
2253 int severity = PP_ERROR ? ERR_NONFATAL|ERR_NO_SEVERITY :
2254 ERR_WARNING|ERR_NO_SEVERITY;
2255
H. Peter Anvine2c80182005-01-15 22:15:51 +00002256 tline->next = expand_smacro(tline->next);
2257 tline = tline->next;
2258 skip_white_(tline);
H. Peter Anvin7df04172008-06-10 18:27:38 -07002259 t = tline ? tline->next : NULL;
2260 skip_white_(t);
2261 if (tok_type_(tline, TOK_STRING) && !t) {
2262 /* The line contains only a quoted string */
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002263 p = tline->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002264 nasm_unquote(p, NULL);
H. Peter Anvin7df04172008-06-10 18:27:38 -07002265 error(severity, "%s: %s", pp_directives[i], p);
2266 } else {
2267 /* Not a quoted string, or more than a quoted string */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002268 p = detoken(tline, false);
H. Peter Anvin7df04172008-06-10 18:27:38 -07002269 error(severity, "%s: %s", pp_directives[i], p);
2270 nasm_free(p);
H. Peter Anvind2456592008-06-19 15:04:18 -07002271 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002272 free_tlist(origline);
2273 break;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002274 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002275
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002276 CASE_PP_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002277 if (istk->conds && !emitting(istk->conds->state))
2278 j = COND_NEVER;
2279 else {
2280 j = if_condition(tline->next, i);
2281 tline->next = NULL; /* it got freed */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002282 j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2283 }
2284 cond = nasm_malloc(sizeof(Cond));
2285 cond->next = istk->conds;
2286 cond->state = j;
2287 istk->conds = cond;
H. Peter Anvin7061ad72007-11-26 22:02:21 -08002288 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002289 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002290
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002291 CASE_PP_ELIF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002292 if (!istk->conds)
H. Peter Anvin4169a472007-09-12 01:29:43 +00002293 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002294 if (emitting(istk->conds->state)
2295 || istk->conds->state == COND_NEVER)
2296 istk->conds->state = COND_NEVER;
2297 else {
2298 /*
2299 * IMPORTANT: In the case of %if, we will already have
2300 * called expand_mmac_params(); however, if we're
2301 * processing an %elif we must have been in a
2302 * non-emitting mode, which would have inhibited
2303 * the normal invocation of expand_mmac_params(). Therefore,
2304 * we have to do it explicitly here.
2305 */
2306 j = if_condition(expand_mmac_params(tline->next), i);
2307 tline->next = NULL; /* it got freed */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002308 istk->conds->state =
2309 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2310 }
H. Peter Anvin7061ad72007-11-26 22:02:21 -08002311 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002312 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002313
H. Peter Anvine2c80182005-01-15 22:15:51 +00002314 case PP_ELSE:
2315 if (tline->next)
2316 error(ERR_WARNING, "trailing garbage after `%%else' ignored");
2317 if (!istk->conds)
2318 error(ERR_FATAL, "`%%else': no matching `%%if'");
2319 if (emitting(istk->conds->state)
2320 || istk->conds->state == COND_NEVER)
2321 istk->conds->state = COND_ELSE_FALSE;
2322 else
2323 istk->conds->state = COND_ELSE_TRUE;
2324 free_tlist(origline);
2325 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002326
H. Peter Anvine2c80182005-01-15 22:15:51 +00002327 case PP_ENDIF:
2328 if (tline->next)
2329 error(ERR_WARNING, "trailing garbage after `%%endif' ignored");
2330 if (!istk->conds)
2331 error(ERR_FATAL, "`%%endif': no matching `%%if'");
2332 cond = istk->conds;
2333 istk->conds = cond->next;
2334 nasm_free(cond);
2335 free_tlist(origline);
2336 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002337
H. Peter Anvine2c80182005-01-15 22:15:51 +00002338 case PP_MACRO:
2339 case PP_IMACRO:
2340 if (defining)
2341 error(ERR_FATAL,
2342 "`%%%smacro': already defining a macro",
2343 (i == PP_IMACRO ? "i" : ""));
2344 tline = tline->next;
2345 skip_white_(tline);
2346 tline = expand_id(tline);
2347 if (!tok_type_(tline, TOK_ID)) {
2348 error(ERR_NONFATAL,
2349 "`%%%smacro' expects a macro name",
2350 (i == PP_IMACRO ? "i" : ""));
2351 return DIRECTIVE_FOUND;
2352 }
2353 defining = nasm_malloc(sizeof(MMacro));
2354 defining->name = nasm_strdup(tline->text);
2355 defining->casesense = (i == PP_MACRO);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002356 defining->plus = false;
2357 defining->nolist = false;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002358 defining->in_progress = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002359 defining->rep_nest = NULL;
2360 tline = expand_smacro(tline->next);
2361 skip_white_(tline);
2362 if (!tok_type_(tline, TOK_NUMBER)) {
2363 error(ERR_NONFATAL,
2364 "`%%%smacro' expects a parameter count",
2365 (i == PP_IMACRO ? "i" : ""));
2366 defining->nparam_min = defining->nparam_max = 0;
2367 } else {
2368 defining->nparam_min = defining->nparam_max =
H. Peter Anvin70055962007-10-11 00:05:31 -07002369 readnum(tline->text, &err);
2370 if (err)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002371 error(ERR_NONFATAL,
2372 "unable to parse parameter count `%s'", tline->text);
2373 }
2374 if (tline && tok_is_(tline->next, "-")) {
2375 tline = tline->next->next;
2376 if (tok_is_(tline, "*"))
2377 defining->nparam_max = INT_MAX;
2378 else if (!tok_type_(tline, TOK_NUMBER))
2379 error(ERR_NONFATAL,
2380 "`%%%smacro' expects a parameter count after `-'",
2381 (i == PP_IMACRO ? "i" : ""));
2382 else {
H. Peter Anvin70055962007-10-11 00:05:31 -07002383 defining->nparam_max = readnum(tline->text, &err);
2384 if (err)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002385 error(ERR_NONFATAL,
2386 "unable to parse parameter count `%s'",
2387 tline->text);
2388 if (defining->nparam_min > defining->nparam_max)
2389 error(ERR_NONFATAL,
2390 "minimum parameter count exceeds maximum");
2391 }
2392 }
2393 if (tline && tok_is_(tline->next, "+")) {
2394 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002395 defining->plus = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002396 }
2397 if (tline && tok_type_(tline->next, TOK_ID) &&
2398 !nasm_stricmp(tline->next->text, ".nolist")) {
2399 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002400 defining->nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002401 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07002402 mmac = (MMacro *) hash_findix(&mmacros, defining->name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002403 while (mmac) {
2404 if (!strcmp(mmac->name, defining->name) &&
2405 (mmac->nparam_min <= defining->nparam_max
2406 || defining->plus)
2407 && (defining->nparam_min <= mmac->nparam_max
2408 || mmac->plus)) {
2409 error(ERR_WARNING,
2410 "redefining multi-line macro `%s'", defining->name);
2411 break;
2412 }
2413 mmac = mmac->next;
2414 }
2415 /*
2416 * Handle default parameters.
2417 */
2418 if (tline && tline->next) {
2419 defining->dlist = tline->next;
2420 tline->next = NULL;
2421 count_mmac_params(defining->dlist, &defining->ndefs,
2422 &defining->defaults);
2423 } else {
2424 defining->dlist = NULL;
2425 defining->defaults = NULL;
2426 }
2427 defining->expansion = NULL;
2428 free_tlist(origline);
2429 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002430
H. Peter Anvine2c80182005-01-15 22:15:51 +00002431 case PP_ENDM:
2432 case PP_ENDMACRO:
2433 if (!defining) {
2434 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2435 return DIRECTIVE_FOUND;
2436 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07002437 mmhead = (MMacro **) hash_findi_add(&mmacros, defining->name);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002438 defining->next = *mmhead;
2439 *mmhead = defining;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002440 defining = NULL;
2441 free_tlist(origline);
2442 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002443
H. Peter Anvine2c80182005-01-15 22:15:51 +00002444 case PP_ROTATE:
2445 if (tline->next && tline->next->type == TOK_WHITESPACE)
2446 tline = tline->next;
2447 if (tline->next == NULL) {
2448 free_tlist(origline);
2449 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
2450 return DIRECTIVE_FOUND;
2451 }
2452 t = expand_smacro(tline->next);
2453 tline->next = NULL;
2454 free_tlist(origline);
2455 tline = t;
2456 tptr = &t;
2457 tokval.t_type = TOKEN_INVALID;
2458 evalresult =
2459 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2460 free_tlist(tline);
2461 if (!evalresult)
2462 return DIRECTIVE_FOUND;
2463 if (tokval.t_type)
2464 error(ERR_WARNING,
2465 "trailing garbage after expression ignored");
2466 if (!is_simple(evalresult)) {
2467 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
2468 return DIRECTIVE_FOUND;
2469 }
2470 mmac = istk->mstk;
2471 while (mmac && !mmac->name) /* avoid mistaking %reps for macros */
2472 mmac = mmac->next_active;
2473 if (!mmac) {
2474 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
2475 } else if (mmac->nparam == 0) {
2476 error(ERR_NONFATAL,
2477 "`%%rotate' invoked within macro without parameters");
2478 } else {
H. Peter Anvin25a99342007-09-22 17:45:45 -07002479 int rotate = mmac->rotate + reloc_value(evalresult);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002480
H. Peter Anvin25a99342007-09-22 17:45:45 -07002481 rotate %= (int)mmac->nparam;
2482 if (rotate < 0)
2483 rotate += mmac->nparam;
H. Peter Anvin70653092007-10-19 14:42:29 -07002484
H. Peter Anvin25a99342007-09-22 17:45:45 -07002485 mmac->rotate = rotate;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002486 }
2487 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002488
H. Peter Anvine2c80182005-01-15 22:15:51 +00002489 case PP_REP:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002490 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002491 do {
2492 tline = tline->next;
2493 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002494
H. Peter Anvine2c80182005-01-15 22:15:51 +00002495 if (tok_type_(tline, TOK_ID) &&
2496 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002497 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002498 do {
2499 tline = tline->next;
2500 } while (tok_type_(tline, TOK_WHITESPACE));
2501 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002502
H. Peter Anvine2c80182005-01-15 22:15:51 +00002503 if (tline) {
2504 t = expand_smacro(tline);
2505 tptr = &t;
2506 tokval.t_type = TOKEN_INVALID;
2507 evalresult =
2508 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2509 if (!evalresult) {
2510 free_tlist(origline);
2511 return DIRECTIVE_FOUND;
2512 }
2513 if (tokval.t_type)
2514 error(ERR_WARNING,
2515 "trailing garbage after expression ignored");
2516 if (!is_simple(evalresult)) {
2517 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
2518 return DIRECTIVE_FOUND;
2519 }
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002520 count = reloc_value(evalresult) + 1;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002521 } else {
2522 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002523 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002524 }
2525 free_tlist(origline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002526
H. Peter Anvine2c80182005-01-15 22:15:51 +00002527 tmp_defining = defining;
2528 defining = nasm_malloc(sizeof(MMacro));
2529 defining->name = NULL; /* flags this macro as a %rep block */
H. Peter Anvin70055962007-10-11 00:05:31 -07002530 defining->casesense = false;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002531 defining->plus = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002532 defining->nolist = nolist;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002533 defining->in_progress = count;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002534 defining->nparam_min = defining->nparam_max = 0;
2535 defining->defaults = NULL;
2536 defining->dlist = NULL;
2537 defining->expansion = NULL;
2538 defining->next_active = istk->mstk;
2539 defining->rep_nest = tmp_defining;
2540 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002541
H. Peter Anvine2c80182005-01-15 22:15:51 +00002542 case PP_ENDREP:
2543 if (!defining || defining->name) {
2544 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
2545 return DIRECTIVE_FOUND;
2546 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002547
H. Peter Anvine2c80182005-01-15 22:15:51 +00002548 /*
2549 * Now we have a "macro" defined - although it has no name
2550 * and we won't be entering it in the hash tables - we must
2551 * push a macro-end marker for it on to istk->expansion.
2552 * After that, it will take care of propagating itself (a
2553 * macro-end marker line for a macro which is really a %rep
2554 * block will cause the macro to be re-expanded, complete
2555 * with another macro-end marker to ensure the process
2556 * continues) until the whole expansion is forcibly removed
2557 * from istk->expansion by a %exitrep.
2558 */
2559 l = nasm_malloc(sizeof(Line));
2560 l->next = istk->expansion;
2561 l->finishes = defining;
2562 l->first = NULL;
2563 istk->expansion = l;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002564
H. Peter Anvine2c80182005-01-15 22:15:51 +00002565 istk->mstk = defining;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002566
H. Peter Anvine2c80182005-01-15 22:15:51 +00002567 list->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
2568 tmp_defining = defining;
2569 defining = defining->rep_nest;
2570 free_tlist(origline);
2571 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002572
H. Peter Anvine2c80182005-01-15 22:15:51 +00002573 case PP_EXITREP:
2574 /*
2575 * We must search along istk->expansion until we hit a
2576 * macro-end marker for a macro with no name. Then we set
2577 * its `in_progress' flag to 0.
2578 */
2579 for (l = istk->expansion; l; l = l->next)
2580 if (l->finishes && !l->finishes->name)
2581 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002582
H. Peter Anvine2c80182005-01-15 22:15:51 +00002583 if (l)
2584 l->finishes->in_progress = 0;
2585 else
2586 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
2587 free_tlist(origline);
2588 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002589
H. Peter Anvine2c80182005-01-15 22:15:51 +00002590 case PP_XDEFINE:
2591 case PP_IXDEFINE:
2592 case PP_DEFINE:
2593 case PP_IDEFINE:
H. Peter Anvin95e7f952007-10-11 13:38:38 -07002594 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002595
H. Peter Anvine2c80182005-01-15 22:15:51 +00002596 tline = tline->next;
2597 skip_white_(tline);
2598 tline = expand_id(tline);
2599 if (!tline || (tline->type != TOK_ID &&
2600 (tline->type != TOK_PREPROC_ID ||
2601 tline->text[1] != '$'))) {
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002602 error(ERR_NONFATAL, "`%s' expects a macro identifier",
2603 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002604 free_tlist(origline);
2605 return DIRECTIVE_FOUND;
2606 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002607
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002608 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002609
H. Peter Anvine2c80182005-01-15 22:15:51 +00002610 mname = tline->text;
2611 last = tline;
2612 param_start = tline = tline->next;
2613 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002614
H. Peter Anvine2c80182005-01-15 22:15:51 +00002615 /* Expand the macro definition now for %xdefine and %ixdefine */
2616 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
2617 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002618
H. Peter Anvine2c80182005-01-15 22:15:51 +00002619 if (tok_is_(tline, "(")) {
2620 /*
2621 * This macro has parameters.
2622 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00002623
H. Peter Anvine2c80182005-01-15 22:15:51 +00002624 tline = tline->next;
2625 while (1) {
2626 skip_white_(tline);
2627 if (!tline) {
2628 error(ERR_NONFATAL, "parameter identifier expected");
2629 free_tlist(origline);
2630 return DIRECTIVE_FOUND;
2631 }
2632 if (tline->type != TOK_ID) {
2633 error(ERR_NONFATAL,
2634 "`%s': parameter identifier expected",
2635 tline->text);
2636 free_tlist(origline);
2637 return DIRECTIVE_FOUND;
2638 }
2639 tline->type = TOK_SMAC_PARAM + nparam++;
2640 tline = tline->next;
2641 skip_white_(tline);
2642 if (tok_is_(tline, ",")) {
2643 tline = tline->next;
2644 continue;
2645 }
2646 if (!tok_is_(tline, ")")) {
2647 error(ERR_NONFATAL,
2648 "`)' expected to terminate macro template");
2649 free_tlist(origline);
2650 return DIRECTIVE_FOUND;
2651 }
2652 break;
2653 }
2654 last = tline;
2655 tline = tline->next;
2656 }
2657 if (tok_type_(tline, TOK_WHITESPACE))
2658 last = tline, tline = tline->next;
2659 macro_start = NULL;
2660 last->next = NULL;
2661 t = tline;
2662 while (t) {
2663 if (t->type == TOK_ID) {
2664 for (tt = param_start; tt; tt = tt->next)
2665 if (tt->type >= TOK_SMAC_PARAM &&
2666 !strcmp(tt->text, t->text))
2667 t->type = tt->type;
2668 }
2669 tt = t->next;
2670 t->next = macro_start;
2671 macro_start = t;
2672 t = tt;
2673 }
2674 /*
2675 * Good. We now have a macro name, a parameter count, and a
2676 * token list (in reverse order) for an expansion. We ought
2677 * to be OK just to create an SMacro, store it, and let
2678 * free_tlist have the rest of the line (which we have
2679 * carefully re-terminated after chopping off the expansion
2680 * from the end).
2681 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002682 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002683 free_tlist(origline);
2684 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002685
H. Peter Anvine2c80182005-01-15 22:15:51 +00002686 case PP_UNDEF:
2687 tline = tline->next;
2688 skip_white_(tline);
2689 tline = expand_id(tline);
2690 if (!tline || (tline->type != TOK_ID &&
2691 (tline->type != TOK_PREPROC_ID ||
2692 tline->text[1] != '$'))) {
2693 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
2694 free_tlist(origline);
2695 return DIRECTIVE_FOUND;
2696 }
2697 if (tline->next) {
2698 error(ERR_WARNING,
2699 "trailing garbage after macro name ignored");
2700 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002701
H. Peter Anvine2c80182005-01-15 22:15:51 +00002702 /* Find the context that symbol belongs to */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002703 ctx = get_ctx(tline->text, false);
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002704 undef_smacro(ctx, tline->text);
2705 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002706 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002707
H. Peter Anvin9e200162008-06-04 17:23:14 -07002708 case PP_DEFSTR:
2709 case PP_IDEFSTR:
2710 casesense = (i == PP_DEFSTR);
2711
2712 tline = tline->next;
2713 skip_white_(tline);
2714 tline = expand_id(tline);
2715 if (!tline || (tline->type != TOK_ID &&
2716 (tline->type != TOK_PREPROC_ID ||
2717 tline->text[1] != '$'))) {
2718 error(ERR_NONFATAL, "`%s' expects a macro identifier",
2719 pp_directives[i]);
2720 free_tlist(origline);
2721 return DIRECTIVE_FOUND;
2722 }
2723
2724 ctx = get_ctx(tline->text, false);
2725
2726 mname = tline->text;
2727 last = tline;
2728 tline = expand_smacro(tline->next);
2729 last->next = NULL;
2730
2731 while (tok_type_(tline, TOK_WHITESPACE))
2732 tline = delete_Token(tline);
2733
2734 p = detoken(tline, false);
2735 macro_start = nasm_malloc(sizeof(*macro_start));
2736 macro_start->next = NULL;
2737 macro_start->text = nasm_quote(p, strlen(p));
2738 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002739 macro_start->a.mac = NULL;
H. Peter Anvin9e200162008-06-04 17:23:14 -07002740 nasm_free(p);
2741
2742 /*
2743 * We now have a macro name, an implicit parameter count of
2744 * zero, and a string token to use as an expansion. Create
2745 * and store an SMacro.
2746 */
2747 define_smacro(ctx, mname, casesense, 0, macro_start);
2748 free_tlist(origline);
2749 return DIRECTIVE_FOUND;
2750
H. Peter Anvin418ca702008-05-30 10:42:30 -07002751 case PP_PATHSEARCH:
2752 {
2753 FILE *fp;
2754 StrList *xsl = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002755 StrList **xst = &xsl;
H. Peter Anvin418ca702008-05-30 10:42:30 -07002756
2757 casesense = true;
2758
2759 tline = tline->next;
2760 skip_white_(tline);
2761 tline = expand_id(tline);
2762 if (!tline || (tline->type != TOK_ID &&
2763 (tline->type != TOK_PREPROC_ID ||
2764 tline->text[1] != '$'))) {
2765 error(ERR_NONFATAL,
2766 "`%%pathsearch' expects a macro identifier as first parameter");
2767 free_tlist(origline);
2768 return DIRECTIVE_FOUND;
2769 }
2770 ctx = get_ctx(tline->text, false);
2771
2772 mname = tline->text;
2773 last = tline;
2774 tline = expand_smacro(tline->next);
2775 last->next = NULL;
2776
2777 t = tline;
2778 while (tok_type_(t, TOK_WHITESPACE))
2779 t = t->next;
2780
2781 if (!t || (t->type != TOK_STRING &&
2782 t->type != TOK_INTERNAL_STRING)) {
2783 error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
2784 free_tlist(tline);
2785 free_tlist(origline);
2786 return DIRECTIVE_FOUND; /* but we did _something_ */
2787 }
2788 if (t->next)
2789 error(ERR_WARNING,
2790 "trailing garbage after `%%pathsearch' ignored");
H. Peter Anvin427cc912008-06-01 21:43:03 -07002791 p = t->text;
2792 if (t->type != TOK_INTERNAL_STRING)
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002793 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002794
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002795 fp = inc_fopen(p, &xsl, &xst, true);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002796 if (fp) {
2797 p = xsl->str;
2798 fclose(fp); /* Don't actually care about the file */
2799 }
2800 macro_start = nasm_malloc(sizeof(*macro_start));
2801 macro_start->next = NULL;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002802 macro_start->text = nasm_quote(p, strlen(p));
H. Peter Anvin418ca702008-05-30 10:42:30 -07002803 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002804 macro_start->a.mac = NULL;
H. Peter Anvin418ca702008-05-30 10:42:30 -07002805 if (xsl)
2806 nasm_free(xsl);
2807
2808 /*
2809 * We now have a macro name, an implicit parameter count of
2810 * zero, and a string token to use as an expansion. Create
2811 * and store an SMacro.
2812 */
2813 define_smacro(ctx, mname, casesense, 0, macro_start);
2814 free_tlist(tline);
2815 free_tlist(origline);
2816 return DIRECTIVE_FOUND;
2817 }
2818
H. Peter Anvine2c80182005-01-15 22:15:51 +00002819 case PP_STRLEN:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002820 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07002821
H. Peter Anvine2c80182005-01-15 22:15:51 +00002822 tline = tline->next;
2823 skip_white_(tline);
2824 tline = expand_id(tline);
2825 if (!tline || (tline->type != TOK_ID &&
2826 (tline->type != TOK_PREPROC_ID ||
2827 tline->text[1] != '$'))) {
2828 error(ERR_NONFATAL,
2829 "`%%strlen' expects a macro identifier as first parameter");
2830 free_tlist(origline);
2831 return DIRECTIVE_FOUND;
2832 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002833 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002834
H. Peter Anvine2c80182005-01-15 22:15:51 +00002835 mname = tline->text;
2836 last = tline;
2837 tline = expand_smacro(tline->next);
2838 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002839
H. Peter Anvine2c80182005-01-15 22:15:51 +00002840 t = tline;
2841 while (tok_type_(t, TOK_WHITESPACE))
2842 t = t->next;
2843 /* t should now point to the string */
2844 if (t->type != TOK_STRING) {
2845 error(ERR_NONFATAL,
2846 "`%%strlen` requires string as second parameter");
2847 free_tlist(tline);
2848 free_tlist(origline);
2849 return DIRECTIVE_FOUND;
2850 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002851
H. Peter Anvine2c80182005-01-15 22:15:51 +00002852 macro_start = nasm_malloc(sizeof(*macro_start));
2853 macro_start->next = NULL;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002854 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002855 macro_start->a.mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002856
H. Peter Anvine2c80182005-01-15 22:15:51 +00002857 /*
2858 * We now have a macro name, an implicit parameter count of
2859 * zero, and a numeric token to use as an expansion. Create
2860 * and store an SMacro.
2861 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002862 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002863 free_tlist(tline);
2864 free_tlist(origline);
2865 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002866
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002867 case PP_STRCAT:
2868 casesense = true;
2869
2870 tline = tline->next;
2871 skip_white_(tline);
2872 tline = expand_id(tline);
2873 if (!tline || (tline->type != TOK_ID &&
2874 (tline->type != TOK_PREPROC_ID ||
2875 tline->text[1] != '$'))) {
2876 error(ERR_NONFATAL,
2877 "`%%strcat' expects a macro identifier as first parameter");
2878 free_tlist(origline);
2879 return DIRECTIVE_FOUND;
2880 }
2881 ctx = get_ctx(tline->text, false);
2882
2883 mname = tline->text;
2884 last = tline;
2885 tline = expand_smacro(tline->next);
2886 last->next = NULL;
2887
2888 len = 0;
2889 for (t = tline; t; t = t->next) {
2890 switch (t->type) {
2891 case TOK_WHITESPACE:
2892 break;
2893 case TOK_STRING:
2894 len += t->a.len = nasm_unquote(t->text, NULL);
2895 break;
H. Peter Anvinaccf4332008-07-01 21:42:08 -07002896 case TOK_OTHER:
2897 if (!strcmp(t->text, ",")) /* permit comma separators */
2898 break;
2899 /* else fall through */
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002900 default:
2901 error(ERR_NONFATAL,
2902 "non-string passed to `%%strcat' (%d)", t->type);
2903 free_tlist(tline);
2904 free_tlist(origline);
2905 return DIRECTIVE_FOUND;
2906 }
2907 }
2908
2909 p = pp = nasm_malloc(len);
2910 t = tline;
2911 for (t = tline; t; t = t->next) {
2912 if (t->type == TOK_STRING) {
2913 memcpy(p, t->text, t->a.len);
2914 p += t->a.len;
2915 }
2916 }
2917
2918 /*
2919 * We now have a macro name, an implicit parameter count of
2920 * zero, and a numeric token to use as an expansion. Create
2921 * and store an SMacro.
2922 */
2923 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
2924 macro_start->text = nasm_quote(pp, len);
2925 nasm_free(pp);
2926 define_smacro(ctx, mname, casesense, 0, macro_start);
2927 free_tlist(tline);
2928 free_tlist(origline);
2929 return DIRECTIVE_FOUND;
2930
H. Peter Anvine2c80182005-01-15 22:15:51 +00002931 case PP_SUBSTR:
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002932 {
2933 int64_t a1, a2;
2934 size_t len;
H. Peter Anvind2456592008-06-19 15:04:18 -07002935
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002936 casesense = true;
2937
H. Peter Anvine2c80182005-01-15 22:15:51 +00002938 tline = tline->next;
2939 skip_white_(tline);
2940 tline = expand_id(tline);
2941 if (!tline || (tline->type != TOK_ID &&
2942 (tline->type != TOK_PREPROC_ID ||
2943 tline->text[1] != '$'))) {
2944 error(ERR_NONFATAL,
2945 "`%%substr' expects a macro identifier as first parameter");
2946 free_tlist(origline);
2947 return DIRECTIVE_FOUND;
2948 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002949 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002950
H. Peter Anvine2c80182005-01-15 22:15:51 +00002951 mname = tline->text;
2952 last = tline;
2953 tline = expand_smacro(tline->next);
2954 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002955
H. Peter Anvine2c80182005-01-15 22:15:51 +00002956 t = tline->next;
2957 while (tok_type_(t, TOK_WHITESPACE))
2958 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002959
H. Peter Anvine2c80182005-01-15 22:15:51 +00002960 /* t should now point to the string */
2961 if (t->type != TOK_STRING) {
2962 error(ERR_NONFATAL,
2963 "`%%substr` requires string as second parameter");
2964 free_tlist(tline);
2965 free_tlist(origline);
2966 return DIRECTIVE_FOUND;
2967 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002968
H. Peter Anvine2c80182005-01-15 22:15:51 +00002969 tt = t->next;
2970 tptr = &tt;
2971 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002972 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
2973 pass, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002974 if (!evalresult) {
2975 free_tlist(tline);
2976 free_tlist(origline);
2977 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002978 } else if (!is_simple(evalresult)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002979 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
2980 free_tlist(tline);
2981 free_tlist(origline);
2982 return DIRECTIVE_FOUND;
2983 }
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002984 a1 = evalresult->value-1;
2985
2986 while (tok_type_(tt, TOK_WHITESPACE))
2987 tt = tt->next;
2988 if (!tt) {
2989 a2 = 1; /* Backwards compatibility: one character */
2990 } else {
2991 tokval.t_type = TOKEN_INVALID;
2992 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
2993 pass, error, NULL);
2994 if (!evalresult) {
2995 free_tlist(tline);
2996 free_tlist(origline);
2997 return DIRECTIVE_FOUND;
2998 } else if (!is_simple(evalresult)) {
2999 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3000 free_tlist(tline);
3001 free_tlist(origline);
3002 return DIRECTIVE_FOUND;
3003 }
3004 a2 = evalresult->value;
3005 }
3006
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003007 len = nasm_unquote(t->text, NULL);
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003008 if (a2 < 0)
3009 a2 = a2+1+len-a1;
3010 if (a1+a2 > (int64_t)len)
3011 a2 = len-a1;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003012
H. Peter Anvine2c80182005-01-15 22:15:51 +00003013 macro_start = nasm_malloc(sizeof(*macro_start));
3014 macro_start->next = NULL;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003015 macro_start->text = nasm_quote((a1 < 0) ? "" : t->text+a1, a2);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003016 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003017 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003018
H. Peter Anvine2c80182005-01-15 22:15:51 +00003019 /*
3020 * We now have a macro name, an implicit parameter count of
3021 * zero, and a numeric token to use as an expansion. Create
3022 * and store an SMacro.
3023 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003024 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003025 free_tlist(tline);
3026 free_tlist(origline);
3027 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003028 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003029
H. Peter Anvine2c80182005-01-15 22:15:51 +00003030 case PP_ASSIGN:
3031 case PP_IASSIGN:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003032 casesense = (i == PP_ASSIGN);
3033
H. Peter Anvine2c80182005-01-15 22:15:51 +00003034 tline = tline->next;
3035 skip_white_(tline);
3036 tline = expand_id(tline);
3037 if (!tline || (tline->type != TOK_ID &&
3038 (tline->type != TOK_PREPROC_ID ||
3039 tline->text[1] != '$'))) {
3040 error(ERR_NONFATAL,
3041 "`%%%sassign' expects a macro identifier",
3042 (i == PP_IASSIGN ? "i" : ""));
3043 free_tlist(origline);
3044 return DIRECTIVE_FOUND;
3045 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003046 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07003047
H. Peter Anvine2c80182005-01-15 22:15:51 +00003048 mname = tline->text;
3049 last = tline;
3050 tline = expand_smacro(tline->next);
3051 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003052
H. Peter Anvine2c80182005-01-15 22:15:51 +00003053 t = tline;
3054 tptr = &t;
3055 tokval.t_type = TOKEN_INVALID;
3056 evalresult =
3057 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3058 free_tlist(tline);
3059 if (!evalresult) {
3060 free_tlist(origline);
3061 return DIRECTIVE_FOUND;
3062 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003063
H. Peter Anvine2c80182005-01-15 22:15:51 +00003064 if (tokval.t_type)
3065 error(ERR_WARNING,
3066 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00003067
H. Peter Anvine2c80182005-01-15 22:15:51 +00003068 if (!is_simple(evalresult)) {
3069 error(ERR_NONFATAL,
3070 "non-constant value given to `%%%sassign'",
3071 (i == PP_IASSIGN ? "i" : ""));
3072 free_tlist(origline);
3073 return DIRECTIVE_FOUND;
3074 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003075
H. Peter Anvine2c80182005-01-15 22:15:51 +00003076 macro_start = nasm_malloc(sizeof(*macro_start));
3077 macro_start->next = NULL;
3078 make_tok_num(macro_start, reloc_value(evalresult));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003079 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003080
H. Peter Anvine2c80182005-01-15 22:15:51 +00003081 /*
3082 * We now have a macro name, an implicit parameter count of
3083 * zero, and a numeric token to use as an expansion. Create
3084 * and store an SMacro.
3085 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003086 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003087 free_tlist(origline);
3088 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003089
H. Peter Anvine2c80182005-01-15 22:15:51 +00003090 case PP_LINE:
3091 /*
3092 * Syntax is `%line nnn[+mmm] [filename]'
3093 */
3094 tline = tline->next;
3095 skip_white_(tline);
3096 if (!tok_type_(tline, TOK_NUMBER)) {
3097 error(ERR_NONFATAL, "`%%line' expects line number");
3098 free_tlist(origline);
3099 return DIRECTIVE_FOUND;
3100 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003101 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003102 m = 1;
3103 tline = tline->next;
3104 if (tok_is_(tline, "+")) {
3105 tline = tline->next;
3106 if (!tok_type_(tline, TOK_NUMBER)) {
3107 error(ERR_NONFATAL, "`%%line' expects line increment");
3108 free_tlist(origline);
3109 return DIRECTIVE_FOUND;
3110 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003111 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003112 tline = tline->next;
3113 }
3114 skip_white_(tline);
3115 src_set_linnum(k);
3116 istk->lineinc = m;
3117 if (tline) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003118 nasm_free(src_set_fname(detoken(tline, false)));
H. Peter Anvine2c80182005-01-15 22:15:51 +00003119 }
3120 free_tlist(origline);
3121 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003122
H. Peter Anvine2c80182005-01-15 22:15:51 +00003123 default:
3124 error(ERR_FATAL,
3125 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00003126 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003127 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003128 }
Ed Beroset3ab3f412002-06-11 03:31:49 +00003129 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003130}
3131
3132/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00003133 * Ensure that a macro parameter contains a condition code and
3134 * nothing else. Return the condition code index if so, or -1
3135 * otherwise.
3136 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003137static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003138{
H. Peter Anvin76690a12002-04-30 20:52:49 +00003139 Token *tt;
3140 int i, j, k, m;
3141
H. Peter Anvin25a99342007-09-22 17:45:45 -07003142 if (!t)
3143 return -1; /* Probably a %+ without a space */
3144
H. Peter Anvineba20a72002-04-30 20:53:55 +00003145 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003146 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003147 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003148 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003149 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003150 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003151 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003152
3153 i = -1;
Ed Beroset3ab3f412002-06-11 03:31:49 +00003154 j = elements(conditions);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003155 while (j - i > 1) {
3156 k = (j + i) / 2;
3157 m = nasm_stricmp(t->text, conditions[k]);
3158 if (m == 0) {
3159 i = k;
3160 j = -2;
3161 break;
3162 } else if (m < 0) {
3163 j = k;
3164 } else
3165 i = k;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003166 }
3167 if (j != -2)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003168 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003169 return i;
3170}
3171
3172/*
3173 * Expand MMacro-local things: parameter references (%0, %n, %+n,
3174 * %-n) and MMacro-local identifiers (%%foo).
3175 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003176static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003177{
H. Peter Anvin734b1882002-04-30 21:01:08 +00003178 Token *t, *tt, **tail, *thead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003179
3180 tail = &thead;
3181 thead = NULL;
3182
H. Peter Anvine2c80182005-01-15 22:15:51 +00003183 while (tline) {
3184 if (tline->type == TOK_PREPROC_ID &&
3185 (((tline->text[1] == '+' || tline->text[1] == '-')
3186 && tline->text[2]) || tline->text[1] == '%'
3187 || (tline->text[1] >= '0' && tline->text[1] <= '9'))) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003188 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003189 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003190 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07003191 unsigned int n;
3192 int i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003193 MMacro *mac;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003194
H. Peter Anvine2c80182005-01-15 22:15:51 +00003195 t = tline;
3196 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003197
H. Peter Anvine2c80182005-01-15 22:15:51 +00003198 mac = istk->mstk;
3199 while (mac && !mac->name) /* avoid mistaking %reps for macros */
3200 mac = mac->next_active;
3201 if (!mac)
3202 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
3203 else
3204 switch (t->text[1]) {
3205 /*
3206 * We have to make a substitution of one of the
3207 * forms %1, %-1, %+1, %%foo, %0.
3208 */
3209 case '0':
3210 type = TOK_NUMBER;
3211 snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam);
3212 text = nasm_strdup(tmpbuf);
3213 break;
3214 case '%':
3215 type = TOK_ID;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07003216 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
H. Peter Anvine2c80182005-01-15 22:15:51 +00003217 mac->unique);
3218 text = nasm_strcat(tmpbuf, t->text + 2);
3219 break;
3220 case '-':
3221 n = atoi(t->text + 2) - 1;
3222 if (n >= mac->nparam)
3223 tt = NULL;
3224 else {
3225 if (mac->nparam > 1)
3226 n = (n + mac->rotate) % mac->nparam;
3227 tt = mac->params[n];
3228 }
3229 cc = find_cc(tt);
3230 if (cc == -1) {
3231 error(ERR_NONFATAL,
3232 "macro parameter %d is not a condition code",
3233 n + 1);
3234 text = NULL;
3235 } else {
3236 type = TOK_ID;
3237 if (inverse_ccs[cc] == -1) {
3238 error(ERR_NONFATAL,
3239 "condition code `%s' is not invertible",
3240 conditions[cc]);
3241 text = NULL;
3242 } else
3243 text =
3244 nasm_strdup(conditions[inverse_ccs[cc]]);
3245 }
3246 break;
3247 case '+':
3248 n = atoi(t->text + 2) - 1;
3249 if (n >= mac->nparam)
3250 tt = NULL;
3251 else {
3252 if (mac->nparam > 1)
3253 n = (n + mac->rotate) % mac->nparam;
3254 tt = mac->params[n];
3255 }
3256 cc = find_cc(tt);
3257 if (cc == -1) {
3258 error(ERR_NONFATAL,
3259 "macro parameter %d is not a condition code",
3260 n + 1);
3261 text = NULL;
3262 } else {
3263 type = TOK_ID;
3264 text = nasm_strdup(conditions[cc]);
3265 }
3266 break;
3267 default:
3268 n = atoi(t->text + 1) - 1;
3269 if (n >= mac->nparam)
3270 tt = NULL;
3271 else {
3272 if (mac->nparam > 1)
3273 n = (n + mac->rotate) % mac->nparam;
3274 tt = mac->params[n];
3275 }
3276 if (tt) {
3277 for (i = 0; i < mac->paramlen[n]; i++) {
3278 *tail = new_Token(NULL, tt->type, tt->text, 0);
3279 tail = &(*tail)->next;
3280 tt = tt->next;
3281 }
3282 }
3283 text = NULL; /* we've done it here */
3284 break;
3285 }
3286 if (!text) {
3287 delete_Token(t);
3288 } else {
3289 *tail = t;
3290 tail = &t->next;
3291 t->type = type;
3292 nasm_free(t->text);
3293 t->text = text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003294 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003295 }
3296 continue;
3297 } else {
3298 t = *tail = tline;
3299 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003300 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003301 tail = &t->next;
3302 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00003303 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00003304 *tail = NULL;
3305 t = thead;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003306 for (; t && (tt = t->next) != NULL; t = t->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003307 switch (t->type) {
3308 case TOK_WHITESPACE:
3309 if (tt->type == TOK_WHITESPACE) {
3310 t->next = delete_Token(tt);
3311 }
3312 break;
3313 case TOK_ID:
3314 if (tt->type == TOK_ID || tt->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003315 char *tmp = nasm_strcat(t->text, tt->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003316 nasm_free(t->text);
3317 t->text = tmp;
3318 t->next = delete_Token(tt);
3319 }
3320 break;
3321 case TOK_NUMBER:
3322 if (tt->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003323 char *tmp = nasm_strcat(t->text, tt->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003324 nasm_free(t->text);
3325 t->text = tmp;
3326 t->next = delete_Token(tt);
3327 }
3328 break;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00003329 default:
3330 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003331 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003332
H. Peter Anvin76690a12002-04-30 20:52:49 +00003333 return thead;
3334}
3335
3336/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003337 * Expand all single-line macro calls made in the given line.
3338 * Return the expanded version of the line. The original is deemed
3339 * to be destroyed in the process. (In reality we'll just move
3340 * Tokens from input to output a lot of the time, rather than
3341 * actually bothering to destroy and replicate.)
3342 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003343#define DEADMAN_LIMIT (1 << 20)
3344
H. Peter Anvine2c80182005-01-15 22:15:51 +00003345static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003346{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003347 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07003348 struct hash_table *smtbl;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003349 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003350 Token **params;
3351 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07003352 unsigned int nparam, sparam;
3353 int brackets, rescan;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003354 Token *org_tline = tline;
3355 Context *ctx;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003356 char *mname;
H. Peter Anvin2a15e692007-11-19 13:14:59 -08003357 int deadman = DEADMAN_LIMIT;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003358
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003359 /*
3360 * Trick: we should avoid changing the start token pointer since it can
3361 * be contained in "next" field of other token. Because of this
3362 * we allocate a copy of first token and work with it; at the end of
3363 * routine we copy it back
3364 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003365 if (org_tline) {
3366 tline =
3367 new_Token(org_tline->next, org_tline->type, org_tline->text,
3368 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003369 tline->a.mac = org_tline->a.mac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003370 nasm_free(org_tline->text);
3371 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003372 }
3373
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003374again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003375 tail = &thead;
3376 thead = NULL;
3377
H. Peter Anvine2c80182005-01-15 22:15:51 +00003378 while (tline) { /* main token loop */
H. Peter Anvin2a15e692007-11-19 13:14:59 -08003379 if (!--deadman) {
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003380 error(ERR_NONFATAL, "interminable macro recursion");
3381 break;
3382 }
3383
H. Peter Anvine2c80182005-01-15 22:15:51 +00003384 if ((mname = tline->text)) {
3385 /* if this token is a local macro, look in local context */
H. Peter Anvinb037a672008-05-29 19:08:08 -07003386 ctx = NULL;
3387 smtbl = &smacros;
H. Peter Anvin166c2472008-05-28 12:28:58 -07003388 if (tline->type == TOK_ID || tline->type == TOK_PREPROC_ID) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003389 ctx = get_ctx(mname, true);
H. Peter Anvinb037a672008-05-29 19:08:08 -07003390 if (ctx)
3391 smtbl = &ctx->localmac;
H. Peter Anvin166c2472008-05-28 12:28:58 -07003392 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07003393 head = (SMacro *) hash_findix(smtbl, mname);
H. Peter Anvin072771e2008-05-22 13:17:51 -07003394
H. Peter Anvine2c80182005-01-15 22:15:51 +00003395 /*
3396 * We've hit an identifier. As in is_mmacro below, we first
3397 * check whether the identifier is a single-line macro at
3398 * all, then think about checking for parameters if
3399 * necessary.
3400 */
H. Peter Anvin97a23472007-09-16 17:57:25 -07003401 for (m = head; m; m = m->next)
3402 if (!mstrcmp(m->name, mname, m->casesense))
3403 break;
3404 if (m) {
3405 mstart = tline;
3406 params = NULL;
3407 paramsize = NULL;
3408 if (m->nparam == 0) {
3409 /*
3410 * Simple case: the macro is parameterless. Discard the
3411 * one token that the macro call took, and push the
3412 * expansion back on the to-do stack.
3413 */
3414 if (!m->expansion) {
3415 if (!strcmp("__FILE__", m->name)) {
3416 int32_t num = 0;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003417 char *file;
3418 src_get(&num, &file);
3419 tline->text = nasm_quote(file, strlen(file));
H. Peter Anvin97a23472007-09-16 17:57:25 -07003420 tline->type = TOK_STRING;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003421 nasm_free(file);
H. Peter Anvin97a23472007-09-16 17:57:25 -07003422 continue;
3423 }
3424 if (!strcmp("__LINE__", m->name)) {
3425 nasm_free(tline->text);
3426 make_tok_num(tline, src_get_linnum());
3427 continue;
3428 }
3429 if (!strcmp("__BITS__", m->name)) {
3430 nasm_free(tline->text);
3431 make_tok_num(tline, globalbits);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003432 continue;
H. Peter Anvin97a23472007-09-16 17:57:25 -07003433 }
3434 tline = delete_Token(tline);
3435 continue;
3436 }
3437 } else {
3438 /*
3439 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00003440 * exists and takes parameters. We must find the
3441 * parameters in the call, count them, find the SMacro
3442 * that corresponds to that form of the macro call, and
3443 * substitute for the parameters when we expand. What a
3444 * pain.
3445 */
3446 /*tline = tline->next;
3447 skip_white_(tline); */
3448 do {
3449 t = tline->next;
3450 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003451 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003452 t->text = NULL;
3453 t = tline->next = delete_Token(t);
3454 }
3455 tline = t;
3456 } while (tok_type_(tline, TOK_WHITESPACE));
3457 if (!tok_is_(tline, "(")) {
3458 /*
3459 * This macro wasn't called with parameters: ignore
3460 * the call. (Behaviour borrowed from gnu cpp.)
3461 */
3462 tline = mstart;
3463 m = NULL;
3464 } else {
3465 int paren = 0;
3466 int white = 0;
3467 brackets = 0;
3468 nparam = 0;
3469 sparam = PARAM_DELTA;
3470 params = nasm_malloc(sparam * sizeof(Token *));
3471 params[0] = tline->next;
3472 paramsize = nasm_malloc(sparam * sizeof(int));
3473 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003474 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003475 /*
3476 * For some unusual expansions
3477 * which concatenates function call
3478 */
3479 t = tline->next;
3480 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003481 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003482 t->text = NULL;
3483 t = tline->next = delete_Token(t);
3484 }
3485 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003486
H. Peter Anvine2c80182005-01-15 22:15:51 +00003487 if (!tline) {
3488 error(ERR_NONFATAL,
3489 "macro call expects terminating `)'");
3490 break;
3491 }
3492 if (tline->type == TOK_WHITESPACE
3493 && brackets <= 0) {
3494 if (paramsize[nparam])
3495 white++;
3496 else
3497 params[nparam] = tline->next;
3498 continue; /* parameter loop */
3499 }
3500 if (tline->type == TOK_OTHER
3501 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003502 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00003503 if (ch == ',' && !paren && brackets <= 0) {
3504 if (++nparam >= sparam) {
3505 sparam += PARAM_DELTA;
3506 params = nasm_realloc(params,
3507 sparam *
3508 sizeof(Token
3509 *));
3510 paramsize =
3511 nasm_realloc(paramsize,
3512 sparam *
3513 sizeof(int));
3514 }
3515 params[nparam] = tline->next;
3516 paramsize[nparam] = 0;
3517 white = 0;
3518 continue; /* parameter loop */
3519 }
3520 if (ch == '{' &&
3521 (brackets > 0 || (brackets == 0 &&
3522 !paramsize[nparam])))
3523 {
3524 if (!(brackets++)) {
3525 params[nparam] = tline->next;
3526 continue; /* parameter loop */
3527 }
3528 }
3529 if (ch == '}' && brackets > 0)
3530 if (--brackets == 0) {
3531 brackets = -1;
3532 continue; /* parameter loop */
3533 }
3534 if (ch == '(' && !brackets)
3535 paren++;
3536 if (ch == ')' && brackets <= 0)
3537 if (--paren < 0)
3538 break;
3539 }
3540 if (brackets < 0) {
3541 brackets = 0;
3542 error(ERR_NONFATAL, "braces do not "
3543 "enclose all of macro parameter");
3544 }
3545 paramsize[nparam] += white + 1;
3546 white = 0;
3547 } /* parameter loop */
3548 nparam++;
3549 while (m && (m->nparam != nparam ||
3550 mstrcmp(m->name, mname,
3551 m->casesense)))
3552 m = m->next;
3553 if (!m)
3554 error(ERR_WARNING | ERR_WARN_MNP,
3555 "macro `%s' exists, "
3556 "but not taking %d parameters",
3557 mstart->text, nparam);
3558 }
3559 }
3560 if (m && m->in_progress)
3561 m = NULL;
3562 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07003563 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00003564 * Design question: should we handle !tline, which
3565 * indicates missing ')' here, or expand those
3566 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07003567 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00003568 */
3569 nasm_free(params);
3570 nasm_free(paramsize);
3571 tline = mstart;
3572 } else {
3573 /*
3574 * Expand the macro: we are placed on the last token of the
3575 * call, so that we can easily split the call from the
3576 * following tokens. We also start by pushing an SMAC_END
3577 * token for the cycle removal.
3578 */
3579 t = tline;
3580 if (t) {
3581 tline = t->next;
3582 t->next = NULL;
3583 }
3584 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003585 tt->a.mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003586 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003587 tline = tt;
3588 for (t = m->expansion; t; t = t->next) {
3589 if (t->type >= TOK_SMAC_PARAM) {
3590 Token *pcopy = tline, **ptail = &pcopy;
3591 Token *ttt, *pt;
3592 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003593
H. Peter Anvine2c80182005-01-15 22:15:51 +00003594 ttt = params[t->type - TOK_SMAC_PARAM];
3595 for (i = paramsize[t->type - TOK_SMAC_PARAM];
3596 --i >= 0;) {
3597 pt = *ptail =
3598 new_Token(tline, ttt->type, ttt->text,
3599 0);
3600 ptail = &pt->next;
3601 ttt = ttt->next;
3602 }
3603 tline = pcopy;
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -07003604 } else if (t->type == TOK_PREPROC_Q) {
3605 tt = new_Token(tline, TOK_ID, mname, 0);
3606 tline = tt;
3607 } else if (t->type == TOK_PREPROC_QQ) {
3608 tt = new_Token(tline, TOK_ID, m->name, 0);
3609 tline = tt;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003610 } else {
3611 tt = new_Token(tline, t->type, t->text, 0);
3612 tline = tt;
3613 }
3614 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003615
H. Peter Anvine2c80182005-01-15 22:15:51 +00003616 /*
3617 * Having done that, get rid of the macro call, and clean
3618 * up the parameters.
3619 */
3620 nasm_free(params);
3621 nasm_free(paramsize);
3622 free_tlist(mstart);
3623 continue; /* main token loop */
3624 }
3625 }
3626 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003627
H. Peter Anvine2c80182005-01-15 22:15:51 +00003628 if (tline->type == TOK_SMAC_END) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003629 tline->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003630 tline = delete_Token(tline);
3631 } else {
3632 t = *tail = tline;
3633 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003634 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003635 t->next = NULL;
3636 tail = &t->next;
3637 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003638 }
3639
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003640 /*
3641 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00003642 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003643 * TOK_IDs should be concatenated.
3644 * Also we look for %+ tokens and concatenate the tokens before and after
3645 * them (without white spaces in between).
3646 */
3647 t = thead;
3648 rescan = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003649 while (t) {
3650 while (t && t->type != TOK_ID && t->type != TOK_PREPROC_ID)
3651 t = t->next;
3652 if (!t || !t->next)
3653 break;
3654 if (t->next->type == TOK_ID ||
3655 t->next->type == TOK_PREPROC_ID ||
3656 t->next->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003657 char *p = nasm_strcat(t->text, t->next->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003658 nasm_free(t->text);
3659 t->next = delete_Token(t->next);
3660 t->text = p;
3661 rescan = 1;
3662 } else if (t->next->type == TOK_WHITESPACE && t->next->next &&
3663 t->next->next->type == TOK_PREPROC_ID &&
3664 strcmp(t->next->next->text, "%+") == 0) {
3665 /* free the next whitespace, the %+ token and next whitespace */
3666 int i;
3667 for (i = 1; i <= 3; i++) {
3668 if (!t->next
3669 || (i != 2 && t->next->type != TOK_WHITESPACE))
3670 break;
3671 t->next = delete_Token(t->next);
3672 } /* endfor */
3673 } else
3674 t = t->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003675 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003676 /* If we concatenaded something, re-scan the line for macros */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003677 if (rescan) {
3678 tline = thead;
3679 goto again;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003680 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003681
H. Peter Anvine2c80182005-01-15 22:15:51 +00003682 if (org_tline) {
3683 if (thead) {
3684 *org_tline = *thead;
3685 /* since we just gave text to org_line, don't free it */
3686 thead->text = NULL;
3687 delete_Token(thead);
3688 } else {
3689 /* the expression expanded to empty line;
3690 we can't return NULL for some reasons
3691 we just set the line to a single WHITESPACE token. */
3692 memset(org_tline, 0, sizeof(*org_tline));
3693 org_tline->text = NULL;
3694 org_tline->type = TOK_WHITESPACE;
3695 }
3696 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003697 }
3698
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003699 return thead;
3700}
3701
3702/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003703 * Similar to expand_smacro but used exclusively with macro identifiers
3704 * right before they are fetched in. The reason is that there can be
3705 * identifiers consisting of several subparts. We consider that if there
3706 * are more than one element forming the name, user wants a expansion,
3707 * otherwise it will be left as-is. Example:
3708 *
3709 * %define %$abc cde
3710 *
3711 * the identifier %$abc will be left as-is so that the handler for %define
3712 * will suck it and define the corresponding value. Other case:
3713 *
3714 * %define _%$abc cde
3715 *
3716 * In this case user wants name to be expanded *before* %define starts
3717 * working, so we'll expand %$abc into something (if it has a value;
3718 * otherwise it will be left as-is) then concatenate all successive
3719 * PP_IDs into one.
3720 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003721static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003722{
3723 Token *cur, *oldnext = NULL;
3724
H. Peter Anvin734b1882002-04-30 21:01:08 +00003725 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003726 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003727
3728 cur = tline;
3729 while (cur->next &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00003730 (cur->next->type == TOK_ID ||
3731 cur->next->type == TOK_PREPROC_ID
3732 || cur->next->type == TOK_NUMBER))
3733 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003734
3735 /* If identifier consists of just one token, don't expand */
3736 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003737 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003738
H. Peter Anvine2c80182005-01-15 22:15:51 +00003739 if (cur) {
3740 oldnext = cur->next; /* Detach the tail past identifier */
3741 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003742 }
3743
H. Peter Anvin734b1882002-04-30 21:01:08 +00003744 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003745
H. Peter Anvine2c80182005-01-15 22:15:51 +00003746 if (cur) {
3747 /* expand_smacro possibly changhed tline; re-scan for EOL */
3748 cur = tline;
3749 while (cur && cur->next)
3750 cur = cur->next;
3751 if (cur)
3752 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003753 }
3754
3755 return tline;
3756}
3757
3758/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003759 * Determine whether the given line constitutes a multi-line macro
3760 * call, and return the MMacro structure called if so. Doesn't have
3761 * to check for an initial label - that's taken care of in
3762 * expand_mmacro - but must check numbers of parameters. Guaranteed
3763 * to be called with tline->type == TOK_ID, so the putative macro
3764 * name is easy to find.
3765 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003766static MMacro *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003767{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003768 MMacro *head, *m;
3769 Token **params;
3770 int nparam;
3771
H. Peter Anvin166c2472008-05-28 12:28:58 -07003772 head = (MMacro *) hash_findix(&mmacros, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003773
3774 /*
3775 * Efficiency: first we see if any macro exists with the given
3776 * name. If not, we can return NULL immediately. _Then_ we
3777 * count the parameters, and then we look further along the
3778 * list if necessary to find the proper MMacro.
3779 */
3780 for (m = head; m; m = m->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003781 if (!mstrcmp(m->name, tline->text, m->casesense))
3782 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003783 if (!m)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003784 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003785
3786 /*
3787 * OK, we have a potential macro. Count and demarcate the
3788 * parameters.
3789 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003790 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003791
3792 /*
3793 * So we know how many parameters we've got. Find the MMacro
3794 * structure that handles this number.
3795 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003796 while (m) {
3797 if (m->nparam_min <= nparam
3798 && (m->plus || nparam <= m->nparam_max)) {
3799 /*
3800 * This one is right. Just check if cycle removal
3801 * prohibits us using it before we actually celebrate...
3802 */
3803 if (m->in_progress) {
H. Peter Anvineba20a72002-04-30 20:53:55 +00003804#if 0
H. Peter Anvine2c80182005-01-15 22:15:51 +00003805 error(ERR_NONFATAL,
3806 "self-reference in multi-line macro `%s'", m->name);
H. Peter Anvineba20a72002-04-30 20:53:55 +00003807#endif
H. Peter Anvine2c80182005-01-15 22:15:51 +00003808 nasm_free(params);
3809 return NULL;
3810 }
3811 /*
3812 * It's right, and we can use it. Add its default
3813 * parameters to the end of our list if necessary.
3814 */
3815 if (m->defaults && nparam < m->nparam_min + m->ndefs) {
3816 params =
3817 nasm_realloc(params,
3818 ((m->nparam_min + m->ndefs +
3819 1) * sizeof(*params)));
3820 while (nparam < m->nparam_min + m->ndefs) {
3821 params[nparam] = m->defaults[nparam - m->nparam_min];
3822 nparam++;
3823 }
3824 }
3825 /*
3826 * If we've gone over the maximum parameter count (and
3827 * we're in Plus mode), ignore parameters beyond
3828 * nparam_max.
3829 */
3830 if (m->plus && nparam > m->nparam_max)
3831 nparam = m->nparam_max;
3832 /*
3833 * Then terminate the parameter list, and leave.
3834 */
3835 if (!params) { /* need this special case */
3836 params = nasm_malloc(sizeof(*params));
3837 nparam = 0;
3838 }
3839 params[nparam] = NULL;
3840 *params_array = params;
3841 return m;
3842 }
3843 /*
3844 * This one wasn't right: look for the next one with the
3845 * same name.
3846 */
3847 for (m = m->next; m; m = m->next)
3848 if (!mstrcmp(m->name, tline->text, m->casesense))
3849 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003850 }
3851
3852 /*
3853 * After all that, we didn't find one with the right number of
3854 * parameters. Issue a warning, and fail to expand the macro.
3855 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003856 error(ERR_WARNING | ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003857 "macro `%s' exists, but not taking %d parameters",
3858 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003859 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003860 return NULL;
3861}
3862
3863/*
3864 * Expand the multi-line macro call made by the given line, if
3865 * there is one to be expanded. If there is, push the expansion on
H. Peter Anvineba20a72002-04-30 20:53:55 +00003866 * istk->expansion and return 1. Otherwise return 0.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003867 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003868static int expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003869{
3870 Token *startline = tline;
3871 Token *label = NULL;
3872 int dont_prepend = 0;
H. Peter Anvince2233b2008-05-25 21:57:00 -07003873 Token **params, *t, *mtok, *tt;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003874 MMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003875 Line *l, *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003876 int i, nparam, *paramlen;
H. Peter Anvinc751e862008-06-09 10:18:45 -07003877 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003878
3879 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003880 skip_white_(t);
H. Peter Anvince2233b2008-05-25 21:57:00 -07003881 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00003882 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003883 return 0;
H. Peter Anvince2233b2008-05-25 21:57:00 -07003884 mtok = t;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003885 m = is_mmacro(t, &params);
H. Peter Anvinc751e862008-06-09 10:18:45 -07003886 if (m) {
3887 mname = t->text;
3888 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003889 Token *last;
3890 /*
3891 * We have an id which isn't a macro call. We'll assume
3892 * it might be a label; we'll also check to see if a
3893 * colon follows it. Then, if there's another id after
3894 * that lot, we'll check it again for macro-hood.
3895 */
3896 label = last = t;
3897 t = t->next;
3898 if (tok_type_(t, TOK_WHITESPACE))
3899 last = t, t = t->next;
3900 if (tok_is_(t, ":")) {
3901 dont_prepend = 1;
3902 last = t, t = t->next;
3903 if (tok_type_(t, TOK_WHITESPACE))
3904 last = t, t = t->next;
3905 }
3906 if (!tok_type_(t, TOK_ID) || (m = is_mmacro(t, &params)) == NULL)
3907 return 0;
3908 last->next = NULL;
H. Peter Anvinc751e862008-06-09 10:18:45 -07003909 mname = t->text;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003910 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003911 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003912
3913 /*
3914 * Fix up the parameters: this involves stripping leading and
3915 * trailing whitespace, then stripping braces if they are
3916 * present.
3917 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003918 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003919 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003920
H. Peter Anvine2c80182005-01-15 22:15:51 +00003921 for (i = 0; params[i]; i++) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003922 int brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003923 int comma = (!m->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003924
H. Peter Anvine2c80182005-01-15 22:15:51 +00003925 t = params[i];
3926 skip_white_(t);
3927 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003928 t = t->next, brace = true, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003929 params[i] = t;
3930 paramlen[i] = 0;
3931 while (t) {
3932 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
3933 break; /* ... because we have hit a comma */
3934 if (comma && t->type == TOK_WHITESPACE
3935 && tok_is_(t->next, ","))
3936 break; /* ... or a space then a comma */
3937 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
3938 break; /* ... or a brace */
3939 t = t->next;
3940 paramlen[i]++;
3941 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003942 }
3943
3944 /*
3945 * OK, we have a MMacro structure together with a set of
3946 * parameters. We must now go through the expansion and push
H. Peter Anvin76690a12002-04-30 20:52:49 +00003947 * copies of each Line on to istk->expansion. Substitution of
3948 * parameter tokens and macro-local tokens doesn't get done
3949 * until the single-line macro substitution process; this is
3950 * because delaying them allows us to change the semantics
3951 * later through %rotate.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003952 *
H. Peter Anvin76690a12002-04-30 20:52:49 +00003953 * First, push an end marker on to istk->expansion, mark this
3954 * macro as in progress, and set up its invocation-specific
3955 * variables.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003956 */
3957 ll = nasm_malloc(sizeof(Line));
3958 ll->next = istk->expansion;
3959 ll->finishes = m;
3960 ll->first = NULL;
3961 istk->expansion = ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003962
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003963 m->in_progress = true;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003964 m->params = params;
3965 m->iline = tline;
3966 m->nparam = nparam;
3967 m->rotate = 0;
3968 m->paramlen = paramlen;
3969 m->unique = unique++;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003970 m->lineno = 0;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003971
3972 m->next_active = istk->mstk;
3973 istk->mstk = m;
3974
H. Peter Anvine2c80182005-01-15 22:15:51 +00003975 for (l = m->expansion; l; l = l->next) {
3976 Token **tail;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003977
H. Peter Anvine2c80182005-01-15 22:15:51 +00003978 ll = nasm_malloc(sizeof(Line));
3979 ll->finishes = NULL;
3980 ll->next = istk->expansion;
3981 istk->expansion = ll;
3982 tail = &ll->first;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003983
H. Peter Anvine2c80182005-01-15 22:15:51 +00003984 for (t = l->first; t; t = t->next) {
3985 Token *x = t;
H. Peter Anvince2233b2008-05-25 21:57:00 -07003986 switch (t->type) {
3987 case TOK_PREPROC_Q:
H. Peter Anvinc751e862008-06-09 10:18:45 -07003988 tt = *tail = new_Token(NULL, TOK_ID, mname, 0);
H. Peter Anvince2233b2008-05-25 21:57:00 -07003989 break;
3990 case TOK_PREPROC_QQ:
3991 tt = *tail = new_Token(NULL, TOK_ID, m->name, 0);
3992 break;
3993 case TOK_PREPROC_ID:
3994 if (t->text[1] == '0' && t->text[2] == '0') {
3995 dont_prepend = -1;
3996 x = label;
3997 if (!x)
3998 continue;
3999 }
4000 /* fall through */
4001 default:
4002 tt = *tail = new_Token(NULL, x->type, x->text, 0);
4003 break;
H. Peter Anvin166c2472008-05-28 12:28:58 -07004004 }
H. Peter Anvince2233b2008-05-25 21:57:00 -07004005 tail = &tt->next;
4006 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004007 *tail = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004008 }
4009
4010 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00004011 * If we had a label, push it on as the first line of
4012 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004013 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004014 if (label) {
4015 if (dont_prepend < 0)
4016 free_tlist(startline);
4017 else {
4018 ll = nasm_malloc(sizeof(Line));
4019 ll->finishes = NULL;
4020 ll->next = istk->expansion;
4021 istk->expansion = ll;
4022 ll->first = startline;
4023 if (!dont_prepend) {
4024 while (label->next)
4025 label = label->next;
4026 label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0);
4027 }
4028 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004029 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004030
H. Peter Anvin734b1882002-04-30 21:01:08 +00004031 list->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004032
H. Peter Anvineba20a72002-04-30 20:53:55 +00004033 return 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004034}
4035
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004036/*
4037 * Since preprocessor always operate only on the line that didn't
4038 * arrived yet, we should always use ERR_OFFBY1. Also since user
4039 * won't want to see same error twice (preprocessing is done once
4040 * per pass) we will want to show errors only during pass one.
4041 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004042static void error(int severity, const char *fmt, ...)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004043{
4044 va_list arg;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004045 char buff[1024];
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004046
4047 /* If we're in a dead branch of IF or something like it, ignore the error */
H. Peter Anvin77ba0c62002-05-14 03:18:53 +00004048 if (istk && istk->conds && !emitting(istk->conds->state))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004049 return;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004050
H. Peter Anvin734b1882002-04-30 21:01:08 +00004051 va_start(arg, fmt);
Ed Beroset19f927a2004-12-15 17:07:03 +00004052 vsnprintf(buff, sizeof(buff), fmt, arg);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004053 va_end(arg);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004054
H. Peter Anvin77ba0c62002-05-14 03:18:53 +00004055 if (istk && istk->mstk && istk->mstk->name)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004056 _error(severity | ERR_PASS1, "(%s:%d) %s", istk->mstk->name,
4057 istk->mstk->lineno, buff);
4058 else
4059 _error(severity | ERR_PASS1, "%s", buff);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004060}
4061
H. Peter Anvin734b1882002-04-30 21:01:08 +00004062static void
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004063pp_reset(char *file, int apass, efunc errfunc, evalfunc eval,
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004064 ListGen * listgen, StrList **deplist)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004065{
H. Peter Anvin99941bf2002-05-14 17:44:03 +00004066 _error = errfunc;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004067 cstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004068 istk = nasm_malloc(sizeof(Include));
4069 istk->next = NULL;
4070 istk->conds = NULL;
4071 istk->expansion = NULL;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004072 istk->mstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004073 istk->fp = fopen(file, "r");
H. Peter Anvineba20a72002-04-30 20:53:55 +00004074 istk->fname = NULL;
4075 src_set_fname(nasm_strdup(file));
4076 src_set_linnum(0);
4077 istk->lineinc = 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004078 if (!istk->fp)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004079 error(ERR_FATAL | ERR_NOFILE, "unable to open input file `%s'",
4080 file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004081 defining = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -07004082 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004083 unique = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004084 if (tasm_compatible_mode) {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004085 stdmacpos = nasm_stdmac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004086 } else {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004087 stdmacpos = nasm_stdmac_after_tasm;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004088 }
H. Peter Anvind2456592008-06-19 15:04:18 -07004089 any_extrastdmac = extrastdmac && *extrastdmac;
4090 do_predef = true;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004091 list = listgen;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004092 evaluate = eval;
4093 pass = apass;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004094 dephead = deptail = deplist;
4095 if (deplist) {
4096 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
4097 sl->next = NULL;
4098 strcpy(sl->str, file);
4099 *deptail = sl;
4100 deptail = &sl->next;
4101 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004102}
4103
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004104static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004105{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004106 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004107 Token *tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004108
H. Peter Anvine2c80182005-01-15 22:15:51 +00004109 while (1) {
4110 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00004111 * Fetch a tokenized line, either from the macro-expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00004112 * buffer or from the input file.
4113 */
4114 tline = NULL;
4115 while (istk->expansion && istk->expansion->finishes) {
4116 Line *l = istk->expansion;
4117 if (!l->finishes->name && l->finishes->in_progress > 1) {
4118 Line *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004119
H. Peter Anvine2c80182005-01-15 22:15:51 +00004120 /*
4121 * This is a macro-end marker for a macro with no
4122 * name, which means it's not really a macro at all
4123 * but a %rep block, and the `in_progress' field is
4124 * more than 1, meaning that we still need to
4125 * repeat. (1 means the natural last repetition; 0
4126 * means termination by %exitrep.) We have
4127 * therefore expanded up to the %endrep, and must
4128 * push the whole block on to the expansion buffer
4129 * again. We don't bother to remove the macro-end
4130 * marker: we'd only have to generate another one
4131 * if we did.
4132 */
4133 l->finishes->in_progress--;
4134 for (l = l->finishes->expansion; l; l = l->next) {
4135 Token *t, *tt, **tail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004136
H. Peter Anvine2c80182005-01-15 22:15:51 +00004137 ll = nasm_malloc(sizeof(Line));
4138 ll->next = istk->expansion;
4139 ll->finishes = NULL;
4140 ll->first = NULL;
4141 tail = &ll->first;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004142
H. Peter Anvine2c80182005-01-15 22:15:51 +00004143 for (t = l->first; t; t = t->next) {
4144 if (t->text || t->type == TOK_WHITESPACE) {
4145 tt = *tail =
4146 new_Token(NULL, t->type, t->text, 0);
4147 tail = &tt->next;
4148 }
4149 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004150
H. Peter Anvine2c80182005-01-15 22:15:51 +00004151 istk->expansion = ll;
4152 }
4153 } else {
4154 /*
4155 * Check whether a `%rep' was started and not ended
4156 * within this macro expansion. This can happen and
4157 * should be detected. It's a fatal error because
4158 * I'm too confused to work out how to recover
4159 * sensibly from it.
4160 */
4161 if (defining) {
4162 if (defining->name)
4163 error(ERR_PANIC,
4164 "defining with name in expansion");
4165 else if (istk->mstk->name)
4166 error(ERR_FATAL,
4167 "`%%rep' without `%%endrep' within"
4168 " expansion of macro `%s'",
4169 istk->mstk->name);
4170 }
H. Peter Anvin87bc6192002-04-30 20:53:16 +00004171
H. Peter Anvine2c80182005-01-15 22:15:51 +00004172 /*
4173 * FIXME: investigate the relationship at this point between
4174 * istk->mstk and l->finishes
4175 */
4176 {
4177 MMacro *m = istk->mstk;
4178 istk->mstk = m->next_active;
4179 if (m->name) {
4180 /*
4181 * This was a real macro call, not a %rep, and
4182 * therefore the parameter information needs to
4183 * be freed.
4184 */
4185 nasm_free(m->params);
4186 free_tlist(m->iline);
4187 nasm_free(m->paramlen);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004188 l->finishes->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004189 } else
4190 free_mmacro(m);
4191 }
4192 istk->expansion = l->next;
4193 nasm_free(l);
4194 list->downlevel(LIST_MACRO);
4195 }
4196 }
4197 while (1) { /* until we get a line we can use */
H. Peter Anvineba20a72002-04-30 20:53:55 +00004198
H. Peter Anvine2c80182005-01-15 22:15:51 +00004199 if (istk->expansion) { /* from a macro expansion */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004200 char *p;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004201 Line *l = istk->expansion;
4202 if (istk->mstk)
4203 istk->mstk->lineno++;
4204 tline = l->first;
4205 istk->expansion = l->next;
4206 nasm_free(l);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004207 p = detoken(tline, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004208 list->line(LIST_MACRO, p);
4209 nasm_free(p);
4210 break;
4211 }
4212 line = read_line();
4213 if (line) { /* from the current input file */
4214 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004215 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004216 nasm_free(line);
4217 break;
4218 }
4219 /*
4220 * The current file has ended; work down the istk
4221 */
4222 {
4223 Include *i = istk;
4224 fclose(i->fp);
4225 if (i->conds)
4226 error(ERR_FATAL,
4227 "expected `%%endif' before end of file");
4228 /* only set line and file name if there's a next node */
4229 if (i->next) {
4230 src_set_linnum(i->lineno);
4231 nasm_free(src_set_fname(i->fname));
H. Peter Anvin86877b22008-06-20 15:55:45 -07004232 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004233 istk = i->next;
4234 list->downlevel(LIST_INCLUDE);
4235 nasm_free(i);
4236 if (!istk)
4237 return NULL;
4238 }
4239 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004240
H. Peter Anvine2c80182005-01-15 22:15:51 +00004241 /*
4242 * We must expand MMacro parameters and MMacro-local labels
4243 * _before_ we plunge into directive processing, to cope
4244 * with things like `%define something %1' such as STRUC
4245 * uses. Unless we're _defining_ a MMacro, in which case
4246 * those tokens should be left alone to go into the
4247 * definition; and unless we're in a non-emitting
4248 * condition, in which case we don't want to meddle with
4249 * anything.
4250 */
4251 if (!defining && !(istk->conds && !emitting(istk->conds->state)))
4252 tline = expand_mmac_params(tline);
H. Peter Anvin76690a12002-04-30 20:52:49 +00004253
H. Peter Anvine2c80182005-01-15 22:15:51 +00004254 /*
4255 * Check the line to see if it's a preprocessor directive.
4256 */
4257 if (do_directive(tline) == DIRECTIVE_FOUND) {
4258 continue;
4259 } else if (defining) {
4260 /*
4261 * We're defining a multi-line macro. We emit nothing
4262 * at all, and just
Keith Kaniosb7a89542007-04-12 02:40:54 +00004263 * shove the tokenized line on to the macro definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00004264 */
4265 Line *l = nasm_malloc(sizeof(Line));
4266 l->next = defining->expansion;
4267 l->first = tline;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004268 l->finishes = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004269 defining->expansion = l;
4270 continue;
4271 } else if (istk->conds && !emitting(istk->conds->state)) {
4272 /*
4273 * We're in a non-emitting branch of a condition block.
4274 * Emit nothing at all, not even a blank line: when we
4275 * emerge from the condition we'll give a line-number
4276 * directive so we keep our place correctly.
4277 */
4278 free_tlist(tline);
4279 continue;
4280 } else if (istk->mstk && !istk->mstk->in_progress) {
4281 /*
4282 * We're in a %rep block which has been terminated, so
4283 * we're walking through to the %endrep without
4284 * emitting anything. Emit nothing at all, not even a
4285 * blank line: when we emerge from the %rep block we'll
4286 * give a line-number directive so we keep our place
4287 * correctly.
4288 */
4289 free_tlist(tline);
4290 continue;
4291 } else {
4292 tline = expand_smacro(tline);
4293 if (!expand_mmacro(tline)) {
4294 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00004295 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00004296 */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004297 line = detoken(tline, true);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004298 free_tlist(tline);
4299 break;
4300 } else {
4301 continue; /* expand_mmacro calls free_tlist */
4302 }
4303 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004304 }
4305
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004306 return line;
4307}
4308
H. Peter Anvine2c80182005-01-15 22:15:51 +00004309static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004310{
H. Peter Anvine2c80182005-01-15 22:15:51 +00004311 if (defining) {
4312 error(ERR_NONFATAL, "end of file while still defining macro `%s'",
4313 defining->name);
4314 free_mmacro(defining);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004315 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004316 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004317 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07004318 free_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00004319 while (istk) {
4320 Include *i = istk;
4321 istk = istk->next;
4322 fclose(i->fp);
4323 nasm_free(i->fname);
4324 nasm_free(i);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004325 }
4326 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004327 ctx_pop();
H. Peter Anvin86877b22008-06-20 15:55:45 -07004328 nasm_free(src_set_fname(NULL));
H. Peter Anvine2c80182005-01-15 22:15:51 +00004329 if (pass == 0) {
H. Peter Anvin86877b22008-06-20 15:55:45 -07004330 IncPath *i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004331 free_llist(predef);
4332 delete_Blocks();
H. Peter Anvin86877b22008-06-20 15:55:45 -07004333 while ((i = ipath)) {
4334 ipath = i->next;
4335 if (i->path)
4336 nasm_free(i->path);
4337 nasm_free(i);
4338 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07004339 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004340}
4341
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004342void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004343{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004344 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07004345
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004346 i = nasm_malloc(sizeof(IncPath));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07004347 i->path = path ? nasm_strdup(path) : NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004348 i->next = NULL;
4349
H. Peter Anvine2c80182005-01-15 22:15:51 +00004350 if (ipath != NULL) {
4351 IncPath *j = ipath;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004352 while (j->next != NULL)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004353 j = j->next;
4354 j->next = i;
4355 } else {
4356 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004357 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004358}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004359
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004360void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004361{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004362 Token *inc, *space, *name;
4363 Line *l;
4364
H. Peter Anvin734b1882002-04-30 21:01:08 +00004365 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
4366 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
4367 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004368
4369 l = nasm_malloc(sizeof(Line));
4370 l->next = predef;
4371 l->first = inc;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004372 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004373 predef = l;
4374}
4375
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004376void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004377{
4378 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004379 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004380 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004381
4382 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00004383 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
4384 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004385 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004386 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00004387 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004388 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004389 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004390
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004391 l = nasm_malloc(sizeof(Line));
4392 l->next = predef;
4393 l->first = def;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004394 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004395 predef = l;
4396}
4397
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004398void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00004399{
4400 Token *def, *space;
4401 Line *l;
4402
H. Peter Anvin734b1882002-04-30 21:01:08 +00004403 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
4404 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004405 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00004406
4407 l = nasm_malloc(sizeof(Line));
4408 l->next = predef;
4409 l->first = def;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004410 l->finishes = NULL;
H. Peter Anvin620515a2002-04-30 20:57:38 +00004411 predef = l;
4412}
4413
Keith Kaniosb7a89542007-04-12 02:40:54 +00004414/*
4415 * Added by Keith Kanios:
4416 *
4417 * This function is used to assist with "runtime" preprocessor
4418 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
4419 *
4420 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
4421 * PASS A VALID STRING TO THIS FUNCTION!!!!!
4422 */
4423
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004424void pp_runtime(char *definition)
Keith Kaniosb7a89542007-04-12 02:40:54 +00004425{
4426 Token *def;
H. Peter Anvin70653092007-10-19 14:42:29 -07004427
Keith Kaniosb7a89542007-04-12 02:40:54 +00004428 def = tokenize(definition);
4429 if(do_directive(def) == NO_DIRECTIVE_FOUND)
4430 free_tlist(def);
H. Peter Anvin70653092007-10-19 14:42:29 -07004431
Keith Kaniosb7a89542007-04-12 02:40:54 +00004432}
4433
H. Peter Anvincfb71762008-06-20 15:20:16 -07004434void pp_extra_stdmac(const macros_t *macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004435{
H. Peter Anvin76690a12002-04-30 20:52:49 +00004436 extrastdmac = macros;
4437}
4438
Keith Kaniosa5fc6462007-10-13 07:09:22 -07004439static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004440{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004441 char numbuf[20];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07004442 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00004443 tok->text = nasm_strdup(numbuf);
4444 tok->type = TOK_NUMBER;
4445}
4446
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004447Preproc nasmpp = {
4448 pp_reset,
4449 pp_getline,
4450 pp_cleanup
4451};