blob: b7d80009ec9d4bb61786c23bc7d640bba8c63f20 [file] [log] [blame]
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07001/* ----------------------------------------------------------------------- *
Cyrill Gorcunovbeaef4a2009-10-30 11:29:43 +03002 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07003 * Copyright 1996-2009 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
10 *
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 Gorcunovbeaef4a2009-10-30 11:29:43 +030017 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070018 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * ----------------------------------------------------------------------- */
33
H. Peter Anvinfe501952007-10-02 21:53:51 -070034#include "compiler.h"
35
H. Peter Anvin74cc5e52007-08-30 22:35:34 +000036#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <ctype.h>
40#include <inttypes.h>
41
42#include "nasm.h"
43#include "nasmlib.h"
H. Peter Anvin6ecc1592008-06-01 21:34:49 -070044#include "quote.h"
H. Peter Anvin74cc5e52007-08-30 22:35:34 +000045#include "stdscan.h"
46#include "insns.h"
47
48/*
49 * Standard scanner routine used by parser.c and some output
50 * formats. It keeps a succession of temporary-storage strings in
51 * stdscan_tempstorage, which can be cleared using stdscan_reset.
52 */
Cyrill Gorcunov917117f2009-10-29 23:09:18 +030053static char *stdscan_bufptr = NULL;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +000054static char **stdscan_tempstorage = NULL;
55static int stdscan_tempsize = 0, stdscan_templen = 0;
56#define STDSCAN_TEMP_DELTA 256
57
Cyrill Gorcunov917117f2009-10-29 23:09:18 +030058void stdscan_set(char *str)
59{
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +030060 stdscan_bufptr = str;
Cyrill Gorcunov917117f2009-10-29 23:09:18 +030061}
62
63char *stdscan_get(void)
64{
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +030065 return stdscan_bufptr;
Cyrill Gorcunov917117f2009-10-29 23:09:18 +030066}
67
H. Peter Anvin74cc5e52007-08-30 22:35:34 +000068static void stdscan_pop(void)
69{
70 nasm_free(stdscan_tempstorage[--stdscan_templen]);
71}
72
73void stdscan_reset(void)
74{
75 while (stdscan_templen > 0)
76 stdscan_pop();
77}
78
79/*
80 * Unimportant cleanup is done to avoid confusing people who are trying
81 * to debug real memory leaks
82 */
83void stdscan_cleanup(void)
84{
85 stdscan_reset();
86 nasm_free(stdscan_tempstorage);
87}
88
89static char *stdscan_copy(char *p, int len)
90{
91 char *text;
92
93 text = nasm_malloc(len + 1);
H. Peter Anvin88c9e1f2008-06-04 11:26:59 -070094 memcpy(text, p, len);
H. Peter Anvin74cc5e52007-08-30 22:35:34 +000095 text[len] = '\0';
96
97 if (stdscan_templen >= stdscan_tempsize) {
98 stdscan_tempsize += STDSCAN_TEMP_DELTA;
99 stdscan_tempstorage = nasm_realloc(stdscan_tempstorage,
100 stdscan_tempsize *
101 sizeof(char *));
102 }
103 stdscan_tempstorage[stdscan_templen++] = text;
104
105 return text;
106}
107
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000108int stdscan(void *private_data, struct tokenval *tv)
109{
110 char ourcopy[MAX_KEYWORD + 1], *r, *s;
111
112 (void)private_data; /* Don't warn that this parameter is unused */
113
Cyrill Gorcunovbeaef4a2009-10-30 11:29:43 +0300114 stdscan_bufptr = nasm_skip_spaces(stdscan_bufptr);
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000115 if (!*stdscan_bufptr)
Cyrill Gorcunovbeaef4a2009-10-30 11:29:43 +0300116 return tv->t_type = TOKEN_EOS;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000117
118 /* we have a token; either an id, a number or a char */
119 if (isidstart(*stdscan_bufptr) ||
120 (*stdscan_bufptr == '$' && isidstart(stdscan_bufptr[1]))) {
121 /* now we've got an identifier */
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700122 bool is_sym = false;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000123
124 if (*stdscan_bufptr == '$') {
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700125 is_sym = true;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000126 stdscan_bufptr++;
127 }
128
129 r = stdscan_bufptr++;
130 /* read the entire buffer to advance the buffer pointer but... */
131 while (isidchar(*stdscan_bufptr))
132 stdscan_bufptr++;
133
134 /* ... copy only up to IDLEN_MAX-1 characters */
135 tv->t_charptr = stdscan_copy(r, stdscan_bufptr - r < IDLEN_MAX ?
136 stdscan_bufptr - r : IDLEN_MAX - 1);
137
138 if (is_sym || stdscan_bufptr - r > MAX_KEYWORD)
139 return tv->t_type = TOKEN_ID; /* bypass all other checks */
140
141 for (s = tv->t_charptr, r = ourcopy; *s; s++)
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -0700142 *r++ = nasm_tolower(*s);
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000143 *r = '\0';
144 /* right, so we have an identifier sitting in temp storage. now,
145 * is it actually a register or instruction name, or what? */
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300146 return nasm_token_hash(ourcopy, tv);
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000147 } else if (*stdscan_bufptr == '$' && !isnumchar(stdscan_bufptr[1])) {
148 /*
149 * It's a $ sign with no following hex number; this must
150 * mean it's a Here token ($), evaluating to the current
151 * assembly location, or a Base token ($$), evaluating to
152 * the base of the current segment.
153 */
154 stdscan_bufptr++;
155 if (*stdscan_bufptr == '$') {
156 stdscan_bufptr++;
157 return tv->t_type = TOKEN_BASE;
158 }
159 return tv->t_type = TOKEN_HERE;
160 } else if (isnumstart(*stdscan_bufptr)) { /* now we've got a number */
H. Peter Anvin70055962007-10-11 00:05:31 -0700161 bool rn_error;
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300162 bool is_hex = false;
163 bool is_float = false;
164 bool has_e = false;
165 char c;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000166
H. Peter Anvinbea0bbb2007-10-22 16:53:48 -0700167 r = stdscan_bufptr;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000168
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300169 if (*stdscan_bufptr == '$') {
170 stdscan_bufptr++;
171 is_hex = true;
172 }
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700173
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300174 for (;;) {
175 c = *stdscan_bufptr++;
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700176
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300177 if (!is_hex && (c == 'e' || c == 'E')) {
178 has_e = true;
179 if (*stdscan_bufptr == '+' || *stdscan_bufptr == '-') {
180 /*
181 * e can only be followed by +/- if it is either a
182 * prefixed hex number or a floating-point number
183 */
184 is_float = true;
185 stdscan_bufptr++;
186 }
187 } else if (c == 'H' || c == 'h' || c == 'X' || c == 'x') {
188 is_hex = true;
189 } else if (c == 'P' || c == 'p') {
190 is_float = true;
191 if (*stdscan_bufptr == '+' || *stdscan_bufptr == '-')
192 stdscan_bufptr++;
193 } else if (isnumchar(c) || c == '_')
194 ; /* just advance */
195 else if (c == '.')
196 is_float = true;
197 else
198 break;
199 }
200 stdscan_bufptr--; /* Point to first character beyond number */
H. Peter Anvin2ef4aac2007-10-19 13:10:46 -0700201
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300202 if (has_e && !is_hex) {
203 /* 1e13 is floating-point, but 1e13h is not */
204 is_float = true;
205 }
H. Peter Anvin37d88e42007-10-19 14:10:35 -0700206
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300207 if (is_float) {
208 tv->t_charptr = stdscan_copy(r, stdscan_bufptr - r);
209 return tv->t_type = TOKEN_FLOAT;
210 } else {
211 r = stdscan_copy(r, stdscan_bufptr - r);
212 tv->t_integer = readnum(r, &rn_error);
213 stdscan_pop();
214 if (rn_error) {
215 /* some malformation occurred */
216 return tv->t_type = TOKEN_ERRNUM;
217 }
218 tv->t_charptr = NULL;
219 return tv->t_type = TOKEN_NUM;
220 }
H. Peter Anvin6ecc1592008-06-01 21:34:49 -0700221 } else if (*stdscan_bufptr == '\'' || *stdscan_bufptr == '"' ||
Cyrill Gorcunovcfbcddf2009-10-31 20:05:32 +0300222 *stdscan_bufptr == '`') {
223 /* a quoted string */
224 char start_quote = *stdscan_bufptr;
225 tv->t_charptr = stdscan_bufptr;
226 tv->t_inttwo = nasm_unquote(tv->t_charptr, &stdscan_bufptr);
227 if (*stdscan_bufptr != start_quote)
228 return tv->t_type = TOKEN_ERRSTR;
229 stdscan_bufptr++; /* Skip final quote */
H. Peter Anvin11627042008-06-09 20:45:19 -0700230 return tv->t_type = TOKEN_STR;
H. Peter Anvin6ecc1592008-06-01 21:34:49 -0700231 } else if (*stdscan_bufptr == ';') {
232 /* a comment has happened - stay */
Cyrill Gorcunovbeaef4a2009-10-30 11:29:43 +0300233 return tv->t_type = TOKEN_EOS;
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000234 } else if (stdscan_bufptr[0] == '>' && stdscan_bufptr[1] == '>') {
235 stdscan_bufptr += 2;
236 return tv->t_type = TOKEN_SHR;
237 } else if (stdscan_bufptr[0] == '<' && stdscan_bufptr[1] == '<') {
238 stdscan_bufptr += 2;
239 return tv->t_type = TOKEN_SHL;
240 } else if (stdscan_bufptr[0] == '/' && stdscan_bufptr[1] == '/') {
241 stdscan_bufptr += 2;
242 return tv->t_type = TOKEN_SDIV;
243 } else if (stdscan_bufptr[0] == '%' && stdscan_bufptr[1] == '%') {
244 stdscan_bufptr += 2;
245 return tv->t_type = TOKEN_SMOD;
246 } else if (stdscan_bufptr[0] == '=' && stdscan_bufptr[1] == '=') {
247 stdscan_bufptr += 2;
248 return tv->t_type = TOKEN_EQ;
249 } else if (stdscan_bufptr[0] == '<' && stdscan_bufptr[1] == '>') {
250 stdscan_bufptr += 2;
251 return tv->t_type = TOKEN_NE;
252 } else if (stdscan_bufptr[0] == '!' && stdscan_bufptr[1] == '=') {
253 stdscan_bufptr += 2;
254 return tv->t_type = TOKEN_NE;
255 } else if (stdscan_bufptr[0] == '<' && stdscan_bufptr[1] == '=') {
256 stdscan_bufptr += 2;
257 return tv->t_type = TOKEN_LE;
258 } else if (stdscan_bufptr[0] == '>' && stdscan_bufptr[1] == '=') {
259 stdscan_bufptr += 2;
260 return tv->t_type = TOKEN_GE;
261 } else if (stdscan_bufptr[0] == '&' && stdscan_bufptr[1] == '&') {
262 stdscan_bufptr += 2;
263 return tv->t_type = TOKEN_DBL_AND;
264 } else if (stdscan_bufptr[0] == '^' && stdscan_bufptr[1] == '^') {
265 stdscan_bufptr += 2;
266 return tv->t_type = TOKEN_DBL_XOR;
267 } else if (stdscan_bufptr[0] == '|' && stdscan_bufptr[1] == '|') {
268 stdscan_bufptr += 2;
269 return tv->t_type = TOKEN_DBL_OR;
270 } else /* just an ordinary char */
271 return tv->t_type = (uint8_t)(*stdscan_bufptr++);
272}