blob: f9c4de3696b0237ddb6b6d3d4d047ea04df102d3 [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
5 * redistributable under the licence given in the file "Licence"
6 * 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 Anvinc2df2822007-10-24 15:29:28 -070051#include "stdscan.h"
52#include "tokens.h"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000053
54typedef struct SMacro SMacro;
55typedef struct MMacro MMacro;
56typedef struct Context Context;
57typedef struct Token Token;
H. Peter Anvince616072002-04-30 21:02:23 +000058typedef struct Blocks Blocks;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000059typedef struct Line Line;
60typedef struct Include Include;
61typedef struct Cond Cond;
H. Peter Anvin6768eb72002-04-30 20:52:26 +000062typedef struct IncPath IncPath;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000063
64/*
H. Peter Anvin97a23472007-09-16 17:57:25 -070065 * Note on the storage of both SMacro and MMacros: the hash table
66 * indexes them case-insensitively, and we then have to go through a
67 * linked list of potential case aliases (and, for MMacros, parameter
68 * ranges); this is to preserve the matching semantics of the earlier
69 * code. If the number of case aliases for a specific macro is a
70 * performance issue, you may want to reconsider your coding style.
71 */
72
73/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000074 * Store the definition of a single-line macro.
75 */
H. Peter Anvine2c80182005-01-15 22:15:51 +000076struct SMacro {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000077 SMacro *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +000078 char *name;
H. Peter Anvin70055962007-10-11 00:05:31 -070079 bool casesense;
H. Peter Anvin16ed4382007-10-11 10:06:19 -070080 bool in_progress;
H. Peter Anvin70055962007-10-11 00:05:31 -070081 unsigned int nparam;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000082 Token *expansion;
83};
84
85/*
H. Peter Anvin76690a12002-04-30 20:52:49 +000086 * Store the definition of a multi-line macro. This is also used to
87 * store the interiors of `%rep...%endrep' blocks, which are
88 * effectively self-re-invoking multi-line macros which simply
89 * don't have a name or bother to appear in the hash tables. %rep
90 * blocks are signified by having a NULL `name' field.
91 *
92 * In a MMacro describing a `%rep' block, the `in_progress' field
93 * isn't merely boolean, but gives the number of repeats left to
94 * run.
95 *
96 * The `next' field is used for storing MMacros in hash tables; the
97 * `next_active' field is for stacking them on istk entries.
98 *
99 * When a MMacro is being expanded, `params', `iline', `nparam',
100 * `paramlen', `rotate' and `unique' are local to the invocation.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000101 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000102struct MMacro {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000103 MMacro *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000104 char *name;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -0700105 int nparam_min, nparam_max;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700106 bool casesense;
107 bool plus; /* is the last parameter greedy? */
108 bool nolist; /* is this macro listing-inhibited? */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700109 int64_t in_progress;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000110 Token *dlist; /* All defaults as one list */
111 Token **defaults; /* Parameter default pointers */
112 int ndefs; /* number of default parameters */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000113 Line *expansion;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000114
115 MMacro *next_active;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000116 MMacro *rep_nest; /* used for nesting %rep */
117 Token **params; /* actual parameters */
118 Token *iline; /* invocation line */
H. Peter Anvin25a99342007-09-22 17:45:45 -0700119 unsigned int nparam, rotate;
120 int *paramlen;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700121 uint64_t unique;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000122 int lineno; /* Current line number on expansion */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000123};
124
125/*
126 * The context stack is composed of a linked list of these.
127 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000128struct Context {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000129 Context *next;
130 SMacro *localmac;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000131 char *name;
Keith Kaniosb7a89542007-04-12 02:40:54 +0000132 uint32_t number;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000133};
134
135/*
136 * This is the internal form which we break input lines up into.
137 * Typically stored in linked lists.
138 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000139 * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not
140 * necessarily used as-is, but is intended to denote the number of
141 * the substituted parameter. So in the definition
142 *
143 * %define a(x,y) ( (x) & ~(y) )
H. Peter Anvin70653092007-10-19 14:42:29 -0700144 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000145 * the token representing `x' will have its type changed to
146 * TOK_SMAC_PARAM, but the one representing `y' will be
147 * TOK_SMAC_PARAM+1.
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000148 *
149 * TOK_INTERNAL_STRING is a dirty hack: it's a single string token
150 * which doesn't need quotes around it. Used in the pre-include
151 * mechanism as an alternative to trying to find a sensible type of
152 * quote to use on the filename we were passed.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000153 */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000154enum pp_token_type {
155 TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID,
156 TOK_PREPROC_ID, TOK_STRING,
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700157 TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER, TOK_SMAC_PARAM,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000158 TOK_INTERNAL_STRING
159};
160
H. Peter Anvine2c80182005-01-15 22:15:51 +0000161struct Token {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000162 Token *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000163 char *text;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000164 SMacro *mac; /* associated macro for TOK_SMAC_END */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000165 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000166};
167
168/*
169 * Multi-line macro definitions are stored as a linked list of
170 * these, which is essentially a container to allow several linked
171 * lists of Tokens.
H. Peter Anvin70653092007-10-19 14:42:29 -0700172 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000173 * Note that in this module, linked lists are treated as stacks
174 * wherever possible. For this reason, Lines are _pushed_ on to the
175 * `expansion' field in MMacro structures, so that the linked list,
176 * if walked, would give the macro lines in reverse order; this
177 * means that we can walk the list when expanding a macro, and thus
178 * push the lines on to the `expansion' field in _istk_ in reverse
179 * order (so that when popped back off they are in the right
180 * order). It may seem cockeyed, and it relies on my design having
181 * an even number of steps in, but it works...
182 *
183 * Some of these structures, rather than being actual lines, are
184 * markers delimiting the end of the expansion of a given macro.
H. Peter Anvin76690a12002-04-30 20:52:49 +0000185 * This is for use in the cycle-tracking and %rep-handling code.
186 * Such structures have `finishes' non-NULL, and `first' NULL. All
187 * others have `finishes' NULL, but `first' may still be NULL if
188 * the line is blank.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000189 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000190struct Line {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000191 Line *next;
192 MMacro *finishes;
193 Token *first;
194};
195
196/*
197 * To handle an arbitrary level of file inclusion, we maintain a
198 * stack (ie linked list) of these things.
199 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000200struct Include {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000201 Include *next;
202 FILE *fp;
203 Cond *conds;
204 Line *expansion;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000205 char *fname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000206 int lineno, lineinc;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000207 MMacro *mstk; /* stack of active macros/reps */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000208};
209
210/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000211 * Include search path. This is simply a list of strings which get
212 * prepended, in turn, to the name of an include file, in an
213 * attempt to find the file if it's not in the current directory.
214 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000215struct IncPath {
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000216 IncPath *next;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000217 char *path;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000218};
219
220/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000221 * Conditional assembly: we maintain a separate stack of these for
222 * each level of file inclusion. (The only reason we keep the
223 * stacks separate is to ensure that a stray `%endif' in a file
224 * included from within the true branch of a `%if' won't terminate
225 * it and cause confusion: instead, rightly, it'll cause an error.)
226 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000227struct Cond {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000228 Cond *next;
229 int state;
230};
H. Peter Anvine2c80182005-01-15 22:15:51 +0000231enum {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000232 /*
233 * These states are for use just after %if or %elif: IF_TRUE
234 * means the condition has evaluated to truth so we are
235 * currently emitting, whereas IF_FALSE means we are not
236 * currently emitting but will start doing so if a %else comes
237 * up. In these states, all directives are admissible: %elif,
238 * %else and %endif. (And of course %if.)
239 */
240 COND_IF_TRUE, COND_IF_FALSE,
241 /*
242 * These states come up after a %else: ELSE_TRUE means we're
243 * emitting, and ELSE_FALSE means we're not. In ELSE_* states,
244 * any %elif or %else will cause an error.
245 */
246 COND_ELSE_TRUE, COND_ELSE_FALSE,
247 /*
248 * This state means that we're not emitting now, and also that
249 * nothing until %endif will be emitted at all. It's for use in
250 * two circumstances: (i) when we've had our moment of emission
251 * and have now started seeing %elifs, and (ii) when the
252 * condition construct in question is contained within a
253 * non-emitting branch of a larger condition construct.
254 */
255 COND_NEVER
256};
257#define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE )
258
H. Peter Anvin70653092007-10-19 14:42:29 -0700259/*
Ed Beroset3ab3f412002-06-11 03:31:49 +0000260 * These defines are used as the possible return values for do_directive
261 */
262#define NO_DIRECTIVE_FOUND 0
263#define DIRECTIVE_FOUND 1
264
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000265/*
266 * Condition codes. Note that we use c_ prefix not C_ because C_ is
267 * used in nasm.h for the "real" condition codes. At _this_ level,
268 * we treat CXZ and ECXZ as condition codes, albeit non-invertible
269 * ones, so we need a different enum...
270 */
H. Peter Anvin476d2862007-10-02 22:04:15 -0700271static const char * const conditions[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000272 "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le",
273 "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no",
H. Peter Anvince9be342007-09-12 00:22:29 +0000274 "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000275};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700276enum pp_conds {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000277 c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE,
278 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 -0700279 c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z,
280 c_none = -1
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000281};
H. Peter Anvin476d2862007-10-02 22:04:15 -0700282static const enum pp_conds inverse_ccs[] = {
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000283 c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE,
284 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 +0000285 c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000286};
287
H. Peter Anvin76690a12002-04-30 20:52:49 +0000288/*
289 * Directive names.
290 */
H. Peter Anvin65747262002-05-07 00:10:05 +0000291/* If this is a an IF, ELIF, ELSE or ENDIF keyword */
H. Peter Anvin9bf0aa72007-09-12 02:12:07 +0000292static int is_condition(enum preproc_token arg)
H. Peter Anvin65747262002-05-07 00:10:05 +0000293{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000294 return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF);
H. Peter Anvin65747262002-05-07 00:10:05 +0000295}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000296
297/* For TASM compatibility we need to be able to recognise TASM compatible
298 * conditional compilation directives. Using the NASM pre-processor does
299 * not work, so we look for them specifically from the following list and
300 * then jam in the equivalent NASM directive into the input stream.
301 */
302
H. Peter Anvine2c80182005-01-15 22:15:51 +0000303enum {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000304 TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI,
305 TM_IFNDEF, TM_INCLUDE, TM_LOCAL
306};
307
H. Peter Anvin476d2862007-10-02 22:04:15 -0700308static const char * const tasm_directives[] = {
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000309 "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi",
310 "ifndef", "include", "local"
311};
312
313static int StackSize = 4;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000314static char *StackPointer = "ebp";
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000315static int ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -0800316static int LocalOffset = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000317
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000318static Context *cstk;
319static Include *istk;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000320static IncPath *ipath = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000321
H. Peter Anvine2c80182005-01-15 22:15:51 +0000322static efunc _error; /* Pointer to client-provided error reporting function */
H. Peter Anvin76690a12002-04-30 20:52:49 +0000323static evalfunc evaluate;
324
H. Peter Anvine2c80182005-01-15 22:15:51 +0000325static int pass; /* HACK: pass 0 = generate dependencies only */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000326
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -0700327static uint64_t unique; /* unique identifier numbers */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000328
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000329static Line *predef = NULL;
330
331static ListGen *list;
332
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000333/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000334 * The current set of multi-line macros we have defined.
335 */
H. Peter Anvin97a23472007-09-16 17:57:25 -0700336static struct hash_table *mmacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000337
338/*
339 * The current set of single-line macros we have defined.
340 */
H. Peter Anvin97a23472007-09-16 17:57:25 -0700341static struct hash_table *smacros;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000342
343/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000344 * The multi-line macro we are currently defining, or the %rep
345 * block we are currently reading, if any.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000346 */
347static MMacro *defining;
348
349/*
350 * The number of macro parameters to allocate space for at a time.
351 */
352#define PARAM_DELTA 16
353
354/*
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000355 * The standard macro set: defined as `static char *stdmac[]'. Also
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000356 * gives our position in the macro set, when we're processing it.
357 */
358#include "macros.c"
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000359static const char **stdmacpos;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000360
361/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000362 * The extra standard macros that come from the object format, if
363 * any.
364 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000365static const char **extrastdmac = NULL;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700366bool any_extrastdmac;
H. Peter Anvin76690a12002-04-30 20:52:49 +0000367
368/*
H. Peter Anvin734b1882002-04-30 21:01:08 +0000369 * Tokens are allocated in blocks to improve speed
370 */
371#define TOKEN_BLOCKSIZE 4096
372static Token *freeTokens = NULL;
H. Peter Anvince616072002-04-30 21:02:23 +0000373struct Blocks {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000374 Blocks *next;
375 void *chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000376};
377
378static Blocks blocks = { NULL, NULL };
H. Peter Anvin734b1882002-04-30 21:01:08 +0000379
380/*
H. Peter Anvin76690a12002-04-30 20:52:49 +0000381 * Forward declarations.
382 */
H. Peter Anvin734b1882002-04-30 21:01:08 +0000383static Token *expand_mmac_params(Token * tline);
384static Token *expand_smacro(Token * tline);
385static Token *expand_id(Token * tline);
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700386static Context *get_ctx(char *name, bool all_contexts);
Keith Kaniosa5fc6462007-10-13 07:09:22 -0700387static void make_tok_num(Token * tok, int64_t val);
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000388static void error(int severity, const char *fmt, ...);
H. Peter Anvince616072002-04-30 21:02:23 +0000389static void *new_Block(size_t size);
390static void delete_Blocks(void);
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000391static Token *new_Token(Token * next, enum pp_token_type type, char *text, int txtlen);
H. Peter Anvin734b1882002-04-30 21:01:08 +0000392static Token *delete_Token(Token * t);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000393
394/*
395 * Macros for safe checking of token pointers, avoid *(NULL)
396 */
397#define tok_type_(x,t) ((x) && (x)->type == (t))
398#define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next
399#define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v)))
400#define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v))))
H. Peter Anvin76690a12002-04-30 20:52:49 +0000401
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000402/* Handle TASM specific directives, which do not contain a % in
403 * front of them. We do it here because I could not find any other
404 * place to do it for the moment, and it is a hack (ideally it would
405 * be nice to be able to use the NASM pre-processor to do it).
406 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000407static char *check_tasm_directive(char *line)
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000408{
Keith Kaniosb7a89542007-04-12 02:40:54 +0000409 int32_t i, j, k, m, len;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000410 char *p = line, *oldline, oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000411
412 /* Skip whitespace */
413 while (isspace(*p) && *p != 0)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000414 p++;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000415
416 /* Binary search for the directive name */
417 i = -1;
Ed Beroset3ab3f412002-06-11 03:31:49 +0000418 j = elements(tasm_directives);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000419 len = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000420 while (!isspace(p[len]) && p[len] != 0)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000421 len++;
422 if (len) {
423 oldchar = p[len];
424 p[len] = 0;
425 while (j - i > 1) {
426 k = (j + i) / 2;
427 m = nasm_stricmp(p, tasm_directives[k]);
428 if (m == 0) {
429 /* We have found a directive, so jam a % in front of it
430 * so that NASM will then recognise it as one if it's own.
431 */
432 p[len] = oldchar;
433 len = strlen(p);
434 oldline = line;
435 line = nasm_malloc(len + 2);
436 line[0] = '%';
437 if (k == TM_IFDIFI) {
438 /* NASM does not recognise IFDIFI, so we convert it to
439 * %ifdef BOGUS. This is not used in NASM comaptible
440 * code, but does need to parse for the TASM macro
441 * package.
442 */
443 strcpy(line + 1, "ifdef BOGUS");
444 } else {
445 memcpy(line + 1, p, len + 1);
446 }
447 nasm_free(oldline);
448 return line;
449 } else if (m < 0) {
450 j = k;
451 } else
452 i = k;
453 }
454 p[len] = oldchar;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000455 }
456 return line;
457}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000458
H. Peter Anvin76690a12002-04-30 20:52:49 +0000459/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000460 * The pre-preprocessing stage... This function translates line
461 * number indications as they emerge from GNU cpp (`# lineno "file"
462 * flags') into NASM preprocessor line number indications (`%line
463 * lineno file').
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000464 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000465static char *prepreproc(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000466{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000467 int lineno, fnlen;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000468 char *fname, *oldline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000469
H. Peter Anvine2c80182005-01-15 22:15:51 +0000470 if (line[0] == '#' && line[1] == ' ') {
471 oldline = line;
472 fname = oldline + 2;
473 lineno = atoi(fname);
474 fname += strspn(fname, "0123456789 ");
475 if (*fname == '"')
476 fname++;
477 fnlen = strcspn(fname, "\"");
478 line = nasm_malloc(20 + fnlen);
479 snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname);
480 nasm_free(oldline);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000481 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000482 if (tasm_compatible_mode)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000483 return check_tasm_directive(line);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000484 return line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000485}
486
487/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000488 * Free a linked list of tokens.
489 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000490static void free_tlist(Token * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000491{
H. Peter Anvine2c80182005-01-15 22:15:51 +0000492 while (list) {
493 list = delete_Token(list);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000494 }
495}
496
497/*
498 * Free a linked list of lines.
499 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000500static void free_llist(Line * list)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000501{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000502 Line *l;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000503 while (list) {
504 l = list;
505 list = list->next;
506 free_tlist(l->first);
507 nasm_free(l);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000508 }
509}
510
511/*
H. Peter Anvineba20a72002-04-30 20:53:55 +0000512 * Free an MMacro
513 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000514static void free_mmacro(MMacro * m)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000515{
H. Peter Anvin734b1882002-04-30 21:01:08 +0000516 nasm_free(m->name);
517 free_tlist(m->dlist);
518 nasm_free(m->defaults);
519 free_llist(m->expansion);
520 nasm_free(m);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000521}
522
523/*
H. Peter Anvin97a23472007-09-16 17:57:25 -0700524 * Free all currently defined macros, and free the hash tables
525 */
526static void free_macros(void)
527{
528 struct hash_tbl_node *it;
529 const char *key;
530 SMacro *s;
531 MMacro *m;
532
533 it = NULL;
534 while ((s = hash_iterate(smacros, &it, &key)) != NULL) {
535 nasm_free((void *)key);
536 while (s) {
537 SMacro *ns = s->next;
538 nasm_free(s->name);
539 free_tlist(s->expansion);
540 nasm_free(s);
541 s = ns;
542 }
543 }
544 hash_free(smacros);
545
546 it = NULL;
547 while ((m = hash_iterate(mmacros, &it, &key)) != NULL) {
548 nasm_free((void *)key);
549 while (m) {
550 MMacro *nm = m->next;
551 free_mmacro(m);
552 m = nm;
553 }
554 }
555 hash_free(mmacros);
556}
557
558/*
559 * Initialize the hash tables
560 */
561static void init_macros(void)
562{
563 smacros = hash_init();
564 mmacros = hash_init();
565}
566
567/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000568 * Pop the context stack.
569 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000570static void ctx_pop(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000571{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000572 Context *c = cstk;
573 SMacro *smac, *s;
574
575 cstk = cstk->next;
576 smac = c->localmac;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000577 while (smac) {
578 s = smac;
579 smac = smac->next;
580 nasm_free(s->name);
581 free_tlist(s->expansion);
582 nasm_free(s);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000583 }
H. Peter Anvin734b1882002-04-30 21:01:08 +0000584 nasm_free(c->name);
585 nasm_free(c);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000586}
587
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000588#define BUF_DELTA 512
589/*
590 * Read a line from the top file in istk, handling multiple CR/LFs
591 * at the end of the line read, and handling spurious ^Zs. Will
592 * return lines from the standard macro set if this has not already
593 * been done.
594 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000595static char *read_line(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000596{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000597 char *buffer, *p, *q;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000598 int bufsize, continued_count;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000599
H. Peter Anvine2c80182005-01-15 22:15:51 +0000600 if (stdmacpos) {
601 if (*stdmacpos) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000602 char *ret = nasm_strdup(*stdmacpos++);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000603 if (!*stdmacpos && any_extrastdmac) {
604 stdmacpos = extrastdmac;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700605 any_extrastdmac = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000606 return ret;
607 }
608 /*
609 * Nasty hack: here we push the contents of `predef' on
610 * to the top-level expansion stack, since this is the
611 * most convenient way to implement the pre-include and
612 * pre-define features.
613 */
614 if (!*stdmacpos) {
615 Line *pd, *l;
616 Token *head, **tail, *t;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000617
H. Peter Anvine2c80182005-01-15 22:15:51 +0000618 for (pd = predef; pd; pd = pd->next) {
619 head = NULL;
620 tail = &head;
621 for (t = pd->first; t; t = t->next) {
622 *tail = new_Token(NULL, t->type, t->text, 0);
623 tail = &(*tail)->next;
624 }
625 l = nasm_malloc(sizeof(Line));
626 l->next = istk->expansion;
627 l->first = head;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700628 l->finishes = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000629 istk->expansion = l;
630 }
631 }
632 return ret;
633 } else {
634 stdmacpos = NULL;
635 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000636 }
637
638 bufsize = BUF_DELTA;
639 buffer = nasm_malloc(BUF_DELTA);
640 p = buffer;
H. Peter Anvin9f394642002-04-30 21:07:51 +0000641 continued_count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000642 while (1) {
643 q = fgets(p, bufsize - (p - buffer), istk->fp);
644 if (!q)
645 break;
646 p += strlen(p);
647 if (p > buffer && p[-1] == '\n') {
648 /* Convert backslash-CRLF line continuation sequences into
649 nothing at all (for DOS and Windows) */
650 if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) {
651 p -= 3;
652 *p = 0;
653 continued_count++;
654 }
655 /* Also convert backslash-LF line continuation sequences into
656 nothing at all (for Unix) */
657 else if (((p - 1) > buffer) && (p[-2] == '\\')) {
658 p -= 2;
659 *p = 0;
660 continued_count++;
661 } else {
662 break;
663 }
664 }
665 if (p - buffer > bufsize - 10) {
Keith Kaniosb7a89542007-04-12 02:40:54 +0000666 int32_t offset = p - buffer;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000667 bufsize += BUF_DELTA;
668 buffer = nasm_realloc(buffer, bufsize);
669 p = buffer + offset; /* prevent stale-pointer problems */
670 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000671 }
672
H. Peter Anvine2c80182005-01-15 22:15:51 +0000673 if (!q && p == buffer) {
674 nasm_free(buffer);
675 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000676 }
677
H. Peter Anvine2c80182005-01-15 22:15:51 +0000678 src_set_linnum(src_get_linnum() + istk->lineinc +
679 (continued_count * istk->lineinc));
H. Peter Anvineba20a72002-04-30 20:53:55 +0000680
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000681 /*
682 * Play safe: remove CRs as well as LFs, if any of either are
683 * present at the end of the line.
684 */
H. Peter Anvineba20a72002-04-30 20:53:55 +0000685 while (--p >= buffer && (*p == '\n' || *p == '\r'))
H. Peter Anvine2c80182005-01-15 22:15:51 +0000686 *p = '\0';
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000687
688 /*
689 * Handle spurious ^Z, which may be inserted into source files
690 * by some file transfer utilities.
691 */
692 buffer[strcspn(buffer, "\032")] = '\0';
693
H. Peter Anvin734b1882002-04-30 21:01:08 +0000694 list->line(LIST_READ, buffer);
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000695
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000696 return buffer;
697}
698
699/*
Keith Kaniosb7a89542007-04-12 02:40:54 +0000700 * Tokenize a line of text. This is a very simple process since we
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000701 * don't need to parse the value out of e.g. numeric tokens: we
702 * simply split one string into many.
703 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000704static Token *tokenize(char *line)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000705{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000706 char *p = line;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000707 enum pp_token_type type;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000708 Token *list = NULL;
709 Token *t, **tail = &list;
710
H. Peter Anvine2c80182005-01-15 22:15:51 +0000711 while (*line) {
712 p = line;
713 if (*p == '%') {
714 p++;
715 if (isdigit(*p) ||
716 ((*p == '-' || *p == '+') && isdigit(p[1])) ||
717 ((*p == '+') && (isspace(p[1]) || !p[1]))) {
718 do {
719 p++;
720 }
721 while (isdigit(*p));
722 type = TOK_PREPROC_ID;
723 } else if (*p == '{') {
724 p++;
725 while (*p && *p != '}') {
726 p[-1] = *p;
727 p++;
728 }
729 p[-1] = '\0';
730 if (*p)
731 p++;
732 type = TOK_PREPROC_ID;
733 } else if (isidchar(*p) ||
734 ((*p == '!' || *p == '%' || *p == '$') &&
735 isidchar(p[1]))) {
736 do {
737 p++;
738 }
739 while (isidchar(*p));
740 type = TOK_PREPROC_ID;
741 } else {
742 type = TOK_OTHER;
743 if (*p == '%')
744 p++;
745 }
746 } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) {
747 type = TOK_ID;
748 p++;
749 while (*p && isidchar(*p))
750 p++;
751 } else if (*p == '\'' || *p == '"') {
752 /*
753 * A string token.
754 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000755 char c = *p;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000756 p++;
757 type = TOK_STRING;
758 while (*p && *p != c)
759 p++;
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000760
H. Peter Anvine2c80182005-01-15 22:15:51 +0000761 if (*p) {
762 p++;
763 } else {
764 error(ERR_WARNING, "unterminated string");
765 /* Handling unterminated strings by UNV */
766 /* type = -1; */
767 }
768 } else if (isnumstart(*p)) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700769 bool is_hex = false;
770 bool is_float = false;
771 bool has_e = false;
772 char c, *r;
773
H. Peter Anvine2c80182005-01-15 22:15:51 +0000774 /*
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700775 * A numeric token.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000776 */
H. Peter Anvinc2df2822007-10-24 15:29:28 -0700777
778 if (*p == '$') {
779 p++;
780 is_hex = true;
781 }
782
783 for (;;) {
784 c = *p++;
785
786 if (!is_hex && (c == 'e' || c == 'E')) {
787 has_e = true;
788 if (*p == '+' || *p == '-') {
789 /* e can only be followed by +/- if it is either a
790 prefixed hex number or a floating-point number */
791 p++;
792 is_float = true;
793 }
794 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
795 is_hex = true;
796 } else if (c == 'P' || c == 'p') {
797 is_float = true;
798 if (*p == '+' || *p == '-')
799 p++;
800 } else if (isnumchar(c) || c == '_')
801 ; /* just advance */
802 else if (c == '.') {
803 /* we need to deal with consequences of the legacy
804 parser, like "1.nolist" being two tokens
805 (TOK_NUMBER, TOK_ID) here; at least give it
806 a shot for now. In the future, we probably need
807 a flex-based scanner with proper pattern matching
808 to do it as well as it can be done. Nothing in
809 the world is going to help the person who wants
810 0x123.p16 interpreted as two tokens, though. */
811 r = p;
812 while (*r == '_')
813 r++;
814
815 if (isdigit(*r) || (is_hex && isxdigit(*r)) ||
816 (!is_hex && (*r == 'e' || *r == 'E')) ||
817 (*r == 'p' || *r == 'P')) {
818 p = r;
819 is_float = true;
820 } else
821 break; /* Terminate the token */
822 } else
823 break;
824 }
825 p--; /* Point to first character beyond number */
826
827 if (has_e && !is_hex) {
828 /* 1e13 is floating-point, but 1e13h is not */
829 is_float = true;
830 }
831
832 type = is_float ? TOK_FLOAT : TOK_NUMBER;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000833 } else if (isspace(*p)) {
834 type = TOK_WHITESPACE;
835 p++;
836 while (*p && isspace(*p))
837 p++;
838 /*
839 * Whitespace just before end-of-line is discarded by
840 * pretending it's a comment; whitespace just before a
841 * comment gets lumped into the comment.
842 */
843 if (!*p || *p == ';') {
844 type = TOK_COMMENT;
845 while (*p)
846 p++;
847 }
848 } else if (*p == ';') {
849 type = TOK_COMMENT;
850 while (*p)
851 p++;
852 } else {
853 /*
854 * Anything else is an operator of some kind. We check
855 * for all the double-character operators (>>, <<, //,
856 * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000857 * else is a single-character operator.
H. Peter Anvine2c80182005-01-15 22:15:51 +0000858 */
859 type = TOK_OTHER;
860 if ((p[0] == '>' && p[1] == '>') ||
861 (p[0] == '<' && p[1] == '<') ||
862 (p[0] == '/' && p[1] == '/') ||
863 (p[0] == '<' && p[1] == '=') ||
864 (p[0] == '>' && p[1] == '=') ||
865 (p[0] == '=' && p[1] == '=') ||
866 (p[0] == '!' && p[1] == '=') ||
867 (p[0] == '<' && p[1] == '>') ||
868 (p[0] == '&' && p[1] == '&') ||
869 (p[0] == '|' && p[1] == '|') ||
870 (p[0] == '^' && p[1] == '^')) {
871 p++;
872 }
873 p++;
874 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +0000875
H. Peter Anvine2c80182005-01-15 22:15:51 +0000876 /* Handling unterminated string by UNV */
877 /*if (type == -1)
878 {
879 *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1);
880 t->text[p-line] = *line;
881 tail = &t->next;
882 }
883 else */
884 if (type != TOK_COMMENT) {
885 *tail = t = new_Token(NULL, type, line, p - line);
886 tail = &t->next;
887 }
888 line = p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000889 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000890 return list;
891}
892
H. Peter Anvince616072002-04-30 21:02:23 +0000893/*
894 * this function allocates a new managed block of memory and
H. Peter Anvin70653092007-10-19 14:42:29 -0700895 * returns a pointer to the block. The managed blocks are
H. Peter Anvince616072002-04-30 21:02:23 +0000896 * deleted only all at once by the delete_Blocks function.
897 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000898static void *new_Block(size_t size)
H. Peter Anvince616072002-04-30 21:02:23 +0000899{
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000900 Blocks *b = &blocks;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000901
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000902 /* first, get to the end of the linked list */
903 while (b->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000904 b = b->next;
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000905 /* now allocate the requested chunk */
906 b->chunk = nasm_malloc(size);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000907
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000908 /* now allocate a new block for the next request */
909 b->next = nasm_malloc(sizeof(Blocks));
910 /* and initialize the contents of the new block */
911 b->next->next = NULL;
912 b->next->chunk = NULL;
913 return b->chunk;
H. Peter Anvince616072002-04-30 21:02:23 +0000914}
915
916/*
917 * this function deletes all managed blocks of memory
918 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000919static void delete_Blocks(void)
H. Peter Anvince616072002-04-30 21:02:23 +0000920{
H. Peter Anvine2c80182005-01-15 22:15:51 +0000921 Blocks *a, *b = &blocks;
H. Peter Anvince616072002-04-30 21:02:23 +0000922
H. Peter Anvin70653092007-10-19 14:42:29 -0700923 /*
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000924 * keep in mind that the first block, pointed to by blocks
H. Peter Anvin70653092007-10-19 14:42:29 -0700925 * is a static and not dynamically allocated, so we don't
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000926 * free it.
927 */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000928 while (b) {
929 if (b->chunk)
930 nasm_free(b->chunk);
931 a = b;
932 b = b->next;
933 if (a != &blocks)
934 nasm_free(a);
Nickolay Yurchenkof7956c42003-09-26 19:03:40 +0000935 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000936}
H. Peter Anvin734b1882002-04-30 21:01:08 +0000937
938/*
H. Peter Anvin70653092007-10-19 14:42:29 -0700939 * this function creates a new Token and passes a pointer to it
H. Peter Anvin734b1882002-04-30 21:01:08 +0000940 * back to the caller. It sets the type and text elements, and
941 * also the mac and next elements to NULL.
942 */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +0000943static Token *new_Token(Token * next, enum pp_token_type type, char *text, int txtlen)
H. Peter Anvin734b1882002-04-30 21:01:08 +0000944{
945 Token *t;
946 int i;
947
H. Peter Anvine2c80182005-01-15 22:15:51 +0000948 if (freeTokens == NULL) {
949 freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token));
950 for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++)
951 freeTokens[i].next = &freeTokens[i + 1];
952 freeTokens[i].next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000953 }
954 t = freeTokens;
955 freeTokens = t->next;
956 t->next = next;
957 t->mac = NULL;
958 t->type = type;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000959 if (type == TOK_WHITESPACE || text == NULL) {
960 t->text = NULL;
961 } else {
962 if (txtlen == 0)
963 txtlen = strlen(text);
964 t->text = nasm_malloc(1 + txtlen);
965 strncpy(t->text, text, txtlen);
966 t->text[txtlen] = '\0';
H. Peter Anvin734b1882002-04-30 21:01:08 +0000967 }
968 return t;
969}
970
H. Peter Anvine2c80182005-01-15 22:15:51 +0000971static Token *delete_Token(Token * t)
H. Peter Anvin734b1882002-04-30 21:01:08 +0000972{
973 Token *next = t->next;
974 nasm_free(t->text);
H. Peter Anvin788e6c12002-04-30 21:02:01 +0000975 t->next = freeTokens;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000976 freeTokens = t;
977 return next;
978}
979
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000980/*
981 * Convert a line of tokens back into text.
H. Peter Anvinaf535c12002-04-30 20:59:21 +0000982 * If expand_locals is not zero, identifiers of the form "%$*xxx"
983 * will be transformed into ..@ctxnum.xxx
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000984 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000985static char *detoken(Token * tlist, int expand_locals)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000986{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000987 Token *t;
988 int len;
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000989 char *line, *p;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000990
991 len = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000992 for (t = tlist; t; t = t->next) {
993 if (t->type == TOK_PREPROC_ID && t->text[1] == '!') {
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000994 char *p = getenv(t->text + 2);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000995 nasm_free(t->text);
996 if (p)
997 t->text = nasm_strdup(p);
998 else
999 t->text = NULL;
1000 }
1001 /* Expand local macros here and not during preprocessing */
1002 if (expand_locals &&
1003 t->type == TOK_PREPROC_ID && t->text &&
1004 t->text[0] == '%' && t->text[1] == '$') {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001005 Context *ctx = get_ctx(t->text, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001006 if (ctx) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001007 char buffer[40];
1008 char *p, *q = t->text + 2;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001009
H. Peter Anvine2c80182005-01-15 22:15:51 +00001010 q += strspn(q, "$");
Keith Kanios93f2e9a2007-04-14 00:10:59 +00001011 snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001012 p = nasm_strcat(buffer, q);
1013 nasm_free(t->text);
1014 t->text = p;
1015 }
1016 }
1017 if (t->type == TOK_WHITESPACE) {
1018 len++;
1019 } else if (t->text) {
1020 len += strlen(t->text);
1021 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001022 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00001023 p = line = nasm_malloc(len + 1);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001024 for (t = tlist; t; t = t->next) {
1025 if (t->type == TOK_WHITESPACE) {
1026 *p = ' ';
1027 p++;
1028 *p = '\0';
1029 } else if (t->text) {
1030 strcpy(p, t->text);
1031 p += strlen(p);
1032 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001033 }
1034 *p = '\0';
1035 return line;
1036}
1037
1038/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001039 * A scanner, suitable for use by the expression evaluator, which
1040 * operates on a line of Tokens. Expects a pointer to a pointer to
1041 * the first token in the line to be passed in as its private_data
1042 * field.
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001043 *
1044 * FIX: This really needs to be unified with stdscan.
H. Peter Anvin76690a12002-04-30 20:52:49 +00001045 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001046static int ppscan(void *private_data, struct tokenval *tokval)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001047{
H. Peter Anvin76690a12002-04-30 20:52:49 +00001048 Token **tlineptr = private_data;
1049 Token *tline;
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001050 char ourcopy[MAX_KEYWORD+1], *p, *r, *s;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001051
H. Peter Anvine2c80182005-01-15 22:15:51 +00001052 do {
1053 tline = *tlineptr;
1054 *tlineptr = tline ? tline->next : NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001055 }
1056 while (tline && (tline->type == TOK_WHITESPACE ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001057 tline->type == TOK_COMMENT));
H. Peter Anvin76690a12002-04-30 20:52:49 +00001058
1059 if (!tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001060 return tokval->t_type = TOKEN_EOS;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001061
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001062 tokval->t_charptr = tline->text;
1063
H. Peter Anvin76690a12002-04-30 20:52:49 +00001064 if (tline->text[0] == '$' && !tline->text[1])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001065 return tokval->t_type = TOKEN_HERE;
H. Peter Anvin7cf897e2002-05-30 21:30:33 +00001066 if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2])
H. Peter Anvine2c80182005-01-15 22:15:51 +00001067 return tokval->t_type = TOKEN_BASE;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001068
H. Peter Anvine2c80182005-01-15 22:15:51 +00001069 if (tline->type == TOK_ID) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001070 p = tokval->t_charptr = tline->text;
1071 if (p[0] == '$') {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001072 tokval->t_charptr++;
1073 return tokval->t_type = TOKEN_ID;
1074 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001075
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001076 for (r = p, s = ourcopy; *r; r++) {
1077 if (r > p+MAX_KEYWORD)
1078 return tokval->t_type = TOKEN_ID; /* Not a keyword */
1079 *s++ = tolower(*r);
1080 }
1081 *s = '\0';
1082 /* right, so we have an identifier sitting in temp storage. now,
1083 * is it actually a register or instruction name, or what? */
1084 return nasm_token_hash(ourcopy, tokval);
H. Peter Anvin76690a12002-04-30 20:52:49 +00001085 }
1086
H. Peter Anvine2c80182005-01-15 22:15:51 +00001087 if (tline->type == TOK_NUMBER) {
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001088 bool rn_error;
1089 tokval->t_integer = readnum(tline->text, &rn_error);
1090 if (rn_error)
1091 return tokval->t_type = TOKEN_ERRNUM; /* some malformation occurred */
1092 tokval->t_charptr = tline->text;
1093 return tokval->t_type = TOKEN_NUM;
1094 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00001095
H. Peter Anvinc2df2822007-10-24 15:29:28 -07001096 if (tline->type == TOK_FLOAT) {
1097 return tokval->t_type = TOKEN_FLOAT;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001098 }
1099
H. Peter Anvine2c80182005-01-15 22:15:51 +00001100 if (tline->type == TOK_STRING) {
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001101 bool rn_warn;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001102 char q, *r;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001103 int l;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001104
H. Peter Anvine2c80182005-01-15 22:15:51 +00001105 r = tline->text;
1106 q = *r++;
1107 l = strlen(r);
H. Peter Anvineba20a72002-04-30 20:53:55 +00001108
H. Peter Anvine2c80182005-01-15 22:15:51 +00001109 if (l == 0 || r[l - 1] != q)
1110 return tokval->t_type = TOKEN_ERRNUM;
1111 tokval->t_integer = readstrnum(r, l - 1, &rn_warn);
1112 if (rn_warn)
1113 error(ERR_WARNING | ERR_PASS1, "character constant too long");
1114 tokval->t_charptr = NULL;
1115 return tokval->t_type = TOKEN_NUM;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001116 }
1117
H. Peter Anvine2c80182005-01-15 22:15:51 +00001118 if (tline->type == TOK_OTHER) {
1119 if (!strcmp(tline->text, "<<"))
1120 return tokval->t_type = TOKEN_SHL;
1121 if (!strcmp(tline->text, ">>"))
1122 return tokval->t_type = TOKEN_SHR;
1123 if (!strcmp(tline->text, "//"))
1124 return tokval->t_type = TOKEN_SDIV;
1125 if (!strcmp(tline->text, "%%"))
1126 return tokval->t_type = TOKEN_SMOD;
1127 if (!strcmp(tline->text, "=="))
1128 return tokval->t_type = TOKEN_EQ;
1129 if (!strcmp(tline->text, "<>"))
1130 return tokval->t_type = TOKEN_NE;
1131 if (!strcmp(tline->text, "!="))
1132 return tokval->t_type = TOKEN_NE;
1133 if (!strcmp(tline->text, "<="))
1134 return tokval->t_type = TOKEN_LE;
1135 if (!strcmp(tline->text, ">="))
1136 return tokval->t_type = TOKEN_GE;
1137 if (!strcmp(tline->text, "&&"))
1138 return tokval->t_type = TOKEN_DBL_AND;
1139 if (!strcmp(tline->text, "^^"))
1140 return tokval->t_type = TOKEN_DBL_XOR;
1141 if (!strcmp(tline->text, "||"))
1142 return tokval->t_type = TOKEN_DBL_OR;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001143 }
1144
1145 /*
1146 * We have no other options: just return the first character of
1147 * the token text.
1148 */
1149 return tokval->t_type = tline->text[0];
1150}
1151
1152/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001153 * Compare a string to the name of an existing macro; this is a
1154 * simple wrapper which calls either strcmp or nasm_stricmp
1155 * depending on the value of the `casesense' parameter.
1156 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001157static int mstrcmp(const char *p, const char *q, bool casesense)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001158{
H. Peter Anvin734b1882002-04-30 21:01:08 +00001159 return casesense ? strcmp(p, q) : nasm_stricmp(p, q);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001160}
1161
1162/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001163 * Return the Context structure associated with a %$ token. Return
1164 * NULL, having _already_ reported an error condition, if the
1165 * context stack isn't deep enough for the supplied number of $
1166 * signs.
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001167 * If all_contexts == true, contexts that enclose current are
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001168 * also scanned for such smacro, until it is found; if not -
1169 * only the context that directly results from the number of $'s
1170 * in variable's name.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001171 */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001172static Context *get_ctx(char *name, bool all_contexts)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001173{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001174 Context *ctx;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001175 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001176 int i;
1177
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001178 if (!name || name[0] != '%' || name[1] != '$')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001179 return NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001180
H. Peter Anvine2c80182005-01-15 22:15:51 +00001181 if (!cstk) {
1182 error(ERR_NONFATAL, "`%s': context stack is empty", name);
1183 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001184 }
1185
H. Peter Anvine2c80182005-01-15 22:15:51 +00001186 for (i = strspn(name + 2, "$"), ctx = cstk; (i > 0) && ctx; i--) {
1187 ctx = ctx->next;
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00001188/* i--; Lino - 02/25/02 */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001189 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001190 if (!ctx) {
1191 error(ERR_NONFATAL, "`%s': context stack is only"
1192 " %d level%s deep", name, i - 1, (i == 2 ? "" : "s"));
1193 return NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001194 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001195 if (!all_contexts)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001196 return ctx;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001197
H. Peter Anvine2c80182005-01-15 22:15:51 +00001198 do {
1199 /* Search for this smacro in found context */
1200 m = ctx->localmac;
1201 while (m) {
1202 if (!mstrcmp(m->name, name, m->casesense))
1203 return ctx;
1204 m = m->next;
1205 }
1206 ctx = ctx->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001207 }
1208 while (ctx);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001209 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001210}
1211
1212/*
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001213 * Open an include file. This routine must always return a valid
1214 * file pointer if it returns - it's responsible for throwing an
1215 * ERR_FATAL and bombing out completely if not. It should also try
1216 * the include path one by one until it finds the file or reaches
1217 * the end of the path.
1218 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001219static FILE *inc_fopen(char *file)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001220{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001221 FILE *fp;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001222 char *prefix = "", *combine;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001223 IncPath *ip = ipath;
H. Peter Anvin620515a2002-04-30 20:57:38 +00001224 static int namelen = 0;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001225 int len = strlen(file);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001226
H. Peter Anvine2c80182005-01-15 22:15:51 +00001227 while (1) {
1228 combine = nasm_malloc(strlen(prefix) + len + 1);
1229 strcpy(combine, prefix);
1230 strcat(combine, file);
1231 fp = fopen(combine, "r");
1232 if (pass == 0 && fp) {
1233 namelen += strlen(combine) + 1;
1234 if (namelen > 62) {
1235 printf(" \\\n ");
1236 namelen = 2;
1237 }
1238 printf(" %s", combine);
1239 }
1240 nasm_free(combine);
1241 if (fp)
1242 return fp;
1243 if (!ip)
1244 break;
1245 prefix = ip->path;
1246 ip = ip->next;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07001247
1248 if (!prefix) {
1249 /* -MG given and file not found */
1250 if (pass == 0) {
1251 namelen += strlen(file) + 1;
1252 if (namelen > 62) {
1253 printf(" \\\n ");
1254 namelen = 2;
1255 }
1256 printf(" %s", file);
1257 }
1258 return NULL;
1259 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001260 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001261
H. Peter Anvin734b1882002-04-30 21:01:08 +00001262 error(ERR_FATAL, "unable to open include file `%s'", file);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001263 return NULL; /* never reached - placate compilers */
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001264}
1265
1266/*
H. Peter Anvin97a23472007-09-16 17:57:25 -07001267 * Search for a key in the hash index; adding it if necessary
1268 * (in which case we initialize the data pointer to NULL.)
1269 */
1270static void **
1271hash_findi_add(struct hash_table *hash, const char *str)
1272{
1273 struct hash_insert hi;
1274 void **r;
1275 char *strx;
1276
1277 r = hash_findi(hash, str, &hi);
1278 if (r)
1279 return r;
1280
1281 strx = nasm_strdup(str); /* Use a more efficient allocator here? */
1282 return hash_add(&hi, strx, NULL);
1283}
1284
1285/*
1286 * Like hash_findi, but returns the data element rather than a pointer
1287 * to it. Used only when not adding a new element, hence no third
1288 * argument.
1289 */
1290static void *
1291hash_findix(struct hash_table *hash, const char *str)
1292{
1293 void **p;
1294
1295 p = hash_findi(hash, str, NULL);
1296 return p ? *p : NULL;
1297}
1298
1299/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001300 * Determine if we should warn on defining a single-line macro of
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001301 * name `name', with `nparam' parameters. If nparam is 0 or -1, will
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001302 * return true if _any_ single-line macro of that name is defined.
1303 * Otherwise, will return true if a single-line macro with either
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001304 * `nparam' or no parameters is defined.
1305 *
1306 * If a macro with precisely the right number of parameters is
H. Peter Anvinef7468f2002-04-30 20:57:59 +00001307 * defined, or nparam is -1, the address of the definition structure
1308 * will be returned in `defn'; otherwise NULL will be returned. If `defn'
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001309 * is NULL, no action will be taken regarding its contents, and no
1310 * error will occur.
1311 *
1312 * Note that this is also called with nparam zero to resolve
1313 * `ifdef'.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001314 *
1315 * If you already know which context macro belongs to, you can pass
1316 * the context pointer as first parameter; if you won't but name begins
1317 * with %$ the context will be automatically computed. If all_contexts
1318 * is true, macro will be searched in outer contexts as well.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001319 */
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001320static bool
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001321smacro_defined(Context * ctx, char *name, int nparam, SMacro ** defn,
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001322 bool nocase)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001323{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001324 SMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001325
H. Peter Anvin97a23472007-09-16 17:57:25 -07001326 if (ctx) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001327 m = ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001328 } else if (name[0] == '%' && name[1] == '$') {
1329 if (cstk)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001330 ctx = get_ctx(name, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001331 if (!ctx)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001332 return false; /* got to return _something_ */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001333 m = ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001334 } else {
1335 m = (SMacro *) hash_findix(smacros, name);
1336 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001337
H. Peter Anvine2c80182005-01-15 22:15:51 +00001338 while (m) {
1339 if (!mstrcmp(m->name, name, m->casesense && nocase) &&
Charles Crayne192d5b52007-10-18 19:02:42 -07001340 (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001341 if (defn) {
Charles Crayne192d5b52007-10-18 19:02:42 -07001342 if (nparam == (int) m->nparam || nparam == -1)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001343 *defn = m;
1344 else
1345 *defn = NULL;
1346 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001347 return true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001348 }
1349 m = m->next;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001350 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001351
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001352 return false;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001353}
1354
1355/*
1356 * Count and mark off the parameters in a multi-line macro call.
1357 * This is called both from within the multi-line macro expansion
1358 * code, and also to mark off the default parameters when provided
1359 * in a %macro definition line.
1360 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001361static void count_mmac_params(Token * t, int *nparam, Token *** params)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001362{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001363 int paramsize, brace;
1364
1365 *nparam = paramsize = 0;
1366 *params = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001367 while (t) {
1368 if (*nparam >= paramsize) {
1369 paramsize += PARAM_DELTA;
1370 *params = nasm_realloc(*params, sizeof(**params) * paramsize);
1371 }
1372 skip_white_(t);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001373 brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001374 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001375 brace = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001376 (*params)[(*nparam)++] = t;
1377 while (tok_isnt_(t, brace ? "}" : ","))
1378 t = t->next;
1379 if (t) { /* got a comma/brace */
1380 t = t->next;
1381 if (brace) {
1382 /*
1383 * Now we've found the closing brace, look further
1384 * for the comma.
1385 */
1386 skip_white_(t);
1387 if (tok_isnt_(t, ",")) {
1388 error(ERR_NONFATAL,
1389 "braces do not enclose all of macro parameter");
1390 while (tok_isnt_(t, ","))
1391 t = t->next;
1392 }
1393 if (t)
1394 t = t->next; /* eat the comma */
1395 }
1396 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001397 }
1398}
1399
1400/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001401 * Determine whether one of the various `if' conditions is true or
1402 * not.
1403 *
1404 * We must free the tline we get passed.
1405 */
H. Peter Anvin70055962007-10-11 00:05:31 -07001406static bool if_condition(Token * tline, enum preproc_token ct)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001407{
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001408 enum pp_conditional i = PP_COND(ct);
H. Peter Anvin70055962007-10-11 00:05:31 -07001409 bool j;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001410 Token *t, *tt, **tptr, *origline;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001411 struct tokenval tokval;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001412 expr *evalresult;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001413 enum pp_token_type needtype;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001414
1415 origline = tline;
1416
H. Peter Anvine2c80182005-01-15 22:15:51 +00001417 switch (i) {
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001418 case PPC_IFCTX:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001419 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001420 while (cstk && tline) {
1421 skip_white_(tline);
1422 if (!tline || tline->type != TOK_ID) {
1423 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001424 "`%s' expects context identifiers", pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001425 free_tlist(origline);
1426 return -1;
1427 }
1428 if (!nasm_stricmp(tline->text, cstk->name))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001429 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001430 tline = tline->next;
1431 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001432 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001433
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001434 case PPC_IFDEF:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001435 j = false; /* have we matched yet? */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001436 while (tline) {
1437 skip_white_(tline);
1438 if (!tline || (tline->type != TOK_ID &&
1439 (tline->type != TOK_PREPROC_ID ||
1440 tline->text[1] != '$'))) {
1441 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001442 "`%s' expects macro identifiers", pp_directives[ct]);
1443 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001444 }
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001445 if (smacro_defined(NULL, tline->text, 0, NULL, true))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001446 j = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001447 tline = tline->next;
1448 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001449 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001450
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001451 case PPC_IFIDN:
1452 case PPC_IFIDNI:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001453 tline = expand_smacro(tline);
1454 t = tt = tline;
1455 while (tok_isnt_(tt, ","))
1456 tt = tt->next;
1457 if (!tt) {
1458 error(ERR_NONFATAL,
1459 "`%s' expects two comma-separated arguments",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001460 pp_directives[ct]);
1461 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001462 }
1463 tt = tt->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001464 j = true; /* assume equality unless proved not */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001465 while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) {
1466 if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) {
1467 error(ERR_NONFATAL, "`%s': more than one comma on line",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001468 pp_directives[ct]);
1469 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001470 }
1471 if (t->type == TOK_WHITESPACE) {
1472 t = t->next;
1473 continue;
1474 }
1475 if (tt->type == TOK_WHITESPACE) {
1476 tt = tt->next;
1477 continue;
1478 }
1479 if (tt->type != t->type) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001480 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001481 break;
1482 }
1483 /* Unify surrounding quotes for strings */
1484 if (t->type == TOK_STRING) {
1485 tt->text[0] = t->text[0];
1486 tt->text[strlen(tt->text) - 1] = t->text[0];
1487 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001488 if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001489 j = false; /* found mismatching tokens */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001490 break;
1491 }
Nickolay Yurchenkof3b3ce22003-09-21 20:38:43 +00001492
H. Peter Anvine2c80182005-01-15 22:15:51 +00001493 t = t->next;
1494 tt = tt->next;
1495 }
1496 if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001497 j = false; /* trailing gunk on one end or other */
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001498 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001499
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001500 case PPC_IFMACRO:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001501 {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001502 bool found = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001503 MMacro searching, *mmac;
H. Peter Anvin65747262002-05-07 00:10:05 +00001504
H. Peter Anvine2c80182005-01-15 22:15:51 +00001505 tline = tline->next;
1506 skip_white_(tline);
1507 tline = expand_id(tline);
1508 if (!tok_type_(tline, TOK_ID)) {
1509 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001510 "`%s' expects a macro name", pp_directives[ct]);
1511 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001512 }
1513 searching.name = nasm_strdup(tline->text);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001514 searching.casesense = true;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001515 searching.plus = false;
1516 searching.nolist = false;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001517 searching.in_progress = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001518 searching.rep_nest = NULL;
1519 searching.nparam_min = 0;
1520 searching.nparam_max = INT_MAX;
1521 tline = expand_smacro(tline->next);
1522 skip_white_(tline);
1523 if (!tline) {
1524 } else if (!tok_type_(tline, TOK_NUMBER)) {
1525 error(ERR_NONFATAL,
1526 "`%s' expects a parameter count or nothing",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001527 pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001528 } else {
1529 searching.nparam_min = searching.nparam_max =
1530 readnum(tline->text, &j);
1531 if (j)
1532 error(ERR_NONFATAL,
1533 "unable to parse parameter count `%s'",
1534 tline->text);
1535 }
1536 if (tline && tok_is_(tline->next, "-")) {
1537 tline = tline->next->next;
1538 if (tok_is_(tline, "*"))
1539 searching.nparam_max = INT_MAX;
1540 else if (!tok_type_(tline, TOK_NUMBER))
1541 error(ERR_NONFATAL,
1542 "`%s' expects a parameter count after `-'",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001543 pp_directives[ct]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001544 else {
1545 searching.nparam_max = readnum(tline->text, &j);
1546 if (j)
1547 error(ERR_NONFATAL,
1548 "unable to parse parameter count `%s'",
1549 tline->text);
1550 if (searching.nparam_min > searching.nparam_max)
1551 error(ERR_NONFATAL,
1552 "minimum parameter count exceeds maximum");
1553 }
1554 }
1555 if (tline && tok_is_(tline->next, "+")) {
1556 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001557 searching.plus = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001558 }
H. Peter Anvin97a23472007-09-16 17:57:25 -07001559 mmac = (MMacro *) hash_findix(mmacros, searching.name);
1560 while (mmac) {
1561 if (!strcmp(mmac->name, searching.name) &&
1562 (mmac->nparam_min <= searching.nparam_max
1563 || searching.plus)
1564 && (searching.nparam_min <= mmac->nparam_max
1565 || mmac->plus)) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001566 found = true;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001567 break;
1568 }
1569 mmac = mmac->next;
1570 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001571 nasm_free(searching.name);
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001572 j = found;
1573 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001574 }
H. Peter Anvin65747262002-05-07 00:10:05 +00001575
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001576 case PPC_IFID:
1577 needtype = TOK_ID;
1578 goto iftype;
1579 case PPC_IFNUM:
1580 needtype = TOK_NUMBER;
1581 goto iftype;
1582 case PPC_IFSTR:
1583 needtype = TOK_STRING;
1584 goto iftype;
1585
1586 iftype:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001587 tline = expand_smacro(tline);
1588 t = tline;
1589 while (tok_type_(t, TOK_WHITESPACE))
1590 t = t->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001591 j = false; /* placate optimiser */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001592 if (t)
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001593 j = t->type == needtype;
1594 break;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001595
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001596 case PPC_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001597 t = tline = expand_smacro(tline);
1598 tptr = &t;
1599 tokval.t_type = TOKEN_INVALID;
1600 evalresult = evaluate(ppscan, tptr, &tokval,
1601 NULL, pass | CRITICAL, error, NULL);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001602 if (!evalresult)
1603 return -1;
1604 if (tokval.t_type)
1605 error(ERR_WARNING,
1606 "trailing garbage after expression ignored");
1607 if (!is_simple(evalresult)) {
1608 error(ERR_NONFATAL,
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001609 "non-constant value given to `%s'", pp_directives[ct]);
1610 goto fail;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001611 }
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001612 j = reloc_value(evalresult) != 0;
Chuck Crayne60ae75d2007-05-02 01:59:16 +00001613 return j;
H. Peter Anvin95e28822007-09-12 04:20:08 +00001614
H. Peter Anvine2c80182005-01-15 22:15:51 +00001615 default:
1616 error(ERR_FATAL,
1617 "preprocessor directive `%s' not yet implemented",
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001618 pp_directives[ct]);
1619 goto fail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001620 }
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001621
1622 free_tlist(origline);
1623 return j ^ PP_NEGATIVE(ct);
H. Peter Anvin70653092007-10-19 14:42:29 -07001624
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00001625fail:
1626 free_tlist(origline);
1627 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001628}
1629
1630/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001631 * Expand macros in a string. Used in %error and %include directives.
Keith Kaniosb7a89542007-04-12 02:40:54 +00001632 * First tokenize the string, apply "expand_smacro" and then de-tokenize back.
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001633 * The returned variable should ALWAYS be freed after usage.
1634 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001635void expand_macros_in_string(char **p)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001636{
Keith Kaniosb7a89542007-04-12 02:40:54 +00001637 Token *line = tokenize(*p);
H. Peter Anvin734b1882002-04-30 21:01:08 +00001638 line = expand_smacro(line);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001639 *p = detoken(line, false);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001640}
1641
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001642/*
1643 * Common code for defining an smacro
1644 */
1645static bool define_smacro(Context *ctx, char *mname, bool casesense,
1646 int nparam, Token *expansion)
1647{
1648 SMacro *smac, **smhead;
H. Peter Anvin70653092007-10-19 14:42:29 -07001649
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001650 if (smacro_defined(ctx, mname, nparam, &smac, casesense)) {
1651 if (!smac) {
1652 error(ERR_WARNING,
1653 "single-line macro `%s' defined both with and"
1654 " without parameters", mname);
1655
1656 /* Some instances of the old code considered this a failure,
1657 some others didn't. What is the right thing to do here? */
1658 free_tlist(expansion);
1659 return false; /* Failure */
1660 } else {
1661 /*
1662 * We're redefining, so we have to take over an
1663 * existing SMacro structure. This means freeing
1664 * what was already in it.
1665 */
1666 nasm_free(smac->name);
1667 free_tlist(smac->expansion);
1668 }
1669 } else {
1670 if (!ctx)
1671 smhead = (SMacro **) hash_findi_add(smacros, mname);
1672 else
1673 smhead = &ctx->localmac;
H. Peter Anvin70653092007-10-19 14:42:29 -07001674
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001675 smac = nasm_malloc(sizeof(SMacro));
1676 smac->next = *smhead;
1677 *smhead = smac;
1678 }
1679 smac->name = nasm_strdup(mname);
1680 smac->casesense = casesense;
1681 smac->nparam = nparam;
1682 smac->expansion = expansion;
1683 smac->in_progress = false;
1684 return true; /* Success */
1685}
1686
1687/*
1688 * Undefine an smacro
1689 */
1690static void undef_smacro(Context *ctx, const char *mname)
1691{
1692 SMacro **smhead, *s, **sp;
1693
1694 if (!ctx)
1695 smhead = (SMacro **) hash_findi(smacros, mname, NULL);
1696 else
1697 smhead = &ctx->localmac;
H. Peter Anvin70653092007-10-19 14:42:29 -07001698
H. Peter Anvin4db5a162007-10-11 13:42:09 -07001699 if (smhead) {
1700 /*
1701 * We now have a macro name... go hunt for it.
1702 */
1703 sp = smhead;
1704 while ((s = *sp) != NULL) {
1705 if (!mstrcmp(s->name, mname, s->casesense)) {
1706 *sp = s->next;
1707 nasm_free(s->name);
1708 free_tlist(s->expansion);
1709 nasm_free(s);
1710 } else {
1711 sp = &s->next;
1712 }
1713 }
1714 }
1715}
1716
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001717/*
1718 * Decode a size directive
1719 */
1720static int parse_size(const char *str) {
1721 static const char *size_names[] =
1722 { "byte", "dword", "oword", "qword", "tword", "word" };
1723 static const int sizes[] =
1724 { 0, 1, 4, 16, 8, 10, 2 };
1725
1726 return sizes[bsii(str, size_names, elements(size_names))+1];
1727}
1728
Ed Beroset3ab3f412002-06-11 03:31:49 +00001729/**
1730 * find and process preprocessor directive in passed line
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001731 * Find out if a line contains a preprocessor directive, and deal
1732 * with it if so.
H. Peter Anvin70653092007-10-19 14:42:29 -07001733 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00001734 * If a directive _is_ found, it is the responsibility of this routine
1735 * (and not the caller) to free_tlist() the line.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001736 *
Ed Beroset3ab3f412002-06-11 03:31:49 +00001737 * @param tline a pointer to the current tokeninzed line linked list
1738 * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND
H. Peter Anvin70653092007-10-19 14:42:29 -07001739 *
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001740 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001741static int do_directive(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001742{
H. Peter Anvin4169a472007-09-12 01:29:43 +00001743 enum preproc_token i;
1744 int j;
H. Peter Anvin70055962007-10-11 00:05:31 -07001745 bool err;
1746 int nparam;
1747 bool nolist;
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07001748 bool casesense;
H. Peter Anvin8cfdb9d2007-09-14 18:36:01 -07001749 int k, m;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001750 int offset;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001751 char *p, *mname;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001752 Include *inc;
1753 Context *ctx;
1754 Cond *cond;
H. Peter Anvin97a23472007-09-16 17:57:25 -07001755 MMacro *mmac, **mmhead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001756 Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
1757 Line *l;
1758 struct tokenval tokval;
1759 expr *evalresult;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001760 MMacro *tmp_defining; /* Used when manipulating rep_nest */
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07001761 int64_t count;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001762
1763 origline = tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001764
H. Peter Anvineba20a72002-04-30 20:53:55 +00001765 skip_white_(tline);
1766 if (!tok_type_(tline, TOK_PREPROC_ID) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001767 (tline->text[1] == '%' || tline->text[1] == '$'
1768 || tline->text[1] == '!'))
1769 return NO_DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001770
H. Peter Anvin4169a472007-09-12 01:29:43 +00001771 i = pp_token_hash(tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001772
1773 /*
1774 * If we're in a non-emitting branch of a condition construct,
H. Peter Anvin76690a12002-04-30 20:52:49 +00001775 * or walking to the end of an already terminated %rep block,
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001776 * we should ignore all directives except for condition
1777 * directives.
1778 */
H. Peter Anvin76690a12002-04-30 20:52:49 +00001779 if (((istk->conds && !emitting(istk->conds->state)) ||
H. Peter Anvine2c80182005-01-15 22:15:51 +00001780 (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) {
1781 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001782 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001783
1784 /*
H. Peter Anvin76690a12002-04-30 20:52:49 +00001785 * If we're defining a macro or reading a %rep block, we should
1786 * ignore all directives except for %macro/%imacro (which
1787 * generate an error), %endm/%endmacro, and (only if we're in a
H. Peter Anvineba20a72002-04-30 20:53:55 +00001788 * %rep block) %endrep. If we're in a %rep block, another %rep
1789 * causes an error, so should be let through.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001790 */
1791 if (defining && i != PP_MACRO && i != PP_IMACRO &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00001792 i != PP_ENDMACRO && i != PP_ENDM &&
1793 (defining->name || (i != PP_ENDREP && i != PP_REP))) {
1794 return NO_DIRECTIVE_FOUND;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001795 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001796
H. Peter Anvin4169a472007-09-12 01:29:43 +00001797 switch (i) {
1798 case PP_INVALID:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001799 error(ERR_NONFATAL, "unknown preprocessor directive `%s'",
1800 tline->text);
1801 return NO_DIRECTIVE_FOUND; /* didn't get it */
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001802
H. Peter Anvine2c80182005-01-15 22:15:51 +00001803 case PP_STACKSIZE:
1804 /* Directive to tell NASM what the default stack size is. The
1805 * default is for a 16-bit stack, and this can be overriden with
1806 * %stacksize large.
1807 * the following form:
1808 *
1809 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
1810 */
1811 tline = tline->next;
1812 if (tline && tline->type == TOK_WHITESPACE)
1813 tline = tline->next;
1814 if (!tline || tline->type != TOK_ID) {
1815 error(ERR_NONFATAL, "`%%stacksize' missing size parameter");
1816 free_tlist(origline);
1817 return DIRECTIVE_FOUND;
1818 }
1819 if (nasm_stricmp(tline->text, "flat") == 0) {
1820 /* All subsequent ARG directives are for a 32-bit stack */
1821 StackSize = 4;
1822 StackPointer = "ebp";
1823 ArgOffset = 8;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001824 LocalOffset = 0;
Charles Crayne7eaf9192007-11-08 22:11:14 -08001825 } else if (nasm_stricmp(tline->text, "flat64") == 0) {
1826 /* All subsequent ARG directives are for a 64-bit stack */
1827 StackSize = 8;
1828 StackPointer = "rbp";
1829 ArgOffset = 8;
1830 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001831 } else if (nasm_stricmp(tline->text, "large") == 0) {
1832 /* All subsequent ARG directives are for a 16-bit stack,
1833 * far function call.
1834 */
1835 StackSize = 2;
1836 StackPointer = "bp";
1837 ArgOffset = 4;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001838 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001839 } else if (nasm_stricmp(tline->text, "small") == 0) {
1840 /* All subsequent ARG directives are for a 16-bit stack,
1841 * far function call. We don't support near functions.
1842 */
1843 StackSize = 2;
1844 StackPointer = "bp";
1845 ArgOffset = 6;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001846 LocalOffset = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001847 } else {
1848 error(ERR_NONFATAL, "`%%stacksize' invalid size type");
1849 free_tlist(origline);
1850 return DIRECTIVE_FOUND;
1851 }
1852 free_tlist(origline);
1853 return DIRECTIVE_FOUND;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001854
H. Peter Anvine2c80182005-01-15 22:15:51 +00001855 case PP_ARG:
1856 /* TASM like ARG directive to define arguments to functions, in
1857 * the following form:
1858 *
1859 * ARG arg1:WORD, arg2:DWORD, arg4:QWORD
1860 */
1861 offset = ArgOffset;
1862 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001863 char *arg, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00001864 int size = StackSize;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001865
H. Peter Anvine2c80182005-01-15 22:15:51 +00001866 /* Find the argument name */
1867 tline = tline->next;
1868 if (tline && tline->type == TOK_WHITESPACE)
1869 tline = tline->next;
1870 if (!tline || tline->type != TOK_ID) {
1871 error(ERR_NONFATAL, "`%%arg' missing argument parameter");
1872 free_tlist(origline);
1873 return DIRECTIVE_FOUND;
1874 }
1875 arg = tline->text;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001876
H. Peter Anvine2c80182005-01-15 22:15:51 +00001877 /* Find the argument size type */
1878 tline = tline->next;
1879 if (!tline || tline->type != TOK_OTHER
1880 || tline->text[0] != ':') {
1881 error(ERR_NONFATAL,
1882 "Syntax error processing `%%arg' directive");
1883 free_tlist(origline);
1884 return DIRECTIVE_FOUND;
1885 }
1886 tline = tline->next;
1887 if (!tline || tline->type != TOK_ID) {
1888 error(ERR_NONFATAL, "`%%arg' missing size type parameter");
1889 free_tlist(origline);
1890 return DIRECTIVE_FOUND;
1891 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001892
H. Peter Anvine2c80182005-01-15 22:15:51 +00001893 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00001894 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001895 tt = expand_smacro(tt);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001896 size = parse_size(tt->text);
1897 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001898 error(ERR_NONFATAL,
1899 "Invalid size type for `%%arg' missing directive");
1900 free_tlist(tt);
1901 free_tlist(origline);
1902 return DIRECTIVE_FOUND;
1903 }
1904 free_tlist(tt);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001905
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001906 /* Round up to even stack slots */
1907 size = (size+StackSize-1) & ~(StackSize-1);
1908
H. Peter Anvine2c80182005-01-15 22:15:51 +00001909 /* Now define the macro for the argument */
1910 snprintf(directive, sizeof(directive), "%%define %s (%s+%d)",
1911 arg, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00001912 do_directive(tokenize(directive));
H. Peter Anvine2c80182005-01-15 22:15:51 +00001913 offset += size;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001914
H. Peter Anvine2c80182005-01-15 22:15:51 +00001915 /* Move to the next argument in the list */
1916 tline = tline->next;
1917 if (tline && tline->type == TOK_WHITESPACE)
1918 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001919 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
1920 ArgOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001921 free_tlist(origline);
1922 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001923
H. Peter Anvine2c80182005-01-15 22:15:51 +00001924 case PP_LOCAL:
1925 /* TASM like LOCAL directive to define local variables for a
1926 * function, in the following form:
1927 *
1928 * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize
1929 *
1930 * The '= LocalSize' at the end is ignored by NASM, but is
1931 * required by TASM to define the local parameter size (and used
1932 * by the TASM macro package).
1933 */
1934 offset = LocalOffset;
1935 do {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001936 char *local, directive[256];
H. Peter Anvine2c80182005-01-15 22:15:51 +00001937 int size = StackSize;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001938
H. Peter Anvine2c80182005-01-15 22:15:51 +00001939 /* Find the argument name */
1940 tline = tline->next;
1941 if (tline && tline->type == TOK_WHITESPACE)
1942 tline = tline->next;
1943 if (!tline || tline->type != TOK_ID) {
1944 error(ERR_NONFATAL,
1945 "`%%local' missing argument parameter");
1946 free_tlist(origline);
1947 return DIRECTIVE_FOUND;
1948 }
1949 local = tline->text;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001950
H. Peter Anvine2c80182005-01-15 22:15:51 +00001951 /* Find the argument size type */
1952 tline = tline->next;
1953 if (!tline || tline->type != TOK_OTHER
1954 || tline->text[0] != ':') {
1955 error(ERR_NONFATAL,
1956 "Syntax error processing `%%local' directive");
1957 free_tlist(origline);
1958 return DIRECTIVE_FOUND;
1959 }
1960 tline = tline->next;
1961 if (!tline || tline->type != TOK_ID) {
1962 error(ERR_NONFATAL,
1963 "`%%local' missing size type parameter");
1964 free_tlist(origline);
1965 return DIRECTIVE_FOUND;
1966 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00001967
H. Peter Anvine2c80182005-01-15 22:15:51 +00001968 /* Allow macro expansion of type parameter */
Keith Kaniosb7a89542007-04-12 02:40:54 +00001969 tt = tokenize(tline->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001970 tt = expand_smacro(tt);
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001971 size = parse_size(tt->text);
1972 if (!size) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001973 error(ERR_NONFATAL,
1974 "Invalid size type for `%%local' missing directive");
1975 free_tlist(tt);
1976 free_tlist(origline);
1977 return DIRECTIVE_FOUND;
1978 }
1979 free_tlist(tt);
H. Peter Anvin734b1882002-04-30 21:01:08 +00001980
H. Peter Anvin8781cb02007-11-08 20:01:11 -08001981 /* Round up to even stack slots */
1982 size = (size+StackSize-1) & ~(StackSize-1);
1983
1984 offset += size; /* Negative offset, increment before */
1985
1986 /* Now define the macro for the argument */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001987 snprintf(directive, sizeof(directive), "%%define %s (%s-%d)",
1988 local, StackPointer, offset);
Keith Kaniosb7a89542007-04-12 02:40:54 +00001989 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001990
H. Peter Anvine2c80182005-01-15 22:15:51 +00001991 /* Now define the assign to setup the enter_c macro correctly */
1992 snprintf(directive, sizeof(directive),
1993 "%%assign %%$localsize %%$localsize+%d", size);
Keith Kaniosb7a89542007-04-12 02:40:54 +00001994 do_directive(tokenize(directive));
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001995
H. Peter Anvine2c80182005-01-15 22:15:51 +00001996 /* Move to the next argument in the list */
1997 tline = tline->next;
1998 if (tline && tline->type == TOK_WHITESPACE)
1999 tline = tline->next;
H. Peter Anvin8781cb02007-11-08 20:01:11 -08002000 } while (tline && tline->type == TOK_OTHER && tline->text[0] == ',');
2001 LocalOffset = offset;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002002 free_tlist(origline);
2003 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002004
H. Peter Anvine2c80182005-01-15 22:15:51 +00002005 case PP_CLEAR:
2006 if (tline->next)
2007 error(ERR_WARNING, "trailing garbage after `%%clear' ignored");
H. Peter Anvin97a23472007-09-16 17:57:25 -07002008 free_macros();
2009 init_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00002010 free_tlist(origline);
2011 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002012
H. Peter Anvine2c80182005-01-15 22:15:51 +00002013 case PP_INCLUDE:
2014 tline = tline->next;
2015 skip_white_(tline);
2016 if (!tline || (tline->type != TOK_STRING &&
2017 tline->type != TOK_INTERNAL_STRING)) {
2018 error(ERR_NONFATAL, "`%%include' expects a file name");
2019 free_tlist(origline);
2020 return DIRECTIVE_FOUND; /* but we did _something_ */
2021 }
2022 if (tline->next)
2023 error(ERR_WARNING,
2024 "trailing garbage after `%%include' ignored");
2025 if (tline->type != TOK_INTERNAL_STRING) {
2026 p = tline->text + 1; /* point past the quote to the name */
2027 p[strlen(p) - 1] = '\0'; /* remove the trailing quote */
2028 } else
2029 p = tline->text; /* internal_string is easier */
2030 expand_macros_in_string(&p);
2031 inc = nasm_malloc(sizeof(Include));
2032 inc->next = istk;
2033 inc->conds = NULL;
2034 inc->fp = inc_fopen(p);
H. Peter Anvin37a321f2007-09-24 13:41:58 -07002035 if (!inc->fp && pass == 0) {
2036 /* -MG given but file not found */
2037 nasm_free(inc);
2038 } else {
2039 inc->fname = src_set_fname(p);
2040 inc->lineno = src_set_linnum(0);
2041 inc->lineinc = 1;
2042 inc->expansion = NULL;
2043 inc->mstk = NULL;
2044 istk = inc;
2045 list->uplevel(LIST_INCLUDE);
2046 }
2047 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002048 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002049
H. Peter Anvine2c80182005-01-15 22:15:51 +00002050 case PP_PUSH:
2051 tline = tline->next;
2052 skip_white_(tline);
2053 tline = expand_id(tline);
2054 if (!tok_type_(tline, TOK_ID)) {
2055 error(ERR_NONFATAL, "`%%push' expects a context identifier");
2056 free_tlist(origline);
2057 return DIRECTIVE_FOUND; /* but we did _something_ */
2058 }
2059 if (tline->next)
2060 error(ERR_WARNING, "trailing garbage after `%%push' ignored");
2061 ctx = nasm_malloc(sizeof(Context));
2062 ctx->next = cstk;
2063 ctx->localmac = NULL;
2064 ctx->name = nasm_strdup(tline->text);
2065 ctx->number = unique++;
2066 cstk = ctx;
2067 free_tlist(origline);
2068 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002069
H. Peter Anvine2c80182005-01-15 22:15:51 +00002070 case PP_REPL:
2071 tline = tline->next;
2072 skip_white_(tline);
2073 tline = expand_id(tline);
2074 if (!tok_type_(tline, TOK_ID)) {
2075 error(ERR_NONFATAL, "`%%repl' expects a context identifier");
2076 free_tlist(origline);
2077 return DIRECTIVE_FOUND; /* but we did _something_ */
2078 }
2079 if (tline->next)
2080 error(ERR_WARNING, "trailing garbage after `%%repl' ignored");
2081 if (!cstk)
2082 error(ERR_NONFATAL, "`%%repl': context stack is empty");
2083 else {
2084 nasm_free(cstk->name);
2085 cstk->name = nasm_strdup(tline->text);
2086 }
2087 free_tlist(origline);
2088 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002089
H. Peter Anvine2c80182005-01-15 22:15:51 +00002090 case PP_POP:
2091 if (tline->next)
2092 error(ERR_WARNING, "trailing garbage after `%%pop' ignored");
2093 if (!cstk)
2094 error(ERR_NONFATAL, "`%%pop': context stack is already empty");
2095 else
2096 ctx_pop();
2097 free_tlist(origline);
2098 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002099
H. Peter Anvine2c80182005-01-15 22:15:51 +00002100 case PP_ERROR:
2101 tline->next = expand_smacro(tline->next);
2102 tline = tline->next;
2103 skip_white_(tline);
2104 if (tok_type_(tline, TOK_STRING)) {
2105 p = tline->text + 1; /* point past the quote to the name */
2106 p[strlen(p) - 1] = '\0'; /* remove the trailing quote */
2107 expand_macros_in_string(&p);
2108 error(ERR_NONFATAL, "%s", p);
2109 nasm_free(p);
2110 } else {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002111 p = detoken(tline, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002112 error(ERR_WARNING, "%s", p);
2113 nasm_free(p);
2114 }
2115 free_tlist(origline);
2116 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002117
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002118 CASE_PP_IF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002119 if (istk->conds && !emitting(istk->conds->state))
2120 j = COND_NEVER;
2121 else {
2122 j = if_condition(tline->next, i);
2123 tline->next = NULL; /* it got freed */
2124 free_tlist(origline);
2125 j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2126 }
2127 cond = nasm_malloc(sizeof(Cond));
2128 cond->next = istk->conds;
2129 cond->state = j;
2130 istk->conds = cond;
2131 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002132
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002133 CASE_PP_ELIF:
H. Peter Anvine2c80182005-01-15 22:15:51 +00002134 if (!istk->conds)
H. Peter Anvin4169a472007-09-12 01:29:43 +00002135 error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002136 if (emitting(istk->conds->state)
2137 || istk->conds->state == COND_NEVER)
2138 istk->conds->state = COND_NEVER;
2139 else {
2140 /*
2141 * IMPORTANT: In the case of %if, we will already have
2142 * called expand_mmac_params(); however, if we're
2143 * processing an %elif we must have been in a
2144 * non-emitting mode, which would have inhibited
2145 * the normal invocation of expand_mmac_params(). Therefore,
2146 * we have to do it explicitly here.
2147 */
2148 j = if_condition(expand_mmac_params(tline->next), i);
2149 tline->next = NULL; /* it got freed */
2150 free_tlist(origline);
2151 istk->conds->state =
2152 j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE;
2153 }
2154 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002155
H. Peter Anvine2c80182005-01-15 22:15:51 +00002156 case PP_ELSE:
2157 if (tline->next)
2158 error(ERR_WARNING, "trailing garbage after `%%else' ignored");
2159 if (!istk->conds)
2160 error(ERR_FATAL, "`%%else': no matching `%%if'");
2161 if (emitting(istk->conds->state)
2162 || istk->conds->state == COND_NEVER)
2163 istk->conds->state = COND_ELSE_FALSE;
2164 else
2165 istk->conds->state = COND_ELSE_TRUE;
2166 free_tlist(origline);
2167 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002168
H. Peter Anvine2c80182005-01-15 22:15:51 +00002169 case PP_ENDIF:
2170 if (tline->next)
2171 error(ERR_WARNING, "trailing garbage after `%%endif' ignored");
2172 if (!istk->conds)
2173 error(ERR_FATAL, "`%%endif': no matching `%%if'");
2174 cond = istk->conds;
2175 istk->conds = cond->next;
2176 nasm_free(cond);
2177 free_tlist(origline);
2178 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002179
H. Peter Anvine2c80182005-01-15 22:15:51 +00002180 case PP_MACRO:
2181 case PP_IMACRO:
2182 if (defining)
2183 error(ERR_FATAL,
2184 "`%%%smacro': already defining a macro",
2185 (i == PP_IMACRO ? "i" : ""));
2186 tline = tline->next;
2187 skip_white_(tline);
2188 tline = expand_id(tline);
2189 if (!tok_type_(tline, TOK_ID)) {
2190 error(ERR_NONFATAL,
2191 "`%%%smacro' expects a macro name",
2192 (i == PP_IMACRO ? "i" : ""));
2193 return DIRECTIVE_FOUND;
2194 }
2195 defining = nasm_malloc(sizeof(MMacro));
2196 defining->name = nasm_strdup(tline->text);
2197 defining->casesense = (i == PP_MACRO);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002198 defining->plus = false;
2199 defining->nolist = false;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002200 defining->in_progress = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002201 defining->rep_nest = NULL;
2202 tline = expand_smacro(tline->next);
2203 skip_white_(tline);
2204 if (!tok_type_(tline, TOK_NUMBER)) {
2205 error(ERR_NONFATAL,
2206 "`%%%smacro' expects a parameter count",
2207 (i == PP_IMACRO ? "i" : ""));
2208 defining->nparam_min = defining->nparam_max = 0;
2209 } else {
2210 defining->nparam_min = defining->nparam_max =
H. Peter Anvin70055962007-10-11 00:05:31 -07002211 readnum(tline->text, &err);
2212 if (err)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002213 error(ERR_NONFATAL,
2214 "unable to parse parameter count `%s'", tline->text);
2215 }
2216 if (tline && tok_is_(tline->next, "-")) {
2217 tline = tline->next->next;
2218 if (tok_is_(tline, "*"))
2219 defining->nparam_max = INT_MAX;
2220 else if (!tok_type_(tline, TOK_NUMBER))
2221 error(ERR_NONFATAL,
2222 "`%%%smacro' expects a parameter count after `-'",
2223 (i == PP_IMACRO ? "i" : ""));
2224 else {
H. Peter Anvin70055962007-10-11 00:05:31 -07002225 defining->nparam_max = readnum(tline->text, &err);
2226 if (err)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002227 error(ERR_NONFATAL,
2228 "unable to parse parameter count `%s'",
2229 tline->text);
2230 if (defining->nparam_min > defining->nparam_max)
2231 error(ERR_NONFATAL,
2232 "minimum parameter count exceeds maximum");
2233 }
2234 }
2235 if (tline && tok_is_(tline->next, "+")) {
2236 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002237 defining->plus = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002238 }
2239 if (tline && tok_type_(tline->next, TOK_ID) &&
2240 !nasm_stricmp(tline->next->text, ".nolist")) {
2241 tline = tline->next;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002242 defining->nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002243 }
H. Peter Anvin97a23472007-09-16 17:57:25 -07002244 mmac = (MMacro *) hash_findix(mmacros, defining->name);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002245 while (mmac) {
2246 if (!strcmp(mmac->name, defining->name) &&
2247 (mmac->nparam_min <= defining->nparam_max
2248 || defining->plus)
2249 && (defining->nparam_min <= mmac->nparam_max
2250 || mmac->plus)) {
2251 error(ERR_WARNING,
2252 "redefining multi-line macro `%s'", defining->name);
2253 break;
2254 }
2255 mmac = mmac->next;
2256 }
2257 /*
2258 * Handle default parameters.
2259 */
2260 if (tline && tline->next) {
2261 defining->dlist = tline->next;
2262 tline->next = NULL;
2263 count_mmac_params(defining->dlist, &defining->ndefs,
2264 &defining->defaults);
2265 } else {
2266 defining->dlist = NULL;
2267 defining->defaults = NULL;
2268 }
2269 defining->expansion = NULL;
2270 free_tlist(origline);
2271 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002272
H. Peter Anvine2c80182005-01-15 22:15:51 +00002273 case PP_ENDM:
2274 case PP_ENDMACRO:
2275 if (!defining) {
2276 error(ERR_NONFATAL, "`%s': not defining a macro", tline->text);
2277 return DIRECTIVE_FOUND;
2278 }
H. Peter Anvin97a23472007-09-16 17:57:25 -07002279 mmhead = (MMacro **) hash_findi_add(mmacros, defining->name);
2280 defining->next = *mmhead;
2281 *mmhead = defining;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002282 defining = NULL;
2283 free_tlist(origline);
2284 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002285
H. Peter Anvine2c80182005-01-15 22:15:51 +00002286 case PP_ROTATE:
2287 if (tline->next && tline->next->type == TOK_WHITESPACE)
2288 tline = tline->next;
2289 if (tline->next == NULL) {
2290 free_tlist(origline);
2291 error(ERR_NONFATAL, "`%%rotate' missing rotate count");
2292 return DIRECTIVE_FOUND;
2293 }
2294 t = expand_smacro(tline->next);
2295 tline->next = NULL;
2296 free_tlist(origline);
2297 tline = t;
2298 tptr = &t;
2299 tokval.t_type = TOKEN_INVALID;
2300 evalresult =
2301 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2302 free_tlist(tline);
2303 if (!evalresult)
2304 return DIRECTIVE_FOUND;
2305 if (tokval.t_type)
2306 error(ERR_WARNING,
2307 "trailing garbage after expression ignored");
2308 if (!is_simple(evalresult)) {
2309 error(ERR_NONFATAL, "non-constant value given to `%%rotate'");
2310 return DIRECTIVE_FOUND;
2311 }
2312 mmac = istk->mstk;
2313 while (mmac && !mmac->name) /* avoid mistaking %reps for macros */
2314 mmac = mmac->next_active;
2315 if (!mmac) {
2316 error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call");
2317 } else if (mmac->nparam == 0) {
2318 error(ERR_NONFATAL,
2319 "`%%rotate' invoked within macro without parameters");
2320 } else {
H. Peter Anvin25a99342007-09-22 17:45:45 -07002321 int rotate = mmac->rotate + reloc_value(evalresult);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002322
H. Peter Anvin25a99342007-09-22 17:45:45 -07002323 rotate %= (int)mmac->nparam;
2324 if (rotate < 0)
2325 rotate += mmac->nparam;
H. Peter Anvin70653092007-10-19 14:42:29 -07002326
H. Peter Anvin25a99342007-09-22 17:45:45 -07002327 mmac->rotate = rotate;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002328 }
2329 return DIRECTIVE_FOUND;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002330
H. Peter Anvine2c80182005-01-15 22:15:51 +00002331 case PP_REP:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002332 nolist = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002333 do {
2334 tline = tline->next;
2335 } while (tok_type_(tline, TOK_WHITESPACE));
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002336
H. Peter Anvine2c80182005-01-15 22:15:51 +00002337 if (tok_type_(tline, TOK_ID) &&
2338 nasm_stricmp(tline->text, ".nolist") == 0) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002339 nolist = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002340 do {
2341 tline = tline->next;
2342 } while (tok_type_(tline, TOK_WHITESPACE));
2343 }
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00002344
H. Peter Anvine2c80182005-01-15 22:15:51 +00002345 if (tline) {
2346 t = expand_smacro(tline);
2347 tptr = &t;
2348 tokval.t_type = TOKEN_INVALID;
2349 evalresult =
2350 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2351 if (!evalresult) {
2352 free_tlist(origline);
2353 return DIRECTIVE_FOUND;
2354 }
2355 if (tokval.t_type)
2356 error(ERR_WARNING,
2357 "trailing garbage after expression ignored");
2358 if (!is_simple(evalresult)) {
2359 error(ERR_NONFATAL, "non-constant value given to `%%rep'");
2360 return DIRECTIVE_FOUND;
2361 }
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002362 count = reloc_value(evalresult) + 1;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002363 } else {
2364 error(ERR_NONFATAL, "`%%rep' expects a repeat count");
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002365 count = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002366 }
2367 free_tlist(origline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002368
H. Peter Anvine2c80182005-01-15 22:15:51 +00002369 tmp_defining = defining;
2370 defining = nasm_malloc(sizeof(MMacro));
2371 defining->name = NULL; /* flags this macro as a %rep block */
H. Peter Anvin70055962007-10-11 00:05:31 -07002372 defining->casesense = false;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002373 defining->plus = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002374 defining->nolist = nolist;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002375 defining->in_progress = count;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002376 defining->nparam_min = defining->nparam_max = 0;
2377 defining->defaults = NULL;
2378 defining->dlist = NULL;
2379 defining->expansion = NULL;
2380 defining->next_active = istk->mstk;
2381 defining->rep_nest = tmp_defining;
2382 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002383
H. Peter Anvine2c80182005-01-15 22:15:51 +00002384 case PP_ENDREP:
2385 if (!defining || defining->name) {
2386 error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'");
2387 return DIRECTIVE_FOUND;
2388 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002389
H. Peter Anvine2c80182005-01-15 22:15:51 +00002390 /*
2391 * Now we have a "macro" defined - although it has no name
2392 * and we won't be entering it in the hash tables - we must
2393 * push a macro-end marker for it on to istk->expansion.
2394 * After that, it will take care of propagating itself (a
2395 * macro-end marker line for a macro which is really a %rep
2396 * block will cause the macro to be re-expanded, complete
2397 * with another macro-end marker to ensure the process
2398 * continues) until the whole expansion is forcibly removed
2399 * from istk->expansion by a %exitrep.
2400 */
2401 l = nasm_malloc(sizeof(Line));
2402 l->next = istk->expansion;
2403 l->finishes = defining;
2404 l->first = NULL;
2405 istk->expansion = l;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002406
H. Peter Anvine2c80182005-01-15 22:15:51 +00002407 istk->mstk = defining;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002408
H. Peter Anvine2c80182005-01-15 22:15:51 +00002409 list->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
2410 tmp_defining = defining;
2411 defining = defining->rep_nest;
2412 free_tlist(origline);
2413 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002414
H. Peter Anvine2c80182005-01-15 22:15:51 +00002415 case PP_EXITREP:
2416 /*
2417 * We must search along istk->expansion until we hit a
2418 * macro-end marker for a macro with no name. Then we set
2419 * its `in_progress' flag to 0.
2420 */
2421 for (l = istk->expansion; l; l = l->next)
2422 if (l->finishes && !l->finishes->name)
2423 break;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002424
H. Peter Anvine2c80182005-01-15 22:15:51 +00002425 if (l)
2426 l->finishes->in_progress = 0;
2427 else
2428 error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block");
2429 free_tlist(origline);
2430 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002431
H. Peter Anvine2c80182005-01-15 22:15:51 +00002432 case PP_XDEFINE:
2433 case PP_IXDEFINE:
2434 case PP_DEFINE:
2435 case PP_IDEFINE:
H. Peter Anvin95e7f952007-10-11 13:38:38 -07002436 casesense = (i == PP_DEFINE || i == PP_XDEFINE);
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002437
H. Peter Anvine2c80182005-01-15 22:15:51 +00002438 tline = tline->next;
2439 skip_white_(tline);
2440 tline = expand_id(tline);
2441 if (!tline || (tline->type != TOK_ID &&
2442 (tline->type != TOK_PREPROC_ID ||
2443 tline->text[1] != '$'))) {
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002444 error(ERR_NONFATAL, "`%s' expects a macro identifier",
2445 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002446 free_tlist(origline);
2447 return DIRECTIVE_FOUND;
2448 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002449
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002450 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002451
H. Peter Anvine2c80182005-01-15 22:15:51 +00002452 mname = tline->text;
2453 last = tline;
2454 param_start = tline = tline->next;
2455 nparam = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002456
H. Peter Anvine2c80182005-01-15 22:15:51 +00002457 /* Expand the macro definition now for %xdefine and %ixdefine */
2458 if ((i == PP_XDEFINE) || (i == PP_IXDEFINE))
2459 tline = expand_smacro(tline);
H. Peter Anvin734b1882002-04-30 21:01:08 +00002460
H. Peter Anvine2c80182005-01-15 22:15:51 +00002461 if (tok_is_(tline, "(")) {
2462 /*
2463 * This macro has parameters.
2464 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00002465
H. Peter Anvine2c80182005-01-15 22:15:51 +00002466 tline = tline->next;
2467 while (1) {
2468 skip_white_(tline);
2469 if (!tline) {
2470 error(ERR_NONFATAL, "parameter identifier expected");
2471 free_tlist(origline);
2472 return DIRECTIVE_FOUND;
2473 }
2474 if (tline->type != TOK_ID) {
2475 error(ERR_NONFATAL,
2476 "`%s': parameter identifier expected",
2477 tline->text);
2478 free_tlist(origline);
2479 return DIRECTIVE_FOUND;
2480 }
2481 tline->type = TOK_SMAC_PARAM + nparam++;
2482 tline = tline->next;
2483 skip_white_(tline);
2484 if (tok_is_(tline, ",")) {
2485 tline = tline->next;
2486 continue;
2487 }
2488 if (!tok_is_(tline, ")")) {
2489 error(ERR_NONFATAL,
2490 "`)' expected to terminate macro template");
2491 free_tlist(origline);
2492 return DIRECTIVE_FOUND;
2493 }
2494 break;
2495 }
2496 last = tline;
2497 tline = tline->next;
2498 }
2499 if (tok_type_(tline, TOK_WHITESPACE))
2500 last = tline, tline = tline->next;
2501 macro_start = NULL;
2502 last->next = NULL;
2503 t = tline;
2504 while (t) {
2505 if (t->type == TOK_ID) {
2506 for (tt = param_start; tt; tt = tt->next)
2507 if (tt->type >= TOK_SMAC_PARAM &&
2508 !strcmp(tt->text, t->text))
2509 t->type = tt->type;
2510 }
2511 tt = t->next;
2512 t->next = macro_start;
2513 macro_start = t;
2514 t = tt;
2515 }
2516 /*
2517 * Good. We now have a macro name, a parameter count, and a
2518 * token list (in reverse order) for an expansion. We ought
2519 * to be OK just to create an SMacro, store it, and let
2520 * free_tlist have the rest of the line (which we have
2521 * carefully re-terminated after chopping off the expansion
2522 * from the end).
2523 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002524 define_smacro(ctx, mname, casesense, nparam, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002525 free_tlist(origline);
2526 return DIRECTIVE_FOUND;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002527
H. Peter Anvine2c80182005-01-15 22:15:51 +00002528 case PP_UNDEF:
2529 tline = tline->next;
2530 skip_white_(tline);
2531 tline = expand_id(tline);
2532 if (!tline || (tline->type != TOK_ID &&
2533 (tline->type != TOK_PREPROC_ID ||
2534 tline->text[1] != '$'))) {
2535 error(ERR_NONFATAL, "`%%undef' expects a macro identifier");
2536 free_tlist(origline);
2537 return DIRECTIVE_FOUND;
2538 }
2539 if (tline->next) {
2540 error(ERR_WARNING,
2541 "trailing garbage after macro name ignored");
2542 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002543
H. Peter Anvine2c80182005-01-15 22:15:51 +00002544 /* Find the context that symbol belongs to */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002545 ctx = get_ctx(tline->text, false);
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002546 undef_smacro(ctx, tline->text);
2547 free_tlist(origline);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002548 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002549
H. Peter Anvine2c80182005-01-15 22:15:51 +00002550 case PP_STRLEN:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002551 casesense = true;
H. Peter Anvin70653092007-10-19 14:42:29 -07002552
H. Peter Anvine2c80182005-01-15 22:15:51 +00002553 tline = tline->next;
2554 skip_white_(tline);
2555 tline = expand_id(tline);
2556 if (!tline || (tline->type != TOK_ID &&
2557 (tline->type != TOK_PREPROC_ID ||
2558 tline->text[1] != '$'))) {
2559 error(ERR_NONFATAL,
2560 "`%%strlen' expects a macro identifier as first parameter");
2561 free_tlist(origline);
2562 return DIRECTIVE_FOUND;
2563 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002564 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002565
H. Peter Anvine2c80182005-01-15 22:15:51 +00002566 mname = tline->text;
2567 last = tline;
2568 tline = expand_smacro(tline->next);
2569 last->next = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002570
H. Peter Anvine2c80182005-01-15 22:15:51 +00002571 t = tline;
2572 while (tok_type_(t, TOK_WHITESPACE))
2573 t = t->next;
2574 /* t should now point to the string */
2575 if (t->type != TOK_STRING) {
2576 error(ERR_NONFATAL,
2577 "`%%strlen` requires string as second parameter");
2578 free_tlist(tline);
2579 free_tlist(origline);
2580 return DIRECTIVE_FOUND;
2581 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002582
H. Peter Anvine2c80182005-01-15 22:15:51 +00002583 macro_start = nasm_malloc(sizeof(*macro_start));
2584 macro_start->next = NULL;
2585 make_tok_num(macro_start, strlen(t->text) - 2);
2586 macro_start->mac = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002587
H. Peter Anvine2c80182005-01-15 22:15:51 +00002588 /*
2589 * We now have a macro name, an implicit parameter count of
2590 * zero, and a numeric token to use as an expansion. Create
2591 * and store an SMacro.
2592 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002593 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002594 free_tlist(tline);
2595 free_tlist(origline);
2596 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002597
H. Peter Anvine2c80182005-01-15 22:15:51 +00002598 case PP_SUBSTR:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002599 casesense = true;
2600
H. Peter Anvine2c80182005-01-15 22:15:51 +00002601 tline = tline->next;
2602 skip_white_(tline);
2603 tline = expand_id(tline);
2604 if (!tline || (tline->type != TOK_ID &&
2605 (tline->type != TOK_PREPROC_ID ||
2606 tline->text[1] != '$'))) {
2607 error(ERR_NONFATAL,
2608 "`%%substr' expects a macro identifier as first parameter");
2609 free_tlist(origline);
2610 return DIRECTIVE_FOUND;
2611 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002612 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002613
H. Peter Anvine2c80182005-01-15 22:15:51 +00002614 mname = tline->text;
2615 last = tline;
2616 tline = expand_smacro(tline->next);
2617 last->next = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002618
H. Peter Anvine2c80182005-01-15 22:15:51 +00002619 t = tline->next;
2620 while (tok_type_(t, TOK_WHITESPACE))
2621 t = t->next;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002622
H. Peter Anvine2c80182005-01-15 22:15:51 +00002623 /* t should now point to the string */
2624 if (t->type != TOK_STRING) {
2625 error(ERR_NONFATAL,
2626 "`%%substr` requires string as second parameter");
2627 free_tlist(tline);
2628 free_tlist(origline);
2629 return DIRECTIVE_FOUND;
2630 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002631
H. Peter Anvine2c80182005-01-15 22:15:51 +00002632 tt = t->next;
2633 tptr = &tt;
2634 tokval.t_type = TOKEN_INVALID;
2635 evalresult =
2636 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2637 if (!evalresult) {
2638 free_tlist(tline);
2639 free_tlist(origline);
2640 return DIRECTIVE_FOUND;
2641 }
2642 if (!is_simple(evalresult)) {
2643 error(ERR_NONFATAL, "non-constant value given to `%%substr`");
2644 free_tlist(tline);
2645 free_tlist(origline);
2646 return DIRECTIVE_FOUND;
2647 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00002648
H. Peter Anvine2c80182005-01-15 22:15:51 +00002649 macro_start = nasm_malloc(sizeof(*macro_start));
2650 macro_start->next = NULL;
2651 macro_start->text = nasm_strdup("'''");
2652 if (evalresult->value > 0
Charles Crayne192d5b52007-10-18 19:02:42 -07002653 && evalresult->value < (int) strlen(t->text) - 1) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00002654 macro_start->text[1] = t->text[evalresult->value];
2655 } else {
2656 macro_start->text[2] = '\0';
2657 }
2658 macro_start->type = TOK_STRING;
2659 macro_start->mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002660
H. Peter Anvine2c80182005-01-15 22:15:51 +00002661 /*
2662 * We now have a macro name, an implicit parameter count of
2663 * zero, and a numeric token to use as an expansion. Create
2664 * and store an SMacro.
2665 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002666 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002667 free_tlist(tline);
2668 free_tlist(origline);
2669 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002670
H. Peter Anvine2c80182005-01-15 22:15:51 +00002671 case PP_ASSIGN:
2672 case PP_IASSIGN:
H. Peter Anvin4bc9f1d2007-10-11 12:52:03 -07002673 casesense = (i == PP_ASSIGN);
2674
H. Peter Anvine2c80182005-01-15 22:15:51 +00002675 tline = tline->next;
2676 skip_white_(tline);
2677 tline = expand_id(tline);
2678 if (!tline || (tline->type != TOK_ID &&
2679 (tline->type != TOK_PREPROC_ID ||
2680 tline->text[1] != '$'))) {
2681 error(ERR_NONFATAL,
2682 "`%%%sassign' expects a macro identifier",
2683 (i == PP_IASSIGN ? "i" : ""));
2684 free_tlist(origline);
2685 return DIRECTIVE_FOUND;
2686 }
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002687 ctx = get_ctx(tline->text, false);
H. Peter Anvin97a23472007-09-16 17:57:25 -07002688
H. Peter Anvine2c80182005-01-15 22:15:51 +00002689 mname = tline->text;
2690 last = tline;
2691 tline = expand_smacro(tline->next);
2692 last->next = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002693
H. Peter Anvine2c80182005-01-15 22:15:51 +00002694 t = tline;
2695 tptr = &t;
2696 tokval.t_type = TOKEN_INVALID;
2697 evalresult =
2698 evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL);
2699 free_tlist(tline);
2700 if (!evalresult) {
2701 free_tlist(origline);
2702 return DIRECTIVE_FOUND;
2703 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002704
H. Peter Anvine2c80182005-01-15 22:15:51 +00002705 if (tokval.t_type)
2706 error(ERR_WARNING,
2707 "trailing garbage after expression ignored");
H. Peter Anvin734b1882002-04-30 21:01:08 +00002708
H. Peter Anvine2c80182005-01-15 22:15:51 +00002709 if (!is_simple(evalresult)) {
2710 error(ERR_NONFATAL,
2711 "non-constant value given to `%%%sassign'",
2712 (i == PP_IASSIGN ? "i" : ""));
2713 free_tlist(origline);
2714 return DIRECTIVE_FOUND;
2715 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002716
H. Peter Anvine2c80182005-01-15 22:15:51 +00002717 macro_start = nasm_malloc(sizeof(*macro_start));
2718 macro_start->next = NULL;
2719 make_tok_num(macro_start, reloc_value(evalresult));
2720 macro_start->mac = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002721
H. Peter Anvine2c80182005-01-15 22:15:51 +00002722 /*
2723 * We now have a macro name, an implicit parameter count of
2724 * zero, and a numeric token to use as an expansion. Create
2725 * and store an SMacro.
2726 */
H. Peter Anvin4db5a162007-10-11 13:42:09 -07002727 define_smacro(ctx, mname, casesense, 0, macro_start);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002728 free_tlist(origline);
2729 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002730
H. Peter Anvine2c80182005-01-15 22:15:51 +00002731 case PP_LINE:
2732 /*
2733 * Syntax is `%line nnn[+mmm] [filename]'
2734 */
2735 tline = tline->next;
2736 skip_white_(tline);
2737 if (!tok_type_(tline, TOK_NUMBER)) {
2738 error(ERR_NONFATAL, "`%%line' expects line number");
2739 free_tlist(origline);
2740 return DIRECTIVE_FOUND;
2741 }
H. Peter Anvin70055962007-10-11 00:05:31 -07002742 k = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002743 m = 1;
2744 tline = tline->next;
2745 if (tok_is_(tline, "+")) {
2746 tline = tline->next;
2747 if (!tok_type_(tline, TOK_NUMBER)) {
2748 error(ERR_NONFATAL, "`%%line' expects line increment");
2749 free_tlist(origline);
2750 return DIRECTIVE_FOUND;
2751 }
H. Peter Anvin70055962007-10-11 00:05:31 -07002752 m = readnum(tline->text, &err);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002753 tline = tline->next;
2754 }
2755 skip_white_(tline);
2756 src_set_linnum(k);
2757 istk->lineinc = m;
2758 if (tline) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07002759 nasm_free(src_set_fname(detoken(tline, false)));
H. Peter Anvine2c80182005-01-15 22:15:51 +00002760 }
2761 free_tlist(origline);
2762 return DIRECTIVE_FOUND;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002763
H. Peter Anvine2c80182005-01-15 22:15:51 +00002764 default:
2765 error(ERR_FATAL,
2766 "preprocessor directive `%s' not yet implemented",
H. Peter Anvin4169a472007-09-12 01:29:43 +00002767 pp_directives[i]);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002768 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002769 }
Ed Beroset3ab3f412002-06-11 03:31:49 +00002770 return DIRECTIVE_FOUND;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002771}
2772
2773/*
H. Peter Anvin76690a12002-04-30 20:52:49 +00002774 * Ensure that a macro parameter contains a condition code and
2775 * nothing else. Return the condition code index if so, or -1
2776 * otherwise.
2777 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002778static int find_cc(Token * t)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002779{
H. Peter Anvin76690a12002-04-30 20:52:49 +00002780 Token *tt;
2781 int i, j, k, m;
2782
H. Peter Anvin25a99342007-09-22 17:45:45 -07002783 if (!t)
2784 return -1; /* Probably a %+ without a space */
2785
H. Peter Anvineba20a72002-04-30 20:53:55 +00002786 skip_white_(t);
H. Peter Anvin76690a12002-04-30 20:52:49 +00002787 if (t->type != TOK_ID)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002788 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002789 tt = t->next;
H. Peter Anvineba20a72002-04-30 20:53:55 +00002790 skip_white_(tt);
H. Peter Anvin76690a12002-04-30 20:52:49 +00002791 if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ",")))
H. Peter Anvine2c80182005-01-15 22:15:51 +00002792 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002793
2794 i = -1;
Ed Beroset3ab3f412002-06-11 03:31:49 +00002795 j = elements(conditions);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002796 while (j - i > 1) {
2797 k = (j + i) / 2;
2798 m = nasm_stricmp(t->text, conditions[k]);
2799 if (m == 0) {
2800 i = k;
2801 j = -2;
2802 break;
2803 } else if (m < 0) {
2804 j = k;
2805 } else
2806 i = k;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002807 }
2808 if (j != -2)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002809 return -1;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002810 return i;
2811}
2812
2813/*
2814 * Expand MMacro-local things: parameter references (%0, %n, %+n,
2815 * %-n) and MMacro-local identifiers (%%foo).
2816 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00002817static Token *expand_mmac_params(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002818{
H. Peter Anvin734b1882002-04-30 21:01:08 +00002819 Token *t, *tt, **tail, *thead;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002820
2821 tail = &thead;
2822 thead = NULL;
2823
H. Peter Anvine2c80182005-01-15 22:15:51 +00002824 while (tline) {
2825 if (tline->type == TOK_PREPROC_ID &&
2826 (((tline->text[1] == '+' || tline->text[1] == '-')
2827 && tline->text[2]) || tline->text[1] == '%'
2828 || (tline->text[1] >= '0' && tline->text[1] <= '9'))) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002829 char *text = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002830 int type = 0, cc; /* type = 0 to placate optimisers */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002831 char tmpbuf[30];
H. Peter Anvin25a99342007-09-22 17:45:45 -07002832 unsigned int n;
2833 int i;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002834 MMacro *mac;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002835
H. Peter Anvine2c80182005-01-15 22:15:51 +00002836 t = tline;
2837 tline = tline->next;
H. Peter Anvin76690a12002-04-30 20:52:49 +00002838
H. Peter Anvine2c80182005-01-15 22:15:51 +00002839 mac = istk->mstk;
2840 while (mac && !mac->name) /* avoid mistaking %reps for macros */
2841 mac = mac->next_active;
2842 if (!mac)
2843 error(ERR_NONFATAL, "`%s': not in a macro call", t->text);
2844 else
2845 switch (t->text[1]) {
2846 /*
2847 * We have to make a substitution of one of the
2848 * forms %1, %-1, %+1, %%foo, %0.
2849 */
2850 case '0':
2851 type = TOK_NUMBER;
2852 snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam);
2853 text = nasm_strdup(tmpbuf);
2854 break;
2855 case '%':
2856 type = TOK_ID;
H. Peter Anvinf8ba53e2007-10-11 10:11:57 -07002857 snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".",
H. Peter Anvine2c80182005-01-15 22:15:51 +00002858 mac->unique);
2859 text = nasm_strcat(tmpbuf, t->text + 2);
2860 break;
2861 case '-':
2862 n = atoi(t->text + 2) - 1;
2863 if (n >= mac->nparam)
2864 tt = NULL;
2865 else {
2866 if (mac->nparam > 1)
2867 n = (n + mac->rotate) % mac->nparam;
2868 tt = mac->params[n];
2869 }
2870 cc = find_cc(tt);
2871 if (cc == -1) {
2872 error(ERR_NONFATAL,
2873 "macro parameter %d is not a condition code",
2874 n + 1);
2875 text = NULL;
2876 } else {
2877 type = TOK_ID;
2878 if (inverse_ccs[cc] == -1) {
2879 error(ERR_NONFATAL,
2880 "condition code `%s' is not invertible",
2881 conditions[cc]);
2882 text = NULL;
2883 } else
2884 text =
2885 nasm_strdup(conditions[inverse_ccs[cc]]);
2886 }
2887 break;
2888 case '+':
2889 n = atoi(t->text + 2) - 1;
2890 if (n >= mac->nparam)
2891 tt = NULL;
2892 else {
2893 if (mac->nparam > 1)
2894 n = (n + mac->rotate) % mac->nparam;
2895 tt = mac->params[n];
2896 }
2897 cc = find_cc(tt);
2898 if (cc == -1) {
2899 error(ERR_NONFATAL,
2900 "macro parameter %d is not a condition code",
2901 n + 1);
2902 text = NULL;
2903 } else {
2904 type = TOK_ID;
2905 text = nasm_strdup(conditions[cc]);
2906 }
2907 break;
2908 default:
2909 n = atoi(t->text + 1) - 1;
2910 if (n >= mac->nparam)
2911 tt = NULL;
2912 else {
2913 if (mac->nparam > 1)
2914 n = (n + mac->rotate) % mac->nparam;
2915 tt = mac->params[n];
2916 }
2917 if (tt) {
2918 for (i = 0; i < mac->paramlen[n]; i++) {
2919 *tail = new_Token(NULL, tt->type, tt->text, 0);
2920 tail = &(*tail)->next;
2921 tt = tt->next;
2922 }
2923 }
2924 text = NULL; /* we've done it here */
2925 break;
2926 }
2927 if (!text) {
2928 delete_Token(t);
2929 } else {
2930 *tail = t;
2931 tail = &t->next;
2932 t->type = type;
2933 nasm_free(t->text);
2934 t->text = text;
2935 t->mac = NULL;
2936 }
2937 continue;
2938 } else {
2939 t = *tail = tline;
2940 tline = tline->next;
2941 t->mac = NULL;
2942 tail = &t->next;
2943 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00002944 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00002945 *tail = NULL;
2946 t = thead;
H. Peter Anvin734b1882002-04-30 21:01:08 +00002947 for (; t && (tt = t->next) != NULL; t = t->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00002948 switch (t->type) {
2949 case TOK_WHITESPACE:
2950 if (tt->type == TOK_WHITESPACE) {
2951 t->next = delete_Token(tt);
2952 }
2953 break;
2954 case TOK_ID:
2955 if (tt->type == TOK_ID || tt->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002956 char *tmp = nasm_strcat(t->text, tt->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002957 nasm_free(t->text);
2958 t->text = tmp;
2959 t->next = delete_Token(tt);
2960 }
2961 break;
2962 case TOK_NUMBER:
2963 if (tt->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002964 char *tmp = nasm_strcat(t->text, tt->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00002965 nasm_free(t->text);
2966 t->text = tmp;
2967 t->next = delete_Token(tt);
2968 }
2969 break;
H. Peter Anvinda10e7b2007-09-12 04:18:37 +00002970 default:
2971 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00002972 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00002973
H. Peter Anvin76690a12002-04-30 20:52:49 +00002974 return thead;
2975}
2976
2977/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002978 * Expand all single-line macro calls made in the given line.
2979 * Return the expanded version of the line. The original is deemed
2980 * to be destroyed in the process. (In reality we'll just move
2981 * Tokens from input to output a lot of the time, rather than
2982 * actually bothering to destroy and replicate.)
2983 */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08002984#define DEADMAN_LIMIT (1 << 20)
2985
H. Peter Anvine2c80182005-01-15 22:15:51 +00002986static Token *expand_smacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00002987{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002988 Token *t, *tt, *mstart, **tail, *thead;
H. Peter Anvineba20a72002-04-30 20:53:55 +00002989 SMacro *head = NULL, *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002990 Token **params;
2991 int *paramsize;
H. Peter Anvin25a99342007-09-22 17:45:45 -07002992 unsigned int nparam, sparam;
2993 int brackets, rescan;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00002994 Token *org_tline = tline;
2995 Context *ctx;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00002996 char *mname;
H. Peter Anvincb1cf592007-11-19 12:26:50 -08002997 int deadman = 0;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00002998
H. Peter Anvinaf535c12002-04-30 20:59:21 +00002999 /*
3000 * Trick: we should avoid changing the start token pointer since it can
3001 * be contained in "next" field of other token. Because of this
3002 * we allocate a copy of first token and work with it; at the end of
3003 * routine we copy it back
3004 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003005 if (org_tline) {
3006 tline =
3007 new_Token(org_tline->next, org_tline->type, org_tline->text,
3008 0);
3009 tline->mac = org_tline->mac;
3010 nasm_free(org_tline->text);
3011 org_tline->text = NULL;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003012 }
3013
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003014again:
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003015 tail = &thead;
3016 thead = NULL;
3017
H. Peter Anvine2c80182005-01-15 22:15:51 +00003018 while (tline) { /* main token loop */
H. Peter Anvincb1cf592007-11-19 12:26:50 -08003019 if (++deadman > DEADMAN_LIMIT) {
3020 error(ERR_NONFATAL, "interminable macro recursion");
3021 break;
3022 }
3023
H. Peter Anvine2c80182005-01-15 22:15:51 +00003024 if ((mname = tline->text)) {
3025 /* if this token is a local macro, look in local context */
3026 if (tline->type == TOK_ID || tline->type == TOK_PREPROC_ID)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003027 ctx = get_ctx(mname, true);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003028 else
3029 ctx = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -07003030 if (!ctx) {
3031 head = (SMacro *) hash_findix(smacros, mname);
3032 } else {
H. Peter Anvine2c80182005-01-15 22:15:51 +00003033 head = ctx->localmac;
H. Peter Anvin97a23472007-09-16 17:57:25 -07003034 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00003035 /*
3036 * We've hit an identifier. As in is_mmacro below, we first
3037 * check whether the identifier is a single-line macro at
3038 * all, then think about checking for parameters if
3039 * necessary.
3040 */
H. Peter Anvin97a23472007-09-16 17:57:25 -07003041 for (m = head; m; m = m->next)
3042 if (!mstrcmp(m->name, mname, m->casesense))
3043 break;
3044 if (m) {
3045 mstart = tline;
3046 params = NULL;
3047 paramsize = NULL;
3048 if (m->nparam == 0) {
3049 /*
3050 * Simple case: the macro is parameterless. Discard the
3051 * one token that the macro call took, and push the
3052 * expansion back on the to-do stack.
3053 */
3054 if (!m->expansion) {
3055 if (!strcmp("__FILE__", m->name)) {
3056 int32_t num = 0;
3057 src_get(&num, &(tline->text));
3058 nasm_quote(&(tline->text));
3059 tline->type = TOK_STRING;
3060 continue;
3061 }
3062 if (!strcmp("__LINE__", m->name)) {
3063 nasm_free(tline->text);
3064 make_tok_num(tline, src_get_linnum());
3065 continue;
3066 }
3067 if (!strcmp("__BITS__", m->name)) {
3068 nasm_free(tline->text);
3069 make_tok_num(tline, globalbits);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003070 continue;
H. Peter Anvin97a23472007-09-16 17:57:25 -07003071 }
3072 tline = delete_Token(tline);
3073 continue;
3074 }
3075 } else {
3076 /*
3077 * Complicated case: at least one macro with this name
H. Peter Anvine2c80182005-01-15 22:15:51 +00003078 * exists and takes parameters. We must find the
3079 * parameters in the call, count them, find the SMacro
3080 * that corresponds to that form of the macro call, and
3081 * substitute for the parameters when we expand. What a
3082 * pain.
3083 */
3084 /*tline = tline->next;
3085 skip_white_(tline); */
3086 do {
3087 t = tline->next;
3088 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003089 t->mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003090 t->text = NULL;
3091 t = tline->next = delete_Token(t);
3092 }
3093 tline = t;
3094 } while (tok_type_(tline, TOK_WHITESPACE));
3095 if (!tok_is_(tline, "(")) {
3096 /*
3097 * This macro wasn't called with parameters: ignore
3098 * the call. (Behaviour borrowed from gnu cpp.)
3099 */
3100 tline = mstart;
3101 m = NULL;
3102 } else {
3103 int paren = 0;
3104 int white = 0;
3105 brackets = 0;
3106 nparam = 0;
3107 sparam = PARAM_DELTA;
3108 params = nasm_malloc(sparam * sizeof(Token *));
3109 params[0] = tline->next;
3110 paramsize = nasm_malloc(sparam * sizeof(int));
3111 paramsize[0] = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003112 while (true) { /* parameter loop */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003113 /*
3114 * For some unusual expansions
3115 * which concatenates function call
3116 */
3117 t = tline->next;
3118 while (tok_type_(t, TOK_SMAC_END)) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003119 t->mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003120 t->text = NULL;
3121 t = tline->next = delete_Token(t);
3122 }
3123 tline = t;
Nickolay Yurchenko9aea7152003-09-07 22:46:26 +00003124
H. Peter Anvine2c80182005-01-15 22:15:51 +00003125 if (!tline) {
3126 error(ERR_NONFATAL,
3127 "macro call expects terminating `)'");
3128 break;
3129 }
3130 if (tline->type == TOK_WHITESPACE
3131 && brackets <= 0) {
3132 if (paramsize[nparam])
3133 white++;
3134 else
3135 params[nparam] = tline->next;
3136 continue; /* parameter loop */
3137 }
3138 if (tline->type == TOK_OTHER
3139 && tline->text[1] == 0) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003140 char ch = tline->text[0];
H. Peter Anvine2c80182005-01-15 22:15:51 +00003141 if (ch == ',' && !paren && brackets <= 0) {
3142 if (++nparam >= sparam) {
3143 sparam += PARAM_DELTA;
3144 params = nasm_realloc(params,
3145 sparam *
3146 sizeof(Token
3147 *));
3148 paramsize =
3149 nasm_realloc(paramsize,
3150 sparam *
3151 sizeof(int));
3152 }
3153 params[nparam] = tline->next;
3154 paramsize[nparam] = 0;
3155 white = 0;
3156 continue; /* parameter loop */
3157 }
3158 if (ch == '{' &&
3159 (brackets > 0 || (brackets == 0 &&
3160 !paramsize[nparam])))
3161 {
3162 if (!(brackets++)) {
3163 params[nparam] = tline->next;
3164 continue; /* parameter loop */
3165 }
3166 }
3167 if (ch == '}' && brackets > 0)
3168 if (--brackets == 0) {
3169 brackets = -1;
3170 continue; /* parameter loop */
3171 }
3172 if (ch == '(' && !brackets)
3173 paren++;
3174 if (ch == ')' && brackets <= 0)
3175 if (--paren < 0)
3176 break;
3177 }
3178 if (brackets < 0) {
3179 brackets = 0;
3180 error(ERR_NONFATAL, "braces do not "
3181 "enclose all of macro parameter");
3182 }
3183 paramsize[nparam] += white + 1;
3184 white = 0;
3185 } /* parameter loop */
3186 nparam++;
3187 while (m && (m->nparam != nparam ||
3188 mstrcmp(m->name, mname,
3189 m->casesense)))
3190 m = m->next;
3191 if (!m)
3192 error(ERR_WARNING | ERR_WARN_MNP,
3193 "macro `%s' exists, "
3194 "but not taking %d parameters",
3195 mstart->text, nparam);
3196 }
3197 }
3198 if (m && m->in_progress)
3199 m = NULL;
3200 if (!m) { /* in progess or didn't find '(' or wrong nparam */
H. Peter Anvin70653092007-10-19 14:42:29 -07003201 /*
H. Peter Anvine2c80182005-01-15 22:15:51 +00003202 * Design question: should we handle !tline, which
3203 * indicates missing ')' here, or expand those
3204 * macros anyway, which requires the (t) test a few
H. Peter Anvin70653092007-10-19 14:42:29 -07003205 * lines down?
H. Peter Anvine2c80182005-01-15 22:15:51 +00003206 */
3207 nasm_free(params);
3208 nasm_free(paramsize);
3209 tline = mstart;
3210 } else {
3211 /*
3212 * Expand the macro: we are placed on the last token of the
3213 * call, so that we can easily split the call from the
3214 * following tokens. We also start by pushing an SMAC_END
3215 * token for the cycle removal.
3216 */
3217 t = tline;
3218 if (t) {
3219 tline = t->next;
3220 t->next = NULL;
3221 }
3222 tt = new_Token(tline, TOK_SMAC_END, NULL, 0);
3223 tt->mac = m;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003224 m->in_progress = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003225 tline = tt;
3226 for (t = m->expansion; t; t = t->next) {
3227 if (t->type >= TOK_SMAC_PARAM) {
3228 Token *pcopy = tline, **ptail = &pcopy;
3229 Token *ttt, *pt;
3230 int i;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003231
H. Peter Anvine2c80182005-01-15 22:15:51 +00003232 ttt = params[t->type - TOK_SMAC_PARAM];
3233 for (i = paramsize[t->type - TOK_SMAC_PARAM];
3234 --i >= 0;) {
3235 pt = *ptail =
3236 new_Token(tline, ttt->type, ttt->text,
3237 0);
3238 ptail = &pt->next;
3239 ttt = ttt->next;
3240 }
3241 tline = pcopy;
3242 } else {
3243 tt = new_Token(tline, t->type, t->text, 0);
3244 tline = tt;
3245 }
3246 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00003247
H. Peter Anvine2c80182005-01-15 22:15:51 +00003248 /*
3249 * Having done that, get rid of the macro call, and clean
3250 * up the parameters.
3251 */
3252 nasm_free(params);
3253 nasm_free(paramsize);
3254 free_tlist(mstart);
3255 continue; /* main token loop */
3256 }
3257 }
3258 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003259
H. Peter Anvine2c80182005-01-15 22:15:51 +00003260 if (tline->type == TOK_SMAC_END) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003261 tline->mac->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003262 tline = delete_Token(tline);
3263 } else {
3264 t = *tail = tline;
3265 tline = tline->next;
3266 t->mac = NULL;
3267 t->next = NULL;
3268 tail = &t->next;
3269 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003270 }
3271
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003272 /*
3273 * Now scan the entire line and look for successive TOK_IDs that resulted
Keith Kaniosb7a89542007-04-12 02:40:54 +00003274 * after expansion (they can't be produced by tokenize()). The successive
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003275 * TOK_IDs should be concatenated.
3276 * Also we look for %+ tokens and concatenate the tokens before and after
3277 * them (without white spaces in between).
3278 */
3279 t = thead;
3280 rescan = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003281 while (t) {
3282 while (t && t->type != TOK_ID && t->type != TOK_PREPROC_ID)
3283 t = t->next;
3284 if (!t || !t->next)
3285 break;
3286 if (t->next->type == TOK_ID ||
3287 t->next->type == TOK_PREPROC_ID ||
3288 t->next->type == TOK_NUMBER) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003289 char *p = nasm_strcat(t->text, t->next->text);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003290 nasm_free(t->text);
3291 t->next = delete_Token(t->next);
3292 t->text = p;
3293 rescan = 1;
3294 } else if (t->next->type == TOK_WHITESPACE && t->next->next &&
3295 t->next->next->type == TOK_PREPROC_ID &&
3296 strcmp(t->next->next->text, "%+") == 0) {
3297 /* free the next whitespace, the %+ token and next whitespace */
3298 int i;
3299 for (i = 1; i <= 3; i++) {
3300 if (!t->next
3301 || (i != 2 && t->next->type != TOK_WHITESPACE))
3302 break;
3303 t->next = delete_Token(t->next);
3304 } /* endfor */
3305 } else
3306 t = t->next;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003307 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003308 /* If we concatenaded something, re-scan the line for macros */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003309 if (rescan) {
3310 tline = thead;
3311 goto again;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003312 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003313
H. Peter Anvine2c80182005-01-15 22:15:51 +00003314 if (org_tline) {
3315 if (thead) {
3316 *org_tline = *thead;
3317 /* since we just gave text to org_line, don't free it */
3318 thead->text = NULL;
3319 delete_Token(thead);
3320 } else {
3321 /* the expression expanded to empty line;
3322 we can't return NULL for some reasons
3323 we just set the line to a single WHITESPACE token. */
3324 memset(org_tline, 0, sizeof(*org_tline));
3325 org_tline->text = NULL;
3326 org_tline->type = TOK_WHITESPACE;
3327 }
3328 thead = org_tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003329 }
3330
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003331 return thead;
3332}
3333
3334/*
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003335 * Similar to expand_smacro but used exclusively with macro identifiers
3336 * right before they are fetched in. The reason is that there can be
3337 * identifiers consisting of several subparts. We consider that if there
3338 * are more than one element forming the name, user wants a expansion,
3339 * otherwise it will be left as-is. Example:
3340 *
3341 * %define %$abc cde
3342 *
3343 * the identifier %$abc will be left as-is so that the handler for %define
3344 * will suck it and define the corresponding value. Other case:
3345 *
3346 * %define _%$abc cde
3347 *
3348 * In this case user wants name to be expanded *before* %define starts
3349 * working, so we'll expand %$abc into something (if it has a value;
3350 * otherwise it will be left as-is) then concatenate all successive
3351 * PP_IDs into one.
3352 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003353static Token *expand_id(Token * tline)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003354{
3355 Token *cur, *oldnext = NULL;
3356
H. Peter Anvin734b1882002-04-30 21:01:08 +00003357 if (!tline || !tline->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003358 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003359
3360 cur = tline;
3361 while (cur->next &&
H. Peter Anvine2c80182005-01-15 22:15:51 +00003362 (cur->next->type == TOK_ID ||
3363 cur->next->type == TOK_PREPROC_ID
3364 || cur->next->type == TOK_NUMBER))
3365 cur = cur->next;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003366
3367 /* If identifier consists of just one token, don't expand */
3368 if (cur == tline)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003369 return tline;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003370
H. Peter Anvine2c80182005-01-15 22:15:51 +00003371 if (cur) {
3372 oldnext = cur->next; /* Detach the tail past identifier */
3373 cur->next = NULL; /* so that expand_smacro stops here */
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003374 }
3375
H. Peter Anvin734b1882002-04-30 21:01:08 +00003376 tline = expand_smacro(tline);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003377
H. Peter Anvine2c80182005-01-15 22:15:51 +00003378 if (cur) {
3379 /* expand_smacro possibly changhed tline; re-scan for EOL */
3380 cur = tline;
3381 while (cur && cur->next)
3382 cur = cur->next;
3383 if (cur)
3384 cur->next = oldnext;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003385 }
3386
3387 return tline;
3388}
3389
3390/*
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003391 * Determine whether the given line constitutes a multi-line macro
3392 * call, and return the MMacro structure called if so. Doesn't have
3393 * to check for an initial label - that's taken care of in
3394 * expand_mmacro - but must check numbers of parameters. Guaranteed
3395 * to be called with tline->type == TOK_ID, so the putative macro
3396 * name is easy to find.
3397 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003398static MMacro *is_mmacro(Token * tline, Token *** params_array)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003399{
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003400 MMacro *head, *m;
3401 Token **params;
3402 int nparam;
3403
H. Peter Anvin97a23472007-09-16 17:57:25 -07003404 head = (MMacro *) hash_findix(mmacros, tline->text);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003405
3406 /*
3407 * Efficiency: first we see if any macro exists with the given
3408 * name. If not, we can return NULL immediately. _Then_ we
3409 * count the parameters, and then we look further along the
3410 * list if necessary to find the proper MMacro.
3411 */
3412 for (m = head; m; m = m->next)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003413 if (!mstrcmp(m->name, tline->text, m->casesense))
3414 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003415 if (!m)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003416 return NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003417
3418 /*
3419 * OK, we have a potential macro. Count and demarcate the
3420 * parameters.
3421 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003422 count_mmac_params(tline->next, &nparam, &params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003423
3424 /*
3425 * So we know how many parameters we've got. Find the MMacro
3426 * structure that handles this number.
3427 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003428 while (m) {
3429 if (m->nparam_min <= nparam
3430 && (m->plus || nparam <= m->nparam_max)) {
3431 /*
3432 * This one is right. Just check if cycle removal
3433 * prohibits us using it before we actually celebrate...
3434 */
3435 if (m->in_progress) {
H. Peter Anvineba20a72002-04-30 20:53:55 +00003436#if 0
H. Peter Anvine2c80182005-01-15 22:15:51 +00003437 error(ERR_NONFATAL,
3438 "self-reference in multi-line macro `%s'", m->name);
H. Peter Anvineba20a72002-04-30 20:53:55 +00003439#endif
H. Peter Anvine2c80182005-01-15 22:15:51 +00003440 nasm_free(params);
3441 return NULL;
3442 }
3443 /*
3444 * It's right, and we can use it. Add its default
3445 * parameters to the end of our list if necessary.
3446 */
3447 if (m->defaults && nparam < m->nparam_min + m->ndefs) {
3448 params =
3449 nasm_realloc(params,
3450 ((m->nparam_min + m->ndefs +
3451 1) * sizeof(*params)));
3452 while (nparam < m->nparam_min + m->ndefs) {
3453 params[nparam] = m->defaults[nparam - m->nparam_min];
3454 nparam++;
3455 }
3456 }
3457 /*
3458 * If we've gone over the maximum parameter count (and
3459 * we're in Plus mode), ignore parameters beyond
3460 * nparam_max.
3461 */
3462 if (m->plus && nparam > m->nparam_max)
3463 nparam = m->nparam_max;
3464 /*
3465 * Then terminate the parameter list, and leave.
3466 */
3467 if (!params) { /* need this special case */
3468 params = nasm_malloc(sizeof(*params));
3469 nparam = 0;
3470 }
3471 params[nparam] = NULL;
3472 *params_array = params;
3473 return m;
3474 }
3475 /*
3476 * This one wasn't right: look for the next one with the
3477 * same name.
3478 */
3479 for (m = m->next; m; m = m->next)
3480 if (!mstrcmp(m->name, tline->text, m->casesense))
3481 break;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003482 }
3483
3484 /*
3485 * After all that, we didn't find one with the right number of
3486 * parameters. Issue a warning, and fail to expand the macro.
3487 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00003488 error(ERR_WARNING | ERR_WARN_MNP,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003489 "macro `%s' exists, but not taking %d parameters",
3490 tline->text, nparam);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003491 nasm_free(params);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003492 return NULL;
3493}
3494
3495/*
3496 * Expand the multi-line macro call made by the given line, if
3497 * there is one to be expanded. If there is, push the expansion on
H. Peter Anvineba20a72002-04-30 20:53:55 +00003498 * istk->expansion and return 1. Otherwise return 0.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003499 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003500static int expand_mmacro(Token * tline)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003501{
3502 Token *startline = tline;
3503 Token *label = NULL;
3504 int dont_prepend = 0;
3505 Token **params, *t, *tt;
3506 MMacro *m;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003507 Line *l, *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003508 int i, nparam, *paramlen;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003509
3510 t = tline;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003511 skip_white_(t);
H. Peter Anvindce1e2f2002-04-30 21:06:37 +00003512/* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */
3513 if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003514 return 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003515 m = is_mmacro(t, &params);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003516 if (!m) {
3517 Token *last;
3518 /*
3519 * We have an id which isn't a macro call. We'll assume
3520 * it might be a label; we'll also check to see if a
3521 * colon follows it. Then, if there's another id after
3522 * that lot, we'll check it again for macro-hood.
3523 */
3524 label = last = t;
3525 t = t->next;
3526 if (tok_type_(t, TOK_WHITESPACE))
3527 last = t, t = t->next;
3528 if (tok_is_(t, ":")) {
3529 dont_prepend = 1;
3530 last = t, t = t->next;
3531 if (tok_type_(t, TOK_WHITESPACE))
3532 last = t, t = t->next;
3533 }
3534 if (!tok_type_(t, TOK_ID) || (m = is_mmacro(t, &params)) == NULL)
3535 return 0;
3536 last->next = NULL;
3537 tline = t;
H. Peter Anvineba20a72002-04-30 20:53:55 +00003538 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003539
3540 /*
3541 * Fix up the parameters: this involves stripping leading and
3542 * trailing whitespace, then stripping braces if they are
3543 * present.
3544 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003545 for (nparam = 0; params[nparam]; nparam++) ;
H. Peter Anvin734b1882002-04-30 21:01:08 +00003546 paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003547
H. Peter Anvine2c80182005-01-15 22:15:51 +00003548 for (i = 0; params[i]; i++) {
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003549 int brace = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003550 int comma = (!m->plus || i < nparam - 1);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003551
H. Peter Anvine2c80182005-01-15 22:15:51 +00003552 t = params[i];
3553 skip_white_(t);
3554 if (tok_is_(t, "{"))
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003555 t = t->next, brace = true, comma = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003556 params[i] = t;
3557 paramlen[i] = 0;
3558 while (t) {
3559 if (comma && t->type == TOK_OTHER && !strcmp(t->text, ","))
3560 break; /* ... because we have hit a comma */
3561 if (comma && t->type == TOK_WHITESPACE
3562 && tok_is_(t->next, ","))
3563 break; /* ... or a space then a comma */
3564 if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}"))
3565 break; /* ... or a brace */
3566 t = t->next;
3567 paramlen[i]++;
3568 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003569 }
3570
3571 /*
3572 * OK, we have a MMacro structure together with a set of
3573 * parameters. We must now go through the expansion and push
H. Peter Anvin76690a12002-04-30 20:52:49 +00003574 * copies of each Line on to istk->expansion. Substitution of
3575 * parameter tokens and macro-local tokens doesn't get done
3576 * until the single-line macro substitution process; this is
3577 * because delaying them allows us to change the semantics
3578 * later through %rotate.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003579 *
H. Peter Anvin76690a12002-04-30 20:52:49 +00003580 * First, push an end marker on to istk->expansion, mark this
3581 * macro as in progress, and set up its invocation-specific
3582 * variables.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003583 */
3584 ll = nasm_malloc(sizeof(Line));
3585 ll->next = istk->expansion;
3586 ll->finishes = m;
3587 ll->first = NULL;
3588 istk->expansion = ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003589
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003590 m->in_progress = true;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003591 m->params = params;
3592 m->iline = tline;
3593 m->nparam = nparam;
3594 m->rotate = 0;
3595 m->paramlen = paramlen;
3596 m->unique = unique++;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003597 m->lineno = 0;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003598
3599 m->next_active = istk->mstk;
3600 istk->mstk = m;
3601
H. Peter Anvine2c80182005-01-15 22:15:51 +00003602 for (l = m->expansion; l; l = l->next) {
3603 Token **tail;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003604
H. Peter Anvine2c80182005-01-15 22:15:51 +00003605 ll = nasm_malloc(sizeof(Line));
3606 ll->finishes = NULL;
3607 ll->next = istk->expansion;
3608 istk->expansion = ll;
3609 tail = &ll->first;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003610
H. Peter Anvine2c80182005-01-15 22:15:51 +00003611 for (t = l->first; t; t = t->next) {
3612 Token *x = t;
3613 if (t->type == TOK_PREPROC_ID &&
3614 t->text[1] == '0' && t->text[2] == '0') {
3615 dont_prepend = -1;
3616 x = label;
3617 if (!x)
3618 continue;
3619 }
3620 tt = *tail = new_Token(NULL, x->type, x->text, 0);
3621 tail = &tt->next;
3622 }
3623 *tail = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003624 }
3625
3626 /*
H. Peter Anvineba20a72002-04-30 20:53:55 +00003627 * If we had a label, push it on as the first line of
3628 * the macro expansion.
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003629 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00003630 if (label) {
3631 if (dont_prepend < 0)
3632 free_tlist(startline);
3633 else {
3634 ll = nasm_malloc(sizeof(Line));
3635 ll->finishes = NULL;
3636 ll->next = istk->expansion;
3637 istk->expansion = ll;
3638 ll->first = startline;
3639 if (!dont_prepend) {
3640 while (label->next)
3641 label = label->next;
3642 label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0);
3643 }
3644 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003645 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003646
H. Peter Anvin734b1882002-04-30 21:01:08 +00003647 list->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00003648
H. Peter Anvineba20a72002-04-30 20:53:55 +00003649 return 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003650}
3651
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003652/*
3653 * Since preprocessor always operate only on the line that didn't
3654 * arrived yet, we should always use ERR_OFFBY1. Also since user
3655 * won't want to see same error twice (preprocessing is done once
3656 * per pass) we will want to show errors only during pass one.
3657 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003658static void error(int severity, const char *fmt, ...)
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003659{
3660 va_list arg;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003661 char buff[1024];
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003662
3663 /* If we're in a dead branch of IF or something like it, ignore the error */
H. Peter Anvin77ba0c62002-05-14 03:18:53 +00003664 if (istk && istk->conds && !emitting(istk->conds->state))
H. Peter Anvine2c80182005-01-15 22:15:51 +00003665 return;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003666
H. Peter Anvin734b1882002-04-30 21:01:08 +00003667 va_start(arg, fmt);
Ed Beroset19f927a2004-12-15 17:07:03 +00003668 vsnprintf(buff, sizeof(buff), fmt, arg);
H. Peter Anvin734b1882002-04-30 21:01:08 +00003669 va_end(arg);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003670
H. Peter Anvin77ba0c62002-05-14 03:18:53 +00003671 if (istk && istk->mstk && istk->mstk->name)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003672 _error(severity | ERR_PASS1, "(%s:%d) %s", istk->mstk->name,
3673 istk->mstk->lineno, buff);
3674 else
3675 _error(severity | ERR_PASS1, "%s", buff);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00003676}
3677
H. Peter Anvin734b1882002-04-30 21:01:08 +00003678static void
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003679pp_reset(char *file, int apass, efunc errfunc, evalfunc eval,
H. Peter Anvine2c80182005-01-15 22:15:51 +00003680 ListGen * listgen)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003681{
H. Peter Anvin99941bf2002-05-14 17:44:03 +00003682 _error = errfunc;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003683 cstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003684 istk = nasm_malloc(sizeof(Include));
3685 istk->next = NULL;
3686 istk->conds = NULL;
3687 istk->expansion = NULL;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003688 istk->mstk = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003689 istk->fp = fopen(file, "r");
H. Peter Anvineba20a72002-04-30 20:53:55 +00003690 istk->fname = NULL;
3691 src_set_fname(nasm_strdup(file));
3692 src_set_linnum(0);
3693 istk->lineinc = 1;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003694 if (!istk->fp)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003695 error(ERR_FATAL | ERR_NOFILE, "unable to open input file `%s'",
3696 file);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003697 defining = NULL;
H. Peter Anvin97a23472007-09-16 17:57:25 -07003698 init_macros();
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003699 unique = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003700 if (tasm_compatible_mode) {
3701 stdmacpos = stdmac;
3702 } else {
3703 stdmacpos = &stdmac[TASM_MACRO_COUNT];
3704 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00003705 any_extrastdmac = (extrastdmac != NULL);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00003706 list = listgen;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003707 evaluate = eval;
3708 pass = apass;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003709}
3710
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003711static char *pp_getline(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003712{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003713 char *line;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003714 Token *tline;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003715
H. Peter Anvine2c80182005-01-15 22:15:51 +00003716 while (1) {
3717 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00003718 * Fetch a tokenized line, either from the macro-expansion
H. Peter Anvine2c80182005-01-15 22:15:51 +00003719 * buffer or from the input file.
3720 */
3721 tline = NULL;
3722 while (istk->expansion && istk->expansion->finishes) {
3723 Line *l = istk->expansion;
3724 if (!l->finishes->name && l->finishes->in_progress > 1) {
3725 Line *ll;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003726
H. Peter Anvine2c80182005-01-15 22:15:51 +00003727 /*
3728 * This is a macro-end marker for a macro with no
3729 * name, which means it's not really a macro at all
3730 * but a %rep block, and the `in_progress' field is
3731 * more than 1, meaning that we still need to
3732 * repeat. (1 means the natural last repetition; 0
3733 * means termination by %exitrep.) We have
3734 * therefore expanded up to the %endrep, and must
3735 * push the whole block on to the expansion buffer
3736 * again. We don't bother to remove the macro-end
3737 * marker: we'd only have to generate another one
3738 * if we did.
3739 */
3740 l->finishes->in_progress--;
3741 for (l = l->finishes->expansion; l; l = l->next) {
3742 Token *t, *tt, **tail;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003743
H. Peter Anvine2c80182005-01-15 22:15:51 +00003744 ll = nasm_malloc(sizeof(Line));
3745 ll->next = istk->expansion;
3746 ll->finishes = NULL;
3747 ll->first = NULL;
3748 tail = &ll->first;
H. Peter Anvin76690a12002-04-30 20:52:49 +00003749
H. Peter Anvine2c80182005-01-15 22:15:51 +00003750 for (t = l->first; t; t = t->next) {
3751 if (t->text || t->type == TOK_WHITESPACE) {
3752 tt = *tail =
3753 new_Token(NULL, t->type, t->text, 0);
3754 tail = &tt->next;
3755 }
3756 }
H. Peter Anvin76690a12002-04-30 20:52:49 +00003757
H. Peter Anvine2c80182005-01-15 22:15:51 +00003758 istk->expansion = ll;
3759 }
3760 } else {
3761 /*
3762 * Check whether a `%rep' was started and not ended
3763 * within this macro expansion. This can happen and
3764 * should be detected. It's a fatal error because
3765 * I'm too confused to work out how to recover
3766 * sensibly from it.
3767 */
3768 if (defining) {
3769 if (defining->name)
3770 error(ERR_PANIC,
3771 "defining with name in expansion");
3772 else if (istk->mstk->name)
3773 error(ERR_FATAL,
3774 "`%%rep' without `%%endrep' within"
3775 " expansion of macro `%s'",
3776 istk->mstk->name);
3777 }
H. Peter Anvin87bc6192002-04-30 20:53:16 +00003778
H. Peter Anvine2c80182005-01-15 22:15:51 +00003779 /*
3780 * FIXME: investigate the relationship at this point between
3781 * istk->mstk and l->finishes
3782 */
3783 {
3784 MMacro *m = istk->mstk;
3785 istk->mstk = m->next_active;
3786 if (m->name) {
3787 /*
3788 * This was a real macro call, not a %rep, and
3789 * therefore the parameter information needs to
3790 * be freed.
3791 */
3792 nasm_free(m->params);
3793 free_tlist(m->iline);
3794 nasm_free(m->paramlen);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003795 l->finishes->in_progress = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003796 } else
3797 free_mmacro(m);
3798 }
3799 istk->expansion = l->next;
3800 nasm_free(l);
3801 list->downlevel(LIST_MACRO);
3802 }
3803 }
3804 while (1) { /* until we get a line we can use */
H. Peter Anvineba20a72002-04-30 20:53:55 +00003805
H. Peter Anvine2c80182005-01-15 22:15:51 +00003806 if (istk->expansion) { /* from a macro expansion */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003807 char *p;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003808 Line *l = istk->expansion;
3809 if (istk->mstk)
3810 istk->mstk->lineno++;
3811 tline = l->first;
3812 istk->expansion = l->next;
3813 nasm_free(l);
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003814 p = detoken(tline, false);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003815 list->line(LIST_MACRO, p);
3816 nasm_free(p);
3817 break;
3818 }
3819 line = read_line();
3820 if (line) { /* from the current input file */
3821 line = prepreproc(line);
Keith Kaniosb7a89542007-04-12 02:40:54 +00003822 tline = tokenize(line);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003823 nasm_free(line);
3824 break;
3825 }
3826 /*
3827 * The current file has ended; work down the istk
3828 */
3829 {
3830 Include *i = istk;
3831 fclose(i->fp);
3832 if (i->conds)
3833 error(ERR_FATAL,
3834 "expected `%%endif' before end of file");
3835 /* only set line and file name if there's a next node */
3836 if (i->next) {
3837 src_set_linnum(i->lineno);
3838 nasm_free(src_set_fname(i->fname));
3839 }
3840 istk = i->next;
3841 list->downlevel(LIST_INCLUDE);
3842 nasm_free(i);
3843 if (!istk)
3844 return NULL;
3845 }
3846 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003847
H. Peter Anvine2c80182005-01-15 22:15:51 +00003848 /*
3849 * We must expand MMacro parameters and MMacro-local labels
3850 * _before_ we plunge into directive processing, to cope
3851 * with things like `%define something %1' such as STRUC
3852 * uses. Unless we're _defining_ a MMacro, in which case
3853 * those tokens should be left alone to go into the
3854 * definition; and unless we're in a non-emitting
3855 * condition, in which case we don't want to meddle with
3856 * anything.
3857 */
3858 if (!defining && !(istk->conds && !emitting(istk->conds->state)))
3859 tline = expand_mmac_params(tline);
H. Peter Anvin76690a12002-04-30 20:52:49 +00003860
H. Peter Anvine2c80182005-01-15 22:15:51 +00003861 /*
3862 * Check the line to see if it's a preprocessor directive.
3863 */
3864 if (do_directive(tline) == DIRECTIVE_FOUND) {
3865 continue;
3866 } else if (defining) {
3867 /*
3868 * We're defining a multi-line macro. We emit nothing
3869 * at all, and just
Keith Kaniosb7a89542007-04-12 02:40:54 +00003870 * shove the tokenized line on to the macro definition.
H. Peter Anvine2c80182005-01-15 22:15:51 +00003871 */
3872 Line *l = nasm_malloc(sizeof(Line));
3873 l->next = defining->expansion;
3874 l->first = tline;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003875 l->finishes = false;
H. Peter Anvine2c80182005-01-15 22:15:51 +00003876 defining->expansion = l;
3877 continue;
3878 } else if (istk->conds && !emitting(istk->conds->state)) {
3879 /*
3880 * We're in a non-emitting branch of a condition block.
3881 * Emit nothing at all, not even a blank line: when we
3882 * emerge from the condition we'll give a line-number
3883 * directive so we keep our place correctly.
3884 */
3885 free_tlist(tline);
3886 continue;
3887 } else if (istk->mstk && !istk->mstk->in_progress) {
3888 /*
3889 * We're in a %rep block which has been terminated, so
3890 * we're walking through to the %endrep without
3891 * emitting anything. Emit nothing at all, not even a
3892 * blank line: when we emerge from the %rep block we'll
3893 * give a line-number directive so we keep our place
3894 * correctly.
3895 */
3896 free_tlist(tline);
3897 continue;
3898 } else {
3899 tline = expand_smacro(tline);
3900 if (!expand_mmacro(tline)) {
3901 /*
Keith Kaniosb7a89542007-04-12 02:40:54 +00003902 * De-tokenize the line again, and emit it.
H. Peter Anvine2c80182005-01-15 22:15:51 +00003903 */
H. Peter Anvin6867acc2007-10-10 14:58:45 -07003904 line = detoken(tline, true);
H. Peter Anvine2c80182005-01-15 22:15:51 +00003905 free_tlist(tline);
3906 break;
3907 } else {
3908 continue; /* expand_mmacro calls free_tlist */
3909 }
3910 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003911 }
3912
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003913 return line;
3914}
3915
H. Peter Anvine2c80182005-01-15 22:15:51 +00003916static void pp_cleanup(int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003917{
H. Peter Anvine2c80182005-01-15 22:15:51 +00003918 if (defining) {
3919 error(ERR_NONFATAL, "end of file while still defining macro `%s'",
3920 defining->name);
3921 free_mmacro(defining);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003922 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003923 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003924 ctx_pop();
H. Peter Anvin97a23472007-09-16 17:57:25 -07003925 free_macros();
H. Peter Anvine2c80182005-01-15 22:15:51 +00003926 while (istk) {
3927 Include *i = istk;
3928 istk = istk->next;
3929 fclose(i->fp);
3930 nasm_free(i->fname);
3931 nasm_free(i);
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003932 }
3933 while (cstk)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003934 ctx_pop();
3935 if (pass == 0) {
3936 free_llist(predef);
3937 delete_Blocks();
3938 }
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00003939}
3940
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003941void pp_include_path(char *path)
H. Peter Anvineba20a72002-04-30 20:53:55 +00003942{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00003943 IncPath *i;
H. Peter Anvin37a321f2007-09-24 13:41:58 -07003944
H. Peter Anvin6768eb72002-04-30 20:52:26 +00003945 i = nasm_malloc(sizeof(IncPath));
H. Peter Anvin37a321f2007-09-24 13:41:58 -07003946 i->path = path ? nasm_strdup(path) : NULL;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003947 i->next = NULL;
3948
H. Peter Anvine2c80182005-01-15 22:15:51 +00003949 if (ipath != NULL) {
3950 IncPath *j = ipath;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003951 while (j->next != NULL)
H. Peter Anvine2c80182005-01-15 22:15:51 +00003952 j = j->next;
3953 j->next = i;
3954 } else {
3955 ipath = i;
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003956 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00003957}
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003958
3959/*
3960 * added by alexfru:
3961 *
3962 * This function is used to "export" the include paths, e.g.
3963 * the paths specified in the '-I' command switch.
3964 * The need for such exporting is due to the 'incbin' directive,
3965 * which includes raw binary files (unlike '%include', which
3966 * includes text source files). It would be real nice to be
3967 * able to specify paths to search for incbin'ned files also.
3968 * So, this is a simple workaround.
3969 *
3970 * The function use is simple:
3971 *
3972 * The 1st call (with NULL argument) returns a pointer to the 1st path
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003973 * (char** type) or NULL if none include paths available.
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003974 *
3975 * All subsequent calls take as argument the value returned by this
3976 * function last. The return value is either the next path
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003977 * (char** type) or NULL if the end of the paths list is reached.
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003978 *
3979 * It is maybe not the best way to do things, but I didn't want
3980 * to export too much, just one or two functions and no types or
3981 * variables exported.
3982 *
3983 * Can't say I like the current situation with e.g. this path list either,
3984 * it seems to be never deallocated after creation...
3985 */
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003986char **pp_get_include_path_ptr(char **pPrevPath)
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003987{
3988/* This macro returns offset of a member of a structure */
3989#define GetMemberOffset(StructType,MemberName)\
3990 ((size_t)&((StructType*)0)->MemberName)
3991 IncPath *i;
3992
H. Peter Anvine2c80182005-01-15 22:15:51 +00003993 if (pPrevPath == NULL) {
3994 if (ipath != NULL)
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00003995 return &ipath->path;
3996 else
3997 return NULL;
3998 }
Keith Kaniosa6dfa782007-04-13 16:47:53 +00003999 i = (IncPath *) ((char *)pPrevPath - GetMemberOffset(IncPath, path));
Frank Kotlerd0ed6fd2003-08-27 11:33:56 +00004000 i = i->next;
4001 if (i != NULL)
4002 return &i->path;
4003 else
4004 return NULL;
4005#undef GetMemberOffset
4006}
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004007
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004008void pp_pre_include(char *fname)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004009{
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004010 Token *inc, *space, *name;
4011 Line *l;
4012
H. Peter Anvin734b1882002-04-30 21:01:08 +00004013 name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0);
4014 space = new_Token(name, TOK_WHITESPACE, NULL, 0);
4015 inc = new_Token(space, TOK_PREPROC_ID, "%include", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004016
4017 l = nasm_malloc(sizeof(Line));
4018 l->next = predef;
4019 l->first = inc;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004020 l->finishes = false;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004021 predef = l;
4022}
4023
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004024void pp_pre_define(char *definition)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004025{
4026 Token *def, *space;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004027 Line *l;
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004028 char *equals;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004029
4030 equals = strchr(definition, '=');
H. Peter Anvin734b1882002-04-30 21:01:08 +00004031 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
4032 def = new_Token(space, TOK_PREPROC_ID, "%define", 0);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004033 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004034 *equals = ' ';
Keith Kaniosb7a89542007-04-12 02:40:54 +00004035 space->next = tokenize(definition);
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004036 if (equals)
H. Peter Anvine2c80182005-01-15 22:15:51 +00004037 *equals = '=';
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004038
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004039 l = nasm_malloc(sizeof(Line));
4040 l->next = predef;
4041 l->first = def;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004042 l->finishes = false;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00004043 predef = l;
4044}
4045
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004046void pp_pre_undefine(char *definition)
H. Peter Anvin620515a2002-04-30 20:57:38 +00004047{
4048 Token *def, *space;
4049 Line *l;
4050
H. Peter Anvin734b1882002-04-30 21:01:08 +00004051 space = new_Token(NULL, TOK_WHITESPACE, NULL, 0);
4052 def = new_Token(space, TOK_PREPROC_ID, "%undef", 0);
Keith Kaniosb7a89542007-04-12 02:40:54 +00004053 space->next = tokenize(definition);
H. Peter Anvin620515a2002-04-30 20:57:38 +00004054
4055 l = nasm_malloc(sizeof(Line));
4056 l->next = predef;
4057 l->first = def;
H. Peter Anvin6867acc2007-10-10 14:58:45 -07004058 l->finishes = false;
H. Peter Anvin620515a2002-04-30 20:57:38 +00004059 predef = l;
4060}
4061
Keith Kaniosb7a89542007-04-12 02:40:54 +00004062/*
4063 * Added by Keith Kanios:
4064 *
4065 * This function is used to assist with "runtime" preprocessor
4066 * directives. (e.g. pp_runtime("%define __BITS__ 64");)
4067 *
4068 * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU
4069 * PASS A VALID STRING TO THIS FUNCTION!!!!!
4070 */
4071
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004072void pp_runtime(char *definition)
Keith Kaniosb7a89542007-04-12 02:40:54 +00004073{
4074 Token *def;
H. Peter Anvin70653092007-10-19 14:42:29 -07004075
Keith Kaniosb7a89542007-04-12 02:40:54 +00004076 def = tokenize(definition);
4077 if(do_directive(def) == NO_DIRECTIVE_FOUND)
4078 free_tlist(def);
H. Peter Anvin70653092007-10-19 14:42:29 -07004079
Keith Kaniosb7a89542007-04-12 02:40:54 +00004080}
4081
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004082void pp_extra_stdmac(const char **macros)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004083{
H. Peter Anvin76690a12002-04-30 20:52:49 +00004084 extrastdmac = macros;
4085}
4086
Keith Kaniosa5fc6462007-10-13 07:09:22 -07004087static void make_tok_num(Token * tok, int64_t val)
H. Peter Anvineba20a72002-04-30 20:53:55 +00004088{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00004089 char numbuf[20];
Keith Kaniosa5fc6462007-10-13 07:09:22 -07004090 snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val);
H. Peter Anvineba20a72002-04-30 20:53:55 +00004091 tok->text = nasm_strdup(numbuf);
4092 tok->type = TOK_NUMBER;
4093}
4094
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00004095Preproc nasmpp = {
4096 pp_reset,
4097 pp_getline,
4098 pp_cleanup
4099};