blob: 4758063f6622ceb4aca54737517b880d5f450100 [file] [log] [blame]
Gavin Howard5715b042018-02-12 16:11:42 -07001/*
Gavin Howardb5904bf2018-02-20 13:28:18 -07002 * *****************************************************************************
Gavin Howard5715b042018-02-12 16:11:42 -07003 *
Gavin Howard29e00ba2020-06-30 09:25:21 -06004 * SPDX-License-Identifier: BSD-2-Clause
5 *
Zach van Rijn6d2cf3f2020-01-14 22:05:02 +00006 * Copyright (c) 2018-2020 Gavin D. Howard and contributors.
Gavin Howard5715b042018-02-12 16:11:42 -07007 *
Gavin Howard7345cb92019-04-08 14:13:43 -06008 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * * Redistributions of source code must retain the above copyright notice, this
12 * list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above copyright notice,
15 * this list of conditions and the following disclaimer in the documentation
16 * and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
Gavin Howard5715b042018-02-12 16:11:42 -070029 *
Gavin Howardb5904bf2018-02-20 13:28:18 -070030 * *****************************************************************************
Gavin Howard5715b042018-02-12 16:11:42 -070031 *
Gavin Howardd2a05252018-09-27 14:00:40 -060032 * Common code for the lexers.
Gavin Howard5715b042018-02-12 16:11:42 -070033 *
34 */
35
Gavin Howard27fdfb92018-03-21 07:56:59 -060036#include <assert.h>
Gavin Howard8a596d42018-01-15 15:46:01 -070037#include <ctype.h>
38#include <stdbool.h>
Gavin Howard8a596d42018-01-15 15:46:01 -070039#include <string.h>
40
Gavin Howard29493062018-03-20 19:57:37 -060041#include <status.h>
Gavin Howard9f9bef42020-10-22 21:37:46 -060042#include "lex.h"
43#include "vm.h"
44#include "bc.h"
Gavin Howard8a596d42018-01-15 15:46:01 -070045
Gavin Howard5a321892020-05-16 17:27:55 -060046void bc_lex_invalidChar(BcLex *l, char c) {
Gavin Howard50c8c2d2018-12-27 11:58:34 -070047 l->t = BC_LEX_INVALID;
Gavin Howard5a321892020-05-16 17:27:55 -060048 bc_lex_verr(l, BC_ERROR_PARSE_CHAR, c);
Gavin Howard50c8c2d2018-12-27 11:58:34 -070049}
50
Gavin Howarded5c8312018-09-27 12:04:08 -060051void bc_lex_lineComment(BcLex *l) {
Gavin Howardad477312018-12-24 15:51:35 -070052 l->t = BC_LEX_WHITESPACE;
Gavin Howard5c14da62019-02-16 23:47:48 -070053 while (l->i < l->len && l->buf[l->i] != '\n') l->i += 1;
Gavin Howarded5c8312018-09-27 12:04:08 -060054}
55
Gavin Howard5a321892020-05-16 17:27:55 -060056void bc_lex_comment(BcLex *l) {
Gavin Howard52446f22018-12-13 11:39:22 -070057
58 size_t i, nlines = 0;
59 const char *buf = l->buf;
60 bool end = false;
61 char c;
62
Gavin Howard5c14da62019-02-16 23:47:48 -070063 l->i += 1;
Gavin Howardad477312018-12-24 15:51:35 -070064 l->t = BC_LEX_WHITESPACE;
Gavin Howard52446f22018-12-13 11:39:22 -070065
Gavin Howard5c14da62019-02-16 23:47:48 -070066 for (i = l->i; !end; i += !end) {
Gavin Howard52446f22018-12-13 11:39:22 -070067
Gavin Howard1ab22d22019-01-03 13:32:17 -070068 for (; (c = buf[i]) && c != '*'; ++i) nlines += (c == '\n');
Gavin Howard52446f22018-12-13 11:39:22 -070069
Gavin Howardecafd4f2019-02-23 09:30:45 -070070 if (BC_ERR(!c || buf[i + 1] == '\0')) {
Gavin Howard52446f22018-12-13 11:39:22 -070071 l->i = i;
Gavin Howard5a321892020-05-16 17:27:55 -060072 bc_lex_err(l, BC_ERROR_PARSE_COMMENT);
Gavin Howard52446f22018-12-13 11:39:22 -070073 }
74
75 end = buf[i + 1] == '/';
76 }
77
78 l->i = i + 2;
79 l->line += nlines;
Gavin Howard52446f22018-12-13 11:39:22 -070080}
81
Gavin Howard364df3b2018-09-28 09:48:19 -060082void bc_lex_whitespace(BcLex *l) {
83 char c;
Gavin Howardad477312018-12-24 15:51:35 -070084 l->t = BC_LEX_WHITESPACE;
Gavin Howard53eba8b2018-10-31 15:14:37 -060085 for (c = l->buf[l->i]; c != '\n' && isspace(c); c = l->buf[++l->i]);
Gavin Howard364df3b2018-09-28 09:48:19 -060086}
87
Gavin Howard3ae1f8e2019-02-15 11:56:25 -070088void bc_lex_commonTokens(BcLex *l, char c) {
89 if (!c) l->t = BC_LEX_EOF;
90 else if (c == '\n') l->t = BC_LEX_NLINE;
91 else bc_lex_whitespace(l);
92}
93
Gavin Howard7ad5a662019-02-19 14:40:46 -070094static size_t bc_lex_num(BcLex *l, char start, bool int_only) {
Gavin Howard8a596d42018-01-15 15:46:01 -070095
Gavin Howard53eba8b2018-10-31 15:14:37 -060096 const char *buf = l->buf + l->i;
Gavin Howard8dd307e2019-01-08 23:05:19 -070097 size_t i;
Gavin Howard7ad5a662019-02-19 14:40:46 -070098 char c;
Gavin Howard94f14102019-01-11 09:39:57 -070099 bool last_pt, pt = (start == '.');
Gavin Howardf2a40492018-03-05 11:27:29 -0700100
Gavin Howard7ad5a662019-02-19 14:40:46 -0700101 for (i = 0; (c = buf[i]) && (BC_LEX_NUM_CHAR(c, pt, int_only) ||
Gavin Howard8dd307e2019-01-08 23:05:19 -0700102 (c == '\\' && buf[i + 1] == '\n')); ++i)
103 {
Gavin Howard25f60882019-01-11 09:20:51 -0700104 if (c == '\\') {
105
106 if (buf[i + 1] == '\n') {
107
108 i += 2;
109
110 // Make sure to eat whitespace at the beginning of the line.
Gavin Howard7ad5a662019-02-19 14:40:46 -0700111 while(isspace(buf[i]) && buf[i] != '\n') i += 1;
Gavin Howard25f60882019-01-11 09:20:51 -0700112
113 c = buf[i];
114
Gavin Howard7ad5a662019-02-19 14:40:46 -0700115 if (!BC_LEX_NUM_CHAR(c, pt, int_only)) break;
Gavin Howard25f60882019-01-11 09:20:51 -0700116 }
117 else break;
Gavin Howard63738202018-09-26 15:34:20 -0600118 }
Gavin Howard8dd307e2019-01-08 23:05:19 -0700119
Gavin Howard94f14102019-01-11 09:39:57 -0700120 last_pt = (c == '.');
Gavin Howard25f60882019-01-11 09:20:51 -0700121 if (pt && last_pt) break;
Gavin Howard94f14102019-01-11 09:39:57 -0700122 pt = pt || last_pt;
Gavin Howard07732ec2018-02-27 15:40:02 -0700123
Gavin Howardad477312018-12-24 15:51:35 -0700124 bc_vec_push(&l->str, &c);
Gavin Howard63738202018-09-26 15:34:20 -0600125 }
Gavin Howard07732ec2018-02-27 15:40:02 -0700126
Gavin Howard7ad5a662019-02-19 14:40:46 -0700127 return i;
128}
129
Gavin Howard5a321892020-05-16 17:27:55 -0600130void bc_lex_number(BcLex *l, char start) {
Gavin Howard7ad5a662019-02-19 14:40:46 -0700131
132 l->t = BC_LEX_NUMBER;
133
134 bc_vec_npop(&l->str, l->str.len);
135 bc_vec_push(&l->str, &start);
136
137 l->i += bc_lex_num(l, start, false);
Gavin Howarda6527882019-02-19 20:23:17 -0700138
Gavin Howard7ad5a662019-02-19 14:40:46 -0700139#if BC_ENABLE_EXTRA_MATH
140 {
141 char c = l->buf[l->i];
142
143 if (c == 'e') {
144
Gavin Howarda6527882019-02-19 20:23:17 -0700145#if BC_ENABLED
Gavin Howard5a321892020-05-16 17:27:55 -0600146 if (BC_IS_POSIX) bc_lex_err(l, BC_ERROR_POSIX_EXP_NUM);
Gavin Howarda6527882019-02-19 20:23:17 -0700147#endif // BC_ENABLED
148
Gavin Howard7ad5a662019-02-19 14:40:46 -0700149 bc_vec_push(&l->str, &c);
150 l->i += 1;
151 c = l->buf[l->i];
152
153 if (c == BC_LEX_NEG_CHAR) {
154 bc_vec_push(&l->str, &c);
155 l->i += 1;
156 c = l->buf[l->i];
157 }
158
Gavin Howardecafd4f2019-02-23 09:30:45 -0700159 if (BC_ERR(!BC_LEX_NUM_CHAR(c, false, true)))
Gavin Howard5a321892020-05-16 17:27:55 -0600160 bc_lex_verr(l, BC_ERROR_PARSE_CHAR, c);
Gavin Howard7ad5a662019-02-19 14:40:46 -0700161
162 l->i += bc_lex_num(l, 0, true);
163 }
164 }
165#endif // BC_ENABLE_EXTRA_MATH
166
Gavin Howardad477312018-12-24 15:51:35 -0700167 bc_vec_pushByte(&l->str, '\0');
Gavin Howard8a596d42018-01-15 15:46:01 -0700168}
169
Gavin Howard5c14da62019-02-16 23:47:48 -0700170void bc_lex_name(BcLex *l) {
Gavin Howard8412ba82018-10-04 13:03:24 -0600171
Gavin Howard88c25302018-10-17 13:32:23 -0600172 size_t i = 0;
Gavin Howard53eba8b2018-10-31 15:14:37 -0600173 const char *buf = l->buf + l->i - 1;
Gavin Howard88c25302018-10-17 13:32:23 -0600174 char c = buf[i];
Gavin Howard8412ba82018-10-04 13:03:24 -0600175
Gavin Howardad477312018-12-24 15:51:35 -0700176 l->t = BC_LEX_NAME;
Gavin Howard8412ba82018-10-04 13:03:24 -0600177
Gavin Howard9a4b6cd2018-10-23 15:13:30 -0600178 while ((c >= 'a' && c <= 'z') || isdigit(c) || c == '_') c = buf[++i];
Gavin Howard8412ba82018-10-04 13:03:24 -0600179
Gavin Howardad477312018-12-24 15:51:35 -0700180 bc_vec_string(&l->str, i, buf);
Gavin Howard8412ba82018-10-04 13:03:24 -0600181
182 // Increment the index. We minus 1 because it has already been incremented.
Gavin Howard53eba8b2018-10-31 15:14:37 -0600183 l->i += i - 1;
Gavin Howard8412ba82018-10-04 13:03:24 -0600184}
185
Gavin Howard48354e82019-01-02 18:15:56 -0700186void bc_lex_init(BcLex *l) {
Gavin Howardbbd6f552020-05-22 19:39:13 -0600187 BC_SIG_ASSERT_LOCKED;
Gavin Howardfe9a3022019-06-21 20:40:45 -0600188 assert(l != NULL);
Gavin Howardad477312018-12-24 15:51:35 -0700189 bc_vec_init(&l->str, sizeof(char), NULL);
Gavin Howard69185042018-09-10 15:46:20 -0600190}
191
Gavin Howard63738202018-09-26 15:34:20 -0600192void bc_lex_free(BcLex *l) {
Gavin Howardbbd6f552020-05-22 19:39:13 -0600193 BC_SIG_ASSERT_LOCKED;
Gavin Howardfe9a3022019-06-21 20:40:45 -0600194 assert(l != NULL);
Gavin Howardad477312018-12-24 15:51:35 -0700195 bc_vec_free(&l->str);
Gavin Howard69185042018-09-10 15:46:20 -0600196}
197
Gavin Howard63738202018-09-26 15:34:20 -0600198void bc_lex_file(BcLex *l, const char *file) {
Gavin Howardfe9a3022019-06-21 20:40:45 -0600199 assert(l != NULL && file != NULL);
Gavin Howard63738202018-09-26 15:34:20 -0600200 l->line = 1;
Gavin Howard3e9a8442020-05-15 13:27:18 -0600201 vm.file = file;
Gavin Howard8a596d42018-01-15 15:46:01 -0700202}
203
Gavin Howard5a321892020-05-16 17:27:55 -0600204void bc_lex_next(BcLex *l) {
Gavin Howard364df3b2018-09-28 09:48:19 -0600205
Gavin Howardfe9a3022019-06-21 20:40:45 -0600206 assert(l != NULL);
Gavin Howard364df3b2018-09-28 09:48:19 -0600207
Gavin Howardad477312018-12-24 15:51:35 -0700208 l->last = l->t;
Gavin Howard56158792019-01-14 12:03:14 -0700209 l->line += (l->i != 0 && l->buf[l->i - 1] == '\n');
Gavin Howard7536dcf2018-12-15 19:27:09 -0700210
Gavin Howard5a321892020-05-16 17:27:55 -0600211 if (BC_ERR(l->last == BC_LEX_EOF)) bc_lex_err(l, BC_ERROR_PARSE_EOF);
Gavin Howard364df3b2018-09-28 09:48:19 -0600212
Gavin Howardad477312018-12-24 15:51:35 -0700213 l->t = BC_LEX_EOF;
Gavin Howardc39fd492018-10-04 10:07:03 -0600214
Gavin Howard5a321892020-05-16 17:27:55 -0600215 if (l->i == l->len) return;
Gavin Howard364df3b2018-09-28 09:48:19 -0600216
Gavin Howard364df3b2018-09-28 09:48:19 -0600217 // Loop until failure or we don't have whitespace. This
218 // is so the parser doesn't get inundated with whitespace.
Gavin Howard53eba8b2018-10-31 15:14:37 -0600219 do {
Gavin Howard5a321892020-05-16 17:27:55 -0600220 vm.next(l);
221 } while (l->t == BC_LEX_WHITESPACE);
Gavin Howard35753922018-03-21 19:22:08 -0600222}
Gavin Howardc9a9c472018-10-02 17:23:01 -0600223
Gavin Howard5a321892020-05-16 17:27:55 -0600224void bc_lex_text(BcLex *l, const char *text) {
Gavin Howardfe9a3022019-06-21 20:40:45 -0600225 assert(l != NULL && text != NULL);
Gavin Howard890d0c02018-10-30 16:34:50 -0600226 l->buf = text;
Gavin Howard53eba8b2018-10-31 15:14:37 -0600227 l->i = 0;
Gavin Howardc9a9c472018-10-02 17:23:01 -0600228 l->len = strlen(text);
Gavin Howardad477312018-12-24 15:51:35 -0700229 l->t = l->last = BC_LEX_INVALID;
Gavin Howard5a321892020-05-16 17:27:55 -0600230 bc_lex_next(l);
Gavin Howardc9a9c472018-10-02 17:23:01 -0600231}