blob: 0579b0f42bfc9730d61c60c5405161efe8f32f53 [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 Anvin992fe752008-10-19 15:45:05 -0700162 TOK_INDIRECT, /* %[...] */
H. Peter Anvin5b76fa22008-05-26 11:14:38 -0700163 TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */
164 TOK_MAX = INT_MAX /* Keep compiler from reducing the range */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000165};
166
H. Peter Anvine2c80182005-01-15 22:15:51 +0000167struct Token {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000168 Token *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000169 char *text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -0700170 union {
171 SMacro *mac; /* associated macro for TOK_SMAC_END */
172 size_t len; /* scratch length field */
173 } a; /* Auxiliary data */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000174 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000175};
176
177/*
178 * Multi-line macro definitions are stored as a linked list of
179 * these, which is essentially a container to allow several linked
180 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700181 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000182 * Note that in this module, linked lists are treated as stacks
183 * wherever possible. For this reason, Lines are _pushed_ on to the
184 * `expansion' field in MMacro structures, so that the linked list,
185 * if walked, would give the macro lines in reverse order; this
186 * means that we can walk the list when expanding a macro, and thus
187 * push the lines on to the `expansion' field in _istk_ in reverse
188 * order (so that when popped back off they are in the right
189 * order). It may seem cockeyed, and it relies on my design having
190 * an even number of steps in, but it works...
191 *
192 * Some of these structures, rather than being actual lines, are
193 * markers delimiting the end of the expansion of a given macro.
H. Peter Anvin76690a12002-04-30 20:52:49 +0000194 * This is for use in the cycle-tracking and %rep-handling code.
195 * Such structures have `finishes' non-NULL, and `first' NULL. All
196 * others have `finishes' NULL, but `first' may still be NULL if
197 * the line is blank.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000198 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000199struct Line {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000200 Line *next;
201 MMacro *finishes;
202 Token *first;
203};
204
205/*
206 * To handle an arbitrary level of file inclusion, we maintain a
207 * stack (ie linked list) of these things.
208 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000209struct Include {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000210 Include *next;
211 FILE *fp;
212 Cond *conds;
213 Line *expansion;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000214 char *fname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000215 int lineno, lineinc;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000216 MMacro *mstk; /* stack of active macros/reps */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000217};
218
219/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000220 * Include search path. This is simply a list of strings which get
221 * prepended, in turn, to the name of an include file, in an
222 * attempt to find the file if it's not in the current directory.
223 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000224struct IncPath {
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000225 IncPath *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000226 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000227};
228
229/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000230 * Conditional assembly: we maintain a separate stack of these for
231 * each level of file inclusion. (The only reason we keep the
232 * stacks separate is to ensure that a stray `%endif' in a file
233 * included from within the true branch of a `%if' won't terminate
234 * it and cause confusion: instead, rightly, it'll cause an error.)
235 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000236struct Cond {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000237 Cond *next;
238 int state;
239};
H. Peter Anvine2c80182005-01-15 22:15:51 +0000240enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000241 /*
242 * These states are for use just after %if or %elif: IF_TRUE
243 * means the condition has evaluated to truth so we are
244 * currently emitting, whereas IF_FALSE means we are not
245 * currently emitting but will start doing so if a %else comes
246 * up. In these states, all directives are admissible: %elif,
247 * %else and %endif. (And of course %if.)
248 */
249 COND_IF_TRUE, COND_IF_FALSE,
250 /*
251 * These states come up after a %else: ELSE_TRUE means we're
252 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
253 * any %elif or %else will cause an error.
254 */
255 COND_ELSE_TRUE, COND_ELSE_FALSE,
256 /*
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200257 * These states mean that we're not emitting now, and also that
258 * nothing until %endif will be emitted at all. COND_DONE is
259 * used when we've had our moment of emission
260 * and have now started seeing %elifs. COND_NEVER is used when
261 * the condition construct in question is contained within a
262 * non-emitting branch of a larger condition construct,
263 * or if there is an error.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000264 */
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200265 COND_DONE, COND_NEVER
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000266};
267#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
268
H. Peter Anvin70653092007-10-19 14:42:29 -0700269/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000270 * These defines are used as the possible return values for do_directive
271 */
272#define NO_DIRECTIVE_FOUND 0
273#define DIRECTIVE_FOUND 1
274
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000275/*
276 * Condition codes. Note that we use c_ prefix not C_ because C_ is
277 * used in nasm.h for the "real" condition codes. At _this_ level,
278 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
279 * ones, so we need a different enum...
280 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700281static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000282 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
283 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000284 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000285};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700286enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000287 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
288 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 -0700289 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
290 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000291};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700292static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000293 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
294 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 +0000295 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000296};
297
H. Peter Anvin76690a12002-04-30 20:52:49 +0000298/*
299 * Directive names.
300 */
H. Peter Anvin65747262002-05-07 00:10:05 +0000301/* If this is a an IF, ELIF, ELSE or ENDIF keyword */
H. Peter Anvin9bf0aa72007-09-12 02:12:07 +0000302static int is_condition(enum preproc_token arg)
H. Peter Anvin65747262002-05-07 00:10:05 +0000303{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000304 return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF);
H. Peter Anvin65747262002-05-07 00:10:05 +0000305}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000306
307/* For TASM compatibility we need to be able to recognise TASM compatible
308 * conditional compilation directives. Using the NASM pre-processor does
309 * not work, so we look for them specifically from the following list and
310 * then jam in the equivalent NASM directive into the input stream.
311 */
312
H. Peter Anvine2c80182005-01-15 22:15:51 +0000313enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000314 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
315 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
316};
317
H. Peter Anvin476d2862007-10-02 22:04:15 -0700318static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000319 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
320 "ifndef", "include", "local"
321};
322
323static int StackSize = 4;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000324static char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000325static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800326static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000327
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000328static Context *cstk;
329static Include *istk;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000330static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000331
H. Peter Anvine2c80182005-01-15 22:15:51 +0000332static efunc _error; /* Pointer to client-provided error reporting function */
H. Peter Anvin76690a12002-04-30 20:52:49 +0000333static evalfunc evaluate;
334
H. Peter Anvine2c80182005-01-15 22:15:51 +0000335static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700336static StrList **dephead, **deptail; /* Dependency list */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000337
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700338static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000339
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000340static Line *predef = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700341static bool do_predef;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000342
343static ListGen *list;
344
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000345/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000346 * The current set of multi-line macros we have defined.
347 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700348static struct hash_table mmacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000349
350/*
351 * The current set of single-line macros we have defined.
352 */
H. Peter Anvin166c2472008-05-28 12:28:58 -0700353static struct hash_table smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000354
355/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000356 * The multi-line macro we are currently defining, or the %rep
357 * block we are currently reading, if any.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000358 */
359static MMacro *defining;
360
Charles Crayned4200be2008-07-12 16:42:33 -0700361static uint64_t nested_mac_count;
362static uint64_t nested_rep_count;
363
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000364/*
365 * The number of macro parameters to allocate space for at a time.
366 */
367#define PARAM_DELTA 16
368
369/*
H. Peter Anvina4835d42008-05-20 14:21:29 -0700370 * The standard macro set: defined in macros.c in the array nasm_stdmac.
371 * This gives our position in the macro set, when we're processing it.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000372 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700373static macros_t *stdmacpos;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000374
375/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000376 * The extra standard macros that come from the object format, if
377 * any.
378 */
H. Peter Anvina70547f2008-07-19 21:44:26 -0700379static macros_t *extrastdmac = NULL;
H. Peter Anvincfb71762008-06-20 15:20:16 -0700380static bool any_extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000381
382/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000383 * Tokens are allocated in blocks to improve speed
384 */
385#define TOKEN_BLOCKSIZE 4096
386static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000387struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000388 Blocks *next;
389 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000390};
391
392static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000393
394/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000395 * Forward declarations.
396 */
H. Peter Anvin734b1882002-04-30 21:01:08 +0000397static Token *expand_mmac_params(Token * tline);
398static Token *expand_smacro(Token * tline);
399static Token *expand_id(Token * tline);
H. Peter Anvinf8ad5322009-02-21 17:55:08 -0800400static Context *get_ctx(const char *name, const char **namep,
401 bool all_contexts);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700402static void make_tok_num(Token * tok, int64_t val);
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000403static void error(int severity, const char *fmt, ...);
Victor van den Elzen3b404c02008-09-18 13:51:36 +0200404static void error_precond(int severity, const char *fmt, ...);
H. Peter Anvince616072002-04-30 21:02:23 +0000405static void *new_Block(size_t size);
406static void delete_Blocks(void);
H. Peter Anvinc751e862008-06-09 10:18:45 -0700407static Token *new_Token(Token * next, enum pp_token_type type,
408 const char *text, int txtlen);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000409static Token *delete_Token(Token * t);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000410
411/*
412 * Macros for safe checking of token pointers, avoid *(NULL)
413 */
414#define tok_type_(x,t) ((x) && (x)->type == (t))
415#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
416#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
417#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000418
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000419/* Handle TASM specific directives, which do not contain a % in
420 * front of them. We do it here because I could not find any other
421 * place to do it for the moment, and it is a hack (ideally it would
422 * be nice to be able to use the NASM pre-processor to do it).
423 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000424static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000425{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000426 int32_t i, j, k, m, len;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000427 char *p = line, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000428
429 /* Skip whitespace */
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700430 while (nasm_isspace(*p) && *p != 0)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000431 p++;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000432
433 /* Binary search for the directive name */
434 i = -1;
Ed Beroset3ab3f412002-06-11 03:31:49 +0000435 j = elements(tasm_directives);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000436 len = 0;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700437 while (!nasm_isspace(p[len]) && p[len] != 0)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000438 len++;
439 if (len) {
440 oldchar = p[len];
441 p[len] = 0;
442 while (j - i > 1) {
443 k = (j + i) / 2;
444 m = nasm_stricmp(p, tasm_directives[k]);
445 if (m == 0) {
446 /* We have found a directive, so jam a % in front of it
447 * so that NASM will then recognise it as one if it's own.
448 */
449 p[len] = oldchar;
450 len = strlen(p);
451 oldline = line;
452 line = nasm_malloc(len + 2);
453 line[0] = '%';
454 if (k == TM_IFDIFI) {
455 /* NASM does not recognise IFDIFI, so we convert it to
456 * %ifdef BOGUS. This is not used in NASM comaptible
457 * code, but does need to parse for the TASM macro
458 * package.
459 */
460 strcpy(line + 1, "ifdef BOGUS");
461 } else {
462 memcpy(line + 1, p, len + 1);
463 }
464 nasm_free(oldline);
465 return line;
466 } else if (m < 0) {
467 j = k;
468 } else
469 i = k;
470 }
471 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000472 }
473 return line;
474}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000475
H. Peter Anvin76690a12002-04-30 20:52:49 +0000476/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000477 * The pre-preprocessing stage... This function translates line
478 * number indications as they emerge from GNU cpp (`# lineno "file"
479 * flags') into NASM preprocessor line number indications (`%line
480 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000481 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000482static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000483{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000484 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000485 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000486
H. Peter Anvine2c80182005-01-15 22:15:51 +0000487 if (line[0] == '#' && line[1] == ' ') {
488 oldline = line;
489 fname = oldline + 2;
490 lineno = atoi(fname);
491 fname += strspn(fname, "0123456789 ");
492 if (*fname == '"')
493 fname++;
494 fnlen = strcspn(fname, "\"");
495 line = nasm_malloc(20 + fnlen);
496 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
497 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000498 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000499 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000500 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000501 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000502}
503
504/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000505 * Free a linked list of tokens.
506 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000507static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000508{
H. Peter Anvine2c80182005-01-15 22:15:51 +0000509 while (list) {
510 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000511 }
512}
513
514/*
515 * Free a linked list of lines.
516 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000517static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000518{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000519 Line *l;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000520 while (list) {
521 l = list;
522 list = list->next;
523 free_tlist(l->first);
524 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000525 }
526}
527
528/*
H. Peter Anvineba20a72002-04-30 20:53:55 +0000529 * Free an MMacro
530 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000531static void free_mmacro(MMacro * m)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000532{
H. Peter Anvin734b1882002-04-30 21:01:08 +0000533 nasm_free(m->name);
534 free_tlist(m->dlist);
535 nasm_free(m->defaults);
536 free_llist(m->expansion);
537 nasm_free(m);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000538}
539
540/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700541 * Free all currently defined macros, and free the hash tables
542 */
H. Peter Anvin072771e2008-05-22 13:17:51 -0700543static void free_smacro_table(struct hash_table *smt)
H. Peter Anvin97a23472007-09-16 17:57:25 -0700544{
H. Peter Anvin97a23472007-09-16 17:57:25 -0700545 SMacro *s;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700546 const char *key;
547 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700548
H. Peter Anvin072771e2008-05-22 13:17:51 -0700549 while ((s = hash_iterate(smt, &it, &key)) != NULL) {
H. Peter Anvin97a23472007-09-16 17:57:25 -0700550 nasm_free((void *)key);
551 while (s) {
552 SMacro *ns = s->next;
553 nasm_free(s->name);
554 free_tlist(s->expansion);
555 nasm_free(s);
556 s = ns;
557 }
558 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700559 hash_free(smt);
560}
561
562static void free_mmacro_table(struct hash_table *mmt)
563{
564 MMacro *m;
565 const char *key;
566 struct hash_tbl_node *it = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -0700567
568 it = NULL;
H. Peter Anvin072771e2008-05-22 13:17:51 -0700569 while ((m = hash_iterate(mmt, &it, &key)) != NULL) {
H. Peter Anvin97a23472007-09-16 17:57:25 -0700570 nasm_free((void *)key);
571 while (m) {
572 MMacro *nm = m->next;
573 free_mmacro(m);
574 m = nm;
575 }
576 }
H. Peter Anvin072771e2008-05-22 13:17:51 -0700577 hash_free(mmt);
578}
579
580static void free_macros(void)
581{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700582 free_smacro_table(&smacros);
583 free_mmacro_table(&mmacros);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700584}
585
586/*
587 * Initialize the hash tables
588 */
589static void init_macros(void)
590{
H. Peter Anvin166c2472008-05-28 12:28:58 -0700591 hash_init(&smacros, HASH_LARGE);
592 hash_init(&mmacros, HASH_LARGE);
H. Peter Anvin97a23472007-09-16 17:57:25 -0700593}
594
595/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000596 * Pop the context stack.
597 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000598static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000599{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000600 Context *c = cstk;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000601
602 cstk = cstk->next;
H. Peter Anvin166c2472008-05-28 12:28:58 -0700603 free_smacro_table(&c->localmac);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000604 nasm_free(c->name);
605 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000606}
607
H. Peter Anvin072771e2008-05-22 13:17:51 -0700608/*
609 * Search for a key in the hash index; adding it if necessary
610 * (in which case we initialize the data pointer to NULL.)
611 */
612static void **
613hash_findi_add(struct hash_table *hash, const char *str)
614{
615 struct hash_insert hi;
616 void **r;
617 char *strx;
618
619 r = hash_findi(hash, str, &hi);
620 if (r)
621 return r;
622
623 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
624 return hash_add(&hi, strx, NULL);
625}
626
627/*
628 * Like hash_findi, but returns the data element rather than a pointer
629 * to it. Used only when not adding a new element, hence no third
630 * argument.
631 */
632static void *
633hash_findix(struct hash_table *hash, const char *str)
634{
635 void **p;
636
637 p = hash_findi(hash, str, NULL);
638 return p ? *p : NULL;
639}
640
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000641#define BUF_DELTA 512
642/*
643 * Read a line from the top file in istk, handling multiple CR/LFs
644 * at the end of the line read, and handling spurious ^Zs. Will
645 * return lines from the standard macro set if this has not already
646 * been done.
647 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000648static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000649{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000650 char *buffer, *p, *q;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000651 int bufsize, continued_count;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000652
H. Peter Anvine2c80182005-01-15 22:15:51 +0000653 if (stdmacpos) {
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700654 unsigned char c;
H. Peter Anvin7e50d232008-06-25 14:54:14 -0700655 const unsigned char *p = stdmacpos;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700656 char *ret, *q;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700657 size_t len = 0;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700658 while ((c = *p++)) {
659 if (c >= 0x80)
660 len += pp_directives_len[c-0x80]+1;
661 else
662 len++;
663 }
664 ret = nasm_malloc(len+1);
H. Peter Anvincda81632008-06-21 15:15:40 -0700665 q = ret;
666 while ((c = *stdmacpos++)) {
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700667 if (c >= 0x80) {
668 memcpy(q, pp_directives[c-0x80], pp_directives_len[c-0x80]);
669 q += pp_directives_len[c-0x80];
670 *q++ = ' ';
671 } else {
672 *q++ = c;
673 }
674 }
H. Peter Anvincda81632008-06-21 15:15:40 -0700675 stdmacpos = p;
H. Peter Anvin72edbb82008-06-19 16:00:04 -0700676 *q = '\0';
677
H. Peter Anvind2456592008-06-19 15:04:18 -0700678 if (!*stdmacpos) {
679 /* This was the last of the standard macro chain... */
680 stdmacpos = NULL;
681 if (any_extrastdmac) {
682 stdmacpos = extrastdmac;
683 any_extrastdmac = false;
684 } else if (do_predef) {
685 Line *pd, *l;
686 Token *head, **tail, *t;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000687
H. Peter Anvind2456592008-06-19 15:04:18 -0700688 /*
689 * Nasty hack: here we push the contents of
690 * `predef' on to the top-level expansion stack,
691 * since this is the most convenient way to
692 * implement the pre-include and pre-define
693 * features.
694 */
695 for (pd = predef; pd; pd = pd->next) {
696 head = NULL;
697 tail = &head;
698 for (t = pd->first; t; t = t->next) {
699 *tail = new_Token(NULL, t->type, t->text, 0);
700 tail = &(*tail)->next;
701 }
702 l = nasm_malloc(sizeof(Line));
703 l->next = istk->expansion;
704 l->first = head;
H. Peter Anvin538002d2008-06-28 18:30:27 -0700705 l->finishes = NULL;
H. Peter Anvind2456592008-06-19 15:04:18 -0700706 istk->expansion = l;
707 }
708 do_predef = false;
709 }
710 }
711 return ret;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000712 }
713
714 bufsize = BUF_DELTA;
715 buffer = nasm_malloc(BUF_DELTA);
716 p = buffer;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000717 continued_count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000718 while (1) {
719 q = fgets(p, bufsize - (p - buffer), istk->fp);
720 if (!q)
721 break;
722 p += strlen(p);
723 if (p > buffer && p[-1] == '\n') {
724 /* Convert backslash-CRLF line continuation sequences into
725 nothing at all (for DOS and Windows) */
726 if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) {
727 p -= 3;
728 *p = 0;
729 continued_count++;
730 }
731 /* Also convert backslash-LF line continuation sequences into
732 nothing at all (for Unix) */
733 else if (((p - 1) > buffer) && (p[-2] == '\\')) {
734 p -= 2;
735 *p = 0;
736 continued_count++;
737 } else {
738 break;
739 }
740 }
741 if (p - buffer > bufsize - 10) {
Keith Kaniosb7a89542007-04-12 02:40:54 +0000742 int32_t offset = p - buffer;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000743 bufsize += BUF_DELTA;
744 buffer = nasm_realloc(buffer, bufsize);
745 p = buffer + offset; /* prevent stale-pointer problems */
746 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000747 }
748
H. Peter Anvine2c80182005-01-15 22:15:51 +0000749 if (!q && p == buffer) {
750 nasm_free(buffer);
751 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000752 }
753
H. Peter Anvine2c80182005-01-15 22:15:51 +0000754 src_set_linnum(src_get_linnum() + istk->lineinc +
755 (continued_count * istk->lineinc));
H. Peter Anvineba20a72002-04-30 20:53:55 +0000756
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000757 /*
758 * Play safe: remove CRs as well as LFs, if any of either are
759 * present at the end of the line.
760 */
H. Peter Anvineba20a72002-04-30 20:53:55 +0000761 while (--p >= buffer && (*p == '\n' || *p == '\r'))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000762 *p = '\0';
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000763
764 /*
765 * Handle spurious ^Z, which may be inserted into source files
766 * by some file transfer utilities.
767 */
768 buffer[strcspn(buffer, "\032")] = '\0';
769
H. Peter Anvin734b1882002-04-30 21:01:08 +0000770 list->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000771
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000772 return buffer;
773}
774
775/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000776 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000777 * don't need to parse the value out of e.g. numeric tokens: we
778 * simply split one string into many.
779 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000780static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000781{
H. Peter Anvinca544db2008-10-19 19:30:11 -0700782 char c, *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000783 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000784 Token *list = NULL;
785 Token *t, **tail = &list;
786
H. Peter Anvine2c80182005-01-15 22:15:51 +0000787 while (*line) {
788 p = line;
789 if (*p == '%') {
790 p++;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700791 if (nasm_isdigit(*p) ||
792 ((*p == '-' || *p == '+') && nasm_isdigit(p[1])) ||
793 ((*p == '+') && (nasm_isspace(p[1]) || !p[1]))) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000794 do {
795 p++;
796 }
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700797 while (nasm_isdigit(*p));
H. Peter Anvine2c80182005-01-15 22:15:51 +0000798 type = TOK_PREPROC_ID;
799 } else if (*p == '{') {
800 p++;
801 while (*p && *p != '}') {
802 p[-1] = *p;
803 p++;
804 }
805 p[-1] = '\0';
806 if (*p)
807 p++;
808 type = TOK_PREPROC_ID;
H. Peter Anvin992fe752008-10-19 15:45:05 -0700809 } else if (*p == '[') {
810 int lvl = 1;
811 line += 2; /* Skip the leading %[ */
812 p++;
H. Peter Anvinec033012008-10-19 22:12:06 -0700813 while (lvl && (c = *p++)) {
H. Peter Anvinca544db2008-10-19 19:30:11 -0700814 switch (c) {
815 case ']':
816 lvl--;
817 break;
818 case '%':
H. Peter Anvinca544db2008-10-19 19:30:11 -0700819 if (*p == '[')
820 lvl++;
821 break;
822 case '\'':
823 case '\"':
824 case '`':
H. Peter Anvinec033012008-10-19 22:12:06 -0700825 p = nasm_skip_string(p)+1;
H. Peter Anvinca544db2008-10-19 19:30:11 -0700826 break;
827 default:
828 break;
H. Peter Anvin992fe752008-10-19 15:45:05 -0700829 }
H. Peter Anvin992fe752008-10-19 15:45:05 -0700830 }
H. Peter Anvinec033012008-10-19 22:12:06 -0700831 p--;
H. Peter Anvin992fe752008-10-19 15:45:05 -0700832 if (*p)
833 *p++ = '\0';
H. Peter Anvine1265812008-10-19 22:14:30 -0700834 if (lvl)
835 error(ERR_NONFATAL, "unterminated %[ construct");
H. Peter Anvin992fe752008-10-19 15:45:05 -0700836 type = TOK_INDIRECT;
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -0700837 } else if (*p == '?') {
838 type = TOK_PREPROC_Q; /* %? */
839 p++;
840 if (*p == '?') {
841 type = TOK_PREPROC_QQ; /* %?? */
842 p++;
843 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000844 } else if (isidchar(*p) ||
845 ((*p == '!' || *p == '%' || *p == '$') &&
846 isidchar(p[1]))) {
847 do {
848 p++;
849 }
850 while (isidchar(*p));
851 type = TOK_PREPROC_ID;
852 } else {
853 type = TOK_OTHER;
854 if (*p == '%')
855 p++;
856 }
857 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
858 type = TOK_ID;
859 p++;
860 while (*p && isidchar(*p))
861 p++;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -0700862 } else if (*p == '\'' || *p == '"' || *p == '`') {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000863 /*
864 * A string token.
865 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000866 type = TOK_STRING;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -0700867 p = nasm_skip_string(p);
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000868
H. Peter Anvine2c80182005-01-15 22:15:51 +0000869 if (*p) {
870 p++;
871 } else {
H. Peter Anvin917a3492008-09-24 09:14:49 -0700872 error(ERR_WARNING|ERR_PASS1, "unterminated string");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000873 /* Handling unterminated strings by UNV */
874 /* type = -1; */
875 }
876 } else if (isnumstart(*p)) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700877 bool is_hex = false;
878 bool is_float = false;
879 bool has_e = false;
880 char c, *r;
881
H. Peter Anvine2c80182005-01-15 22:15:51 +0000882 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700883 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000884 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700885
886 if (*p == '$') {
887 p++;
888 is_hex = true;
889 }
890
891 for (;;) {
892 c = *p++;
893
894 if (!is_hex && (c == 'e' || c == 'E')) {
895 has_e = true;
896 if (*p == '+' || *p == '-') {
897 /* e can only be followed by +/- if it is either a
898 prefixed hex number or a floating-point number */
899 p++;
900 is_float = true;
901 }
902 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
903 is_hex = true;
904 } else if (c == 'P' || c == 'p') {
905 is_float = true;
906 if (*p == '+' || *p == '-')
907 p++;
908 } else if (isnumchar(c) || c == '_')
909 ; /* just advance */
910 else if (c == '.') {
911 /* we need to deal with consequences of the legacy
912 parser, like "1.nolist" being two tokens
913 (TOK_NUMBER, TOK_ID) here; at least give it
914 a shot for now. In the future, we probably need
915 a flex-based scanner with proper pattern matching
916 to do it as well as it can be done. Nothing in
917 the world is going to help the person who wants
918 0x123.p16 interpreted as two tokens, though. */
919 r = p;
920 while (*r == '_')
921 r++;
922
H. Peter Anvinf221b9e2008-06-21 11:03:51 -0700923 if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) ||
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700924 (!is_hex && (*r == 'e' || *r == 'E')) ||
925 (*r == 'p' || *r == 'P')) {
926 p = r;
927 is_float = true;
928 } else
929 break; /* Terminate the token */
930 } else
931 break;
932 }
933 p--; /* Point to first character beyond number */
934
935 if (has_e && !is_hex) {
936 /* 1e13 is floating-point, but 1e13h is not */
937 is_float = true;
938 }
939
940 type = is_float ? TOK_FLOAT : TOK_NUMBER;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700941 } else if (nasm_isspace(*p)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000942 type = TOK_WHITESPACE;
943 p++;
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -0700944 while (*p && nasm_isspace(*p))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000945 p++;
946 /*
947 * Whitespace just before end-of-line is discarded by
948 * pretending it's a comment; whitespace just before a
949 * comment gets lumped into the comment.
950 */
951 if (!*p || *p == ';') {
952 type = TOK_COMMENT;
953 while (*p)
954 p++;
955 }
956 } else if (*p == ';') {
957 type = TOK_COMMENT;
958 while (*p)
959 p++;
960 } else {
961 /*
962 * Anything else is an operator of some kind. We check
963 * for all the double-character operators (>>, <<, //,
964 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000965 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000966 */
967 type = TOK_OTHER;
968 if ((p[0] == '>' && p[1] == '>') ||
969 (p[0] == '<' && p[1] == '<') ||
970 (p[0] == '/' && p[1] == '/') ||
971 (p[0] == '<' && p[1] == '=') ||
972 (p[0] == '>' && p[1] == '=') ||
973 (p[0] == '=' && p[1] == '=') ||
974 (p[0] == '!' && p[1] == '=') ||
975 (p[0] == '<' && p[1] == '>') ||
976 (p[0] == '&' && p[1] == '&') ||
977 (p[0] == '|' && p[1] == '|') ||
978 (p[0] == '^' && p[1] == '^')) {
979 p++;
980 }
981 p++;
982 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000983
H. Peter Anvine2c80182005-01-15 22:15:51 +0000984 /* Handling unterminated string by UNV */
985 /*if (type == -1)
986 {
987 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
988 t->text[p-line] = *line;
989 tail = &t->next;
990 }
991 else */
992 if (type != TOK_COMMENT) {
993 *tail = t = new_Token(NULL, type, line, p - line);
994 tail = &t->next;
995 }
996 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000997 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000998 return list;
999}
1000
H. Peter Anvince616072002-04-30 21:02:23 +00001001/*
1002 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -07001003 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +00001004 * deleted only all at once by the delete_Blocks function.
1005 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001006static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +00001007{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001008 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001009
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001010 /* first, get to the end of the linked list */
1011 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001012 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001013 /* now allocate the requested chunk */
1014 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001015
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001016 /* now allocate a new block for the next request */
1017 b->next = nasm_malloc(sizeof(Blocks));
1018 /* and initialize the contents of the new block */
1019 b->next->next = NULL;
1020 b->next->chunk = NULL;
1021 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +00001022}
1023
1024/*
1025 * this function deletes all managed blocks of memory
1026 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001027static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +00001028{
H. Peter Anvine2c80182005-01-15 22:15:51 +00001029 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +00001030
H. Peter Anvin70653092007-10-19 14:42:29 -07001031 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001032 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -07001033 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001034 * free it.
1035 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001036 while (b) {
1037 if (b->chunk)
1038 nasm_free(b->chunk);
1039 a = b;
1040 b = b->next;
1041 if (a != &blocks)
1042 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +00001043 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001044}
H. Peter Anvin734b1882002-04-30 21:01:08 +00001045
1046/*
H. Peter Anvin70653092007-10-19 14:42:29 -07001047 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +00001048 * back to the caller. It sets the type and text elements, and
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001049 * also the a.mac and next elements to NULL.
H. Peter Anvin734b1882002-04-30 21:01:08 +00001050 */
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001051static Token *new_Token(Token * next, enum pp_token_type type,
H. Peter Anvinc751e862008-06-09 10:18:45 -07001052 const char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001053{
1054 Token *t;
1055 int i;
1056
H. Peter Anvine2c80182005-01-15 22:15:51 +00001057 if (freeTokens == NULL) {
1058 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
1059 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
1060 freeTokens[i].next = &freeTokens[i + 1];
1061 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001062 }
1063 t = freeTokens;
1064 freeTokens = t->next;
1065 t->next = next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001066 t->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001067 t->type = type;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001068 if (type == TOK_WHITESPACE || text == NULL) {
1069 t->text = NULL;
1070 } else {
1071 if (txtlen == 0)
1072 txtlen = strlen(text);
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001073 t->text = nasm_malloc(txtlen+1);
1074 memcpy(t->text, text, txtlen);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001075 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +00001076 }
1077 return t;
1078}
1079
H. Peter Anvine2c80182005-01-15 22:15:51 +00001080static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +00001081{
1082 Token *next = t->next;
1083 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +00001084 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001085 freeTokens = t;
1086 return next;
1087}
1088
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001089/*
1090 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001091 * If expand_locals is not zero, identifiers of the form "%$*xxx"
1092 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001093 */
H. Peter Anvin9e200162008-06-04 17:23:14 -07001094static char *detoken(Token * tlist, bool expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001095{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001096 Token *t;
1097 int len;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001098 char *line, *p;
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001099 const char *q;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001100
1101 len = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001102 for (t = tlist; t; t = t->next) {
1103 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001104 char *p = getenv(t->text + 2);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001105 nasm_free(t->text);
1106 if (p)
1107 t->text = nasm_strdup(p);
1108 else
1109 t->text = NULL;
1110 }
1111 /* Expand local macros here and not during preprocessing */
1112 if (expand_locals &&
1113 t->type == TOK_PREPROC_ID && t->text &&
1114 t->text[0] == '%' && t->text[1] == '$') {
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001115 const char *q;
1116 char *p;
1117 Context *ctx = get_ctx(t->text, &q, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001118 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001119 char buffer[40];
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001120 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001121 p = nasm_strcat(buffer, q);
1122 nasm_free(t->text);
1123 t->text = p;
1124 }
1125 }
1126 if (t->type == TOK_WHITESPACE) {
1127 len++;
1128 } else if (t->text) {
1129 len += strlen(t->text);
1130 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001131 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00001132 p = line = nasm_malloc(len + 1);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001133 for (t = tlist; t; t = t->next) {
1134 if (t->type == TOK_WHITESPACE) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001135 *p++ = ' ';
H. Peter Anvine2c80182005-01-15 22:15:51 +00001136 } else if (t->text) {
H. Peter Anvinb4daadc2008-01-21 16:31:57 -08001137 q = t->text;
1138 while (*q)
1139 *p++ = *q++;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001140 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001141 }
1142 *p = '\0';
1143 return line;
1144}
1145
1146/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001147 * A scanner, suitable for use by the expression evaluator, which
1148 * operates on a line of Tokens. Expects a pointer to a pointer to
1149 * the first token in the line to be passed in as its private_data
1150 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001151 *
1152 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001153 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001154static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001155{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001156 Token **tlineptr = private_data;
1157 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001158 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001159
H. Peter Anvine2c80182005-01-15 22:15:51 +00001160 do {
1161 tline = *tlineptr;
1162 *tlineptr = tline ? tline->next : NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001163 }
1164 while (tline && (tline->type == TOK_WHITESPACE ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001165 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001166
1167 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001168 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001169
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001170 tokval->t_charptr = tline->text;
1171
H. Peter Anvin76690a12002-04-30 20:52:49 +00001172 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001173 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001174 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001175 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001176
H. Peter Anvine2c80182005-01-15 22:15:51 +00001177 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001178 p = tokval->t_charptr = tline->text;
1179 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001180 tokval->t_charptr++;
1181 return tokval->t_type = TOKEN_ID;
1182 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001183
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001184 for (r = p, s = ourcopy; *r; r++) {
Philipp Thomas76ec8e72008-05-21 08:53:21 -07001185 if (r >= p+MAX_KEYWORD)
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001186 return tokval->t_type = TOKEN_ID; /* Not a keyword */
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -07001187 *s++ = nasm_tolower(*r);
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001188 }
1189 *s = '\0';
1190 /* right, so we have an identifier sitting in temp storage. now,
1191 * is it actually a register or instruction name, or what? */
1192 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001193 }
1194
H. Peter Anvine2c80182005-01-15 22:15:51 +00001195 if (tline->type == TOK_NUMBER) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001196 bool rn_error;
1197 tokval->t_integer = readnum(tline->text, &rn_error);
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001198 tokval->t_charptr = tline->text;
H. Peter Anvin11627042008-06-09 20:45:19 -07001199 if (rn_error)
1200 return tokval->t_type = TOKEN_ERRNUM;
1201 else
1202 return tokval->t_type = TOKEN_NUM;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001203 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001204
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001205 if (tline->type == TOK_FLOAT) {
1206 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001207 }
1208
H. Peter Anvine2c80182005-01-15 22:15:51 +00001209 if (tline->type == TOK_STRING) {
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07001210 char bq, *ep;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001211
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07001212 bq = tline->text[0];
H. Peter Anvin11627042008-06-09 20:45:19 -07001213 tokval->t_charptr = tline->text;
1214 tokval->t_inttwo = nasm_unquote(tline->text, &ep);
H. Peter Anvind2456592008-06-19 15:04:18 -07001215
H. Peter Anvin11627042008-06-09 20:45:19 -07001216 if (ep[0] != bq || ep[1] != '\0')
1217 return tokval->t_type = TOKEN_ERRSTR;
1218 else
1219 return tokval->t_type = TOKEN_STR;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001220 }
1221
H. Peter Anvine2c80182005-01-15 22:15:51 +00001222 if (tline->type == TOK_OTHER) {
1223 if (!strcmp(tline->text, "<<"))
1224 return tokval->t_type = TOKEN_SHL;
1225 if (!strcmp(tline->text, ">>"))
1226 return tokval->t_type = TOKEN_SHR;
1227 if (!strcmp(tline->text, "//"))
1228 return tokval->t_type = TOKEN_SDIV;
1229 if (!strcmp(tline->text, "%%"))
1230 return tokval->t_type = TOKEN_SMOD;
1231 if (!strcmp(tline->text, "=="))
1232 return tokval->t_type = TOKEN_EQ;
1233 if (!strcmp(tline->text, "<>"))
1234 return tokval->t_type = TOKEN_NE;
1235 if (!strcmp(tline->text, "!="))
1236 return tokval->t_type = TOKEN_NE;
1237 if (!strcmp(tline->text, "<="))
1238 return tokval->t_type = TOKEN_LE;
1239 if (!strcmp(tline->text, ">="))
1240 return tokval->t_type = TOKEN_GE;
1241 if (!strcmp(tline->text, "&&"))
1242 return tokval->t_type = TOKEN_DBL_AND;
1243 if (!strcmp(tline->text, "^^"))
1244 return tokval->t_type = TOKEN_DBL_XOR;
1245 if (!strcmp(tline->text, "||"))
1246 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001247 }
1248
1249 /*
1250 * We have no other options: just return the first character of
1251 * the token text.
1252 */
1253 return tokval->t_type = tline->text[0];
1254}
1255
1256/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001257 * Compare a string to the name of an existing macro; this is a
1258 * simple wrapper which calls either strcmp or nasm_stricmp
1259 * depending on the value of the `casesense' parameter.
1260 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001261static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001262{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001263 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001264}
1265
1266/*
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001267 * Compare a string to the name of an existing macro; this is a
1268 * simple wrapper which calls either strcmp or nasm_stricmp
1269 * depending on the value of the `casesense' parameter.
1270 */
1271static int mmemcmp(const char *p, const char *q, size_t l, bool casesense)
1272{
1273 return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l);
1274}
1275
1276/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001277 * Return the Context structure associated with a %$ token. Return
1278 * NULL, having _already_ reported an error condition, if the
1279 * context stack isn't deep enough for the supplied number of $
1280 * signs.
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001281 * If all_contexts == true, contexts that enclose current are
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001282 * also scanned for such smacro, until it is found; if not -
1283 * only the context that directly results from the number of $'s
1284 * in variable's name.
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001285 *
1286 * If "namep" is non-NULL, set it to the pointer to the macro name
1287 * tail, i.e. the part beyond %$...
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001288 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001289static Context *get_ctx(const char *name, const char **namep,
1290 bool all_contexts)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001291{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001292 Context *ctx;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001293 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001294 int i;
1295
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001296 if (namep)
1297 *namep = name;
1298
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001299 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001300 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001301
H. Peter Anvine2c80182005-01-15 22:15:51 +00001302 if (!cstk) {
1303 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1304 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001305 }
1306
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001307 name += 2;
1308 ctx = cstk;
1309 i = 0;
1310 while (ctx && *name == '$') {
1311 name++;
1312 i++;
1313 ctx = ctx->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001314 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001315 if (!ctx) {
1316 error(ERR_NONFATAL, "`%s': context stack is only"
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001317 " %d level%s deep", name, i, (i == 1 ? "" : "s"));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001318 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001319 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001320
1321 if (namep)
1322 *namep = name;
1323
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001324 if (!all_contexts)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001325 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001326
H. Peter Anvine2c80182005-01-15 22:15:51 +00001327 do {
1328 /* Search for this smacro in found context */
H. Peter Anvin166c2472008-05-28 12:28:58 -07001329 m = hash_findix(&ctx->localmac, name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001330 while (m) {
1331 if (!mstrcmp(m->name, name, m->casesense))
1332 return ctx;
1333 m = m->next;
1334 }
1335 ctx = ctx->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001336 }
1337 while (ctx);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001338 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001339}
1340
1341/*
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001342 * Check to see if a file is already in a string list
1343 */
1344static bool in_list(const StrList *list, const char *str)
1345{
1346 while (list) {
1347 if (!strcmp(list->str, str))
1348 return true;
1349 list = list->next;
1350 }
1351 return false;
1352}
1353
1354/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001355 * Open an include file. This routine must always return a valid
1356 * file pointer if it returns - it's responsible for throwing an
1357 * ERR_FATAL and bombing out completely if not. It should also try
1358 * the include path one by one until it finds the file or reaches
1359 * the end of the path.
1360 */
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001361static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail,
H. Peter Anvin418ca702008-05-30 10:42:30 -07001362 bool missing_ok)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001363{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001364 FILE *fp;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001365 char *prefix = "";
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001366 IncPath *ip = ipath;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001367 int len = strlen(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001368 size_t prefix_len = 0;
1369 StrList *sl;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001370
H. Peter Anvine2c80182005-01-15 22:15:51 +00001371 while (1) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001372 sl = nasm_malloc(prefix_len+len+1+sizeof sl->next);
1373 memcpy(sl->str, prefix, prefix_len);
1374 memcpy(sl->str+prefix_len, file, len+1);
1375 fp = fopen(sl->str, "r");
H. Peter Anvin418ca702008-05-30 10:42:30 -07001376 if (fp && dhead && !in_list(*dhead, sl->str)) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001377 sl->next = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001378 **dtail = sl;
1379 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001380 } else {
1381 nasm_free(sl);
1382 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001383 if (fp)
1384 return fp;
H. Peter Anvin418ca702008-05-30 10:42:30 -07001385 if (!ip) {
1386 if (!missing_ok)
1387 break;
1388 prefix = NULL;
1389 } else {
1390 prefix = ip->path;
1391 ip = ip->next;
1392 }
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001393 if (prefix) {
1394 prefix_len = strlen(prefix);
1395 } else {
1396 /* -MG given and file not found */
H. Peter Anvin418ca702008-05-30 10:42:30 -07001397 if (dhead && !in_list(*dhead, file)) {
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001398 sl = nasm_malloc(len+1+sizeof sl->next);
1399 sl->next = NULL;
1400 strcpy(sl->str, file);
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07001401 **dtail = sl;
1402 *dtail = &sl->next;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001403 }
H. Peter Anvin37a321f2007-09-24 13:41:58 -07001404 return NULL;
1405 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001406 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001407
H. Peter Anvin734b1882002-04-30 21:01:08 +00001408 error(ERR_FATAL, "unable to open include file `%s'", file);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001409 return NULL; /* never reached - placate compilers */
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001410}
1411
1412/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001413 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001414 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001415 * return true if _any_ single-line macro of that name is defined.
1416 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001417 * `nparam' or no parameters is defined.
1418 *
1419 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001420 * defined, or nparam is -1, the address of the definition structure
1421 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001422 * is NULL, no action will be taken regarding its contents, and no
1423 * error will occur.
1424 *
1425 * Note that this is also called with nparam zero to resolve
1426 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001427 *
1428 * If you already know which context macro belongs to, you can pass
1429 * the context pointer as first parameter; if you won't but name begins
1430 * with %$ the context will be automatically computed. If all_contexts
1431 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001432 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001433static bool
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07001434smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001435 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001436{
H. Peter Anvin166c2472008-05-28 12:28:58 -07001437 struct hash_table *smtbl;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001438 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001439
H. Peter Anvin97a23472007-09-16 17:57:25 -07001440 if (ctx) {
H. Peter Anvin166c2472008-05-28 12:28:58 -07001441 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001442 } else if (name[0] == '%' && name[1] == '$') {
1443 if (cstk)
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001444 ctx = get_ctx(name, &name, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001445 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001446 return false; /* got to return _something_ */
H. Peter Anvin166c2472008-05-28 12:28:58 -07001447 smtbl = &ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001448 } else {
H. Peter Anvin166c2472008-05-28 12:28:58 -07001449 smtbl = &smacros;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001450 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001451 m = (SMacro *) hash_findix(smtbl, name);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001452
H. Peter Anvine2c80182005-01-15 22:15:51 +00001453 while (m) {
1454 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001455 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001456 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001457 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001458 *defn = m;
1459 else
1460 *defn = NULL;
1461 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001462 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001463 }
1464 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001465 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001466
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001467 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001468}
1469
1470/*
1471 * Count and mark off the parameters in a multi-line macro call.
1472 * This is called both from within the multi-line macro expansion
1473 * code, and also to mark off the default parameters when provided
1474 * in a %macro definition line.
1475 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001476static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001477{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001478 int paramsize, brace;
1479
1480 *nparam = paramsize = 0;
1481 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001482 while (t) {
H. Peter Anvin91fb6f12008-09-01 10:56:33 -07001483 /* +1: we need space for the final NULL */
1484 if (*nparam+1 >= paramsize) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001485 paramsize += PARAM_DELTA;
1486 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1487 }
1488 skip_white_(t);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001489 brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001490 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001491 brace = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001492 (*params)[(*nparam)++] = t;
1493 while (tok_isnt_(t, brace ? "}" : ","))
1494 t = t->next;
1495 if (t) { /* got a comma/brace */
1496 t = t->next;
1497 if (brace) {
1498 /*
1499 * Now we've found the closing brace, look further
1500 * for the comma.
1501 */
1502 skip_white_(t);
1503 if (tok_isnt_(t, ",")) {
1504 error(ERR_NONFATAL,
1505 "braces do not enclose all of macro parameter");
1506 while (tok_isnt_(t, ","))
1507 t = t->next;
1508 }
1509 if (t)
1510 t = t->next; /* eat the comma */
1511 }
1512 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001513 }
1514}
1515
1516/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001517 * Determine whether one of the various `if' conditions is true or
1518 * not.
1519 *
1520 * We must free the tline we get passed.
1521 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001522static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001523{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001524 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001525 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001526 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001527 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001528 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001529 enum pp_token_type needtype;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001530
1531 origline = tline;
1532
H. Peter Anvine2c80182005-01-15 22:15:51 +00001533 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001534 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001535 j = false; /* have we matched yet? */
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001536 while (true) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001537 skip_white_(tline);
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001538 if (!tline)
1539 break;
1540 if (tline->type != TOK_ID) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001541 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001542 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001543 free_tlist(origline);
1544 return -1;
1545 }
Victor van den Elzen0e857f12008-07-23 13:21:29 +02001546 if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001547 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001548 tline = tline->next;
1549 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001550 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001551
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001552 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001553 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001554 while (tline) {
1555 skip_white_(tline);
1556 if (!tline || (tline->type != TOK_ID &&
1557 (tline->type != TOK_PREPROC_ID ||
1558 tline->text[1] != '$'))) {
1559 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001560 "`%s' expects macro identifiers", pp_directives[ct]);
1561 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001562 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001563 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001564 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001565 tline = tline->next;
1566 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001567 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001568
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001569 case PPC_IFIDN:
1570 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001571 tline = expand_smacro(tline);
1572 t = tt = tline;
1573 while (tok_isnt_(tt, ","))
1574 tt = tt->next;
1575 if (!tt) {
1576 error(ERR_NONFATAL,
1577 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001578 pp_directives[ct]);
1579 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001580 }
1581 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001582 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001583 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1584 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1585 error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001586 pp_directives[ct]);
1587 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001588 }
1589 if (t->type == TOK_WHITESPACE) {
1590 t = t->next;
1591 continue;
1592 }
1593 if (tt->type == TOK_WHITESPACE) {
1594 tt = tt->next;
1595 continue;
1596 }
1597 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001598 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001599 break;
1600 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001601 /* When comparing strings, need to unquote them first */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001602 if (t->type == TOK_STRING) {
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07001603 size_t l1 = nasm_unquote(t->text, NULL);
1604 size_t l2 = nasm_unquote(tt->text, NULL);
H. Peter Anvind2456592008-06-19 15:04:18 -07001605
H. Peter Anvin6ecc1592008-06-01 21:34:49 -07001606 if (l1 != l2) {
1607 j = false;
1608 break;
1609 }
1610 if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) {
1611 j = false;
1612 break;
1613 }
1614 } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001615 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001616 break;
1617 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001618
H. Peter Anvine2c80182005-01-15 22:15:51 +00001619 t = t->next;
1620 tt = tt->next;
1621 }
1622 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001623 j = false; /* trailing gunk on one end or other */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001624 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001625
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001626 case PPC_IFMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001627 {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001628 bool found = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001629 MMacro searching, *mmac;
H. Peter Anvin65747262002-05-07 00:10:05 +00001630
H. Peter Anvine2c80182005-01-15 22:15:51 +00001631 skip_white_(tline);
1632 tline = expand_id(tline);
1633 if (!tok_type_(tline, TOK_ID)) {
1634 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001635 "`%s' expects a macro name", pp_directives[ct]);
1636 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001637 }
1638 searching.name = nasm_strdup(tline->text);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001639 searching.casesense = true;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001640 searching.plus = false;
1641 searching.nolist = false;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001642 searching.in_progress = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001643 searching.rep_nest = NULL;
1644 searching.nparam_min = 0;
1645 searching.nparam_max = INT_MAX;
1646 tline = expand_smacro(tline->next);
1647 skip_white_(tline);
1648 if (!tline) {
1649 } else if (!tok_type_(tline, TOK_NUMBER)) {
1650 error(ERR_NONFATAL,
1651 "`%s' expects a parameter count or nothing",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001652 pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001653 } else {
1654 searching.nparam_min = searching.nparam_max =
1655 readnum(tline->text, &j);
1656 if (j)
1657 error(ERR_NONFATAL,
1658 "unable to parse parameter count `%s'",
1659 tline->text);
1660 }
1661 if (tline && tok_is_(tline->next, "-")) {
1662 tline = tline->next->next;
1663 if (tok_is_(tline, "*"))
1664 searching.nparam_max = INT_MAX;
1665 else if (!tok_type_(tline, TOK_NUMBER))
1666 error(ERR_NONFATAL,
1667 "`%s' expects a parameter count after `-'",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001668 pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001669 else {
1670 searching.nparam_max = readnum(tline->text, &j);
1671 if (j)
1672 error(ERR_NONFATAL,
1673 "unable to parse parameter count `%s'",
1674 tline->text);
1675 if (searching.nparam_min > searching.nparam_max)
1676 error(ERR_NONFATAL,
1677 "minimum parameter count exceeds maximum");
1678 }
1679 }
1680 if (tline && tok_is_(tline->next, "+")) {
1681 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001682 searching.plus = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001683 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07001684 mmac = (MMacro *) hash_findix(&mmacros, searching.name);
H. Peter Anvin97a23472007-09-16 17:57:25 -07001685 while (mmac) {
1686 if (!strcmp(mmac->name, searching.name) &&
1687 (mmac->nparam_min <= searching.nparam_max
1688 || searching.plus)
1689 && (searching.nparam_min <= mmac->nparam_max
1690 || mmac->plus)) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001691 found = true;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001692 break;
1693 }
1694 mmac = mmac->next;
1695 }
Victor van den Elzenb916ede2008-07-23 15:14:22 +02001696 if(tline && tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07001697 error(ERR_WARNING|ERR_PASS1,
1698 "trailing garbage after %%ifmacro ignored");
H. Peter Anvine2c80182005-01-15 22:15:51 +00001699 nasm_free(searching.name);
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001700 j = found;
1701 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001702 }
H. Peter Anvin65747262002-05-07 00:10:05 +00001703
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001704 case PPC_IFID:
1705 needtype = TOK_ID;
1706 goto iftype;
1707 case PPC_IFNUM:
1708 needtype = TOK_NUMBER;
1709 goto iftype;
1710 case PPC_IFSTR:
1711 needtype = TOK_STRING;
1712 goto iftype;
1713
1714 iftype:
H. Peter Anvin134b9462008-02-16 17:01:40 -08001715 t = tline = expand_smacro(tline);
H. Peter Anvind85d2502008-05-04 17:53:31 -07001716
H. Peter Anvin927c92b2008-02-16 13:44:52 -08001717 while (tok_type_(t, TOK_WHITESPACE) ||
1718 (needtype == TOK_NUMBER &&
1719 tok_type_(t, TOK_OTHER) &&
1720 (t->text[0] == '-' || t->text[0] == '+') &&
1721 !t->text[1]))
1722 t = t->next;
H. Peter Anvind85d2502008-05-04 17:53:31 -07001723
H. Peter Anvincbf768d2008-02-16 16:41:25 -08001724 j = tok_type_(t, needtype);
1725 break;
1726
1727 case PPC_IFTOKEN:
1728 t = tline = expand_smacro(tline);
1729 while (tok_type_(t, TOK_WHITESPACE))
1730 t = t->next;
1731
1732 j = false;
1733 if (t) {
1734 t = t->next; /* Skip the actual token */
1735 while (tok_type_(t, TOK_WHITESPACE))
1736 t = t->next;
1737 j = !t; /* Should be nothing left */
1738 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001739 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001740
H. Peter Anvin134b9462008-02-16 17:01:40 -08001741 case PPC_IFEMPTY:
1742 t = tline = expand_smacro(tline);
1743 while (tok_type_(t, TOK_WHITESPACE))
1744 t = t->next;
1745
1746 j = !t; /* Should be empty */
1747 break;
1748
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001749 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001750 t = tline = expand_smacro(tline);
1751 tptr = &t;
1752 tokval.t_type = TOKEN_INVALID;
1753 evalresult = evaluate(ppscan, tptr, &tokval,
1754 NULL, pass | CRITICAL, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001755 if (!evalresult)
1756 return -1;
1757 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07001758 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001759 "trailing garbage after expression ignored");
1760 if (!is_simple(evalresult)) {
1761 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001762 "non-constant value given to `%s'", pp_directives[ct]);
1763 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001764 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001765 j = reloc_value(evalresult) != 0;
H. Peter Anvin90e6e812008-07-16 14:38:24 -07001766 break;
H. Peter Anvin95e28822007-09-12 04:20:08 +00001767
H. Peter Anvine2c80182005-01-15 22:15:51 +00001768 default:
1769 error(ERR_FATAL,
1770 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001771 pp_directives[ct]);
1772 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001773 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001774
1775 free_tlist(origline);
1776 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07001777
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001778fail:
1779 free_tlist(origline);
1780 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001781}
1782
1783/*
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001784 * Common code for defining an smacro
1785 */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001786static bool define_smacro(Context *ctx, const char *mname, bool casesense,
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001787 int nparam, Token *expansion)
1788{
1789 SMacro *smac, **smhead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07001790 struct hash_table *smtbl;
H. Peter Anvin70653092007-10-19 14:42:29 -07001791
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001792 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
1793 if (!smac) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07001794 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001795 "single-line macro `%s' defined both with and"
1796 " without parameters", mname);
1797
1798 /* Some instances of the old code considered this a failure,
1799 some others didn't. What is the right thing to do here? */
1800 free_tlist(expansion);
1801 return false; /* Failure */
1802 } else {
1803 /*
1804 * We're redefining, so we have to take over an
1805 * existing SMacro structure. This means freeing
1806 * what was already in it.
1807 */
1808 nasm_free(smac->name);
1809 free_tlist(smac->expansion);
1810 }
1811 } else {
H. Peter Anvin166c2472008-05-28 12:28:58 -07001812 smtbl = ctx ? &ctx->localmac : &smacros;
1813 smhead = (SMacro **) hash_findi_add(smtbl, mname);
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001814 smac = nasm_malloc(sizeof(SMacro));
1815 smac->next = *smhead;
1816 *smhead = smac;
1817 }
1818 smac->name = nasm_strdup(mname);
1819 smac->casesense = casesense;
1820 smac->nparam = nparam;
1821 smac->expansion = expansion;
1822 smac->in_progress = false;
1823 return true; /* Success */
1824}
1825
1826/*
1827 * Undefine an smacro
1828 */
1829static void undef_smacro(Context *ctx, const char *mname)
1830{
1831 SMacro **smhead, *s, **sp;
H. Peter Anvin166c2472008-05-28 12:28:58 -07001832 struct hash_table *smtbl;
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001833
H. Peter Anvin166c2472008-05-28 12:28:58 -07001834 smtbl = ctx ? &ctx->localmac : &smacros;
1835 smhead = (SMacro **)hash_findi(smtbl, mname, NULL);
H. Peter Anvin70653092007-10-19 14:42:29 -07001836
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001837 if (smhead) {
1838 /*
1839 * We now have a macro name... go hunt for it.
1840 */
1841 sp = smhead;
1842 while ((s = *sp) != NULL) {
1843 if (!mstrcmp(s->name, mname, s->casesense)) {
1844 *sp = s->next;
1845 nasm_free(s->name);
1846 free_tlist(s->expansion);
1847 nasm_free(s);
1848 } else {
1849 sp = &s->next;
1850 }
1851 }
1852 }
1853}
1854
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001855/*
H. Peter Anvina26433d2008-07-16 14:40:01 -07001856 * Parse a mmacro specification.
1857 */
1858static bool parse_mmacro_spec(Token *tline, MMacro *def, const char *directive)
1859{
1860 bool err;
1861
1862 tline = tline->next;
1863 skip_white_(tline);
1864 tline = expand_id(tline);
1865 if (!tok_type_(tline, TOK_ID)) {
1866 error(ERR_NONFATAL, "`%s' expects a macro name", directive);
1867 return false;
1868 }
Victor van den Elzenb916ede2008-07-23 15:14:22 +02001869
H. Peter Anvina26433d2008-07-16 14:40:01 -07001870 def->name = nasm_strdup(tline->text);
1871 def->plus = false;
1872 def->nolist = false;
1873 def->in_progress = 0;
1874 def->rep_nest = NULL;
Victor van den Elzenb916ede2008-07-23 15:14:22 +02001875 def->nparam_min = 0;
1876 def->nparam_max = 0;
1877
H. Peter Anvina26433d2008-07-16 14:40:01 -07001878 tline = expand_smacro(tline->next);
1879 skip_white_(tline);
1880 if (!tok_type_(tline, TOK_NUMBER)) {
1881 error(ERR_NONFATAL, "`%s' expects a parameter count", directive);
H. Peter Anvina26433d2008-07-16 14:40:01 -07001882 } else {
1883 def->nparam_min = def->nparam_max =
1884 readnum(tline->text, &err);
1885 if (err)
1886 error(ERR_NONFATAL,
1887 "unable to parse parameter count `%s'", tline->text);
1888 }
1889 if (tline && tok_is_(tline->next, "-")) {
1890 tline = tline->next->next;
1891 if (tok_is_(tline, "*")) {
1892 def->nparam_max = INT_MAX;
1893 } else if (!tok_type_(tline, TOK_NUMBER)) {
1894 error(ERR_NONFATAL,
1895 "`%s' expects a parameter count after `-'", directive);
1896 } else {
1897 def->nparam_max = readnum(tline->text, &err);
1898 if (err) {
1899 error(ERR_NONFATAL, "unable to parse parameter count `%s'",
1900 tline->text);
1901 }
1902 if (def->nparam_min > def->nparam_max) {
1903 error(ERR_NONFATAL, "minimum parameter count exceeds maximum");
1904 }
1905 }
1906 }
1907 if (tline && tok_is_(tline->next, "+")) {
1908 tline = tline->next;
1909 def->plus = true;
1910 }
1911 if (tline && tok_type_(tline->next, TOK_ID) &&
1912 !nasm_stricmp(tline->next->text, ".nolist")) {
1913 tline = tline->next;
1914 def->nolist = true;
1915 }
1916
1917 /*
1918 * Handle default parameters.
1919 */
1920 if (tline && tline->next) {
1921 def->dlist = tline->next;
1922 tline->next = NULL;
1923 count_mmac_params(def->dlist, &def->ndefs, &def->defaults);
1924 } else {
1925 def->dlist = NULL;
1926 def->defaults = NULL;
1927 }
1928 def->expansion = NULL;
1929
Victor van den Elzen22343c22008-08-06 14:47:54 +02001930 if(def->defaults &&
1931 def->ndefs > def->nparam_max - def->nparam_min &&
1932 !def->plus)
H. Peter Anvin917a3492008-09-24 09:14:49 -07001933 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP,
1934 "too many default macro parameters");
Victor van den Elzenb916ede2008-07-23 15:14:22 +02001935
H. Peter Anvina26433d2008-07-16 14:40:01 -07001936 return true;
1937}
1938
1939
1940/*
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001941 * Decode a size directive
1942 */
1943static int parse_size(const char *str) {
1944 static const char *size_names[] =
H. Peter Anvindfb91802008-05-20 11:43:53 -07001945 { "byte", "dword", "oword", "qword", "tword", "word", "yword" };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001946 static const int sizes[] =
H. Peter Anvindfb91802008-05-20 11:43:53 -07001947 { 0, 1, 4, 16, 8, 10, 2, 32 };
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001948
1949 return sizes[bsii(str, size_names, elements(size_names))+1];
1950}
1951
Ed Beroset3ab3f412002-06-11 03:31:49 +00001952/**
1953 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001954 * Find out if a line contains a preprocessor directive, and deal
1955 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07001956 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00001957 * If a directive _is_ found, it is the responsibility of this routine
1958 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001959 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00001960 * @param tline a pointer to the current tokeninzed line linked list
1961 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07001962 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001963 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001964static int do_directive(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001965{
H. Peter Anvin4169a472007-09-12 01:29:43 +00001966 enum preproc_token i;
1967 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07001968 bool err;
1969 int nparam;
1970 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001971 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07001972 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001973 int offset;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08001974 char *p, *pp;
1975 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001976 Include *inc;
1977 Context *ctx;
1978 Cond *cond;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001979 MMacro *mmac, **mmhead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001980 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
1981 Line *l;
1982 struct tokenval tokval;
1983 expr *evalresult;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001984 MMacro *tmp_defining; /* Used when manipulating rep_nest */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001985 int64_t count;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07001986 size_t len;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07001987 int severity;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001988
1989 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001990
H. Peter Anvineba20a72002-04-30 20:53:55 +00001991 skip_white_(tline);
H. Peter Anvinf2936d72008-06-04 15:11:23 -07001992 if (!tline || !tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001993 (tline->text[1] == '%' || tline->text[1] == '$'
1994 || tline->text[1] == '!'))
1995 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001996
H. Peter Anvin4169a472007-09-12 01:29:43 +00001997 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001998
1999 /*
2000 * If we're in a non-emitting branch of a condition construct,
H. Peter Anvin76690a12002-04-30 20:52:49 +00002001 * or walking to the end of an already terminated %rep block,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002002 * we should ignore all directives except for condition
2003 * directives.
2004 */
H. Peter Anvin76690a12002-04-30 20:52:49 +00002005 if (((istk->conds && !emitting(istk->conds->state)) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00002006 (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) {
2007 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00002008 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002009
2010 /*
H. Peter Anvin76690a12002-04-30 20:52:49 +00002011 * If we're defining a macro or reading a %rep block, we should
Victor van den Elzen8f1120f2008-07-16 13:41:37 +02002012 * ignore all directives except for %macro/%imacro (which nest),
2013 * %endm/%endmacro, and (only if we're in a %rep block) %endrep.
2014 * If we're in a %rep block, another %rep nests, so should be let through.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002015 */
2016 if (defining && i != PP_MACRO && i != PP_IMACRO &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00002017 i != PP_ENDMACRO && i != PP_ENDM &&
2018 (defining->name || (i != PP_ENDREP && i != PP_REP))) {
2019 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00002020 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002021
Charles Crayned4200be2008-07-12 16:42:33 -07002022 if (defining) {
2023 if (i == PP_MACRO || i == PP_IMACRO) {
2024 nested_mac_count++;
2025 return NO_DIRECTIVE_FOUND;
2026 } else if (nested_mac_count > 0) {
2027 if (i == PP_ENDMACRO) {
2028 nested_mac_count--;
2029 return NO_DIRECTIVE_FOUND;
2030 }
2031 }
2032 if (!defining->name) {
2033 if (i == PP_REP) {
2034 nested_rep_count++;
2035 return NO_DIRECTIVE_FOUND;
2036 } else if (nested_rep_count > 0) {
2037 if (i == PP_ENDREP) {
2038 nested_rep_count--;
2039 return NO_DIRECTIVE_FOUND;
2040 }
2041 }
2042 }
2043 }
2044
H. Peter Anvin4169a472007-09-12 01:29:43 +00002045 switch (i) {
2046 case PP_INVALID:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002047 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
2048 tline->text);
2049 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002050
H. Peter Anvine2c80182005-01-15 22:15:51 +00002051 case PP_STACKSIZE:
2052 /* Directive to tell NASM what the default stack size is. The
2053 * default is for a 16-bit stack, and this can be overriden with
2054 * %stacksize large.
2055 * the following form:
2056 *
2057 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2058 */
2059 tline = tline->next;
2060 if (tline && tline->type == TOK_WHITESPACE)
2061 tline = tline->next;
2062 if (!tline || tline->type != TOK_ID) {
2063 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
2064 free_tlist(origline);
2065 return DIRECTIVE_FOUND;
2066 }
2067 if (nasm_stricmp(tline->text, "flat") == 0) {
2068 /* All subsequent ARG directives are for a 32-bit stack */
2069 StackSize = 4;
2070 StackPointer = "ebp";
2071 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002072 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08002073 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
2074 /* All subsequent ARG directives are for a 64-bit stack */
2075 StackSize = 8;
2076 StackPointer = "rbp";
2077 ArgOffset = 8;
2078 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002079 } else if (nasm_stricmp(tline->text, "large") == 0) {
2080 /* All subsequent ARG directives are for a 16-bit stack,
2081 * far function call.
2082 */
2083 StackSize = 2;
2084 StackPointer = "bp";
2085 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002086 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002087 } else if (nasm_stricmp(tline->text, "small") == 0) {
2088 /* All subsequent ARG directives are for a 16-bit stack,
2089 * far function call. We don't support near functions.
2090 */
2091 StackSize = 2;
2092 StackPointer = "bp";
2093 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002094 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002095 } else {
2096 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
2097 free_tlist(origline);
2098 return DIRECTIVE_FOUND;
2099 }
2100 free_tlist(origline);
2101 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002102
H. Peter Anvine2c80182005-01-15 22:15:51 +00002103 case PP_ARG:
2104 /* TASM like ARG directive to define arguments to functions, in
2105 * the following form:
2106 *
2107 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
2108 */
2109 offset = ArgOffset;
2110 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002111 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002112 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002113
H. Peter Anvine2c80182005-01-15 22:15:51 +00002114 /* Find the argument name */
2115 tline = tline->next;
2116 if (tline && tline->type == TOK_WHITESPACE)
2117 tline = tline->next;
2118 if (!tline || tline->type != TOK_ID) {
2119 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
2120 free_tlist(origline);
2121 return DIRECTIVE_FOUND;
2122 }
2123 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002124
H. Peter Anvine2c80182005-01-15 22:15:51 +00002125 /* Find the argument size type */
2126 tline = tline->next;
2127 if (!tline || tline->type != TOK_OTHER
2128 || tline->text[0] != ':') {
2129 error(ERR_NONFATAL,
2130 "Syntax error processing `%%arg' directive");
2131 free_tlist(origline);
2132 return DIRECTIVE_FOUND;
2133 }
2134 tline = tline->next;
2135 if (!tline || tline->type != TOK_ID) {
2136 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
2137 free_tlist(origline);
2138 return DIRECTIVE_FOUND;
2139 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002140
H. Peter Anvine2c80182005-01-15 22:15:51 +00002141 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002142 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002143 tt = expand_smacro(tt);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002144 size = parse_size(tt->text);
2145 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002146 error(ERR_NONFATAL,
2147 "Invalid size type for `%%arg' missing directive");
2148 free_tlist(tt);
2149 free_tlist(origline);
2150 return DIRECTIVE_FOUND;
2151 }
2152 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002153
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002154 /* Round up to even stack slots */
2155 size = (size+StackSize-1) & ~(StackSize-1);
2156
H. Peter Anvine2c80182005-01-15 22:15:51 +00002157 /* Now define the macro for the argument */
2158 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
2159 arg, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002160 do_directive(tokenize(directive));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002161 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002162
H. Peter Anvine2c80182005-01-15 22:15:51 +00002163 /* Move to the next argument in the list */
2164 tline = tline->next;
2165 if (tline && tline->type == TOK_WHITESPACE)
2166 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002167 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2168 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002169 free_tlist(origline);
2170 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002171
H. Peter Anvine2c80182005-01-15 22:15:51 +00002172 case PP_LOCAL:
2173 /* TASM like LOCAL directive to define local variables for a
2174 * function, in the following form:
2175 *
2176 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
2177 *
2178 * The '= LocalSize' at the end is ignored by NASM, but is
2179 * required by TASM to define the local parameter size (and used
2180 * by the TASM macro package).
2181 */
2182 offset = LocalOffset;
2183 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002184 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00002185 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002186
H. Peter Anvine2c80182005-01-15 22:15:51 +00002187 /* Find the argument name */
2188 tline = tline->next;
2189 if (tline && tline->type == TOK_WHITESPACE)
2190 tline = tline->next;
2191 if (!tline || tline->type != TOK_ID) {
2192 error(ERR_NONFATAL,
2193 "`%%local' missing argument parameter");
2194 free_tlist(origline);
2195 return DIRECTIVE_FOUND;
2196 }
2197 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002198
H. Peter Anvine2c80182005-01-15 22:15:51 +00002199 /* Find the argument size type */
2200 tline = tline->next;
2201 if (!tline || tline->type != TOK_OTHER
2202 || tline->text[0] != ':') {
2203 error(ERR_NONFATAL,
2204 "Syntax error processing `%%local' directive");
2205 free_tlist(origline);
2206 return DIRECTIVE_FOUND;
2207 }
2208 tline = tline->next;
2209 if (!tline || tline->type != TOK_ID) {
2210 error(ERR_NONFATAL,
2211 "`%%local' missing size type parameter");
2212 free_tlist(origline);
2213 return DIRECTIVE_FOUND;
2214 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002215
H. Peter Anvine2c80182005-01-15 22:15:51 +00002216 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00002217 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002218 tt = expand_smacro(tt);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002219 size = parse_size(tt->text);
2220 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002221 error(ERR_NONFATAL,
2222 "Invalid size type for `%%local' missing directive");
2223 free_tlist(tt);
2224 free_tlist(origline);
2225 return DIRECTIVE_FOUND;
2226 }
2227 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002228
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002229 /* Round up to even stack slots */
2230 size = (size+StackSize-1) & ~(StackSize-1);
2231
2232 offset += size; /* Negative offset, increment before */
2233
2234 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002235 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
2236 local, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002237 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002238
H. Peter Anvine2c80182005-01-15 22:15:51 +00002239 /* Now define the assign to setup the enter_c macro correctly */
2240 snprintf(directive, sizeof(directive),
2241 "%%assign %%$localsize %%$localsize+%d", size);
Keith Kaniosb7a89542007-04-12 02:40:54 +00002242 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002243
H. Peter Anvine2c80182005-01-15 22:15:51 +00002244 /* Move to the next argument in the list */
2245 tline = tline->next;
2246 if (tline && tline->type == TOK_WHITESPACE)
2247 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002248 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2249 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002250 free_tlist(origline);
2251 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002252
H. Peter Anvine2c80182005-01-15 22:15:51 +00002253 case PP_CLEAR:
2254 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002255 error(ERR_WARNING|ERR_PASS1,
2256 "trailing garbage after `%%clear' ignored");
H. Peter Anvin97a23472007-09-16 17:57:25 -07002257 free_macros();
2258 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002259 free_tlist(origline);
2260 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002261
H. Peter Anvin418ca702008-05-30 10:42:30 -07002262 case PP_DEPEND:
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002263 t = tline->next = expand_smacro(tline->next);
2264 skip_white_(t);
2265 if (!t || (t->type != TOK_STRING &&
2266 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvin418ca702008-05-30 10:42:30 -07002267 error(ERR_NONFATAL, "`%%depend' expects a file name");
2268 free_tlist(origline);
2269 return DIRECTIVE_FOUND; /* but we did _something_ */
2270 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002271 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002272 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07002273 "trailing garbage after `%%depend' ignored");
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002274 p = t->text;
2275 if (t->type != TOK_INTERNAL_STRING)
2276 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002277 if (dephead && !in_list(*dephead, p)) {
2278 StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next);
2279 sl->next = NULL;
2280 strcpy(sl->str, p);
2281 *deptail = sl;
2282 deptail = &sl->next;
2283 }
2284 free_tlist(origline);
2285 return DIRECTIVE_FOUND;
2286
2287 case PP_INCLUDE:
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002288 t = tline->next = expand_smacro(tline->next);
2289 skip_white_(t);
H. Peter Anvind2456592008-06-19 15:04:18 -07002290
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002291 if (!t || (t->type != TOK_STRING &&
2292 t->type != TOK_INTERNAL_STRING)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002293 error(ERR_NONFATAL, "`%%include' expects a file name");
2294 free_tlist(origline);
2295 return DIRECTIVE_FOUND; /* but we did _something_ */
2296 }
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002297 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002298 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002299 "trailing garbage after `%%include' ignored");
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002300 p = t->text;
2301 if (t->type != TOK_INTERNAL_STRING)
2302 nasm_unquote(p, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002303 inc = nasm_malloc(sizeof(Include));
2304 inc->next = istk;
2305 inc->conds = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002306 inc->fp = inc_fopen(p, dephead, &deptail, pass == 0);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002307 if (!inc->fp) {
H. Peter Anvin37a321f2007-09-24 13:41:58 -07002308 /* -MG given but file not found */
2309 nasm_free(inc);
2310 } else {
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002311 inc->fname = src_set_fname(nasm_strdup(p));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07002312 inc->lineno = src_set_linnum(0);
2313 inc->lineinc = 1;
2314 inc->expansion = NULL;
2315 inc->mstk = NULL;
2316 istk = inc;
2317 list->uplevel(LIST_INCLUDE);
2318 }
2319 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002320 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002321
H. Peter Anvind2456592008-06-19 15:04:18 -07002322 case PP_USE:
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002323 {
H. Peter Anvina70547f2008-07-19 21:44:26 -07002324 static macros_t *use_pkg;
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07002325 const char *pkg_macro;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002326
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002327 tline = tline->next;
2328 skip_white_(tline);
2329 tline = expand_id(tline);
H. Peter Anvind2456592008-06-19 15:04:18 -07002330
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002331 if (!tline || (tline->type != TOK_STRING &&
2332 tline->type != TOK_INTERNAL_STRING &&
2333 tline->type != TOK_ID)) {
H. Peter Anvin926fc402008-06-19 16:26:12 -07002334 error(ERR_NONFATAL, "`%%use' expects a package name");
H. Peter Anvind2456592008-06-19 15:04:18 -07002335 free_tlist(origline);
2336 return DIRECTIVE_FOUND; /* but we did _something_ */
2337 }
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002338 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002339 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvind2456592008-06-19 15:04:18 -07002340 "trailing garbage after `%%use' ignored");
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002341 if (tline->type == TOK_STRING)
2342 nasm_unquote(tline->text, NULL);
2343 use_pkg = nasm_stdmac_find_package(tline->text);
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002344 if (!use_pkg)
H. Peter Anvin264b7b92008-10-24 16:38:17 -07002345 error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
H. Peter Anvinb2a5fda2008-06-19 21:42:42 -07002346 /* The first string will be <%define>__USE_*__ */
H. Peter Anvin7e50d232008-06-25 14:54:14 -07002347 pkg_macro = (char *)use_pkg + 1;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002348 if (!smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
2349 /* Not already included, go ahead and include it */
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002350 stdmacpos = use_pkg;
2351 }
H. Peter Anvind2456592008-06-19 15:04:18 -07002352 free_tlist(origline);
2353 return DIRECTIVE_FOUND;
H. Peter Anvinf4ae5ad2008-06-19 18:39:24 -07002354 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002355 case PP_PUSH:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002356 case PP_REPL:
H. Peter Anvin42b56392008-10-24 16:24:21 -07002357 case PP_POP:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002358 tline = tline->next;
2359 skip_white_(tline);
2360 tline = expand_id(tline);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002361 if (tline) {
2362 if (!tok_type_(tline, TOK_ID)) {
H. Peter Anvin42b56392008-10-24 16:24:21 -07002363 error(ERR_NONFATAL, "`%s' expects a context identifier",
2364 pp_directives[i]);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002365 free_tlist(origline);
2366 return DIRECTIVE_FOUND; /* but we did _something_ */
2367 }
2368 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002369 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin42b56392008-10-24 16:24:21 -07002370 "trailing garbage after `%s' ignored",
2371 pp_directives[i]);
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002372 p = nasm_strdup(tline->text);
2373 } else {
H. Peter Anvin42b56392008-10-24 16:24:21 -07002374 p = NULL; /* Anonymous */
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07002375 }
H. Peter Anvin42b56392008-10-24 16:24:21 -07002376
2377 if (i == PP_PUSH) {
2378 ctx = nasm_malloc(sizeof(Context));
2379 ctx->next = cstk;
2380 hash_init(&ctx->localmac, HASH_SMALL);
2381 ctx->name = p;
2382 ctx->number = unique++;
2383 cstk = ctx;
2384 } else {
2385 /* %pop or %repl */
2386 if (!cstk) {
2387 error(ERR_NONFATAL, "`%s': context stack is empty",
2388 pp_directives[i]);
2389 } else if (i == PP_POP) {
2390 if (p && (!cstk->name || nasm_stricmp(p, cstk->name)))
2391 error(ERR_NONFATAL, "`%%pop' in wrong context: %s, "
2392 "expected %s",
2393 cstk->name ? cstk->name : "anonymous", p);
2394 else
2395 ctx_pop();
2396 } else {
2397 /* i == PP_REPL */
2398 nasm_free(cstk->name);
2399 cstk->name = p;
2400 p = NULL;
2401 }
2402 nasm_free(p);
2403 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002404 free_tlist(origline);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002405 return DIRECTIVE_FOUND;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002406 case PP_FATAL:
2407 severity = ERR_FATAL|ERR_NO_SEVERITY;
2408 goto issue_error;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002409 case PP_ERROR:
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002410 severity = ERR_NONFATAL|ERR_NO_SEVERITY;
2411 goto issue_error;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002412 case PP_WARNING:
H. Peter Anvin2f160432008-09-30 16:39:17 -07002413 severity = ERR_WARNING|ERR_NO_SEVERITY|ERR_WARN_USER;
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002414 goto issue_error;
2415
2416 issue_error:
H. Peter Anvin7df04172008-06-10 18:27:38 -07002417 {
H. Peter Anvin8e3f75e2008-09-24 00:21:58 -07002418 /* Only error out if this is the final pass */
2419 if (pass != 2 && i != PP_FATAL)
2420 return DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002421
H. Peter Anvine2c80182005-01-15 22:15:51 +00002422 tline->next = expand_smacro(tline->next);
2423 tline = tline->next;
2424 skip_white_(tline);
H. Peter Anvin7df04172008-06-10 18:27:38 -07002425 t = tline ? tline->next : NULL;
2426 skip_white_(t);
2427 if (tok_type_(tline, TOK_STRING) && !t) {
2428 /* The line contains only a quoted string */
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002429 p = tline->text;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002430 nasm_unquote(p, NULL);
H. Peter Anvin7df04172008-06-10 18:27:38 -07002431 error(severity, "%s: %s", pp_directives[i], p);
2432 } else {
2433 /* Not a quoted string, or more than a quoted string */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002434 p = detoken(tline, false);
H. Peter Anvin7df04172008-06-10 18:27:38 -07002435 error(severity, "%s: %s", pp_directives[i], p);
2436 nasm_free(p);
H. Peter Anvind2456592008-06-19 15:04:18 -07002437 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002438 free_tlist(origline);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002439 return DIRECTIVE_FOUND;
H. Peter Anvin7df04172008-06-10 18:27:38 -07002440 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002441
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002442 CASE_PP_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002443 if (istk->conds && !emitting(istk->conds->state))
2444 j = COND_NEVER;
2445 else {
2446 j = if_condition(tline->next, i);
2447 tline->next = NULL; /* it got freed */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002448 j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2449 }
2450 cond = nasm_malloc(sizeof(Cond));
2451 cond->next = istk->conds;
2452 cond->state = j;
2453 istk->conds = cond;
H. Peter Anvin7061ad72007-11-26 22:02:21 -08002454 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002455 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002456
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002457 CASE_PP_ELIF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002458 if (!istk->conds)
H. Peter Anvin4169a472007-09-12 01:29:43 +00002459 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002460 switch(istk->conds->state) {
2461 case COND_IF_TRUE:
2462 istk->conds->state = COND_DONE;
2463 break;
2464
2465 case COND_DONE:
2466 case COND_NEVER:
2467 break;
2468
2469 case COND_ELSE_TRUE:
2470 case COND_ELSE_FALSE:
H. Peter Anvin917a3492008-09-24 09:14:49 -07002471 error_precond(ERR_WARNING|ERR_PASS1,
2472 "`%%elif' after `%%else' ignored");
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002473 istk->conds->state = COND_NEVER;
2474 break;
2475
2476 case COND_IF_FALSE:
2477 /*
2478 * IMPORTANT: In the case of %if, we will already have
2479 * called expand_mmac_params(); however, if we're
2480 * processing an %elif we must have been in a
2481 * non-emitting mode, which would have inhibited
H. Peter Anvin67c63722008-10-26 23:49:00 -07002482 * the normal invocation of expand_mmac_params().
2483 * Therefore, we have to do it explicitly here.
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002484 */
H. Peter Anvin67c63722008-10-26 23:49:00 -07002485 j = if_condition(expand_mmac_params(tline->next), i);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002486 tline->next = NULL; /* it got freed */
2487 istk->conds->state =
2488 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2489 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002490 }
H. Peter Anvin7061ad72007-11-26 22:02:21 -08002491 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002492 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002493
H. Peter Anvine2c80182005-01-15 22:15:51 +00002494 case PP_ELSE:
2495 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002496 error_precond(ERR_WARNING|ERR_PASS1,
2497 "trailing garbage after `%%else' ignored");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002498 if (!istk->conds)
2499 error(ERR_FATAL, "`%%else': no matching `%%if'");
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002500 switch(istk->conds->state) {
2501 case COND_IF_TRUE:
2502 case COND_DONE:
2503 istk->conds->state = COND_ELSE_FALSE;
2504 break;
2505
2506 case COND_NEVER:
2507 break;
2508
2509 case COND_IF_FALSE:
2510 istk->conds->state = COND_ELSE_TRUE;
2511 break;
2512
2513 case COND_ELSE_TRUE:
2514 case COND_ELSE_FALSE:
H. Peter Anvin917a3492008-09-24 09:14:49 -07002515 error_precond(ERR_WARNING|ERR_PASS1,
2516 "`%%else' after `%%else' ignored.");
Victor van den Elzen3b404c02008-09-18 13:51:36 +02002517 istk->conds->state = COND_NEVER;
2518 break;
2519 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002520 free_tlist(origline);
2521 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002522
H. Peter Anvine2c80182005-01-15 22:15:51 +00002523 case PP_ENDIF:
2524 if (tline->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002525 error_precond(ERR_WARNING|ERR_PASS1,
2526 "trailing garbage after `%%endif' ignored");
H. Peter Anvine2c80182005-01-15 22:15:51 +00002527 if (!istk->conds)
2528 error(ERR_FATAL, "`%%endif': no matching `%%if'");
2529 cond = istk->conds;
2530 istk->conds = cond->next;
2531 nasm_free(cond);
2532 free_tlist(origline);
2533 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002534
H. Peter Anvine2c80182005-01-15 22:15:51 +00002535 case PP_MACRO:
2536 case PP_IMACRO:
H. Peter Anvina26433d2008-07-16 14:40:01 -07002537 if (defining) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002538 error(ERR_FATAL,
2539 "`%%%smacro': already defining a macro",
2540 (i == PP_IMACRO ? "i" : ""));
H. Peter Anvina26433d2008-07-16 14:40:01 -07002541 return DIRECTIVE_FOUND;
2542 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002543 defining = nasm_malloc(sizeof(MMacro));
H. Peter Anvina26433d2008-07-16 14:40:01 -07002544 defining->casesense = (i == PP_MACRO);
2545 if (!parse_mmacro_spec(tline, defining, pp_directives[i])) {
2546 nasm_free(defining);
2547 defining = NULL;
2548 return DIRECTIVE_FOUND;
2549 }
2550
H. Peter Anvin166c2472008-05-28 12:28:58 -07002551 mmac = (MMacro *) hash_findix(&mmacros, defining->name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002552 while (mmac) {
2553 if (!strcmp(mmac->name, defining->name) &&
2554 (mmac->nparam_min <= defining->nparam_max
2555 || defining->plus)
2556 && (defining->nparam_min <= mmac->nparam_max
2557 || mmac->plus)) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07002558 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002559 "redefining multi-line macro `%s'", defining->name);
H. Peter Anvina26433d2008-07-16 14:40:01 -07002560 return DIRECTIVE_FOUND;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002561 }
2562 mmac = mmac->next;
2563 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002564 free_tlist(origline);
2565 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002566
H. Peter Anvine2c80182005-01-15 22:15:51 +00002567 case PP_ENDM:
2568 case PP_ENDMACRO:
Victor van den Elzen8f1120f2008-07-16 13:41:37 +02002569 if (! (defining && defining->name)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002570 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2571 return DIRECTIVE_FOUND;
2572 }
H. Peter Anvin166c2472008-05-28 12:28:58 -07002573 mmhead = (MMacro **) hash_findi_add(&mmacros, defining->name);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002574 defining->next = *mmhead;
2575 *mmhead = defining;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002576 defining = NULL;
2577 free_tlist(origline);
2578 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002579
H. Peter Anvina26433d2008-07-16 14:40:01 -07002580 case PP_UNMACRO:
2581 case PP_UNIMACRO:
2582 {
2583 MMacro **mmac_p;
2584 MMacro spec;
2585
2586 spec.casesense = (i == PP_UNMACRO);
2587 if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) {
2588 return DIRECTIVE_FOUND;
2589 }
2590 mmac_p = (MMacro **) hash_findi(&mmacros, spec.name, NULL);
2591 while (mmac_p && *mmac_p) {
2592 mmac = *mmac_p;
2593 if (mmac->casesense == spec.casesense &&
2594 !mstrcmp(mmac->name, spec.name, spec.casesense) &&
2595 mmac->nparam_min == spec.nparam_min &&
2596 mmac->nparam_max == spec.nparam_max &&
2597 mmac->plus == spec.plus) {
2598 *mmac_p = mmac->next;
2599 free_mmacro(mmac);
2600 } else {
2601 mmac_p = &mmac->next;
2602 }
2603 }
2604 free_tlist(origline);
2605 free_tlist(spec.dlist);
2606 return DIRECTIVE_FOUND;
2607 }
2608
H. Peter Anvine2c80182005-01-15 22:15:51 +00002609 case PP_ROTATE:
2610 if (tline->next && tline->next->type == TOK_WHITESPACE)
2611 tline = tline->next;
2612 if (tline->next == NULL) {
2613 free_tlist(origline);
2614 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
2615 return DIRECTIVE_FOUND;
2616 }
2617 t = expand_smacro(tline->next);
2618 tline->next = NULL;
2619 free_tlist(origline);
2620 tline = t;
2621 tptr = &t;
2622 tokval.t_type = TOKEN_INVALID;
2623 evalresult =
2624 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2625 free_tlist(tline);
2626 if (!evalresult)
2627 return DIRECTIVE_FOUND;
2628 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002629 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002630 "trailing garbage after expression ignored");
2631 if (!is_simple(evalresult)) {
2632 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
2633 return DIRECTIVE_FOUND;
2634 }
2635 mmac = istk->mstk;
2636 while (mmac && !mmac->name) /* avoid mistaking %reps for macros */
2637 mmac = mmac->next_active;
2638 if (!mmac) {
2639 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
2640 } else if (mmac->nparam == 0) {
2641 error(ERR_NONFATAL,
2642 "`%%rotate' invoked within macro without parameters");
2643 } else {
H. Peter Anvin25a99342007-09-22 17:45:45 -07002644 int rotate = mmac->rotate + reloc_value(evalresult);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002645
H. Peter Anvin25a99342007-09-22 17:45:45 -07002646 rotate %= (int)mmac->nparam;
2647 if (rotate < 0)
2648 rotate += mmac->nparam;
H. Peter Anvin70653092007-10-19 14:42:29 -07002649
H. Peter Anvin25a99342007-09-22 17:45:45 -07002650 mmac->rotate = rotate;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002651 }
2652 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002653
H. Peter Anvine2c80182005-01-15 22:15:51 +00002654 case PP_REP:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002655 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002656 do {
2657 tline = tline->next;
2658 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002659
H. Peter Anvine2c80182005-01-15 22:15:51 +00002660 if (tok_type_(tline, TOK_ID) &&
2661 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002662 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002663 do {
2664 tline = tline->next;
2665 } while (tok_type_(tline, TOK_WHITESPACE));
2666 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002667
H. Peter Anvine2c80182005-01-15 22:15:51 +00002668 if (tline) {
2669 t = expand_smacro(tline);
2670 tptr = &t;
2671 tokval.t_type = TOKEN_INVALID;
2672 evalresult =
2673 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2674 if (!evalresult) {
2675 free_tlist(origline);
2676 return DIRECTIVE_FOUND;
2677 }
2678 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002679 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002680 "trailing garbage after expression ignored");
2681 if (!is_simple(evalresult)) {
2682 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
2683 return DIRECTIVE_FOUND;
2684 }
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002685 count = reloc_value(evalresult) + 1;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002686 } else {
2687 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002688 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002689 }
2690 free_tlist(origline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002691
H. Peter Anvine2c80182005-01-15 22:15:51 +00002692 tmp_defining = defining;
2693 defining = nasm_malloc(sizeof(MMacro));
2694 defining->name = NULL; /* flags this macro as a %rep block */
H. Peter Anvin70055962007-10-11 00:05:31 -07002695 defining->casesense = false;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002696 defining->plus = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002697 defining->nolist = nolist;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002698 defining->in_progress = count;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002699 defining->nparam_min = defining->nparam_max = 0;
2700 defining->defaults = NULL;
2701 defining->dlist = NULL;
2702 defining->expansion = NULL;
2703 defining->next_active = istk->mstk;
2704 defining->rep_nest = tmp_defining;
2705 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002706
H. Peter Anvine2c80182005-01-15 22:15:51 +00002707 case PP_ENDREP:
2708 if (!defining || defining->name) {
2709 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
2710 return DIRECTIVE_FOUND;
2711 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002712
H. Peter Anvine2c80182005-01-15 22:15:51 +00002713 /*
2714 * Now we have a "macro" defined - although it has no name
2715 * and we won't be entering it in the hash tables - we must
2716 * push a macro-end marker for it on to istk->expansion.
2717 * After that, it will take care of propagating itself (a
2718 * macro-end marker line for a macro which is really a %rep
2719 * block will cause the macro to be re-expanded, complete
2720 * with another macro-end marker to ensure the process
2721 * continues) until the whole expansion is forcibly removed
2722 * from istk->expansion by a %exitrep.
2723 */
2724 l = nasm_malloc(sizeof(Line));
2725 l->next = istk->expansion;
2726 l->finishes = defining;
2727 l->first = NULL;
2728 istk->expansion = l;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002729
H. Peter Anvine2c80182005-01-15 22:15:51 +00002730 istk->mstk = defining;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002731
H. Peter Anvine2c80182005-01-15 22:15:51 +00002732 list->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
2733 tmp_defining = defining;
2734 defining = defining->rep_nest;
2735 free_tlist(origline);
2736 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002737
H. Peter Anvine2c80182005-01-15 22:15:51 +00002738 case PP_EXITREP:
2739 /*
2740 * We must search along istk->expansion until we hit a
2741 * macro-end marker for a macro with no name. Then we set
2742 * its `in_progress' flag to 0.
2743 */
2744 for (l = istk->expansion; l; l = l->next)
2745 if (l->finishes && !l->finishes->name)
H. Peter Anvinca348b62008-07-23 10:49:26 -04002746 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002747
H. Peter Anvine2c80182005-01-15 22:15:51 +00002748 if (l)
Charles Crayned4200be2008-07-12 16:42:33 -07002749 l->finishes->in_progress = 1;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002750 else
2751 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
2752 free_tlist(origline);
2753 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002754
H. Peter Anvine2c80182005-01-15 22:15:51 +00002755 case PP_XDEFINE:
2756 case PP_IXDEFINE:
2757 case PP_DEFINE:
2758 case PP_IDEFINE:
H. Peter Anvin95e7f952007-10-11 13:38:38 -07002759 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002760
H. Peter Anvine2c80182005-01-15 22:15:51 +00002761 tline = tline->next;
2762 skip_white_(tline);
2763 tline = expand_id(tline);
2764 if (!tline || (tline->type != TOK_ID &&
2765 (tline->type != TOK_PREPROC_ID ||
2766 tline->text[1] != '$'))) {
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002767 error(ERR_NONFATAL, "`%s' expects a macro identifier",
2768 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002769 free_tlist(origline);
2770 return DIRECTIVE_FOUND;
2771 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002772
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002773 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002774 last = tline;
2775 param_start = tline = tline->next;
2776 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002777
H. Peter Anvine2c80182005-01-15 22:15:51 +00002778 /* Expand the macro definition now for %xdefine and %ixdefine */
2779 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
2780 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002781
H. Peter Anvine2c80182005-01-15 22:15:51 +00002782 if (tok_is_(tline, "(")) {
2783 /*
2784 * This macro has parameters.
2785 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00002786
H. Peter Anvine2c80182005-01-15 22:15:51 +00002787 tline = tline->next;
2788 while (1) {
2789 skip_white_(tline);
2790 if (!tline) {
2791 error(ERR_NONFATAL, "parameter identifier expected");
2792 free_tlist(origline);
2793 return DIRECTIVE_FOUND;
2794 }
2795 if (tline->type != TOK_ID) {
2796 error(ERR_NONFATAL,
2797 "`%s': parameter identifier expected",
2798 tline->text);
2799 free_tlist(origline);
2800 return DIRECTIVE_FOUND;
2801 }
2802 tline->type = TOK_SMAC_PARAM + nparam++;
2803 tline = tline->next;
2804 skip_white_(tline);
2805 if (tok_is_(tline, ",")) {
2806 tline = tline->next;
H. Peter Anvinca348b62008-07-23 10:49:26 -04002807 } else {
2808 if (!tok_is_(tline, ")")) {
2809 error(ERR_NONFATAL,
2810 "`)' expected to terminate macro template");
2811 free_tlist(origline);
2812 return DIRECTIVE_FOUND;
2813 }
2814 break;
2815 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00002816 }
2817 last = tline;
2818 tline = tline->next;
2819 }
2820 if (tok_type_(tline, TOK_WHITESPACE))
2821 last = tline, tline = tline->next;
2822 macro_start = NULL;
2823 last->next = NULL;
2824 t = tline;
2825 while (t) {
2826 if (t->type == TOK_ID) {
2827 for (tt = param_start; tt; tt = tt->next)
2828 if (tt->type >= TOK_SMAC_PARAM &&
2829 !strcmp(tt->text, t->text))
2830 t->type = tt->type;
2831 }
2832 tt = t->next;
2833 t->next = macro_start;
2834 macro_start = t;
2835 t = tt;
2836 }
2837 /*
2838 * Good. We now have a macro name, a parameter count, and a
2839 * token list (in reverse order) for an expansion. We ought
2840 * to be OK just to create an SMacro, store it, and let
2841 * free_tlist have the rest of the line (which we have
2842 * carefully re-terminated after chopping off the expansion
2843 * from the end).
2844 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002845 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002846 free_tlist(origline);
2847 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002848
H. Peter Anvine2c80182005-01-15 22:15:51 +00002849 case PP_UNDEF:
2850 tline = tline->next;
2851 skip_white_(tline);
2852 tline = expand_id(tline);
2853 if (!tline || (tline->type != TOK_ID &&
2854 (tline->type != TOK_PREPROC_ID ||
2855 tline->text[1] != '$'))) {
2856 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
2857 free_tlist(origline);
2858 return DIRECTIVE_FOUND;
2859 }
2860 if (tline->next) {
H. Peter Anvin917a3492008-09-24 09:14:49 -07002861 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00002862 "trailing garbage after macro name ignored");
2863 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002864
H. Peter Anvine2c80182005-01-15 22:15:51 +00002865 /* Find the context that symbol belongs to */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002866 ctx = get_ctx(tline->text, &mname, false);
2867 undef_smacro(ctx, mname);
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002868 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002869 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002870
H. Peter Anvin9e200162008-06-04 17:23:14 -07002871 case PP_DEFSTR:
2872 case PP_IDEFSTR:
2873 casesense = (i == PP_DEFSTR);
2874
2875 tline = tline->next;
2876 skip_white_(tline);
2877 tline = expand_id(tline);
2878 if (!tline || (tline->type != TOK_ID &&
2879 (tline->type != TOK_PREPROC_ID ||
2880 tline->text[1] != '$'))) {
2881 error(ERR_NONFATAL, "`%s' expects a macro identifier",
2882 pp_directives[i]);
2883 free_tlist(origline);
2884 return DIRECTIVE_FOUND;
2885 }
2886
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002887 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvin9e200162008-06-04 17:23:14 -07002888 last = tline;
2889 tline = expand_smacro(tline->next);
2890 last->next = NULL;
2891
2892 while (tok_type_(tline, TOK_WHITESPACE))
2893 tline = delete_Token(tline);
2894
2895 p = detoken(tline, false);
2896 macro_start = nasm_malloc(sizeof(*macro_start));
2897 macro_start->next = NULL;
2898 macro_start->text = nasm_quote(p, strlen(p));
2899 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002900 macro_start->a.mac = NULL;
H. Peter Anvin9e200162008-06-04 17:23:14 -07002901 nasm_free(p);
2902
2903 /*
2904 * We now have a macro name, an implicit parameter count of
2905 * zero, and a string token to use as an expansion. Create
2906 * and store an SMacro.
2907 */
2908 define_smacro(ctx, mname, casesense, 0, macro_start);
2909 free_tlist(origline);
2910 return DIRECTIVE_FOUND;
2911
H. Peter Anvin418ca702008-05-30 10:42:30 -07002912 case PP_PATHSEARCH:
2913 {
2914 FILE *fp;
2915 StrList *xsl = NULL;
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002916 StrList **xst = &xsl;
H. Peter Anvin418ca702008-05-30 10:42:30 -07002917
2918 casesense = true;
2919
2920 tline = tline->next;
2921 skip_white_(tline);
2922 tline = expand_id(tline);
2923 if (!tline || (tline->type != TOK_ID &&
2924 (tline->type != TOK_PREPROC_ID ||
2925 tline->text[1] != '$'))) {
2926 error(ERR_NONFATAL,
2927 "`%%pathsearch' expects a macro identifier as first parameter");
2928 free_tlist(origline);
2929 return DIRECTIVE_FOUND;
2930 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002931 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002932 last = tline;
2933 tline = expand_smacro(tline->next);
2934 last->next = NULL;
2935
2936 t = tline;
2937 while (tok_type_(t, TOK_WHITESPACE))
2938 t = t->next;
2939
2940 if (!t || (t->type != TOK_STRING &&
2941 t->type != TOK_INTERNAL_STRING)) {
2942 error(ERR_NONFATAL, "`%%pathsearch' expects a file name");
2943 free_tlist(tline);
2944 free_tlist(origline);
2945 return DIRECTIVE_FOUND; /* but we did _something_ */
2946 }
2947 if (t->next)
H. Peter Anvin917a3492008-09-24 09:14:49 -07002948 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvin418ca702008-05-30 10:42:30 -07002949 "trailing garbage after `%%pathsearch' ignored");
H. Peter Anvin427cc912008-06-01 21:43:03 -07002950 p = t->text;
2951 if (t->type != TOK_INTERNAL_STRING)
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07002952 nasm_unquote(p, NULL);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002953
H. Peter Anvin2b1c3b92008-06-06 10:38:46 -07002954 fp = inc_fopen(p, &xsl, &xst, true);
H. Peter Anvin418ca702008-05-30 10:42:30 -07002955 if (fp) {
2956 p = xsl->str;
2957 fclose(fp); /* Don't actually care about the file */
2958 }
2959 macro_start = nasm_malloc(sizeof(*macro_start));
2960 macro_start->next = NULL;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07002961 macro_start->text = nasm_quote(p, strlen(p));
H. Peter Anvin418ca702008-05-30 10:42:30 -07002962 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07002963 macro_start->a.mac = NULL;
H. Peter Anvin418ca702008-05-30 10:42:30 -07002964 if (xsl)
2965 nasm_free(xsl);
2966
2967 /*
2968 * We now have a macro name, an implicit parameter count of
2969 * zero, and a string token to use as an expansion. Create
2970 * and store an SMacro.
2971 */
2972 define_smacro(ctx, mname, casesense, 0, macro_start);
2973 free_tlist(tline);
2974 free_tlist(origline);
2975 return DIRECTIVE_FOUND;
2976 }
2977
H. Peter Anvine2c80182005-01-15 22:15:51 +00002978 case PP_STRLEN:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002979 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07002980
H. Peter Anvine2c80182005-01-15 22:15:51 +00002981 tline = tline->next;
2982 skip_white_(tline);
2983 tline = expand_id(tline);
2984 if (!tline || (tline->type != TOK_ID &&
2985 (tline->type != TOK_PREPROC_ID ||
2986 tline->text[1] != '$'))) {
2987 error(ERR_NONFATAL,
2988 "`%%strlen' expects a macro identifier as first parameter");
2989 free_tlist(origline);
2990 return DIRECTIVE_FOUND;
2991 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08002992 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002993 last = tline;
2994 tline = expand_smacro(tline->next);
2995 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002996
H. Peter Anvine2c80182005-01-15 22:15:51 +00002997 t = tline;
2998 while (tok_type_(t, TOK_WHITESPACE))
2999 t = t->next;
3000 /* t should now point to the string */
3001 if (t->type != TOK_STRING) {
3002 error(ERR_NONFATAL,
3003 "`%%strlen` requires string as second parameter");
3004 free_tlist(tline);
3005 free_tlist(origline);
3006 return DIRECTIVE_FOUND;
3007 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003008
H. Peter Anvine2c80182005-01-15 22:15:51 +00003009 macro_start = nasm_malloc(sizeof(*macro_start));
3010 macro_start->next = NULL;
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003011 make_tok_num(macro_start, nasm_unquote(t->text, NULL));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003012 macro_start->a.mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003013
H. Peter Anvine2c80182005-01-15 22:15:51 +00003014 /*
3015 * We now have a macro name, an implicit parameter count of
3016 * zero, and a numeric token to use as an expansion. Create
3017 * and store an SMacro.
3018 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003019 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003020 free_tlist(tline);
3021 free_tlist(origline);
3022 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003023
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003024 case PP_STRCAT:
3025 casesense = true;
3026
3027 tline = tline->next;
3028 skip_white_(tline);
3029 tline = expand_id(tline);
3030 if (!tline || (tline->type != TOK_ID &&
3031 (tline->type != TOK_PREPROC_ID ||
3032 tline->text[1] != '$'))) {
3033 error(ERR_NONFATAL,
3034 "`%%strcat' expects a macro identifier as first parameter");
3035 free_tlist(origline);
3036 return DIRECTIVE_FOUND;
3037 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003038 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003039 last = tline;
3040 tline = expand_smacro(tline->next);
3041 last->next = NULL;
3042
3043 len = 0;
3044 for (t = tline; t; t = t->next) {
3045 switch (t->type) {
3046 case TOK_WHITESPACE:
3047 break;
3048 case TOK_STRING:
3049 len += t->a.len = nasm_unquote(t->text, NULL);
3050 break;
H. Peter Anvinaccf4332008-07-01 21:42:08 -07003051 case TOK_OTHER:
3052 if (!strcmp(t->text, ",")) /* permit comma separators */
3053 break;
3054 /* else fall through */
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003055 default:
3056 error(ERR_NONFATAL,
3057 "non-string passed to `%%strcat' (%d)", t->type);
3058 free_tlist(tline);
3059 free_tlist(origline);
3060 return DIRECTIVE_FOUND;
3061 }
3062 }
3063
3064 p = pp = nasm_malloc(len);
3065 t = tline;
3066 for (t = tline; t; t = t->next) {
3067 if (t->type == TOK_STRING) {
3068 memcpy(p, t->text, t->a.len);
3069 p += t->a.len;
3070 }
3071 }
3072
3073 /*
3074 * We now have a macro name, an implicit parameter count of
3075 * zero, and a numeric token to use as an expansion. Create
3076 * and store an SMacro.
3077 */
3078 macro_start = new_Token(NULL, TOK_STRING, NULL, 0);
3079 macro_start->text = nasm_quote(pp, len);
3080 nasm_free(pp);
3081 define_smacro(ctx, mname, casesense, 0, macro_start);
3082 free_tlist(tline);
3083 free_tlist(origline);
3084 return DIRECTIVE_FOUND;
3085
H. Peter Anvine2c80182005-01-15 22:15:51 +00003086 case PP_SUBSTR:
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003087 {
3088 int64_t a1, a2;
3089 size_t len;
H. Peter Anvind2456592008-06-19 15:04:18 -07003090
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003091 casesense = true;
3092
H. Peter Anvine2c80182005-01-15 22:15:51 +00003093 tline = tline->next;
3094 skip_white_(tline);
3095 tline = expand_id(tline);
3096 if (!tline || (tline->type != TOK_ID &&
3097 (tline->type != TOK_PREPROC_ID ||
3098 tline->text[1] != '$'))) {
3099 error(ERR_NONFATAL,
3100 "`%%substr' expects a macro identifier as first parameter");
3101 free_tlist(origline);
3102 return DIRECTIVE_FOUND;
3103 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003104 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003105 last = tline;
3106 tline = expand_smacro(tline->next);
3107 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003108
H. Peter Anvine2c80182005-01-15 22:15:51 +00003109 t = tline->next;
3110 while (tok_type_(t, TOK_WHITESPACE))
3111 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003112
H. Peter Anvine2c80182005-01-15 22:15:51 +00003113 /* t should now point to the string */
3114 if (t->type != TOK_STRING) {
3115 error(ERR_NONFATAL,
3116 "`%%substr` requires string as second parameter");
3117 free_tlist(tline);
3118 free_tlist(origline);
3119 return DIRECTIVE_FOUND;
3120 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003121
H. Peter Anvine2c80182005-01-15 22:15:51 +00003122 tt = t->next;
3123 tptr = &tt;
3124 tokval.t_type = TOKEN_INVALID;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003125 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3126 pass, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003127 if (!evalresult) {
3128 free_tlist(tline);
3129 free_tlist(origline);
3130 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003131 } else if (!is_simple(evalresult)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003132 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3133 free_tlist(tline);
3134 free_tlist(origline);
3135 return DIRECTIVE_FOUND;
3136 }
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003137 a1 = evalresult->value-1;
3138
3139 while (tok_type_(tt, TOK_WHITESPACE))
3140 tt = tt->next;
3141 if (!tt) {
3142 a2 = 1; /* Backwards compatibility: one character */
3143 } else {
3144 tokval.t_type = TOKEN_INVALID;
3145 evalresult = evaluate(ppscan, tptr, &tokval, NULL,
3146 pass, error, NULL);
3147 if (!evalresult) {
3148 free_tlist(tline);
3149 free_tlist(origline);
3150 return DIRECTIVE_FOUND;
3151 } else if (!is_simple(evalresult)) {
3152 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
3153 free_tlist(tline);
3154 free_tlist(origline);
3155 return DIRECTIVE_FOUND;
3156 }
3157 a2 = evalresult->value;
3158 }
3159
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -07003160 len = nasm_unquote(t->text, NULL);
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003161 if (a2 < 0)
3162 a2 = a2+1+len-a1;
3163 if (a1+a2 > (int64_t)len)
3164 a2 = len-a1;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00003165
H. Peter Anvine2c80182005-01-15 22:15:51 +00003166 macro_start = nasm_malloc(sizeof(*macro_start));
3167 macro_start->next = NULL;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003168 macro_start->text = nasm_quote((a1 < 0) ? "" : t->text+a1, a2);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003169 macro_start->type = TOK_STRING;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003170 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003171
H. Peter Anvine2c80182005-01-15 22:15:51 +00003172 /*
3173 * We now have a macro name, an implicit parameter count of
3174 * zero, and a numeric token to use as an expansion. Create
3175 * and store an SMacro.
3176 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003177 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003178 free_tlist(tline);
3179 free_tlist(origline);
3180 return DIRECTIVE_FOUND;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003181 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003182
H. Peter Anvine2c80182005-01-15 22:15:51 +00003183 case PP_ASSIGN:
3184 case PP_IASSIGN:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07003185 casesense = (i == PP_ASSIGN);
3186
H. Peter Anvine2c80182005-01-15 22:15:51 +00003187 tline = tline->next;
3188 skip_white_(tline);
3189 tline = expand_id(tline);
3190 if (!tline || (tline->type != TOK_ID &&
3191 (tline->type != TOK_PREPROC_ID ||
3192 tline->text[1] != '$'))) {
3193 error(ERR_NONFATAL,
3194 "`%%%sassign' expects a macro identifier",
3195 (i == PP_IASSIGN ? "i" : ""));
3196 free_tlist(origline);
3197 return DIRECTIVE_FOUND;
3198 }
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003199 ctx = get_ctx(tline->text, &mname, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003200 last = tline;
3201 tline = expand_smacro(tline->next);
3202 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003203
H. Peter Anvine2c80182005-01-15 22:15:51 +00003204 t = tline;
3205 tptr = &t;
3206 tokval.t_type = TOKEN_INVALID;
3207 evalresult =
3208 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
3209 free_tlist(tline);
3210 if (!evalresult) {
3211 free_tlist(origline);
3212 return DIRECTIVE_FOUND;
3213 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003214
H. Peter Anvine2c80182005-01-15 22:15:51 +00003215 if (tokval.t_type)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003216 error(ERR_WARNING|ERR_PASS1,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003217 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00003218
H. Peter Anvine2c80182005-01-15 22:15:51 +00003219 if (!is_simple(evalresult)) {
3220 error(ERR_NONFATAL,
3221 "non-constant value given to `%%%sassign'",
3222 (i == PP_IASSIGN ? "i" : ""));
3223 free_tlist(origline);
3224 return DIRECTIVE_FOUND;
3225 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003226
H. Peter Anvine2c80182005-01-15 22:15:51 +00003227 macro_start = nasm_malloc(sizeof(*macro_start));
3228 macro_start->next = NULL;
3229 make_tok_num(macro_start, reloc_value(evalresult));
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003230 macro_start->a.mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003231
H. Peter Anvine2c80182005-01-15 22:15:51 +00003232 /*
3233 * We now have a macro name, an implicit parameter count of
3234 * zero, and a numeric token to use as an expansion. Create
3235 * and store an SMacro.
3236 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07003237 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003238 free_tlist(origline);
3239 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003240
H. Peter Anvine2c80182005-01-15 22:15:51 +00003241 case PP_LINE:
3242 /*
3243 * Syntax is `%line nnn[+mmm] [filename]'
3244 */
3245 tline = tline->next;
3246 skip_white_(tline);
3247 if (!tok_type_(tline, TOK_NUMBER)) {
3248 error(ERR_NONFATAL, "`%%line' expects line number");
3249 free_tlist(origline);
3250 return DIRECTIVE_FOUND;
3251 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003252 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003253 m = 1;
3254 tline = tline->next;
3255 if (tok_is_(tline, "+")) {
3256 tline = tline->next;
3257 if (!tok_type_(tline, TOK_NUMBER)) {
3258 error(ERR_NONFATAL, "`%%line' expects line increment");
3259 free_tlist(origline);
3260 return DIRECTIVE_FOUND;
3261 }
H. Peter Anvin70055962007-10-11 00:05:31 -07003262 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003263 tline = tline->next;
3264 }
3265 skip_white_(tline);
3266 src_set_linnum(k);
3267 istk->lineinc = m;
3268 if (tline) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003269 nasm_free(src_set_fname(detoken(tline, false)));
H. Peter Anvine2c80182005-01-15 22:15:51 +00003270 }
3271 free_tlist(origline);
3272 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003273
H. Peter Anvine2c80182005-01-15 22:15:51 +00003274 default:
3275 error(ERR_FATAL,
3276 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00003277 pp_directives[i]);
H. Peter Anvina26433d2008-07-16 14:40:01 -07003278 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003279 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003280}
3281
3282/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00003283 * Ensure that a macro parameter contains a condition code and
3284 * nothing else. Return the condition code index if so, or -1
3285 * otherwise.
3286 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003287static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003288{
H. Peter Anvin76690a12002-04-30 20:52:49 +00003289 Token *tt;
3290 int i, j, k, m;
3291
H. Peter Anvin25a99342007-09-22 17:45:45 -07003292 if (!t)
3293 return -1; /* Probably a %+ without a space */
3294
H. Peter Anvineba20a72002-04-30 20:53:55 +00003295 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003296 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003297 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003298 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003299 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003300 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003301 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003302
3303 i = -1;
Ed Beroset3ab3f412002-06-11 03:31:49 +00003304 j = elements(conditions);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003305 while (j - i > 1) {
3306 k = (j + i) / 2;
3307 m = nasm_stricmp(t->text, conditions[k]);
3308 if (m == 0) {
3309 i = k;
3310 j = -2;
3311 break;
3312 } else if (m < 0) {
3313 j = k;
3314 } else
3315 i = k;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003316 }
3317 if (j != -2)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003318 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003319 return i;
3320}
3321
3322/*
3323 * Expand MMacro-local things: parameter references (%0, %n, %+n,
H. Peter Anvin67c63722008-10-26 23:49:00 -07003324 * %-n) and MMacro-local identifiers (%%foo) as well as
3325 * macro indirection (%[...]).
H. Peter Anvin76690a12002-04-30 20:52:49 +00003326 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003327static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003328{
H. Peter Anvin734b1882002-04-30 21:01:08 +00003329 Token *t, *tt, **tail, *thead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003330
3331 tail = &thead;
3332 thead = NULL;
3333
H. Peter Anvine2c80182005-01-15 22:15:51 +00003334 while (tline) {
3335 if (tline->type == TOK_PREPROC_ID &&
3336 (((tline->text[1] == '+' || tline->text[1] == '-')
3337 && tline->text[2]) || tline->text[1] == '%'
3338 || (tline->text[1] >= '0' && tline->text[1] <= '9'))) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003339 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003340 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003341 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07003342 unsigned int n;
3343 int i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003344 MMacro *mac;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003345
H. Peter Anvine2c80182005-01-15 22:15:51 +00003346 t = tline;
3347 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003348
H. Peter Anvine2c80182005-01-15 22:15:51 +00003349 mac = istk->mstk;
3350 while (mac && !mac->name) /* avoid mistaking %reps for macros */
3351 mac = mac->next_active;
3352 if (!mac)
3353 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
3354 else
3355 switch (t->text[1]) {
3356 /*
3357 * We have to make a substitution of one of the
3358 * forms %1, %-1, %+1, %%foo, %0.
3359 */
3360 case '0':
3361 type = TOK_NUMBER;
3362 snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam);
3363 text = nasm_strdup(tmpbuf);
3364 break;
3365 case '%':
3366 type = TOK_ID;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07003367 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
H. Peter Anvine2c80182005-01-15 22:15:51 +00003368 mac->unique);
3369 text = nasm_strcat(tmpbuf, t->text + 2);
3370 break;
3371 case '-':
3372 n = atoi(t->text + 2) - 1;
3373 if (n >= mac->nparam)
3374 tt = NULL;
3375 else {
3376 if (mac->nparam > 1)
3377 n = (n + mac->rotate) % mac->nparam;
3378 tt = mac->params[n];
3379 }
3380 cc = find_cc(tt);
3381 if (cc == -1) {
3382 error(ERR_NONFATAL,
3383 "macro parameter %d is not a condition code",
3384 n + 1);
3385 text = NULL;
3386 } else {
3387 type = TOK_ID;
3388 if (inverse_ccs[cc] == -1) {
3389 error(ERR_NONFATAL,
3390 "condition code `%s' is not invertible",
3391 conditions[cc]);
3392 text = NULL;
3393 } else
H. Peter Anvin67c63722008-10-26 23:49:00 -07003394 text = nasm_strdup(conditions[inverse_ccs[cc]]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003395 }
3396 break;
3397 case '+':
3398 n = atoi(t->text + 2) - 1;
3399 if (n >= mac->nparam)
3400 tt = NULL;
3401 else {
3402 if (mac->nparam > 1)
3403 n = (n + mac->rotate) % mac->nparam;
3404 tt = mac->params[n];
3405 }
3406 cc = find_cc(tt);
3407 if (cc == -1) {
3408 error(ERR_NONFATAL,
3409 "macro parameter %d is not a condition code",
3410 n + 1);
3411 text = NULL;
3412 } else {
3413 type = TOK_ID;
3414 text = nasm_strdup(conditions[cc]);
3415 }
3416 break;
3417 default:
3418 n = atoi(t->text + 1) - 1;
3419 if (n >= mac->nparam)
3420 tt = NULL;
3421 else {
3422 if (mac->nparam > 1)
3423 n = (n + mac->rotate) % mac->nparam;
3424 tt = mac->params[n];
3425 }
3426 if (tt) {
3427 for (i = 0; i < mac->paramlen[n]; i++) {
3428 *tail = new_Token(NULL, tt->type, tt->text, 0);
3429 tail = &(*tail)->next;
3430 tt = tt->next;
3431 }
3432 }
3433 text = NULL; /* we've done it here */
3434 break;
3435 }
3436 if (!text) {
3437 delete_Token(t);
3438 } else {
3439 *tail = t;
3440 tail = &t->next;
3441 t->type = type;
3442 nasm_free(t->text);
3443 t->text = text;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003444 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003445 }
3446 continue;
H. Peter Anvin67c63722008-10-26 23:49:00 -07003447 } else if (tline->type == TOK_INDIRECT) {
3448 t = tline;
3449 tline = tline->next;
3450 tt = tokenize(t->text);
3451 tt = expand_mmac_params(tt);
3452 tt = expand_smacro(tt);
3453 *tail = tt;
3454 while (tt) {
3455 tt->a.mac = NULL; /* Necessary? */
3456 tail = &tt->next;
3457 tt = tt->next;
3458 }
3459 delete_Token(t);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003460 } else {
3461 t = *tail = tline;
3462 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003463 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003464 tail = &t->next;
3465 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00003466 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00003467 *tail = NULL;
H. Peter Anvin67c63722008-10-26 23:49:00 -07003468
3469 /* Now handle token pasting... */
H. Peter Anvineba20a72002-04-30 20:53:55 +00003470 t = thead;
H. Peter Anvin67c63722008-10-26 23:49:00 -07003471 while (t && (tt = t->next)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003472 switch (t->type) {
3473 case TOK_WHITESPACE:
3474 if (tt->type == TOK_WHITESPACE) {
3475 t->next = delete_Token(tt);
H. Peter Anvin67c63722008-10-26 23:49:00 -07003476 } else {
3477 t = tt;
3478 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003479 break;
3480 case TOK_ID:
H. Peter Anvine2c80182005-01-15 22:15:51 +00003481 case TOK_NUMBER:
H. Peter Anvin992fe752008-10-19 15:45:05 -07003482 if (tt->type == t->type || tt->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003483 char *tmp = nasm_strcat(t->text, tt->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003484 nasm_free(t->text);
3485 t->text = tmp;
3486 t->next = delete_Token(tt);
H. Peter Anvin67c63722008-10-26 23:49:00 -07003487 } else {
3488 t = tt;
3489 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003490 break;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00003491 default:
H. Peter Anvin67c63722008-10-26 23:49:00 -07003492 t = tt;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00003493 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003494 }
H. Peter Anvin67c63722008-10-26 23:49:00 -07003495 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00003496 return thead;
3497}
3498
3499/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003500 * Expand all single-line macro calls made in the given line.
3501 * Return the expanded version of the line. The original is deemed
3502 * to be destroyed in the process. (In reality we'll just move
3503 * Tokens from input to output a lot of the time, rather than
3504 * actually bothering to destroy and replicate.)
3505 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003506#define DEADMAN_LIMIT (1 << 20)
3507
H. Peter Anvine2c80182005-01-15 22:15:51 +00003508static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003509{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003510 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvin166c2472008-05-28 12:28:58 -07003511 struct hash_table *smtbl;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003512 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003513 Token **params;
3514 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07003515 unsigned int nparam, sparam;
3516 int brackets, rescan;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003517 Token *org_tline = tline;
3518 Context *ctx;
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003519 const char *mname;
H. Peter Anvin2a15e692007-11-19 13:14:59 -08003520 int deadman = DEADMAN_LIMIT;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003521
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003522 /*
3523 * Trick: we should avoid changing the start token pointer since it can
3524 * be contained in "next" field of other token. Because of this
3525 * we allocate a copy of first token and work with it; at the end of
3526 * routine we copy it back
3527 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003528 if (org_tline) {
3529 tline =
3530 new_Token(org_tline->next, org_tline->type, org_tline->text,
3531 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003532 tline->a.mac = org_tline->a.mac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003533 nasm_free(org_tline->text);
3534 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003535 }
3536
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003537again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003538 tail = &thead;
3539 thead = NULL;
3540
H. Peter Anvine2c80182005-01-15 22:15:51 +00003541 while (tline) { /* main token loop */
H. Peter Anvin2a15e692007-11-19 13:14:59 -08003542 if (!--deadman) {
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003543 error(ERR_NONFATAL, "interminable macro recursion");
3544 break;
3545 }
3546
H. Peter Anvine2c80182005-01-15 22:15:51 +00003547 if ((mname = tline->text)) {
3548 /* if this token is a local macro, look in local context */
H. Peter Anvinf8ad5322009-02-21 17:55:08 -08003549 if (tline->type == TOK_ID || tline->type == TOK_PREPROC_ID)
3550 ctx = get_ctx(mname, &mname, true);
3551 else
3552 ctx = NULL;
3553 smtbl = ctx ? &ctx->localmac : &smacros;
H. Peter Anvin166c2472008-05-28 12:28:58 -07003554 head = (SMacro *) hash_findix(smtbl, mname);
H. Peter Anvin072771e2008-05-22 13:17:51 -07003555
H. Peter Anvine2c80182005-01-15 22:15:51 +00003556 /*
3557 * We've hit an identifier. As in is_mmacro below, we first
3558 * check whether the identifier is a single-line macro at
3559 * all, then think about checking for parameters if
3560 * necessary.
3561 */
H. Peter Anvin97a23472007-09-16 17:57:25 -07003562 for (m = head; m; m = m->next)
3563 if (!mstrcmp(m->name, mname, m->casesense))
3564 break;
3565 if (m) {
3566 mstart = tline;
3567 params = NULL;
3568 paramsize = NULL;
3569 if (m->nparam == 0) {
3570 /*
3571 * Simple case: the macro is parameterless. Discard the
3572 * one token that the macro call took, and push the
3573 * expansion back on the to-do stack.
3574 */
3575 if (!m->expansion) {
3576 if (!strcmp("__FILE__", m->name)) {
3577 int32_t num = 0;
H. Peter Anvin932de6c2008-07-31 18:46:11 -07003578 char *file = NULL;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003579 src_get(&num, &file);
3580 tline->text = nasm_quote(file, strlen(file));
H. Peter Anvin97a23472007-09-16 17:57:25 -07003581 tline->type = TOK_STRING;
H. Peter Anvin8cad14b2008-06-01 17:23:51 -07003582 nasm_free(file);
H. Peter Anvin97a23472007-09-16 17:57:25 -07003583 continue;
3584 }
3585 if (!strcmp("__LINE__", m->name)) {
3586 nasm_free(tline->text);
3587 make_tok_num(tline, src_get_linnum());
3588 continue;
3589 }
3590 if (!strcmp("__BITS__", m->name)) {
3591 nasm_free(tline->text);
3592 make_tok_num(tline, globalbits);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003593 continue;
H. Peter Anvin97a23472007-09-16 17:57:25 -07003594 }
3595 tline = delete_Token(tline);
3596 continue;
3597 }
3598 } else {
3599 /*
3600 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00003601 * exists and takes parameters. We must find the
3602 * parameters in the call, count them, find the SMacro
3603 * that corresponds to that form of the macro call, and
3604 * substitute for the parameters when we expand. What a
3605 * pain.
3606 */
3607 /*tline = tline->next;
3608 skip_white_(tline); */
3609 do {
3610 t = tline->next;
3611 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003612 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003613 t->text = NULL;
3614 t = tline->next = delete_Token(t);
3615 }
3616 tline = t;
3617 } while (tok_type_(tline, TOK_WHITESPACE));
3618 if (!tok_is_(tline, "(")) {
3619 /*
3620 * This macro wasn't called with parameters: ignore
3621 * the call. (Behaviour borrowed from gnu cpp.)
3622 */
3623 tline = mstart;
3624 m = NULL;
3625 } else {
3626 int paren = 0;
3627 int white = 0;
3628 brackets = 0;
3629 nparam = 0;
3630 sparam = PARAM_DELTA;
3631 params = nasm_malloc(sparam * sizeof(Token *));
3632 params[0] = tline->next;
3633 paramsize = nasm_malloc(sparam * sizeof(int));
3634 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003635 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003636 /*
3637 * For some unusual expansions
3638 * which concatenates function call
3639 */
3640 t = tline->next;
3641 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003642 t->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003643 t->text = NULL;
3644 t = tline->next = delete_Token(t);
3645 }
3646 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003647
H. Peter Anvine2c80182005-01-15 22:15:51 +00003648 if (!tline) {
3649 error(ERR_NONFATAL,
3650 "macro call expects terminating `)'");
3651 break;
3652 }
3653 if (tline->type == TOK_WHITESPACE
3654 && brackets <= 0) {
3655 if (paramsize[nparam])
3656 white++;
3657 else
3658 params[nparam] = tline->next;
3659 continue; /* parameter loop */
3660 }
3661 if (tline->type == TOK_OTHER
3662 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003663 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00003664 if (ch == ',' && !paren && brackets <= 0) {
3665 if (++nparam >= sparam) {
3666 sparam += PARAM_DELTA;
3667 params = nasm_realloc(params,
3668 sparam *
3669 sizeof(Token
3670 *));
3671 paramsize =
3672 nasm_realloc(paramsize,
3673 sparam *
3674 sizeof(int));
3675 }
3676 params[nparam] = tline->next;
3677 paramsize[nparam] = 0;
3678 white = 0;
3679 continue; /* parameter loop */
3680 }
3681 if (ch == '{' &&
3682 (brackets > 0 || (brackets == 0 &&
3683 !paramsize[nparam])))
3684 {
3685 if (!(brackets++)) {
3686 params[nparam] = tline->next;
3687 continue; /* parameter loop */
3688 }
3689 }
3690 if (ch == '}' && brackets > 0)
3691 if (--brackets == 0) {
3692 brackets = -1;
3693 continue; /* parameter loop */
3694 }
3695 if (ch == '(' && !brackets)
3696 paren++;
3697 if (ch == ')' && brackets <= 0)
3698 if (--paren < 0)
3699 break;
3700 }
3701 if (brackets < 0) {
3702 brackets = 0;
3703 error(ERR_NONFATAL, "braces do not "
3704 "enclose all of macro parameter");
3705 }
3706 paramsize[nparam] += white + 1;
3707 white = 0;
3708 } /* parameter loop */
3709 nparam++;
3710 while (m && (m->nparam != nparam ||
3711 mstrcmp(m->name, mname,
3712 m->casesense)))
3713 m = m->next;
3714 if (!m)
H. Peter Anvin917a3492008-09-24 09:14:49 -07003715 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003716 "macro `%s' exists, "
3717 "but not taking %d parameters",
3718 mstart->text, nparam);
3719 }
3720 }
3721 if (m && m->in_progress)
3722 m = NULL;
3723 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07003724 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00003725 * Design question: should we handle !tline, which
3726 * indicates missing ')' here, or expand those
3727 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07003728 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00003729 */
3730 nasm_free(params);
3731 nasm_free(paramsize);
3732 tline = mstart;
3733 } else {
3734 /*
3735 * Expand the macro: we are placed on the last token of the
3736 * call, so that we can easily split the call from the
3737 * following tokens. We also start by pushing an SMAC_END
3738 * token for the cycle removal.
3739 */
3740 t = tline;
3741 if (t) {
3742 tline = t->next;
3743 t->next = NULL;
3744 }
3745 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003746 tt->a.mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003747 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003748 tline = tt;
3749 for (t = m->expansion; t; t = t->next) {
3750 if (t->type >= TOK_SMAC_PARAM) {
3751 Token *pcopy = tline, **ptail = &pcopy;
3752 Token *ttt, *pt;
3753 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003754
H. Peter Anvine2c80182005-01-15 22:15:51 +00003755 ttt = params[t->type - TOK_SMAC_PARAM];
3756 for (i = paramsize[t->type - TOK_SMAC_PARAM];
3757 --i >= 0;) {
3758 pt = *ptail =
3759 new_Token(tline, ttt->type, ttt->text,
3760 0);
3761 ptail = &pt->next;
3762 ttt = ttt->next;
3763 }
3764 tline = pcopy;
H. Peter Anvin6c81f0a2008-05-25 21:46:17 -07003765 } else if (t->type == TOK_PREPROC_Q) {
3766 tt = new_Token(tline, TOK_ID, mname, 0);
3767 tline = tt;
3768 } else if (t->type == TOK_PREPROC_QQ) {
3769 tt = new_Token(tline, TOK_ID, m->name, 0);
3770 tline = tt;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003771 } else {
3772 tt = new_Token(tline, t->type, t->text, 0);
3773 tline = tt;
3774 }
3775 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003776
H. Peter Anvine2c80182005-01-15 22:15:51 +00003777 /*
3778 * Having done that, get rid of the macro call, and clean
3779 * up the parameters.
3780 */
3781 nasm_free(params);
3782 nasm_free(paramsize);
3783 free_tlist(mstart);
3784 continue; /* main token loop */
3785 }
3786 }
3787 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003788
H. Peter Anvine2c80182005-01-15 22:15:51 +00003789 if (tline->type == TOK_SMAC_END) {
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003790 tline->a.mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003791 tline = delete_Token(tline);
3792 } else {
3793 t = *tail = tline;
3794 tline = tline->next;
H. Peter Anvinf26e0972008-07-01 21:26:27 -07003795 t->a.mac = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003796 t->next = NULL;
3797 tail = &t->next;
3798 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003799 }
3800
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003801 /*
3802 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00003803 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003804 * TOK_IDs should be concatenated.
3805 * Also we look for %+ tokens and concatenate the tokens before and after
3806 * them (without white spaces in between).
3807 */
3808 t = thead;
3809 rescan = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003810 while (t) {
3811 while (t && t->type != TOK_ID && t->type != TOK_PREPROC_ID)
3812 t = t->next;
3813 if (!t || !t->next)
3814 break;
3815 if (t->next->type == TOK_ID ||
3816 t->next->type == TOK_PREPROC_ID ||
3817 t->next->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003818 char *p = nasm_strcat(t->text, t->next->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003819 nasm_free(t->text);
3820 t->next = delete_Token(t->next);
3821 t->text = p;
3822 rescan = 1;
3823 } else if (t->next->type == TOK_WHITESPACE && t->next->next &&
3824 t->next->next->type == TOK_PREPROC_ID &&
3825 strcmp(t->next->next->text, "%+") == 0) {
3826 /* free the next whitespace, the %+ token and next whitespace */
3827 int i;
3828 for (i = 1; i <= 3; i++) {
3829 if (!t->next
3830 || (i != 2 && t->next->type != TOK_WHITESPACE))
3831 break;
3832 t->next = delete_Token(t->next);
3833 } /* endfor */
3834 } else
3835 t = t->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003836 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003837 /* If we concatenaded something, re-scan the line for macros */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003838 if (rescan) {
3839 tline = thead;
3840 goto again;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003841 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003842
H. Peter Anvine2c80182005-01-15 22:15:51 +00003843 if (org_tline) {
3844 if (thead) {
3845 *org_tline = *thead;
3846 /* since we just gave text to org_line, don't free it */
3847 thead->text = NULL;
3848 delete_Token(thead);
3849 } else {
3850 /* the expression expanded to empty line;
3851 we can't return NULL for some reasons
3852 we just set the line to a single WHITESPACE token. */
3853 memset(org_tline, 0, sizeof(*org_tline));
3854 org_tline->text = NULL;
3855 org_tline->type = TOK_WHITESPACE;
3856 }
3857 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003858 }
3859
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003860 return thead;
3861}
3862
3863/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003864 * Similar to expand_smacro but used exclusively with macro identifiers
3865 * right before they are fetched in. The reason is that there can be
3866 * identifiers consisting of several subparts. We consider that if there
3867 * are more than one element forming the name, user wants a expansion,
3868 * otherwise it will be left as-is. Example:
3869 *
3870 * %define %$abc cde
3871 *
3872 * the identifier %$abc will be left as-is so that the handler for %define
3873 * will suck it and define the corresponding value. Other case:
3874 *
3875 * %define _%$abc cde
3876 *
3877 * In this case user wants name to be expanded *before* %define starts
3878 * working, so we'll expand %$abc into something (if it has a value;
3879 * otherwise it will be left as-is) then concatenate all successive
3880 * PP_IDs into one.
3881 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003882static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003883{
3884 Token *cur, *oldnext = NULL;
3885
H. Peter Anvin734b1882002-04-30 21:01:08 +00003886 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003887 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003888
3889 cur = tline;
3890 while (cur->next &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00003891 (cur->next->type == TOK_ID ||
3892 cur->next->type == TOK_PREPROC_ID
3893 || cur->next->type == TOK_NUMBER))
3894 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003895
3896 /* If identifier consists of just one token, don't expand */
3897 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003898 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003899
H. Peter Anvine2c80182005-01-15 22:15:51 +00003900 if (cur) {
3901 oldnext = cur->next; /* Detach the tail past identifier */
3902 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003903 }
3904
H. Peter Anvin734b1882002-04-30 21:01:08 +00003905 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003906
H. Peter Anvine2c80182005-01-15 22:15:51 +00003907 if (cur) {
3908 /* expand_smacro possibly changhed tline; re-scan for EOL */
3909 cur = tline;
3910 while (cur && cur->next)
3911 cur = cur->next;
3912 if (cur)
3913 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003914 }
3915
3916 return tline;
3917}
3918
3919/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003920 * Determine whether the given line constitutes a multi-line macro
3921 * call, and return the MMacro structure called if so. Doesn't have
3922 * to check for an initial label - that's taken care of in
3923 * expand_mmacro - but must check numbers of parameters. Guaranteed
3924 * to be called with tline->type == TOK_ID, so the putative macro
3925 * name is easy to find.
3926 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003927static MMacro *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003928{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003929 MMacro *head, *m;
3930 Token **params;
3931 int nparam;
3932
H. Peter Anvin166c2472008-05-28 12:28:58 -07003933 head = (MMacro *) hash_findix(&mmacros, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003934
3935 /*
3936 * Efficiency: first we see if any macro exists with the given
3937 * name. If not, we can return NULL immediately. _Then_ we
3938 * count the parameters, and then we look further along the
3939 * list if necessary to find the proper MMacro.
3940 */
3941 for (m = head; m; m = m->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003942 if (!mstrcmp(m->name, tline->text, m->casesense))
3943 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003944 if (!m)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003945 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003946
3947 /*
3948 * OK, we have a potential macro. Count and demarcate the
3949 * parameters.
3950 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003951 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003952
3953 /*
3954 * So we know how many parameters we've got. Find the MMacro
3955 * structure that handles this number.
3956 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003957 while (m) {
3958 if (m->nparam_min <= nparam
3959 && (m->plus || nparam <= m->nparam_max)) {
3960 /*
3961 * This one is right. Just check if cycle removal
3962 * prohibits us using it before we actually celebrate...
3963 */
3964 if (m->in_progress) {
H. Peter Anvineba20a72002-04-30 20:53:55 +00003965#if 0
H. Peter Anvine2c80182005-01-15 22:15:51 +00003966 error(ERR_NONFATAL,
3967 "self-reference in multi-line macro `%s'", m->name);
H. Peter Anvineba20a72002-04-30 20:53:55 +00003968#endif
H. Peter Anvine2c80182005-01-15 22:15:51 +00003969 nasm_free(params);
3970 return NULL;
3971 }
3972 /*
3973 * It's right, and we can use it. Add its default
3974 * parameters to the end of our list if necessary.
3975 */
3976 if (m->defaults && nparam < m->nparam_min + m->ndefs) {
3977 params =
3978 nasm_realloc(params,
3979 ((m->nparam_min + m->ndefs +
3980 1) * sizeof(*params)));
3981 while (nparam < m->nparam_min + m->ndefs) {
3982 params[nparam] = m->defaults[nparam - m->nparam_min];
3983 nparam++;
3984 }
3985 }
3986 /*
3987 * If we've gone over the maximum parameter count (and
3988 * we're in Plus mode), ignore parameters beyond
3989 * nparam_max.
3990 */
3991 if (m->plus && nparam > m->nparam_max)
3992 nparam = m->nparam_max;
3993 /*
3994 * Then terminate the parameter list, and leave.
3995 */
3996 if (!params) { /* need this special case */
3997 params = nasm_malloc(sizeof(*params));
3998 nparam = 0;
3999 }
4000 params[nparam] = NULL;
4001 *params_array = params;
4002 return m;
4003 }
4004 /*
4005 * This one wasn't right: look for the next one with the
4006 * same name.
4007 */
4008 for (m = m->next; m; m = m->next)
4009 if (!mstrcmp(m->name, tline->text, m->casesense))
4010 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004011 }
4012
4013 /*
4014 * After all that, we didn't find one with the right number of
4015 * parameters. Issue a warning, and fail to expand the macro.
4016 */
H. Peter Anvin917a3492008-09-24 09:14:49 -07004017 error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00004018 "macro `%s' exists, but not taking %d parameters",
4019 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004020 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004021 return NULL;
4022}
4023
4024/*
4025 * Expand the multi-line macro call made by the given line, if
4026 * there is one to be expanded. If there is, push the expansion on
H. Peter Anvineba20a72002-04-30 20:53:55 +00004027 * istk->expansion and return 1. Otherwise return 0.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004028 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004029static int expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004030{
4031 Token *startline = tline;
4032 Token *label = NULL;
4033 int dont_prepend = 0;
H. Peter Anvince2233b2008-05-25 21:57:00 -07004034 Token **params, *t, *mtok, *tt;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004035 MMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004036 Line *l, *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004037 int i, nparam, *paramlen;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004038 const char *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004039
4040 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004041 skip_white_(t);
H. Peter Anvince2233b2008-05-25 21:57:00 -07004042 /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00004043 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004044 return 0;
H. Peter Anvince2233b2008-05-25 21:57:00 -07004045 mtok = t;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004046 m = is_mmacro(t, &params);
H. Peter Anvinc751e862008-06-09 10:18:45 -07004047 if (m) {
4048 mname = t->text;
4049 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004050 Token *last;
4051 /*
4052 * We have an id which isn't a macro call. We'll assume
4053 * it might be a label; we'll also check to see if a
4054 * colon follows it. Then, if there's another id after
4055 * that lot, we'll check it again for macro-hood.
4056 */
4057 label = last = t;
4058 t = t->next;
4059 if (tok_type_(t, TOK_WHITESPACE))
4060 last = t, t = t->next;
4061 if (tok_is_(t, ":")) {
4062 dont_prepend = 1;
4063 last = t, t = t->next;
4064 if (tok_type_(t, TOK_WHITESPACE))
4065 last = t, t = t->next;
4066 }
4067 if (!tok_type_(t, TOK_ID) || (m = is_mmacro(t, &params)) == NULL)
4068 return 0;
4069 last->next = NULL;
H. Peter Anvinc751e862008-06-09 10:18:45 -07004070 mname = t->text;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004071 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00004072 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004073
4074 /*
4075 * Fix up the parameters: this involves stripping leading and
4076 * trailing whitespace, then stripping braces if they are
4077 * present.
4078 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004079 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00004080 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004081
H. Peter Anvine2c80182005-01-15 22:15:51 +00004082 for (i = 0; params[i]; i++) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004083 int brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004084 int comma = (!m->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004085
H. Peter Anvine2c80182005-01-15 22:15:51 +00004086 t = params[i];
4087 skip_white_(t);
4088 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004089 t = t->next, brace = true, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004090 params[i] = t;
4091 paramlen[i] = 0;
4092 while (t) {
4093 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
4094 break; /* ... because we have hit a comma */
4095 if (comma && t->type == TOK_WHITESPACE
4096 && tok_is_(t->next, ","))
4097 break; /* ... or a space then a comma */
4098 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
4099 break; /* ... or a brace */
4100 t = t->next;
4101 paramlen[i]++;
4102 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004103 }
4104
4105 /*
4106 * OK, we have a MMacro structure together with a set of
4107 * parameters. We must now go through the expansion and push
H. Peter Anvin76690a12002-04-30 20:52:49 +00004108 * copies of each Line on to istk->expansion. Substitution of
4109 * parameter tokens and macro-local tokens doesn't get done
4110 * until the single-line macro substitution process; this is
4111 * because delaying them allows us to change the semantics
4112 * later through %rotate.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004113 *
H. Peter Anvin76690a12002-04-30 20:52:49 +00004114 * First, push an end marker on to istk->expansion, mark this
4115 * macro as in progress, and set up its invocation-specific
4116 * variables.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004117 */
4118 ll = nasm_malloc(sizeof(Line));
4119 ll->next = istk->expansion;
4120 ll->finishes = m;
4121 ll->first = NULL;
4122 istk->expansion = ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004123
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004124 m->in_progress = true;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004125 m->params = params;
4126 m->iline = tline;
4127 m->nparam = nparam;
4128 m->rotate = 0;
4129 m->paramlen = paramlen;
4130 m->unique = unique++;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004131 m->lineno = 0;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004132
4133 m->next_active = istk->mstk;
4134 istk->mstk = m;
4135
H. Peter Anvine2c80182005-01-15 22:15:51 +00004136 for (l = m->expansion; l; l = l->next) {
4137 Token **tail;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004138
H. Peter Anvine2c80182005-01-15 22:15:51 +00004139 ll = nasm_malloc(sizeof(Line));
4140 ll->finishes = NULL;
4141 ll->next = istk->expansion;
4142 istk->expansion = ll;
4143 tail = &ll->first;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004144
H. Peter Anvine2c80182005-01-15 22:15:51 +00004145 for (t = l->first; t; t = t->next) {
4146 Token *x = t;
H. Peter Anvince2233b2008-05-25 21:57:00 -07004147 switch (t->type) {
4148 case TOK_PREPROC_Q:
H. Peter Anvinc751e862008-06-09 10:18:45 -07004149 tt = *tail = new_Token(NULL, TOK_ID, mname, 0);
H. Peter Anvince2233b2008-05-25 21:57:00 -07004150 break;
4151 case TOK_PREPROC_QQ:
4152 tt = *tail = new_Token(NULL, TOK_ID, m->name, 0);
4153 break;
4154 case TOK_PREPROC_ID:
4155 if (t->text[1] == '0' && t->text[2] == '0') {
4156 dont_prepend = -1;
4157 x = label;
4158 if (!x)
4159 continue;
4160 }
4161 /* fall through */
4162 default:
4163 tt = *tail = new_Token(NULL, x->type, x->text, 0);
4164 break;
H. Peter Anvin166c2472008-05-28 12:28:58 -07004165 }
H. Peter Anvince2233b2008-05-25 21:57:00 -07004166 tail = &tt->next;
4167 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004168 *tail = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004169 }
4170
4171 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00004172 * If we had a label, push it on as the first line of
4173 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004174 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00004175 if (label) {
4176 if (dont_prepend < 0)
4177 free_tlist(startline);
4178 else {
4179 ll = nasm_malloc(sizeof(Line));
4180 ll->finishes = NULL;
4181 ll->next = istk->expansion;
4182 istk->expansion = ll;
4183 ll->first = startline;
4184 if (!dont_prepend) {
4185 while (label->next)
4186 label = label->next;
4187 label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0);
4188 }
4189 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004190 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004191
H. Peter Anvin734b1882002-04-30 21:01:08 +00004192 list->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004193
H. Peter Anvineba20a72002-04-30 20:53:55 +00004194 return 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004195}
4196
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004197/* The function that actually does the error reporting */
4198static void verror(int severity, const char *fmt, va_list arg)
4199{
4200 char buff[1024];
4201
4202 vsnprintf(buff, sizeof(buff), fmt, arg);
4203
4204 if (istk && istk->mstk && istk->mstk->name)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004205 _error(severity, "(%s:%d) %s", istk->mstk->name,
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004206 istk->mstk->lineno, buff);
4207 else
H. Peter Anvin917a3492008-09-24 09:14:49 -07004208 _error(severity, "%s", buff);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004209}
4210
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004211/*
4212 * Since preprocessor always operate only on the line that didn't
H. Peter Anvin917a3492008-09-24 09:14:49 -07004213 * arrived yet, we should always use ERR_OFFBY1.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004214 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004215static void error(int severity, const char *fmt, ...)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004216{
4217 va_list arg;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004218
4219 /* If we're in a dead branch of IF or something like it, ignore the error */
H. Peter Anvin77ba0c62002-05-14 03:18:53 +00004220 if (istk && istk->conds && !emitting(istk->conds->state))
H. Peter Anvine2c80182005-01-15 22:15:51 +00004221 return;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004222
H. Peter Anvin734b1882002-04-30 21:01:08 +00004223 va_start(arg, fmt);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004224 verror(severity, fmt, arg);
H. Peter Anvin734b1882002-04-30 21:01:08 +00004225 va_end(arg);
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004226}
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004227
Victor van den Elzen3b404c02008-09-18 13:51:36 +02004228/*
4229 * Because %else etc are evaluated in the state context
4230 * of the previous branch, errors might get lost with error():
4231 * %if 0 ... %else trailing garbage ... %endif
4232 * So %else etc should report errors with this function.
4233 */
4234static void error_precond(int severity, const char *fmt, ...)
4235{
4236 va_list arg;
4237
4238 /* Only ignore the error if it's really in a dead branch */
4239 if (istk && istk->conds && istk->conds->state == COND_NEVER)
4240 return;
4241
4242 va_start(arg, fmt);
4243 verror(severity, fmt, arg);
4244 va_end(arg);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00004245}
4246
H. Peter Anvin734b1882002-04-30 21:01:08 +00004247static void
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004248pp_reset(char *file, int apass, efunc errfunc, evalfunc eval,
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004249 ListGen * listgen, StrList **deplist)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004250{
H. Peter Anvin7383b402008-09-24 10:20:40 -07004251 Token *t;
4252
H. Peter Anvin99941bf2002-05-14 17:44:03 +00004253 _error = errfunc;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004254 cstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004255 istk = nasm_malloc(sizeof(Include));
4256 istk->next = NULL;
4257 istk->conds = NULL;
4258 istk->expansion = NULL;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004259 istk->mstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004260 istk->fp = fopen(file, "r");
H. Peter Anvineba20a72002-04-30 20:53:55 +00004261 istk->fname = NULL;
4262 src_set_fname(nasm_strdup(file));
4263 src_set_linnum(0);
4264 istk->lineinc = 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004265 if (!istk->fp)
H. Peter Anvin917a3492008-09-24 09:14:49 -07004266 error(ERR_FATAL|ERR_NOFILE, "unable to open input file `%s'",
H. Peter Anvine2c80182005-01-15 22:15:51 +00004267 file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004268 defining = NULL;
Charles Crayned4200be2008-07-12 16:42:33 -07004269 nested_mac_count = 0;
4270 nested_rep_count = 0;
H. Peter Anvin97a23472007-09-16 17:57:25 -07004271 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004272 unique = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004273 if (tasm_compatible_mode) {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004274 stdmacpos = nasm_stdmac;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004275 } else {
H. Peter Anvina4835d42008-05-20 14:21:29 -07004276 stdmacpos = nasm_stdmac_after_tasm;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004277 }
H. Peter Anvind2456592008-06-19 15:04:18 -07004278 any_extrastdmac = extrastdmac && *extrastdmac;
4279 do_predef = true;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004280 list = listgen;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004281 evaluate = eval;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004282
4283 /*
4284 * 0 for dependencies, 1 for preparatory passes, 2 for final pass.
4285 * The caller, however, will also pass in 3 for preprocess-only so
4286 * we can set __PASS__ accordingly.
4287 */
4288 pass = apass > 2 ? 2 : apass;
4289
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07004290 dephead = deptail = deplist;
4291 if (deplist) {
4292 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
4293 sl->next = NULL;
4294 strcpy(sl->str, file);
4295 *deptail = sl;
4296 deptail = &sl->next;
4297 }
H. Peter Anvin7383b402008-09-24 10:20:40 -07004298
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004299 /*
4300 * Define the __PASS__ macro. This is defined here unlike
4301 * all the other builtins, because it is special -- it varies between
4302 * passes.
4303 */
H. Peter Anvin7383b402008-09-24 10:20:40 -07004304 t = nasm_malloc(sizeof(*t));
4305 t->next = NULL;
H. Peter Anvin61f130f2008-09-25 15:45:06 -07004306 make_tok_num(t, apass);
H. Peter Anvin7383b402008-09-24 10:20:40 -07004307 t->a.mac = NULL;
4308 define_smacro(NULL, "__PASS__", true, 0, t);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004309}
4310
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004311static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004312{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004313 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004314 Token *tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004315
H. Peter Anvine2c80182005-01-15 22:15:51 +00004316 while (1) {
4317 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00004318 * Fetch a tokenized line, either from the macro-expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00004319 * buffer or from the input file.
4320 */
4321 tline = NULL;
4322 while (istk->expansion && istk->expansion->finishes) {
4323 Line *l = istk->expansion;
4324 if (!l->finishes->name && l->finishes->in_progress > 1) {
4325 Line *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004326
H. Peter Anvine2c80182005-01-15 22:15:51 +00004327 /*
4328 * This is a macro-end marker for a macro with no
4329 * name, which means it's not really a macro at all
4330 * but a %rep block, and the `in_progress' field is
4331 * more than 1, meaning that we still need to
4332 * repeat. (1 means the natural last repetition; 0
4333 * means termination by %exitrep.) We have
4334 * therefore expanded up to the %endrep, and must
4335 * push the whole block on to the expansion buffer
4336 * again. We don't bother to remove the macro-end
4337 * marker: we'd only have to generate another one
4338 * if we did.
4339 */
4340 l->finishes->in_progress--;
4341 for (l = l->finishes->expansion; l; l = l->next) {
4342 Token *t, *tt, **tail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004343
H. Peter Anvine2c80182005-01-15 22:15:51 +00004344 ll = nasm_malloc(sizeof(Line));
4345 ll->next = istk->expansion;
4346 ll->finishes = NULL;
4347 ll->first = NULL;
4348 tail = &ll->first;
H. Peter Anvin76690a12002-04-30 20:52:49 +00004349
H. Peter Anvine2c80182005-01-15 22:15:51 +00004350 for (t = l->first; t; t = t->next) {
4351 if (t->text || t->type == TOK_WHITESPACE) {
4352 tt = *tail =
4353 new_Token(NULL, t->type, t->text, 0);
4354 tail = &tt->next;
4355 }
4356 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004357
H. Peter Anvine2c80182005-01-15 22:15:51 +00004358 istk->expansion = ll;
4359 }
4360 } else {
4361 /*
4362 * Check whether a `%rep' was started and not ended
4363 * within this macro expansion. This can happen and
4364 * should be detected. It's a fatal error because
4365 * I'm too confused to work out how to recover
4366 * sensibly from it.
4367 */
4368 if (defining) {
4369 if (defining->name)
4370 error(ERR_PANIC,
4371 "defining with name in expansion");
4372 else if (istk->mstk->name)
4373 error(ERR_FATAL,
4374 "`%%rep' without `%%endrep' within"
4375 " expansion of macro `%s'",
4376 istk->mstk->name);
4377 }
H. Peter Anvin87bc6192002-04-30 20:53:16 +00004378
H. Peter Anvine2c80182005-01-15 22:15:51 +00004379 /*
4380 * FIXME: investigate the relationship at this point between
4381 * istk->mstk and l->finishes
4382 */
4383 {
4384 MMacro *m = istk->mstk;
4385 istk->mstk = m->next_active;
4386 if (m->name) {
4387 /*
4388 * This was a real macro call, not a %rep, and
4389 * therefore the parameter information needs to
4390 * be freed.
4391 */
4392 nasm_free(m->params);
4393 free_tlist(m->iline);
4394 nasm_free(m->paramlen);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004395 l->finishes->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004396 } else
4397 free_mmacro(m);
4398 }
4399 istk->expansion = l->next;
4400 nasm_free(l);
4401 list->downlevel(LIST_MACRO);
4402 }
4403 }
4404 while (1) { /* until we get a line we can use */
H. Peter Anvineba20a72002-04-30 20:53:55 +00004405
H. Peter Anvine2c80182005-01-15 22:15:51 +00004406 if (istk->expansion) { /* from a macro expansion */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004407 char *p;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004408 Line *l = istk->expansion;
4409 if (istk->mstk)
4410 istk->mstk->lineno++;
4411 tline = l->first;
4412 istk->expansion = l->next;
4413 nasm_free(l);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004414 p = detoken(tline, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004415 list->line(LIST_MACRO, p);
4416 nasm_free(p);
4417 break;
4418 }
4419 line = read_line();
4420 if (line) { /* from the current input file */
4421 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004422 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004423 nasm_free(line);
4424 break;
4425 }
4426 /*
4427 * The current file has ended; work down the istk
4428 */
4429 {
4430 Include *i = istk;
4431 fclose(i->fp);
4432 if (i->conds)
4433 error(ERR_FATAL,
4434 "expected `%%endif' before end of file");
4435 /* only set line and file name if there's a next node */
4436 if (i->next) {
4437 src_set_linnum(i->lineno);
4438 nasm_free(src_set_fname(i->fname));
H. Peter Anvin86877b22008-06-20 15:55:45 -07004439 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00004440 istk = i->next;
4441 list->downlevel(LIST_INCLUDE);
4442 nasm_free(i);
4443 if (!istk)
4444 return NULL;
Victor van den Elzen4c9d6222008-10-01 13:08:50 +02004445 if (istk->expansion && istk->expansion->finishes)
4446 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004447 }
4448 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004449
H. Peter Anvine2c80182005-01-15 22:15:51 +00004450 /*
4451 * We must expand MMacro parameters and MMacro-local labels
4452 * _before_ we plunge into directive processing, to cope
4453 * with things like `%define something %1' such as STRUC
4454 * uses. Unless we're _defining_ a MMacro, in which case
4455 * those tokens should be left alone to go into the
4456 * definition; and unless we're in a non-emitting
4457 * condition, in which case we don't want to meddle with
4458 * anything.
4459 */
Charles Crayned4200be2008-07-12 16:42:33 -07004460 if (!defining && !(istk->conds && !emitting(istk->conds->state))
H. Peter Anvin992fe752008-10-19 15:45:05 -07004461 && !(istk->mstk && !istk->mstk->in_progress)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00004462 tline = expand_mmac_params(tline);
H. Peter Anvin992fe752008-10-19 15:45:05 -07004463 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00004464
H. Peter Anvine2c80182005-01-15 22:15:51 +00004465 /*
4466 * Check the line to see if it's a preprocessor directive.
4467 */
4468 if (do_directive(tline) == DIRECTIVE_FOUND) {
4469 continue;
4470 } else if (defining) {
4471 /*
4472 * We're defining a multi-line macro. We emit nothing
4473 * at all, and just
Keith Kaniosb7a89542007-04-12 02:40:54 +00004474 * shove the tokenized line on to the macro definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00004475 */
4476 Line *l = nasm_malloc(sizeof(Line));
4477 l->next = defining->expansion;
4478 l->first = tline;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004479 l->finishes = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004480 defining->expansion = l;
4481 continue;
4482 } else if (istk->conds && !emitting(istk->conds->state)) {
4483 /*
4484 * We're in a non-emitting branch of a condition block.
4485 * Emit nothing at all, not even a blank line: when we
4486 * emerge from the condition we'll give a line-number
4487 * directive so we keep our place correctly.
4488 */
4489 free_tlist(tline);
4490 continue;
4491 } else if (istk->mstk && !istk->mstk->in_progress) {
4492 /*
4493 * We're in a %rep block which has been terminated, so
4494 * we're walking through to the %endrep without
4495 * emitting anything. Emit nothing at all, not even a
4496 * blank line: when we emerge from the %rep block we'll
4497 * give a line-number directive so we keep our place
4498 * correctly.
4499 */
4500 free_tlist(tline);
4501 continue;
4502 } else {
4503 tline = expand_smacro(tline);
4504 if (!expand_mmacro(tline)) {
4505 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00004506 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00004507 */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004508 line = detoken(tline, true);
H. Peter Anvine2c80182005-01-15 22:15:51 +00004509 free_tlist(tline);
4510 break;
4511 } else {
4512 continue; /* expand_mmacro calls free_tlist */
4513 }
4514 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004515 }
4516
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004517 return line;
4518}
4519
H. Peter Anvine2c80182005-01-15 22:15:51 +00004520static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004521{
H. Peter Anvine2c80182005-01-15 22:15:51 +00004522 if (defining) {
Victor van den Elzen8f1120f2008-07-16 13:41:37 +02004523 if(defining->name) {
4524 error(ERR_NONFATAL,
4525 "end of file while still defining macro `%s'",
4526 defining->name);
4527 } else {
4528 error(ERR_NONFATAL, "end of file while still in %%rep");
4529 }
4530
H. Peter Anvine2c80182005-01-15 22:15:51 +00004531 free_mmacro(defining);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004532 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004533 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004534 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07004535 free_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00004536 while (istk) {
4537 Include *i = istk;
4538 istk = istk->next;
4539 fclose(i->fp);
4540 nasm_free(i->fname);
4541 nasm_free(i);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004542 }
4543 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004544 ctx_pop();
H. Peter Anvin86877b22008-06-20 15:55:45 -07004545 nasm_free(src_set_fname(NULL));
H. Peter Anvine2c80182005-01-15 22:15:51 +00004546 if (pass == 0) {
H. Peter Anvin86877b22008-06-20 15:55:45 -07004547 IncPath *i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00004548 free_llist(predef);
4549 delete_Blocks();
H. Peter Anvin86877b22008-06-20 15:55:45 -07004550 while ((i = ipath)) {
4551 ipath = i->next;
4552 if (i->path)
4553 nasm_free(i->path);
4554 nasm_free(i);
4555 }
H. Peter Anvin11dfa1a2008-07-02 18:11:04 -07004556 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004557}
4558
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004559void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004560{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004561 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07004562
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004563 i = nasm_malloc(sizeof(IncPath));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07004564 i->path = path ? nasm_strdup(path) : NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004565 i->next = NULL;
4566
H. Peter Anvine2c80182005-01-15 22:15:51 +00004567 if (ipath != NULL) {
4568 IncPath *j = ipath;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004569 while (j->next != NULL)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004570 j = j->next;
4571 j->next = i;
4572 } else {
4573 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004574 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004575}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004576
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004577void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004578{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004579 Token *inc, *space, *name;
4580 Line *l;
4581
H. Peter Anvin734b1882002-04-30 21:01:08 +00004582 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
4583 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
4584 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004585
4586 l = nasm_malloc(sizeof(Line));
4587 l->next = predef;
4588 l->first = inc;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004589 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004590 predef = l;
4591}
4592
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004593void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004594{
4595 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004596 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004597 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004598
4599 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00004600 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
4601 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004602 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004603 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00004604 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004605 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004606 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004607
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004608 l = nasm_malloc(sizeof(Line));
4609 l->next = predef;
4610 l->first = def;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004611 l->finishes = NULL;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004612 predef = l;
4613}
4614
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004615void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00004616{
4617 Token *def, *space;
4618 Line *l;
4619
H. Peter Anvin734b1882002-04-30 21:01:08 +00004620 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
4621 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004622 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00004623
4624 l = nasm_malloc(sizeof(Line));
4625 l->next = predef;
4626 l->first = def;
H. Peter Anvin538002d2008-06-28 18:30:27 -07004627 l->finishes = NULL;
H. Peter Anvin620515a2002-04-30 20:57:38 +00004628 predef = l;
4629}
4630
Keith Kaniosb7a89542007-04-12 02:40:54 +00004631/*
4632 * Added by Keith Kanios:
4633 *
4634 * This function is used to assist with "runtime" preprocessor
4635 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
4636 *
4637 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
4638 * PASS A VALID STRING TO THIS FUNCTION!!!!!
4639 */
4640
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004641void pp_runtime(char *definition)
Keith Kaniosb7a89542007-04-12 02:40:54 +00004642{
4643 Token *def;
H. Peter Anvin70653092007-10-19 14:42:29 -07004644
Keith Kaniosb7a89542007-04-12 02:40:54 +00004645 def = tokenize(definition);
4646 if(do_directive(def) == NO_DIRECTIVE_FOUND)
4647 free_tlist(def);
H. Peter Anvin70653092007-10-19 14:42:29 -07004648
Keith Kaniosb7a89542007-04-12 02:40:54 +00004649}
4650
H. Peter Anvina70547f2008-07-19 21:44:26 -07004651void pp_extra_stdmac(macros_t *macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004652{
H. Peter Anvin76690a12002-04-30 20:52:49 +00004653 extrastdmac = macros;
4654}
4655
Keith Kaniosa5fc6462007-10-13 07:09:22 -07004656static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004657{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004658 char numbuf[20];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07004659 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00004660 tok->text = nasm_strdup(numbuf);
4661 tok->type = TOK_NUMBER;
4662}
4663
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004664Preproc nasmpp = {
4665 pp_reset,
4666 pp_getline,
4667 pp_cleanup
4668};