H. Peter Anvin | 9e6747c | 2009-06-28 17:13:04 -0700 | [diff] [blame] | 1 | /* ----------------------------------------------------------------------- * |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2 | * |
| 3 | * Copyright 1996-2010 The NASM Authors - All Rights Reserved |
H. Peter Anvin | 9e6747c | 2009-06-28 17:13:04 -0700 | [diff] [blame] | 4 | * See the file AUTHORS included with the NASM distribution for |
| 5 | * the specific copyright holders. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 6 | * |
H. Peter Anvin | 9e6747c | 2009-06-28 17:13:04 -0700 | [diff] [blame] | 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following |
| 9 | * conditions are met: |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 10 | * |
H. Peter Anvin | 9e6747c | 2009-06-28 17:13:04 -0700 | [diff] [blame] | 11 | * * Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * * Redistributions in binary form must reproduce the above |
| 14 | * copyright notice, this list of conditions and the following |
| 15 | * disclaimer in the documentation and/or other materials provided |
| 16 | * with the distribution. |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 17 | * |
H. Peter Anvin | 9e6747c | 2009-06-28 17:13:04 -0700 | [diff] [blame] | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
| 19 | * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 20 | * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 21 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 22 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
| 23 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 25 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 26 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 27 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 28 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 29 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, |
| 30 | * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | * |
| 32 | * ----------------------------------------------------------------------- */ |
| 33 | |
| 34 | /* |
| 35 | * preproc.c macro preprocessor for the Netwide Assembler |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 36 | */ |
| 37 | |
H. Peter Anvin | 4836e33 | 2002-04-30 20:56:43 +0000 | [diff] [blame] | 38 | /* Typical flow of text through preproc |
| 39 | * |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 40 | * pp_getline gets tokenized lines, either |
H. Peter Anvin | 4836e33 | 2002-04-30 20:56:43 +0000 | [diff] [blame] | 41 | * |
| 42 | * from a macro expansion |
| 43 | * |
| 44 | * or |
| 45 | * { |
| 46 | * read_line gets raw text from stdmacpos, or predef, or current input file |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 47 | * tokenize converts to tokens |
H. Peter Anvin | 4836e33 | 2002-04-30 20:56:43 +0000 | [diff] [blame] | 48 | * } |
| 49 | * |
| 50 | * expand_mmac_params is used to expand %1 etc., unless a macro is being |
| 51 | * defined or a false conditional is being processed |
| 52 | * (%0, %1, %+1, %-1, %%foo |
| 53 | * |
| 54 | * do_directive checks for directives |
| 55 | * |
| 56 | * expand_smacro is used to expand single line macros |
| 57 | * |
| 58 | * expand_mmacro is used to expand multi-line macros |
| 59 | * |
| 60 | * detoken is used to convert the line back to text |
| 61 | */ |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 62 | |
H. Peter Anvin | fe50195 | 2007-10-02 21:53:51 -0700 | [diff] [blame] | 63 | #include "compiler.h" |
| 64 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 65 | #include <stdio.h> |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 66 | #include <stdarg.h> |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 67 | #include <stdlib.h> |
| 68 | #include <stddef.h> |
| 69 | #include <string.h> |
| 70 | #include <ctype.h> |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 71 | #include <limits.h> |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 72 | #include <inttypes.h> |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 73 | |
| 74 | #include "nasm.h" |
| 75 | #include "nasmlib.h" |
H. Peter Anvin | 4169a47 | 2007-09-12 01:29:43 +0000 | [diff] [blame] | 76 | #include "preproc.h" |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 77 | #include "hashtbl.h" |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 78 | #include "quote.h" |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 79 | #include "stdscan.h" |
H. Peter Anvin | dbb640b | 2009-07-18 18:57:16 -0700 | [diff] [blame] | 80 | #include "eval.h" |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 81 | #include "tokens.h" |
H. Peter Anvin | a4835d4 | 2008-05-20 14:21:29 -0700 | [diff] [blame] | 82 | #include "tables.h" |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 83 | |
| 84 | typedef struct SMacro SMacro; |
| 85 | typedef struct MMacro MMacro; |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 86 | typedef struct MMacroInvocation MMacroInvocation; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 87 | typedef struct Context Context; |
| 88 | typedef struct Token Token; |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 89 | typedef struct Blocks Blocks; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 90 | typedef struct Line Line; |
| 91 | typedef struct Include Include; |
| 92 | typedef struct Cond Cond; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 93 | typedef struct IncPath IncPath; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 94 | |
| 95 | /* |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 96 | * Note on the storage of both SMacro and MMacros: the hash table |
| 97 | * indexes them case-insensitively, and we then have to go through a |
| 98 | * linked list of potential case aliases (and, for MMacros, parameter |
| 99 | * ranges); this is to preserve the matching semantics of the earlier |
| 100 | * code. If the number of case aliases for a specific macro is a |
| 101 | * performance issue, you may want to reconsider your coding style. |
| 102 | */ |
| 103 | |
| 104 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 105 | * Store the definition of a single-line macro. |
| 106 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 107 | struct SMacro { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 108 | SMacro *next; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 109 | char *name; |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 110 | bool casesense; |
H. Peter Anvin | 16ed438 | 2007-10-11 10:06:19 -0700 | [diff] [blame] | 111 | bool in_progress; |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 112 | unsigned int nparam; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 113 | Token *expansion; |
| 114 | }; |
| 115 | |
| 116 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 117 | * Store the definition of a multi-line macro. This is also used to |
| 118 | * store the interiors of `%rep...%endrep' blocks, which are |
| 119 | * effectively self-re-invoking multi-line macros which simply |
| 120 | * don't have a name or bother to appear in the hash tables. %rep |
| 121 | * blocks are signified by having a NULL `name' field. |
| 122 | * |
| 123 | * In a MMacro describing a `%rep' block, the `in_progress' field |
| 124 | * isn't merely boolean, but gives the number of repeats left to |
| 125 | * run. |
| 126 | * |
| 127 | * The `next' field is used for storing MMacros in hash tables; the |
| 128 | * `next_active' field is for stacking them on istk entries. |
| 129 | * |
| 130 | * When a MMacro is being expanded, `params', `iline', `nparam', |
| 131 | * `paramlen', `rotate' and `unique' are local to the invocation. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 132 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 133 | struct MMacro { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 134 | MMacro *next; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 135 | MMacroInvocation *prev; /* previous invocation */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 136 | char *name; |
H. Peter Anvin | 8cfdb9d | 2007-09-14 18:36:01 -0700 | [diff] [blame] | 137 | int nparam_min, nparam_max; |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 138 | bool casesense; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 139 | bool plus; /* is the last parameter greedy? */ |
| 140 | bool nolist; /* is this macro listing-inhibited? */ |
| 141 | int64_t in_progress; /* is this macro currently being expanded? */ |
| 142 | int32_t max_depth; /* maximum number of recursive expansions allowed */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 143 | Token *dlist; /* All defaults as one list */ |
| 144 | Token **defaults; /* Parameter default pointers */ |
| 145 | int ndefs; /* number of default parameters */ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 146 | Line *expansion; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 147 | |
| 148 | MMacro *next_active; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 149 | MMacro *rep_nest; /* used for nesting %rep */ |
| 150 | Token **params; /* actual parameters */ |
| 151 | Token *iline; /* invocation line */ |
H. Peter Anvin | 25a9934 | 2007-09-22 17:45:45 -0700 | [diff] [blame] | 152 | unsigned int nparam, rotate; |
| 153 | int *paramlen; |
H. Peter Anvin | f8ba53e | 2007-10-11 10:11:57 -0700 | [diff] [blame] | 154 | uint64_t unique; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 155 | int lineno; /* Current line number on expansion */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 156 | uint64_t condcnt; /* number of if blocks... */ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 157 | }; |
| 158 | |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 159 | |
| 160 | /* Store the definition of a multi-line macro, as defined in a |
| 161 | * previous recursive macro expansion. |
| 162 | */ |
| 163 | struct MMacroInvocation { |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 164 | MMacroInvocation *prev; /* previous invocation */ |
| 165 | Token **params; /* actual parameters */ |
| 166 | Token *iline; /* invocation line */ |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 167 | unsigned int nparam, rotate; |
| 168 | int *paramlen; |
| 169 | uint64_t unique; |
Keith Kanios | 3c0d91f | 2009-10-25 13:28:03 -0500 | [diff] [blame] | 170 | uint64_t condcnt; |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 174 | /* |
| 175 | * The context stack is composed of a linked list of these. |
| 176 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 177 | struct Context { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 178 | Context *next; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 179 | char *name; |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 180 | struct hash_table localmac; |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 181 | uint32_t number; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | /* |
| 185 | * This is the internal form which we break input lines up into. |
| 186 | * Typically stored in linked lists. |
| 187 | * |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 188 | * Note that `type' serves a double meaning: TOK_SMAC_PARAM is not |
| 189 | * necessarily used as-is, but is intended to denote the number of |
| 190 | * the substituted parameter. So in the definition |
| 191 | * |
| 192 | * %define a(x,y) ( (x) & ~(y) ) |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 193 | * |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 194 | * the token representing `x' will have its type changed to |
| 195 | * TOK_SMAC_PARAM, but the one representing `y' will be |
| 196 | * TOK_SMAC_PARAM+1. |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 197 | * |
| 198 | * TOK_INTERNAL_STRING is a dirty hack: it's a single string token |
| 199 | * which doesn't need quotes around it. Used in the pre-include |
| 200 | * mechanism as an alternative to trying to find a sensible type of |
| 201 | * quote to use on the filename we were passed. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 202 | */ |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 203 | enum pp_token_type { |
| 204 | TOK_NONE = 0, TOK_WHITESPACE, TOK_COMMENT, TOK_ID, |
| 205 | TOK_PREPROC_ID, TOK_STRING, |
H. Peter Anvin | 6c81f0a | 2008-05-25 21:46:17 -0700 | [diff] [blame] | 206 | TOK_NUMBER, TOK_FLOAT, TOK_SMAC_END, TOK_OTHER, |
| 207 | TOK_INTERNAL_STRING, |
| 208 | TOK_PREPROC_Q, TOK_PREPROC_QQ, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 209 | TOK_PASTE, /* %+ */ |
| 210 | TOK_INDIRECT, /* %[...] */ |
| 211 | TOK_SMAC_PARAM, /* MUST BE LAST IN THE LIST!!! */ |
| 212 | TOK_MAX = INT_MAX /* Keep compiler from reducing the range */ |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 213 | }; |
| 214 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 215 | struct Token { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 216 | Token *next; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 217 | char *text; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 218 | union { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 219 | SMacro *mac; /* associated macro for TOK_SMAC_END */ |
| 220 | size_t len; /* scratch length field */ |
| 221 | } a; /* Auxiliary data */ |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 222 | enum pp_token_type type; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | /* |
| 226 | * Multi-line macro definitions are stored as a linked list of |
| 227 | * these, which is essentially a container to allow several linked |
| 228 | * lists of Tokens. |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 229 | * |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 230 | * Note that in this module, linked lists are treated as stacks |
| 231 | * wherever possible. For this reason, Lines are _pushed_ on to the |
| 232 | * `expansion' field in MMacro structures, so that the linked list, |
| 233 | * if walked, would give the macro lines in reverse order; this |
| 234 | * means that we can walk the list when expanding a macro, and thus |
| 235 | * push the lines on to the `expansion' field in _istk_ in reverse |
| 236 | * order (so that when popped back off they are in the right |
| 237 | * order). It may seem cockeyed, and it relies on my design having |
| 238 | * an even number of steps in, but it works... |
| 239 | * |
| 240 | * Some of these structures, rather than being actual lines, are |
| 241 | * markers delimiting the end of the expansion of a given macro. |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 242 | * This is for use in the cycle-tracking and %rep-handling code. |
| 243 | * Such structures have `finishes' non-NULL, and `first' NULL. All |
| 244 | * others have `finishes' NULL, but `first' may still be NULL if |
| 245 | * the line is blank. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 246 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 247 | struct Line { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 248 | Line *next; |
| 249 | MMacro *finishes; |
| 250 | Token *first; |
| 251 | }; |
| 252 | |
| 253 | /* |
| 254 | * To handle an arbitrary level of file inclusion, we maintain a |
| 255 | * stack (ie linked list) of these things. |
| 256 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 257 | struct Include { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 258 | Include *next; |
| 259 | FILE *fp; |
| 260 | Cond *conds; |
| 261 | Line *expansion; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 262 | char *fname; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 263 | int lineno, lineinc; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 264 | MMacro *mstk; /* stack of active macros/reps */ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | /* |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 268 | * Include search path. This is simply a list of strings which get |
| 269 | * prepended, in turn, to the name of an include file, in an |
| 270 | * attempt to find the file if it's not in the current directory. |
| 271 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 272 | struct IncPath { |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 273 | IncPath *next; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 274 | char *path; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 275 | }; |
| 276 | |
| 277 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 278 | * Conditional assembly: we maintain a separate stack of these for |
| 279 | * each level of file inclusion. (The only reason we keep the |
| 280 | * stacks separate is to ensure that a stray `%endif' in a file |
| 281 | * included from within the true branch of a `%if' won't terminate |
| 282 | * it and cause confusion: instead, rightly, it'll cause an error.) |
| 283 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 284 | struct Cond { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 285 | Cond *next; |
| 286 | int state; |
| 287 | }; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 288 | enum { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 289 | /* |
| 290 | * These states are for use just after %if or %elif: IF_TRUE |
| 291 | * means the condition has evaluated to truth so we are |
| 292 | * currently emitting, whereas IF_FALSE means we are not |
| 293 | * currently emitting but will start doing so if a %else comes |
| 294 | * up. In these states, all directives are admissible: %elif, |
| 295 | * %else and %endif. (And of course %if.) |
| 296 | */ |
| 297 | COND_IF_TRUE, COND_IF_FALSE, |
| 298 | /* |
| 299 | * These states come up after a %else: ELSE_TRUE means we're |
| 300 | * emitting, and ELSE_FALSE means we're not. In ELSE_* states, |
| 301 | * any %elif or %else will cause an error. |
| 302 | */ |
| 303 | COND_ELSE_TRUE, COND_ELSE_FALSE, |
| 304 | /* |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 305 | * These states mean that we're not emitting now, and also that |
| 306 | * nothing until %endif will be emitted at all. COND_DONE is |
| 307 | * used when we've had our moment of emission |
| 308 | * and have now started seeing %elifs. COND_NEVER is used when |
| 309 | * the condition construct in question is contained within a |
| 310 | * non-emitting branch of a larger condition construct, |
| 311 | * or if there is an error. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 312 | */ |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 313 | COND_DONE, COND_NEVER |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 314 | }; |
| 315 | #define emitting(x) ( (x) == COND_IF_TRUE || (x) == COND_ELSE_TRUE ) |
| 316 | |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 317 | /* |
Ed Beroset | 3ab3f41 | 2002-06-11 03:31:49 +0000 | [diff] [blame] | 318 | * These defines are used as the possible return values for do_directive |
| 319 | */ |
| 320 | #define NO_DIRECTIVE_FOUND 0 |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 321 | #define DIRECTIVE_FOUND 1 |
Ed Beroset | 3ab3f41 | 2002-06-11 03:31:49 +0000 | [diff] [blame] | 322 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 323 | /* |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 324 | * This define sets the upper limit for smacro and recursive mmacro |
| 325 | * expansions |
| 326 | */ |
| 327 | #define DEADMAN_LIMIT (1 << 20) |
| 328 | |
| 329 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 330 | * Condition codes. Note that we use c_ prefix not C_ because C_ is |
| 331 | * used in nasm.h for the "real" condition codes. At _this_ level, |
| 332 | * we treat CXZ and ECXZ as condition codes, albeit non-invertible |
| 333 | * ones, so we need a different enum... |
| 334 | */ |
H. Peter Anvin | 476d286 | 2007-10-02 22:04:15 -0700 | [diff] [blame] | 335 | static const char * const conditions[] = { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 336 | "a", "ae", "b", "be", "c", "cxz", "e", "ecxz", "g", "ge", "l", "le", |
| 337 | "na", "nae", "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no", |
H. Peter Anvin | ce9be34 | 2007-09-12 00:22:29 +0000 | [diff] [blame] | 338 | "np", "ns", "nz", "o", "p", "pe", "po", "rcxz", "s", "z" |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 339 | }; |
H. Peter Anvin | 476d286 | 2007-10-02 22:04:15 -0700 | [diff] [blame] | 340 | enum pp_conds { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 341 | c_A, c_AE, c_B, c_BE, c_C, c_CXZ, c_E, c_ECXZ, c_G, c_GE, c_L, c_LE, |
| 342 | c_NA, c_NAE, c_NB, c_NBE, c_NC, c_NE, c_NG, c_NGE, c_NL, c_NLE, c_NO, |
H. Peter Anvin | 476d286 | 2007-10-02 22:04:15 -0700 | [diff] [blame] | 343 | c_NP, c_NS, c_NZ, c_O, c_P, c_PE, c_PO, c_RCXZ, c_S, c_Z, |
| 344 | c_none = -1 |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 345 | }; |
H. Peter Anvin | 476d286 | 2007-10-02 22:04:15 -0700 | [diff] [blame] | 346 | static const enum pp_conds inverse_ccs[] = { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 347 | c_NA, c_NAE, c_NB, c_NBE, c_NC, -1, c_NE, -1, c_NG, c_NGE, c_NL, c_NLE, |
| 348 | 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 Anvin | ce9be34 | 2007-09-12 00:22:29 +0000 | [diff] [blame] | 349 | c_Z, c_NO, c_NP, c_PO, c_PE, -1, c_NS, c_NZ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 350 | }; |
| 351 | |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 352 | /* |
| 353 | * Directive names. |
| 354 | */ |
H. Peter Anvin | 6574726 | 2002-05-07 00:10:05 +0000 | [diff] [blame] | 355 | /* If this is a an IF, ELIF, ELSE or ENDIF keyword */ |
H. Peter Anvin | 9bf0aa7 | 2007-09-12 02:12:07 +0000 | [diff] [blame] | 356 | static int is_condition(enum preproc_token arg) |
H. Peter Anvin | 6574726 | 2002-05-07 00:10:05 +0000 | [diff] [blame] | 357 | { |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 358 | return PP_IS_COND(arg) || (arg == PP_ELSE) || (arg == PP_ENDIF); |
H. Peter Anvin | 6574726 | 2002-05-07 00:10:05 +0000 | [diff] [blame] | 359 | } |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 360 | |
| 361 | /* For TASM compatibility we need to be able to recognise TASM compatible |
| 362 | * conditional compilation directives. Using the NASM pre-processor does |
| 363 | * not work, so we look for them specifically from the following list and |
| 364 | * then jam in the equivalent NASM directive into the input stream. |
| 365 | */ |
| 366 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 367 | enum { |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 368 | TM_ARG, TM_ELIF, TM_ELSE, TM_ENDIF, TM_IF, TM_IFDEF, TM_IFDIFI, |
| 369 | TM_IFNDEF, TM_INCLUDE, TM_LOCAL |
| 370 | }; |
| 371 | |
H. Peter Anvin | 476d286 | 2007-10-02 22:04:15 -0700 | [diff] [blame] | 372 | static const char * const tasm_directives[] = { |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 373 | "arg", "elif", "else", "endif", "if", "ifdef", "ifdifi", |
| 374 | "ifndef", "include", "local" |
| 375 | }; |
| 376 | |
| 377 | static int StackSize = 4; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 378 | static char *StackPointer = "ebp"; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 379 | static int ArgOffset = 8; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 380 | static int LocalOffset = 0; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 381 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 382 | static Context *cstk; |
| 383 | static Include *istk; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 384 | static IncPath *ipath = NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 385 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 386 | static int pass; /* HACK: pass 0 = generate dependencies only */ |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 387 | static StrList **dephead, **deptail; /* Dependency list */ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 388 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 389 | static uint64_t unique; /* unique identifier numbers */ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 390 | |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 391 | static Line *predef = NULL; |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 392 | static bool do_predef; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 393 | |
| 394 | static ListGen *list; |
| 395 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 396 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 397 | * The current set of multi-line macros we have defined. |
| 398 | */ |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 399 | static struct hash_table mmacros; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 400 | |
| 401 | /* |
| 402 | * The current set of single-line macros we have defined. |
| 403 | */ |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 404 | static struct hash_table smacros; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 405 | |
| 406 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 407 | * The multi-line macro we are currently defining, or the %rep |
| 408 | * block we are currently reading, if any. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 409 | */ |
| 410 | static MMacro *defining; |
| 411 | |
Charles Crayne | d4200be | 2008-07-12 16:42:33 -0700 | [diff] [blame] | 412 | static uint64_t nested_mac_count; |
| 413 | static uint64_t nested_rep_count; |
| 414 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 415 | /* |
| 416 | * The number of macro parameters to allocate space for at a time. |
| 417 | */ |
| 418 | #define PARAM_DELTA 16 |
| 419 | |
| 420 | /* |
H. Peter Anvin | a4835d4 | 2008-05-20 14:21:29 -0700 | [diff] [blame] | 421 | * The standard macro set: defined in macros.c in the array nasm_stdmac. |
| 422 | * This gives our position in the macro set, when we're processing it. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 423 | */ |
H. Peter Anvin | a70547f | 2008-07-19 21:44:26 -0700 | [diff] [blame] | 424 | static macros_t *stdmacpos; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 425 | |
| 426 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 427 | * The extra standard macros that come from the object format, if |
| 428 | * any. |
| 429 | */ |
H. Peter Anvin | a70547f | 2008-07-19 21:44:26 -0700 | [diff] [blame] | 430 | static macros_t *extrastdmac = NULL; |
H. Peter Anvin | cfb7176 | 2008-06-20 15:20:16 -0700 | [diff] [blame] | 431 | static bool any_extrastdmac; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 432 | |
| 433 | /* |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 434 | * Tokens are allocated in blocks to improve speed |
| 435 | */ |
| 436 | #define TOKEN_BLOCKSIZE 4096 |
| 437 | static Token *freeTokens = NULL; |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 438 | struct Blocks { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 439 | Blocks *next; |
| 440 | void *chunk; |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 441 | }; |
| 442 | |
| 443 | static Blocks blocks = { NULL, NULL }; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 444 | |
| 445 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 446 | * Forward declarations. |
| 447 | */ |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 448 | static Token *expand_mmac_params(Token * tline); |
| 449 | static Token *expand_smacro(Token * tline); |
| 450 | static Token *expand_id(Token * tline); |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 451 | static Context *get_ctx(const char *name, const char **namep, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 452 | bool all_contexts); |
Keith Kanios | a5fc646 | 2007-10-13 07:09:22 -0700 | [diff] [blame] | 453 | static void make_tok_num(Token * tok, int64_t val); |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 454 | static void error(int severity, const char *fmt, ...); |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 455 | static void error_precond(int severity, const char *fmt, ...); |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 456 | static void *new_Block(size_t size); |
| 457 | static void delete_Blocks(void); |
H. Peter Anvin | c751e86 | 2008-06-09 10:18:45 -0700 | [diff] [blame] | 458 | static Token *new_Token(Token * next, enum pp_token_type type, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 459 | const char *text, int txtlen); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 460 | static Token *delete_Token(Token * t); |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 461 | |
| 462 | /* |
| 463 | * Macros for safe checking of token pointers, avoid *(NULL) |
| 464 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 465 | #define tok_type_(x,t) ((x) && (x)->type == (t)) |
| 466 | #define skip_white_(x) if (tok_type_((x), TOK_WHITESPACE)) (x)=(x)->next |
| 467 | #define tok_is_(x,v) (tok_type_((x), TOK_OTHER) && !strcmp((x)->text,(v))) |
| 468 | #define tok_isnt_(x,v) ((x) && ((x)->type!=TOK_OTHER || strcmp((x)->text,(v)))) |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 469 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 470 | /* |
| 471 | * Handle TASM specific directives, which do not contain a % in |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 472 | * front of them. We do it here because I could not find any other |
| 473 | * place to do it for the moment, and it is a hack (ideally it would |
| 474 | * be nice to be able to use the NASM pre-processor to do it). |
| 475 | */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 476 | static char *check_tasm_directive(char *line) |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 477 | { |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 478 | int32_t i, j, k, m, len; |
Cyrill Gorcunov | f66ac7d | 2009-10-12 20:41:13 +0400 | [diff] [blame] | 479 | char *p, *q, *oldline, oldchar; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 480 | |
Cyrill Gorcunov | f66ac7d | 2009-10-12 20:41:13 +0400 | [diff] [blame] | 481 | p = nasm_skip_spaces(line); |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 482 | |
| 483 | /* Binary search for the directive name */ |
| 484 | i = -1; |
Cyrill Gorcunov | a731924 | 2010-06-03 22:04:36 +0400 | [diff] [blame] | 485 | j = ARRAY_SIZE(tasm_directives); |
Cyrill Gorcunov | f66ac7d | 2009-10-12 20:41:13 +0400 | [diff] [blame] | 486 | q = nasm_skip_word(p); |
| 487 | len = q - p; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 488 | if (len) { |
| 489 | oldchar = p[len]; |
| 490 | p[len] = 0; |
| 491 | while (j - i > 1) { |
| 492 | k = (j + i) / 2; |
| 493 | m = nasm_stricmp(p, tasm_directives[k]); |
| 494 | if (m == 0) { |
| 495 | /* We have found a directive, so jam a % in front of it |
| 496 | * so that NASM will then recognise it as one if it's own. |
| 497 | */ |
| 498 | p[len] = oldchar; |
| 499 | len = strlen(p); |
| 500 | oldline = line; |
| 501 | line = nasm_malloc(len + 2); |
| 502 | line[0] = '%'; |
| 503 | if (k == TM_IFDIFI) { |
H. Peter Anvin | 18f4879 | 2009-06-27 15:56:27 -0700 | [diff] [blame] | 504 | /* |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 505 | * NASM does not recognise IFDIFI, so we convert |
| 506 | * it to %if 0. This is not used in NASM |
| 507 | * compatible code, but does need to parse for the |
| 508 | * TASM macro package. |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 509 | */ |
H. Peter Anvin | 18f4879 | 2009-06-27 15:56:27 -0700 | [diff] [blame] | 510 | strcpy(line + 1, "if 0"); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 511 | } else { |
| 512 | memcpy(line + 1, p, len + 1); |
| 513 | } |
| 514 | nasm_free(oldline); |
| 515 | return line; |
| 516 | } else if (m < 0) { |
| 517 | j = k; |
| 518 | } else |
| 519 | i = k; |
| 520 | } |
| 521 | p[len] = oldchar; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 522 | } |
| 523 | return line; |
| 524 | } |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 525 | |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 526 | /* |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 527 | * The pre-preprocessing stage... This function translates line |
| 528 | * number indications as they emerge from GNU cpp (`# lineno "file" |
| 529 | * flags') into NASM preprocessor line number indications (`%line |
| 530 | * lineno file'). |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 531 | */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 532 | static char *prepreproc(char *line) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 533 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 534 | int lineno, fnlen; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 535 | char *fname, *oldline; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 536 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 537 | if (line[0] == '#' && line[1] == ' ') { |
| 538 | oldline = line; |
| 539 | fname = oldline + 2; |
| 540 | lineno = atoi(fname); |
| 541 | fname += strspn(fname, "0123456789 "); |
| 542 | if (*fname == '"') |
| 543 | fname++; |
| 544 | fnlen = strcspn(fname, "\""); |
| 545 | line = nasm_malloc(20 + fnlen); |
| 546 | snprintf(line, 20 + fnlen, "%%line %d %.*s", lineno, fnlen, fname); |
| 547 | nasm_free(oldline); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 548 | } |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 549 | if (tasm_compatible_mode) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 550 | return check_tasm_directive(line); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 551 | return line; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 555 | * Free a linked list of tokens. |
| 556 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 557 | static void free_tlist(Token * list) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 558 | { |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 559 | while (list) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 560 | list = delete_Token(list); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Free a linked list of lines. |
| 565 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 566 | static void free_llist(Line * list) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 567 | { |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 568 | Line *l, *tmp; |
| 569 | list_for_each_safe(l, tmp, list) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 570 | free_tlist(l->first); |
| 571 | nasm_free(l); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 572 | } |
| 573 | } |
| 574 | |
| 575 | /* |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 576 | * Free an MMacro |
| 577 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 578 | static void free_mmacro(MMacro * m) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 579 | { |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 580 | nasm_free(m->name); |
| 581 | free_tlist(m->dlist); |
| 582 | nasm_free(m->defaults); |
| 583 | free_llist(m->expansion); |
| 584 | nasm_free(m); |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | /* |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 588 | * Free all currently defined macros, and free the hash tables |
| 589 | */ |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 590 | static void free_smacro_table(struct hash_table *smt) |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 591 | { |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 592 | SMacro *s, *tmp; |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 593 | const char *key; |
| 594 | struct hash_tbl_node *it = NULL; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 595 | |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 596 | while ((s = hash_iterate(smt, &it, &key)) != NULL) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 597 | nasm_free((void *)key); |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 598 | list_for_each_safe(s, tmp, s) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 599 | nasm_free(s->name); |
| 600 | free_tlist(s->expansion); |
| 601 | nasm_free(s); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 602 | } |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 603 | } |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 604 | hash_free(smt); |
| 605 | } |
| 606 | |
| 607 | static void free_mmacro_table(struct hash_table *mmt) |
| 608 | { |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 609 | MMacro *m, *tmp; |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 610 | const char *key; |
| 611 | struct hash_tbl_node *it = NULL; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 612 | |
| 613 | it = NULL; |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 614 | while ((m = hash_iterate(mmt, &it, &key)) != NULL) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 615 | nasm_free((void *)key); |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 616 | list_for_each_safe(m ,tmp, m) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 617 | free_mmacro(m); |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 618 | } |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 619 | hash_free(mmt); |
| 620 | } |
| 621 | |
| 622 | static void free_macros(void) |
| 623 | { |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 624 | free_smacro_table(&smacros); |
| 625 | free_mmacro_table(&mmacros); |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | /* |
| 629 | * Initialize the hash tables |
| 630 | */ |
| 631 | static void init_macros(void) |
| 632 | { |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 633 | hash_init(&smacros, HASH_LARGE); |
| 634 | hash_init(&mmacros, HASH_LARGE); |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 638 | * Pop the context stack. |
| 639 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 640 | static void ctx_pop(void) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 641 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 642 | Context *c = cstk; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 643 | |
| 644 | cstk = cstk->next; |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 645 | free_smacro_table(&c->localmac); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 646 | nasm_free(c->name); |
| 647 | nasm_free(c); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 648 | } |
| 649 | |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 650 | /* |
| 651 | * Search for a key in the hash index; adding it if necessary |
| 652 | * (in which case we initialize the data pointer to NULL.) |
| 653 | */ |
| 654 | static void ** |
| 655 | hash_findi_add(struct hash_table *hash, const char *str) |
| 656 | { |
| 657 | struct hash_insert hi; |
| 658 | void **r; |
| 659 | char *strx; |
| 660 | |
| 661 | r = hash_findi(hash, str, &hi); |
| 662 | if (r) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 663 | return r; |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 664 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 665 | strx = nasm_strdup(str); /* Use a more efficient allocator here? */ |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 666 | return hash_add(&hi, strx, NULL); |
| 667 | } |
| 668 | |
| 669 | /* |
| 670 | * Like hash_findi, but returns the data element rather than a pointer |
| 671 | * to it. Used only when not adding a new element, hence no third |
| 672 | * argument. |
| 673 | */ |
| 674 | static void * |
| 675 | hash_findix(struct hash_table *hash, const char *str) |
| 676 | { |
| 677 | void **p; |
| 678 | |
| 679 | p = hash_findi(hash, str, NULL); |
| 680 | return p ? *p : NULL; |
| 681 | } |
| 682 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 683 | #define BUF_DELTA 512 |
| 684 | /* |
| 685 | * Read a line from the top file in istk, handling multiple CR/LFs |
| 686 | * at the end of the line read, and handling spurious ^Zs. Will |
| 687 | * return lines from the standard macro set if this has not already |
| 688 | * been done. |
| 689 | */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 690 | static char *read_line(void) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 691 | { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 692 | char *buffer, *p, *q; |
H. Peter Anvin | 9f39464 | 2002-04-30 21:07:51 +0000 | [diff] [blame] | 693 | int bufsize, continued_count; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 694 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 695 | if (stdmacpos) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 696 | unsigned char c; |
| 697 | const unsigned char *p = stdmacpos; |
| 698 | char *ret, *q; |
| 699 | size_t len = 0; |
| 700 | while ((c = *p++)) { |
| 701 | if (c >= 0x80) |
| 702 | len += pp_directives_len[c-0x80]+1; |
| 703 | else |
| 704 | len++; |
| 705 | } |
| 706 | ret = nasm_malloc(len+1); |
| 707 | q = ret; |
| 708 | while ((c = *stdmacpos++)) { |
| 709 | if (c >= 0x80) { |
| 710 | memcpy(q, pp_directives[c-0x80], pp_directives_len[c-0x80]); |
| 711 | q += pp_directives_len[c-0x80]; |
| 712 | *q++ = ' '; |
| 713 | } else { |
| 714 | *q++ = c; |
| 715 | } |
| 716 | } |
| 717 | stdmacpos = p; |
| 718 | *q = '\0'; |
H. Peter Anvin | 72edbb8 | 2008-06-19 16:00:04 -0700 | [diff] [blame] | 719 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 720 | if (!*stdmacpos) { |
| 721 | /* This was the last of the standard macro chain... */ |
| 722 | stdmacpos = NULL; |
| 723 | if (any_extrastdmac) { |
| 724 | stdmacpos = extrastdmac; |
| 725 | any_extrastdmac = false; |
| 726 | } else if (do_predef) { |
| 727 | Line *pd, *l; |
| 728 | Token *head, **tail, *t; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 729 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 730 | /* |
| 731 | * Nasty hack: here we push the contents of |
| 732 | * `predef' on to the top-level expansion stack, |
| 733 | * since this is the most convenient way to |
| 734 | * implement the pre-include and pre-define |
| 735 | * features. |
| 736 | */ |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 737 | list_for_each(pd, predef) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 738 | head = NULL; |
| 739 | tail = &head; |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 740 | list_for_each(t, pd->first) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 741 | *tail = new_Token(NULL, t->type, t->text, 0); |
| 742 | tail = &(*tail)->next; |
| 743 | } |
| 744 | l = nasm_malloc(sizeof(Line)); |
| 745 | l->next = istk->expansion; |
| 746 | l->first = head; |
| 747 | l->finishes = NULL; |
| 748 | istk->expansion = l; |
| 749 | } |
| 750 | do_predef = false; |
| 751 | } |
| 752 | } |
| 753 | return ret; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | bufsize = BUF_DELTA; |
| 757 | buffer = nasm_malloc(BUF_DELTA); |
| 758 | p = buffer; |
H. Peter Anvin | 9f39464 | 2002-04-30 21:07:51 +0000 | [diff] [blame] | 759 | continued_count = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 760 | while (1) { |
| 761 | q = fgets(p, bufsize - (p - buffer), istk->fp); |
| 762 | if (!q) |
| 763 | break; |
| 764 | p += strlen(p); |
| 765 | if (p > buffer && p[-1] == '\n') { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 766 | /* |
| 767 | * Convert backslash-CRLF line continuation sequences into |
| 768 | * nothing at all (for DOS and Windows) |
| 769 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 770 | if (((p - 2) > buffer) && (p[-3] == '\\') && (p[-2] == '\r')) { |
| 771 | p -= 3; |
| 772 | *p = 0; |
| 773 | continued_count++; |
| 774 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 775 | /* |
| 776 | * Also convert backslash-LF line continuation sequences into |
| 777 | * nothing at all (for Unix) |
| 778 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 779 | else if (((p - 1) > buffer) && (p[-2] == '\\')) { |
| 780 | p -= 2; |
| 781 | *p = 0; |
| 782 | continued_count++; |
| 783 | } else { |
| 784 | break; |
| 785 | } |
| 786 | } |
| 787 | if (p - buffer > bufsize - 10) { |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 788 | int32_t offset = p - buffer; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 789 | bufsize += BUF_DELTA; |
| 790 | buffer = nasm_realloc(buffer, bufsize); |
| 791 | p = buffer + offset; /* prevent stale-pointer problems */ |
| 792 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 793 | } |
| 794 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 795 | if (!q && p == buffer) { |
| 796 | nasm_free(buffer); |
| 797 | return NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 798 | } |
| 799 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 800 | src_set_linnum(src_get_linnum() + istk->lineinc + |
| 801 | (continued_count * istk->lineinc)); |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 802 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 803 | /* |
| 804 | * Play safe: remove CRs as well as LFs, if any of either are |
| 805 | * present at the end of the line. |
| 806 | */ |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 807 | while (--p >= buffer && (*p == '\n' || *p == '\r')) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 808 | *p = '\0'; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 809 | |
| 810 | /* |
| 811 | * Handle spurious ^Z, which may be inserted into source files |
| 812 | * by some file transfer utilities. |
| 813 | */ |
| 814 | buffer[strcspn(buffer, "\032")] = '\0'; |
| 815 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 816 | list->line(LIST_READ, buffer); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 817 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 818 | return buffer; |
| 819 | } |
| 820 | |
| 821 | /* |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 822 | * Tokenize a line of text. This is a very simple process since we |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 823 | * don't need to parse the value out of e.g. numeric tokens: we |
| 824 | * simply split one string into many. |
| 825 | */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 826 | static Token *tokenize(char *line) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 827 | { |
H. Peter Anvin | ca544db | 2008-10-19 19:30:11 -0700 | [diff] [blame] | 828 | char c, *p = line; |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 829 | enum pp_token_type type; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 830 | Token *list = NULL; |
| 831 | Token *t, **tail = &list; |
| 832 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 833 | while (*line) { |
| 834 | p = line; |
| 835 | if (*p == '%') { |
| 836 | p++; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 837 | if (*p == '+' && !nasm_isdigit(p[1])) { |
| 838 | p++; |
| 839 | type = TOK_PASTE; |
| 840 | } else if (nasm_isdigit(*p) || |
| 841 | ((*p == '-' || *p == '+') && nasm_isdigit(p[1]))) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 842 | do { |
| 843 | p++; |
| 844 | } |
H. Peter Anvin | bda7a6e | 2008-06-21 10:23:17 -0700 | [diff] [blame] | 845 | while (nasm_isdigit(*p)); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 846 | type = TOK_PREPROC_ID; |
| 847 | } else if (*p == '{') { |
| 848 | p++; |
| 849 | while (*p && *p != '}') { |
| 850 | p[-1] = *p; |
| 851 | p++; |
| 852 | } |
| 853 | p[-1] = '\0'; |
| 854 | if (*p) |
| 855 | p++; |
| 856 | type = TOK_PREPROC_ID; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 857 | } else if (*p == '[') { |
| 858 | int lvl = 1; |
| 859 | line += 2; /* Skip the leading %[ */ |
| 860 | p++; |
| 861 | while (lvl && (c = *p++)) { |
| 862 | switch (c) { |
| 863 | case ']': |
| 864 | lvl--; |
| 865 | break; |
| 866 | case '%': |
| 867 | if (*p == '[') |
| 868 | lvl++; |
| 869 | break; |
| 870 | case '\'': |
| 871 | case '\"': |
| 872 | case '`': |
| 873 | p = nasm_skip_string(p)+1; |
| 874 | break; |
| 875 | default: |
| 876 | break; |
| 877 | } |
| 878 | } |
| 879 | p--; |
| 880 | if (*p) |
| 881 | *p++ = '\0'; |
| 882 | if (lvl) |
| 883 | error(ERR_NONFATAL, "unterminated %[ construct"); |
| 884 | type = TOK_INDIRECT; |
| 885 | } else if (*p == '?') { |
| 886 | type = TOK_PREPROC_Q; /* %? */ |
| 887 | p++; |
| 888 | if (*p == '?') { |
| 889 | type = TOK_PREPROC_QQ; /* %?? */ |
| 890 | p++; |
| 891 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 892 | } else if (isidchar(*p) || |
| 893 | ((*p == '!' || *p == '%' || *p == '$') && |
| 894 | isidchar(p[1]))) { |
| 895 | do { |
| 896 | p++; |
| 897 | } |
| 898 | while (isidchar(*p)); |
| 899 | type = TOK_PREPROC_ID; |
| 900 | } else { |
| 901 | type = TOK_OTHER; |
| 902 | if (*p == '%') |
| 903 | p++; |
| 904 | } |
| 905 | } else if (isidstart(*p) || (*p == '$' && isidstart(p[1]))) { |
| 906 | type = TOK_ID; |
| 907 | p++; |
| 908 | while (*p && isidchar(*p)) |
| 909 | p++; |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 910 | } else if (*p == '\'' || *p == '"' || *p == '`') { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 911 | /* |
| 912 | * A string token. |
| 913 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 914 | type = TOK_STRING; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 915 | p = nasm_skip_string(p); |
Nickolay Yurchenko | f3b3ce2 | 2003-09-21 20:38:43 +0000 | [diff] [blame] | 916 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 917 | if (*p) { |
| 918 | p++; |
| 919 | } else { |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 920 | error(ERR_WARNING|ERR_PASS1, "unterminated string"); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 921 | /* Handling unterminated strings by UNV */ |
| 922 | /* type = -1; */ |
| 923 | } |
Victor van den Elzen | fb5f251 | 2009-04-17 16:17:59 +0200 | [diff] [blame] | 924 | } else if (p[0] == '$' && p[1] == '$') { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 925 | type = TOK_OTHER; /* TOKEN_BASE */ |
Victor van den Elzen | fb5f251 | 2009-04-17 16:17:59 +0200 | [diff] [blame] | 926 | p += 2; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 927 | } else if (isnumstart(*p)) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 928 | bool is_hex = false; |
| 929 | bool is_float = false; |
| 930 | bool has_e = false; |
| 931 | char c, *r; |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 932 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 933 | /* |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 934 | * A numeric token. |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 935 | */ |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 936 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 937 | if (*p == '$') { |
| 938 | p++; |
| 939 | is_hex = true; |
| 940 | } |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 941 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 942 | for (;;) { |
| 943 | c = *p++; |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 944 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 945 | if (!is_hex && (c == 'e' || c == 'E')) { |
| 946 | has_e = true; |
| 947 | if (*p == '+' || *p == '-') { |
| 948 | /* |
| 949 | * e can only be followed by +/- if it is either a |
| 950 | * prefixed hex number or a floating-point number |
| 951 | */ |
| 952 | p++; |
| 953 | is_float = true; |
| 954 | } |
| 955 | } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') { |
| 956 | is_hex = true; |
| 957 | } else if (c == 'P' || c == 'p') { |
| 958 | is_float = true; |
| 959 | if (*p == '+' || *p == '-') |
| 960 | p++; |
| 961 | } else if (isnumchar(c) || c == '_') |
| 962 | ; /* just advance */ |
| 963 | else if (c == '.') { |
| 964 | /* |
| 965 | * we need to deal with consequences of the legacy |
| 966 | * parser, like "1.nolist" being two tokens |
| 967 | * (TOK_NUMBER, TOK_ID) here; at least give it |
| 968 | * a shot for now. In the future, we probably need |
| 969 | * a flex-based scanner with proper pattern matching |
| 970 | * to do it as well as it can be done. Nothing in |
| 971 | * the world is going to help the person who wants |
| 972 | * 0x123.p16 interpreted as two tokens, though. |
| 973 | */ |
| 974 | r = p; |
| 975 | while (*r == '_') |
| 976 | r++; |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 977 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 978 | if (nasm_isdigit(*r) || (is_hex && nasm_isxdigit(*r)) || |
| 979 | (!is_hex && (*r == 'e' || *r == 'E')) || |
| 980 | (*r == 'p' || *r == 'P')) { |
| 981 | p = r; |
| 982 | is_float = true; |
| 983 | } else |
| 984 | break; /* Terminate the token */ |
| 985 | } else |
| 986 | break; |
| 987 | } |
| 988 | p--; /* Point to first character beyond number */ |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 989 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 990 | if (p == line+1 && *line == '$') { |
| 991 | type = TOK_OTHER; /* TOKEN_HERE */ |
| 992 | } else { |
| 993 | if (has_e && !is_hex) { |
| 994 | /* 1e13 is floating-point, but 1e13h is not */ |
| 995 | is_float = true; |
| 996 | } |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 997 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 998 | type = is_float ? TOK_FLOAT : TOK_NUMBER; |
| 999 | } |
H. Peter Anvin | bda7a6e | 2008-06-21 10:23:17 -0700 | [diff] [blame] | 1000 | } else if (nasm_isspace(*p)) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1001 | type = TOK_WHITESPACE; |
Cyrill Gorcunov | f66ac7d | 2009-10-12 20:41:13 +0400 | [diff] [blame] | 1002 | p = nasm_skip_spaces(p); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1003 | /* |
| 1004 | * Whitespace just before end-of-line is discarded by |
| 1005 | * pretending it's a comment; whitespace just before a |
| 1006 | * comment gets lumped into the comment. |
| 1007 | */ |
| 1008 | if (!*p || *p == ';') { |
| 1009 | type = TOK_COMMENT; |
| 1010 | while (*p) |
| 1011 | p++; |
| 1012 | } |
| 1013 | } else if (*p == ';') { |
| 1014 | type = TOK_COMMENT; |
| 1015 | while (*p) |
| 1016 | p++; |
| 1017 | } else { |
| 1018 | /* |
| 1019 | * Anything else is an operator of some kind. We check |
| 1020 | * for all the double-character operators (>>, <<, //, |
| 1021 | * %%, <=, >=, ==, !=, <>, &&, ||, ^^), but anything |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 1022 | * else is a single-character operator. |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1023 | */ |
| 1024 | type = TOK_OTHER; |
| 1025 | if ((p[0] == '>' && p[1] == '>') || |
| 1026 | (p[0] == '<' && p[1] == '<') || |
| 1027 | (p[0] == '/' && p[1] == '/') || |
| 1028 | (p[0] == '<' && p[1] == '=') || |
| 1029 | (p[0] == '>' && p[1] == '=') || |
| 1030 | (p[0] == '=' && p[1] == '=') || |
| 1031 | (p[0] == '!' && p[1] == '=') || |
| 1032 | (p[0] == '<' && p[1] == '>') || |
| 1033 | (p[0] == '&' && p[1] == '&') || |
| 1034 | (p[0] == '|' && p[1] == '|') || |
| 1035 | (p[0] == '^' && p[1] == '^')) { |
| 1036 | p++; |
| 1037 | } |
| 1038 | p++; |
| 1039 | } |
Nickolay Yurchenko | f3b3ce2 | 2003-09-21 20:38:43 +0000 | [diff] [blame] | 1040 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1041 | /* Handling unterminated string by UNV */ |
| 1042 | /*if (type == -1) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1043 | { |
| 1044 | *tail = t = new_Token(NULL, TOK_STRING, line, p-line+1); |
| 1045 | t->text[p-line] = *line; |
| 1046 | tail = &t->next; |
| 1047 | } |
| 1048 | else */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1049 | if (type != TOK_COMMENT) { |
| 1050 | *tail = t = new_Token(NULL, type, line, p - line); |
| 1051 | tail = &t->next; |
| 1052 | } |
| 1053 | line = p; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1054 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1055 | return list; |
| 1056 | } |
| 1057 | |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 1058 | /* |
| 1059 | * this function allocates a new managed block of memory and |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1060 | * returns a pointer to the block. The managed blocks are |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 1061 | * deleted only all at once by the delete_Blocks function. |
| 1062 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1063 | static void *new_Block(size_t size) |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 1064 | { |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1065 | Blocks *b = &blocks; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1066 | |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1067 | /* first, get to the end of the linked list */ |
| 1068 | while (b->next) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1069 | b = b->next; |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1070 | /* now allocate the requested chunk */ |
| 1071 | b->chunk = nasm_malloc(size); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1072 | |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1073 | /* now allocate a new block for the next request */ |
| 1074 | b->next = nasm_malloc(sizeof(Blocks)); |
| 1075 | /* and initialize the contents of the new block */ |
| 1076 | b->next->next = NULL; |
| 1077 | b->next->chunk = NULL; |
| 1078 | return b->chunk; |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | /* |
| 1082 | * this function deletes all managed blocks of memory |
| 1083 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1084 | static void delete_Blocks(void) |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 1085 | { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1086 | Blocks *a, *b = &blocks; |
H. Peter Anvin | ce61607 | 2002-04-30 21:02:23 +0000 | [diff] [blame] | 1087 | |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1088 | /* |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1089 | * keep in mind that the first block, pointed to by blocks |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1090 | * is a static and not dynamically allocated, so we don't |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1091 | * free it. |
| 1092 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1093 | while (b) { |
| 1094 | if (b->chunk) |
| 1095 | nasm_free(b->chunk); |
| 1096 | a = b; |
| 1097 | b = b->next; |
| 1098 | if (a != &blocks) |
| 1099 | nasm_free(a); |
Nickolay Yurchenko | f7956c4 | 2003-09-26 19:03:40 +0000 | [diff] [blame] | 1100 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1101 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1102 | |
| 1103 | /* |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1104 | * this function creates a new Token and passes a pointer to it |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1105 | * back to the caller. It sets the type and text elements, and |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 1106 | * also the a.mac and next elements to NULL. |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1107 | */ |
H. Peter Anvin | 6ecc159 | 2008-06-01 21:34:49 -0700 | [diff] [blame] | 1108 | static Token *new_Token(Token * next, enum pp_token_type type, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1109 | const char *text, int txtlen) |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1110 | { |
| 1111 | Token *t; |
| 1112 | int i; |
| 1113 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 1114 | if (!freeTokens) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1115 | freeTokens = (Token *) new_Block(TOKEN_BLOCKSIZE * sizeof(Token)); |
| 1116 | for (i = 0; i < TOKEN_BLOCKSIZE - 1; i++) |
| 1117 | freeTokens[i].next = &freeTokens[i + 1]; |
| 1118 | freeTokens[i].next = NULL; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1119 | } |
| 1120 | t = freeTokens; |
| 1121 | freeTokens = t->next; |
| 1122 | t->next = next; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 1123 | t->a.mac = NULL; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1124 | t->type = type; |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 1125 | if (type == TOK_WHITESPACE || !text) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1126 | t->text = NULL; |
| 1127 | } else { |
| 1128 | if (txtlen == 0) |
| 1129 | txtlen = strlen(text); |
H. Peter Anvin | 6ecc159 | 2008-06-01 21:34:49 -0700 | [diff] [blame] | 1130 | t->text = nasm_malloc(txtlen+1); |
| 1131 | memcpy(t->text, text, txtlen); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1132 | t->text[txtlen] = '\0'; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1133 | } |
| 1134 | return t; |
| 1135 | } |
| 1136 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1137 | static Token *delete_Token(Token * t) |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1138 | { |
| 1139 | Token *next = t->next; |
| 1140 | nasm_free(t->text); |
H. Peter Anvin | 788e6c1 | 2002-04-30 21:02:01 +0000 | [diff] [blame] | 1141 | t->next = freeTokens; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1142 | freeTokens = t; |
| 1143 | return next; |
| 1144 | } |
| 1145 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1146 | /* |
| 1147 | * Convert a line of tokens back into text. |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1148 | * If expand_locals is not zero, identifiers of the form "%$*xxx" |
| 1149 | * will be transformed into ..@ctxnum.xxx |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1150 | */ |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 1151 | static char *detoken(Token * tlist, bool expand_locals) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1152 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1153 | Token *t; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 1154 | char *line, *p; |
H. Peter Anvin | b4daadc | 2008-01-21 16:31:57 -0800 | [diff] [blame] | 1155 | const char *q; |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1156 | int len = 0; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1157 | |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1158 | list_for_each(t, tlist) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1159 | if (t->type == TOK_PREPROC_ID && t->text[1] == '!') { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 1160 | char *p = getenv(t->text + 2); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1161 | nasm_free(t->text); |
| 1162 | if (p) |
| 1163 | t->text = nasm_strdup(p); |
| 1164 | else |
| 1165 | t->text = NULL; |
| 1166 | } |
| 1167 | /* Expand local macros here and not during preprocessing */ |
| 1168 | if (expand_locals && |
| 1169 | t->type == TOK_PREPROC_ID && t->text && |
| 1170 | t->text[0] == '%' && t->text[1] == '$') { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1171 | const char *q; |
| 1172 | char *p; |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1173 | Context *ctx = get_ctx(t->text, &q, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1174 | if (ctx) { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 1175 | char buffer[40]; |
Keith Kanios | 93f2e9a | 2007-04-14 00:10:59 +0000 | [diff] [blame] | 1176 | snprintf(buffer, sizeof(buffer), "..@%"PRIu32".", ctx->number); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1177 | p = nasm_strcat(buffer, q); |
| 1178 | nasm_free(t->text); |
| 1179 | t->text = p; |
| 1180 | } |
| 1181 | } |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1182 | if (t->type == TOK_WHITESPACE) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1183 | len++; |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1184 | else if (t->text) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1185 | len += strlen(t->text); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1186 | } |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1187 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1188 | p = line = nasm_malloc(len + 1); |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1189 | |
| 1190 | list_for_each(t, tlist) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1191 | if (t->type == TOK_WHITESPACE) { |
H. Peter Anvin | b4daadc | 2008-01-21 16:31:57 -0800 | [diff] [blame] | 1192 | *p++ = ' '; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1193 | } else if (t->text) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1194 | q = t->text; |
| 1195 | while (*q) |
| 1196 | *p++ = *q++; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1197 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1198 | } |
| 1199 | *p = '\0'; |
Cyrill Gorcunov | f32ed14 | 2010-04-09 15:41:48 +0400 | [diff] [blame] | 1200 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1201 | return line; |
| 1202 | } |
| 1203 | |
| 1204 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1205 | * A scanner, suitable for use by the expression evaluator, which |
| 1206 | * operates on a line of Tokens. Expects a pointer to a pointer to |
| 1207 | * the first token in the line to be passed in as its private_data |
| 1208 | * field. |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1209 | * |
| 1210 | * FIX: This really needs to be unified with stdscan. |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1211 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1212 | static int ppscan(void *private_data, struct tokenval *tokval) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1213 | { |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1214 | Token **tlineptr = private_data; |
| 1215 | Token *tline; |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1216 | char ourcopy[MAX_KEYWORD+1], *p, *r, *s; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1217 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1218 | do { |
| 1219 | tline = *tlineptr; |
| 1220 | *tlineptr = tline ? tline->next : NULL; |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 1221 | } while (tline && (tline->type == TOK_WHITESPACE || |
| 1222 | tline->type == TOK_COMMENT)); |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1223 | |
| 1224 | if (!tline) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1225 | return tokval->t_type = TOKEN_EOS; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1226 | |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1227 | tokval->t_charptr = tline->text; |
| 1228 | |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1229 | if (tline->text[0] == '$' && !tline->text[1]) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1230 | return tokval->t_type = TOKEN_HERE; |
H. Peter Anvin | 7cf897e | 2002-05-30 21:30:33 +0000 | [diff] [blame] | 1231 | if (tline->text[0] == '$' && tline->text[1] == '$' && !tline->text[2]) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1232 | return tokval->t_type = TOKEN_BASE; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1233 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1234 | if (tline->type == TOK_ID) { |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1235 | p = tokval->t_charptr = tline->text; |
| 1236 | if (p[0] == '$') { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1237 | tokval->t_charptr++; |
| 1238 | return tokval->t_type = TOKEN_ID; |
| 1239 | } |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1240 | |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1241 | for (r = p, s = ourcopy; *r; r++) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1242 | if (r >= p+MAX_KEYWORD) |
| 1243 | return tokval->t_type = TOKEN_ID; /* Not a keyword */ |
H. Peter Anvin | ac8f8fc | 2008-06-11 15:49:41 -0700 | [diff] [blame] | 1244 | *s++ = nasm_tolower(*r); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1245 | } |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1246 | *s = '\0'; |
| 1247 | /* right, so we have an identifier sitting in temp storage. now, |
| 1248 | * is it actually a register or instruction name, or what? */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1249 | return nasm_token_hash(ourcopy, tokval); |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1250 | } |
| 1251 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1252 | if (tline->type == TOK_NUMBER) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1253 | bool rn_error; |
| 1254 | tokval->t_integer = readnum(tline->text, &rn_error); |
| 1255 | tokval->t_charptr = tline->text; |
| 1256 | if (rn_error) |
| 1257 | return tokval->t_type = TOKEN_ERRNUM; |
| 1258 | else |
| 1259 | return tokval->t_type = TOKEN_NUM; |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1260 | } |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1261 | |
H. Peter Anvin | c2df282 | 2007-10-24 15:29:28 -0700 | [diff] [blame] | 1262 | if (tline->type == TOK_FLOAT) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1263 | return tokval->t_type = TOKEN_FLOAT; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1264 | } |
| 1265 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1266 | if (tline->type == TOK_STRING) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1267 | char bq, *ep; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1268 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1269 | bq = tline->text[0]; |
H. Peter Anvin | 1162704 | 2008-06-09 20:45:19 -0700 | [diff] [blame] | 1270 | tokval->t_charptr = tline->text; |
| 1271 | tokval->t_inttwo = nasm_unquote(tline->text, &ep); |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 1272 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1273 | if (ep[0] != bq || ep[1] != '\0') |
| 1274 | return tokval->t_type = TOKEN_ERRSTR; |
| 1275 | else |
| 1276 | return tokval->t_type = TOKEN_STR; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1279 | if (tline->type == TOK_OTHER) { |
| 1280 | if (!strcmp(tline->text, "<<")) |
| 1281 | return tokval->t_type = TOKEN_SHL; |
| 1282 | if (!strcmp(tline->text, ">>")) |
| 1283 | return tokval->t_type = TOKEN_SHR; |
| 1284 | if (!strcmp(tline->text, "//")) |
| 1285 | return tokval->t_type = TOKEN_SDIV; |
| 1286 | if (!strcmp(tline->text, "%%")) |
| 1287 | return tokval->t_type = TOKEN_SMOD; |
| 1288 | if (!strcmp(tline->text, "==")) |
| 1289 | return tokval->t_type = TOKEN_EQ; |
| 1290 | if (!strcmp(tline->text, "<>")) |
| 1291 | return tokval->t_type = TOKEN_NE; |
| 1292 | if (!strcmp(tline->text, "!=")) |
| 1293 | return tokval->t_type = TOKEN_NE; |
| 1294 | if (!strcmp(tline->text, "<=")) |
| 1295 | return tokval->t_type = TOKEN_LE; |
| 1296 | if (!strcmp(tline->text, ">=")) |
| 1297 | return tokval->t_type = TOKEN_GE; |
| 1298 | if (!strcmp(tline->text, "&&")) |
| 1299 | return tokval->t_type = TOKEN_DBL_AND; |
| 1300 | if (!strcmp(tline->text, "^^")) |
| 1301 | return tokval->t_type = TOKEN_DBL_XOR; |
| 1302 | if (!strcmp(tline->text, "||")) |
| 1303 | return tokval->t_type = TOKEN_DBL_OR; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1304 | } |
| 1305 | |
| 1306 | /* |
| 1307 | * We have no other options: just return the first character of |
| 1308 | * the token text. |
| 1309 | */ |
| 1310 | return tokval->t_type = tline->text[0]; |
| 1311 | } |
| 1312 | |
| 1313 | /* |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1314 | * Compare a string to the name of an existing macro; this is a |
| 1315 | * simple wrapper which calls either strcmp or nasm_stricmp |
| 1316 | * depending on the value of the `casesense' parameter. |
| 1317 | */ |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1318 | static int mstrcmp(const char *p, const char *q, bool casesense) |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1319 | { |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1320 | return casesense ? strcmp(p, q) : nasm_stricmp(p, q); |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
| 1323 | /* |
H. Peter Anvin | 6ecc159 | 2008-06-01 21:34:49 -0700 | [diff] [blame] | 1324 | * Compare a string to the name of an existing macro; this is a |
| 1325 | * simple wrapper which calls either strcmp or nasm_stricmp |
| 1326 | * depending on the value of the `casesense' parameter. |
| 1327 | */ |
| 1328 | static int mmemcmp(const char *p, const char *q, size_t l, bool casesense) |
| 1329 | { |
| 1330 | return casesense ? memcmp(p, q, l) : nasm_memicmp(p, q, l); |
| 1331 | } |
| 1332 | |
| 1333 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1334 | * Return the Context structure associated with a %$ token. Return |
| 1335 | * NULL, having _already_ reported an error condition, if the |
| 1336 | * context stack isn't deep enough for the supplied number of $ |
| 1337 | * signs. |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1338 | * If all_contexts == true, contexts that enclose current are |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1339 | * also scanned for such smacro, until it is found; if not - |
| 1340 | * only the context that directly results from the number of $'s |
| 1341 | * in variable's name. |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1342 | * |
| 1343 | * If "namep" is non-NULL, set it to the pointer to the macro name |
| 1344 | * tail, i.e. the part beyond %$... |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1345 | */ |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1346 | static Context *get_ctx(const char *name, const char **namep, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1347 | bool all_contexts) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1348 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1349 | Context *ctx; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1350 | SMacro *m; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1351 | int i; |
| 1352 | |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1353 | if (namep) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1354 | *namep = name; |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1355 | |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1356 | if (!name || name[0] != '%' || name[1] != '$') |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1357 | return NULL; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1358 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1359 | if (!cstk) { |
| 1360 | error(ERR_NONFATAL, "`%s': context stack is empty", name); |
| 1361 | return NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1364 | name += 2; |
| 1365 | ctx = cstk; |
| 1366 | i = 0; |
| 1367 | while (ctx && *name == '$') { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1368 | name++; |
| 1369 | i++; |
| 1370 | ctx = ctx->next; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1371 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1372 | if (!ctx) { |
| 1373 | error(ERR_NONFATAL, "`%s': context stack is only" |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1374 | " %d level%s deep", name, i, (i == 1 ? "" : "s")); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1375 | return NULL; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1376 | } |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1377 | |
| 1378 | if (namep) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1379 | *namep = name; |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1380 | |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1381 | if (!all_contexts) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1382 | return ctx; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1383 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1384 | do { |
| 1385 | /* Search for this smacro in found context */ |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 1386 | m = hash_findix(&ctx->localmac, name); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1387 | while (m) { |
| 1388 | if (!mstrcmp(m->name, name, m->casesense)) |
| 1389 | return ctx; |
| 1390 | m = m->next; |
| 1391 | } |
| 1392 | ctx = ctx->next; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1393 | } |
| 1394 | while (ctx); |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1395 | return NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1396 | } |
| 1397 | |
| 1398 | /* |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1399 | * Check to see if a file is already in a string list |
| 1400 | */ |
| 1401 | static bool in_list(const StrList *list, const char *str) |
| 1402 | { |
| 1403 | while (list) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1404 | if (!strcmp(list->str, str)) |
| 1405 | return true; |
| 1406 | list = list->next; |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1407 | } |
| 1408 | return false; |
| 1409 | } |
| 1410 | |
| 1411 | /* |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 1412 | * Open an include file. This routine must always return a valid |
| 1413 | * file pointer if it returns - it's responsible for throwing an |
| 1414 | * ERR_FATAL and bombing out completely if not. It should also try |
| 1415 | * the include path one by one until it finds the file or reaches |
| 1416 | * the end of the path. |
| 1417 | */ |
H. Peter Anvin | 2b1c3b9 | 2008-06-06 10:38:46 -0700 | [diff] [blame] | 1418 | static FILE *inc_fopen(const char *file, StrList **dhead, StrList ***dtail, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1419 | bool missing_ok) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1420 | { |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 1421 | FILE *fp; |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1422 | char *prefix = ""; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 1423 | IncPath *ip = ipath; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 1424 | int len = strlen(file); |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1425 | size_t prefix_len = 0; |
| 1426 | StrList *sl; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 1427 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1428 | while (1) { |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1429 | sl = nasm_malloc(prefix_len+len+1+sizeof sl->next); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1430 | memcpy(sl->str, prefix, prefix_len); |
| 1431 | memcpy(sl->str+prefix_len, file, len+1); |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1432 | fp = fopen(sl->str, "r"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1433 | if (fp && dhead && !in_list(*dhead, sl->str)) { |
| 1434 | sl->next = NULL; |
| 1435 | **dtail = sl; |
| 1436 | *dtail = &sl->next; |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 1437 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1438 | nasm_free(sl); |
| 1439 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1440 | if (fp) |
| 1441 | return fp; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1442 | if (!ip) { |
| 1443 | if (!missing_ok) |
| 1444 | break; |
| 1445 | prefix = NULL; |
| 1446 | } else { |
| 1447 | prefix = ip->path; |
| 1448 | ip = ip->next; |
| 1449 | } |
| 1450 | if (prefix) { |
| 1451 | prefix_len = strlen(prefix); |
| 1452 | } else { |
| 1453 | /* -MG given and file not found */ |
| 1454 | if (dhead && !in_list(*dhead, file)) { |
| 1455 | sl = nasm_malloc(len+1+sizeof sl->next); |
| 1456 | sl->next = NULL; |
| 1457 | strcpy(sl->str, file); |
| 1458 | **dtail = sl; |
| 1459 | *dtail = &sl->next; |
| 1460 | } |
| 1461 | return NULL; |
| 1462 | } |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1463 | } |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 1464 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1465 | error(ERR_FATAL, "unable to open include file `%s'", file); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1466 | return NULL; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1470 | * Determine if we should warn on defining a single-line macro of |
H. Peter Anvin | ef7468f | 2002-04-30 20:57:59 +0000 | [diff] [blame] | 1471 | * name `name', with `nparam' parameters. If nparam is 0 or -1, will |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1472 | * return true if _any_ single-line macro of that name is defined. |
| 1473 | * Otherwise, will return true if a single-line macro with either |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1474 | * `nparam' or no parameters is defined. |
| 1475 | * |
| 1476 | * If a macro with precisely the right number of parameters is |
H. Peter Anvin | ef7468f | 2002-04-30 20:57:59 +0000 | [diff] [blame] | 1477 | * defined, or nparam is -1, the address of the definition structure |
| 1478 | * will be returned in `defn'; otherwise NULL will be returned. If `defn' |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1479 | * is NULL, no action will be taken regarding its contents, and no |
| 1480 | * error will occur. |
| 1481 | * |
| 1482 | * Note that this is also called with nparam zero to resolve |
| 1483 | * `ifdef'. |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1484 | * |
| 1485 | * If you already know which context macro belongs to, you can pass |
| 1486 | * the context pointer as first parameter; if you won't but name begins |
| 1487 | * with %$ the context will be automatically computed. If all_contexts |
| 1488 | * is true, macro will be searched in outer contexts as well. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1489 | */ |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 1490 | static bool |
H. Peter Anvin | b2a5fda | 2008-06-19 21:42:42 -0700 | [diff] [blame] | 1491 | smacro_defined(Context * ctx, const char *name, int nparam, SMacro ** defn, |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 1492 | bool nocase) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1493 | { |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 1494 | struct hash_table *smtbl; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1495 | SMacro *m; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1496 | |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 1497 | if (ctx) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1498 | smtbl = &ctx->localmac; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 1499 | } else if (name[0] == '%' && name[1] == '$') { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1500 | if (cstk) |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1501 | ctx = get_ctx(name, &name, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1502 | if (!ctx) |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1503 | return false; /* got to return _something_ */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1504 | smtbl = &ctx->localmac; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 1505 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1506 | smtbl = &smacros; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 1507 | } |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 1508 | m = (SMacro *) hash_findix(smtbl, name); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1509 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1510 | while (m) { |
| 1511 | if (!mstrcmp(m->name, name, m->casesense && nocase) && |
Charles Crayne | 192d5b5 | 2007-10-18 19:02:42 -0700 | [diff] [blame] | 1512 | (nparam <= 0 || m->nparam == 0 || nparam == (int) m->nparam)) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1513 | if (defn) { |
Charles Crayne | 192d5b5 | 2007-10-18 19:02:42 -0700 | [diff] [blame] | 1514 | if (nparam == (int) m->nparam || nparam == -1) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1515 | *defn = m; |
| 1516 | else |
| 1517 | *defn = NULL; |
| 1518 | } |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1519 | return true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1520 | } |
| 1521 | m = m->next; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1522 | } |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 1523 | |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1524 | return false; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1525 | } |
| 1526 | |
| 1527 | /* |
| 1528 | * Count and mark off the parameters in a multi-line macro call. |
| 1529 | * This is called both from within the multi-line macro expansion |
| 1530 | * code, and also to mark off the default parameters when provided |
| 1531 | * in a %macro definition line. |
| 1532 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1533 | static void count_mmac_params(Token * t, int *nparam, Token *** params) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1534 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1535 | int paramsize, brace; |
| 1536 | |
| 1537 | *nparam = paramsize = 0; |
| 1538 | *params = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1539 | while (t) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1540 | /* +1: we need space for the final NULL */ |
H. Peter Anvin | 91fb6f1 | 2008-09-01 10:56:33 -0700 | [diff] [blame] | 1541 | if (*nparam+1 >= paramsize) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1542 | paramsize += PARAM_DELTA; |
| 1543 | *params = nasm_realloc(*params, sizeof(**params) * paramsize); |
| 1544 | } |
| 1545 | skip_white_(t); |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1546 | brace = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1547 | if (tok_is_(t, "{")) |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1548 | brace = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1549 | (*params)[(*nparam)++] = t; |
| 1550 | while (tok_isnt_(t, brace ? "}" : ",")) |
| 1551 | t = t->next; |
| 1552 | if (t) { /* got a comma/brace */ |
| 1553 | t = t->next; |
| 1554 | if (brace) { |
| 1555 | /* |
| 1556 | * Now we've found the closing brace, look further |
| 1557 | * for the comma. |
| 1558 | */ |
| 1559 | skip_white_(t); |
| 1560 | if (tok_isnt_(t, ",")) { |
| 1561 | error(ERR_NONFATAL, |
| 1562 | "braces do not enclose all of macro parameter"); |
| 1563 | while (tok_isnt_(t, ",")) |
| 1564 | t = t->next; |
| 1565 | } |
| 1566 | if (t) |
| 1567 | t = t->next; /* eat the comma */ |
| 1568 | } |
| 1569 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 1570 | } |
| 1571 | } |
| 1572 | |
| 1573 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1574 | * Determine whether one of the various `if' conditions is true or |
| 1575 | * not. |
| 1576 | * |
| 1577 | * We must free the tline we get passed. |
| 1578 | */ |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 1579 | static bool if_condition(Token * tline, enum preproc_token ct) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 1580 | { |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1581 | enum pp_conditional i = PP_COND(ct); |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 1582 | bool j; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1583 | Token *t, *tt, **tptr, *origline; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1584 | struct tokenval tokval; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1585 | expr *evalresult; |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1586 | enum pp_token_type needtype; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1587 | |
| 1588 | origline = tline; |
| 1589 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1590 | switch (i) { |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1591 | case PPC_IFCTX: |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1592 | j = false; /* have we matched yet? */ |
Victor van den Elzen | 0e857f1 | 2008-07-23 13:21:29 +0200 | [diff] [blame] | 1593 | while (true) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1594 | skip_white_(tline); |
Victor van den Elzen | 0e857f1 | 2008-07-23 13:21:29 +0200 | [diff] [blame] | 1595 | if (!tline) |
| 1596 | break; |
| 1597 | if (tline->type != TOK_ID) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1598 | error(ERR_NONFATAL, |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1599 | "`%s' expects context identifiers", pp_directives[ct]); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1600 | free_tlist(origline); |
| 1601 | return -1; |
| 1602 | } |
Victor van den Elzen | 0e857f1 | 2008-07-23 13:21:29 +0200 | [diff] [blame] | 1603 | if (cstk && cstk->name && !nasm_stricmp(tline->text, cstk->name)) |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1604 | j = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1605 | tline = tline->next; |
| 1606 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1607 | break; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1608 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1609 | case PPC_IFDEF: |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1610 | j = false; /* have we matched yet? */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1611 | while (tline) { |
| 1612 | skip_white_(tline); |
| 1613 | if (!tline || (tline->type != TOK_ID && |
| 1614 | (tline->type != TOK_PREPROC_ID || |
| 1615 | tline->text[1] != '$'))) { |
| 1616 | error(ERR_NONFATAL, |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1617 | "`%s' expects macro identifiers", pp_directives[ct]); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1618 | goto fail; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1619 | } |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 1620 | if (smacro_defined(NULL, tline->text, 0, NULL, true)) |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1621 | j = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1622 | tline = tline->next; |
| 1623 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1624 | break; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 1625 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1626 | case PPC_IFIDN: |
| 1627 | case PPC_IFIDNI: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1628 | tline = expand_smacro(tline); |
| 1629 | t = tt = tline; |
| 1630 | while (tok_isnt_(tt, ",")) |
| 1631 | tt = tt->next; |
| 1632 | if (!tt) { |
| 1633 | error(ERR_NONFATAL, |
| 1634 | "`%s' expects two comma-separated arguments", |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1635 | pp_directives[ct]); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1636 | goto fail; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1637 | } |
| 1638 | tt = tt->next; |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1639 | j = true; /* assume equality unless proved not */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1640 | while ((t->type != TOK_OTHER || strcmp(t->text, ",")) && tt) { |
| 1641 | if (tt->type == TOK_OTHER && !strcmp(tt->text, ",")) { |
| 1642 | error(ERR_NONFATAL, "`%s': more than one comma on line", |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1643 | pp_directives[ct]); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1644 | goto fail; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1645 | } |
| 1646 | if (t->type == TOK_WHITESPACE) { |
| 1647 | t = t->next; |
| 1648 | continue; |
| 1649 | } |
| 1650 | if (tt->type == TOK_WHITESPACE) { |
| 1651 | tt = tt->next; |
| 1652 | continue; |
| 1653 | } |
| 1654 | if (tt->type != t->type) { |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1655 | j = false; /* found mismatching tokens */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1656 | break; |
| 1657 | } |
H. Peter Anvin | 6ecc159 | 2008-06-01 21:34:49 -0700 | [diff] [blame] | 1658 | /* When comparing strings, need to unquote them first */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1659 | if (t->type == TOK_STRING) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1660 | size_t l1 = nasm_unquote(t->text, NULL); |
| 1661 | size_t l2 = nasm_unquote(tt->text, NULL); |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 1662 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1663 | if (l1 != l2) { |
| 1664 | j = false; |
| 1665 | break; |
| 1666 | } |
| 1667 | if (mmemcmp(t->text, tt->text, l1, i == PPC_IFIDN)) { |
| 1668 | j = false; |
| 1669 | break; |
| 1670 | } |
H. Peter Anvin | 6ecc159 | 2008-06-01 21:34:49 -0700 | [diff] [blame] | 1671 | } else if (mstrcmp(tt->text, t->text, i == PPC_IFIDN) != 0) { |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1672 | j = false; /* found mismatching tokens */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1673 | break; |
| 1674 | } |
Nickolay Yurchenko | f3b3ce2 | 2003-09-21 20:38:43 +0000 | [diff] [blame] | 1675 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1676 | t = t->next; |
| 1677 | tt = tt->next; |
| 1678 | } |
| 1679 | if ((t->type != TOK_OTHER || strcmp(t->text, ",")) || tt) |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 1680 | j = false; /* trailing gunk on one end or other */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1681 | break; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1682 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1683 | case PPC_IFMACRO: |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 1684 | { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1685 | bool found = false; |
| 1686 | MMacro searching, *mmac; |
H. Peter Anvin | 6574726 | 2002-05-07 00:10:05 +0000 | [diff] [blame] | 1687 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1688 | skip_white_(tline); |
| 1689 | tline = expand_id(tline); |
| 1690 | if (!tok_type_(tline, TOK_ID)) { |
| 1691 | error(ERR_NONFATAL, |
| 1692 | "`%s' expects a macro name", pp_directives[ct]); |
| 1693 | goto fail; |
| 1694 | } |
| 1695 | searching.name = nasm_strdup(tline->text); |
| 1696 | searching.casesense = true; |
| 1697 | searching.plus = false; |
| 1698 | searching.nolist = false; |
| 1699 | searching.in_progress = 0; |
| 1700 | searching.max_depth = 0; |
| 1701 | searching.rep_nest = NULL; |
| 1702 | searching.nparam_min = 0; |
| 1703 | searching.nparam_max = INT_MAX; |
| 1704 | tline = expand_smacro(tline->next); |
| 1705 | skip_white_(tline); |
| 1706 | if (!tline) { |
| 1707 | } else if (!tok_type_(tline, TOK_NUMBER)) { |
| 1708 | error(ERR_NONFATAL, |
| 1709 | "`%s' expects a parameter count or nothing", |
| 1710 | pp_directives[ct]); |
| 1711 | } else { |
| 1712 | searching.nparam_min = searching.nparam_max = |
| 1713 | readnum(tline->text, &j); |
| 1714 | if (j) |
| 1715 | error(ERR_NONFATAL, |
| 1716 | "unable to parse parameter count `%s'", |
| 1717 | tline->text); |
| 1718 | } |
| 1719 | if (tline && tok_is_(tline->next, "-")) { |
| 1720 | tline = tline->next->next; |
| 1721 | if (tok_is_(tline, "*")) |
| 1722 | searching.nparam_max = INT_MAX; |
| 1723 | else if (!tok_type_(tline, TOK_NUMBER)) |
| 1724 | error(ERR_NONFATAL, |
| 1725 | "`%s' expects a parameter count after `-'", |
| 1726 | pp_directives[ct]); |
| 1727 | else { |
| 1728 | searching.nparam_max = readnum(tline->text, &j); |
| 1729 | if (j) |
| 1730 | error(ERR_NONFATAL, |
| 1731 | "unable to parse parameter count `%s'", |
| 1732 | tline->text); |
| 1733 | if (searching.nparam_min > searching.nparam_max) |
| 1734 | error(ERR_NONFATAL, |
| 1735 | "minimum parameter count exceeds maximum"); |
| 1736 | } |
| 1737 | } |
| 1738 | if (tline && tok_is_(tline->next, "+")) { |
| 1739 | tline = tline->next; |
| 1740 | searching.plus = true; |
| 1741 | } |
| 1742 | mmac = (MMacro *) hash_findix(&mmacros, searching.name); |
| 1743 | while (mmac) { |
| 1744 | if (!strcmp(mmac->name, searching.name) && |
| 1745 | (mmac->nparam_min <= searching.nparam_max |
| 1746 | || searching.plus) |
| 1747 | && (searching.nparam_min <= mmac->nparam_max |
| 1748 | || mmac->plus)) { |
| 1749 | found = true; |
| 1750 | break; |
| 1751 | } |
| 1752 | mmac = mmac->next; |
| 1753 | } |
| 1754 | if (tline && tline->next) |
| 1755 | error(ERR_WARNING|ERR_PASS1, |
| 1756 | "trailing garbage after %%ifmacro ignored"); |
| 1757 | nasm_free(searching.name); |
| 1758 | j = found; |
| 1759 | break; |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 1760 | } |
H. Peter Anvin | 6574726 | 2002-05-07 00:10:05 +0000 | [diff] [blame] | 1761 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1762 | case PPC_IFID: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1763 | needtype = TOK_ID; |
| 1764 | goto iftype; |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1765 | case PPC_IFNUM: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1766 | needtype = TOK_NUMBER; |
| 1767 | goto iftype; |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1768 | case PPC_IFSTR: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1769 | needtype = TOK_STRING; |
| 1770 | goto iftype; |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1771 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1772 | iftype: |
| 1773 | t = tline = expand_smacro(tline); |
H. Peter Anvin | d85d250 | 2008-05-04 17:53:31 -0700 | [diff] [blame] | 1774 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1775 | while (tok_type_(t, TOK_WHITESPACE) || |
| 1776 | (needtype == TOK_NUMBER && |
| 1777 | tok_type_(t, TOK_OTHER) && |
| 1778 | (t->text[0] == '-' || t->text[0] == '+') && |
| 1779 | !t->text[1])) |
| 1780 | t = t->next; |
H. Peter Anvin | d85d250 | 2008-05-04 17:53:31 -0700 | [diff] [blame] | 1781 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1782 | j = tok_type_(t, needtype); |
| 1783 | break; |
H. Peter Anvin | cbf768d | 2008-02-16 16:41:25 -0800 | [diff] [blame] | 1784 | |
| 1785 | case PPC_IFTOKEN: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1786 | t = tline = expand_smacro(tline); |
| 1787 | while (tok_type_(t, TOK_WHITESPACE)) |
| 1788 | t = t->next; |
H. Peter Anvin | cbf768d | 2008-02-16 16:41:25 -0800 | [diff] [blame] | 1789 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1790 | j = false; |
| 1791 | if (t) { |
| 1792 | t = t->next; /* Skip the actual token */ |
| 1793 | while (tok_type_(t, TOK_WHITESPACE)) |
| 1794 | t = t->next; |
| 1795 | j = !t; /* Should be nothing left */ |
| 1796 | } |
| 1797 | break; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1798 | |
H. Peter Anvin | 134b946 | 2008-02-16 17:01:40 -0800 | [diff] [blame] | 1799 | case PPC_IFEMPTY: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1800 | t = tline = expand_smacro(tline); |
| 1801 | while (tok_type_(t, TOK_WHITESPACE)) |
| 1802 | t = t->next; |
H. Peter Anvin | 134b946 | 2008-02-16 17:01:40 -0800 | [diff] [blame] | 1803 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1804 | j = !t; /* Should be empty */ |
| 1805 | break; |
H. Peter Anvin | 134b946 | 2008-02-16 17:01:40 -0800 | [diff] [blame] | 1806 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1807 | case PPC_IF: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1808 | t = tline = expand_smacro(tline); |
| 1809 | tptr = &t; |
| 1810 | tokval.t_type = TOKEN_INVALID; |
| 1811 | evalresult = evaluate(ppscan, tptr, &tokval, |
| 1812 | NULL, pass | CRITICAL, error, NULL); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1813 | if (!evalresult) |
| 1814 | return -1; |
| 1815 | if (tokval.t_type) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 1816 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1817 | "trailing garbage after expression ignored"); |
| 1818 | if (!is_simple(evalresult)) { |
| 1819 | error(ERR_NONFATAL, |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1820 | "non-constant value given to `%s'", pp_directives[ct]); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1821 | goto fail; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1822 | } |
Chuck Crayne | 60ae75d | 2007-05-02 01:59:16 +0000 | [diff] [blame] | 1823 | j = reloc_value(evalresult) != 0; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1824 | break; |
H. Peter Anvin | 95e2882 | 2007-09-12 04:20:08 +0000 | [diff] [blame] | 1825 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 1826 | default: |
| 1827 | error(ERR_FATAL, |
| 1828 | "preprocessor directive `%s' not yet implemented", |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1829 | pp_directives[ct]); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1830 | goto fail; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1831 | } |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1832 | |
| 1833 | free_tlist(origline); |
| 1834 | return j ^ PP_NEGATIVE(ct); |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1835 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 1836 | fail: |
| 1837 | free_tlist(origline); |
| 1838 | return -1; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | /* |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1842 | * Common code for defining an smacro |
| 1843 | */ |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 1844 | static bool define_smacro(Context *ctx, const char *mname, bool casesense, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1845 | int nparam, Token *expansion) |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1846 | { |
| 1847 | SMacro *smac, **smhead; |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 1848 | struct hash_table *smtbl; |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1849 | |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1850 | if (smacro_defined(ctx, mname, nparam, &smac, casesense)) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1851 | if (!smac) { |
| 1852 | error(ERR_WARNING|ERR_PASS1, |
| 1853 | "single-line macro `%s' defined both with and" |
| 1854 | " without parameters", mname); |
| 1855 | /* |
| 1856 | * Some instances of the old code considered this a failure, |
| 1857 | * some others didn't. What is the right thing to do here? |
| 1858 | */ |
| 1859 | free_tlist(expansion); |
| 1860 | return false; /* Failure */ |
| 1861 | } else { |
| 1862 | /* |
| 1863 | * We're redefining, so we have to take over an |
| 1864 | * existing SMacro structure. This means freeing |
| 1865 | * what was already in it. |
| 1866 | */ |
| 1867 | nasm_free(smac->name); |
| 1868 | free_tlist(smac->expansion); |
| 1869 | } |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1870 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1871 | smtbl = ctx ? &ctx->localmac : &smacros; |
| 1872 | smhead = (SMacro **) hash_findi_add(smtbl, mname); |
| 1873 | smac = nasm_malloc(sizeof(SMacro)); |
| 1874 | smac->next = *smhead; |
| 1875 | *smhead = smac; |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1876 | } |
| 1877 | smac->name = nasm_strdup(mname); |
| 1878 | smac->casesense = casesense; |
| 1879 | smac->nparam = nparam; |
| 1880 | smac->expansion = expansion; |
| 1881 | smac->in_progress = false; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1882 | return true; /* Success */ |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1883 | } |
| 1884 | |
| 1885 | /* |
| 1886 | * Undefine an smacro |
| 1887 | */ |
| 1888 | static void undef_smacro(Context *ctx, const char *mname) |
| 1889 | { |
| 1890 | SMacro **smhead, *s, **sp; |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 1891 | struct hash_table *smtbl; |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1892 | |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 1893 | smtbl = ctx ? &ctx->localmac : &smacros; |
| 1894 | smhead = (SMacro **)hash_findi(smtbl, mname, NULL); |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 1895 | |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1896 | if (smhead) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1897 | /* |
| 1898 | * We now have a macro name... go hunt for it. |
| 1899 | */ |
| 1900 | sp = smhead; |
| 1901 | while ((s = *sp) != NULL) { |
| 1902 | if (!mstrcmp(s->name, mname, s->casesense)) { |
| 1903 | *sp = s->next; |
| 1904 | nasm_free(s->name); |
| 1905 | free_tlist(s->expansion); |
| 1906 | nasm_free(s); |
| 1907 | } else { |
| 1908 | sp = &s->next; |
| 1909 | } |
| 1910 | } |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 1911 | } |
| 1912 | } |
| 1913 | |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 1914 | /* |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1915 | * Parse a mmacro specification. |
| 1916 | */ |
| 1917 | static bool parse_mmacro_spec(Token *tline, MMacro *def, const char *directive) |
| 1918 | { |
| 1919 | bool err; |
| 1920 | |
| 1921 | tline = tline->next; |
| 1922 | skip_white_(tline); |
| 1923 | tline = expand_id(tline); |
| 1924 | if (!tok_type_(tline, TOK_ID)) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1925 | error(ERR_NONFATAL, "`%s' expects a macro name", directive); |
| 1926 | return false; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1927 | } |
Victor van den Elzen | b916ede | 2008-07-23 15:14:22 +0200 | [diff] [blame] | 1928 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 1929 | def->prev = NULL; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1930 | def->name = nasm_strdup(tline->text); |
| 1931 | def->plus = false; |
| 1932 | def->nolist = false; |
| 1933 | def->in_progress = 0; |
| 1934 | def->rep_nest = NULL; |
Victor van den Elzen | b916ede | 2008-07-23 15:14:22 +0200 | [diff] [blame] | 1935 | def->nparam_min = 0; |
| 1936 | def->nparam_max = 0; |
| 1937 | |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1938 | tline = expand_smacro(tline->next); |
| 1939 | skip_white_(tline); |
| 1940 | if (!tok_type_(tline, TOK_NUMBER)) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1941 | error(ERR_NONFATAL, "`%s' expects a parameter count", directive); |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1942 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1943 | def->nparam_min = def->nparam_max = |
| 1944 | readnum(tline->text, &err); |
| 1945 | if (err) |
| 1946 | error(ERR_NONFATAL, |
| 1947 | "unable to parse parameter count `%s'", tline->text); |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1948 | } |
| 1949 | if (tline && tok_is_(tline->next, "-")) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1950 | tline = tline->next->next; |
| 1951 | if (tok_is_(tline, "*")) { |
| 1952 | def->nparam_max = INT_MAX; |
| 1953 | } else if (!tok_type_(tline, TOK_NUMBER)) { |
| 1954 | error(ERR_NONFATAL, |
| 1955 | "`%s' expects a parameter count after `-'", directive); |
| 1956 | } else { |
| 1957 | def->nparam_max = readnum(tline->text, &err); |
| 1958 | if (err) { |
| 1959 | error(ERR_NONFATAL, "unable to parse parameter count `%s'", |
| 1960 | tline->text); |
| 1961 | } |
| 1962 | if (def->nparam_min > def->nparam_max) { |
| 1963 | error(ERR_NONFATAL, "minimum parameter count exceeds maximum"); |
| 1964 | } |
| 1965 | } |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1966 | } |
| 1967 | if (tline && tok_is_(tline->next, "+")) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1968 | tline = tline->next; |
| 1969 | def->plus = true; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1970 | } |
| 1971 | if (tline && tok_type_(tline->next, TOK_ID) && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1972 | !nasm_stricmp(tline->next->text, ".nolist")) { |
| 1973 | tline = tline->next; |
| 1974 | def->nolist = true; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1975 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1976 | |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1977 | /* |
| 1978 | * Handle default parameters. |
| 1979 | */ |
| 1980 | if (tline && tline->next) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1981 | def->dlist = tline->next; |
| 1982 | tline->next = NULL; |
| 1983 | count_mmac_params(def->dlist, &def->ndefs, &def->defaults); |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1984 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1985 | def->dlist = NULL; |
| 1986 | def->defaults = NULL; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1987 | } |
| 1988 | def->expansion = NULL; |
| 1989 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 1990 | if (def->defaults && def->ndefs > def->nparam_max - def->nparam_min && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 1991 | !def->plus) |
| 1992 | error(ERR_WARNING|ERR_PASS1|ERR_WARN_MDP, |
| 1993 | "too many default macro parameters"); |
Victor van den Elzen | b916ede | 2008-07-23 15:14:22 +0200 | [diff] [blame] | 1994 | |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 1995 | return true; |
| 1996 | } |
| 1997 | |
| 1998 | |
| 1999 | /* |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2000 | * Decode a size directive |
| 2001 | */ |
| 2002 | static int parse_size(const char *str) { |
| 2003 | static const char *size_names[] = |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2004 | { "byte", "dword", "oword", "qword", "tword", "word", "yword" }; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2005 | static const int sizes[] = |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2006 | { 0, 1, 4, 16, 8, 10, 2, 32 }; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2007 | |
Cyrill Gorcunov | a731924 | 2010-06-03 22:04:36 +0400 | [diff] [blame] | 2008 | return sizes[bsii(str, size_names, ARRAY_SIZE(size_names))+1]; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2009 | } |
| 2010 | |
H. Peter Anvin | f9c9a67 | 2009-07-14 15:14:05 -0400 | [diff] [blame] | 2011 | /* |
| 2012 | * nasm_unquote with error if the string contains NUL characters. |
| 2013 | * If the string contains NUL characters, issue an error and return |
| 2014 | * the C len, i.e. truncate at the NUL. |
| 2015 | */ |
| 2016 | static size_t nasm_unquote_cstr(char *qstr, enum preproc_token directive) |
| 2017 | { |
| 2018 | size_t len = nasm_unquote(qstr, NULL); |
| 2019 | size_t clen = strlen(qstr); |
| 2020 | |
| 2021 | if (len != clen) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2022 | error(ERR_NONFATAL, "NUL character in `%s' directive", |
| 2023 | pp_directives[directive]); |
H. Peter Anvin | f9c9a67 | 2009-07-14 15:14:05 -0400 | [diff] [blame] | 2024 | |
| 2025 | return clen; |
| 2026 | } |
| 2027 | |
Ed Beroset | 3ab3f41 | 2002-06-11 03:31:49 +0000 | [diff] [blame] | 2028 | /** |
| 2029 | * find and process preprocessor directive in passed line |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2030 | * Find out if a line contains a preprocessor directive, and deal |
| 2031 | * with it if so. |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 2032 | * |
Ed Beroset | 3ab3f41 | 2002-06-11 03:31:49 +0000 | [diff] [blame] | 2033 | * If a directive _is_ found, it is the responsibility of this routine |
| 2034 | * (and not the caller) to free_tlist() the line. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2035 | * |
Ed Beroset | 3ab3f41 | 2002-06-11 03:31:49 +0000 | [diff] [blame] | 2036 | * @param tline a pointer to the current tokeninzed line linked list |
| 2037 | * @return DIRECTIVE_FOUND or NO_DIRECTIVE_FOUND |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 2038 | * |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2039 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2040 | static int do_directive(Token * tline) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 2041 | { |
H. Peter Anvin | 4169a47 | 2007-09-12 01:29:43 +0000 | [diff] [blame] | 2042 | enum preproc_token i; |
| 2043 | int j; |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 2044 | bool err; |
| 2045 | int nparam; |
| 2046 | bool nolist; |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 2047 | bool casesense; |
H. Peter Anvin | 8cfdb9d | 2007-09-14 18:36:01 -0700 | [diff] [blame] | 2048 | int k, m; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2049 | int offset; |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 2050 | char *p, *pp; |
| 2051 | const char *mname; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2052 | Include *inc; |
| 2053 | Context *ctx; |
| 2054 | Cond *cond; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 2055 | MMacro *mmac, **mmhead; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 2056 | Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline; |
| 2057 | Line *l; |
| 2058 | struct tokenval tokval; |
| 2059 | expr *evalresult; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2060 | MMacro *tmp_defining; /* Used when manipulating rep_nest */ |
H. Peter Anvin | f8ba53e | 2007-10-11 10:11:57 -0700 | [diff] [blame] | 2061 | int64_t count; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 2062 | size_t len; |
H. Peter Anvin | 8e3f75e | 2008-09-24 00:21:58 -0700 | [diff] [blame] | 2063 | int severity; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 2064 | |
| 2065 | origline = tline; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2066 | |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 2067 | skip_white_(tline); |
H. Peter Anvin | f2936d7 | 2008-06-04 15:11:23 -0700 | [diff] [blame] | 2068 | if (!tline || !tok_type_(tline, TOK_PREPROC_ID) || |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2069 | (tline->text[1] == '%' || tline->text[1] == '$' |
| 2070 | || tline->text[1] == '!')) |
| 2071 | return NO_DIRECTIVE_FOUND; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2072 | |
H. Peter Anvin | 4169a47 | 2007-09-12 01:29:43 +0000 | [diff] [blame] | 2073 | i = pp_token_hash(tline->text); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2074 | |
| 2075 | /* |
Cyrill Gorcunov | f09116f | 2010-02-28 11:52:53 +0300 | [diff] [blame] | 2076 | * FIXME: We zap execution of PP_RMACRO, PP_IRMACRO, PP_EXITMACRO |
| 2077 | * since they are known to be buggy at moment, we need to fix them |
| 2078 | * in future release (2.09-2.10) |
| 2079 | */ |
| 2080 | if (i == PP_RMACRO || i == PP_RMACRO || i == PP_EXITMACRO) { |
| 2081 | error(ERR_NONFATAL, "unknown preprocessor directive `%s'", |
| 2082 | tline->text); |
| 2083 | return NO_DIRECTIVE_FOUND; |
| 2084 | } |
| 2085 | |
| 2086 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2087 | * If we're in a non-emitting branch of a condition construct, |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 2088 | * or walking to the end of an already terminated %rep block, |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2089 | * we should ignore all directives except for condition |
| 2090 | * directives. |
| 2091 | */ |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 2092 | if (((istk->conds && !emitting(istk->conds->state)) || |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2093 | (istk->mstk && !istk->mstk->in_progress)) && !is_condition(i)) { |
| 2094 | return NO_DIRECTIVE_FOUND; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 2095 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2096 | |
| 2097 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 2098 | * If we're defining a macro or reading a %rep block, we should |
Victor van den Elzen | 8f1120f | 2008-07-16 13:41:37 +0200 | [diff] [blame] | 2099 | * ignore all directives except for %macro/%imacro (which nest), |
| 2100 | * %endm/%endmacro, and (only if we're in a %rep block) %endrep. |
| 2101 | * If we're in a %rep block, another %rep nests, so should be let through. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2102 | */ |
| 2103 | if (defining && i != PP_MACRO && i != PP_IMACRO && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2104 | i != PP_RMACRO && i != PP_IRMACRO && |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2105 | i != PP_ENDMACRO && i != PP_ENDM && |
| 2106 | (defining->name || (i != PP_ENDREP && i != PP_REP))) { |
| 2107 | return NO_DIRECTIVE_FOUND; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 2108 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2109 | |
Charles Crayne | d4200be | 2008-07-12 16:42:33 -0700 | [diff] [blame] | 2110 | if (defining) { |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2111 | if (i == PP_MACRO || i == PP_IMACRO || |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2112 | i == PP_RMACRO || i == PP_IRMACRO) { |
Charles Crayne | d4200be | 2008-07-12 16:42:33 -0700 | [diff] [blame] | 2113 | nested_mac_count++; |
| 2114 | return NO_DIRECTIVE_FOUND; |
| 2115 | } else if (nested_mac_count > 0) { |
| 2116 | if (i == PP_ENDMACRO) { |
| 2117 | nested_mac_count--; |
| 2118 | return NO_DIRECTIVE_FOUND; |
| 2119 | } |
| 2120 | } |
| 2121 | if (!defining->name) { |
| 2122 | if (i == PP_REP) { |
| 2123 | nested_rep_count++; |
| 2124 | return NO_DIRECTIVE_FOUND; |
| 2125 | } else if (nested_rep_count > 0) { |
| 2126 | if (i == PP_ENDREP) { |
| 2127 | nested_rep_count--; |
| 2128 | return NO_DIRECTIVE_FOUND; |
| 2129 | } |
| 2130 | } |
| 2131 | } |
| 2132 | } |
| 2133 | |
H. Peter Anvin | 4169a47 | 2007-09-12 01:29:43 +0000 | [diff] [blame] | 2134 | switch (i) { |
| 2135 | case PP_INVALID: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2136 | error(ERR_NONFATAL, "unknown preprocessor directive `%s'", |
| 2137 | tline->text); |
| 2138 | return NO_DIRECTIVE_FOUND; /* didn't get it */ |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 2139 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2140 | case PP_STACKSIZE: |
| 2141 | /* Directive to tell NASM what the default stack size is. The |
| 2142 | * default is for a 16-bit stack, and this can be overriden with |
| 2143 | * %stacksize large. |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2144 | */ |
| 2145 | tline = tline->next; |
| 2146 | if (tline && tline->type == TOK_WHITESPACE) |
| 2147 | tline = tline->next; |
| 2148 | if (!tline || tline->type != TOK_ID) { |
| 2149 | error(ERR_NONFATAL, "`%%stacksize' missing size parameter"); |
| 2150 | free_tlist(origline); |
| 2151 | return DIRECTIVE_FOUND; |
| 2152 | } |
| 2153 | if (nasm_stricmp(tline->text, "flat") == 0) { |
| 2154 | /* All subsequent ARG directives are for a 32-bit stack */ |
| 2155 | StackSize = 4; |
| 2156 | StackPointer = "ebp"; |
| 2157 | ArgOffset = 8; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2158 | LocalOffset = 0; |
Charles Crayne | 7eaf919 | 2007-11-08 22:11:14 -0800 | [diff] [blame] | 2159 | } else if (nasm_stricmp(tline->text, "flat64") == 0) { |
| 2160 | /* All subsequent ARG directives are for a 64-bit stack */ |
| 2161 | StackSize = 8; |
| 2162 | StackPointer = "rbp"; |
Per Jessen | 53252e0 | 2010-02-11 00:16:59 +0300 | [diff] [blame] | 2163 | ArgOffset = 16; |
Charles Crayne | 7eaf919 | 2007-11-08 22:11:14 -0800 | [diff] [blame] | 2164 | LocalOffset = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2165 | } else if (nasm_stricmp(tline->text, "large") == 0) { |
| 2166 | /* All subsequent ARG directives are for a 16-bit stack, |
| 2167 | * far function call. |
| 2168 | */ |
| 2169 | StackSize = 2; |
| 2170 | StackPointer = "bp"; |
| 2171 | ArgOffset = 4; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2172 | LocalOffset = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2173 | } else if (nasm_stricmp(tline->text, "small") == 0) { |
| 2174 | /* All subsequent ARG directives are for a 16-bit stack, |
| 2175 | * far function call. We don't support near functions. |
| 2176 | */ |
| 2177 | StackSize = 2; |
| 2178 | StackPointer = "bp"; |
| 2179 | ArgOffset = 6; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2180 | LocalOffset = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2181 | } else { |
| 2182 | error(ERR_NONFATAL, "`%%stacksize' invalid size type"); |
| 2183 | free_tlist(origline); |
| 2184 | return DIRECTIVE_FOUND; |
| 2185 | } |
| 2186 | free_tlist(origline); |
| 2187 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2188 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2189 | case PP_ARG: |
| 2190 | /* TASM like ARG directive to define arguments to functions, in |
| 2191 | * the following form: |
| 2192 | * |
| 2193 | * ARG arg1:WORD, arg2:DWORD, arg4:QWORD |
| 2194 | */ |
| 2195 | offset = ArgOffset; |
| 2196 | do { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 2197 | char *arg, directive[256]; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2198 | int size = StackSize; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2199 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2200 | /* Find the argument name */ |
| 2201 | tline = tline->next; |
| 2202 | if (tline && tline->type == TOK_WHITESPACE) |
| 2203 | tline = tline->next; |
| 2204 | if (!tline || tline->type != TOK_ID) { |
| 2205 | error(ERR_NONFATAL, "`%%arg' missing argument parameter"); |
| 2206 | free_tlist(origline); |
| 2207 | return DIRECTIVE_FOUND; |
| 2208 | } |
| 2209 | arg = tline->text; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2210 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2211 | /* Find the argument size type */ |
| 2212 | tline = tline->next; |
| 2213 | if (!tline || tline->type != TOK_OTHER |
| 2214 | || tline->text[0] != ':') { |
| 2215 | error(ERR_NONFATAL, |
| 2216 | "Syntax error processing `%%arg' directive"); |
| 2217 | free_tlist(origline); |
| 2218 | return DIRECTIVE_FOUND; |
| 2219 | } |
| 2220 | tline = tline->next; |
| 2221 | if (!tline || tline->type != TOK_ID) { |
| 2222 | error(ERR_NONFATAL, "`%%arg' missing size type parameter"); |
| 2223 | free_tlist(origline); |
| 2224 | return DIRECTIVE_FOUND; |
| 2225 | } |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2226 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2227 | /* Allow macro expansion of type parameter */ |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 2228 | tt = tokenize(tline->text); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2229 | tt = expand_smacro(tt); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2230 | size = parse_size(tt->text); |
| 2231 | if (!size) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2232 | error(ERR_NONFATAL, |
| 2233 | "Invalid size type for `%%arg' missing directive"); |
| 2234 | free_tlist(tt); |
| 2235 | free_tlist(origline); |
| 2236 | return DIRECTIVE_FOUND; |
| 2237 | } |
| 2238 | free_tlist(tt); |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2239 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2240 | /* Round up to even stack slots */ |
| 2241 | size = ALIGN(size, StackSize); |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2242 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2243 | /* Now define the macro for the argument */ |
| 2244 | snprintf(directive, sizeof(directive), "%%define %s (%s+%d)", |
| 2245 | arg, StackPointer, offset); |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 2246 | do_directive(tokenize(directive)); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2247 | offset += size; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2248 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2249 | /* Move to the next argument in the list */ |
| 2250 | tline = tline->next; |
| 2251 | if (tline && tline->type == TOK_WHITESPACE) |
| 2252 | tline = tline->next; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2253 | } while (tline && tline->type == TOK_OTHER && tline->text[0] == ','); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2254 | ArgOffset = offset; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2255 | free_tlist(origline); |
| 2256 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2257 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2258 | case PP_LOCAL: |
| 2259 | /* TASM like LOCAL directive to define local variables for a |
| 2260 | * function, in the following form: |
| 2261 | * |
| 2262 | * LOCAL local1:WORD, local2:DWORD, local4:QWORD = LocalSize |
| 2263 | * |
| 2264 | * The '= LocalSize' at the end is ignored by NASM, but is |
| 2265 | * required by TASM to define the local parameter size (and used |
| 2266 | * by the TASM macro package). |
| 2267 | */ |
| 2268 | offset = LocalOffset; |
| 2269 | do { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 2270 | char *local, directive[256]; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2271 | int size = StackSize; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2272 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2273 | /* Find the argument name */ |
| 2274 | tline = tline->next; |
| 2275 | if (tline && tline->type == TOK_WHITESPACE) |
| 2276 | tline = tline->next; |
| 2277 | if (!tline || tline->type != TOK_ID) { |
| 2278 | error(ERR_NONFATAL, |
| 2279 | "`%%local' missing argument parameter"); |
| 2280 | free_tlist(origline); |
| 2281 | return DIRECTIVE_FOUND; |
| 2282 | } |
| 2283 | local = tline->text; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2284 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2285 | /* Find the argument size type */ |
| 2286 | tline = tline->next; |
| 2287 | if (!tline || tline->type != TOK_OTHER |
| 2288 | || tline->text[0] != ':') { |
| 2289 | error(ERR_NONFATAL, |
| 2290 | "Syntax error processing `%%local' directive"); |
| 2291 | free_tlist(origline); |
| 2292 | return DIRECTIVE_FOUND; |
| 2293 | } |
| 2294 | tline = tline->next; |
| 2295 | if (!tline || tline->type != TOK_ID) { |
| 2296 | error(ERR_NONFATAL, |
| 2297 | "`%%local' missing size type parameter"); |
| 2298 | free_tlist(origline); |
| 2299 | return DIRECTIVE_FOUND; |
| 2300 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2301 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2302 | /* Allow macro expansion of type parameter */ |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 2303 | tt = tokenize(tline->text); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2304 | tt = expand_smacro(tt); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2305 | size = parse_size(tt->text); |
| 2306 | if (!size) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2307 | error(ERR_NONFATAL, |
| 2308 | "Invalid size type for `%%local' missing directive"); |
| 2309 | free_tlist(tt); |
| 2310 | free_tlist(origline); |
| 2311 | return DIRECTIVE_FOUND; |
| 2312 | } |
| 2313 | free_tlist(tt); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2314 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2315 | /* Round up to even stack slots */ |
| 2316 | size = ALIGN(size, StackSize); |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2317 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2318 | offset += size; /* Negative offset, increment before */ |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2319 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2320 | /* Now define the macro for the argument */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2321 | snprintf(directive, sizeof(directive), "%%define %s (%s-%d)", |
| 2322 | local, StackPointer, offset); |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 2323 | do_directive(tokenize(directive)); |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2324 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2325 | /* Now define the assign to setup the enter_c macro correctly */ |
| 2326 | snprintf(directive, sizeof(directive), |
| 2327 | "%%assign %%$localsize %%$localsize+%d", size); |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 2328 | do_directive(tokenize(directive)); |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2329 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2330 | /* Move to the next argument in the list */ |
| 2331 | tline = tline->next; |
| 2332 | if (tline && tline->type == TOK_WHITESPACE) |
| 2333 | tline = tline->next; |
H. Peter Anvin | 8781cb0 | 2007-11-08 20:01:11 -0800 | [diff] [blame] | 2334 | } while (tline && tline->type == TOK_OTHER && tline->text[0] == ','); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2335 | LocalOffset = offset; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2336 | free_tlist(origline); |
| 2337 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2338 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2339 | case PP_CLEAR: |
| 2340 | if (tline->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2341 | error(ERR_WARNING|ERR_PASS1, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2342 | "trailing garbage after `%%clear' ignored"); |
| 2343 | free_macros(); |
| 2344 | init_macros(); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2345 | free_tlist(origline); |
| 2346 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2347 | |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 2348 | case PP_DEPEND: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2349 | t = tline->next = expand_smacro(tline->next); |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2350 | skip_white_(t); |
| 2351 | if (!t || (t->type != TOK_STRING && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2352 | t->type != TOK_INTERNAL_STRING)) { |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 2353 | error(ERR_NONFATAL, "`%%depend' expects a file name"); |
| 2354 | free_tlist(origline); |
| 2355 | return DIRECTIVE_FOUND; /* but we did _something_ */ |
| 2356 | } |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2357 | if (t->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2358 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 2359 | "trailing garbage after `%%depend' ignored"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2360 | p = t->text; |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2361 | if (t->type != TOK_INTERNAL_STRING) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2362 | nasm_unquote_cstr(p, i); |
| 2363 | if (dephead && !in_list(*dephead, p)) { |
| 2364 | StrList *sl = nasm_malloc(strlen(p)+1+sizeof sl->next); |
| 2365 | sl->next = NULL; |
| 2366 | strcpy(sl->str, p); |
| 2367 | *deptail = sl; |
| 2368 | deptail = &sl->next; |
| 2369 | } |
| 2370 | free_tlist(origline); |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 2371 | return DIRECTIVE_FOUND; |
| 2372 | |
| 2373 | case PP_INCLUDE: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2374 | t = tline->next = expand_smacro(tline->next); |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2375 | skip_white_(t); |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 2376 | |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2377 | if (!t || (t->type != TOK_STRING && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2378 | t->type != TOK_INTERNAL_STRING)) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2379 | error(ERR_NONFATAL, "`%%include' expects a file name"); |
| 2380 | free_tlist(origline); |
| 2381 | return DIRECTIVE_FOUND; /* but we did _something_ */ |
| 2382 | } |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2383 | if (t->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2384 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2385 | "trailing garbage after `%%include' ignored"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2386 | p = t->text; |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 2387 | if (t->type != TOK_INTERNAL_STRING) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2388 | nasm_unquote_cstr(p, i); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2389 | inc = nasm_malloc(sizeof(Include)); |
| 2390 | inc->next = istk; |
| 2391 | inc->conds = NULL; |
H. Peter Anvin | 2b1c3b9 | 2008-06-06 10:38:46 -0700 | [diff] [blame] | 2392 | inc->fp = inc_fopen(p, dephead, &deptail, pass == 0); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2393 | if (!inc->fp) { |
| 2394 | /* -MG given but file not found */ |
| 2395 | nasm_free(inc); |
| 2396 | } else { |
| 2397 | inc->fname = src_set_fname(nasm_strdup(p)); |
| 2398 | inc->lineno = src_set_linnum(0); |
| 2399 | inc->lineinc = 1; |
| 2400 | inc->expansion = NULL; |
| 2401 | inc->mstk = NULL; |
| 2402 | istk = inc; |
| 2403 | list->uplevel(LIST_INCLUDE); |
| 2404 | } |
| 2405 | free_tlist(origline); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2406 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2407 | |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 2408 | case PP_USE: |
H. Peter Anvin | f4ae5ad | 2008-06-19 18:39:24 -0700 | [diff] [blame] | 2409 | { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2410 | static macros_t *use_pkg; |
| 2411 | const char *pkg_macro = NULL; |
H. Peter Anvin | f4ae5ad | 2008-06-19 18:39:24 -0700 | [diff] [blame] | 2412 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2413 | tline = tline->next; |
| 2414 | skip_white_(tline); |
| 2415 | tline = expand_id(tline); |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 2416 | |
H. Peter Anvin | 264b7b9 | 2008-10-24 16:38:17 -0700 | [diff] [blame] | 2417 | if (!tline || (tline->type != TOK_STRING && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2418 | tline->type != TOK_INTERNAL_STRING && |
| 2419 | tline->type != TOK_ID)) { |
H. Peter Anvin | 926fc40 | 2008-06-19 16:26:12 -0700 | [diff] [blame] | 2420 | error(ERR_NONFATAL, "`%%use' expects a package name"); |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 2421 | free_tlist(origline); |
| 2422 | return DIRECTIVE_FOUND; /* but we did _something_ */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2423 | } |
H. Peter Anvin | 264b7b9 | 2008-10-24 16:38:17 -0700 | [diff] [blame] | 2424 | if (tline->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2425 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 2426 | "trailing garbage after `%%use' ignored"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2427 | if (tline->type == TOK_STRING) |
| 2428 | nasm_unquote_cstr(tline->text, i); |
| 2429 | use_pkg = nasm_stdmac_find_package(tline->text); |
| 2430 | if (!use_pkg) |
| 2431 | error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text); |
| 2432 | else |
| 2433 | pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */ |
Victor van den Elzen | 35eb2ea | 2010-03-10 22:33:48 +0100 | [diff] [blame] | 2434 | if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2435 | /* Not already included, go ahead and include it */ |
| 2436 | stdmacpos = use_pkg; |
| 2437 | } |
| 2438 | free_tlist(origline); |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 2439 | return DIRECTIVE_FOUND; |
H. Peter Anvin | f4ae5ad | 2008-06-19 18:39:24 -0700 | [diff] [blame] | 2440 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2441 | case PP_PUSH: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2442 | case PP_REPL: |
H. Peter Anvin | 42b5639 | 2008-10-24 16:24:21 -0700 | [diff] [blame] | 2443 | case PP_POP: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2444 | tline = tline->next; |
| 2445 | skip_white_(tline); |
| 2446 | tline = expand_id(tline); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2447 | if (tline) { |
| 2448 | if (!tok_type_(tline, TOK_ID)) { |
| 2449 | error(ERR_NONFATAL, "`%s' expects a context identifier", |
| 2450 | pp_directives[i]); |
| 2451 | free_tlist(origline); |
| 2452 | return DIRECTIVE_FOUND; /* but we did _something_ */ |
| 2453 | } |
| 2454 | if (tline->next) |
| 2455 | error(ERR_WARNING|ERR_PASS1, |
| 2456 | "trailing garbage after `%s' ignored", |
| 2457 | pp_directives[i]); |
| 2458 | p = nasm_strdup(tline->text); |
| 2459 | } else { |
| 2460 | p = NULL; /* Anonymous */ |
| 2461 | } |
H. Peter Anvin | 42b5639 | 2008-10-24 16:24:21 -0700 | [diff] [blame] | 2462 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2463 | if (i == PP_PUSH) { |
| 2464 | ctx = nasm_malloc(sizeof(Context)); |
| 2465 | ctx->next = cstk; |
| 2466 | hash_init(&ctx->localmac, HASH_SMALL); |
| 2467 | ctx->name = p; |
| 2468 | ctx->number = unique++; |
| 2469 | cstk = ctx; |
| 2470 | } else { |
| 2471 | /* %pop or %repl */ |
| 2472 | if (!cstk) { |
| 2473 | error(ERR_NONFATAL, "`%s': context stack is empty", |
| 2474 | pp_directives[i]); |
| 2475 | } else if (i == PP_POP) { |
| 2476 | if (p && (!cstk->name || nasm_stricmp(p, cstk->name))) |
| 2477 | error(ERR_NONFATAL, "`%%pop' in wrong context: %s, " |
| 2478 | "expected %s", |
| 2479 | cstk->name ? cstk->name : "anonymous", p); |
| 2480 | else |
| 2481 | ctx_pop(); |
| 2482 | } else { |
| 2483 | /* i == PP_REPL */ |
| 2484 | nasm_free(cstk->name); |
| 2485 | cstk->name = p; |
| 2486 | p = NULL; |
| 2487 | } |
| 2488 | nasm_free(p); |
| 2489 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2490 | free_tlist(origline); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2491 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 8e3f75e | 2008-09-24 00:21:58 -0700 | [diff] [blame] | 2492 | case PP_FATAL: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2493 | severity = ERR_FATAL; |
| 2494 | goto issue_error; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2495 | case PP_ERROR: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2496 | severity = ERR_NONFATAL; |
| 2497 | goto issue_error; |
H. Peter Anvin | 7df0417 | 2008-06-10 18:27:38 -0700 | [diff] [blame] | 2498 | case PP_WARNING: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2499 | severity = ERR_WARNING|ERR_WARN_USER; |
| 2500 | goto issue_error; |
H. Peter Anvin | 8e3f75e | 2008-09-24 00:21:58 -0700 | [diff] [blame] | 2501 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2502 | issue_error: |
H. Peter Anvin | 7df0417 | 2008-06-10 18:27:38 -0700 | [diff] [blame] | 2503 | { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2504 | /* Only error out if this is the final pass */ |
| 2505 | if (pass != 2 && i != PP_FATAL) |
| 2506 | return DIRECTIVE_FOUND; |
| 2507 | |
| 2508 | tline->next = expand_smacro(tline->next); |
| 2509 | tline = tline->next; |
| 2510 | skip_white_(tline); |
| 2511 | t = tline ? tline->next : NULL; |
| 2512 | skip_white_(t); |
| 2513 | if (tok_type_(tline, TOK_STRING) && !t) { |
| 2514 | /* The line contains only a quoted string */ |
| 2515 | p = tline->text; |
| 2516 | nasm_unquote(p, NULL); /* Ignore NUL character truncation */ |
| 2517 | error(severity, "%s", p); |
| 2518 | } else { |
| 2519 | /* Not a quoted string, or more than a quoted string */ |
| 2520 | p = detoken(tline, false); |
| 2521 | error(severity, "%s", p); |
| 2522 | nasm_free(p); |
| 2523 | } |
| 2524 | free_tlist(origline); |
| 2525 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 7df0417 | 2008-06-10 18:27:38 -0700 | [diff] [blame] | 2526 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2527 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 2528 | CASE_PP_IF: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2529 | if (istk->conds && !emitting(istk->conds->state)) |
| 2530 | j = COND_NEVER; |
| 2531 | else { |
| 2532 | j = if_condition(tline->next, i); |
| 2533 | tline->next = NULL; /* it got freed */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2534 | j = j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE; |
| 2535 | } |
| 2536 | cond = nasm_malloc(sizeof(Cond)); |
| 2537 | cond->next = istk->conds; |
| 2538 | cond->state = j; |
| 2539 | istk->conds = cond; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2540 | if(istk->mstk) |
Keith Kanios | 3c0d91f | 2009-10-25 13:28:03 -0500 | [diff] [blame] | 2541 | istk->mstk->condcnt ++; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2542 | free_tlist(origline); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2543 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2544 | |
H. Peter Anvin | da10e7b | 2007-09-12 04:18:37 +0000 | [diff] [blame] | 2545 | CASE_PP_ELIF: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2546 | if (!istk->conds) |
H. Peter Anvin | 4169a47 | 2007-09-12 01:29:43 +0000 | [diff] [blame] | 2547 | error(ERR_FATAL, "`%s': no matching `%%if'", pp_directives[i]); |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2548 | switch(istk->conds->state) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2549 | case COND_IF_TRUE: |
| 2550 | istk->conds->state = COND_DONE; |
| 2551 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2552 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2553 | case COND_DONE: |
| 2554 | case COND_NEVER: |
| 2555 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2556 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2557 | case COND_ELSE_TRUE: |
| 2558 | case COND_ELSE_FALSE: |
| 2559 | error_precond(ERR_WARNING|ERR_PASS1, |
| 2560 | "`%%elif' after `%%else' ignored"); |
| 2561 | istk->conds->state = COND_NEVER; |
| 2562 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2563 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2564 | case COND_IF_FALSE: |
| 2565 | /* |
| 2566 | * IMPORTANT: In the case of %if, we will already have |
| 2567 | * called expand_mmac_params(); however, if we're |
| 2568 | * processing an %elif we must have been in a |
| 2569 | * non-emitting mode, which would have inhibited |
| 2570 | * the normal invocation of expand_mmac_params(). |
| 2571 | * Therefore, we have to do it explicitly here. |
| 2572 | */ |
| 2573 | j = if_condition(expand_mmac_params(tline->next), i); |
| 2574 | tline->next = NULL; /* it got freed */ |
| 2575 | istk->conds->state = |
| 2576 | j < 0 ? COND_NEVER : j ? COND_IF_TRUE : COND_IF_FALSE; |
| 2577 | break; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2578 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2579 | free_tlist(origline); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2580 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2581 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2582 | case PP_ELSE: |
| 2583 | if (tline->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2584 | error_precond(ERR_WARNING|ERR_PASS1, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2585 | "trailing garbage after `%%else' ignored"); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2586 | if (!istk->conds) |
| 2587 | error(ERR_FATAL, "`%%else': no matching `%%if'"); |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2588 | switch(istk->conds->state) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2589 | case COND_IF_TRUE: |
| 2590 | case COND_DONE: |
| 2591 | istk->conds->state = COND_ELSE_FALSE; |
| 2592 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2593 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2594 | case COND_NEVER: |
| 2595 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2596 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2597 | case COND_IF_FALSE: |
| 2598 | istk->conds->state = COND_ELSE_TRUE; |
| 2599 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2600 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2601 | case COND_ELSE_TRUE: |
| 2602 | case COND_ELSE_FALSE: |
| 2603 | error_precond(ERR_WARNING|ERR_PASS1, |
| 2604 | "`%%else' after `%%else' ignored."); |
| 2605 | istk->conds->state = COND_NEVER; |
| 2606 | break; |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 2607 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2608 | free_tlist(origline); |
| 2609 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2610 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2611 | case PP_ENDIF: |
| 2612 | if (tline->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2613 | error_precond(ERR_WARNING|ERR_PASS1, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2614 | "trailing garbage after `%%endif' ignored"); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2615 | if (!istk->conds) |
| 2616 | error(ERR_FATAL, "`%%endif': no matching `%%if'"); |
| 2617 | cond = istk->conds; |
| 2618 | istk->conds = cond->next; |
| 2619 | nasm_free(cond); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2620 | if(istk->mstk) |
Keith Kanios | 3c0d91f | 2009-10-25 13:28:03 -0500 | [diff] [blame] | 2621 | istk->mstk->condcnt --; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2622 | free_tlist(origline); |
| 2623 | return DIRECTIVE_FOUND; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2624 | |
H. Peter Anvin | db8f96e | 2009-07-15 09:07:29 -0400 | [diff] [blame] | 2625 | case PP_RMACRO: |
| 2626 | case PP_IRMACRO: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2627 | case PP_MACRO: |
| 2628 | case PP_IMACRO: |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2629 | if (defining) { |
H. Peter Anvin | db8f96e | 2009-07-15 09:07:29 -0400 | [diff] [blame] | 2630 | error(ERR_FATAL, "`%s': already defining a macro", |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2631 | pp_directives[i]); |
| 2632 | return DIRECTIVE_FOUND; |
| 2633 | } |
| 2634 | defining = nasm_malloc(sizeof(MMacro)); |
| 2635 | defining->max_depth = |
| 2636 | (i == PP_RMACRO) || (i == PP_IRMACRO) ? DEADMAN_LIMIT : 0; |
| 2637 | defining->casesense = (i == PP_MACRO) || (i == PP_RMACRO); |
| 2638 | if (!parse_mmacro_spec(tline, defining, pp_directives[i])) { |
| 2639 | nasm_free(defining); |
| 2640 | defining = NULL; |
| 2641 | return DIRECTIVE_FOUND; |
| 2642 | } |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2643 | |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 2644 | mmac = (MMacro *) hash_findix(&mmacros, defining->name); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2645 | while (mmac) { |
| 2646 | if (!strcmp(mmac->name, defining->name) && |
| 2647 | (mmac->nparam_min <= defining->nparam_max |
| 2648 | || defining->plus) |
| 2649 | && (defining->nparam_min <= mmac->nparam_max |
| 2650 | || mmac->plus)) { |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2651 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2652 | "redefining multi-line macro `%s'", defining->name); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2653 | return DIRECTIVE_FOUND; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2654 | } |
| 2655 | mmac = mmac->next; |
| 2656 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2657 | free_tlist(origline); |
| 2658 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2659 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2660 | case PP_ENDM: |
| 2661 | case PP_ENDMACRO: |
Victor van den Elzen | 8f1120f | 2008-07-16 13:41:37 +0200 | [diff] [blame] | 2662 | if (! (defining && defining->name)) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2663 | error(ERR_NONFATAL, "`%s': not defining a macro", tline->text); |
| 2664 | return DIRECTIVE_FOUND; |
| 2665 | } |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2666 | mmhead = (MMacro **) hash_findi_add(&mmacros, defining->name); |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 2667 | defining->next = *mmhead; |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2668 | *mmhead = defining; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2669 | defining = NULL; |
| 2670 | free_tlist(origline); |
| 2671 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2672 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 2673 | case PP_EXITMACRO: |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2674 | /* |
| 2675 | * We must search along istk->expansion until we hit a |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2676 | * macro-end marker for a macro with a name. Then we |
Keith Kanios | 3c0d91f | 2009-10-25 13:28:03 -0500 | [diff] [blame] | 2677 | * bypass all lines between exitmacro and endmacro. |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2678 | */ |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 2679 | list_for_each(l, istk->expansion) |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2680 | if (l->finishes && l->finishes->name) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2681 | break; |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2682 | |
| 2683 | if (l) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2684 | /* |
| 2685 | * Remove all conditional entries relative to this |
| 2686 | * macro invocation. (safe to do in this context) |
| 2687 | */ |
Keith Kanios | 3c0d91f | 2009-10-25 13:28:03 -0500 | [diff] [blame] | 2688 | for ( ; l->finishes->condcnt > 0; l->finishes->condcnt --) { |
| 2689 | cond = istk->conds; |
| 2690 | istk->conds = cond->next; |
| 2691 | nasm_free(cond); |
| 2692 | } |
| 2693 | istk->expansion = l; |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2694 | } else { |
| 2695 | error(ERR_NONFATAL, "`%%exitmacro' not within `%%macro' block"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2696 | } |
Keith Kanios | 852f1ee | 2009-07-12 00:19:55 -0500 | [diff] [blame] | 2697 | free_tlist(origline); |
| 2698 | return DIRECTIVE_FOUND; |
| 2699 | |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2700 | case PP_UNMACRO: |
| 2701 | case PP_UNIMACRO: |
| 2702 | { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2703 | MMacro **mmac_p; |
| 2704 | MMacro spec; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2705 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2706 | spec.casesense = (i == PP_UNMACRO); |
| 2707 | if (!parse_mmacro_spec(tline, &spec, pp_directives[i])) { |
| 2708 | return DIRECTIVE_FOUND; |
| 2709 | } |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2710 | mmac_p = (MMacro **) hash_findi(&mmacros, spec.name, NULL); |
| 2711 | while (mmac_p && *mmac_p) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2712 | mmac = *mmac_p; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2713 | if (mmac->casesense == spec.casesense && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2714 | !mstrcmp(mmac->name, spec.name, spec.casesense) && |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2715 | mmac->nparam_min == spec.nparam_min && |
| 2716 | mmac->nparam_max == spec.nparam_max && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2717 | mmac->plus == spec.plus) { |
| 2718 | *mmac_p = mmac->next; |
| 2719 | free_mmacro(mmac); |
| 2720 | } else { |
| 2721 | mmac_p = &mmac->next; |
| 2722 | } |
| 2723 | } |
| 2724 | free_tlist(origline); |
| 2725 | free_tlist(spec.dlist); |
| 2726 | return DIRECTIVE_FOUND; |
H. Peter Anvin | a26433d | 2008-07-16 14:40:01 -0700 | [diff] [blame] | 2727 | } |
| 2728 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2729 | case PP_ROTATE: |
| 2730 | if (tline->next && tline->next->type == TOK_WHITESPACE) |
| 2731 | tline = tline->next; |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 2732 | if (!tline->next) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2733 | free_tlist(origline); |
| 2734 | error(ERR_NONFATAL, "`%%rotate' missing rotate count"); |
| 2735 | return DIRECTIVE_FOUND; |
| 2736 | } |
| 2737 | t = expand_smacro(tline->next); |
| 2738 | tline->next = NULL; |
| 2739 | free_tlist(origline); |
| 2740 | tline = t; |
| 2741 | tptr = &t; |
| 2742 | tokval.t_type = TOKEN_INVALID; |
| 2743 | evalresult = |
| 2744 | evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL); |
| 2745 | free_tlist(tline); |
| 2746 | if (!evalresult) |
| 2747 | return DIRECTIVE_FOUND; |
| 2748 | if (tokval.t_type) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2749 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2750 | "trailing garbage after expression ignored"); |
| 2751 | if (!is_simple(evalresult)) { |
| 2752 | error(ERR_NONFATAL, "non-constant value given to `%%rotate'"); |
| 2753 | return DIRECTIVE_FOUND; |
| 2754 | } |
| 2755 | mmac = istk->mstk; |
| 2756 | while (mmac && !mmac->name) /* avoid mistaking %reps for macros */ |
| 2757 | mmac = mmac->next_active; |
| 2758 | if (!mmac) { |
| 2759 | error(ERR_NONFATAL, "`%%rotate' invoked outside a macro call"); |
| 2760 | } else if (mmac->nparam == 0) { |
| 2761 | error(ERR_NONFATAL, |
| 2762 | "`%%rotate' invoked within macro without parameters"); |
| 2763 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2764 | int rotate = mmac->rotate + reloc_value(evalresult); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2765 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2766 | rotate %= (int)mmac->nparam; |
| 2767 | if (rotate < 0) |
| 2768 | rotate += mmac->nparam; |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 2769 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2770 | mmac->rotate = rotate; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2771 | } |
| 2772 | return DIRECTIVE_FOUND; |
Nickolay Yurchenko | 9aea715 | 2003-09-07 22:46:26 +0000 | [diff] [blame] | 2773 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2774 | case PP_REP: |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 2775 | nolist = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2776 | do { |
| 2777 | tline = tline->next; |
| 2778 | } while (tok_type_(tline, TOK_WHITESPACE)); |
Nickolay Yurchenko | 9aea715 | 2003-09-07 22:46:26 +0000 | [diff] [blame] | 2779 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2780 | if (tok_type_(tline, TOK_ID) && |
| 2781 | nasm_stricmp(tline->text, ".nolist") == 0) { |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 2782 | nolist = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2783 | do { |
| 2784 | tline = tline->next; |
| 2785 | } while (tok_type_(tline, TOK_WHITESPACE)); |
| 2786 | } |
Nickolay Yurchenko | 9aea715 | 2003-09-07 22:46:26 +0000 | [diff] [blame] | 2787 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2788 | if (tline) { |
| 2789 | t = expand_smacro(tline); |
| 2790 | tptr = &t; |
| 2791 | tokval.t_type = TOKEN_INVALID; |
| 2792 | evalresult = |
| 2793 | evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL); |
| 2794 | if (!evalresult) { |
| 2795 | free_tlist(origline); |
| 2796 | return DIRECTIVE_FOUND; |
| 2797 | } |
| 2798 | if (tokval.t_type) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2799 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2800 | "trailing garbage after expression ignored"); |
| 2801 | if (!is_simple(evalresult)) { |
| 2802 | error(ERR_NONFATAL, "non-constant value given to `%%rep'"); |
| 2803 | return DIRECTIVE_FOUND; |
| 2804 | } |
H. Peter Anvin | f8ba53e | 2007-10-11 10:11:57 -0700 | [diff] [blame] | 2805 | count = reloc_value(evalresult) + 1; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2806 | } else { |
| 2807 | error(ERR_NONFATAL, "`%%rep' expects a repeat count"); |
H. Peter Anvin | f8ba53e | 2007-10-11 10:11:57 -0700 | [diff] [blame] | 2808 | count = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2809 | } |
| 2810 | free_tlist(origline); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2811 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2812 | tmp_defining = defining; |
| 2813 | defining = nasm_malloc(sizeof(MMacro)); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2814 | defining->prev = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2815 | defining->name = NULL; /* flags this macro as a %rep block */ |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 2816 | defining->casesense = false; |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 2817 | defining->plus = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2818 | defining->nolist = nolist; |
H. Peter Anvin | f8ba53e | 2007-10-11 10:11:57 -0700 | [diff] [blame] | 2819 | defining->in_progress = count; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2820 | defining->max_depth = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2821 | defining->nparam_min = defining->nparam_max = 0; |
| 2822 | defining->defaults = NULL; |
| 2823 | defining->dlist = NULL; |
| 2824 | defining->expansion = NULL; |
| 2825 | defining->next_active = istk->mstk; |
| 2826 | defining->rep_nest = tmp_defining; |
| 2827 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2828 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2829 | case PP_ENDREP: |
| 2830 | if (!defining || defining->name) { |
| 2831 | error(ERR_NONFATAL, "`%%endrep': no matching `%%rep'"); |
| 2832 | return DIRECTIVE_FOUND; |
| 2833 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2834 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2835 | /* |
| 2836 | * Now we have a "macro" defined - although it has no name |
| 2837 | * and we won't be entering it in the hash tables - we must |
| 2838 | * push a macro-end marker for it on to istk->expansion. |
| 2839 | * After that, it will take care of propagating itself (a |
| 2840 | * macro-end marker line for a macro which is really a %rep |
| 2841 | * block will cause the macro to be re-expanded, complete |
| 2842 | * with another macro-end marker to ensure the process |
| 2843 | * continues) until the whole expansion is forcibly removed |
| 2844 | * from istk->expansion by a %exitrep. |
| 2845 | */ |
| 2846 | l = nasm_malloc(sizeof(Line)); |
| 2847 | l->next = istk->expansion; |
| 2848 | l->finishes = defining; |
| 2849 | l->first = NULL; |
| 2850 | istk->expansion = l; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2851 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2852 | istk->mstk = defining; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2853 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2854 | list->uplevel(defining->nolist ? LIST_MACRO_NOLIST : LIST_MACRO); |
| 2855 | tmp_defining = defining; |
| 2856 | defining = defining->rep_nest; |
| 2857 | free_tlist(origline); |
| 2858 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2859 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2860 | case PP_EXITREP: |
| 2861 | /* |
| 2862 | * We must search along istk->expansion until we hit a |
| 2863 | * macro-end marker for a macro with no name. Then we set |
| 2864 | * its `in_progress' flag to 0. |
| 2865 | */ |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 2866 | list_for_each(l, istk->expansion) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2867 | if (l->finishes && !l->finishes->name) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2868 | break; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2869 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2870 | if (l) |
Charles Crayne | d4200be | 2008-07-12 16:42:33 -0700 | [diff] [blame] | 2871 | l->finishes->in_progress = 1; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2872 | else |
| 2873 | error(ERR_NONFATAL, "`%%exitrep' not within `%%rep' block"); |
| 2874 | free_tlist(origline); |
| 2875 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2876 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2877 | case PP_XDEFINE: |
| 2878 | case PP_IXDEFINE: |
| 2879 | case PP_DEFINE: |
| 2880 | case PP_IDEFINE: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2881 | casesense = (i == PP_DEFINE || i == PP_XDEFINE); |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 2882 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2883 | tline = tline->next; |
| 2884 | skip_white_(tline); |
| 2885 | tline = expand_id(tline); |
| 2886 | if (!tline || (tline->type != TOK_ID && |
| 2887 | (tline->type != TOK_PREPROC_ID || |
| 2888 | tline->text[1] != '$'))) { |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 2889 | error(ERR_NONFATAL, "`%s' expects a macro identifier", |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2890 | pp_directives[i]); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2891 | free_tlist(origline); |
| 2892 | return DIRECTIVE_FOUND; |
| 2893 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2894 | |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 2895 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2896 | last = tline; |
| 2897 | param_start = tline = tline->next; |
| 2898 | nparam = 0; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2899 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2900 | /* Expand the macro definition now for %xdefine and %ixdefine */ |
| 2901 | if ((i == PP_XDEFINE) || (i == PP_IXDEFINE)) |
| 2902 | tline = expand_smacro(tline); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2903 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2904 | if (tok_is_(tline, "(")) { |
| 2905 | /* |
| 2906 | * This macro has parameters. |
| 2907 | */ |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2908 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2909 | tline = tline->next; |
| 2910 | while (1) { |
| 2911 | skip_white_(tline); |
| 2912 | if (!tline) { |
| 2913 | error(ERR_NONFATAL, "parameter identifier expected"); |
| 2914 | free_tlist(origline); |
| 2915 | return DIRECTIVE_FOUND; |
| 2916 | } |
| 2917 | if (tline->type != TOK_ID) { |
| 2918 | error(ERR_NONFATAL, |
| 2919 | "`%s': parameter identifier expected", |
| 2920 | tline->text); |
| 2921 | free_tlist(origline); |
| 2922 | return DIRECTIVE_FOUND; |
| 2923 | } |
| 2924 | tline->type = TOK_SMAC_PARAM + nparam++; |
| 2925 | tline = tline->next; |
| 2926 | skip_white_(tline); |
| 2927 | if (tok_is_(tline, ",")) { |
| 2928 | tline = tline->next; |
H. Peter Anvin | ca348b6 | 2008-07-23 10:49:26 -0400 | [diff] [blame] | 2929 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2930 | if (!tok_is_(tline, ")")) { |
| 2931 | error(ERR_NONFATAL, |
| 2932 | "`)' expected to terminate macro template"); |
| 2933 | free_tlist(origline); |
| 2934 | return DIRECTIVE_FOUND; |
| 2935 | } |
| 2936 | break; |
| 2937 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2938 | } |
| 2939 | last = tline; |
| 2940 | tline = tline->next; |
| 2941 | } |
| 2942 | if (tok_type_(tline, TOK_WHITESPACE)) |
| 2943 | last = tline, tline = tline->next; |
| 2944 | macro_start = NULL; |
| 2945 | last->next = NULL; |
| 2946 | t = tline; |
| 2947 | while (t) { |
| 2948 | if (t->type == TOK_ID) { |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 2949 | list_for_each(tt, param_start) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2950 | if (tt->type >= TOK_SMAC_PARAM && |
| 2951 | !strcmp(tt->text, t->text)) |
| 2952 | t->type = tt->type; |
| 2953 | } |
| 2954 | tt = t->next; |
| 2955 | t->next = macro_start; |
| 2956 | macro_start = t; |
| 2957 | t = tt; |
| 2958 | } |
| 2959 | /* |
| 2960 | * Good. We now have a macro name, a parameter count, and a |
| 2961 | * token list (in reverse order) for an expansion. We ought |
| 2962 | * to be OK just to create an SMacro, store it, and let |
| 2963 | * free_tlist have the rest of the line (which we have |
| 2964 | * carefully re-terminated after chopping off the expansion |
| 2965 | * from the end). |
| 2966 | */ |
H. Peter Anvin | 4db5a16 | 2007-10-11 13:42:09 -0700 | [diff] [blame] | 2967 | define_smacro(ctx, mname, casesense, nparam, macro_start); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2968 | free_tlist(origline); |
| 2969 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 2970 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2971 | case PP_UNDEF: |
| 2972 | tline = tline->next; |
| 2973 | skip_white_(tline); |
| 2974 | tline = expand_id(tline); |
| 2975 | if (!tline || (tline->type != TOK_ID && |
| 2976 | (tline->type != TOK_PREPROC_ID || |
| 2977 | tline->text[1] != '$'))) { |
| 2978 | error(ERR_NONFATAL, "`%%undef' expects a macro identifier"); |
| 2979 | free_tlist(origline); |
| 2980 | return DIRECTIVE_FOUND; |
| 2981 | } |
| 2982 | if (tline->next) { |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 2983 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2984 | "trailing garbage after macro name ignored"); |
| 2985 | } |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 2986 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2987 | /* Find the context that symbol belongs to */ |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 2988 | ctx = get_ctx(tline->text, &mname, false); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2989 | undef_smacro(ctx, mname); |
| 2990 | free_tlist(origline); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 2991 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 2992 | |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 2993 | case PP_DEFSTR: |
| 2994 | case PP_IDEFSTR: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 2995 | casesense = (i == PP_DEFSTR); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 2996 | |
| 2997 | tline = tline->next; |
| 2998 | skip_white_(tline); |
| 2999 | tline = expand_id(tline); |
| 3000 | if (!tline || (tline->type != TOK_ID && |
| 3001 | (tline->type != TOK_PREPROC_ID || |
| 3002 | tline->text[1] != '$'))) { |
| 3003 | error(ERR_NONFATAL, "`%s' expects a macro identifier", |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3004 | pp_directives[i]); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3005 | free_tlist(origline); |
| 3006 | return DIRECTIVE_FOUND; |
| 3007 | } |
| 3008 | |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3009 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3010 | last = tline; |
| 3011 | tline = expand_smacro(tline->next); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3012 | last->next = NULL; |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3013 | |
| 3014 | while (tok_type_(tline, TOK_WHITESPACE)) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3015 | tline = delete_Token(tline); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3016 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3017 | p = detoken(tline, false); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3018 | macro_start = nasm_malloc(sizeof(*macro_start)); |
| 3019 | macro_start->next = NULL; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3020 | macro_start->text = nasm_quote(p, strlen(p)); |
| 3021 | macro_start->type = TOK_STRING; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3022 | macro_start->a.mac = NULL; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3023 | nasm_free(p); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3024 | |
| 3025 | /* |
| 3026 | * We now have a macro name, an implicit parameter count of |
| 3027 | * zero, and a string token to use as an expansion. Create |
| 3028 | * and store an SMacro. |
| 3029 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3030 | define_smacro(ctx, mname, casesense, 0, macro_start); |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3031 | free_tlist(origline); |
| 3032 | return DIRECTIVE_FOUND; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3033 | |
H. Peter Anvin | 2f55bda | 2009-07-14 15:04:04 -0400 | [diff] [blame] | 3034 | case PP_DEFTOK: |
| 3035 | case PP_IDEFTOK: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3036 | casesense = (i == PP_DEFTOK); |
| 3037 | |
Keith Kanios | b83fd0b | 2009-07-14 01:04:12 -0500 | [diff] [blame] | 3038 | tline = tline->next; |
| 3039 | skip_white_(tline); |
| 3040 | tline = expand_id(tline); |
| 3041 | if (!tline || (tline->type != TOK_ID && |
| 3042 | (tline->type != TOK_PREPROC_ID || |
| 3043 | tline->text[1] != '$'))) { |
| 3044 | error(ERR_NONFATAL, |
| 3045 | "`%s' expects a macro identifier as first parameter", |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3046 | pp_directives[i]); |
Keith Kanios | b83fd0b | 2009-07-14 01:04:12 -0500 | [diff] [blame] | 3047 | free_tlist(origline); |
| 3048 | return DIRECTIVE_FOUND; |
| 3049 | } |
| 3050 | ctx = get_ctx(tline->text, &mname, false); |
| 3051 | last = tline; |
| 3052 | tline = expand_smacro(tline->next); |
| 3053 | last->next = NULL; |
| 3054 | |
| 3055 | t = tline; |
| 3056 | while (tok_type_(t, TOK_WHITESPACE)) |
| 3057 | t = t->next; |
| 3058 | /* t should now point to the string */ |
| 3059 | if (t->type != TOK_STRING) { |
| 3060 | error(ERR_NONFATAL, |
| 3061 | "`%s` requires string as second parameter", |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3062 | pp_directives[i]); |
Keith Kanios | b83fd0b | 2009-07-14 01:04:12 -0500 | [diff] [blame] | 3063 | free_tlist(tline); |
| 3064 | free_tlist(origline); |
| 3065 | return DIRECTIVE_FOUND; |
| 3066 | } |
| 3067 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3068 | nasm_unquote_cstr(t->text, i); |
| 3069 | macro_start = tokenize(t->text); |
| 3070 | |
Keith Kanios | b83fd0b | 2009-07-14 01:04:12 -0500 | [diff] [blame] | 3071 | /* |
| 3072 | * We now have a macro name, an implicit parameter count of |
| 3073 | * zero, and a numeric token to use as an expansion. Create |
| 3074 | * and store an SMacro. |
| 3075 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3076 | define_smacro(ctx, mname, casesense, 0, macro_start); |
Keith Kanios | b83fd0b | 2009-07-14 01:04:12 -0500 | [diff] [blame] | 3077 | free_tlist(tline); |
| 3078 | free_tlist(origline); |
| 3079 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 9e20016 | 2008-06-04 17:23:14 -0700 | [diff] [blame] | 3080 | |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3081 | case PP_PATHSEARCH: |
| 3082 | { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3083 | FILE *fp; |
| 3084 | StrList *xsl = NULL; |
| 3085 | StrList **xst = &xsl; |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3086 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3087 | casesense = true; |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3088 | |
| 3089 | tline = tline->next; |
| 3090 | skip_white_(tline); |
| 3091 | tline = expand_id(tline); |
| 3092 | if (!tline || (tline->type != TOK_ID && |
| 3093 | (tline->type != TOK_PREPROC_ID || |
| 3094 | tline->text[1] != '$'))) { |
| 3095 | error(ERR_NONFATAL, |
| 3096 | "`%%pathsearch' expects a macro identifier as first parameter"); |
| 3097 | free_tlist(origline); |
| 3098 | return DIRECTIVE_FOUND; |
| 3099 | } |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3100 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3101 | last = tline; |
| 3102 | tline = expand_smacro(tline->next); |
| 3103 | last->next = NULL; |
| 3104 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3105 | t = tline; |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3106 | while (tok_type_(t, TOK_WHITESPACE)) |
| 3107 | t = t->next; |
| 3108 | |
| 3109 | if (!t || (t->type != TOK_STRING && |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3110 | t->type != TOK_INTERNAL_STRING)) { |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3111 | error(ERR_NONFATAL, "`%%pathsearch' expects a file name"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3112 | free_tlist(tline); |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3113 | free_tlist(origline); |
| 3114 | return DIRECTIVE_FOUND; /* but we did _something_ */ |
| 3115 | } |
| 3116 | if (t->next) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 3117 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3118 | "trailing garbage after `%%pathsearch' ignored"); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3119 | p = t->text; |
H. Peter Anvin | 427cc91 | 2008-06-01 21:43:03 -0700 | [diff] [blame] | 3120 | if (t->type != TOK_INTERNAL_STRING) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3121 | nasm_unquote(p, NULL); |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3122 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3123 | fp = inc_fopen(p, &xsl, &xst, true); |
| 3124 | if (fp) { |
| 3125 | p = xsl->str; |
| 3126 | fclose(fp); /* Don't actually care about the file */ |
| 3127 | } |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3128 | macro_start = nasm_malloc(sizeof(*macro_start)); |
| 3129 | macro_start->next = NULL; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3130 | macro_start->text = nasm_quote(p, strlen(p)); |
| 3131 | macro_start->type = TOK_STRING; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3132 | macro_start->a.mac = NULL; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3133 | if (xsl) |
| 3134 | nasm_free(xsl); |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3135 | |
| 3136 | /* |
| 3137 | * We now have a macro name, an implicit parameter count of |
| 3138 | * zero, and a string token to use as an expansion. Create |
| 3139 | * and store an SMacro. |
| 3140 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3141 | define_smacro(ctx, mname, casesense, 0, macro_start); |
| 3142 | free_tlist(tline); |
H. Peter Anvin | 418ca70 | 2008-05-30 10:42:30 -0700 | [diff] [blame] | 3143 | free_tlist(origline); |
| 3144 | return DIRECTIVE_FOUND; |
| 3145 | } |
| 3146 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3147 | case PP_STRLEN: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3148 | casesense = true; |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 3149 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3150 | tline = tline->next; |
| 3151 | skip_white_(tline); |
| 3152 | tline = expand_id(tline); |
| 3153 | if (!tline || (tline->type != TOK_ID && |
| 3154 | (tline->type != TOK_PREPROC_ID || |
| 3155 | tline->text[1] != '$'))) { |
| 3156 | error(ERR_NONFATAL, |
| 3157 | "`%%strlen' expects a macro identifier as first parameter"); |
| 3158 | free_tlist(origline); |
| 3159 | return DIRECTIVE_FOUND; |
| 3160 | } |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3161 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3162 | last = tline; |
| 3163 | tline = expand_smacro(tline->next); |
| 3164 | last->next = NULL; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 3165 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3166 | t = tline; |
| 3167 | while (tok_type_(t, TOK_WHITESPACE)) |
| 3168 | t = t->next; |
| 3169 | /* t should now point to the string */ |
| 3170 | if (t->type != TOK_STRING) { |
| 3171 | error(ERR_NONFATAL, |
| 3172 | "`%%strlen` requires string as second parameter"); |
| 3173 | free_tlist(tline); |
| 3174 | free_tlist(origline); |
| 3175 | return DIRECTIVE_FOUND; |
| 3176 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3177 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3178 | macro_start = nasm_malloc(sizeof(*macro_start)); |
| 3179 | macro_start->next = NULL; |
H. Peter Anvin | 88c9e1f | 2008-06-04 11:26:59 -0700 | [diff] [blame] | 3180 | make_tok_num(macro_start, nasm_unquote(t->text, NULL)); |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3181 | macro_start->a.mac = NULL; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 3182 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3183 | /* |
| 3184 | * We now have a macro name, an implicit parameter count of |
| 3185 | * zero, and a numeric token to use as an expansion. Create |
| 3186 | * and store an SMacro. |
| 3187 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3188 | define_smacro(ctx, mname, casesense, 0, macro_start); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3189 | free_tlist(tline); |
| 3190 | free_tlist(origline); |
| 3191 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3192 | |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3193 | case PP_STRCAT: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3194 | casesense = true; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3195 | |
| 3196 | tline = tline->next; |
| 3197 | skip_white_(tline); |
| 3198 | tline = expand_id(tline); |
| 3199 | if (!tline || (tline->type != TOK_ID && |
| 3200 | (tline->type != TOK_PREPROC_ID || |
| 3201 | tline->text[1] != '$'))) { |
| 3202 | error(ERR_NONFATAL, |
| 3203 | "`%%strcat' expects a macro identifier as first parameter"); |
| 3204 | free_tlist(origline); |
| 3205 | return DIRECTIVE_FOUND; |
| 3206 | } |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3207 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3208 | last = tline; |
| 3209 | tline = expand_smacro(tline->next); |
| 3210 | last->next = NULL; |
| 3211 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3212 | len = 0; |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 3213 | list_for_each(t, tline) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3214 | switch (t->type) { |
| 3215 | case TOK_WHITESPACE: |
| 3216 | break; |
| 3217 | case TOK_STRING: |
| 3218 | len += t->a.len = nasm_unquote(t->text, NULL); |
| 3219 | break; |
| 3220 | case TOK_OTHER: |
| 3221 | if (!strcmp(t->text, ",")) /* permit comma separators */ |
| 3222 | break; |
| 3223 | /* else fall through */ |
| 3224 | default: |
| 3225 | error(ERR_NONFATAL, |
| 3226 | "non-string passed to `%%strcat' (%d)", t->type); |
| 3227 | free_tlist(tline); |
| 3228 | free_tlist(origline); |
| 3229 | return DIRECTIVE_FOUND; |
| 3230 | } |
| 3231 | } |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3232 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3233 | p = pp = nasm_malloc(len); |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 3234 | list_for_each(t, tline) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3235 | if (t->type == TOK_STRING) { |
| 3236 | memcpy(p, t->text, t->a.len); |
| 3237 | p += t->a.len; |
| 3238 | } |
| 3239 | } |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3240 | |
| 3241 | /* |
| 3242 | * We now have a macro name, an implicit parameter count of |
| 3243 | * zero, and a numeric token to use as an expansion. Create |
| 3244 | * and store an SMacro. |
| 3245 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3246 | macro_start = new_Token(NULL, TOK_STRING, NULL, 0); |
| 3247 | macro_start->text = nasm_quote(pp, len); |
| 3248 | nasm_free(pp); |
| 3249 | define_smacro(ctx, mname, casesense, 0, macro_start); |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3250 | free_tlist(tline); |
| 3251 | free_tlist(origline); |
| 3252 | return DIRECTIVE_FOUND; |
| 3253 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3254 | case PP_SUBSTR: |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3255 | { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3256 | int64_t a1, a2; |
| 3257 | size_t len; |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 3258 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3259 | casesense = true; |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 3260 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3261 | tline = tline->next; |
| 3262 | skip_white_(tline); |
| 3263 | tline = expand_id(tline); |
| 3264 | if (!tline || (tline->type != TOK_ID && |
| 3265 | (tline->type != TOK_PREPROC_ID || |
| 3266 | tline->text[1] != '$'))) { |
| 3267 | error(ERR_NONFATAL, |
| 3268 | "`%%substr' expects a macro identifier as first parameter"); |
| 3269 | free_tlist(origline); |
| 3270 | return DIRECTIVE_FOUND; |
| 3271 | } |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3272 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3273 | last = tline; |
| 3274 | tline = expand_smacro(tline->next); |
| 3275 | last->next = NULL; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3276 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3277 | t = tline->next; |
| 3278 | while (tok_type_(t, TOK_WHITESPACE)) |
| 3279 | t = t->next; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 3280 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3281 | /* t should now point to the string */ |
| 3282 | if (t->type != TOK_STRING) { |
| 3283 | error(ERR_NONFATAL, |
| 3284 | "`%%substr` requires string as second parameter"); |
| 3285 | free_tlist(tline); |
| 3286 | free_tlist(origline); |
| 3287 | return DIRECTIVE_FOUND; |
| 3288 | } |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 3289 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3290 | tt = t->next; |
| 3291 | tptr = &tt; |
| 3292 | tokval.t_type = TOKEN_INVALID; |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3293 | evalresult = evaluate(ppscan, tptr, &tokval, NULL, |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3294 | pass, error, NULL); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3295 | if (!evalresult) { |
| 3296 | free_tlist(tline); |
| 3297 | free_tlist(origline); |
| 3298 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3299 | } else if (!is_simple(evalresult)) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3300 | error(ERR_NONFATAL, "non-constant value given to `%%substr`"); |
| 3301 | free_tlist(tline); |
| 3302 | free_tlist(origline); |
| 3303 | return DIRECTIVE_FOUND; |
| 3304 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3305 | a1 = evalresult->value-1; |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3306 | |
| 3307 | while (tok_type_(tt, TOK_WHITESPACE)) |
| 3308 | tt = tt->next; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3309 | if (!tt) { |
| 3310 | a2 = 1; /* Backwards compatibility: one character */ |
| 3311 | } else { |
| 3312 | tokval.t_type = TOKEN_INVALID; |
| 3313 | evalresult = evaluate(ppscan, tptr, &tokval, NULL, |
| 3314 | pass, error, NULL); |
| 3315 | if (!evalresult) { |
| 3316 | free_tlist(tline); |
| 3317 | free_tlist(origline); |
| 3318 | return DIRECTIVE_FOUND; |
| 3319 | } else if (!is_simple(evalresult)) { |
| 3320 | error(ERR_NONFATAL, "non-constant value given to `%%substr`"); |
| 3321 | free_tlist(tline); |
| 3322 | free_tlist(origline); |
| 3323 | return DIRECTIVE_FOUND; |
| 3324 | } |
| 3325 | a2 = evalresult->value; |
| 3326 | } |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3327 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3328 | len = nasm_unquote(t->text, NULL); |
| 3329 | if (a2 < 0) |
| 3330 | a2 = a2+1+len-a1; |
| 3331 | if (a1+a2 > (int64_t)len) |
| 3332 | a2 = len-a1; |
H. Peter Anvin | 1cd0e2d | 2002-04-30 21:00:33 +0000 | [diff] [blame] | 3333 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3334 | macro_start = nasm_malloc(sizeof(*macro_start)); |
| 3335 | macro_start->next = NULL; |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3336 | macro_start->text = nasm_quote((a1 < 0) ? "" : t->text+a1, a2); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3337 | macro_start->type = TOK_STRING; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3338 | macro_start->a.mac = NULL; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3339 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3340 | /* |
| 3341 | * We now have a macro name, an implicit parameter count of |
| 3342 | * zero, and a numeric token to use as an expansion. Create |
| 3343 | * and store an SMacro. |
| 3344 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3345 | define_smacro(ctx, mname, casesense, 0, macro_start); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3346 | free_tlist(tline); |
| 3347 | free_tlist(origline); |
| 3348 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 8cad14b | 2008-06-01 17:23:51 -0700 | [diff] [blame] | 3349 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3350 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3351 | case PP_ASSIGN: |
| 3352 | case PP_IASSIGN: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3353 | casesense = (i == PP_ASSIGN); |
H. Peter Anvin | 4bc9f1d | 2007-10-11 12:52:03 -0700 | [diff] [blame] | 3354 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3355 | tline = tline->next; |
| 3356 | skip_white_(tline); |
| 3357 | tline = expand_id(tline); |
| 3358 | if (!tline || (tline->type != TOK_ID && |
| 3359 | (tline->type != TOK_PREPROC_ID || |
| 3360 | tline->text[1] != '$'))) { |
| 3361 | error(ERR_NONFATAL, |
| 3362 | "`%%%sassign' expects a macro identifier", |
| 3363 | (i == PP_IASSIGN ? "i" : "")); |
| 3364 | free_tlist(origline); |
| 3365 | return DIRECTIVE_FOUND; |
| 3366 | } |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3367 | ctx = get_ctx(tline->text, &mname, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3368 | last = tline; |
| 3369 | tline = expand_smacro(tline->next); |
| 3370 | last->next = NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3371 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3372 | t = tline; |
| 3373 | tptr = &t; |
| 3374 | tokval.t_type = TOKEN_INVALID; |
| 3375 | evalresult = |
| 3376 | evaluate(ppscan, tptr, &tokval, NULL, pass, error, NULL); |
| 3377 | free_tlist(tline); |
| 3378 | if (!evalresult) { |
| 3379 | free_tlist(origline); |
| 3380 | return DIRECTIVE_FOUND; |
| 3381 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3382 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3383 | if (tokval.t_type) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 3384 | error(ERR_WARNING|ERR_PASS1, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3385 | "trailing garbage after expression ignored"); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3386 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3387 | if (!is_simple(evalresult)) { |
| 3388 | error(ERR_NONFATAL, |
| 3389 | "non-constant value given to `%%%sassign'", |
| 3390 | (i == PP_IASSIGN ? "i" : "")); |
| 3391 | free_tlist(origline); |
| 3392 | return DIRECTIVE_FOUND; |
| 3393 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3394 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3395 | macro_start = nasm_malloc(sizeof(*macro_start)); |
| 3396 | macro_start->next = NULL; |
| 3397 | make_tok_num(macro_start, reloc_value(evalresult)); |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3398 | macro_start->a.mac = NULL; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3399 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3400 | /* |
| 3401 | * We now have a macro name, an implicit parameter count of |
| 3402 | * zero, and a numeric token to use as an expansion. Create |
| 3403 | * and store an SMacro. |
| 3404 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3405 | define_smacro(ctx, mname, casesense, 0, macro_start); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3406 | free_tlist(origline); |
| 3407 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3408 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3409 | case PP_LINE: |
| 3410 | /* |
| 3411 | * Syntax is `%line nnn[+mmm] [filename]' |
| 3412 | */ |
| 3413 | tline = tline->next; |
| 3414 | skip_white_(tline); |
| 3415 | if (!tok_type_(tline, TOK_NUMBER)) { |
| 3416 | error(ERR_NONFATAL, "`%%line' expects line number"); |
| 3417 | free_tlist(origline); |
| 3418 | return DIRECTIVE_FOUND; |
| 3419 | } |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 3420 | k = readnum(tline->text, &err); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3421 | m = 1; |
| 3422 | tline = tline->next; |
| 3423 | if (tok_is_(tline, "+")) { |
| 3424 | tline = tline->next; |
| 3425 | if (!tok_type_(tline, TOK_NUMBER)) { |
| 3426 | error(ERR_NONFATAL, "`%%line' expects line increment"); |
| 3427 | free_tlist(origline); |
| 3428 | return DIRECTIVE_FOUND; |
| 3429 | } |
H. Peter Anvin | 7005596 | 2007-10-11 00:05:31 -0700 | [diff] [blame] | 3430 | m = readnum(tline->text, &err); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3431 | tline = tline->next; |
| 3432 | } |
| 3433 | skip_white_(tline); |
| 3434 | src_set_linnum(k); |
| 3435 | istk->lineinc = m; |
| 3436 | if (tline) { |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 3437 | nasm_free(src_set_fname(detoken(tline, false))); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3438 | } |
| 3439 | free_tlist(origline); |
| 3440 | return DIRECTIVE_FOUND; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3441 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3442 | default: |
| 3443 | error(ERR_FATAL, |
| 3444 | "preprocessor directive `%s' not yet implemented", |
H. Peter Anvin | 4169a47 | 2007-09-12 01:29:43 +0000 | [diff] [blame] | 3445 | pp_directives[i]); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3446 | return DIRECTIVE_FOUND; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3447 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3448 | } |
| 3449 | |
| 3450 | /* |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3451 | * Ensure that a macro parameter contains a condition code and |
| 3452 | * nothing else. Return the condition code index if so, or -1 |
| 3453 | * otherwise. |
| 3454 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3455 | static int find_cc(Token * t) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3456 | { |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3457 | Token *tt; |
| 3458 | int i, j, k, m; |
| 3459 | |
H. Peter Anvin | 25a9934 | 2007-09-22 17:45:45 -0700 | [diff] [blame] | 3460 | if (!t) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3461 | return -1; /* Probably a %+ without a space */ |
H. Peter Anvin | 25a9934 | 2007-09-22 17:45:45 -0700 | [diff] [blame] | 3462 | |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3463 | skip_white_(t); |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3464 | if (t->type != TOK_ID) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3465 | return -1; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3466 | tt = t->next; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3467 | skip_white_(tt); |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3468 | if (tt && (tt->type != TOK_OTHER || strcmp(tt->text, ","))) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3469 | return -1; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3470 | |
| 3471 | i = -1; |
Cyrill Gorcunov | a731924 | 2010-06-03 22:04:36 +0400 | [diff] [blame] | 3472 | j = ARRAY_SIZE(conditions); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3473 | while (j - i > 1) { |
| 3474 | k = (j + i) / 2; |
| 3475 | m = nasm_stricmp(t->text, conditions[k]); |
| 3476 | if (m == 0) { |
| 3477 | i = k; |
| 3478 | j = -2; |
| 3479 | break; |
| 3480 | } else if (m < 0) { |
| 3481 | j = k; |
| 3482 | } else |
| 3483 | i = k; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3484 | } |
| 3485 | if (j != -2) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3486 | return -1; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3487 | return i; |
| 3488 | } |
| 3489 | |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3490 | static bool paste_tokens(Token **head, bool handle_paste_tokens) |
| 3491 | { |
| 3492 | Token **tail, *t, *tt; |
| 3493 | Token **paste_head; |
| 3494 | bool did_paste = false; |
| 3495 | char *tmp; |
| 3496 | |
| 3497 | /* Now handle token pasting... */ |
| 3498 | paste_head = NULL; |
| 3499 | tail = head; |
| 3500 | while ((t = *tail) && (tt = t->next)) { |
| 3501 | switch (t->type) { |
| 3502 | case TOK_WHITESPACE: |
| 3503 | if (tt->type == TOK_WHITESPACE) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3504 | /* Zap adjacent whitespace tokens */ |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3505 | t->next = delete_Token(tt); |
| 3506 | } else { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3507 | /* Do not advance paste_head here */ |
| 3508 | tail = &t->next; |
| 3509 | } |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3510 | break; |
| 3511 | case TOK_ID: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3512 | case TOK_PREPROC_ID: |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3513 | case TOK_NUMBER: |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3514 | case TOK_FLOAT: |
| 3515 | { |
| 3516 | size_t len = 0; |
| 3517 | char *tmp, *p; |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3518 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3519 | while (tt && (tt->type == TOK_ID || tt->type == TOK_PREPROC_ID || |
| 3520 | tt->type == TOK_NUMBER || tt->type == TOK_FLOAT || |
| 3521 | tt->type == TOK_OTHER)) { |
| 3522 | len += strlen(tt->text); |
| 3523 | tt = tt->next; |
| 3524 | } |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3525 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3526 | /* |
| 3527 | * Now tt points to the first token after |
| 3528 | * the potential paste area... |
| 3529 | */ |
| 3530 | if (tt != t->next) { |
| 3531 | /* We have at least two tokens... */ |
| 3532 | len += strlen(t->text); |
| 3533 | p = tmp = nasm_malloc(len+1); |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3534 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3535 | while (t != tt) { |
| 3536 | strcpy(p, t->text); |
| 3537 | p = strchr(p, '\0'); |
| 3538 | t = delete_Token(t); |
| 3539 | } |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3540 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3541 | t = *tail = tokenize(tmp); |
| 3542 | nasm_free(tmp); |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3543 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3544 | while (t->next) { |
| 3545 | tail = &t->next; |
| 3546 | t = t->next; |
| 3547 | } |
| 3548 | t->next = tt; /* Attach the remaining token chain */ |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3549 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3550 | did_paste = true; |
| 3551 | } |
| 3552 | paste_head = tail; |
| 3553 | tail = &t->next; |
| 3554 | break; |
| 3555 | } |
| 3556 | case TOK_PASTE: /* %+ */ |
| 3557 | if (handle_paste_tokens) { |
| 3558 | /* Zap %+ and whitespace tokens to the right */ |
| 3559 | while (t && (t->type == TOK_WHITESPACE || |
| 3560 | t->type == TOK_PASTE)) |
| 3561 | t = *tail = delete_Token(t); |
| 3562 | if (!paste_head || !t) |
| 3563 | break; /* Nothing to paste with */ |
| 3564 | tail = paste_head; |
| 3565 | t = *tail; |
| 3566 | tt = t->next; |
| 3567 | while (tok_type_(tt, TOK_WHITESPACE)) |
| 3568 | tt = t->next = delete_Token(tt); |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3569 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3570 | if (tt) { |
| 3571 | tmp = nasm_strcat(t->text, tt->text); |
| 3572 | delete_Token(t); |
| 3573 | tt = delete_Token(tt); |
| 3574 | t = *tail = tokenize(tmp); |
| 3575 | nasm_free(tmp); |
| 3576 | while (t->next) { |
| 3577 | tail = &t->next; |
| 3578 | t = t->next; |
| 3579 | } |
| 3580 | t->next = tt; /* Attach the remaining token chain */ |
| 3581 | did_paste = true; |
| 3582 | } |
| 3583 | paste_head = tail; |
| 3584 | tail = &t->next; |
| 3585 | break; |
| 3586 | } |
| 3587 | /* else fall through */ |
| 3588 | default: |
| 3589 | tail = paste_head = &t->next; |
| 3590 | break; |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3591 | } |
| 3592 | } |
| 3593 | return did_paste; |
| 3594 | } |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3595 | |
| 3596 | /* |
| 3597 | * expands to a list of tokens from %{x:y} |
| 3598 | */ |
| 3599 | static Token *expand_mmac_params_range(MMacro *mac, Token *tline, Token ***last) |
| 3600 | { |
| 3601 | Token *t = tline, **tt, *tm, *head; |
| 3602 | char *pos; |
| 3603 | int fst, lst, j, i; |
| 3604 | |
| 3605 | pos = strchr(tline->text, ':'); |
| 3606 | nasm_assert(pos); |
| 3607 | |
| 3608 | lst = atoi(pos + 1); |
| 3609 | fst = atoi(tline->text + 1); |
| 3610 | |
| 3611 | /* |
| 3612 | * only macros params are accounted so |
| 3613 | * if someone passes %0 -- we reject such |
| 3614 | * value(s) |
| 3615 | */ |
| 3616 | if (lst == 0 || fst == 0) |
| 3617 | goto err; |
| 3618 | |
| 3619 | /* the values should be sane */ |
| 3620 | if ((fst > mac->nparam || fst < -(int)mac->nparam) || |
| 3621 | (lst > mac->nparam || lst < -(int)mac->nparam)) |
| 3622 | goto err; |
| 3623 | |
| 3624 | fst = fst < 0 ? fst + mac->nparam + 1: fst; |
| 3625 | lst = lst < 0 ? lst + mac->nparam + 1: lst; |
| 3626 | |
| 3627 | /* counted from zero */ |
| 3628 | fst--, lst--; |
| 3629 | |
| 3630 | /* |
| 3631 | * it will be at least one token |
| 3632 | */ |
| 3633 | tm = mac->params[(fst + mac->rotate) % mac->nparam]; |
| 3634 | t = new_Token(NULL, tm->type, tm->text, 0); |
| 3635 | head = t, tt = &t->next; |
| 3636 | if (fst < lst) { |
| 3637 | for (i = fst + 1; i <= lst; i++) { |
| 3638 | t = new_Token(NULL, TOK_OTHER, ",", 0); |
| 3639 | *tt = t, tt = &t->next; |
| 3640 | j = (i + mac->rotate) % mac->nparam; |
| 3641 | tm = mac->params[j]; |
| 3642 | t = new_Token(NULL, tm->type, tm->text, 0); |
| 3643 | *tt = t, tt = &t->next; |
| 3644 | } |
| 3645 | } else { |
| 3646 | for (i = fst - 1; i >= lst; i--) { |
| 3647 | t = new_Token(NULL, TOK_OTHER, ",", 0); |
| 3648 | *tt = t, tt = &t->next; |
| 3649 | j = (i + mac->rotate) % mac->nparam; |
| 3650 | tm = mac->params[j]; |
| 3651 | t = new_Token(NULL, tm->type, tm->text, 0); |
| 3652 | *tt = t, tt = &t->next; |
| 3653 | } |
| 3654 | } |
| 3655 | |
| 3656 | *last = tt; |
| 3657 | return head; |
| 3658 | |
| 3659 | err: |
| 3660 | error(ERR_NONFATAL, "`%%{%s}': macro parameters out of range", |
| 3661 | &tline->text[1]); |
| 3662 | return tline; |
| 3663 | } |
| 3664 | |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3665 | /* |
| 3666 | * Expand MMacro-local things: parameter references (%0, %n, %+n, |
H. Peter Anvin | 67c6372 | 2008-10-26 23:49:00 -0700 | [diff] [blame] | 3667 | * %-n) and MMacro-local identifiers (%%foo) as well as |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3668 | * macro indirection (%[...]) and range (%{..:..}). |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3669 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3670 | static Token *expand_mmac_params(Token * tline) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3671 | { |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 3672 | Token *t, *tt, **tail, *thead; |
H. Peter Anvin | 6125b62 | 2009-04-08 14:02:25 -0700 | [diff] [blame] | 3673 | bool changed = false; |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3674 | char *pos; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3675 | |
| 3676 | tail = &thead; |
| 3677 | thead = NULL; |
| 3678 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3679 | while (tline) { |
| 3680 | if (tline->type == TOK_PREPROC_ID && |
Cyrill Gorcunov | ca61119 | 2010-06-04 09:22:12 +0400 | [diff] [blame] | 3681 | (((tline->text[1] == '+' || tline->text[1] == '-') && tline->text[2]) || |
| 3682 | (tline->text[1] >= '0' && tline->text[1] <= '9') || |
| 3683 | tline->text[1] == '%')) { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 3684 | char *text = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3685 | int type = 0, cc; /* type = 0 to placate optimisers */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 3686 | char tmpbuf[30]; |
H. Peter Anvin | 25a9934 | 2007-09-22 17:45:45 -0700 | [diff] [blame] | 3687 | unsigned int n; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3688 | int i; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3689 | MMacro *mac; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3690 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3691 | t = tline; |
| 3692 | tline = tline->next; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3693 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3694 | mac = istk->mstk; |
| 3695 | while (mac && !mac->name) /* avoid mistaking %reps for macros */ |
| 3696 | mac = mac->next_active; |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3697 | if (!mac) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3698 | error(ERR_NONFATAL, "`%s': not in a macro call", t->text); |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3699 | } else { |
| 3700 | pos = strchr(t->text, ':'); |
| 3701 | if (!pos) { |
| 3702 | switch (t->text[1]) { |
| 3703 | /* |
| 3704 | * We have to make a substitution of one of the |
| 3705 | * forms %1, %-1, %+1, %%foo, %0. |
| 3706 | */ |
| 3707 | case '0': |
| 3708 | type = TOK_NUMBER; |
| 3709 | snprintf(tmpbuf, sizeof(tmpbuf), "%d", mac->nparam); |
| 3710 | text = nasm_strdup(tmpbuf); |
| 3711 | break; |
| 3712 | case '%': |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3713 | type = TOK_ID; |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3714 | snprintf(tmpbuf, sizeof(tmpbuf), "..@%"PRIu64".", |
| 3715 | mac->unique); |
| 3716 | text = nasm_strcat(tmpbuf, t->text + 2); |
| 3717 | break; |
| 3718 | case '-': |
| 3719 | n = atoi(t->text + 2) - 1; |
| 3720 | if (n >= mac->nparam) |
| 3721 | tt = NULL; |
| 3722 | else { |
| 3723 | if (mac->nparam > 1) |
| 3724 | n = (n + mac->rotate) % mac->nparam; |
| 3725 | tt = mac->params[n]; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3726 | } |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3727 | cc = find_cc(tt); |
| 3728 | if (cc == -1) { |
| 3729 | error(ERR_NONFATAL, |
| 3730 | "macro parameter %d is not a condition code", |
| 3731 | n + 1); |
| 3732 | text = NULL; |
| 3733 | } else { |
| 3734 | type = TOK_ID; |
| 3735 | if (inverse_ccs[cc] == -1) { |
| 3736 | error(ERR_NONFATAL, |
| 3737 | "condition code `%s' is not invertible", |
| 3738 | conditions[cc]); |
| 3739 | text = NULL; |
| 3740 | } else |
| 3741 | text = nasm_strdup(conditions[inverse_ccs[cc]]); |
| 3742 | } |
| 3743 | break; |
| 3744 | case '+': |
| 3745 | n = atoi(t->text + 2) - 1; |
| 3746 | if (n >= mac->nparam) |
| 3747 | tt = NULL; |
| 3748 | else { |
| 3749 | if (mac->nparam > 1) |
| 3750 | n = (n + mac->rotate) % mac->nparam; |
| 3751 | tt = mac->params[n]; |
| 3752 | } |
| 3753 | cc = find_cc(tt); |
| 3754 | if (cc == -1) { |
| 3755 | error(ERR_NONFATAL, |
| 3756 | "macro parameter %d is not a condition code", |
| 3757 | n + 1); |
| 3758 | text = NULL; |
| 3759 | } else { |
| 3760 | type = TOK_ID; |
| 3761 | text = nasm_strdup(conditions[cc]); |
| 3762 | } |
| 3763 | break; |
| 3764 | default: |
| 3765 | n = atoi(t->text + 1) - 1; |
| 3766 | if (n >= mac->nparam) |
| 3767 | tt = NULL; |
| 3768 | else { |
| 3769 | if (mac->nparam > 1) |
| 3770 | n = (n + mac->rotate) % mac->nparam; |
| 3771 | tt = mac->params[n]; |
| 3772 | } |
| 3773 | if (tt) { |
| 3774 | for (i = 0; i < mac->paramlen[n]; i++) { |
| 3775 | *tail = new_Token(NULL, tt->type, tt->text, 0); |
| 3776 | tail = &(*tail)->next; |
| 3777 | tt = tt->next; |
| 3778 | } |
| 3779 | } |
| 3780 | text = NULL; /* we've done it here */ |
| 3781 | break; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3782 | } |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3783 | } else { |
| 3784 | /* |
| 3785 | * seems we have a parameters range here |
| 3786 | */ |
| 3787 | Token *head, **last; |
| 3788 | head = expand_mmac_params_range(mac, t, &last); |
| 3789 | if (head != t) { |
| 3790 | *tail = head; |
| 3791 | *last = tline; |
| 3792 | tline = head; |
| 3793 | text = NULL; |
| 3794 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3795 | } |
Cyrill Gorcunov | c29404d | 2010-06-05 01:50:23 +0400 | [diff] [blame^] | 3796 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3797 | if (!text) { |
| 3798 | delete_Token(t); |
| 3799 | } else { |
| 3800 | *tail = t; |
| 3801 | tail = &t->next; |
| 3802 | t->type = type; |
| 3803 | nasm_free(t->text); |
| 3804 | t->text = text; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3805 | t->a.mac = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3806 | } |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3807 | changed = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3808 | continue; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3809 | } else if (tline->type == TOK_INDIRECT) { |
| 3810 | t = tline; |
| 3811 | tline = tline->next; |
| 3812 | tt = tokenize(t->text); |
| 3813 | tt = expand_mmac_params(tt); |
| 3814 | tt = expand_smacro(tt); |
| 3815 | *tail = tt; |
| 3816 | while (tt) { |
| 3817 | tt->a.mac = NULL; /* Necessary? */ |
| 3818 | tail = &tt->next; |
| 3819 | tt = tt->next; |
| 3820 | } |
| 3821 | delete_Token(t); |
| 3822 | changed = true; |
Cyrill Gorcunov | ec88c1b | 2010-06-02 00:59:21 +0400 | [diff] [blame] | 3823 | } else if (tline->type == TOK_PREPROC_ID && |
| 3824 | tline->text[0] == '%' && tline->text[1] == '$' && |
| 3825 | (tok_type_(tline->next, TOK_ID) || |
| 3826 | tok_type_(tline->next, TOK_PREPROC_ID) || |
Cyrill Gorcunov | 51fd86e | 2010-06-02 11:57:05 +0400 | [diff] [blame] | 3827 | tok_type_(tline->next, TOK_FLOAT) || |
Cyrill Gorcunov | ec88c1b | 2010-06-02 00:59:21 +0400 | [diff] [blame] | 3828 | tok_type_(tline->next, TOK_NUMBER) || |
Cyrill Gorcunov | 51fd86e | 2010-06-02 11:57:05 +0400 | [diff] [blame] | 3829 | tok_type_(tline->next, TOK_OTHER))) { |
Cyrill Gorcunov | ec88c1b | 2010-06-02 00:59:21 +0400 | [diff] [blame] | 3830 | /* |
| 3831 | * In a sake of backward compatibility we allow |
| 3832 | * to expand local single macro that early before |
| 3833 | * pasting token code have place |
| 3834 | * |
| 3835 | * NOTE: that new code MUST use %+ macro to obtain |
| 3836 | * same result |
| 3837 | */ |
| 3838 | t = tline; |
| 3839 | tline = tline->next; |
| 3840 | tt = tokenize(t->text); |
| 3841 | tt = expand_smacro(tt); |
| 3842 | *tail = tt; |
| 3843 | while (tt) { |
| 3844 | tt->a.mac = NULL; |
| 3845 | tail = &tt->next; |
| 3846 | tt = tt->next; |
| 3847 | } |
| 3848 | delete_Token(t); |
| 3849 | changed = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3850 | } else { |
| 3851 | t = *tail = tline; |
| 3852 | tline = tline->next; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3853 | t->a.mac = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3854 | tail = &t->next; |
| 3855 | } |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3856 | } |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3857 | *tail = NULL; |
H. Peter Anvin | 67c6372 | 2008-10-26 23:49:00 -0700 | [diff] [blame] | 3858 | |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3859 | if (changed) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3860 | paste_tokens(&thead, false); |
H. Peter Anvin | 6125b62 | 2009-04-08 14:02:25 -0700 | [diff] [blame] | 3861 | |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 3862 | return thead; |
| 3863 | } |
| 3864 | |
| 3865 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3866 | * Expand all single-line macro calls made in the given line. |
| 3867 | * Return the expanded version of the line. The original is deemed |
| 3868 | * to be destroyed in the process. (In reality we'll just move |
| 3869 | * Tokens from input to output a lot of the time, rather than |
| 3870 | * actually bothering to destroy and replicate.) |
| 3871 | */ |
H. Peter Anvin | cb1cf59 | 2007-11-19 12:26:50 -0800 | [diff] [blame] | 3872 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3873 | static Token *expand_smacro(Token * tline) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3874 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3875 | Token *t, *tt, *mstart, **tail, *thead; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 3876 | SMacro *head = NULL, *m; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3877 | Token **params; |
| 3878 | int *paramsize; |
H. Peter Anvin | 25a9934 | 2007-09-22 17:45:45 -0700 | [diff] [blame] | 3879 | unsigned int nparam, sparam; |
H. Peter Anvin | d784a08 | 2009-04-20 14:01:18 -0700 | [diff] [blame] | 3880 | int brackets; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 3881 | Token *org_tline = tline; |
| 3882 | Context *ctx; |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3883 | const char *mname; |
H. Peter Anvin | 2a15e69 | 2007-11-19 13:14:59 -0800 | [diff] [blame] | 3884 | int deadman = DEADMAN_LIMIT; |
H. Peter Anvin | 8287daf | 2009-07-07 16:00:58 -0700 | [diff] [blame] | 3885 | bool expanded; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3886 | |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 3887 | /* |
| 3888 | * Trick: we should avoid changing the start token pointer since it can |
| 3889 | * be contained in "next" field of other token. Because of this |
| 3890 | * we allocate a copy of first token and work with it; at the end of |
| 3891 | * routine we copy it back |
| 3892 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3893 | if (org_tline) { |
Cyrill Gorcunov | ed4a805 | 2010-04-09 15:40:35 +0400 | [diff] [blame] | 3894 | tline = new_Token(org_tline->next, org_tline->type, |
| 3895 | org_tline->text, 0); |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3896 | tline->a.mac = org_tline->a.mac; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3897 | nasm_free(org_tline->text); |
| 3898 | org_tline->text = NULL; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 3899 | } |
| 3900 | |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3901 | expanded = true; /* Always expand %+ at least once */ |
H. Peter Anvin | 8287daf | 2009-07-07 16:00:58 -0700 | [diff] [blame] | 3902 | |
H. Peter Anvin | cb1cf59 | 2007-11-19 12:26:50 -0800 | [diff] [blame] | 3903 | again: |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3904 | thead = NULL; |
Cyrill Gorcunov | ed4a805 | 2010-04-09 15:40:35 +0400 | [diff] [blame] | 3905 | tail = &thead; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 3906 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3907 | while (tline) { /* main token loop */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3908 | if (!--deadman) { |
| 3909 | error(ERR_NONFATAL, "interminable macro recursion"); |
Cyrill Gorcunov | bd38c8f | 2009-11-21 11:11:23 +0300 | [diff] [blame] | 3910 | goto err; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3911 | } |
H. Peter Anvin | cb1cf59 | 2007-11-19 12:26:50 -0800 | [diff] [blame] | 3912 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3913 | if ((mname = tline->text)) { |
| 3914 | /* if this token is a local macro, look in local context */ |
Cyrill Gorcunov | c56d9ad | 2010-02-11 15:12:19 +0300 | [diff] [blame] | 3915 | if (tline->type == TOK_ID) { |
| 3916 | head = (SMacro *)hash_findix(&smacros, mname); |
| 3917 | } else if (tline->type == TOK_PREPROC_ID) { |
H. Peter Anvin | f8ad532 | 2009-02-21 17:55:08 -0800 | [diff] [blame] | 3918 | ctx = get_ctx(mname, &mname, true); |
Cyrill Gorcunov | c56d9ad | 2010-02-11 15:12:19 +0300 | [diff] [blame] | 3919 | head = ctx ? (SMacro *)hash_findix(&ctx->localmac, mname) : NULL; |
| 3920 | } else |
| 3921 | head = NULL; |
H. Peter Anvin | 072771e | 2008-05-22 13:17:51 -0700 | [diff] [blame] | 3922 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3923 | /* |
| 3924 | * We've hit an identifier. As in is_mmacro below, we first |
| 3925 | * check whether the identifier is a single-line macro at |
| 3926 | * all, then think about checking for parameters if |
| 3927 | * necessary. |
| 3928 | */ |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 3929 | list_for_each(m, head) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3930 | if (!mstrcmp(m->name, mname, m->casesense)) |
| 3931 | break; |
| 3932 | if (m) { |
| 3933 | mstart = tline; |
| 3934 | params = NULL; |
| 3935 | paramsize = NULL; |
| 3936 | if (m->nparam == 0) { |
| 3937 | /* |
| 3938 | * Simple case: the macro is parameterless. Discard the |
| 3939 | * one token that the macro call took, and push the |
| 3940 | * expansion back on the to-do stack. |
| 3941 | */ |
| 3942 | if (!m->expansion) { |
| 3943 | if (!strcmp("__FILE__", m->name)) { |
| 3944 | int32_t num = 0; |
| 3945 | char *file = NULL; |
| 3946 | src_get(&num, &file); |
| 3947 | tline->text = nasm_quote(file, strlen(file)); |
| 3948 | tline->type = TOK_STRING; |
| 3949 | nasm_free(file); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3950 | continue; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3951 | } |
| 3952 | if (!strcmp("__LINE__", m->name)) { |
| 3953 | nasm_free(tline->text); |
| 3954 | make_tok_num(tline, src_get_linnum()); |
| 3955 | continue; |
| 3956 | } |
| 3957 | if (!strcmp("__BITS__", m->name)) { |
| 3958 | nasm_free(tline->text); |
| 3959 | make_tok_num(tline, globalbits); |
| 3960 | continue; |
| 3961 | } |
| 3962 | tline = delete_Token(tline); |
| 3963 | continue; |
| 3964 | } |
| 3965 | } else { |
| 3966 | /* |
| 3967 | * Complicated case: at least one macro with this name |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3968 | * exists and takes parameters. We must find the |
| 3969 | * parameters in the call, count them, find the SMacro |
| 3970 | * that corresponds to that form of the macro call, and |
| 3971 | * substitute for the parameters when we expand. What a |
| 3972 | * pain. |
| 3973 | */ |
| 3974 | /*tline = tline->next; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 3975 | skip_white_(tline); */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3976 | do { |
| 3977 | t = tline->next; |
| 3978 | while (tok_type_(t, TOK_SMAC_END)) { |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 3979 | t->a.mac->in_progress = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 3980 | t->text = NULL; |
| 3981 | t = tline->next = delete_Token(t); |
| 3982 | } |
| 3983 | tline = t; |
| 3984 | } while (tok_type_(tline, TOK_WHITESPACE)); |
| 3985 | if (!tok_is_(tline, "(")) { |
| 3986 | /* |
| 3987 | * This macro wasn't called with parameters: ignore |
| 3988 | * the call. (Behaviour borrowed from gnu cpp.) |
| 3989 | */ |
| 3990 | tline = mstart; |
| 3991 | m = NULL; |
| 3992 | } else { |
| 3993 | int paren = 0; |
| 3994 | int white = 0; |
| 3995 | brackets = 0; |
| 3996 | nparam = 0; |
| 3997 | sparam = PARAM_DELTA; |
| 3998 | params = nasm_malloc(sparam * sizeof(Token *)); |
| 3999 | params[0] = tline->next; |
| 4000 | paramsize = nasm_malloc(sparam * sizeof(int)); |
| 4001 | paramsize[0] = 0; |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 4002 | while (true) { /* parameter loop */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4003 | /* |
| 4004 | * For some unusual expansions |
| 4005 | * which concatenates function call |
| 4006 | */ |
| 4007 | t = tline->next; |
| 4008 | while (tok_type_(t, TOK_SMAC_END)) { |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 4009 | t->a.mac->in_progress = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4010 | t->text = NULL; |
| 4011 | t = tline->next = delete_Token(t); |
| 4012 | } |
| 4013 | tline = t; |
Nickolay Yurchenko | 9aea715 | 2003-09-07 22:46:26 +0000 | [diff] [blame] | 4014 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4015 | if (!tline) { |
| 4016 | error(ERR_NONFATAL, |
| 4017 | "macro call expects terminating `)'"); |
| 4018 | break; |
| 4019 | } |
| 4020 | if (tline->type == TOK_WHITESPACE |
| 4021 | && brackets <= 0) { |
| 4022 | if (paramsize[nparam]) |
| 4023 | white++; |
| 4024 | else |
| 4025 | params[nparam] = tline->next; |
| 4026 | continue; /* parameter loop */ |
| 4027 | } |
| 4028 | if (tline->type == TOK_OTHER |
| 4029 | && tline->text[1] == 0) { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4030 | char ch = tline->text[0]; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4031 | if (ch == ',' && !paren && brackets <= 0) { |
| 4032 | if (++nparam >= sparam) { |
| 4033 | sparam += PARAM_DELTA; |
| 4034 | params = nasm_realloc(params, |
Cyrill Gorcunov | ed4a805 | 2010-04-09 15:40:35 +0400 | [diff] [blame] | 4035 | sparam * sizeof(Token *)); |
| 4036 | paramsize = nasm_realloc(paramsize, |
| 4037 | sparam * sizeof(int)); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4038 | } |
| 4039 | params[nparam] = tline->next; |
| 4040 | paramsize[nparam] = 0; |
| 4041 | white = 0; |
| 4042 | continue; /* parameter loop */ |
| 4043 | } |
| 4044 | if (ch == '{' && |
| 4045 | (brackets > 0 || (brackets == 0 && |
| 4046 | !paramsize[nparam]))) |
| 4047 | { |
| 4048 | if (!(brackets++)) { |
| 4049 | params[nparam] = tline->next; |
| 4050 | continue; /* parameter loop */ |
| 4051 | } |
| 4052 | } |
| 4053 | if (ch == '}' && brackets > 0) |
| 4054 | if (--brackets == 0) { |
| 4055 | brackets = -1; |
| 4056 | continue; /* parameter loop */ |
| 4057 | } |
| 4058 | if (ch == '(' && !brackets) |
| 4059 | paren++; |
| 4060 | if (ch == ')' && brackets <= 0) |
| 4061 | if (--paren < 0) |
| 4062 | break; |
| 4063 | } |
| 4064 | if (brackets < 0) { |
| 4065 | brackets = 0; |
| 4066 | error(ERR_NONFATAL, "braces do not " |
| 4067 | "enclose all of macro parameter"); |
| 4068 | } |
| 4069 | paramsize[nparam] += white + 1; |
| 4070 | white = 0; |
| 4071 | } /* parameter loop */ |
| 4072 | nparam++; |
| 4073 | while (m && (m->nparam != nparam || |
| 4074 | mstrcmp(m->name, mname, |
| 4075 | m->casesense))) |
| 4076 | m = m->next; |
| 4077 | if (!m) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 4078 | error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4079 | "macro `%s' exists, " |
| 4080 | "but not taking %d parameters", |
| 4081 | mstart->text, nparam); |
| 4082 | } |
| 4083 | } |
| 4084 | if (m && m->in_progress) |
| 4085 | m = NULL; |
| 4086 | if (!m) { /* in progess or didn't find '(' or wrong nparam */ |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 4087 | /* |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4088 | * Design question: should we handle !tline, which |
| 4089 | * indicates missing ')' here, or expand those |
| 4090 | * macros anyway, which requires the (t) test a few |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 4091 | * lines down? |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4092 | */ |
| 4093 | nasm_free(params); |
| 4094 | nasm_free(paramsize); |
| 4095 | tline = mstart; |
| 4096 | } else { |
| 4097 | /* |
| 4098 | * Expand the macro: we are placed on the last token of the |
| 4099 | * call, so that we can easily split the call from the |
| 4100 | * following tokens. We also start by pushing an SMAC_END |
| 4101 | * token for the cycle removal. |
| 4102 | */ |
| 4103 | t = tline; |
| 4104 | if (t) { |
| 4105 | tline = t->next; |
| 4106 | t->next = NULL; |
| 4107 | } |
| 4108 | tt = new_Token(tline, TOK_SMAC_END, NULL, 0); |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 4109 | tt->a.mac = m; |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 4110 | m->in_progress = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4111 | tline = tt; |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 4112 | list_for_each(t, m->expansion) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4113 | if (t->type >= TOK_SMAC_PARAM) { |
| 4114 | Token *pcopy = tline, **ptail = &pcopy; |
| 4115 | Token *ttt, *pt; |
| 4116 | int i; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4117 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4118 | ttt = params[t->type - TOK_SMAC_PARAM]; |
Cyrill Gorcunov | ed4a805 | 2010-04-09 15:40:35 +0400 | [diff] [blame] | 4119 | i = paramsize[t->type - TOK_SMAC_PARAM]; |
| 4120 | while (--i >= 0) { |
| 4121 | pt = *ptail = new_Token(tline, ttt->type, |
| 4122 | ttt->text, 0); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4123 | ptail = &pt->next; |
| 4124 | ttt = ttt->next; |
| 4125 | } |
| 4126 | tline = pcopy; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4127 | } else if (t->type == TOK_PREPROC_Q) { |
| 4128 | tt = new_Token(tline, TOK_ID, mname, 0); |
| 4129 | tline = tt; |
| 4130 | } else if (t->type == TOK_PREPROC_QQ) { |
| 4131 | tt = new_Token(tline, TOK_ID, m->name, 0); |
| 4132 | tline = tt; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4133 | } else { |
| 4134 | tt = new_Token(tline, t->type, t->text, 0); |
| 4135 | tline = tt; |
| 4136 | } |
| 4137 | } |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4138 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4139 | /* |
| 4140 | * Having done that, get rid of the macro call, and clean |
| 4141 | * up the parameters. |
| 4142 | */ |
| 4143 | nasm_free(params); |
| 4144 | nasm_free(paramsize); |
| 4145 | free_tlist(mstart); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4146 | expanded = true; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4147 | continue; /* main token loop */ |
| 4148 | } |
| 4149 | } |
| 4150 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4151 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4152 | if (tline->type == TOK_SMAC_END) { |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 4153 | tline->a.mac->in_progress = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4154 | tline = delete_Token(tline); |
| 4155 | } else { |
| 4156 | t = *tail = tline; |
| 4157 | tline = tline->next; |
H. Peter Anvin | f26e097 | 2008-07-01 21:26:27 -0700 | [diff] [blame] | 4158 | t->a.mac = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4159 | t->next = NULL; |
| 4160 | tail = &t->next; |
| 4161 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4162 | } |
| 4163 | |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4164 | /* |
| 4165 | * Now scan the entire line and look for successive TOK_IDs that resulted |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 4166 | * after expansion (they can't be produced by tokenize()). The successive |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4167 | * TOK_IDs should be concatenated. |
| 4168 | * Also we look for %+ tokens and concatenate the tokens before and after |
| 4169 | * them (without white spaces in between). |
| 4170 | */ |
H. Peter Anvin | 8287daf | 2009-07-07 16:00:58 -0700 | [diff] [blame] | 4171 | if (expanded && paste_tokens(&thead, true)) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4172 | /* |
| 4173 | * If we concatenated something, *and* we had previously expanded |
| 4174 | * an actual macro, scan the lines again for macros... |
| 4175 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4176 | tline = thead; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4177 | expanded = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4178 | goto again; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4179 | } |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4180 | |
Cyrill Gorcunov | bd38c8f | 2009-11-21 11:11:23 +0300 | [diff] [blame] | 4181 | err: |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4182 | if (org_tline) { |
| 4183 | if (thead) { |
| 4184 | *org_tline = *thead; |
| 4185 | /* since we just gave text to org_line, don't free it */ |
| 4186 | thead->text = NULL; |
| 4187 | delete_Token(thead); |
| 4188 | } else { |
| 4189 | /* the expression expanded to empty line; |
| 4190 | we can't return NULL for some reasons |
| 4191 | we just set the line to a single WHITESPACE token. */ |
| 4192 | memset(org_tline, 0, sizeof(*org_tline)); |
| 4193 | org_tline->text = NULL; |
| 4194 | org_tline->type = TOK_WHITESPACE; |
| 4195 | } |
| 4196 | thead = org_tline; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4197 | } |
| 4198 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4199 | return thead; |
| 4200 | } |
| 4201 | |
| 4202 | /* |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4203 | * Similar to expand_smacro but used exclusively with macro identifiers |
| 4204 | * right before they are fetched in. The reason is that there can be |
| 4205 | * identifiers consisting of several subparts. We consider that if there |
| 4206 | * are more than one element forming the name, user wants a expansion, |
| 4207 | * otherwise it will be left as-is. Example: |
| 4208 | * |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4209 | * %define %$abc cde |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4210 | * |
| 4211 | * the identifier %$abc will be left as-is so that the handler for %define |
| 4212 | * will suck it and define the corresponding value. Other case: |
| 4213 | * |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4214 | * %define _%$abc cde |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4215 | * |
| 4216 | * In this case user wants name to be expanded *before* %define starts |
| 4217 | * working, so we'll expand %$abc into something (if it has a value; |
| 4218 | * otherwise it will be left as-is) then concatenate all successive |
| 4219 | * PP_IDs into one. |
| 4220 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4221 | static Token *expand_id(Token * tline) |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4222 | { |
| 4223 | Token *cur, *oldnext = NULL; |
| 4224 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4225 | if (!tline || !tline->next) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4226 | return tline; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4227 | |
| 4228 | cur = tline; |
| 4229 | while (cur->next && |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4230 | (cur->next->type == TOK_ID || |
| 4231 | cur->next->type == TOK_PREPROC_ID |
| 4232 | || cur->next->type == TOK_NUMBER)) |
| 4233 | cur = cur->next; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4234 | |
| 4235 | /* If identifier consists of just one token, don't expand */ |
| 4236 | if (cur == tline) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4237 | return tline; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4238 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4239 | if (cur) { |
| 4240 | oldnext = cur->next; /* Detach the tail past identifier */ |
| 4241 | cur->next = NULL; /* so that expand_smacro stops here */ |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4242 | } |
| 4243 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4244 | tline = expand_smacro(tline); |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4245 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4246 | if (cur) { |
| 4247 | /* expand_smacro possibly changhed tline; re-scan for EOL */ |
| 4248 | cur = tline; |
| 4249 | while (cur && cur->next) |
| 4250 | cur = cur->next; |
| 4251 | if (cur) |
| 4252 | cur->next = oldnext; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4253 | } |
| 4254 | |
| 4255 | return tline; |
| 4256 | } |
| 4257 | |
| 4258 | /* |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4259 | * Determine whether the given line constitutes a multi-line macro |
| 4260 | * call, and return the MMacro structure called if so. Doesn't have |
| 4261 | * to check for an initial label - that's taken care of in |
| 4262 | * expand_mmacro - but must check numbers of parameters. Guaranteed |
| 4263 | * to be called with tline->type == TOK_ID, so the putative macro |
| 4264 | * name is easy to find. |
| 4265 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4266 | static MMacro *is_mmacro(Token * tline, Token *** params_array) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4267 | { |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4268 | MMacro *head, *m; |
| 4269 | Token **params; |
| 4270 | int nparam; |
| 4271 | |
H. Peter Anvin | 166c247 | 2008-05-28 12:28:58 -0700 | [diff] [blame] | 4272 | head = (MMacro *) hash_findix(&mmacros, tline->text); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4273 | |
| 4274 | /* |
| 4275 | * Efficiency: first we see if any macro exists with the given |
| 4276 | * name. If not, we can return NULL immediately. _Then_ we |
| 4277 | * count the parameters, and then we look further along the |
| 4278 | * list if necessary to find the proper MMacro. |
| 4279 | */ |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 4280 | list_for_each(m, head) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4281 | if (!mstrcmp(m->name, tline->text, m->casesense)) |
| 4282 | break; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4283 | if (!m) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4284 | return NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4285 | |
| 4286 | /* |
| 4287 | * OK, we have a potential macro. Count and demarcate the |
| 4288 | * parameters. |
| 4289 | */ |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4290 | count_mmac_params(tline->next, &nparam, ¶ms); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4291 | |
| 4292 | /* |
| 4293 | * So we know how many parameters we've got. Find the MMacro |
| 4294 | * structure that handles this number. |
| 4295 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4296 | while (m) { |
| 4297 | if (m->nparam_min <= nparam |
| 4298 | && (m->plus || nparam <= m->nparam_max)) { |
| 4299 | /* |
| 4300 | * This one is right. Just check if cycle removal |
| 4301 | * prohibits us using it before we actually celebrate... |
| 4302 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4303 | if (m->in_progress > m->max_depth) { |
| 4304 | if (m->max_depth > 0) { |
| 4305 | error(ERR_WARNING, |
| 4306 | "reached maximum recursion depth of %i", |
| 4307 | m->max_depth); |
| 4308 | } |
| 4309 | nasm_free(params); |
| 4310 | return NULL; |
| 4311 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4312 | /* |
| 4313 | * It's right, and we can use it. Add its default |
| 4314 | * parameters to the end of our list if necessary. |
| 4315 | */ |
| 4316 | if (m->defaults && nparam < m->nparam_min + m->ndefs) { |
| 4317 | params = |
| 4318 | nasm_realloc(params, |
| 4319 | ((m->nparam_min + m->ndefs + |
| 4320 | 1) * sizeof(*params))); |
| 4321 | while (nparam < m->nparam_min + m->ndefs) { |
| 4322 | params[nparam] = m->defaults[nparam - m->nparam_min]; |
| 4323 | nparam++; |
| 4324 | } |
| 4325 | } |
| 4326 | /* |
| 4327 | * If we've gone over the maximum parameter count (and |
| 4328 | * we're in Plus mode), ignore parameters beyond |
| 4329 | * nparam_max. |
| 4330 | */ |
| 4331 | if (m->plus && nparam > m->nparam_max) |
| 4332 | nparam = m->nparam_max; |
| 4333 | /* |
| 4334 | * Then terminate the parameter list, and leave. |
| 4335 | */ |
| 4336 | if (!params) { /* need this special case */ |
| 4337 | params = nasm_malloc(sizeof(*params)); |
| 4338 | nparam = 0; |
| 4339 | } |
| 4340 | params[nparam] = NULL; |
| 4341 | *params_array = params; |
| 4342 | return m; |
| 4343 | } |
| 4344 | /* |
| 4345 | * This one wasn't right: look for the next one with the |
| 4346 | * same name. |
| 4347 | */ |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 4348 | list_for_each(m, m->next) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4349 | if (!mstrcmp(m->name, tline->text, m->casesense)) |
| 4350 | break; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4351 | } |
| 4352 | |
| 4353 | /* |
| 4354 | * After all that, we didn't find one with the right number of |
| 4355 | * parameters. Issue a warning, and fail to expand the macro. |
| 4356 | */ |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 4357 | error(ERR_WARNING|ERR_PASS1|ERR_WARN_MNP, |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4358 | "macro `%s' exists, but not taking %d parameters", |
| 4359 | tline->text, nparam); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4360 | nasm_free(params); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4361 | return NULL; |
| 4362 | } |
| 4363 | |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 4364 | |
| 4365 | /* |
| 4366 | * Save MMacro invocation specific fields in |
| 4367 | * preparation for a recursive macro expansion |
| 4368 | */ |
| 4369 | static void push_mmacro(MMacro *m) |
| 4370 | { |
| 4371 | MMacroInvocation *i; |
| 4372 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4373 | i = nasm_malloc(sizeof(MMacroInvocation)); |
| 4374 | i->prev = m->prev; |
| 4375 | i->params = m->params; |
| 4376 | i->iline = m->iline; |
| 4377 | i->nparam = m->nparam; |
| 4378 | i->rotate = m->rotate; |
| 4379 | i->paramlen = m->paramlen; |
| 4380 | i->unique = m->unique; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4381 | i->condcnt = m->condcnt; |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4382 | m->prev = i; |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 4383 | } |
| 4384 | |
| 4385 | |
| 4386 | /* |
| 4387 | * Restore MMacro invocation specific fields that were |
| 4388 | * saved during a previous recursive macro expansion |
| 4389 | */ |
| 4390 | static void pop_mmacro(MMacro *m) |
| 4391 | { |
| 4392 | MMacroInvocation *i; |
| 4393 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4394 | if (m->prev) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4395 | i = m->prev; |
| 4396 | m->prev = i->prev; |
| 4397 | m->params = i->params; |
| 4398 | m->iline = i->iline; |
| 4399 | m->nparam = i->nparam; |
| 4400 | m->rotate = i->rotate; |
| 4401 | m->paramlen = i->paramlen; |
| 4402 | m->unique = i->unique; |
| 4403 | m->condcnt = i->condcnt; |
| 4404 | nasm_free(i); |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4405 | } |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 4406 | } |
| 4407 | |
| 4408 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4409 | /* |
| 4410 | * Expand the multi-line macro call made by the given line, if |
| 4411 | * there is one to be expanded. If there is, push the expansion on |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4412 | * istk->expansion and return 1. Otherwise return 0. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4413 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4414 | static int expand_mmacro(Token * tline) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4415 | { |
| 4416 | Token *startline = tline; |
| 4417 | Token *label = NULL; |
| 4418 | int dont_prepend = 0; |
H. Peter Anvin | ce2233b | 2008-05-25 21:57:00 -0700 | [diff] [blame] | 4419 | Token **params, *t, *mtok, *tt; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4420 | MMacro *m; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4421 | Line *l, *ll; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4422 | int i, nparam, *paramlen; |
H. Peter Anvin | c751e86 | 2008-06-09 10:18:45 -0700 | [diff] [blame] | 4423 | const char *mname; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4424 | |
| 4425 | t = tline; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4426 | skip_white_(t); |
H. Peter Anvin | ce2233b | 2008-05-25 21:57:00 -0700 | [diff] [blame] | 4427 | /* if (!tok_type_(t, TOK_ID)) Lino 02/25/02 */ |
H. Peter Anvin | dce1e2f | 2002-04-30 21:06:37 +0000 | [diff] [blame] | 4428 | if (!tok_type_(t, TOK_ID) && !tok_type_(t, TOK_PREPROC_ID)) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4429 | return 0; |
H. Peter Anvin | ce2233b | 2008-05-25 21:57:00 -0700 | [diff] [blame] | 4430 | mtok = t; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4431 | m = is_mmacro(t, ¶ms); |
H. Peter Anvin | c751e86 | 2008-06-09 10:18:45 -0700 | [diff] [blame] | 4432 | if (m) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4433 | mname = t->text; |
H. Peter Anvin | c751e86 | 2008-06-09 10:18:45 -0700 | [diff] [blame] | 4434 | } else { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4435 | Token *last; |
| 4436 | /* |
| 4437 | * We have an id which isn't a macro call. We'll assume |
| 4438 | * it might be a label; we'll also check to see if a |
| 4439 | * colon follows it. Then, if there's another id after |
| 4440 | * that lot, we'll check it again for macro-hood. |
| 4441 | */ |
| 4442 | label = last = t; |
| 4443 | t = t->next; |
| 4444 | if (tok_type_(t, TOK_WHITESPACE)) |
| 4445 | last = t, t = t->next; |
| 4446 | if (tok_is_(t, ":")) { |
| 4447 | dont_prepend = 1; |
| 4448 | last = t, t = t->next; |
| 4449 | if (tok_type_(t, TOK_WHITESPACE)) |
| 4450 | last = t, t = t->next; |
| 4451 | } |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4452 | if (!tok_type_(t, TOK_ID) || !(m = is_mmacro(t, ¶ms))) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4453 | return 0; |
| 4454 | last->next = NULL; |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 4455 | mname = t->text; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4456 | tline = t; |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4457 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4458 | |
| 4459 | /* |
| 4460 | * Fix up the parameters: this involves stripping leading and |
| 4461 | * trailing whitespace, then stripping braces if they are |
| 4462 | * present. |
| 4463 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4464 | for (nparam = 0; params[nparam]; nparam++) ; |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4465 | paramlen = nparam ? nasm_malloc(nparam * sizeof(*paramlen)) : NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4466 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4467 | for (i = 0; params[i]; i++) { |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 4468 | int brace = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4469 | int comma = (!m->plus || i < nparam - 1); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4470 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4471 | t = params[i]; |
| 4472 | skip_white_(t); |
| 4473 | if (tok_is_(t, "{")) |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 4474 | t = t->next, brace = true, comma = false; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4475 | params[i] = t; |
| 4476 | paramlen[i] = 0; |
| 4477 | while (t) { |
| 4478 | if (comma && t->type == TOK_OTHER && !strcmp(t->text, ",")) |
| 4479 | break; /* ... because we have hit a comma */ |
| 4480 | if (comma && t->type == TOK_WHITESPACE |
| 4481 | && tok_is_(t->next, ",")) |
| 4482 | break; /* ... or a space then a comma */ |
| 4483 | if (brace && t->type == TOK_OTHER && !strcmp(t->text, "}")) |
| 4484 | break; /* ... or a brace */ |
| 4485 | t = t->next; |
| 4486 | paramlen[i]++; |
| 4487 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4488 | } |
| 4489 | |
| 4490 | /* |
| 4491 | * OK, we have a MMacro structure together with a set of |
| 4492 | * parameters. We must now go through the expansion and push |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4493 | * copies of each Line on to istk->expansion. Substitution of |
| 4494 | * parameter tokens and macro-local tokens doesn't get done |
| 4495 | * until the single-line macro substitution process; this is |
| 4496 | * because delaying them allows us to change the semantics |
| 4497 | * later through %rotate. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4498 | * |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4499 | * First, push an end marker on to istk->expansion, mark this |
| 4500 | * macro as in progress, and set up its invocation-specific |
| 4501 | * variables. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4502 | */ |
| 4503 | ll = nasm_malloc(sizeof(Line)); |
| 4504 | ll->next = istk->expansion; |
| 4505 | ll->finishes = m; |
| 4506 | ll->first = NULL; |
| 4507 | istk->expansion = ll; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4508 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4509 | /* |
| 4510 | * Save the previous MMacro expansion in the case of |
| 4511 | * macro recursion |
| 4512 | */ |
| 4513 | if (m->max_depth && m->in_progress) |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4514 | push_mmacro(m); |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4515 | |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 4516 | m->in_progress ++; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4517 | m->params = params; |
| 4518 | m->iline = tline; |
| 4519 | m->nparam = nparam; |
| 4520 | m->rotate = 0; |
| 4521 | m->paramlen = paramlen; |
| 4522 | m->unique = unique++; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4523 | m->lineno = 0; |
Keith Kanios | 3c0d91f | 2009-10-25 13:28:03 -0500 | [diff] [blame] | 4524 | m->condcnt = 0; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4525 | |
| 4526 | m->next_active = istk->mstk; |
| 4527 | istk->mstk = m; |
| 4528 | |
Cyrill Gorcunov | 367d59e | 2010-04-09 15:43:03 +0400 | [diff] [blame] | 4529 | list_for_each(l, m->expansion) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4530 | Token **tail; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4531 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4532 | ll = nasm_malloc(sizeof(Line)); |
| 4533 | ll->finishes = NULL; |
| 4534 | ll->next = istk->expansion; |
| 4535 | istk->expansion = ll; |
| 4536 | tail = &ll->first; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4537 | |
Cyrill Gorcunov | 367d59e | 2010-04-09 15:43:03 +0400 | [diff] [blame] | 4538 | list_for_each(t, l->first) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4539 | Token *x = t; |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4540 | switch (t->type) { |
| 4541 | case TOK_PREPROC_Q: |
| 4542 | tt = *tail = new_Token(NULL, TOK_ID, mname, 0); |
| 4543 | break; |
| 4544 | case TOK_PREPROC_QQ: |
| 4545 | tt = *tail = new_Token(NULL, TOK_ID, m->name, 0); |
| 4546 | break; |
| 4547 | case TOK_PREPROC_ID: |
| 4548 | if (t->text[1] == '0' && t->text[2] == '0') { |
| 4549 | dont_prepend = -1; |
| 4550 | x = label; |
| 4551 | if (!x) |
| 4552 | continue; |
| 4553 | } |
| 4554 | /* fall through */ |
| 4555 | default: |
| 4556 | tt = *tail = new_Token(NULL, x->type, x->text, 0); |
| 4557 | break; |
| 4558 | } |
| 4559 | tail = &tt->next; |
| 4560 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4561 | *tail = NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4562 | } |
| 4563 | |
| 4564 | /* |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4565 | * If we had a label, push it on as the first line of |
| 4566 | * the macro expansion. |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4567 | */ |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4568 | if (label) { |
| 4569 | if (dont_prepend < 0) |
| 4570 | free_tlist(startline); |
| 4571 | else { |
| 4572 | ll = nasm_malloc(sizeof(Line)); |
| 4573 | ll->finishes = NULL; |
| 4574 | ll->next = istk->expansion; |
| 4575 | istk->expansion = ll; |
| 4576 | ll->first = startline; |
| 4577 | if (!dont_prepend) { |
| 4578 | while (label->next) |
| 4579 | label = label->next; |
| 4580 | label->next = tt = new_Token(NULL, TOK_OTHER, ":", 0); |
| 4581 | } |
| 4582 | } |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4583 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4584 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4585 | list->uplevel(m->nolist ? LIST_MACRO_NOLIST : LIST_MACRO); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4586 | |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4587 | return 1; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4588 | } |
| 4589 | |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 4590 | /* The function that actually does the error reporting */ |
| 4591 | static void verror(int severity, const char *fmt, va_list arg) |
| 4592 | { |
| 4593 | char buff[1024]; |
| 4594 | |
| 4595 | vsnprintf(buff, sizeof(buff), fmt, arg); |
| 4596 | |
| 4597 | if (istk && istk->mstk && istk->mstk->name) |
H. Peter Anvin | dbb640b | 2009-07-18 18:57:16 -0700 | [diff] [blame] | 4598 | nasm_error(severity, "(%s:%d) %s", istk->mstk->name, |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 4599 | istk->mstk->lineno, buff); |
| 4600 | else |
H. Peter Anvin | dbb640b | 2009-07-18 18:57:16 -0700 | [diff] [blame] | 4601 | nasm_error(severity, "%s", buff); |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 4602 | } |
| 4603 | |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4604 | /* |
| 4605 | * Since preprocessor always operate only on the line that didn't |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 4606 | * arrived yet, we should always use ERR_OFFBY1. |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4607 | */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4608 | static void error(int severity, const char *fmt, ...) |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4609 | { |
| 4610 | va_list arg; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4611 | |
| 4612 | /* If we're in a dead branch of IF or something like it, ignore the error */ |
H. Peter Anvin | 77ba0c6 | 2002-05-14 03:18:53 +0000 | [diff] [blame] | 4613 | if (istk && istk->conds && !emitting(istk->conds->state)) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4614 | return; |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4615 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4616 | va_start(arg, fmt); |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 4617 | verror(severity, fmt, arg); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4618 | va_end(arg); |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 4619 | } |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4620 | |
Victor van den Elzen | 3b404c0 | 2008-09-18 13:51:36 +0200 | [diff] [blame] | 4621 | /* |
| 4622 | * Because %else etc are evaluated in the state context |
| 4623 | * of the previous branch, errors might get lost with error(): |
| 4624 | * %if 0 ... %else trailing garbage ... %endif |
| 4625 | * So %else etc should report errors with this function. |
| 4626 | */ |
| 4627 | static void error_precond(int severity, const char *fmt, ...) |
| 4628 | { |
| 4629 | va_list arg; |
| 4630 | |
| 4631 | /* Only ignore the error if it's really in a dead branch */ |
| 4632 | if (istk && istk->conds && istk->conds->state == COND_NEVER) |
| 4633 | return; |
| 4634 | |
| 4635 | va_start(arg, fmt); |
| 4636 | verror(severity, fmt, arg); |
| 4637 | va_end(arg); |
H. Peter Anvin | af535c1 | 2002-04-30 20:59:21 +0000 | [diff] [blame] | 4638 | } |
| 4639 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4640 | static void |
H. Peter Anvin | dbb640b | 2009-07-18 18:57:16 -0700 | [diff] [blame] | 4641 | pp_reset(char *file, int apass, ListGen * listgen, StrList **deplist) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4642 | { |
H. Peter Anvin | 7383b40 | 2008-09-24 10:20:40 -0700 | [diff] [blame] | 4643 | Token *t; |
| 4644 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4645 | cstk = NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4646 | istk = nasm_malloc(sizeof(Include)); |
| 4647 | istk->next = NULL; |
| 4648 | istk->conds = NULL; |
| 4649 | istk->expansion = NULL; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4650 | istk->mstk = NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4651 | istk->fp = fopen(file, "r"); |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4652 | istk->fname = NULL; |
| 4653 | src_set_fname(nasm_strdup(file)); |
| 4654 | src_set_linnum(0); |
| 4655 | istk->lineinc = 1; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4656 | if (!istk->fp) |
H. Peter Anvin | 917a349 | 2008-09-24 09:14:49 -0700 | [diff] [blame] | 4657 | error(ERR_FATAL|ERR_NOFILE, "unable to open input file `%s'", |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4658 | file); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4659 | defining = NULL; |
Charles Crayne | d4200be | 2008-07-12 16:42:33 -0700 | [diff] [blame] | 4660 | nested_mac_count = 0; |
| 4661 | nested_rep_count = 0; |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 4662 | init_macros(); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4663 | unique = 0; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4664 | if (tasm_compatible_mode) { |
H. Peter Anvin | a4835d4 | 2008-05-20 14:21:29 -0700 | [diff] [blame] | 4665 | stdmacpos = nasm_stdmac; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4666 | } else { |
H. Peter Anvin | a4835d4 | 2008-05-20 14:21:29 -0700 | [diff] [blame] | 4667 | stdmacpos = nasm_stdmac_after_tasm; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4668 | } |
H. Peter Anvin | d245659 | 2008-06-19 15:04:18 -0700 | [diff] [blame] | 4669 | any_extrastdmac = extrastdmac && *extrastdmac; |
| 4670 | do_predef = true; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4671 | list = listgen; |
H. Peter Anvin | 61f130f | 2008-09-25 15:45:06 -0700 | [diff] [blame] | 4672 | |
| 4673 | /* |
| 4674 | * 0 for dependencies, 1 for preparatory passes, 2 for final pass. |
| 4675 | * The caller, however, will also pass in 3 for preprocess-only so |
| 4676 | * we can set __PASS__ accordingly. |
| 4677 | */ |
| 4678 | pass = apass > 2 ? 2 : apass; |
| 4679 | |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 4680 | dephead = deptail = deplist; |
| 4681 | if (deplist) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4682 | StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next); |
| 4683 | sl->next = NULL; |
| 4684 | strcpy(sl->str, file); |
| 4685 | *deptail = sl; |
| 4686 | deptail = &sl->next; |
H. Peter Anvin | 9e1f528 | 2008-05-29 21:38:00 -0700 | [diff] [blame] | 4687 | } |
H. Peter Anvin | 7383b40 | 2008-09-24 10:20:40 -0700 | [diff] [blame] | 4688 | |
H. Peter Anvin | 61f130f | 2008-09-25 15:45:06 -0700 | [diff] [blame] | 4689 | /* |
| 4690 | * Define the __PASS__ macro. This is defined here unlike |
| 4691 | * all the other builtins, because it is special -- it varies between |
| 4692 | * passes. |
| 4693 | */ |
H. Peter Anvin | 7383b40 | 2008-09-24 10:20:40 -0700 | [diff] [blame] | 4694 | t = nasm_malloc(sizeof(*t)); |
| 4695 | t->next = NULL; |
H. Peter Anvin | 61f130f | 2008-09-25 15:45:06 -0700 | [diff] [blame] | 4696 | make_tok_num(t, apass); |
H. Peter Anvin | 7383b40 | 2008-09-24 10:20:40 -0700 | [diff] [blame] | 4697 | t->a.mac = NULL; |
| 4698 | define_smacro(NULL, "__PASS__", true, 0, t); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4699 | } |
| 4700 | |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4701 | static char *pp_getline(void) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4702 | { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4703 | char *line; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4704 | Token *tline; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4705 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4706 | while (1) { |
| 4707 | /* |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 4708 | * Fetch a tokenized line, either from the macro-expansion |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4709 | * buffer or from the input file. |
| 4710 | */ |
| 4711 | tline = NULL; |
| 4712 | while (istk->expansion && istk->expansion->finishes) { |
| 4713 | Line *l = istk->expansion; |
| 4714 | if (!l->finishes->name && l->finishes->in_progress > 1) { |
| 4715 | Line *ll; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4716 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4717 | /* |
| 4718 | * This is a macro-end marker for a macro with no |
| 4719 | * name, which means it's not really a macro at all |
| 4720 | * but a %rep block, and the `in_progress' field is |
| 4721 | * more than 1, meaning that we still need to |
| 4722 | * repeat. (1 means the natural last repetition; 0 |
| 4723 | * means termination by %exitrep.) We have |
| 4724 | * therefore expanded up to the %endrep, and must |
| 4725 | * push the whole block on to the expansion buffer |
| 4726 | * again. We don't bother to remove the macro-end |
| 4727 | * marker: we'd only have to generate another one |
| 4728 | * if we did. |
| 4729 | */ |
| 4730 | l->finishes->in_progress--; |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 4731 | list_for_each(l, l->finishes->expansion) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4732 | Token *t, *tt, **tail; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4733 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4734 | ll = nasm_malloc(sizeof(Line)); |
| 4735 | ll->next = istk->expansion; |
| 4736 | ll->finishes = NULL; |
| 4737 | ll->first = NULL; |
| 4738 | tail = &ll->first; |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4739 | |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 4740 | list_for_each(t, l->first) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4741 | if (t->text || t->type == TOK_WHITESPACE) { |
Cyrill Gorcunov | 3b4e86b | 2010-06-02 15:57:51 +0400 | [diff] [blame] | 4742 | tt = *tail = new_Token(NULL, t->type, t->text, 0); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4743 | tail = &tt->next; |
| 4744 | } |
| 4745 | } |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4746 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4747 | istk->expansion = ll; |
| 4748 | } |
| 4749 | } else { |
| 4750 | /* |
| 4751 | * Check whether a `%rep' was started and not ended |
| 4752 | * within this macro expansion. This can happen and |
| 4753 | * should be detected. It's a fatal error because |
| 4754 | * I'm too confused to work out how to recover |
| 4755 | * sensibly from it. |
| 4756 | */ |
| 4757 | if (defining) { |
| 4758 | if (defining->name) |
| 4759 | error(ERR_PANIC, |
| 4760 | "defining with name in expansion"); |
| 4761 | else if (istk->mstk->name) |
| 4762 | error(ERR_FATAL, |
| 4763 | "`%%rep' without `%%endrep' within" |
| 4764 | " expansion of macro `%s'", |
| 4765 | istk->mstk->name); |
| 4766 | } |
H. Peter Anvin | 87bc619 | 2002-04-30 20:53:16 +0000 | [diff] [blame] | 4767 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4768 | /* |
| 4769 | * FIXME: investigate the relationship at this point between |
| 4770 | * istk->mstk and l->finishes |
| 4771 | */ |
| 4772 | { |
| 4773 | MMacro *m = istk->mstk; |
| 4774 | istk->mstk = m->next_active; |
| 4775 | if (m->name) { |
| 4776 | /* |
| 4777 | * This was a real macro call, not a %rep, and |
| 4778 | * therefore the parameter information needs to |
| 4779 | * be freed. |
| 4780 | */ |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4781 | if (m->prev) { |
| 4782 | pop_mmacro(m); |
| 4783 | l->finishes->in_progress --; |
| 4784 | } else { |
Keith Kanios | 891775e | 2009-07-11 06:08:54 -0500 | [diff] [blame] | 4785 | nasm_free(m->params); |
| 4786 | free_tlist(m->iline); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4787 | nasm_free(m->paramlen); |
| 4788 | l->finishes->in_progress = 0; |
| 4789 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4790 | } else |
| 4791 | free_mmacro(m); |
| 4792 | } |
| 4793 | istk->expansion = l->next; |
| 4794 | nasm_free(l); |
| 4795 | list->downlevel(LIST_MACRO); |
| 4796 | } |
| 4797 | } |
| 4798 | while (1) { /* until we get a line we can use */ |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4799 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4800 | if (istk->expansion) { /* from a macro expansion */ |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4801 | char *p; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4802 | Line *l = istk->expansion; |
| 4803 | if (istk->mstk) |
| 4804 | istk->mstk->lineno++; |
| 4805 | tline = l->first; |
| 4806 | istk->expansion = l->next; |
| 4807 | nasm_free(l); |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 4808 | p = detoken(tline, false); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4809 | list->line(LIST_MACRO, p); |
| 4810 | nasm_free(p); |
| 4811 | break; |
| 4812 | } |
| 4813 | line = read_line(); |
| 4814 | if (line) { /* from the current input file */ |
| 4815 | line = prepreproc(line); |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 4816 | tline = tokenize(line); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4817 | nasm_free(line); |
| 4818 | break; |
| 4819 | } |
| 4820 | /* |
| 4821 | * The current file has ended; work down the istk |
| 4822 | */ |
| 4823 | { |
| 4824 | Include *i = istk; |
| 4825 | fclose(i->fp); |
| 4826 | if (i->conds) |
| 4827 | error(ERR_FATAL, |
| 4828 | "expected `%%endif' before end of file"); |
| 4829 | /* only set line and file name if there's a next node */ |
| 4830 | if (i->next) { |
| 4831 | src_set_linnum(i->lineno); |
| 4832 | nasm_free(src_set_fname(i->fname)); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4833 | } |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4834 | istk = i->next; |
| 4835 | list->downlevel(LIST_INCLUDE); |
| 4836 | nasm_free(i); |
| 4837 | if (!istk) |
| 4838 | return NULL; |
Victor van den Elzen | 4c9d622 | 2008-10-01 13:08:50 +0200 | [diff] [blame] | 4839 | if (istk->expansion && istk->expansion->finishes) |
| 4840 | break; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4841 | } |
| 4842 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4843 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4844 | /* |
| 4845 | * We must expand MMacro parameters and MMacro-local labels |
| 4846 | * _before_ we plunge into directive processing, to cope |
| 4847 | * with things like `%define something %1' such as STRUC |
| 4848 | * uses. Unless we're _defining_ a MMacro, in which case |
| 4849 | * those tokens should be left alone to go into the |
| 4850 | * definition; and unless we're in a non-emitting |
| 4851 | * condition, in which case we don't want to meddle with |
| 4852 | * anything. |
| 4853 | */ |
Charles Crayne | d4200be | 2008-07-12 16:42:33 -0700 | [diff] [blame] | 4854 | if (!defining && !(istk->conds && !emitting(istk->conds->state)) |
H. Peter Anvin | 992fe75 | 2008-10-19 15:45:05 -0700 | [diff] [blame] | 4855 | && !(istk->mstk && !istk->mstk->in_progress)) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4856 | tline = expand_mmac_params(tline); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4857 | } |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 4858 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4859 | /* |
| 4860 | * Check the line to see if it's a preprocessor directive. |
| 4861 | */ |
| 4862 | if (do_directive(tline) == DIRECTIVE_FOUND) { |
| 4863 | continue; |
| 4864 | } else if (defining) { |
| 4865 | /* |
| 4866 | * We're defining a multi-line macro. We emit nothing |
| 4867 | * at all, and just |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 4868 | * shove the tokenized line on to the macro definition. |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4869 | */ |
| 4870 | Line *l = nasm_malloc(sizeof(Line)); |
| 4871 | l->next = defining->expansion; |
| 4872 | l->first = tline; |
H. Peter Anvin | 538002d | 2008-06-28 18:30:27 -0700 | [diff] [blame] | 4873 | l->finishes = NULL; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4874 | defining->expansion = l; |
| 4875 | continue; |
| 4876 | } else if (istk->conds && !emitting(istk->conds->state)) { |
| 4877 | /* |
| 4878 | * We're in a non-emitting branch of a condition block. |
| 4879 | * Emit nothing at all, not even a blank line: when we |
| 4880 | * emerge from the condition we'll give a line-number |
| 4881 | * directive so we keep our place correctly. |
| 4882 | */ |
| 4883 | free_tlist(tline); |
| 4884 | continue; |
| 4885 | } else if (istk->mstk && !istk->mstk->in_progress) { |
| 4886 | /* |
| 4887 | * We're in a %rep block which has been terminated, so |
| 4888 | * we're walking through to the %endrep without |
| 4889 | * emitting anything. Emit nothing at all, not even a |
| 4890 | * blank line: when we emerge from the %rep block we'll |
| 4891 | * give a line-number directive so we keep our place |
| 4892 | * correctly. |
| 4893 | */ |
| 4894 | free_tlist(tline); |
| 4895 | continue; |
| 4896 | } else { |
| 4897 | tline = expand_smacro(tline); |
| 4898 | if (!expand_mmacro(tline)) { |
| 4899 | /* |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 4900 | * De-tokenize the line again, and emit it. |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4901 | */ |
H. Peter Anvin | 6867acc | 2007-10-10 14:58:45 -0700 | [diff] [blame] | 4902 | line = detoken(tline, true); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4903 | free_tlist(tline); |
| 4904 | break; |
| 4905 | } else { |
| 4906 | continue; /* expand_mmacro calls free_tlist */ |
| 4907 | } |
| 4908 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4909 | } |
| 4910 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4911 | return line; |
| 4912 | } |
| 4913 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4914 | static void pp_cleanup(int pass) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4915 | { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4916 | if (defining) { |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4917 | if (defining->name) { |
Victor van den Elzen | 8f1120f | 2008-07-16 13:41:37 +0200 | [diff] [blame] | 4918 | error(ERR_NONFATAL, |
| 4919 | "end of file while still defining macro `%s'", |
| 4920 | defining->name); |
| 4921 | } else { |
| 4922 | error(ERR_NONFATAL, "end of file while still in %%rep"); |
| 4923 | } |
| 4924 | |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4925 | free_mmacro(defining); |
Cyrill Gorcunov | a327c65 | 2010-02-14 17:19:38 +0300 | [diff] [blame] | 4926 | defining = NULL; |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4927 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4928 | while (cstk) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4929 | ctx_pop(); |
H. Peter Anvin | 97a2347 | 2007-09-16 17:57:25 -0700 | [diff] [blame] | 4930 | free_macros(); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4931 | while (istk) { |
| 4932 | Include *i = istk; |
| 4933 | istk = istk->next; |
| 4934 | fclose(i->fp); |
| 4935 | nasm_free(i->fname); |
| 4936 | nasm_free(i); |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4937 | } |
| 4938 | while (cstk) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4939 | ctx_pop(); |
H. Peter Anvin | 86877b2 | 2008-06-20 15:55:45 -0700 | [diff] [blame] | 4940 | nasm_free(src_set_fname(NULL)); |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4941 | if (pass == 0) { |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4942 | IncPath *i; |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4943 | free_llist(predef); |
| 4944 | delete_Blocks(); |
Cyrill Gorcunov | accda19 | 2010-02-16 10:27:56 +0300 | [diff] [blame] | 4945 | while ((i = ipath)) { |
| 4946 | ipath = i->next; |
| 4947 | if (i->path) |
| 4948 | nasm_free(i->path); |
| 4949 | nasm_free(i); |
| 4950 | } |
H. Peter Anvin | 11dfa1a | 2008-07-02 18:11:04 -0700 | [diff] [blame] | 4951 | } |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 4952 | } |
| 4953 | |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4954 | void pp_include_path(char *path) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4955 | { |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4956 | IncPath *i; |
H. Peter Anvin | 37a321f | 2007-09-24 13:41:58 -0700 | [diff] [blame] | 4957 | |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4958 | i = nasm_malloc(sizeof(IncPath)); |
H. Peter Anvin | 37a321f | 2007-09-24 13:41:58 -0700 | [diff] [blame] | 4959 | i->path = path ? nasm_strdup(path) : NULL; |
Frank Kotler | d0ed6fd | 2003-08-27 11:33:56 +0000 | [diff] [blame] | 4960 | i->next = NULL; |
| 4961 | |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4962 | if (ipath) { |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4963 | IncPath *j = ipath; |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 4964 | while (j->next) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4965 | j = j->next; |
| 4966 | j->next = i; |
| 4967 | } else { |
| 4968 | ipath = i; |
Frank Kotler | d0ed6fd | 2003-08-27 11:33:56 +0000 | [diff] [blame] | 4969 | } |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4970 | } |
Frank Kotler | d0ed6fd | 2003-08-27 11:33:56 +0000 | [diff] [blame] | 4971 | |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4972 | void pp_pre_include(char *fname) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4973 | { |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4974 | Token *inc, *space, *name; |
| 4975 | Line *l; |
| 4976 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4977 | name = new_Token(NULL, TOK_INTERNAL_STRING, fname, 0); |
| 4978 | space = new_Token(name, TOK_WHITESPACE, NULL, 0); |
| 4979 | inc = new_Token(space, TOK_PREPROC_ID, "%include", 0); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4980 | |
| 4981 | l = nasm_malloc(sizeof(Line)); |
| 4982 | l->next = predef; |
| 4983 | l->first = inc; |
H. Peter Anvin | 538002d | 2008-06-28 18:30:27 -0700 | [diff] [blame] | 4984 | l->finishes = NULL; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4985 | predef = l; |
| 4986 | } |
| 4987 | |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4988 | void pp_pre_define(char *definition) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 4989 | { |
| 4990 | Token *def, *space; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4991 | Line *l; |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 4992 | char *equals; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4993 | |
| 4994 | equals = strchr(definition, '='); |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 4995 | space = new_Token(NULL, TOK_WHITESPACE, NULL, 0); |
| 4996 | def = new_Token(space, TOK_PREPROC_ID, "%define", 0); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 4997 | if (equals) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 4998 | *equals = ' '; |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 4999 | space->next = tokenize(definition); |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 5000 | if (equals) |
H. Peter Anvin | e2c8018 | 2005-01-15 22:15:51 +0000 | [diff] [blame] | 5001 | *equals = '='; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 5002 | |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 5003 | l = nasm_malloc(sizeof(Line)); |
| 5004 | l->next = predef; |
| 5005 | l->first = def; |
H. Peter Anvin | 538002d | 2008-06-28 18:30:27 -0700 | [diff] [blame] | 5006 | l->finishes = NULL; |
H. Peter Anvin | 6768eb7 | 2002-04-30 20:52:26 +0000 | [diff] [blame] | 5007 | predef = l; |
| 5008 | } |
| 5009 | |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 5010 | void pp_pre_undefine(char *definition) |
H. Peter Anvin | 620515a | 2002-04-30 20:57:38 +0000 | [diff] [blame] | 5011 | { |
| 5012 | Token *def, *space; |
| 5013 | Line *l; |
| 5014 | |
H. Peter Anvin | 734b188 | 2002-04-30 21:01:08 +0000 | [diff] [blame] | 5015 | space = new_Token(NULL, TOK_WHITESPACE, NULL, 0); |
| 5016 | def = new_Token(space, TOK_PREPROC_ID, "%undef", 0); |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 5017 | space->next = tokenize(definition); |
H. Peter Anvin | 620515a | 2002-04-30 20:57:38 +0000 | [diff] [blame] | 5018 | |
| 5019 | l = nasm_malloc(sizeof(Line)); |
| 5020 | l->next = predef; |
| 5021 | l->first = def; |
H. Peter Anvin | 538002d | 2008-06-28 18:30:27 -0700 | [diff] [blame] | 5022 | l->finishes = NULL; |
H. Peter Anvin | 620515a | 2002-04-30 20:57:38 +0000 | [diff] [blame] | 5023 | predef = l; |
| 5024 | } |
| 5025 | |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 5026 | /* |
| 5027 | * Added by Keith Kanios: |
| 5028 | * |
| 5029 | * This function is used to assist with "runtime" preprocessor |
| 5030 | * directives. (e.g. pp_runtime("%define __BITS__ 64");) |
| 5031 | * |
| 5032 | * ERRORS ARE IGNORED HERE, SO MAKE COMPLETELY SURE THAT YOU |
| 5033 | * PASS A VALID STRING TO THIS FUNCTION!!!!! |
| 5034 | */ |
| 5035 | |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 5036 | void pp_runtime(char *definition) |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 5037 | { |
| 5038 | Token *def; |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 5039 | |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 5040 | def = tokenize(definition); |
H. Peter Anvin | 89cee57 | 2009-07-15 09:16:54 -0400 | [diff] [blame] | 5041 | if (do_directive(def) == NO_DIRECTIVE_FOUND) |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 5042 | free_tlist(def); |
H. Peter Anvin | 7065309 | 2007-10-19 14:42:29 -0700 | [diff] [blame] | 5043 | |
Keith Kanios | b7a8954 | 2007-04-12 02:40:54 +0000 | [diff] [blame] | 5044 | } |
| 5045 | |
H. Peter Anvin | a70547f | 2008-07-19 21:44:26 -0700 | [diff] [blame] | 5046 | void pp_extra_stdmac(macros_t *macros) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 5047 | { |
H. Peter Anvin | 76690a1 | 2002-04-30 20:52:49 +0000 | [diff] [blame] | 5048 | extrastdmac = macros; |
| 5049 | } |
| 5050 | |
Keith Kanios | a5fc646 | 2007-10-13 07:09:22 -0700 | [diff] [blame] | 5051 | static void make_tok_num(Token * tok, int64_t val) |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 5052 | { |
Keith Kanios | a6dfa78 | 2007-04-13 16:47:53 +0000 | [diff] [blame] | 5053 | char numbuf[20]; |
Keith Kanios | a5fc646 | 2007-10-13 07:09:22 -0700 | [diff] [blame] | 5054 | snprintf(numbuf, sizeof(numbuf), "%"PRId64"", val); |
H. Peter Anvin | eba20a7 | 2002-04-30 20:53:55 +0000 | [diff] [blame] | 5055 | tok->text = nasm_strdup(numbuf); |
| 5056 | tok->type = TOK_NUMBER; |
| 5057 | } |
| 5058 | |
H. Peter Anvin | d7ed89e | 2002-04-30 20:52:08 +0000 | [diff] [blame] | 5059 | Preproc nasmpp = { |
| 5060 | pp_reset, |
| 5061 | pp_getline, |
| 5062 | pp_cleanup |
| 5063 | }; |