blob: 0cd8ba6b44d12ead64e7dd4e11312bcad65a5502 [file] [log] [blame]
Gavin Howard01055ba2018-11-03 11:00:21 -06001/* vi: set sw=4 ts=4: */
2/*
3 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
4 * Copyright (c) 2018 Gavin D. Howard and contributors.
Gavin Howard01055ba2018-11-03 11:00:21 -06005 */
6//config:config BC
7//config: bool "bc (45 kb; 49 kb when combined with dc)"
8//config: default y
9//config: help
10//config: bc is a command-line, arbitrary-precision calculator with a
11//config: Turing-complete language. See the GNU bc manual
12//config: (https://www.gnu.org/software/bc/manual/bc.html) and bc spec
Denys Vlasenko89e785a2018-12-13 16:35:52 +010013//config: (http://pubs.opengroup.org/onlinepubs/9699919799/utilities/bc.html).
Gavin Howard01055ba2018-11-03 11:00:21 -060014//config:
Denys Vlasenko89e785a2018-12-13 16:35:52 +010015//config: This bc has five differences to the GNU bc:
16//config: 1) The period (.) is a shortcut for "last", as in the BSD bc.
Gavin Howard01055ba2018-11-03 11:00:21 -060017//config: 2) Arrays are copied before being passed as arguments to
18//config: functions. This behavior is required by the bc spec.
19//config: 3) Arrays can be passed to the builtin "length" function to get
Denys Vlasenko89e785a2018-12-13 16:35:52 +010020//config: the number of elements in the array. This prints "1":
21//config: a[0] = 0; length(a[])
Gavin Howard01055ba2018-11-03 11:00:21 -060022//config: 4) The precedence of the boolean "not" operator (!) is equal to
Denys Vlasenko89e785a2018-12-13 16:35:52 +010023//config: that of the unary minus (-) negation operator. This still
Gavin Howard01055ba2018-11-03 11:00:21 -060024//config: allows POSIX-compliant scripts to work while somewhat
25//config: preserving expected behavior (versus C) and making parsing
26//config: easier.
Denys Vlasenko89e785a2018-12-13 16:35:52 +010027//config: 5) "read()" accepts expressions, not only numeric literals.
Gavin Howard01055ba2018-11-03 11:00:21 -060028//config:
29//config: Options:
Gavin Howard01055ba2018-11-03 11:00:21 -060030//config: -i --interactive force interactive mode
Denys Vlasenko89e785a2018-12-13 16:35:52 +010031//config: -q --quiet don't print version and copyright
32//config: -s --standard error if any non-POSIX extensions are used
33//config: -w --warn warn if any non-POSIX extensions are used
Gavin Howard01055ba2018-11-03 11:00:21 -060034//config: -l --mathlib use predefined math routines:
Denys Vlasenko89e785a2018-12-13 16:35:52 +010035//config: s(expr) sine in radians
36//config: c(expr) cosine in radians
37//config: a(expr) arctangent, returning radians
38//config: l(expr) natural log
39//config: e(expr) raises e to the power of expr
40//config: j(n, x) Bessel function of integer order n of x
Gavin Howard01055ba2018-11-03 11:00:21 -060041//config:
42//config:config DC
43//config: bool "dc (38 kb; 49 kb when combined with bc)"
44//config: default y
45//config: help
46//config: dc is a reverse-polish notation command-line calculator which
47//config: supports unlimited precision arithmetic. See the FreeBSD man page
48//config: (https://www.unix.com/man-page/FreeBSD/1/dc/) and GNU dc manual
Denys Vlasenko89e785a2018-12-13 16:35:52 +010049//config: (https://www.gnu.org/software/bc/manual/dc-1.05/html_mono/dc.html).
Gavin Howard01055ba2018-11-03 11:00:21 -060050//config:
51//config: This dc has a few differences from the two above:
Denys Vlasenko89e785a2018-12-13 16:35:52 +010052//config: 1) When printing a byte stream (command "P"), this dc follows what
Gavin Howard01055ba2018-11-03 11:00:21 -060053//config: the FreeBSD dc does.
Denys Vlasenko89e785a2018-12-13 16:35:52 +010054//config: 2) Implements the GNU extensions for divmod ("~") and
Gavin Howard01055ba2018-11-03 11:00:21 -060055//config: modular exponentiation ("|").
Denys Vlasenko89e785a2018-12-13 16:35:52 +010056//config: 3) Implements all FreeBSD extensions, except for "J" and "M".
Gavin Howard01055ba2018-11-03 11:00:21 -060057//config: 4) Like the FreeBSD dc, this dc supports extended registers.
58//config: However, they are implemented differently. When it encounters
59//config: whitespace where a register should be, it skips the whitespace.
60//config: If the character following is not a lowercase letter, an error
61//config: is issued. Otherwise, the register name is parsed by the
62//config: following regex:
Denys Vlasenko89e785a2018-12-13 16:35:52 +010063//config: [a-z][a-z0-9_]*
Gavin Howard01055ba2018-11-03 11:00:21 -060064//config: This generally means that register names will be surrounded by
Denys Vlasenko89e785a2018-12-13 16:35:52 +010065//config: whitespace. Examples:
66//config: l idx s temp L index S temp2 < do_thing
Gavin Howard01055ba2018-11-03 11:00:21 -060067//config: Also note that, like the FreeBSD dc, extended registers are not
68//config: allowed unless the "-x" option is given.
69//config:
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +010070//config:config FEATURE_DC_SMALL
71//config: bool "Minimal dc implementation (4.2 kb), not using bc code base"
72//config: depends on DC && !BC
Denys Vlasenko6e7c65f2018-12-08 19:34:35 +010073//config: default n
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +010074//config:
75//config:config FEATURE_DC_LIBM
76//config: bool "Enable power and exp functions (requires libm)"
77//config: default y
78//config: depends on FEATURE_DC_SMALL
79//config: help
80//config: Enable power and exp functions.
81//config: NOTE: This will require libm to be present for linking.
82//config:
Gavin Howard01055ba2018-11-03 11:00:21 -060083//config:config FEATURE_BC_SIGNALS
Denys Vlasenko89e785a2018-12-13 16:35:52 +010084//config: bool "Interactive mode (+4kb)"
Gavin Howard01055ba2018-11-03 11:00:21 -060085//config: default y
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +010086//config: depends on (BC || DC) && !FEATURE_DC_SMALL
Gavin Howard01055ba2018-11-03 11:00:21 -060087//config: help
Denys Vlasenko89e785a2018-12-13 16:35:52 +010088//config: Enable interactive mode: when started on a tty,
89//config: ^C interrupts execution and returns to command line,
90//config: errors also return to command line instead of exiting,
91//config: line editing with history is available.
92//config:
93//config: With this option off, input can still be taken from tty,
94//config: but all errors are fatal, ^C is fatal,
95//config: tty is treated exactly the same as any other
96//config: standard input (IOW: no line editing).
Gavin Howard01055ba2018-11-03 11:00:21 -060097//config:
98//config:config FEATURE_BC_LONG_OPTIONS
99//config: bool "Enable bc/dc long options"
100//config: default y
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +0100101//config: depends on (BC || DC) && !FEATURE_DC_SMALL
Gavin Howard01055ba2018-11-03 11:00:21 -0600102//config: help
103//config: Enable long options for bc and dc.
104
105//applet:IF_BC(APPLET(bc, BB_DIR_USR_BIN, BB_SUID_DROP))
106//applet:IF_DC(APPLET(dc, BB_DIR_USR_BIN, BB_SUID_DROP))
107
108//kbuild:lib-$(CONFIG_BC) += bc.o
109//kbuild:lib-$(CONFIG_DC) += bc.o
110
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100111//See www.gnu.org/software/bc/manual/bc.html
Gavin Howard01055ba2018-11-03 11:00:21 -0600112//usage:#define bc_trivial_usage
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100113//usage: "[-sqliw] FILE..."
Gavin Howard01055ba2018-11-03 11:00:21 -0600114//usage:
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100115//usage:#define bc_full_usage "\n"
116//usage: "\nArbitrary precision calculator"
117//usage: "\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100118///////: "\n -i Interactive" - has no effect for now
119//usage: "\n -q Quiet"
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100120//usage: "\n -l Load standard math library"
121//usage: "\n -s Be POSIX compatible"
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100122//usage: "\n -w Warn if extensions are used"
123///////: "\n -v Version"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100124//usage: "\n"
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100125//usage: "\n$BC_LINE_LENGTH changes output width"
Gavin Howard01055ba2018-11-03 11:00:21 -0600126//usage:
127//usage:#define bc_example_usage
128//usage: "3 + 4.129\n"
129//usage: "1903 - 2893\n"
130//usage: "-129 * 213.28935\n"
131//usage: "12 / -1932\n"
132//usage: "12 % 12\n"
133//usage: "34 ^ 189\n"
134//usage: "scale = 13\n"
135//usage: "ibase = 2\n"
136//usage: "obase = A\n"
137//usage:
138//usage:#define dc_trivial_usage
Denys Vlasenko6e7c65f2018-12-08 19:34:35 +0100139//usage: IF_NOT_FEATURE_DC_SMALL("[-x] ")"[-eSCRIPT]... [-fFILE]... [FILE]..."
Gavin Howard01055ba2018-11-03 11:00:21 -0600140//usage:
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +0100141//usage:#define dc_full_usage "\n"
142//usage: "\nTiny RPN calculator. Operations:"
Denys Vlasenko6e7c65f2018-12-08 19:34:35 +0100143//usage: "\n+, -, *, /, %, ~, ^," IF_NOT_FEATURE_DC_SMALL(" |,")
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100144//usage: "\np - print top of the stack (without popping)"
145//usage: "\nf - print entire stack"
146//usage: "\nk - pop the value and set the precision"
147//usage: "\ni - pop the value and set input radix"
148//usage: "\no - pop the value and set output radix"
149//usage: "\nExamples: dc -e'2 2 + p' -> 4, dc -e'8 8 * 2 2 + / p' -> 16"
Gavin Howard01055ba2018-11-03 11:00:21 -0600150//usage:
151//usage:#define dc_example_usage
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100152//usage: "$ dc -e'2 2 + p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600153//usage: "4\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100154//usage: "$ dc -e'8 8 \\* 2 2 + / p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600155//usage: "16\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100156//usage: "$ dc -e'0 1 & p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600157//usage: "0\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100158//usage: "$ dc -e'0 1 | p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600159//usage: "1\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100160//usage: "$ echo '72 9 / 8 * p' | dc\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600161//usage: "64\n"
162
163#include "libbb.h"
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100164#include "common_bufsiz.h"
Gavin Howard01055ba2018-11-03 11:00:21 -0600165
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +0100166#if ENABLE_FEATURE_DC_SMALL
167# include "dc.c"
168#else
169
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100170#define DEBUG_LEXER 0
Denys Vlasenko99b37622018-12-15 20:06:59 +0100171#define DEBUG_EXEC 0
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100172
173#if DEBUG_LEXER
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100174static uint8_t lex_indent;
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100175#define dbg_lex(...) \
176 do { \
177 fprintf(stderr, "%*s", lex_indent, ""); \
178 bb_error_msg(__VA_ARGS__); \
179 } while (0)
180#define dbg_lex_enter(...) \
181 do { \
182 dbg_lex(__VA_ARGS__); \
183 lex_indent++; \
184 } while (0)
185#define dbg_lex_done(...) \
186 do { \
187 lex_indent--; \
188 dbg_lex(__VA_ARGS__); \
189 } while (0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100190#else
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100191# define dbg_lex(...) ((void)0)
192# define dbg_lex_enter(...) ((void)0)
193# define dbg_lex_done(...) ((void)0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100194#endif
195
Denys Vlasenko99b37622018-12-15 20:06:59 +0100196#if DEBUG_EXEC
197# define dbg_exec(...) bb_error_msg(__VA_ARGS__)
198#else
199# define dbg_exec(...) ((void)0)
200#endif
201
Gavin Howard01055ba2018-11-03 11:00:21 -0600202typedef enum BcStatus {
Denys Vlasenko60cf7472018-12-04 20:05:28 +0100203 BC_STATUS_SUCCESS = 0,
204 BC_STATUS_FAILURE = 1,
Denys Vlasenkob402ff82018-12-11 15:45:15 +0100205 BC_STATUS_PARSE_EMPTY_EXP = 2, // bc_parse_expr_empty_ok() uses this
Gavin Howard01055ba2018-11-03 11:00:21 -0600206} BcStatus;
207
Gavin Howard01055ba2018-11-03 11:00:21 -0600208#define BC_VEC_INVALID_IDX ((size_t) -1)
209#define BC_VEC_START_CAP (1 << 5)
210
Denys Vlasenko5ba55f12018-12-10 15:37:14 +0100211typedef void (*BcVecFree)(void *) FAST_FUNC;
Gavin Howard01055ba2018-11-03 11:00:21 -0600212
213typedef struct BcVec {
214 char *v;
215 size_t len;
216 size_t cap;
217 size_t size;
218 BcVecFree dtor;
219} BcVec;
220
Gavin Howard01055ba2018-11-03 11:00:21 -0600221typedef signed char BcDig;
222
223typedef struct BcNum {
224 BcDig *restrict num;
225 size_t rdx;
226 size_t len;
227 size_t cap;
228 bool neg;
229} BcNum;
230
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100231#define BC_NUM_MAX_IBASE ((unsigned long) 16)
232// larger value might speed up BIGNUM calculations a bit:
233#define BC_NUM_DEF_SIZE (16)
234#define BC_NUM_PRINT_WIDTH (69)
Gavin Howard01055ba2018-11-03 11:00:21 -0600235
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100236#define BC_NUM_KARATSUBA_LEN (32)
Gavin Howard01055ba2018-11-03 11:00:21 -0600237
Gavin Howard01055ba2018-11-03 11:00:21 -0600238typedef enum BcInst {
239
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100240#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600241 BC_INST_INC_PRE,
242 BC_INST_DEC_PRE,
243 BC_INST_INC_POST,
244 BC_INST_DEC_POST,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100245#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600246
247 BC_INST_NEG,
248
249 BC_INST_POWER,
250 BC_INST_MULTIPLY,
251 BC_INST_DIVIDE,
252 BC_INST_MODULUS,
253 BC_INST_PLUS,
254 BC_INST_MINUS,
255
256 BC_INST_REL_EQ,
257 BC_INST_REL_LE,
258 BC_INST_REL_GE,
259 BC_INST_REL_NE,
260 BC_INST_REL_LT,
261 BC_INST_REL_GT,
262
263 BC_INST_BOOL_NOT,
264 BC_INST_BOOL_OR,
265 BC_INST_BOOL_AND,
266
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100267#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600268 BC_INST_ASSIGN_POWER,
269 BC_INST_ASSIGN_MULTIPLY,
270 BC_INST_ASSIGN_DIVIDE,
271 BC_INST_ASSIGN_MODULUS,
272 BC_INST_ASSIGN_PLUS,
273 BC_INST_ASSIGN_MINUS,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100274#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600275 BC_INST_ASSIGN,
276
277 BC_INST_NUM,
278 BC_INST_VAR,
279 BC_INST_ARRAY_ELEM,
280 BC_INST_ARRAY,
281
282 BC_INST_SCALE_FUNC,
283 BC_INST_IBASE,
284 BC_INST_SCALE,
285 BC_INST_LAST,
286 BC_INST_LENGTH,
287 BC_INST_READ,
288 BC_INST_OBASE,
289 BC_INST_SQRT,
290
291 BC_INST_PRINT,
292 BC_INST_PRINT_POP,
293 BC_INST_STR,
294 BC_INST_PRINT_STR,
295
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100296#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600297 BC_INST_JUMP,
298 BC_INST_JUMP_ZERO,
299
300 BC_INST_CALL,
301
302 BC_INST_RET,
303 BC_INST_RET0,
304
305 BC_INST_HALT,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100306#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600307
308 BC_INST_POP,
309 BC_INST_POP_EXEC,
310
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100311#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600312 BC_INST_MODEXP,
313 BC_INST_DIVMOD,
314
315 BC_INST_EXECUTE,
316 BC_INST_EXEC_COND,
317
318 BC_INST_ASCIIFY,
319 BC_INST_PRINT_STREAM,
320
321 BC_INST_PRINT_STACK,
322 BC_INST_CLEAR_STACK,
323 BC_INST_STACK_LEN,
324 BC_INST_DUPLICATE,
325 BC_INST_SWAP,
326
327 BC_INST_LOAD,
328 BC_INST_PUSH_VAR,
329 BC_INST_PUSH_TO_VAR,
330
331 BC_INST_QUIT,
332 BC_INST_NQUIT,
333
334 BC_INST_INVALID = -1,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100335#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600336
337} BcInst;
338
339typedef struct BcId {
340 char *name;
341 size_t idx;
342} BcId;
343
344typedef struct BcFunc {
345 BcVec code;
346 BcVec labels;
347 size_t nparams;
348 BcVec autos;
349} BcFunc;
350
351typedef enum BcResultType {
352
353 BC_RESULT_TEMP,
354
355 BC_RESULT_VAR,
356 BC_RESULT_ARRAY_ELEM,
357 BC_RESULT_ARRAY,
358
359 BC_RESULT_STR,
360
361 BC_RESULT_IBASE,
362 BC_RESULT_SCALE,
363 BC_RESULT_LAST,
364
365 // These are between to calculate ibase, obase, and last from instructions.
366 BC_RESULT_CONSTANT,
367 BC_RESULT_ONE,
368
369 BC_RESULT_OBASE,
370
371} BcResultType;
372
373typedef union BcResultData {
374 BcNum n;
375 BcVec v;
376 BcId id;
377} BcResultData;
378
379typedef struct BcResult {
380 BcResultType t;
381 BcResultData d;
382} BcResult;
383
384typedef struct BcInstPtr {
385 size_t func;
386 size_t idx;
387 size_t len;
388} BcInstPtr;
389
Gavin Howard01055ba2018-11-03 11:00:21 -0600390// BC_LEX_NEG is not used in lexing; it is only for parsing.
391typedef enum BcLexType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600392 BC_LEX_EOF,
393 BC_LEX_INVALID,
394
395 BC_LEX_OP_INC,
396 BC_LEX_OP_DEC,
397
398 BC_LEX_NEG,
399
400 BC_LEX_OP_POWER,
401 BC_LEX_OP_MULTIPLY,
402 BC_LEX_OP_DIVIDE,
403 BC_LEX_OP_MODULUS,
404 BC_LEX_OP_PLUS,
405 BC_LEX_OP_MINUS,
406
407 BC_LEX_OP_REL_EQ,
408 BC_LEX_OP_REL_LE,
409 BC_LEX_OP_REL_GE,
410 BC_LEX_OP_REL_NE,
411 BC_LEX_OP_REL_LT,
412 BC_LEX_OP_REL_GT,
413
414 BC_LEX_OP_BOOL_NOT,
415 BC_LEX_OP_BOOL_OR,
416 BC_LEX_OP_BOOL_AND,
417
418 BC_LEX_OP_ASSIGN_POWER,
419 BC_LEX_OP_ASSIGN_MULTIPLY,
420 BC_LEX_OP_ASSIGN_DIVIDE,
421 BC_LEX_OP_ASSIGN_MODULUS,
422 BC_LEX_OP_ASSIGN_PLUS,
423 BC_LEX_OP_ASSIGN_MINUS,
424 BC_LEX_OP_ASSIGN,
425
426 BC_LEX_NLINE,
427 BC_LEX_WHITESPACE,
428
429 BC_LEX_LPAREN,
430 BC_LEX_RPAREN,
431
432 BC_LEX_LBRACKET,
433 BC_LEX_COMMA,
434 BC_LEX_RBRACKET,
435
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100436 BC_LEX_LBRACE, // '{' is 0x7B, '}' is 0x7D,
Gavin Howard01055ba2018-11-03 11:00:21 -0600437 BC_LEX_SCOLON,
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100438 BC_LEX_RBRACE, // should be LBRACE+2: code uses (c - '{' + BC_LEX_LBRACE)
Gavin Howard01055ba2018-11-03 11:00:21 -0600439
440 BC_LEX_STR,
441 BC_LEX_NAME,
442 BC_LEX_NUMBER,
443
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100444 BC_LEX_KEY_1st_keyword,
445 BC_LEX_KEY_AUTO = BC_LEX_KEY_1st_keyword,
Gavin Howard01055ba2018-11-03 11:00:21 -0600446 BC_LEX_KEY_BREAK,
447 BC_LEX_KEY_CONTINUE,
448 BC_LEX_KEY_DEFINE,
449 BC_LEX_KEY_ELSE,
450 BC_LEX_KEY_FOR,
451 BC_LEX_KEY_HALT,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100452 // code uses "type - BC_LEX_KEY_IBASE + BC_INST_IBASE" construct,
453 BC_LEX_KEY_IBASE, // relative order should match for: BC_INST_IBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600454 BC_LEX_KEY_IF,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100455 BC_LEX_KEY_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600456 BC_LEX_KEY_LENGTH,
457 BC_LEX_KEY_LIMITS,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100458 BC_LEX_KEY_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600459 BC_LEX_KEY_PRINT,
460 BC_LEX_KEY_QUIT,
461 BC_LEX_KEY_READ,
462 BC_LEX_KEY_RETURN,
463 BC_LEX_KEY_SCALE,
464 BC_LEX_KEY_SQRT,
465 BC_LEX_KEY_WHILE,
466
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100467#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600468 BC_LEX_EQ_NO_REG,
469 BC_LEX_OP_MODEXP,
470 BC_LEX_OP_DIVMOD,
471
472 BC_LEX_COLON,
473 BC_LEX_ELSE,
474 BC_LEX_EXECUTE,
475 BC_LEX_PRINT_STACK,
476 BC_LEX_CLEAR_STACK,
477 BC_LEX_STACK_LEVEL,
478 BC_LEX_DUPLICATE,
479 BC_LEX_SWAP,
480 BC_LEX_POP,
481
482 BC_LEX_ASCIIFY,
483 BC_LEX_PRINT_STREAM,
484
485 BC_LEX_STORE_IBASE,
486 BC_LEX_STORE_SCALE,
487 BC_LEX_LOAD,
488 BC_LEX_LOAD_POP,
489 BC_LEX_STORE_PUSH,
490 BC_LEX_STORE_OBASE,
491 BC_LEX_PRINT_POP,
492 BC_LEX_NQUIT,
493 BC_LEX_SCALE_FACTOR,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100494#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600495} BcLexType;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100496// must match order of BC_LEX_KEY_foo etc above
497#if ENABLE_BC
498struct BcLexKeyword {
499 char name8[8];
500};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100501#define BC_LEX_KW_ENTRY(a, b) \
502 { .name8 = a /*, .posix = b */ }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100503static const struct BcLexKeyword bc_lex_kws[20] = {
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100504 BC_LEX_KW_ENTRY("auto" , 1), // 0
505 BC_LEX_KW_ENTRY("break" , 1), // 1
506 BC_LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
507 BC_LEX_KW_ENTRY("define" , 1), // 3
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100508 BC_LEX_KW_ENTRY("else" , 0), // 4
509 BC_LEX_KW_ENTRY("for" , 1), // 5
510 BC_LEX_KW_ENTRY("halt" , 0), // 6
511 BC_LEX_KW_ENTRY("ibase" , 1), // 7
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100512 BC_LEX_KW_ENTRY("if" , 1), // 8
513 BC_LEX_KW_ENTRY("last" , 0), // 9
514 BC_LEX_KW_ENTRY("length" , 1), // 10
515 BC_LEX_KW_ENTRY("limits" , 0), // 11
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100516 BC_LEX_KW_ENTRY("obase" , 1), // 12
517 BC_LEX_KW_ENTRY("print" , 0), // 13
518 BC_LEX_KW_ENTRY("quit" , 1), // 14
519 BC_LEX_KW_ENTRY("read" , 0), // 15
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100520 BC_LEX_KW_ENTRY("return" , 1), // 16
521 BC_LEX_KW_ENTRY("scale" , 1), // 17
522 BC_LEX_KW_ENTRY("sqrt" , 1), // 18
523 BC_LEX_KW_ENTRY("while" , 1), // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100524};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100525#undef BC_LEX_KW_ENTRY
Denys Vlasenko59d4ce92018-12-17 10:42:31 +0100526#define STRING_if (bc_lex_kws[8].name8)
527#define STRING_else (bc_lex_kws[4].name8)
528#define STRING_while (bc_lex_kws[19].name8)
529#define STRING_for (bc_lex_kws[5].name8)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100530enum {
531 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100532 | (1 << 0) // 0
533 | (1 << 1) // 1
534 | (0 << 2) // 2
535 | (1 << 3) // 3
536 | (0 << 4) // 4
537 | (1 << 5) // 5
538 | (0 << 6) // 6
539 | (1 << 7) // 7
540 | (1 << 8) // 8
541 | (0 << 9) // 9
542 | (1 << 10) // 10
543 | (0 << 11) // 11
544 | (1 << 12) // 12
545 | (0 << 13) // 13
546 | (1 << 14) // 14
547 | (0 << 15) // 15
548 | (1 << 16) // 16
549 | (1 << 17) // 17
550 | (1 << 18) // 18
551 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100552};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100553#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100554
555// This is a bit array that corresponds to token types. An entry is
556// true if the token is valid in an expression, false otherwise.
557// Used to figure out when expr parsing should stop *without error message*
558// - 0 element indicates this condition. 1 means "this token is to be eaten
559// as part of the expression", token can them still be determined to be invalid
560// by later processing.
561enum {
562#define EXBITS(a,b,c,d,e,f,g,h) \
563 ((uint64_t)((a << 0)+(b << 1)+(c << 2)+(d << 3)+(e << 4)+(f << 5)+(g << 6)+(h << 7)))
564 BC_PARSE_EXPRS_BITS = 0
565 + (EXBITS(0,0,1,1,1,1,1,1) << (0*8)) // 0: eof inval ++ -- - ^ * /
566 + (EXBITS(1,1,1,1,1,1,1,1) << (1*8)) // 8: % + - == <= >= != <
567 + (EXBITS(1,1,1,1,1,1,1,1) << (2*8)) // 16: > ! || && ^= *= /= %=
568 + (EXBITS(1,1,1,0,0,1,1,0) << (3*8)) // 24: += -= = NL WS ( ) [
569 + (EXBITS(0,0,0,0,0,0,1,1) << (4*8)) // 32: , ] { ; } STR NAME NUM
570 + (EXBITS(0,0,0,0,0,0,0,1) << (5*8)) // 40: auto break cont define else for halt ibase
571 + (EXBITS(0,1,1,1,1,0,0,1) << (6*8)) // 48: if last len limits obase print quit read - bug, why "limits" is allowed?
572 + (EXBITS(0,1,1,0,0,0,0,0) << (7*8)) // 56: return scale sqrt while
573#undef EXBITS
574};
575static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
576{
577#if ULONG_MAX > 0xffffffff
578 // 64-bit version (will not work correctly for 32-bit longs!)
579 return BC_PARSE_EXPRS_BITS & (1UL << i);
580#else
581 // 32-bit version
582 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
583 if (i >= 32) {
584 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
585 i &= 31;
586 }
587 return m & (1UL << i);
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100588#endif
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100589}
590
591// This is an array of data for operators that correspond to
592// [BC_LEX_OP_INC...BC_LEX_OP_ASSIGN] token types.
593static const uint8_t bc_parse_ops[] = {
594#define OP(p,l) ((int)(l) * 0x10 + (p))
595 OP(0, false), OP( 0, false ), // inc dec
596 OP(1, false), // neg
597 OP(2, false), // pow
598 OP(3, true ), OP( 3, true ), OP( 3, true ), // mul div mod
599 OP(4, true ), OP( 4, true ), // + -
600 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
601 OP(1, false), // not
602 OP(7, true ), OP( 7, true ), // or and
603 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
604 OP(5, false), OP( 5, false ), // -= =
605#undef OP
606};
607#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
608#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
609#endif // ENABLE_BC
610
611#if ENABLE_DC
612static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
613int8_t
614dc_parse_insts[] = {
615 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
616 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
617 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
618 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
619 BC_INST_INVALID, BC_INST_INVALID,
620 BC_INST_BOOL_NOT, BC_INST_INVALID, BC_INST_INVALID,
621 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
622 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
623 BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GT, BC_INST_INVALID,
624 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
625 BC_INST_INVALID, BC_INST_INVALID,
626 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
627 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
628 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
629 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
630 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
631 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
632 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
633 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
634 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
635 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
636 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
637 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
638};
639#endif // ENABLE_DC
640
Gavin Howard01055ba2018-11-03 11:00:21 -0600641
Gavin Howard01055ba2018-11-03 11:00:21 -0600642typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600643 const char *buf;
644 size_t i;
645 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600646 size_t len;
647 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600648 struct {
649 BcLexType t;
650 BcLexType last;
651 BcVec v;
652 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600653} BcLex;
654
Denys Vlasenko0154d782018-12-14 23:32:51 +0100655#define BC_PARSE_STREND ((char) UCHAR_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -0600656
Denys Vlasenko0154d782018-12-14 23:32:51 +0100657#define BC_PARSE_REL (1 << 0)
658#define BC_PARSE_PRINT (1 << 1)
659#define BC_PARSE_NOCALL (1 << 2)
660#define BC_PARSE_NOREAD (1 << 3)
661#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600662
Gavin Howard01055ba2018-11-03 11:00:21 -0600663typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600664 BcLex l;
665
Gavin Howard01055ba2018-11-03 11:00:21 -0600666 BcVec exits;
667 BcVec conds;
668
669 BcVec ops;
670
Gavin Howard01055ba2018-11-03 11:00:21 -0600671 BcFunc *func;
672 size_t fidx;
673
Denys Vlasenkoe9519e42018-12-16 17:06:07 +0100674 size_t in_funcdef;
Gavin Howard01055ba2018-11-03 11:00:21 -0600675} BcParse;
676
Gavin Howard01055ba2018-11-03 11:00:21 -0600677typedef struct BcProgram {
678
679 size_t len;
680 size_t scale;
681
Gavin Howard01055ba2018-11-03 11:00:21 -0600682 size_t ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600683 size_t ob_t;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +0100684 BcNum ob;
Gavin Howard01055ba2018-11-03 11:00:21 -0600685
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100686#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600687 BcNum strmb;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100688#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600689
690 BcVec results;
691 BcVec stack;
692
693 BcVec fns;
694 BcVec fn_map;
695
696 BcVec vars;
697 BcVec var_map;
698
699 BcVec arrs;
700 BcVec arr_map;
701
702 BcVec strs;
703 BcVec consts;
704
705 const char *file;
706
707 BcNum last;
708 BcNum zero;
709 BcNum one;
710
711 size_t nchars;
712
Gavin Howard01055ba2018-11-03 11:00:21 -0600713} BcProgram;
714
715#define BC_PROG_STACK(s, n) ((s)->len >= ((size_t) n))
716
717#define BC_PROG_MAIN (0)
718#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100719#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600720#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100721#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600722
723#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
724#define BC_PROG_NUM(r, n) \
725 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
726
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100727#define BC_FLAG_W (1 << 0)
728#define BC_FLAG_V (1 << 1)
729#define BC_FLAG_S (1 << 2)
730#define BC_FLAG_Q (1 << 3)
731#define BC_FLAG_L (1 << 4)
732#define BC_FLAG_I (1 << 5)
733#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600734
735#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
736#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
737
Denys Vlasenko64074a12018-12-07 15:50:14 +0100738#define BC_MAX_OBASE ((unsigned) 999)
739#define BC_MAX_DIM ((unsigned) INT_MAX)
740#define BC_MAX_SCALE ((unsigned) UINT_MAX)
741#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
742#define BC_MAX_NUM BC_MAX_STRING
743// Unused apart from "limits" message. Just show a "biggish number" there.
744//#define BC_MAX_NAME BC_MAX_STRING
745//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
746//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
747#define BC_MAX_NAME_STR "999999999"
748#define BC_MAX_EXP_STR "999999999"
749#define BC_MAX_VARS_STR "999999999"
750
751#define BC_MAX_OBASE_STR "999"
752
753#if INT_MAX == 2147483647
754# define BC_MAX_DIM_STR "2147483647"
755#elif INT_MAX == 9223372036854775807
756# define BC_MAX_DIM_STR "9223372036854775807"
757#else
758# error Strange INT_MAX
759#endif
760
761#if UINT_MAX == 4294967295
762# define BC_MAX_SCALE_STR "4294967295"
763# define BC_MAX_STRING_STR "4294967294"
764#elif UINT_MAX == 18446744073709551615
765# define BC_MAX_SCALE_STR "18446744073709551615"
766# define BC_MAX_STRING_STR "18446744073709551614"
767#else
768# error Strange UINT_MAX
769#endif
770#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600771
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100772struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100773 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100774 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100775 smallint in_read;
Gavin Howard01055ba2018-11-03 11:00:21 -0600776
777 BcParse prs;
778 BcProgram prog;
779
Denys Vlasenko5318f812018-12-05 17:48:01 +0100780 // For error messages. Can be set to current parsed line,
781 // or [TODO] to current executing line (can be before last parsed one)
782 unsigned err_line;
783
Gavin Howard01055ba2018-11-03 11:00:21 -0600784 BcVec files;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +0100785 BcVec input_buffer;
786 FILE *input_fp;
Gavin Howard01055ba2018-11-03 11:00:21 -0600787
788 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100789
790#if ENABLE_FEATURE_EDITING
791 line_input_t *line_input_state;
792#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100793} FIX_ALIASING;
794#define G (*ptr_to_globals)
795#define INIT_G() do { \
796 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
797} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100798#define FREE_G() do { \
799 FREE_PTR_TO_GLOBALS(); \
800} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100801#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
802#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100803#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100804#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100805# define G_interrupt bb_got_signal
806# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100807#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100808# define G_interrupt 0
809# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100810#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100811#if ENABLE_FEATURE_CLEAN_UP
812# define G_exiting G.exiting
813#else
814# define G_exiting 0
815#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100816#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100817#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100818
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100819// In configurations where errors abort instead of propagating error
820// return code up the call chain, functions returning BC_STATUS
821// actually don't return anything, they always succeed and return "void".
822// A macro wrapper is provided, which makes this statement work:
823// s = zbc_func(...)
824// and makes it visible to the compiler that s is always zero,
825// allowing compiler to optimize dead code after the statement.
826//
827// To make code more readable, each such function has a "z"
828// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
829//
830#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100831# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100832# define ERRORFUNC /*nothing*/
Denys Vlasenkoec603182018-12-17 10:34:02 +0100833# define IF_ERROR_RETURN_POSSIBLE(a) a
834# define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100835# define RETURN_STATUS(v) return (v)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100836# define COMMA_SUCCESS /*nothing*/
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100837#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100838# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100839# define ERRORFUNC NORETURN
Denys Vlasenkoec603182018-12-17 10:34:02 +0100840# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
841# define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100842# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100843# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100844#endif
845
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100846#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
847#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
848#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
849//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
850static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
851{
852 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
853}
854//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
855static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
856{
857 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
858}
859
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100860typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
861
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100862typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100863
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100864static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
865 BcNumBinaryOp op, size_t req);
866static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
867static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
868static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
869static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
870static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
871static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
872
873static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
874{
875 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
876 (void) scale;
877 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
878}
879
880static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
881{
882 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
883 (void) scale;
884 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
885}
886
887static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
888{
889 size_t req = BC_NUM_MREQ(a, b, scale);
890 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
891}
892
893static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
894{
895 size_t req = BC_NUM_MREQ(a, b, scale);
896 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
897}
898
899static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
900{
901 size_t req = BC_NUM_MREQ(a, b, scale);
902 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
903}
904
905static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
906{
907 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
908}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100909
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100910static const BcNumBinaryOp zbc_program_ops[] = {
911 zbc_num_pow, zbc_num_mul, zbc_num_div, zbc_num_mod, zbc_num_add, zbc_num_sub,
Gavin Howard01055ba2018-11-03 11:00:21 -0600912};
Denys Vlasenkoec603182018-12-17 10:34:02 +0100913#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
914#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
915#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
916#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
917#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
918#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -0600919
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100920static void fflush_and_check(void)
921{
922 fflush_all();
923 if (ferror(stdout) || ferror(stderr))
924 bb_perror_msg_and_die("output error");
925}
926
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100927#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100928#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100929do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100930 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100931 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100932 return BC_STATUS_FAILURE; \
933} while (0)
934#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100935#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100936#endif
937
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100938static void quit(void) NORETURN;
939static void quit(void)
940{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100941 if (ferror(stdin))
942 bb_perror_msg_and_die("input error");
943 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100944 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100945 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100946}
947
Denys Vlasenko5318f812018-12-05 17:48:01 +0100948static void bc_verror_msg(const char *fmt, va_list p)
949{
Denys Vlasenko82269122018-12-14 16:30:56 +0100950 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +0100951 if (G.prog.file) {
952 sv = applet_name;
953 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
954 }
955 bb_verror_msg(fmt, p, NULL);
956 if (G.prog.file) {
957 free((char*)applet_name);
958 applet_name = sv;
959 }
960}
961
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100962static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100963{
964 va_list p;
965
966 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100967 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100968 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +0100969
Denys Vlasenkoec603182018-12-17 10:34:02 +0100970 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
971 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
972 exit(1);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100973}
974
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100975#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100976static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100977{
978 va_list p;
979
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100980 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100981 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100982 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100983
984 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100985 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100986 va_end(p);
987
988 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100989 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100990 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenkoec603182018-12-17 10:34:02 +0100991 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
992 return BC_STATUS_FAILURE;
993 exit(1);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100994}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100995#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100996
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100997// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
998// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100999// function must not have caller-cleaned parameters on stack.
1000// Unfortunately, vararg function API does exactly that on most arches.
1001// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001002static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001003{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001004 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001005}
1006static ERRORFUNC int bc_error_bad_character(char c)
1007{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001008 if (!c)
1009 IF_ERROR_RETURN_POSSIBLE(return) bc_error("NUL character");
Denys Vlasenkoec603182018-12-17 10:34:02 +01001010 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001011}
1012static ERRORFUNC int bc_error_bad_expression(void)
1013{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001014 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001015}
1016static ERRORFUNC int bc_error_bad_token(void)
1017{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001018 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001019}
1020static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1021{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001022 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001023}
1024static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1025{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001026 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001027}
1028static ERRORFUNC int bc_error_nested_read_call(void)
1029{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001030 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001031}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001032#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001033static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001034{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001035 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001036}
Denys Vlasenko00646792018-12-05 18:12:27 +01001037static int bc_POSIX_does_not_allow(const char *msg)
1038{
1039 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1040}
1041static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1042{
1043 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1044}
1045static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1046{
1047 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1048}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001049#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001050
Gavin Howard01055ba2018-11-03 11:00:21 -06001051static void bc_vec_grow(BcVec *v, size_t n)
1052{
1053 size_t cap = v->cap * 2;
1054 while (cap < v->len + n) cap *= 2;
1055 v->v = xrealloc(v->v, v->size * cap);
1056 v->cap = cap;
1057}
1058
1059static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1060{
1061 v->size = esize;
1062 v->cap = BC_VEC_START_CAP;
1063 v->len = 0;
1064 v->dtor = dtor;
1065 v->v = xmalloc(esize * BC_VEC_START_CAP);
1066}
1067
Denys Vlasenko7d628012018-12-04 21:46:47 +01001068static void bc_char_vec_init(BcVec *v)
1069{
1070 bc_vec_init(v, sizeof(char), NULL);
1071}
1072
Gavin Howard01055ba2018-11-03 11:00:21 -06001073static void bc_vec_expand(BcVec *v, size_t req)
1074{
1075 if (v->cap < req) {
1076 v->v = xrealloc(v->v, v->size * req);
1077 v->cap = req;
1078 }
1079}
1080
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001081static void bc_vec_pop(BcVec *v)
1082{
1083 v->len--;
1084 if (v->dtor)
1085 v->dtor(v->v + (v->size * v->len));
1086}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001087
Gavin Howard01055ba2018-11-03 11:00:21 -06001088static void bc_vec_npop(BcVec *v, size_t n)
1089{
1090 if (!v->dtor)
1091 v->len -= n;
1092 else {
1093 size_t len = v->len - n;
1094 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1095 }
1096}
1097
Denys Vlasenko7d628012018-12-04 21:46:47 +01001098static void bc_vec_pop_all(BcVec *v)
1099{
1100 bc_vec_npop(v, v->len);
1101}
1102
Gavin Howard01055ba2018-11-03 11:00:21 -06001103static void bc_vec_push(BcVec *v, const void *data)
1104{
1105 if (v->len + 1 > v->cap) bc_vec_grow(v, 1);
1106 memmove(v->v + (v->size * v->len), data, v->size);
1107 v->len += 1;
1108}
1109
1110static void bc_vec_pushByte(BcVec *v, char data)
1111{
1112 bc_vec_push(v, &data);
1113}
1114
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001115static void bc_vec_pushZeroByte(BcVec *v)
1116{
1117 //bc_vec_pushByte(v, '\0');
1118 // better:
1119 bc_vec_push(v, &const_int_0);
1120}
1121
Gavin Howard01055ba2018-11-03 11:00:21 -06001122static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1123{
1124 if (idx == v->len)
1125 bc_vec_push(v, data);
1126 else {
1127
1128 char *ptr;
1129
1130 if (v->len == v->cap) bc_vec_grow(v, 1);
1131
1132 ptr = v->v + v->size * idx;
1133
1134 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1135 memmove(ptr, data, v->size);
1136 }
1137}
1138
1139static void bc_vec_string(BcVec *v, size_t len, const char *str)
1140{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001141 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001142 bc_vec_expand(v, len + 1);
1143 memcpy(v->v, str, len);
1144 v->len = len;
1145
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001146 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001147}
1148
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001149#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001150static void bc_vec_concat(BcVec *v, const char *str)
1151{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001152 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001153
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001154 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001155
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001156 slen = strlen(str);
1157 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001158
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001159 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001160 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001161
1162 v->len = len;
1163}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001164#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001165
1166static void *bc_vec_item(const BcVec *v, size_t idx)
1167{
1168 return v->v + v->size * idx;
1169}
1170
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001171static char** bc_program_str(size_t idx)
1172{
1173 return bc_vec_item(&G.prog.strs, idx);
1174}
1175
1176static BcFunc* bc_program_func(size_t idx)
1177{
1178 return bc_vec_item(&G.prog.fns, idx);
1179}
1180
Gavin Howard01055ba2018-11-03 11:00:21 -06001181static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1182{
1183 return v->v + v->size * (v->len - idx - 1);
1184}
1185
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001186static void *bc_vec_top(const BcVec *v)
1187{
1188 return v->v + v->size * (v->len - 1);
1189}
1190
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001191static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001192{
1193 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001194 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001195 free(v->v);
1196}
1197
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001198static int bc_id_cmp(const void *e1, const void *e2)
1199{
1200 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1201}
1202
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001203static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001204{
1205 free(((BcId *) id)->name);
1206}
1207
Gavin Howard01055ba2018-11-03 11:00:21 -06001208static size_t bc_map_find(const BcVec *v, const void *ptr)
1209{
1210 size_t low = 0, high = v->len;
1211
1212 while (low < high) {
1213
1214 size_t mid = (low + high) / 2;
1215 BcId *id = bc_vec_item(v, mid);
1216 int result = bc_id_cmp(ptr, id);
1217
1218 if (result == 0)
1219 return mid;
1220 else if (result < 0)
1221 high = mid;
1222 else
1223 low = mid + 1;
1224 }
1225
1226 return low;
1227}
1228
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001229static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001230{
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001231 size_t n = *i = bc_map_find(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001232
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001233 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001234 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001235 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1236 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001237 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001238 bc_vec_pushAt(v, ptr, n);
1239 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001240}
1241
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001242#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06001243static size_t bc_map_index(const BcVec *v, const void *ptr)
1244{
1245 size_t i = bc_map_find(v, ptr);
1246 if (i >= v->len) return BC_VEC_INVALID_IDX;
1247 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1248}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001249#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001250
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001251static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001252{
1253 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1254 || c > 0x7e
1255 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001256 bc_error_fmt("illegal character 0x%02x", c);
1257 return 1;
1258 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001259 return 0;
1260}
1261
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001262// Note: it _appends_ data from fp to vec.
1263static void bc_read_line(BcVec *vec, FILE *fp)
Gavin Howard01055ba2018-11-03 11:00:21 -06001264{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001265 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001266 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001267
Gavin Howard01055ba2018-11-03 11:00:21 -06001268#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001269 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001270 intr:
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001271 if (fp != stdin) {
1272 // ^C while running a script (bc SCRIPT): die.
1273 // We do not return to interactive prompt:
1274 // user might be running us from a shell,
1275 // and SCRIPT might be intended to terminate
1276 // (e.g. contain a "halt" stmt).
1277 // ^C dropping user into a bc prompt instead of
1278 // the shell would be unexpected.
1279 xfunc_die();
1280 }
1281 // ^C while interactive input
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001282 G_interrupt = 0;
1283 // GNU bc says "interrupted execution."
1284 // GNU dc says "Interrupt!"
1285 fputs("\ninterrupted execution\n", stderr);
1286 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001287
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001288# if ENABLE_FEATURE_EDITING
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001289 if (G_ttyin && fp == stdin) {
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001290 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001291# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001292 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1293 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1294 if (n == 0) // ^C
1295 goto intr;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001296 bc_vec_pushZeroByte(vec); // ^D or EOF (or error)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001297 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001298 }
1299 i = 0;
1300 for (;;) {
1301 char c = line_buf[i++];
1302 if (!c) break;
1303 if (bad_input_byte(c)) goto again;
1304 }
1305 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001306# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001307 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001308# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001309#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001310 {
1311 int c;
1312 bool bad_chars = 0;
1313 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001314
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001315 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001316#if ENABLE_FEATURE_BC_SIGNALS
1317 if (G_interrupt) {
1318 // ^C was pressed: ignore entire line, get another one
1319 vec->len = len;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001320 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001321 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001322#endif
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001323 do c = fgetc(fp); while (c == '\0');
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001324 if (c == EOF) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001325 if (ferror(fp))
1326 bb_perror_msg_and_die("input error");
1327 // Note: EOF does not append '\n'
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001328 break;
1329 }
1330 bad_chars |= bad_input_byte(c);
1331 bc_vec_pushByte(vec, (char)c);
1332 } while (c != '\n');
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001333
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001334 if (bad_chars) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001335 // Bad chars on this line
1336 if (!G.prog.file) { // stdin
1337 // ignore entire line, get another one
1338 vec->len = len;
1339 goto again;
1340 }
1341 bb_perror_msg_and_die("file '%s' is not text", G.prog.file);
Denys Vlasenkoed849352018-12-06 10:26:13 +01001342 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001343 bc_vec_pushZeroByte(vec);
1344 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001345}
1346
Gavin Howard01055ba2018-11-03 11:00:21 -06001347static void bc_num_setToZero(BcNum *n, size_t scale)
1348{
1349 n->len = 0;
1350 n->neg = false;
1351 n->rdx = scale;
1352}
1353
1354static void bc_num_zero(BcNum *n)
1355{
1356 bc_num_setToZero(n, 0);
1357}
1358
1359static void bc_num_one(BcNum *n)
1360{
1361 bc_num_setToZero(n, 0);
1362 n->len = 1;
1363 n->num[0] = 1;
1364}
1365
1366static void bc_num_ten(BcNum *n)
1367{
1368 bc_num_setToZero(n, 0);
1369 n->len = 2;
1370 n->num[0] = 0;
1371 n->num[1] = 1;
1372}
1373
Denys Vlasenko3129f702018-12-09 12:04:44 +01001374// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001375static void bc_num_init(BcNum *n, size_t req)
1376{
1377 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001378 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001379 n->num = xmalloc(req);
1380 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001381 n->rdx = 0;
1382 n->len = 0;
1383 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001384}
1385
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001386static void bc_num_init_DEF_SIZE(BcNum *n)
1387{
1388 bc_num_init(n, BC_NUM_DEF_SIZE);
1389}
1390
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001391static void bc_num_expand(BcNum *n, size_t req)
1392{
1393 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1394 if (req > n->cap) {
1395 n->num = xrealloc(n->num, req);
1396 n->cap = req;
1397 }
1398}
1399
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001400static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001401{
1402 free(((BcNum *) num)->num);
1403}
1404
1405static void bc_num_copy(BcNum *d, BcNum *s)
1406{
1407 if (d != s) {
1408 bc_num_expand(d, s->cap);
1409 d->len = s->len;
1410 d->neg = s->neg;
1411 d->rdx = s->rdx;
1412 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1413 }
1414}
1415
Denys Vlasenko29301232018-12-11 15:29:32 +01001416static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001417{
1418 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001419 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001420
Denys Vlasenko29301232018-12-11 15:29:32 +01001421 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001422
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001423 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001424
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001425 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001426
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001427 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001428 pow *= 10;
1429
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001430 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001431 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001432 prev = result;
1433 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001434 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001435 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001436
Denys Vlasenko29301232018-12-11 15:29:32 +01001437 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001438}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001439#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001440
1441static void bc_num_ulong2num(BcNum *n, unsigned long val)
1442{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001443 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001444
1445 bc_num_zero(n);
1446
1447 if (val == 0) return;
1448
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001449 if (ULONG_MAX == 0xffffffffUL)
1450 bc_num_expand(n, 10); // 10 digits: 4294967295
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001451 if (ULONG_MAX == 0xffffffffffffffffULL)
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001452 bc_num_expand(n, 20); // 20 digits: 18446744073709551615
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001453 BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001454
1455 ptr = n->num;
1456 for (;;) {
1457 n->len++;
1458 *ptr++ = val % 10;
1459 val /= 10;
1460 if (val == 0) break;
1461 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001462}
1463
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001464static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001465 size_t len)
1466{
1467 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001468 for (i = 0; i < len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001469 a[i] -= b[i];
1470 for (j = i; a[j] < 0;) {
1471 a[j++] += 10;
1472 a[j] -= 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06001473 }
1474 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001475}
1476
1477static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1478{
Denys Vlasenko4113e1f2018-12-18 00:39:24 +01001479 size_t i = len;
1480 for (;;) {
1481 int c;
1482 if (i == 0)
1483 return 0;
1484 i--;
1485 c = a[i] - b[i];
1486 if (c != 0) {
1487 i++;
1488 if (c < 0)
1489 return -i;
1490 return i;
1491 }
1492 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001493}
1494
1495static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1496{
1497 size_t i, min, a_int, b_int, diff;
1498 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001499 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001500 ssize_t cmp;
1501
1502 if (a == b) return 0;
1503 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1504 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001505
1506 if (a->neg != b->neg) // signs of a and b differ
1507 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1508 return (int)b->neg - (int)a->neg;
1509 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001510
1511 a_int = BC_NUM_INT(a);
1512 b_int = BC_NUM_INT(b);
1513 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001514
1515 if (a_int != 0) return (ssize_t) a_int;
1516
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001517 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001518 if (a_max) {
1519 min = b->rdx;
1520 diff = a->rdx - b->rdx;
1521 max_num = a->num + diff;
1522 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001523 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1524 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001525 min = a->rdx;
1526 diff = b->rdx - a->rdx;
1527 max_num = b->num + diff;
1528 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001529 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001530 }
1531
1532 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001533 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001534
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001535 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001536 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001537 }
1538
1539 return 0;
1540}
1541
1542static void bc_num_truncate(BcNum *n, size_t places)
1543{
1544 if (places == 0) return;
1545
1546 n->rdx -= places;
1547
1548 if (n->len != 0) {
1549 n->len -= places;
1550 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1551 }
1552}
1553
1554static void bc_num_extend(BcNum *n, size_t places)
1555{
1556 size_t len = n->len + places;
1557
1558 if (places != 0) {
1559
1560 if (n->cap < len) bc_num_expand(n, len);
1561
1562 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1563 memset(n->num, 0, sizeof(BcDig) * places);
1564
1565 n->len += places;
1566 n->rdx += places;
1567 }
1568}
1569
1570static void bc_num_clean(BcNum *n)
1571{
1572 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1573 if (n->len == 0)
1574 n->neg = false;
1575 else if (n->len < n->rdx)
1576 n->len = n->rdx;
1577}
1578
1579static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1580{
1581 if (n->rdx < scale)
1582 bc_num_extend(n, scale - n->rdx);
1583 else
1584 bc_num_truncate(n, n->rdx - scale);
1585
1586 bc_num_clean(n);
1587 if (n->len != 0) n->neg = !neg1 != !neg2;
1588}
1589
1590static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1591 BcNum *restrict b)
1592{
1593 if (idx < n->len) {
1594
1595 b->len = n->len - idx;
1596 a->len = idx;
1597 a->rdx = b->rdx = 0;
1598
1599 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1600 memcpy(a->num, n->num, idx * sizeof(BcDig));
1601 }
1602 else {
1603 bc_num_zero(b);
1604 bc_num_copy(a, n);
1605 }
1606
1607 bc_num_clean(a);
1608 bc_num_clean(b);
1609}
1610
Denys Vlasenko29301232018-12-11 15:29:32 +01001611static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001612{
Denys Vlasenko29301232018-12-11 15:29:32 +01001613 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001614
1615 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1616 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1617 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001618 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001619 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001620
1621 if (n->rdx >= places)
1622 n->rdx -= places;
1623 else {
1624 bc_num_extend(n, places - n->rdx);
1625 n->rdx = 0;
1626 }
1627
1628 bc_num_clean(n);
1629
Denys Vlasenko29301232018-12-11 15:29:32 +01001630 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001631}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001632#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001633
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001634static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001635{
1636 BcNum one;
1637 BcDig num[2];
1638
1639 one.cap = 2;
1640 one.num = num;
1641 bc_num_one(&one);
1642
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001643 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001644}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001645#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001646
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001647static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001648{
1649 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1650 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001651 unsigned carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001652
1653 // Because this function doesn't need to use scale (per the bc spec),
1654 // I am hijacking it to say whether it's doing an add or a subtract.
1655
1656 if (a->len == 0) {
1657 bc_num_copy(c, b);
1658 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001659 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001660 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001661 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001662 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001663 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001664 }
1665
1666 c->neg = a->neg;
1667 c->rdx = BC_MAX(a->rdx, b->rdx);
1668 min_rdx = BC_MIN(a->rdx, b->rdx);
1669 c->len = 0;
1670
1671 if (a->rdx > b->rdx) {
1672 diff = a->rdx - b->rdx;
1673 ptr = a->num;
1674 ptr_a = a->num + diff;
1675 ptr_b = b->num;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001676 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001677 diff = b->rdx - a->rdx;
1678 ptr = b->num;
1679 ptr_a = a->num;
1680 ptr_b = b->num + diff;
1681 }
1682
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001683 ptr_c = c->num;
1684 for (i = 0; i < diff; ++i, ++c->len)
1685 ptr_c[i] = ptr[i];
Gavin Howard01055ba2018-11-03 11:00:21 -06001686
1687 ptr_c += diff;
1688 a_int = BC_NUM_INT(a);
1689 b_int = BC_NUM_INT(b);
1690
1691 if (a_int > b_int) {
1692 min_int = b_int;
1693 max = a_int;
1694 ptr = ptr_a;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001695 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001696 min_int = a_int;
1697 max = b_int;
1698 ptr = ptr_b;
1699 }
1700
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001701 carry = 0;
1702 for (i = 0; i < min_rdx + min_int; ++i) {
1703 unsigned in = (unsigned)ptr_a[i] + (unsigned)ptr_b[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001704 carry = in / 10;
1705 ptr_c[i] = (BcDig)(in % 10);
1706 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001707 for (; i < max + min_rdx; ++i) {
1708 unsigned in = (unsigned)ptr[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001709 carry = in / 10;
1710 ptr_c[i] = (BcDig)(in % 10);
1711 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001712 c->len += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06001713
1714 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1715
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001716 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001717}
1718
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001719static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001720{
Gavin Howard01055ba2018-11-03 11:00:21 -06001721 ssize_t cmp;
1722 BcNum *minuend, *subtrahend;
1723 size_t start;
1724 bool aneg, bneg, neg;
1725
1726 // Because this function doesn't need to use scale (per the bc spec),
1727 // I am hijacking it to say whether it's doing an add or a subtract.
1728
1729 if (a->len == 0) {
1730 bc_num_copy(c, b);
1731 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001732 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001733 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001734 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001735 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001736 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001737 }
1738
1739 aneg = a->neg;
1740 bneg = b->neg;
1741 a->neg = b->neg = false;
1742
1743 cmp = bc_num_cmp(a, b);
1744
1745 a->neg = aneg;
1746 b->neg = bneg;
1747
1748 if (cmp == 0) {
1749 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001750 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001751 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001752 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001753 neg = a->neg;
1754 minuend = a;
1755 subtrahend = b;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001756 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001757 neg = b->neg;
1758 if (sub) neg = !neg;
1759 minuend = b;
1760 subtrahend = a;
1761 }
1762
1763 bc_num_copy(c, minuend);
1764 c->neg = neg;
1765
1766 if (c->rdx < subtrahend->rdx) {
1767 bc_num_extend(c, subtrahend->rdx - c->rdx);
1768 start = 0;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001769 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06001770 start = c->rdx - subtrahend->rdx;
1771
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001772 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001773
1774 bc_num_clean(c);
1775
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001776 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001777}
1778
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001779static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001780 BcNum *restrict c)
Denys Vlasenkoec603182018-12-17 10:34:02 +01001781#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001782{
1783 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001784 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001785 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001786 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001787
Gavin Howard01055ba2018-11-03 11:00:21 -06001788 if (a->len == 0 || b->len == 0) {
1789 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001790 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001791 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001792 aone = BC_NUM_ONE(a);
1793 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001794 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001795 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001796 }
1797
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001798 if (a->len + b->len < BC_NUM_KARATSUBA_LEN
1799 || a->len < BC_NUM_KARATSUBA_LEN
1800 || b->len < BC_NUM_KARATSUBA_LEN
1801 ) {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001802 size_t i, j, len;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001803
Gavin Howard01055ba2018-11-03 11:00:21 -06001804 bc_num_expand(c, a->len + b->len + 1);
1805
1806 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001807 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001808
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001809 for (i = 0; i < b->len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001810 unsigned carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001811 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001812 unsigned in = c->num[i + j];
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001813 in += (unsigned)a->num[j] * (unsigned)b->num[i] + carry;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001814 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001815 carry = in / 10;
1816 c->num[i + j] = (BcDig)(in % 10);
1817 }
1818
1819 c->num[i + j] += (BcDig) carry;
1820 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001821
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001822#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001823 // a=2^1000000
1824 // a*a <- without check below, this will not be interruptible
1825 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001826#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001827 }
1828
1829 c->len = len;
1830
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001831 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001832 }
1833
1834 bc_num_init(&l1, max);
1835 bc_num_init(&h1, max);
1836 bc_num_init(&l2, max);
1837 bc_num_init(&h2, max);
1838 bc_num_init(&m1, max);
1839 bc_num_init(&m2, max);
1840 bc_num_init(&z0, max);
1841 bc_num_init(&z1, max);
1842 bc_num_init(&z2, max);
1843 bc_num_init(&temp, max + max);
1844
1845 bc_num_split(a, max2, &l1, &h1);
1846 bc_num_split(b, max2, &l2, &h2);
1847
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001848 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001849 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001850 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001851 if (s) goto err;
1852
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001853 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001854 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001855 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001856 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001857 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001858 if (s) goto err;
1859
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001860 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001861 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001862 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001863 if (s) goto err;
1864
Denys Vlasenko29301232018-12-11 15:29:32 +01001865 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001866 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001867 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001868 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001869 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001870 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001871 s = zbc_num_add(&temp, &z2, c, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001872
1873err:
1874 bc_num_free(&temp);
1875 bc_num_free(&z2);
1876 bc_num_free(&z1);
1877 bc_num_free(&z0);
1878 bc_num_free(&m2);
1879 bc_num_free(&m1);
1880 bc_num_free(&h2);
1881 bc_num_free(&l2);
1882 bc_num_free(&h1);
1883 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001884 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001885}
1886
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001887static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001888{
1889 BcStatus s;
1890 BcNum cpa, cpb;
1891 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1892
1893 scale = BC_MAX(scale, a->rdx);
1894 scale = BC_MAX(scale, b->rdx);
1895 scale = BC_MIN(a->rdx + b->rdx, scale);
1896 maxrdx = BC_MAX(maxrdx, scale);
1897
1898 bc_num_init(&cpa, a->len);
1899 bc_num_init(&cpb, b->len);
1900
1901 bc_num_copy(&cpa, a);
1902 bc_num_copy(&cpb, b);
1903 cpa.neg = cpb.neg = false;
1904
Denys Vlasenko29301232018-12-11 15:29:32 +01001905 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001906 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001907 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001908 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001909 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001910 if (s) goto err;
1911
1912 maxrdx += scale;
1913 bc_num_expand(c, c->len + maxrdx);
1914
1915 if (c->len < maxrdx) {
1916 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1917 c->len += maxrdx;
1918 }
1919
1920 c->rdx = maxrdx;
1921 bc_num_retireMul(c, scale, a->neg, b->neg);
1922
1923err:
1924 bc_num_free(&cpb);
1925 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001926 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001927}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001928#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001929
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001930static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001931{
1932 BcStatus s = BC_STATUS_SUCCESS;
1933 BcDig *n, *p, q;
1934 size_t len, end, i;
1935 BcNum cp;
Gavin Howard01055ba2018-11-03 11:00:21 -06001936
1937 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001938 RETURN_STATUS(bc_error("divide by zero"));
1939 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001940 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001941 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001942 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001943 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001944 bc_num_copy(c, a);
1945 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001946 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001947 }
1948
1949 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
1950 bc_num_copy(&cp, a);
1951 len = b->len;
1952
1953 if (len > cp.len) {
1954 bc_num_expand(&cp, len + 2);
1955 bc_num_extend(&cp, len - cp.len);
1956 }
1957
1958 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
1959 cp.rdx -= b->rdx;
1960 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
1961
1962 if (b->rdx == b->len) {
Denys Vlasenko71c82d12018-12-18 12:43:21 +01001963 for (;;) {
1964 if (len == 0) break;
1965 len--;
1966 if (b->num[len] != 0)
1967 break;
1968 }
1969 len++;
Gavin Howard01055ba2018-11-03 11:00:21 -06001970 }
1971
1972 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
1973
1974 // We want an extra zero in front to make things simpler.
1975 cp.num[cp.len++] = 0;
1976 end = cp.len - len;
1977
1978 bc_num_expand(c, cp.len);
1979
1980 bc_num_zero(c);
1981 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
1982 c->rdx = cp.rdx;
1983 c->len = cp.len;
1984 p = b->num;
1985
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001986 for (i = end - 1; !s && i < end; --i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001987 n = cp.num + i;
1988 for (q = 0; (!s && n[len] != 0) || bc_num_compare(n, p, len) >= 0; ++q)
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001989 bc_num_subArrays(n, p, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001990 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001991#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01001992 // a=2^100000
1993 // scale=40000
1994 // 1/a <- without check below, this will not be interruptible
1995 if (G_interrupt) {
1996 s = BC_STATUS_FAILURE;
1997 break;
1998 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001999#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002000 }
2001
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002002 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06002003 bc_num_free(&cp);
2004
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002005 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002006}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002007#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002008
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002009static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06002010 BcNum *restrict d, size_t scale, size_t ts)
2011{
2012 BcStatus s;
2013 BcNum temp;
2014 bool neg;
2015
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002016 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002017 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002018
2019 if (a->len == 0) {
2020 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002021 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002022 }
2023
2024 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002025 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002026 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002027
2028 if (scale != 0) scale = ts;
2029
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002030 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002031 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002032 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002033 if (s) goto err;
2034
2035 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2036
2037 neg = d->neg;
2038 bc_num_retireMul(d, ts, a->neg, b->neg);
2039 d->neg = neg;
2040
2041err:
2042 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002043 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002044}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002045#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002046
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002047static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002048{
2049 BcStatus s;
2050 BcNum c1;
2051 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2052
2053 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002054 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002055 bc_num_free(&c1);
2056
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002057 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002058}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002059#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002060
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002061static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002062{
2063 BcStatus s = BC_STATUS_SUCCESS;
2064 BcNum copy;
2065 unsigned long pow;
2066 size_t i, powrdx, resrdx;
2067 bool neg, zero;
2068
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002069 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002070
2071 if (b->len == 0) {
2072 bc_num_one(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002073 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002074 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002075 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002076 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002077 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002078 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002079 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002080 if (!b->neg)
2081 bc_num_copy(c, a);
2082 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002083 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002084 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002085 }
2086
2087 neg = b->neg;
2088 b->neg = false;
2089
Denys Vlasenko29301232018-12-11 15:29:32 +01002090 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002091 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002092
2093 bc_num_init(&copy, a->len);
2094 bc_num_copy(&copy, a);
2095
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002096 if (!neg) {
2097 if (a->rdx > scale)
2098 scale = a->rdx;
2099 if (a->rdx * pow < scale)
2100 scale = a->rdx * pow;
2101 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002102
2103 b->neg = neg;
2104
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002105 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002106 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002107 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002108 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002109 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002110 //if (G_interrupt) {
2111 // s = BC_STATUS_FAILURE;
2112 // goto err;
2113 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002114 }
2115
Gavin Howard01055ba2018-11-03 11:00:21 -06002116 bc_num_copy(c, &copy);
2117
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002118 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002119
2120 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002121 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002122 if (s) goto err;
2123
2124 if (pow & 1) {
2125 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002126 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002127 if (s) goto err;
2128 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002129 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002130 //if (G_interrupt) {
2131 // s = BC_STATUS_FAILURE;
2132 // goto err;
2133 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002134 }
2135
2136 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002137 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002138 if (s) goto err;
2139 }
2140
Gavin Howard01055ba2018-11-03 11:00:21 -06002141 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2142
2143 // We can't use bc_num_clean() here.
2144 for (zero = true, i = 0; zero && i < c->len; ++i) zero = !c->num[i];
2145 if (zero) bc_num_setToZero(c, scale);
2146
2147err:
2148 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002149 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002150}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002151#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002152
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002153static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002154 BcNumBinaryOp op, size_t req)
2155{
2156 BcStatus s;
2157 BcNum num2, *ptr_a, *ptr_b;
2158 bool init = false;
2159
2160 if (c == a) {
2161 ptr_a = &num2;
2162 memcpy(ptr_a, c, sizeof(BcNum));
2163 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002164 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002165 ptr_a = a;
2166
2167 if (c == b) {
2168 ptr_b = &num2;
2169 if (c != a) {
2170 memcpy(ptr_b, c, sizeof(BcNum));
2171 init = true;
2172 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002173 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002174 ptr_b = b;
2175
2176 if (init)
2177 bc_num_init(c, req);
2178 else
2179 bc_num_expand(c, req);
2180
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002181 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01002182 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002183
2184 if (init) bc_num_free(&num2);
2185
Denys Vlasenko29301232018-12-11 15:29:32 +01002186 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002187}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002188#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002189
Denys Vlasenko9311e012018-12-10 11:54:18 +01002190static bool bc_num_strValid(const char *val, size_t base)
2191{
2192 BcDig b;
2193 bool radix;
2194
2195 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2196 radix = false;
2197 for (;;) {
2198 BcDig c = *val++;
2199 if (c == '\0')
2200 break;
2201 if (c == '.') {
2202 if (radix) return false;
2203 radix = true;
2204 continue;
2205 }
2206 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2207 return false;
2208 }
2209 return true;
2210}
2211
2212// Note: n is already "bc_num_zero()"ed,
2213// leading zeroes in "val" are removed
2214static void bc_num_parseDecimal(BcNum *n, const char *val)
2215{
2216 size_t len, i;
2217 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002218
2219 len = strlen(val);
2220 if (len == 0)
2221 return;
2222
Denys Vlasenko9311e012018-12-10 11:54:18 +01002223 bc_num_expand(n, len);
2224
2225 ptr = strchr(val, '.');
2226
2227 n->rdx = 0;
2228 if (ptr != NULL)
2229 n->rdx = (size_t)((val + len) - (ptr + 1));
2230
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002231 for (i = 0; val[i]; ++i) {
2232 if (val[i] != '0' && val[i] != '.') {
2233 // Not entirely zero value - convert it, and exit
2234 i = len - 1;
2235 for (;;) {
2236 n->num[n->len] = val[i] - '0';
2237 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002238 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002239 if (i == 0) break;
2240 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002241 }
2242 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002243 }
2244 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002245 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002246}
2247
2248// Note: n is already "bc_num_zero()"ed,
2249// leading zeroes in "val" are removed
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002250static void bc_num_parseBase(BcNum *n, const char *val, unsigned base_t)
Denys Vlasenko9311e012018-12-10 11:54:18 +01002251{
2252 BcStatus s;
2253 BcNum temp, mult, result;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002254 BcNum base;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002255 BcDig c = '\0';
2256 unsigned long v;
2257 size_t i, digits;
2258
2259 for (i = 0; ; ++i) {
2260 if (val[i] == '\0')
2261 return;
2262 if (val[i] != '.' && val[i] != '0')
2263 break;
2264 }
2265
2266 bc_num_init_DEF_SIZE(&temp);
2267 bc_num_init_DEF_SIZE(&mult);
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002268 bc_num_init_DEF_SIZE(&base);
2269 bc_num_ulong2num(&base, base_t);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002270
2271 for (;;) {
2272 c = *val++;
2273 if (c == '\0') goto int_err;
2274 if (c == '.') break;
2275
2276 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2277
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002278 s = zbc_num_mul(n, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002279 if (s) goto int_err;
2280 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002281 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002282 if (s) goto int_err;
2283 }
2284
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002285 bc_num_init(&result, base.len);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002286 //bc_num_zero(&result); - already is
2287 bc_num_one(&mult);
2288
2289 digits = 0;
2290 for (;;) {
2291 c = *val++;
2292 if (c == '\0') break;
2293 digits++;
2294
2295 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2296
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002297 s = zbc_num_mul(&result, &base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002298 if (s) goto err;
2299 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002300 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002301 if (s) goto err;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002302 s = zbc_num_mul(&mult, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002303 if (s) goto err;
2304 }
2305
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002306 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002307 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002308 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002309 if (s) goto err;
2310
2311 if (n->len != 0) {
2312 if (n->rdx < digits) bc_num_extend(n, digits - n->rdx);
2313 } else
2314 bc_num_zero(n);
2315
2316err:
2317 bc_num_free(&result);
2318int_err:
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002319 bc_num_free(&base);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002320 bc_num_free(&mult);
2321 bc_num_free(&temp);
2322}
2323
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002324static BC_STATUS zbc_num_parse(BcNum *n, const char *val, unsigned base_t)
Gavin Howard01055ba2018-11-03 11:00:21 -06002325{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002326 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002327 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002328
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002329 bc_num_zero(n);
2330 while (*val == '0') val++;
2331
Gavin Howard01055ba2018-11-03 11:00:21 -06002332 if (base_t == 10)
2333 bc_num_parseDecimal(n, val);
2334 else
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002335 bc_num_parseBase(n, val, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002336
Denys Vlasenko29301232018-12-11 15:29:32 +01002337 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002338}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002339#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002340
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002341static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002342{
2343 BcStatus s;
2344 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2345 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2346 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2347
2348 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2349 bc_num_expand(b, req);
2350
2351 if (a->len == 0) {
2352 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002353 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002354 } else if (a->neg) {
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002355 RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002356 } else if (BC_NUM_ONE(a)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002357 bc_num_one(b);
2358 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002359 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002360 }
2361
2362 scale = BC_MAX(scale, a->rdx) + 1;
2363 len = a->len + scale;
2364
2365 bc_num_init(&num1, len);
2366 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002367 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002368
2369 bc_num_one(&half);
2370 half.num[0] = 5;
2371 half.rdx = 1;
2372
2373 bc_num_init(&f, len);
2374 bc_num_init(&fprime, len);
2375
2376 x0 = &num1;
2377 x1 = &num2;
2378
2379 bc_num_one(x0);
2380 pow = BC_NUM_INT(a);
2381
2382 if (pow) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002383 if (pow & 1)
2384 x0->num[0] = 2;
2385 else
2386 x0->num[0] = 6;
2387
2388 pow -= 2 - (pow & 1);
2389
2390 bc_num_extend(x0, pow);
2391
2392 // Make sure to move the radix back.
2393 x0->rdx -= pow;
2394 }
2395
2396 x0->rdx = digs = digs1 = 0;
2397 resrdx = scale + 2;
2398 len = BC_NUM_INT(x0) + resrdx - 1;
2399
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002400 while (cmp != 0 || digs < len) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002401 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002402 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002403 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002404 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002405 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002406 if (s) goto err;
2407
2408 cmp = bc_num_cmp(x1, x0);
2409 digs = x1->len - (unsigned long long) llabs(cmp);
2410
2411 if (cmp == cmp2 && digs == digs1)
2412 times += 1;
2413 else
2414 times = 0;
2415
2416 resrdx += times > 4;
2417
2418 cmp2 = cmp1;
2419 cmp1 = cmp;
2420 digs1 = digs;
2421
2422 temp = x0;
2423 x0 = x1;
2424 x1 = temp;
2425 }
2426
Gavin Howard01055ba2018-11-03 11:00:21 -06002427 bc_num_copy(b, x0);
2428 scale -= 1;
2429 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002430 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002431 bc_num_free(&fprime);
2432 bc_num_free(&f);
2433 bc_num_free(&half);
2434 bc_num_free(&num2);
2435 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002436 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002437}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002438#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002439
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002440static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002441 size_t scale)
2442{
2443 BcStatus s;
2444 BcNum num2, *ptr_a;
2445 bool init = false;
2446 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2447
2448 if (c == a) {
2449 memcpy(&num2, c, sizeof(BcNum));
2450 ptr_a = &num2;
2451 bc_num_init(c, len);
2452 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002453 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06002454 ptr_a = a;
2455 bc_num_expand(c, len);
2456 }
2457
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002458 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002459
2460 if (init) bc_num_free(&num2);
2461
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002462 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002463}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002464#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002465
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002466#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002467static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002468{
2469 BcStatus s;
2470 BcNum base, exp, two, temp;
2471
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002472 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002473 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002474 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002475 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002476 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002477 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002478
2479 bc_num_expand(d, c->len);
2480 bc_num_init(&base, c->len);
2481 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002482 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002483 bc_num_init(&temp, b->len);
2484
2485 bc_num_one(&two);
2486 two.num[0] = 2;
2487 bc_num_one(d);
2488
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002489 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002490 if (s) goto err;
2491 bc_num_copy(&exp, b);
2492
2493 while (exp.len != 0) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002494 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002495 if (s) goto err;
2496
2497 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002498 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002499 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002500 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002501 if (s) goto err;
2502 }
2503
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002504 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002505 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002506 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002507 if (s) goto err;
2508 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002509 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002510 bc_num_free(&temp);
2511 bc_num_free(&two);
2512 bc_num_free(&exp);
2513 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002514 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002515}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002516#define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002517#endif // ENABLE_DC
2518
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002519#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002520static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002521{
2522 BcId a;
2523 size_t i;
2524
2525 for (i = 0; i < f->autos.len; ++i) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002526 if (strcmp(name, ((BcId *) bc_vec_item(&f->autos, i))->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002527 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002528 }
2529
2530 a.idx = var;
2531 a.name = name;
2532
2533 bc_vec_push(&f->autos, &a);
2534
Denys Vlasenko29301232018-12-11 15:29:32 +01002535 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002536}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002537#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002538#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002539
2540static void bc_func_init(BcFunc *f)
2541{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002542 bc_char_vec_init(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06002543 bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);
2544 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2545 f->nparams = 0;
2546}
2547
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002548static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002549{
2550 BcFunc *f = (BcFunc *) func;
2551 bc_vec_free(&f->code);
2552 bc_vec_free(&f->autos);
2553 bc_vec_free(&f->labels);
2554}
2555
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002556static void bc_array_expand(BcVec *a, size_t len);
2557
Gavin Howard01055ba2018-11-03 11:00:21 -06002558static void bc_array_init(BcVec *a, bool nums)
2559{
2560 if (nums)
2561 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2562 else
2563 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2564 bc_array_expand(a, 1);
2565}
2566
Gavin Howard01055ba2018-11-03 11:00:21 -06002567static void bc_array_expand(BcVec *a, size_t len)
2568{
2569 BcResultData data;
2570
2571 if (a->size == sizeof(BcNum) && a->dtor == bc_num_free) {
2572 while (len > a->len) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002573 bc_num_init_DEF_SIZE(&data.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002574 bc_vec_push(a, &data.n);
2575 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002576 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06002577 while (len > a->len) {
2578 bc_array_init(&data.v, true);
2579 bc_vec_push(a, &data.v);
2580 }
2581 }
2582}
2583
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002584static void bc_array_copy(BcVec *d, const BcVec *s)
2585{
2586 size_t i;
2587
2588 bc_vec_pop_all(d);
2589 bc_vec_expand(d, s->cap);
2590 d->len = s->len;
2591
2592 for (i = 0; i < s->len; ++i) {
2593 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i);
2594 bc_num_init(dnum, snum->len);
2595 bc_num_copy(dnum, snum);
2596 }
2597}
2598
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002599static FAST_FUNC void bc_string_free(void *string)
Gavin Howard01055ba2018-11-03 11:00:21 -06002600{
2601 free(*((char **) string));
2602}
2603
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002604#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06002605static void bc_result_copy(BcResult *d, BcResult *src)
2606{
2607 d->t = src->t;
2608
2609 switch (d->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002610 case BC_RESULT_TEMP:
2611 case BC_RESULT_IBASE:
2612 case BC_RESULT_SCALE:
2613 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002614 bc_num_init(&d->d.n, src->d.n.len);
2615 bc_num_copy(&d->d.n, &src->d.n);
2616 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002617 case BC_RESULT_VAR:
2618 case BC_RESULT_ARRAY:
2619 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002620 d->d.id.name = xstrdup(src->d.id.name);
2621 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002622 case BC_RESULT_CONSTANT:
2623 case BC_RESULT_LAST:
2624 case BC_RESULT_ONE:
2625 case BC_RESULT_STR:
Gavin Howard01055ba2018-11-03 11:00:21 -06002626 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2627 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002628 }
2629}
2630#endif // ENABLE_DC
2631
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002632static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002633{
2634 BcResult *r = (BcResult *) result;
2635
2636 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002637 case BC_RESULT_TEMP:
2638 case BC_RESULT_IBASE:
2639 case BC_RESULT_SCALE:
2640 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002641 bc_num_free(&r->d.n);
2642 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002643 case BC_RESULT_VAR:
2644 case BC_RESULT_ARRAY:
2645 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002646 free(r->d.id.name);
2647 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002648 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06002649 // Do nothing.
2650 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002651 }
2652}
2653
2654static void bc_lex_lineComment(BcLex *l)
2655{
2656 l->t.t = BC_LEX_WHITESPACE;
2657 while (l->i < l->len && l->buf[l->i++] != '\n');
2658 --l->i;
2659}
2660
2661static void bc_lex_whitespace(BcLex *l)
2662{
Gavin Howard01055ba2018-11-03 11:00:21 -06002663 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002664 for (;;) {
2665 char c = l->buf[l->i];
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002666 if (c == '\n') // this is BC_LEX_NLINE, not BC_LEX_WHITESPACE
2667 break;
2668 if (!isspace(c))
Denys Vlasenko89198a92018-12-13 21:31:29 +01002669 break;
2670 l->i++;
2671 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002672}
2673
Denys Vlasenko29301232018-12-11 15:29:32 +01002674static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002675{
2676 const char *buf = l->buf + l->i;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002677 size_t len, i, ccnt;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002678 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002679
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002680 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002681 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002682 ccnt = i = 0;
2683 for (;;) {
2684 char c = buf[i];
2685 if (c == '\0')
2686 break;
2687 if (c == '\\' && buf[i + 1] == '\n') {
2688 i += 2;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002689 //number_of_backslashes++ - see comment below
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002690 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002691 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002692 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2693 if (c != '.') break;
2694 // if '.' was already seen, stop on second one:
2695 if (pt) break;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002696 pt = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06002697 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002698 // buf[i] is one of "0-9A-F."
2699 i++;
2700 if (c != '.')
2701 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002702 }
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002703 //ccnt is the number of chars in the number string, excluding possible
2704 //trailing "[\<newline>].[\<newline>]" (with any number of \<NL> repetitions).
2705 //i is buf[i] index of the first not-yet-parsed char after that.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002706 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002707
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002708 // This might overestimate the size, if there are "\<NL>"'s
2709 // in the number. Subtracting number_of_backslashes*2 correctly
2710 // is not that easy: consider that in the case of "NNN.\<NL>"
2711 // loop above will count "\<NL>" before it realizes it is not
2712 // in fact *inside* the number:
2713 len = ccnt + 1; // +1 byte for NUL termination
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002714
Denys Vlasenko64074a12018-12-07 15:50:14 +01002715 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2716 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2717 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002718 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002719 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002720
Denys Vlasenko7d628012018-12-04 21:46:47 +01002721 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002722 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002723 bc_vec_push(&l->t.v, &start);
2724
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002725 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002726 // If we have hit a backslash, skip it. We don't have
2727 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002728 if (*buf == '\\') {
2729 buf += 2;
2730 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002731 continue;
2732 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002733 bc_vec_push(&l->t.v, buf);
2734 buf++;
2735 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002736 }
2737
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002738 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002739
Denys Vlasenko29301232018-12-11 15:29:32 +01002740 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002741}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002742#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002743
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002744static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002745{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002746 size_t i;
2747 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002748
2749 l->t.t = BC_LEX_NAME;
2750
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002751 i = 0;
2752 buf = l->buf + l->i - 1;
2753 for (;;) {
2754 char c = buf[i];
2755 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2756 i++;
2757 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002758
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002759#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002760 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2761 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2762 if (i > BC_MAX_STRING)
2763 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2764 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002765#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002766 bc_vec_string(&l->t.v, i, buf);
2767
2768 // Increment the index. We minus 1 because it has already been incremented.
2769 l->i += i - 1;
2770
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002771 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002772}
2773
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002774static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002775{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002776 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002777}
2778
2779static void bc_lex_free(BcLex *l)
2780{
2781 bc_vec_free(&l->t.v);
2782}
2783
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002784static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002785{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002786 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002787 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002788}
2789
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002790IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2791IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002792
2793static BC_STATUS zcommon_lex_token(BcLex *l)
2794{
2795 if (IS_BC) {
2796 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2797 }
2798 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2799}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002800#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002801
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002802static bool bc_lex_more_input(BcLex *l)
2803{
2804 size_t str;
2805 bool comment;
2806
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002807 bc_vec_pop_all(&G.input_buffer);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002808
2809 // This loop is complex because the vm tries not to send any lines that end
2810 // with a backslash to the parser. The reason for that is because the parser
2811 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2812 // case, and for strings and comments, the parser will expect more stuff.
2813 comment = false;
2814 str = 0;
2815 for (;;) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002816 size_t prevlen = G.input_buffer.len;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002817 char *string;
2818
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002819 bc_read_line(&G.input_buffer, G.input_fp);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002820 // No more input means EOF
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002821 if (G.input_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002822 break;
2823
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002824 string = G.input_buffer.v + prevlen;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002825 while (*string) {
2826 char c = *string;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002827 if (string == G.input_buffer.v || string[-1] != '\\') {
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002828 if (IS_BC)
2829 str ^= (c == '"');
2830 else {
2831 if (c == ']')
2832 str -= 1;
2833 else if (c == '[')
2834 str += 1;
2835 }
2836 }
2837 string++;
2838 if (c == '/' && *string == '*') {
2839 comment = true;
2840 string++;
2841 continue;
2842 }
2843 if (c == '*' && *string == '/') {
2844 comment = false;
2845 string++;
2846 }
2847 }
2848 if (str != 0 || comment) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002849 G.input_buffer.len--; // backstep over the trailing NUL byte
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002850 continue;
2851 }
2852
2853 // Check for backslash+newline.
2854 // we do not check that last char is '\n' -
2855 // if it is not, then it's EOF, and looping back
2856 // to bc_read_line() will detect it:
2857 string -= 2;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002858 if (string >= G.input_buffer.v && *string == '\\') {
2859 G.input_buffer.len--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002860 continue;
2861 }
2862
2863 break;
2864 }
2865
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002866 l->buf = G.input_buffer.v;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002867 l->i = 0;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002868// bb_error_msg("G.input_buffer.len:%d '%s'", G.input_buffer.len, G.input_buffer.v);
2869 l->len = G.input_buffer.len - 1; // do not include NUL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002870
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002871 return l->len != 0;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002872}
2873
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002874static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002875{
2876 BcStatus s;
2877
2878 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002879 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002880
2881 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002882 G.err_line = l->line;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002883 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002884
2885 // Loop until failure or we don't have whitespace. This
2886 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002887 // Comments are also BC_LEX_WHITESPACE tokens and eaten here.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002888 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002889 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002890 l->t.t = BC_LEX_EOF;
2891 if (l->i == l->len) {
2892 if (!G.input_fp)
2893 RETURN_STATUS(BC_STATUS_SUCCESS);
2894 if (!bc_lex_more_input(l)) {
2895 G.input_fp = NULL;
2896 RETURN_STATUS(BC_STATUS_SUCCESS);
2897 }
2898 // here it's guaranteed that l->i is below l->len
2899 }
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002900 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01002901 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2902 l->buf + l->i);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002903 s = zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002904 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01002905 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002906
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002907 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002908}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002909#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002910
Denys Vlasenko202dd192018-12-16 17:30:35 +01002911static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
2912{
2913 if (l->t.t == BC_LEX_NLINE)
2914 RETURN_STATUS(zbc_lex_next(l));
2915 RETURN_STATUS(BC_STATUS_SUCCESS);
2916}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002917#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002918
2919static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
2920{
2921 BcStatus s;
2922 s = zbc_lex_next(l);
2923 if (s) RETURN_STATUS(s);
2924 // if(cond)<newline>stmt is accepted too (but not 2+ newlines)
2925 s = zbc_lex_skip_if_at_NLINE(l);
2926 RETURN_STATUS(s);
2927}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002928#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002929
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002930static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06002931{
2932 l->buf = text;
2933 l->i = 0;
2934 l->len = strlen(text);
2935 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002936 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06002937}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002938#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002939
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002940#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002941static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002942{
2943 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002944 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002945 const char *buf = l->buf + l->i - 1;
2946
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002947 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
2948 const char *keyword8 = bc_lex_kws[i].name8;
2949 unsigned j = 0;
2950 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
2951 j++;
2952 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06002953 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002954 if (keyword8[j] != '\0')
2955 continue;
2956 match:
2957 // buf starts with keyword bc_lex_kws[i]
2958 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01002959 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002960 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002961 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002962 }
2963
2964 // We minus 1 because the index has already been incremented.
2965 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002966 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002967 }
2968
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002969 bc_lex_name(l);
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002970 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002971
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002972 if (l->t.v.len > 2) {
2973 // Prevent this:
2974 // >>> qwe=1
2975 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
2976 // '
2977 unsigned len = strchrnul(buf, '\n') - buf;
2978 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
2979 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002980
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002981 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002982}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002983#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002984
Denys Vlasenko26819db2018-12-12 16:08:46 +01002985static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002986{
2987 size_t len, nls = 0, i = l->i;
2988 char c;
2989
2990 l->t.t = BC_LEX_STR;
2991
Denys Vlasenko26819db2018-12-12 16:08:46 +01002992 for (c = l->buf[i]; c != 0 && c != '"'; c = l->buf[++i])
2993 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06002994
2995 if (c == '\0') {
2996 l->i = i;
Denys Vlasenko26819db2018-12-12 16:08:46 +01002997 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002998 }
2999
3000 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01003001 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3002 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3003 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01003004 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003005 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003006 bc_vec_string(&l->t.v, len, l->buf + l->i);
3007
3008 l->i = i + 1;
3009 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003010 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003011
Denys Vlasenko26819db2018-12-12 16:08:46 +01003012 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003013}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003014#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003015
Denys Vlasenko0a238142018-12-14 16:48:34 +01003016static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003017{
3018 if (l->buf[l->i] == '=') {
3019 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003020 with_and_without >>= 8; // store "with" value
3021 } // else store "without" value
3022 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003023}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003024#define bc_lex_assign(l, with, without) \
3025 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003026
Denys Vlasenko29301232018-12-11 15:29:32 +01003027static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003028{
3029 size_t i, nls = 0;
3030 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003031
3032 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003033 i = l->i; /* here buf[l->i] is the '*' of opening comment delimiter */
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003034 for (;;) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003035 char c = buf[++i];
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003036 check_star:
3037 if (c == '*') {
3038 c = buf[++i];
3039 if (c == '/')
3040 break;
3041 goto check_star;
3042 }
3043 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003044 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003045 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003046 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003047 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003048 }
3049
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003050 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003051 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003052 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003053
Denys Vlasenko29301232018-12-11 15:29:32 +01003054 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003055}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003056#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003057
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003058static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003059{
3060 BcStatus s = BC_STATUS_SUCCESS;
3061 char c = l->buf[l->i++], c2;
3062
3063 // This is the workhorse of the lexer.
3064 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003065// case '\0': // probably never reached
3066// l->i--;
3067// l->t.t = BC_LEX_EOF;
3068// l->newline = true;
3069// break;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003070 case '\n':
3071 l->t.t = BC_LEX_NLINE;
3072 l->newline = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06003073 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003074 case '\t':
3075 case '\v':
3076 case '\f':
3077 case '\r':
3078 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003079 bc_lex_whitespace(l);
3080 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003081 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003082 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003083 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003084 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003085 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003086 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003087 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003088 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003089 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003090 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003091 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003092 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003093 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003094 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003095 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003096 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003097 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3098 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003099 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003100 c2 = l->buf[l->i];
3101 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003102 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003103 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003104 ++l->i;
3105 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003106 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003107 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003108 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003109 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003110 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003111 case '(':
3112 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003113 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
3114 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003115 case '*':
Gavin Howard01055ba2018-11-03 11:00:21 -06003116 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
3117 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003118 case '+':
Gavin Howard01055ba2018-11-03 11:00:21 -06003119 c2 = l->buf[l->i];
3120 if (c2 == '+') {
3121 ++l->i;
3122 l->t.t = BC_LEX_OP_INC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003123 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003124 bc_lex_assign(l, BC_LEX_OP_ASSIGN_PLUS, BC_LEX_OP_PLUS);
3125 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003126 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003127 l->t.t = BC_LEX_COMMA;
3128 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003129 case '-':
Gavin Howard01055ba2018-11-03 11:00:21 -06003130 c2 = l->buf[l->i];
3131 if (c2 == '-') {
3132 ++l->i;
3133 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003134 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003135 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3136 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003137 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003138 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003139 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003140 else {
3141 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003142 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003143 }
3144 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003145 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003146 c2 = l->buf[l->i];
3147 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003148 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003149 else
3150 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3151 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003152 case '0':
3153 case '1':
3154 case '2':
3155 case '3':
3156 case '4':
3157 case '5':
3158 case '6':
3159 case '7':
3160 case '8':
3161 case '9':
3162 case 'A':
3163 case 'B':
3164 case 'C':
3165 case 'D':
3166 case 'E':
3167 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003168 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003169 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003170 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003171 l->t.t = BC_LEX_SCOLON;
3172 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003173 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003174 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3175 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003176 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003177 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3178 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003179 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003180 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3181 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003182 case '[':
3183 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003184 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3185 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003186 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003187 if (l->buf[l->i] == '\n') {
3188 l->t.t = BC_LEX_WHITESPACE;
3189 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003190 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003191 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003192 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003193 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003194 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3195 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003196 case 'a':
3197 case 'b':
3198 case 'c':
3199 case 'd':
3200 case 'e':
3201 case 'f':
3202 case 'g':
3203 case 'h':
3204 case 'i':
3205 case 'j':
3206 case 'k':
3207 case 'l':
3208 case 'm':
3209 case 'n':
3210 case 'o':
3211 case 'p':
3212 case 'q':
3213 case 'r':
3214 case 's':
3215 case 't':
3216 case 'u':
3217 case 'v':
3218 case 'w':
3219 case 'x':
3220 case 'y':
3221 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003222 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003223 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003224 case '{':
3225 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003226 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3227 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003228 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003229 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003230 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003231 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003232 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003233 ++l->i;
3234 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003235 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003236 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003237 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003238 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003239 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003240 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003241 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003242 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003243 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003244 }
3245
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003246 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003247}
3248#endif // ENABLE_BC
3249
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003250#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003251static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003252{
Gavin Howard01055ba2018-11-03 11:00:21 -06003253 if (isspace(l->buf[l->i - 1])) {
3254 bc_lex_whitespace(l);
3255 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003256 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003257 RETURN_STATUS(bc_error("extended register"));
3258 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003259 }
3260 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003261 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003262 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003263 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003264 l->t.t = BC_LEX_NAME;
3265 }
3266
Denys Vlasenko29301232018-12-11 15:29:32 +01003267 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003268}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003269#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003270
Denys Vlasenko29301232018-12-11 15:29:32 +01003271static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003272{
3273 size_t depth = 1, nls = 0, i = l->i;
3274 char c;
3275
3276 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003277 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003278
3279 for (c = l->buf[i]; c != 0 && depth; c = l->buf[++i]) {
3280
3281 depth += (c == '[' && (i == l->i || l->buf[i - 1] != '\\'));
3282 depth -= (c == ']' && (i == l->i || l->buf[i - 1] != '\\'));
3283 nls += (c == '\n');
3284
3285 if (depth) bc_vec_push(&l->t.v, &c);
3286 }
3287
3288 if (c == '\0') {
3289 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003290 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003291 }
3292
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003293 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003294 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3295 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3296 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003297 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003298 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003299
3300 l->i = i;
3301 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003302 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003303
Denys Vlasenko29301232018-12-11 15:29:32 +01003304 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003305}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003306#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003307
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003308static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003309{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003310 static const //BcLexType - should be this type, but narrower type saves size:
3311 uint8_t
3312 dc_lex_regs[] = {
3313 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
3314 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
3315 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
3316 BC_LEX_STORE_PUSH,
3317 };
3318 static const //BcLexType - should be this type
3319 uint8_t
3320 dc_lex_tokens[] = {
3321 /* %&'( */
3322 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
3323 /* )*+, */
3324 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
3325 /* -./ */
3326 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
3327 /* 0123456789 */
3328 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3329 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3330 BC_LEX_INVALID, BC_LEX_INVALID,
3331 /* :;<=>?@ */
3332 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
3333 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
3334 /* ABCDEFGH */
3335 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3336 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
3337 /* IJKLMNOP */
3338 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
3339 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
3340 /* QRSTUVWXY */
3341 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
3342 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
3343 /* Z[\] */
3344 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3345 /* ^_` */
3346 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
3347 /* abcdefgh */
3348 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
3349 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
3350 /* ijklmnop */
3351 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
3352 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
3353 /* qrstuvwx */
3354 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
3355 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
3356 /* yz */
3357 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
3358 /* {|}~ */
3359 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
3360 };
3361
Gavin Howard01055ba2018-11-03 11:00:21 -06003362 BcStatus s = BC_STATUS_SUCCESS;
3363 char c = l->buf[l->i++], c2;
3364 size_t i;
3365
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003366 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3367 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003368 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003369 }
3370
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003371 if (c >= '%' && c <= '~'
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003372 && (l->t.t = dc_lex_tokens[c - '%']) != BC_LEX_INVALID
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003373 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003374 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003375 }
3376
3377 // This is the workhorse of the lexer.
3378 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003379// case '\0': // probably never reached
3380// l->t.t = BC_LEX_EOF;
3381// break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003382 case '\n':
3383 case '\t':
3384 case '\v':
3385 case '\f':
3386 case '\r':
3387 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003388 l->newline = (c == '\n');
3389 bc_lex_whitespace(l);
3390 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003391 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003392 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003393 if (c2 == '=')
3394 l->t.t = BC_LEX_OP_REL_NE;
3395 else if (c2 == '<')
3396 l->t.t = BC_LEX_OP_REL_LE;
3397 else if (c2 == '>')
3398 l->t.t = BC_LEX_OP_REL_GE;
3399 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003400 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003401 ++l->i;
3402 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003403 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003404 bc_lex_lineComment(l);
3405 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003406 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003407 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003408 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003409 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003410 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003411 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003412 case '0':
3413 case '1':
3414 case '2':
3415 case '3':
3416 case '4':
3417 case '5':
3418 case '6':
3419 case '7':
3420 case '8':
3421 case '9':
3422 case 'A':
3423 case 'B':
3424 case 'C':
3425 case 'D':
3426 case 'E':
3427 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003428 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003429 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003430 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003431 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003432 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003433 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003434 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003435 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003436 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003437 }
3438
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003439 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003440}
3441#endif // ENABLE_DC
3442
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003443static void bc_program_addFunc(char *name, size_t *idx);
3444
Gavin Howard01055ba2018-11-03 11:00:21 -06003445static void bc_parse_addFunc(BcParse *p, char *name, size_t *idx)
3446{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003447 bc_program_addFunc(name, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003448 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003449}
3450
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003451static void bc_parse_push(BcParse *p, char i)
3452{
3453 dbg_lex("%s:%d pushing opcode %d", __func__, __LINE__, i);
3454 bc_vec_pushByte(&p->func->code, i);
3455}
Denys Vlasenkob23ac512018-12-06 13:10:56 +01003456
Gavin Howard01055ba2018-11-03 11:00:21 -06003457static void bc_parse_pushName(BcParse *p, char *name)
3458{
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003459 while (*name)
3460 bc_parse_push(p, *name++);
Gavin Howard01055ba2018-11-03 11:00:21 -06003461 bc_parse_push(p, BC_PARSE_STREND);
Gavin Howard01055ba2018-11-03 11:00:21 -06003462}
3463
3464static void bc_parse_pushIndex(BcParse *p, size_t idx)
3465{
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003466 size_t mask;
3467 unsigned amt;
Gavin Howard01055ba2018-11-03 11:00:21 -06003468
Denys Vlasenkof4f10722018-12-18 02:23:53 +01003469 dbg_lex("%s:%d pushing index %zd", __func__, __LINE__, idx);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003470 mask = ((size_t)0xff) << (sizeof(idx) * 8 - 8);
3471 amt = sizeof(idx);
3472 do {
3473 if (idx & mask) break;
3474 mask >>= 8;
3475 amt--;
3476 } while (amt != 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003477
3478 bc_parse_push(p, amt);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003479
3480 while (idx != 0) {
3481 bc_parse_push(p, (unsigned char)idx);
3482 idx >>= 8;
3483 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003484}
3485
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003486static void bc_parse_pushJUMP(BcParse *p, size_t idx)
3487{
3488 bc_parse_push(p, BC_INST_JUMP);
3489 bc_parse_pushIndex(p, idx);
3490}
3491
3492static void bc_parse_pushJUMP_ZERO(BcParse *p, size_t idx)
3493{
3494 bc_parse_push(p, BC_INST_JUMP_ZERO);
3495 bc_parse_pushIndex(p, idx);
3496}
3497
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003498static void bc_parse_number(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003499{
3500 char *num = xstrdup(p->l.t.v.v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003501 size_t idx = G.prog.consts.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06003502
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003503 bc_vec_push(&G.prog.consts, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06003504
3505 bc_parse_push(p, BC_INST_NUM);
3506 bc_parse_pushIndex(p, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003507}
3508
Denys Vlasenko99b37622018-12-15 20:06:59 +01003509IF_BC(static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p);)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01003510IF_DC(static BC_STATUS zdc_parse_parse(BcParse *p);)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003511
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003512// "Parse" half of "parse,execute,repeat" main loop
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003513static BC_STATUS zcommon_parse(BcParse *p)
3514{
3515 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003516// FIXME: "eating" of stmt delemiters is coded inconsistently
3517// (sometimes zbc_parse_stmt() eats the delimiter, sometimes don't),
3518// which causes bugs such as "print 1 print 2" erroneously accepted,
3519// or "print 1 else 2" detecting parse error only after executing
3520// "print 1" part.
Denys Vlasenko99b37622018-12-15 20:06:59 +01003521 IF_BC(RETURN_STATUS(zbc_parse_stmt_or_funcdef(p));)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003522 }
3523 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3524}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003525#define zcommon_parse(...) (zcommon_parse(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003526
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003527static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003528{
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003529 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003530
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003531 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
Gavin Howard01055ba2018-11-03 11:00:21 -06003532}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003533#define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003534
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003535// Called when parsing or execution detects a failure,
3536// resets execution structures.
3537static void bc_program_reset(void)
3538{
3539 BcFunc *f;
3540 BcInstPtr *ip;
3541
3542 bc_vec_npop(&G.prog.stack, G.prog.stack.len - 1);
3543 bc_vec_pop_all(&G.prog.results);
3544
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003545 f = bc_program_func(0);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003546 ip = bc_vec_top(&G.prog.stack);
3547 ip->idx = f->code.len;
3548}
3549
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003550#define bc_parse_updateFunc(p, f) \
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003551 ((p)->func = bc_program_func((p)->fidx = (f)))
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003552
Denys Vlasenko26819db2018-12-12 16:08:46 +01003553// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003554// resets parsing structures.
3555static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003556{
3557 if (p->fidx != BC_PROG_MAIN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003558 p->func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003559 bc_vec_pop_all(&p->func->code);
3560 bc_vec_pop_all(&p->func->autos);
3561 bc_vec_pop_all(&p->func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06003562
3563 bc_parse_updateFunc(p, BC_PROG_MAIN);
3564 }
3565
3566 p->l.i = p->l.len;
3567 p->l.t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003568
Denys Vlasenko7d628012018-12-04 21:46:47 +01003569 bc_vec_pop_all(&p->exits);
3570 bc_vec_pop_all(&p->conds);
3571 bc_vec_pop_all(&p->ops);
Gavin Howard01055ba2018-11-03 11:00:21 -06003572
Denys Vlasenkod38af482018-12-04 19:11:02 +01003573 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003574}
3575
3576static void bc_parse_free(BcParse *p)
3577{
Gavin Howard01055ba2018-11-03 11:00:21 -06003578 bc_vec_free(&p->exits);
3579 bc_vec_free(&p->conds);
3580 bc_vec_free(&p->ops);
3581 bc_lex_free(&p->l);
3582}
3583
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003584static void bc_parse_create(BcParse *p, size_t func)
Gavin Howard01055ba2018-11-03 11:00:21 -06003585{
3586 memset(p, 0, sizeof(BcParse));
3587
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003588 bc_lex_init(&p->l);
Denys Vlasenko266aa002018-12-16 23:24:25 +01003589 bc_vec_init(&p->exits, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003590 bc_vec_init(&p->conds, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003591 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3592
Gavin Howard01055ba2018-11-03 11:00:21 -06003593 bc_parse_updateFunc(p, func);
3594}
3595
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003596#if ENABLE_BC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003597
3598#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3599#define BC_PARSE_LEAF(p, rparen) \
3600 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3601 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3602
3603// We can calculate the conversion between tokens and exprs by subtracting the
3604// position of the first operator in the lex enum and adding the position of the
3605// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003606#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003607
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003608static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags);
3609
3610static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags)
3611{
3612 BcStatus s;
3613
3614 s = bc_parse_expr_empty_ok(p, flags);
3615 if (s == BC_STATUS_PARSE_EMPTY_EXP)
3616 RETURN_STATUS(bc_error("empty expression"));
3617 RETURN_STATUS(s);
3618}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003619#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003620
3621static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003622#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003623
3624static BC_STATUS zbc_parse_stmt(BcParse *p)
3625{
3626 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3627}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003628#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003629
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003630static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003631{
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003632 // "if(cond)<newline>stmt" is accepted too, but not 2+ newlines.
3633 // Same for "else", "while()", "for()".
3634 BcStatus s = zbc_lex_next_and_skip_NLINE(&p->l);
3635 if (s) RETURN_STATUS(s);
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003636 if (p->l.t.t == BC_LEX_NLINE)
3637 RETURN_STATUS(bc_error_fmt("no statement after '%s'", after_X));
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003638
3639 RETURN_STATUS(zbc_parse_stmt(p));
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003640}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003641#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003642
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003643static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3644 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003645{
Denys Vlasenko65437582018-12-05 19:37:19 +01003646 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3647 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003648
3649 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003650 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003651 if (t == BC_LEX_LPAREN) break;
3652
Denys Vlasenko65437582018-12-05 19:37:19 +01003653 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003654 if (l >= r && (l != r || !left)) break;
3655
Denys Vlasenko0154d782018-12-14 23:32:51 +01003656 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003657 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003658 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003659 }
3660
3661 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003662}
3663
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003664static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003665{
3666 BcLexType top;
3667
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003668 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003669 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003670 top = BC_PARSE_TOP_OP(p);
3671
3672 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003673 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003674
3675 bc_vec_pop(&p->ops);
3676 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3677
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003678 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003679 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003680 top = BC_PARSE_TOP_OP(p);
3681 }
3682
3683 bc_vec_pop(&p->ops);
3684
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003685 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003686}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003687#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003688
Denys Vlasenko26819db2018-12-12 16:08:46 +01003689static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003690{
3691 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06003692 size_t nparams;
3693
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003694 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003695 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3696
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003697 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003698 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003699
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003700 nparams = 0;
3701 if (p->l.t.t != BC_LEX_RPAREN) {
3702 for (;;) {
3703 s = zbc_parse_expr(p, flags);
3704 if (s) RETURN_STATUS(s);
3705 nparams++;
3706 if (p->l.t.t != BC_LEX_COMMA) {
3707 if (p->l.t.t == BC_LEX_RPAREN)
3708 break;
3709 RETURN_STATUS(bc_error_bad_token());
3710 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003711 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003712 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003713 }
3714 }
3715
Gavin Howard01055ba2018-11-03 11:00:21 -06003716 bc_parse_push(p, BC_INST_CALL);
3717 bc_parse_pushIndex(p, nparams);
3718
Denys Vlasenko26819db2018-12-12 16:08:46 +01003719 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003720}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003721#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003722
Denys Vlasenko26819db2018-12-12 16:08:46 +01003723static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003724{
3725 BcStatus s;
3726 BcId entry, *entry_ptr;
3727 size_t idx;
3728
3729 entry.name = name;
3730
Denys Vlasenko26819db2018-12-12 16:08:46 +01003731 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003732 if (s) goto err;
3733
3734 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003735 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003736 goto err;
3737 }
3738
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003739 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003740
3741 if (idx == BC_VEC_INVALID_IDX) {
3742 name = xstrdup(entry.name);
3743 bc_parse_addFunc(p, name, &idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003744 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003745 free(entry.name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003746 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003747 free(name);
3748
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003749 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003750 bc_parse_pushIndex(p, entry_ptr->idx);
3751
Denys Vlasenko26819db2018-12-12 16:08:46 +01003752 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003753
3754err:
3755 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003756 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003757}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003758#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003759
Denys Vlasenko26819db2018-12-12 16:08:46 +01003760static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003761{
3762 BcStatus s;
3763 char *name;
3764
3765 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003766 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003767 if (s) goto err;
3768
3769 if (p->l.t.t == BC_LEX_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003770 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003771 if (s) goto err;
3772
3773 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003774 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003775 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003776 goto err;
3777 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003778 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003779 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003780 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003781 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003782 s = zbc_parse_expr(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003783 if (s) goto err;
3784 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003785 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003786 if (s) goto err;
3787 bc_parse_push(p, *type);
3788 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003789 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003790 }
3791 else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003792 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003793 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003794 goto err;
3795 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003796 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003797 s = zbc_parse_call(p, name, flags);
3798 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003799 *type = BC_INST_VAR;
3800 bc_parse_push(p, BC_INST_VAR);
3801 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003802 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003803 }
3804
Denys Vlasenko26819db2018-12-12 16:08:46 +01003805 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003806
3807err:
3808 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003809 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003810}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003811#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003812
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003813static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003814{
3815 BcStatus s;
3816
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003817 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003818 if (s) RETURN_STATUS(s);
3819 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003820
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003821 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003822 if (s) RETURN_STATUS(s);
3823 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003824
3825 bc_parse_push(p, BC_INST_READ);
3826
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003827 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003828}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003829#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003830
Denys Vlasenko26819db2018-12-12 16:08:46 +01003831static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003832 BcInst *prev)
3833{
3834 BcStatus s;
3835
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003836 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003837 if (s) RETURN_STATUS(s);
3838 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003839
3840 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3841
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003842 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003843 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003844
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003845 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003846 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003847
Denys Vlasenko26819db2018-12-12 16:08:46 +01003848 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003849
3850 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3851 bc_parse_push(p, *prev);
3852
Denys Vlasenko26819db2018-12-12 16:08:46 +01003853 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003854}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003855#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003856
Denys Vlasenko26819db2018-12-12 16:08:46 +01003857static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003858{
3859 BcStatus s;
3860
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003861 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003862 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003863
3864 if (p->l.t.t != BC_LEX_LPAREN) {
3865 *type = BC_INST_SCALE;
3866 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003867 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003868 }
3869
3870 *type = BC_INST_SCALE_FUNC;
3871 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
3872
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003873 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003874 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003875
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003876 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003877 if (s) RETURN_STATUS(s);
3878 if (p->l.t.t != BC_LEX_RPAREN)
3879 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003880 bc_parse_push(p, BC_INST_SCALE_FUNC);
3881
Denys Vlasenko26819db2018-12-12 16:08:46 +01003882 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003883}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003884#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003885
Denys Vlasenko26819db2018-12-12 16:08:46 +01003886static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003887 size_t *nexprs, uint8_t flags)
3888{
3889 BcStatus s;
3890 BcLexType type;
3891 char inst;
3892 BcInst etype = *prev;
3893
3894 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM ||
3895 etype == BC_INST_SCALE || etype == BC_INST_LAST ||
3896 etype == BC_INST_IBASE || etype == BC_INST_OBASE)
3897 {
3898 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
3899 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003900 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003901 }
3902 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003903 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
3904 *paren_expr = true;
3905
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003906 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003907 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003908 type = p->l.t.t;
3909
3910 // Because we parse the next part of the expression
3911 // right here, we need to increment this.
3912 *nexprs = *nexprs + 1;
3913
3914 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003915 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01003916 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003917 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003918 case BC_LEX_KEY_IBASE:
3919 case BC_LEX_KEY_LAST:
3920 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06003921 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003922 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003923 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003924 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003925 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003926 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003927 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003928 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003929 else
3930 bc_parse_push(p, BC_INST_SCALE);
3931 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003932 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003933 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003934 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003935 }
3936
3937 if (!s) bc_parse_push(p, inst);
3938 }
3939
Denys Vlasenko26819db2018-12-12 16:08:46 +01003940 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003941}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003942#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003943
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003944static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06003945 bool rparen, size_t *nexprs)
3946{
3947 BcStatus s;
3948 BcLexType type;
3949 BcInst etype = *prev;
3950
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003951 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003952 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003953
3954 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
3955 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
3956 BC_LEX_OP_MINUS :
3957 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01003958 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003959
3960 // We can just push onto the op stack because this is the largest
3961 // precedence operator that gets pushed. Inc/dec does not.
3962 if (type != BC_LEX_OP_MINUS)
3963 bc_vec_push(&p->ops, &type);
3964 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003965 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06003966
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003967 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003968}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003969#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003970
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003971static BC_STATUS zbc_parse_string(BcParse *p, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06003972{
3973 char *str = xstrdup(p->l.t.v.v);
3974
3975 bc_parse_push(p, BC_INST_STR);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003976 bc_parse_pushIndex(p, G.prog.strs.len);
3977 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06003978 bc_parse_push(p, inst);
3979
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003980 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003981}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003982#define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003983
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003984static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003985{
3986 BcStatus s;
3987 BcLexType type;
Gavin Howard01055ba2018-11-03 11:00:21 -06003988
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003989 for (;;) {
3990 s = zbc_lex_next(&p->l);
3991 if (s) RETURN_STATUS(s);
3992 type = p->l.t.t;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01003993 if (type == BC_LEX_STR) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003994 s = zbc_parse_string(p, BC_INST_PRINT_POP);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01003995 } else {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003996 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003997 bc_parse_push(p, BC_INST_PRINT_POP);
3998 }
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003999 if (s) RETURN_STATUS(s);
4000 if (p->l.t.t != BC_LEX_COMMA)
4001 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004002 }
4003
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004004 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004005}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004006#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004007
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004008static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004009{
4010 BcStatus s;
4011 BcLexType t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004012
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004013 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004014 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004015 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004016
4017 t = p->l.t.t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004018 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4019 bc_parse_push(p, BC_INST_RET0);
4020 else {
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004021 bool paren = (t == BC_LEX_LPAREN);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004022 s = bc_parse_expr_empty_ok(p, 0);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004023 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004024 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004025 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004026 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004027 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004028
4029 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004030 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004031 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06004032 }
4033
4034 bc_parse_push(p, BC_INST_RET);
4035 }
4036
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004037 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004038 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004039}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004040#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004041
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004042static void rewrite_label_to_current(BcParse *p, size_t idx)
4043{
4044 size_t *label = bc_vec_item(&p->func->labels, idx);
4045 *label = p->func->code.len;
4046}
4047
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004048static BC_STATUS zbc_parse_if(BcParse *p)
4049{
4050 BcStatus s;
Denys Vlasenko15850832018-12-16 21:40:54 +01004051 size_t ip_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004052
4053 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4054 s = zbc_lex_next(&p->l);
4055 if (s) RETURN_STATUS(s);
4056 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4057
4058 s = zbc_lex_next(&p->l);
4059 if (s) RETURN_STATUS(s);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004060 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004061 if (s) RETURN_STATUS(s);
4062
4063 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004064
Denys Vlasenko15850832018-12-16 21:40:54 +01004065 ip_idx = p->func->labels.len;
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004066 bc_parse_pushJUMP_ZERO(p, ip_idx);
Denys Vlasenko15850832018-12-16 21:40:54 +01004067 bc_vec_push(&p->func->labels, &ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004068
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004069 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004070 if (s) RETURN_STATUS(s);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004071
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004072 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4073 if (p->l.t.t == BC_LEX_KEY_ELSE) {
Denys Vlasenko15850832018-12-16 21:40:54 +01004074 size_t ip2_idx;
Denys Vlasenko74156332018-12-16 21:21:27 +01004075
Denys Vlasenko15850832018-12-16 21:40:54 +01004076 ip2_idx = p->func->labels.len;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004077
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004078 dbg_lex("%s:%d after if() body: BC_INST_JUMP to %zd", __func__, __LINE__, ip2_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004079 bc_parse_pushJUMP(p, ip2_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004080
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004081 dbg_lex("%s:%d rewriting 'if_zero' label to jump to 'else'-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004082 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004083
Denys Vlasenko15850832018-12-16 21:40:54 +01004084 bc_vec_push(&p->func->labels, &ip2_idx);
4085 ip_idx = ip2_idx;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004086
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004087 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004088 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004089 }
4090
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004091 dbg_lex("%s:%d rewriting label to jump after 'if' body-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004092 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004093
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004094 dbg_lex_done("%s:%d done", __func__, __LINE__);
4095 RETURN_STATUS(s);
4096}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004097#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004098
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004099static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004100{
4101 BcStatus s;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004102 size_t cond_idx;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004103 size_t ip_idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06004104
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004105 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004106 if (s) RETURN_STATUS(s);
4107 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004108 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004109 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004110
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004111 cond_idx = p->func->labels.len;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004112 ip_idx = cond_idx + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06004113
4114 bc_vec_push(&p->func->labels, &p->func->code.len);
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004115 bc_vec_push(&p->conds, &cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004116
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004117 bc_vec_push(&p->exits, &ip_idx);
4118 bc_vec_push(&p->func->labels, &ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004119
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004120 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004121 if (s) RETURN_STATUS(s);
4122 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko202dd192018-12-16 17:30:35 +01004123
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004124 bc_parse_pushJUMP_ZERO(p, ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004125
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004126 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004127 if (s) RETURN_STATUS(s);
4128
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004129 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, cond_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004130 bc_parse_pushJUMP(p, cond_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004131
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004132 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004133 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004134
4135 bc_vec_pop(&p->exits);
4136 bc_vec_pop(&p->conds);
4137
4138 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004139}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004140#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004141
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004142static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004143{
4144 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004145 size_t cond_idx, exit_idx, body_idx, update_idx;
4146
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004147 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004148 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004149 if (s) RETURN_STATUS(s);
4150 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004151 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004152 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004153
4154 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004155 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004156 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004157 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Gavin Howard01055ba2018-11-03 11:00:21 -06004158
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004159 if (s) RETURN_STATUS(s);
4160 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004161 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004162 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004163
4164 cond_idx = p->func->labels.len;
4165 update_idx = cond_idx + 1;
4166 body_idx = update_idx + 1;
4167 exit_idx = body_idx + 1;
4168
4169 bc_vec_push(&p->func->labels, &p->func->code.len);
4170
4171 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004172 s = zbc_parse_expr(p, BC_PARSE_REL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004173 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004174 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004175
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004176 if (s) RETURN_STATUS(s);
4177 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004178
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004179 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004180 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004181
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004182 bc_parse_pushJUMP_ZERO(p, exit_idx);
4183 bc_parse_pushJUMP(p, body_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004184
Gavin Howard01055ba2018-11-03 11:00:21 -06004185 bc_vec_push(&p->conds, &update_idx);
4186 bc_vec_push(&p->func->labels, &p->func->code.len);
4187
4188 if (p->l.t.t != BC_LEX_RPAREN)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004189 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004190 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004191 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Gavin Howard01055ba2018-11-03 11:00:21 -06004192
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004193 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004194
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004195 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004196 bc_parse_pushJUMP(p, cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004197 bc_vec_push(&p->func->labels, &p->func->code.len);
4198
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004199 bc_vec_push(&p->exits, &exit_idx);
4200 bc_vec_push(&p->func->labels, &exit_idx);
Denys Vlasenko202dd192018-12-16 17:30:35 +01004201
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004202 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004203 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004204
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004205 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, update_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004206 bc_parse_pushJUMP(p, update_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004207
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004208 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004209 rewrite_label_to_current(p, exit_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004210
4211 bc_vec_pop(&p->exits);
4212 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004213
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004214 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004215}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004216#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004217
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004218static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004219{
4220 BcStatus s;
4221 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06004222
Gavin Howard01055ba2018-11-03 11:00:21 -06004223 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004224 if (p->exits.len == 0) // none of the enclosing blocks is a loop
4225 RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko266aa002018-12-16 23:24:25 +01004226 i = *(size_t*)bc_vec_top(&p->exits);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004227 } else {
Denys Vlasenko266aa002018-12-16 23:24:25 +01004228 i = *(size_t*)bc_vec_top(&p->conds);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004229 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004230
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004231 bc_parse_pushJUMP(p, i);
Gavin Howard01055ba2018-11-03 11:00:21 -06004232
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004233 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004234 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004235
4236 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004237 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004238
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004239 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004240}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004241#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004242
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004243static BC_STATUS zbc_parse_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004244{
4245 BcStatus s;
4246 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004247 char *name;
4248
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004249 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004250 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004251 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004252 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004253 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004254
4255 name = xstrdup(p->l.t.v.v);
4256 bc_parse_addFunc(p, name, &p->fidx);
4257
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004258 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004259 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004260 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004261 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004262 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004263 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004264
4265 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004266 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004267 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004268
4269 ++p->func->nparams;
4270
4271 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004272 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004273 if (s) goto err;
4274
4275 var = p->l.t.t != BC_LEX_LBRACKET;
4276
4277 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004278 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004279 if (s) goto err;
4280
4281 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004282 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004283 goto err;
4284 }
4285
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004286 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004287 if (s) goto err;
4288 }
4289
4290 comma = p->l.t.t == BC_LEX_COMMA;
4291 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004292 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004293 if (s) goto err;
4294 }
4295
Denys Vlasenko29301232018-12-11 15:29:32 +01004296 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004297 if (s) goto err;
4298 }
4299
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004300 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004301
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004302 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004303 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004304
4305 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004306 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004307
Denys Vlasenko202dd192018-12-16 17:30:35 +01004308 // Prevent "define z()<newline>" from being interpreted as function with empty stmt as body
4309 s = zbc_lex_skip_if_at_NLINE(&p->l);
4310 if (s) RETURN_STATUS(s);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004311 //GNU bc requires a {} block even if function body has single stmt, enforce this?
4312 if (p->l.t.t != BC_LEX_LBRACE)
4313 RETURN_STATUS(bc_error("function { body } expected"));
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004314
4315 p->in_funcdef++; // to determine whether "return" stmt is allowed, and such
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004316 s = zbc_parse_stmt_possibly_auto(p, true);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004317 p->in_funcdef--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004318 if (s) RETURN_STATUS(s);
4319
4320 bc_parse_push(p, BC_INST_RET0);
4321 bc_parse_updateFunc(p, BC_PROG_MAIN);
4322
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004323 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004324 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004325
4326err:
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004327 dbg_lex_done("%s:%d done (error)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004328 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004329 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004330}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004331#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004332
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004333static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004334{
4335 BcStatus s;
4336 bool comma, var, one;
4337 char *name;
4338
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004339 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004340 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004341 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004342
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004343 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004344 one = p->l.t.t == BC_LEX_NAME;
4345
4346 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004347 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004348 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004349 if (s) goto err;
4350
4351 var = p->l.t.t != BC_LEX_LBRACKET;
4352 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004353 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004354 if (s) goto err;
4355
4356 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004357 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004358 goto err;
4359 }
4360
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004361 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004362 if (s) goto err;
4363 }
4364
4365 comma = p->l.t.t == BC_LEX_COMMA;
4366 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004367 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004368 if (s) goto err;
4369 }
4370
Denys Vlasenko29301232018-12-11 15:29:32 +01004371 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004372 if (s) goto err;
4373 }
4374
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004375 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4376 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004377
4378 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004379 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004380
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004381 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004382 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004383
4384err:
4385 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004386 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004387 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004388}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004389#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004390
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004391#undef zbc_parse_stmt_possibly_auto
4392static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004393{
4394 BcStatus s = BC_STATUS_SUCCESS;
4395
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004396 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004397
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004398 if (p->l.t.t == BC_LEX_NLINE) {
4399 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4400 RETURN_STATUS(zbc_lex_next(&p->l));
4401 }
4402 if (p->l.t.t == BC_LEX_SCOLON) {
4403 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4404 RETURN_STATUS(zbc_lex_next(&p->l));
4405 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004406
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004407 if (p->l.t.t == BC_LEX_LBRACE) {
4408 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4409 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004410 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004411 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004412 } while (p->l.t.t == BC_LEX_NLINE);
4413 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4414 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4415 s = zbc_parse_auto(p);
4416 if (s) RETURN_STATUS(s);
4417 }
4418 while (p->l.t.t != BC_LEX_RBRACE) {
4419 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4420 s = zbc_parse_stmt(p);
4421 if (s) RETURN_STATUS(s);
4422 }
4423 s = zbc_lex_next(&p->l);
4424 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4425 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004426 }
4427
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004428 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004429 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004430 case BC_LEX_OP_INC:
4431 case BC_LEX_OP_DEC:
4432 case BC_LEX_OP_MINUS:
4433 case BC_LEX_OP_BOOL_NOT:
4434 case BC_LEX_LPAREN:
4435 case BC_LEX_NAME:
4436 case BC_LEX_NUMBER:
4437 case BC_LEX_KEY_IBASE:
4438 case BC_LEX_KEY_LAST:
4439 case BC_LEX_KEY_LENGTH:
4440 case BC_LEX_KEY_OBASE:
4441 case BC_LEX_KEY_READ:
4442 case BC_LEX_KEY_SCALE:
4443 case BC_LEX_KEY_SQRT:
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004444 s = zbc_parse_expr(p, BC_PARSE_PRINT);
Gavin Howard01055ba2018-11-03 11:00:21 -06004445 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004446 case BC_LEX_STR:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004447 s = zbc_parse_string(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004448 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004449 case BC_LEX_KEY_BREAK:
4450 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004451 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004452 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004453 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004454 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004455 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004456 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004457 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004458 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004459 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004460 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004461 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004462 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004463 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004464 // "limits" is a compile-time command,
4465 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004466 printf(
4467 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4468 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4469 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4470 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4471 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4472 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4473 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4474 "Number of vars = "BC_MAX_VARS_STR "\n"
4475 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004476 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004477 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004478 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004479 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004480 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004481 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004482 // "quit" is a compile-time command. For example,
4483 // "if (0 == 1) quit" terminates when parsing the statement,
4484 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004485 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004486 case BC_LEX_KEY_RETURN:
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004487 if (!p->in_funcdef)
4488 RETURN_STATUS(bc_error("'return' not in a function"));
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004489 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004490 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004491 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004492 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004493 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004494 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004495 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004496 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004497 }
4498
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004499 if (s || G_interrupt) {
4500 bc_parse_reset(p);
4501 s = BC_STATUS_FAILURE;
4502 }
4503
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004504 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004505 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004506}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004507#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004508
Denys Vlasenko99b37622018-12-15 20:06:59 +01004509static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004510{
4511 BcStatus s;
4512
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004513 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004514 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004515 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004516 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004517 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004518 s = zbc_parse_funcdef(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004519 } else {
4520 dbg_lex("%s:%d p->l.t.t:%d (not BC_LEX_KEY_DEFINE)", __func__, __LINE__, p->l.t.t);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004521 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004522 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004523
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004524 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004525 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004526}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004527#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004528
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004529// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004530static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004531{
4532 BcStatus s = BC_STATUS_SUCCESS;
4533 BcInst prev = BC_INST_PRINT;
4534 BcLexType top, t = p->l.t.t;
4535 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004536 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004537 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4538
Denys Vlasenko17df8822018-12-14 23:00:24 +01004539 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004540 paren_first = p->l.t.t == BC_LEX_LPAREN;
4541 nparens = nrelops = 0;
4542 paren_expr = rprn = done = get_token = assign = false;
4543 bin_last = true;
4544
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004545 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004546 switch (t) {
4547
4548 case BC_LEX_OP_INC:
4549 case BC_LEX_OP_DEC:
4550 {
Denys Vlasenko26819db2018-12-12 16:08:46 +01004551 s = zbc_parse_incdec(p, &prev, &paren_expr, &nexprs, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004552 rprn = get_token = bin_last = false;
4553 break;
4554 }
4555
4556 case BC_LEX_OP_MINUS:
4557 {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004558 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004559 rprn = get_token = false;
4560 bin_last = prev == BC_INST_MINUS;
4561 break;
4562 }
4563
4564 case BC_LEX_OP_ASSIGN_POWER:
4565 case BC_LEX_OP_ASSIGN_MULTIPLY:
4566 case BC_LEX_OP_ASSIGN_DIVIDE:
4567 case BC_LEX_OP_ASSIGN_MODULUS:
4568 case BC_LEX_OP_ASSIGN_PLUS:
4569 case BC_LEX_OP_ASSIGN_MINUS:
4570 case BC_LEX_OP_ASSIGN:
4571 {
4572 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM &&
4573 prev != BC_INST_SCALE && prev != BC_INST_IBASE &&
4574 prev != BC_INST_OBASE && prev != BC_INST_LAST)
4575 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004576 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004577 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004578 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004579 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004580 break;
4581 }
4582 }
4583 // Fallthrough.
4584 case BC_LEX_OP_POWER:
4585 case BC_LEX_OP_MULTIPLY:
4586 case BC_LEX_OP_DIVIDE:
4587 case BC_LEX_OP_MODULUS:
4588 case BC_LEX_OP_PLUS:
4589 case BC_LEX_OP_REL_EQ:
4590 case BC_LEX_OP_REL_LE:
4591 case BC_LEX_OP_REL_GE:
4592 case BC_LEX_OP_REL_NE:
4593 case BC_LEX_OP_REL_LT:
4594 case BC_LEX_OP_REL_GT:
4595 case BC_LEX_OP_BOOL_NOT:
4596 case BC_LEX_OP_BOOL_OR:
4597 case BC_LEX_OP_BOOL_AND:
4598 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004599 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4600 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4601 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004602 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004603 }
4604
4605 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004606 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004607 bc_parse_operator(p, t, ops_bgn, &nexprs);
4608 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004609 rprn = get_token = false;
4610 bin_last = t != BC_LEX_OP_BOOL_NOT;
4611
4612 break;
4613 }
4614
4615 case BC_LEX_LPAREN:
4616 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004617 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004618 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004619 ++nparens;
4620 paren_expr = rprn = bin_last = false;
4621 get_token = true;
4622 bc_vec_push(&p->ops, &t);
4623
4624 break;
4625 }
4626
4627 case BC_LEX_RPAREN:
4628 {
4629 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004630 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004631
4632 if (nparens == 0) {
4633 s = BC_STATUS_SUCCESS;
4634 done = true;
4635 get_token = false;
4636 break;
4637 }
Denys Vlasenko17df8822018-12-14 23:00:24 +01004638 else if (!paren_expr) {
4639 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004640 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004641 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004642
4643 --nparens;
4644 paren_expr = rprn = true;
4645 get_token = bin_last = false;
4646
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004647 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004648
4649 break;
4650 }
4651
4652 case BC_LEX_NAME:
4653 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004654 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004655 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004656 paren_expr = true;
4657 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004658 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004659 ++nexprs;
4660
4661 break;
4662 }
4663
4664 case BC_LEX_NUMBER:
4665 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004666 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004667 return bc_error_bad_expression();
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004668 bc_parse_number(p);
4669 nexprs++;
4670 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004671 paren_expr = get_token = true;
4672 rprn = bin_last = false;
4673
4674 break;
4675 }
4676
4677 case BC_LEX_KEY_IBASE:
4678 case BC_LEX_KEY_LAST:
4679 case BC_LEX_KEY_OBASE:
4680 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004681 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004682 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004683 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4684 bc_parse_push(p, (char) prev);
4685
4686 paren_expr = get_token = true;
4687 rprn = bin_last = false;
4688 ++nexprs;
4689
4690 break;
4691 }
4692
4693 case BC_LEX_KEY_LENGTH:
4694 case BC_LEX_KEY_SQRT:
4695 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004696 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004697 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004698 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004699 paren_expr = true;
4700 rprn = get_token = bin_last = false;
4701 ++nexprs;
4702
4703 break;
4704 }
4705
4706 case BC_LEX_KEY_READ:
4707 {
4708 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004709 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004710 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004711 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004712 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004713 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004714
4715 paren_expr = true;
4716 rprn = get_token = bin_last = false;
4717 ++nexprs;
4718 prev = BC_INST_READ;
4719
4720 break;
4721 }
4722
4723 case BC_LEX_KEY_SCALE:
4724 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004725 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004726 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004727 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004728 paren_expr = true;
4729 rprn = get_token = bin_last = false;
4730 ++nexprs;
4731 prev = BC_INST_SCALE;
4732
4733 break;
4734 }
4735
4736 default:
4737 {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004738 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004739 break;
4740 }
4741 }
4742
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004743 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004744 }
4745
4746 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004747 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004748
4749 while (p->ops.len > ops_bgn) {
4750
4751 top = BC_PARSE_TOP_OP(p);
4752 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4753
4754 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004755 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004756
Denys Vlasenko0154d782018-12-14 23:32:51 +01004757 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004758
4759 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4760 bc_vec_pop(&p->ops);
4761 }
4762
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004763 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004764 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004765
Gavin Howard01055ba2018-11-03 11:00:21 -06004766 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004767 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004768 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004769 }
4770 else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004771 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004772 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004773 }
4774
4775 if (flags & BC_PARSE_PRINT) {
4776 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4777 bc_parse_push(p, BC_INST_POP);
4778 }
4779
Denys Vlasenko17df8822018-12-14 23:00:24 +01004780 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004781 return s;
4782}
4783
Gavin Howard01055ba2018-11-03 11:00:21 -06004784#endif // ENABLE_BC
4785
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004786#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004787
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004788static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004789{
4790 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004791
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004792 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004793 if (s) RETURN_STATUS(s);
4794 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004795
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01004796 bc_parse_pushName(p, p->l.t.v.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004797
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004798 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004799}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004800#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004801
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004802static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004803{
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004804 char *str, *name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004805 size_t idx, len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004806
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004807//why pad to 32 zeros??
4808 name = xasprintf("%032lu", (unsigned long)len);
Gavin Howard01055ba2018-11-03 11:00:21 -06004809
4810 str = xstrdup(p->l.t.v.v);
4811 bc_parse_push(p, BC_INST_STR);
4812 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004813 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004814 bc_parse_addFunc(p, name, &idx);
4815
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004816 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004817}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004818#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004819
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004820static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004821{
4822 BcStatus s;
4823
4824 bc_parse_push(p, inst);
4825 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004826 s = zdc_parse_register(p);
4827 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004828 }
4829
4830 if (store) {
4831 bc_parse_push(p, BC_INST_SWAP);
4832 bc_parse_push(p, BC_INST_ASSIGN);
4833 bc_parse_push(p, BC_INST_POP);
4834 }
4835
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004836 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004837}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004838#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004839
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004840static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004841{
4842 BcStatus s;
4843
4844 bc_parse_push(p, inst);
4845 bc_parse_push(p, BC_INST_EXEC_COND);
4846
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004847 s = zdc_parse_register(p);
4848 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004849
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004850 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004851 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004852
4853 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004854 s = zdc_parse_register(p);
4855 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004856 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004857 }
4858 else
4859 bc_parse_push(p, BC_PARSE_STREND);
4860
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004861 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004862}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004863#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004864
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004865static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004866{
4867 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06004868 uint8_t inst;
4869 bool assign, get_token = false;
4870
4871 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004872 case BC_LEX_OP_REL_EQ:
4873 case BC_LEX_OP_REL_LE:
4874 case BC_LEX_OP_REL_GE:
4875 case BC_LEX_OP_REL_NE:
4876 case BC_LEX_OP_REL_LT:
4877 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004878 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06004879 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004880 case BC_LEX_SCOLON:
4881 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004882 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06004883 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004884 case BC_LEX_STR:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004885 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004886 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004887 case BC_LEX_NEG:
4888 case BC_LEX_NUMBER:
Gavin Howard01055ba2018-11-03 11:00:21 -06004889 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004890 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004891 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004892 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004893 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004894 }
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004895 bc_parse_number(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004896 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
4897 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06004898 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004899 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004900 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004901 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004902 else
4903 bc_parse_push(p, BC_INST_READ);
4904 get_token = true;
4905 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004906 case BC_LEX_OP_ASSIGN:
4907 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06004908 assign = t == BC_LEX_OP_ASSIGN;
4909 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004910 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06004911 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004912 case BC_LEX_LOAD:
4913 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06004914 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004915 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06004916 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004917 case BC_LEX_STORE_IBASE:
4918 case BC_LEX_STORE_SCALE:
4919 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004920 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004921 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06004922 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004923 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004924 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004925 get_token = true;
4926 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004927 }
4928
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004929 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004930
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004931 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004932}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004933#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004934
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004935static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004936{
4937 BcStatus s = BC_STATUS_SUCCESS;
4938 BcInst inst;
4939 BcLexType t;
4940
Gavin Howard01055ba2018-11-03 11:00:21 -06004941 for (t = p->l.t.t; !s && t != BC_LEX_EOF; t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004942 inst = dc_parse_insts[t];
4943
4944 if (inst != BC_INST_INVALID) {
4945 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004946 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004947 } else
4948 s = zdc_parse_token(p, t, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004949 }
4950
4951 if (!s && p->l.t.t == BC_LEX_EOF && (flags & BC_PARSE_NOCALL))
4952 bc_parse_push(p, BC_INST_POP_EXEC);
4953
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004954 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004955}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004956#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004957
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01004958static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004959{
4960 BcStatus s;
4961
4962 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004963 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004964 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004965 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004966
Denys Vlasenkod38af482018-12-04 19:11:02 +01004967 if (s || G_interrupt) {
4968 bc_parse_reset(p);
4969 s = BC_STATUS_FAILURE;
4970 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004971
Denys Vlasenko26819db2018-12-12 16:08:46 +01004972 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004973}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004974#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004975
Gavin Howard01055ba2018-11-03 11:00:21 -06004976#endif // ENABLE_DC
4977
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004978static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004979{
4980 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004981 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004982 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01004983 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004984 }
4985}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004986#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004987
Denys Vlasenkodf515392018-12-02 19:27:48 +01004988static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06004989{
Gavin Howard01055ba2018-11-03 11:00:21 -06004990 BcId e, *ptr;
4991 BcVec *v, *map;
4992 size_t i;
4993 BcResultData data;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01004994 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06004995
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004996 v = var ? &G.prog.vars : &G.prog.arrs;
4997 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06004998
4999 e.name = id;
5000 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005001 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06005002
5003 if (new) {
5004 bc_array_init(&data.v, var);
5005 bc_vec_push(v, &data.v);
5006 }
5007
5008 ptr = bc_vec_item(map, i);
5009 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005010 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005011}
5012
Denys Vlasenko29301232018-12-11 15:29:32 +01005013static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06005014{
Gavin Howard01055ba2018-11-03 11:00:21 -06005015 switch (r->t) {
5016
5017 case BC_RESULT_STR:
5018 case BC_RESULT_TEMP:
5019 case BC_RESULT_IBASE:
5020 case BC_RESULT_SCALE:
5021 case BC_RESULT_OBASE:
5022 {
5023 *num = &r->d.n;
5024 break;
5025 }
5026
5027 case BC_RESULT_CONSTANT:
5028 {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005029 BcStatus s;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005030 char **str = bc_vec_item(&G.prog.consts, r->d.id.idx);
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005031 unsigned base_t;
5032 size_t len = strlen(*str);
Gavin Howard01055ba2018-11-03 11:00:21 -06005033
5034 bc_num_init(&r->d.n, len);
5035
5036 hex = hex && len == 1;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005037 base_t = hex ? 16 : G.prog.ib_t;
5038 s = zbc_num_parse(&r->d.n, *str, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005039
5040 if (s) {
5041 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01005042 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005043 }
5044
5045 *num = &r->d.n;
5046 r->t = BC_RESULT_TEMP;
5047
5048 break;
5049 }
5050
5051 case BC_RESULT_VAR:
5052 case BC_RESULT_ARRAY:
5053 case BC_RESULT_ARRAY_ELEM:
5054 {
5055 BcVec *v;
5056
Denys Vlasenkodf515392018-12-02 19:27:48 +01005057 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06005058
5059 if (r->t == BC_RESULT_ARRAY_ELEM) {
5060 v = bc_vec_top(v);
5061 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
5062 *num = bc_vec_item(v, r->d.id.idx);
5063 }
5064 else
5065 *num = bc_vec_top(v);
5066
5067 break;
5068 }
5069
5070 case BC_RESULT_LAST:
5071 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005072 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005073 break;
5074 }
5075
5076 case BC_RESULT_ONE:
5077 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005078 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005079 break;
5080 }
5081 }
5082
Denys Vlasenko29301232018-12-11 15:29:32 +01005083 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005084}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005085#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005086
Denys Vlasenko29301232018-12-11 15:29:32 +01005087static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005088 BcResult **r, BcNum **rn, bool assign)
5089{
5090 BcStatus s;
5091 bool hex;
5092 BcResultType lt, rt;
5093
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005094 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005095 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005096
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005097 *r = bc_vec_item_rev(&G.prog.results, 0);
5098 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005099
5100 lt = (*l)->t;
5101 rt = (*r)->t;
5102 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5103
Denys Vlasenko29301232018-12-11 15:29:32 +01005104 s = zbc_program_num(*l, ln, false);
5105 if (s) RETURN_STATUS(s);
5106 s = zbc_program_num(*r, rn, hex);
5107 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005108
5109 // We run this again under these conditions in case any vector has been
5110 // reallocated out from under the BcNums or arrays we had.
5111 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005112 s = zbc_program_num(*l, ln, false);
5113 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005114 }
5115
5116 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005117 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005118 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005119 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005120
Denys Vlasenko29301232018-12-11 15:29:32 +01005121 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005122}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005123#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005124
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005125static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005126{
5127 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005128 bc_vec_pop(&G.prog.results);
5129 bc_vec_pop(&G.prog.results);
5130 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005131}
5132
Denys Vlasenko29301232018-12-11 15:29:32 +01005133static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005134{
5135 BcStatus s;
5136
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005137 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005138 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005139 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005140
Denys Vlasenko29301232018-12-11 15:29:32 +01005141 s = zbc_program_num(*r, n, false);
5142 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005143
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005144 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005145 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005146
Denys Vlasenko29301232018-12-11 15:29:32 +01005147 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005148}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005149#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005150
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005151static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005152{
5153 r->t = t;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005154 bc_vec_pop(&G.prog.results);
5155 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005156}
5157
Denys Vlasenko259137d2018-12-11 19:42:05 +01005158static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005159{
5160 BcStatus s;
5161 BcResult *opd1, *opd2, res;
5162 BcNum *n1, *n2 = NULL;
5163
Denys Vlasenko29301232018-12-11 15:29:32 +01005164 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005165 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005166 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005167
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005168 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005169 IF_ERROR_RETURN_POSSIBLE(s =) zbc_program_ops[inst - BC_INST_POWER](n1, n2, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06005170 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005171 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005172
Denys Vlasenko259137d2018-12-11 19:42:05 +01005173 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005174
5175err:
5176 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005177 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005178}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005179#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005180
Denys Vlasenko26819db2018-12-12 16:08:46 +01005181static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005182{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005183 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005184 BcStatus s;
5185 BcParse parse;
5186 BcVec buf;
5187 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005188 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005189
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005190 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005191 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005192
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005193 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005194 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005195
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005196 sv_file = G.prog.file;
5197 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005198 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005199
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005200 bc_char_vec_init(&buf);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01005201 bc_read_line(&buf, stdin);
Gavin Howard01055ba2018-11-03 11:00:21 -06005202
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005203 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005204 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005205
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005206 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005207 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005208 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005209 if (s) goto exec_err;
5210
5211 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005212 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005213 goto exec_err;
5214 }
5215
5216 ip.func = BC_PROG_READ;
5217 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005218 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005219
5220 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005221 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005222
5223 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005224 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005225
5226exec_err:
5227 bc_parse_free(&parse);
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005228 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005229 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005230 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005231 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005232}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005233#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005234
5235static size_t bc_program_index(char *code, size_t *bgn)
5236{
5237 char amt = code[(*bgn)++], i = 0;
5238 size_t res = 0;
5239
5240 for (; i < amt; ++i, ++(*bgn))
5241 res |= (((size_t)((int) code[*bgn]) & UCHAR_MAX) << (i * CHAR_BIT));
5242
5243 return res;
5244}
5245
5246static char *bc_program_name(char *code, size_t *bgn)
5247{
5248 size_t i;
5249 char c, *s, *str = code + *bgn, *ptr = strchr(str, BC_PARSE_STREND);
5250
5251 s = xmalloc(ptr - str + 1);
5252 c = code[(*bgn)++];
5253
5254 for (i = 0; c != 0 && c != BC_PARSE_STREND; c = code[(*bgn)++], ++i)
5255 s[i] = c;
5256
5257 s[i] = '\0';
5258
5259 return s;
5260}
5261
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005262static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005263{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005264#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005265 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005266 // Example: echo '[]ap' | dc
5267 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005268 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005269 return;
5270 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005271#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005272 while (*str) {
5273 int c = *str++;
5274 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005275 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005276 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005277 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005278 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005279 case 'a':
5280 bb_putchar('\a');
5281 break;
5282 case 'b':
5283 bb_putchar('\b');
5284 break;
5285 case '\\':
5286 case 'e':
5287 bb_putchar('\\');
5288 break;
5289 case 'f':
5290 bb_putchar('\f');
5291 break;
5292 case 'n':
5293 bb_putchar('\n');
5294 G.prog.nchars = SIZE_MAX;
5295 break;
5296 case 'r':
5297 bb_putchar('\r');
5298 break;
5299 case 'q':
5300 bb_putchar('"');
5301 break;
5302 case 't':
5303 bb_putchar('\t');
5304 break;
5305 default:
5306 // Just print the backslash and following character.
5307 bb_putchar('\\');
5308 ++G.prog.nchars;
5309 bb_putchar(c);
5310 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005311 }
5312 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005313 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005314 }
5315}
5316
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005317static void bc_num_printNewline(void)
5318{
5319 if (G.prog.nchars == G.prog.len - 1) {
5320 bb_putchar('\\');
5321 bb_putchar('\n');
5322 G.prog.nchars = 0;
5323 }
5324}
5325
5326#if ENABLE_DC
5327static FAST_FUNC void bc_num_printChar(size_t num, size_t width, bool radix)
5328{
5329 (void) radix;
5330 bb_putchar((char) num);
5331 G.prog.nchars += width;
5332}
5333#endif
5334
5335static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5336{
5337 size_t exp, pow;
5338
5339 bc_num_printNewline();
5340 bb_putchar(radix ? '.' : ' ');
5341 ++G.prog.nchars;
5342
5343 bc_num_printNewline();
5344 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5345 continue;
5346
5347 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5348 size_t dig;
5349 bc_num_printNewline();
5350 dig = num / pow;
5351 num -= dig * pow;
5352 bb_putchar(((char) dig) + '0');
5353 }
5354}
5355
5356static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5357{
5358 if (radix) {
5359 bc_num_printNewline();
5360 bb_putchar('.');
5361 G.prog.nchars += 1;
5362 }
5363
5364 bc_num_printNewline();
5365 bb_putchar(bb_hexdigits_upcase[num]);
5366 G.prog.nchars += width;
5367}
5368
5369static void bc_num_printDecimal(BcNum *n)
5370{
5371 size_t i, rdx = n->rdx - 1;
5372
5373 if (n->neg) bb_putchar('-');
5374 G.prog.nchars += n->neg;
5375
5376 for (i = n->len - 1; i < n->len; --i)
5377 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5378}
5379
5380static BC_STATUS zbc_num_printNum(BcNum *n, BcNum *base, size_t width, BcNumDigitOp print)
5381{
5382 BcStatus s;
5383 BcVec stack;
5384 BcNum intp, fracp, digit, frac_len;
5385 unsigned long dig, *ptr;
5386 size_t i;
5387 bool radix;
5388
5389 if (n->len == 0) {
5390 print(0, width, false);
5391 RETURN_STATUS(BC_STATUS_SUCCESS);
5392 }
5393
5394 bc_vec_init(&stack, sizeof(long), NULL);
5395 bc_num_init(&intp, n->len);
5396 bc_num_init(&fracp, n->rdx);
5397 bc_num_init(&digit, width);
5398 bc_num_init(&frac_len, BC_NUM_INT(n));
5399 bc_num_copy(&intp, n);
5400 bc_num_one(&frac_len);
5401
5402 bc_num_truncate(&intp, intp.rdx);
5403 s = zbc_num_sub(n, &intp, &fracp, 0);
5404 if (s) goto err;
5405
5406 while (intp.len != 0) {
5407 s = zbc_num_divmod(&intp, base, &intp, &digit, 0);
5408 if (s) goto err;
5409 s = zbc_num_ulong(&digit, &dig);
5410 if (s) goto err;
5411 bc_vec_push(&stack, &dig);
5412 }
5413
5414 for (i = 0; i < stack.len; ++i) {
5415 ptr = bc_vec_item_rev(&stack, i);
5416 print(*ptr, width, false);
5417 }
5418
5419 if (!n->rdx) goto err;
5420
5421 for (radix = true; frac_len.len <= n->rdx; radix = false) {
5422 s = zbc_num_mul(&fracp, base, &fracp, n->rdx);
5423 if (s) goto err;
5424 s = zbc_num_ulong(&fracp, &dig);
5425 if (s) goto err;
5426 bc_num_ulong2num(&intp, dig);
5427 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5428 if (s) goto err;
5429 print(dig, width, radix);
5430 s = zbc_num_mul(&frac_len, base, &frac_len, 0);
5431 if (s) goto err;
5432 }
5433
5434err:
5435 bc_num_free(&frac_len);
5436 bc_num_free(&digit);
5437 bc_num_free(&fracp);
5438 bc_num_free(&intp);
5439 bc_vec_free(&stack);
5440 RETURN_STATUS(s);
5441}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005442#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005443
5444static BC_STATUS zbc_num_printBase(BcNum *n)
5445{
5446 BcStatus s;
5447 size_t width, i;
5448 BcNumDigitOp print;
5449 bool neg = n->neg;
5450
5451 if (neg) {
5452 bb_putchar('-');
5453 G.prog.nchars++;
5454 }
5455
5456 n->neg = false;
5457
5458 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5459 width = 1;
5460 print = bc_num_printHex;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005461 } else {
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005462 for (i = G.prog.ob_t - 1, width = 0; i != 0; i /= 10, ++width)
5463 continue;
5464 print = bc_num_printDigits;
5465 }
5466
5467 s = zbc_num_printNum(n, &G.prog.ob, width, print);
5468 n->neg = neg;
5469
5470 RETURN_STATUS(s);
5471}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005472#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005473
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005474static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5475{
5476 BcStatus s = BC_STATUS_SUCCESS;
5477
5478 bc_num_printNewline();
5479
5480 if (n->len == 0) {
5481 bb_putchar('0');
5482 ++G.prog.nchars;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005483 } else if (G.prog.ob_t == 10)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005484 bc_num_printDecimal(n);
5485 else
5486 s = zbc_num_printBase(n);
5487
5488 if (newline) {
5489 bb_putchar('\n');
5490 G.prog.nchars = 0;
5491 }
5492
5493 RETURN_STATUS(s);
5494}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005495#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005496
Denys Vlasenko29301232018-12-11 15:29:32 +01005497static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005498{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005499 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005500 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005501 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005502 bool pop = inst != BC_INST_PRINT;
5503
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005504 if (!BC_PROG_STACK(&G.prog.results, idx + 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005505 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005506
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005507 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005508 num = NULL; // is this NULL necessary?
Denys Vlasenko29301232018-12-11 15:29:32 +01005509 s = zbc_program_num(r, &num, false);
5510 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005511
5512 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005513 s = zbc_num_print(num, !pop);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005514 if (!s) bc_num_copy(&G.prog.last, num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005515 }
5516 else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005517 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005518
5519 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005520 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005521
5522 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005523 for (;;) {
5524 char c = *str++;
5525 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005526 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005527 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005528 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005529 }
5530 }
5531 else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005532 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005533 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005534 }
5535 }
5536
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005537 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005538
Denys Vlasenko29301232018-12-11 15:29:32 +01005539 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005540}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005541#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005542
Denys Vlasenko29301232018-12-11 15:29:32 +01005543static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005544{
5545 BcStatus s;
5546 BcResult res, *ptr;
5547 BcNum *num = NULL;
5548
Denys Vlasenko29301232018-12-11 15:29:32 +01005549 s = zbc_program_prep(&ptr, &num);
5550 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005551
5552 bc_num_init(&res.d.n, num->len);
5553 bc_num_copy(&res.d.n, num);
5554 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5555
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005556 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005557
Denys Vlasenko29301232018-12-11 15:29:32 +01005558 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005559}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005560#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005561
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005562static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005563{
5564 BcStatus s;
5565 BcResult *opd1, *opd2, res;
5566 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005567 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005568
Denys Vlasenko29301232018-12-11 15:29:32 +01005569 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005570 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005571
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005572 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005573
5574 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005575 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005576 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005577 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005578 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005579 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005580 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005581 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005582 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005583 break;
5584 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005585 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005586 break;
5587 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005588 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005589 break;
5590 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005591 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005592 break;
5593 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005594 cond = (cond > 0);
5595 break;
5596 default: // = case BC_INST_REL_NE:
5597 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005598 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005599 }
5600 }
5601
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005602 if (cond) bc_num_one(&res.d.n);
5603 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005604
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005605 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005606
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005607 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005608}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005609#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005610
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005611#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01005612static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v,
Gavin Howard01055ba2018-11-03 11:00:21 -06005613 bool push)
5614{
5615 BcNum n2;
5616 BcResult res;
5617
5618 memset(&n2, 0, sizeof(BcNum));
5619 n2.rdx = res.d.id.idx = r->d.id.idx;
5620 res.t = BC_RESULT_STR;
5621
5622 if (!push) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005623 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005624 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005625 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005626 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005627 }
5628
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005629 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005630
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005631 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005632 bc_vec_push(v, &n2);
5633
Denys Vlasenko29301232018-12-11 15:29:32 +01005634 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005635}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005636#define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005637#endif // ENABLE_DC
5638
Denys Vlasenko29301232018-12-11 15:29:32 +01005639static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005640{
5641 BcStatus s;
5642 BcResult *ptr, r;
5643 BcVec *v;
5644 BcNum *n;
5645
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005646 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005647 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005648
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005649 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005650 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005651 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005652 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005653
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005654#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005655 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005656 RETURN_STATUS(bc_error_variable_is_wrong_type());
5657 if (ptr->t == BC_RESULT_STR)
5658 RETURN_STATUS(zbc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005659#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005660
Denys Vlasenko29301232018-12-11 15:29:32 +01005661 s = zbc_program_num(ptr, &n, false);
5662 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005663
5664 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005665 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005666
5667 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005668 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005669 bc_num_copy(&r.d.n, n);
5670 }
5671 else {
5672 bc_array_init(&r.d.v, true);
5673 bc_array_copy(&r.d.v, (BcVec *) n);
5674 }
5675
5676 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005677 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005678
Denys Vlasenko29301232018-12-11 15:29:32 +01005679 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005680}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005681#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005682
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005683static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005684{
5685 BcStatus s;
5686 BcResult *left, *right, res;
5687 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005688 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5689
Denys Vlasenko29301232018-12-11 15:29:32 +01005690 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005691 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005692
5693 ib = left->t == BC_RESULT_IBASE;
5694 sc = left->t == BC_RESULT_SCALE;
5695
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005696#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005697
5698 if (right->t == BC_RESULT_STR) {
5699
5700 BcVec *v;
5701
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005702 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005703 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005704 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005705
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005706 RETURN_STATUS(zbc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005707 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005708#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005709
5710 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005711 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005712 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005713 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005714 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005715
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005716#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005717 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005718 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005719
5720 if (assign)
5721 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005722 else {
5723 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005724 IF_ERROR_RETURN_POSSIBLE(s =) zbc_program_ops[inst - BC_INST_ASSIGN_POWER](l, r, l, G.prog.scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005725 }
5726 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005727#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005728 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005729#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005730
5731 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005732 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005733 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5734 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5735 NULL, //can't happen //BC_RESULT_LAST
5736 NULL, //can't happen //BC_RESULT_CONSTANT
5737 NULL, //can't happen //BC_RESULT_ONE
5738 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005739 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005740 size_t *ptr;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005741 size_t max;
5742 unsigned long val;
Gavin Howard01055ba2018-11-03 11:00:21 -06005743
Denys Vlasenko29301232018-12-11 15:29:32 +01005744 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005745 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005746 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005747 if (sc) {
5748 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005749 ptr = &G.prog.scale;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005750 } else {
5751 if (val < 2)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005752 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005753 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005754 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005755 }
5756
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005757 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005758 RETURN_STATUS(bc_error(msg[s]));
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005759 if (!sc && !ib)
5760 bc_num_copy(&G.prog.ob, l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005761
5762 *ptr = (size_t) val;
5763 s = BC_STATUS_SUCCESS;
5764 }
5765
5766 bc_num_init(&res.d.n, l->len);
5767 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005768 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005769
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005770 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005771}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005772#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005773
Denys Vlasenko416ce762018-12-02 20:57:17 +01005774#if !ENABLE_DC
5775#define bc_program_pushVar(code, bgn, pop, copy) \
5776 bc_program_pushVar(code, bgn)
5777// for bc, 'pop' and 'copy' are always false
5778#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005779static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005780 bool pop, bool copy)
5781{
Gavin Howard01055ba2018-11-03 11:00:21 -06005782 BcResult r;
5783 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06005784
5785 r.t = BC_RESULT_VAR;
5786 r.d.id.name = name;
5787
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005788#if ENABLE_DC
Denys Vlasenko416ce762018-12-02 20:57:17 +01005789 {
5790 BcVec *v = bc_program_search(name, true);
5791 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005792
Denys Vlasenko416ce762018-12-02 20:57:17 +01005793 if (pop || copy) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005794
Denys Vlasenko416ce762018-12-02 20:57:17 +01005795 if (!BC_PROG_STACK(v, 2 - copy)) {
5796 free(name);
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005797 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko416ce762018-12-02 20:57:17 +01005798 }
5799
Gavin Howard01055ba2018-11-03 11:00:21 -06005800 free(name);
Denys Vlasenko416ce762018-12-02 20:57:17 +01005801 name = NULL;
5802
5803 if (!BC_PROG_STR(num)) {
5804
5805 r.t = BC_RESULT_TEMP;
5806
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005807 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko416ce762018-12-02 20:57:17 +01005808 bc_num_copy(&r.d.n, num);
5809 }
5810 else {
5811 r.t = BC_RESULT_STR;
5812 r.d.id.idx = num->rdx;
5813 }
5814
5815 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005816 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005817 }
5818#endif // ENABLE_DC
5819
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005820 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005821
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005822 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005823}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005824#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005825
Denys Vlasenko29301232018-12-11 15:29:32 +01005826static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005827 char inst)
5828{
5829 BcStatus s = BC_STATUS_SUCCESS;
5830 BcResult r;
5831 BcNum *num;
5832
5833 r.d.id.name = bc_program_name(code, bgn);
5834
5835 if (inst == BC_INST_ARRAY) {
5836 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005837 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005838 }
5839 else {
5840
5841 BcResult *operand;
5842 unsigned long temp;
5843
Denys Vlasenko29301232018-12-11 15:29:32 +01005844 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005845 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01005846 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06005847 if (s) goto err;
5848
5849 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005850 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06005851 goto err;
5852 }
5853
5854 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005855 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06005856 }
5857
5858err:
5859 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01005860 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005861}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005862#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005863
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005864#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01005865static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005866{
5867 BcStatus s;
5868 BcResult *ptr, res, copy;
5869 BcNum *num = NULL;
5870 char inst2 = inst;
5871
Denys Vlasenko29301232018-12-11 15:29:32 +01005872 s = zbc_program_prep(&ptr, &num);
5873 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005874
5875 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
5876 copy.t = BC_RESULT_TEMP;
5877 bc_num_init(&copy.d.n, num->len);
5878 bc_num_copy(&copy.d.n, num);
5879 }
5880
5881 res.t = BC_RESULT_ONE;
5882 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
5883 BC_INST_ASSIGN_PLUS :
5884 BC_INST_ASSIGN_MINUS;
5885
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005886 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005887 s = zbc_program_assign(inst);
5888 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005889
5890 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005891 bc_vec_pop(&G.prog.results);
5892 bc_vec_push(&G.prog.results, &copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06005893 }
5894
Denys Vlasenko29301232018-12-11 15:29:32 +01005895 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005896}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005897#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005898
Denys Vlasenko29301232018-12-11 15:29:32 +01005899static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005900{
Gavin Howard01055ba2018-11-03 11:00:21 -06005901 BcInstPtr ip;
5902 size_t i, nparams = bc_program_index(code, idx);
5903 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06005904 BcId *a;
5905 BcResultData param;
5906 BcResult *arg;
5907
5908 ip.idx = 0;
5909 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005910 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005911
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005912 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005913 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005914 }
5915 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005916 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005917 }
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005918 ip.len = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005919
5920 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005921 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005922
5923 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005924 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005925
5926 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01005927 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005928
Denys Vlasenko29301232018-12-11 15:29:32 +01005929 s = zbc_program_copyToVar(a->name, a->idx);
5930 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005931 }
5932
5933 for (; i < func->autos.len; ++i) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01005934 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06005935
5936 a = bc_vec_item(&func->autos, i);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005937 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005938
5939 if (a->idx) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005940 bc_num_init_DEF_SIZE(&param.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005941 bc_vec_push(v, &param.n);
5942 }
5943 else {
5944 bc_array_init(&param.v, true);
5945 bc_vec_push(v, &param.v);
5946 }
5947 }
5948
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005949 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005950
Denys Vlasenko29301232018-12-11 15:29:32 +01005951 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005952}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005953#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005954
Denys Vlasenko29301232018-12-11 15:29:32 +01005955static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005956{
Gavin Howard01055ba2018-11-03 11:00:21 -06005957 BcResult res;
5958 BcFunc *f;
5959 size_t i;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005960 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005961
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005962 if (!BC_PROG_STACK(&G.prog.results, ip->len + inst == BC_INST_RET))
Denys Vlasenko29301232018-12-11 15:29:32 +01005963 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005964
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005965 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005966 res.t = BC_RESULT_TEMP;
5967
5968 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005969 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005970 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005971 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005972
Denys Vlasenko29301232018-12-11 15:29:32 +01005973 s = zbc_program_num(operand, &num, false);
5974 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005975 bc_num_init(&res.d.n, num->len);
5976 bc_num_copy(&res.d.n, num);
5977 }
5978 else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005979 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01005980 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005981 }
5982
5983 // We need to pop arguments as well, so this takes that into account.
5984 for (i = 0; i < f->autos.len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005985 BcVec *v;
5986 BcId *a = bc_vec_item(&f->autos, i);
5987
Denys Vlasenkodf515392018-12-02 19:27:48 +01005988 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005989 bc_vec_pop(v);
5990 }
5991
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005992 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->len);
5993 bc_vec_push(&G.prog.results, &res);
5994 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005995
Denys Vlasenko29301232018-12-11 15:29:32 +01005996 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005997}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005998#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005999#endif // ENABLE_BC
6000
6001static unsigned long bc_program_scale(BcNum *n)
6002{
6003 return (unsigned long) n->rdx;
6004}
6005
6006static unsigned long bc_program_len(BcNum *n)
6007{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006008 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006009
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006010 if (n->rdx != len) return len;
6011 for (;;) {
6012 if (len == 0) break;
6013 len--;
6014 if (n->num[len] != 0) break;
6015 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006016 return len;
6017}
6018
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006019static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006020{
6021 BcStatus s;
6022 BcResult *opnd;
6023 BcNum *num = NULL;
6024 BcResult res;
6025 bool len = inst == BC_INST_LENGTH;
6026
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006027 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006028 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006029 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006030
Denys Vlasenko29301232018-12-11 15:29:32 +01006031 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006032 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006033
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006034#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006035 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006036 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006037#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006038
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006039 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006040
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006041 if (inst == BC_INST_SQRT) s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006042#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006043 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006044 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006045 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006046#endif
6047#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006048 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006049 char **str;
6050 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
6051
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006052 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006053 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06006054 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006055#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006056 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01006057 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06006058 }
6059
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006060 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006061
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006062 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006063}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006064#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006065
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006066#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006067static BC_STATUS zbc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006068{
6069 BcStatus s;
6070 BcResult *opd1, *opd2, res, res2;
6071 BcNum *n1, *n2 = NULL;
6072
Denys Vlasenko29301232018-12-11 15:29:32 +01006073 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006074 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006075
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006076 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006077 bc_num_init(&res2.d.n, n2->len);
6078
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006079 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006080 if (s) goto err;
6081
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006082 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006083 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006084 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006085
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006086 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006087
6088err:
6089 bc_num_free(&res2.d.n);
6090 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006091 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006092}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006093#define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006094
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006095static BC_STATUS zbc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006096{
6097 BcStatus s;
6098 BcResult *r1, *r2, *r3, res;
6099 BcNum *n1, *n2, *n3;
6100
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006101 if (!BC_PROG_STACK(&G.prog.results, 3))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006102 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006103 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006104 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006105
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006106 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006107 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006108 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006109 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006110 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006111
6112 // Make sure that the values have their pointers updated, if necessary.
6113 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
6114
6115 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006116 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006117 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006118 }
6119
6120 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006121 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006122 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006123 }
6124 }
6125
6126 bc_num_init(&res.d.n, n3->len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006127 s = zbc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006128 if (s) goto err;
6129
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006130 bc_vec_pop(&G.prog.results);
6131 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006132
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006133 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006134
6135err:
6136 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006137 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006138}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006139#define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006140
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006141static void bc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006142{
Gavin Howard01055ba2018-11-03 11:00:21 -06006143 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006144 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006145
6146 res.t = BC_RESULT_TEMP;
6147
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006148 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006149 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006150 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006151}
6152
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006153static BC_STATUS zbc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006154{
6155 BcStatus s;
6156 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006157 BcNum *num, n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006158 char *str, *str2, c;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006159 size_t len = G.prog.strs.len, idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006160 unsigned long val;
6161
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006162 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006163 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006164 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006165
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006166 num = NULL; // TODO: is this NULL needed?
Denys Vlasenko29301232018-12-11 15:29:32 +01006167 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006168 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006169
6170 if (BC_PROG_NUM(r, num)) {
6171
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006172 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006173 bc_num_copy(&n, num);
6174 bc_num_truncate(&n, n.rdx);
6175
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006176 s = zbc_num_mod(&n, &G.prog.strmb, &n, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006177 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006178 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006179 if (s) goto num_err;
6180
6181 c = (char) val;
6182
6183 bc_num_free(&n);
6184 }
6185 else {
6186 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006187 str2 = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006188 c = str2[0];
6189 }
6190
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006191 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006192 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006193 //str[1] = '\0'; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006194
6195 str2 = xstrdup(str);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006196 bc_program_addFunc(str2, &idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006197
6198 if (idx != len + BC_PROG_REQ_FUNCS) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006199 for (idx = 0; idx < G.prog.strs.len; ++idx) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006200 if (strcmp(*bc_program_str(idx), str) == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006201 len = idx;
6202 break;
6203 }
6204 }
6205
6206 free(str);
6207 }
6208 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006209 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006210
6211 res.t = BC_RESULT_STR;
6212 res.d.id.idx = len;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006213 bc_vec_pop(&G.prog.results);
6214 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006215
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006216 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006217
6218num_err:
6219 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006220 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006221}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006222#define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006223
Denys Vlasenko29301232018-12-11 15:29:32 +01006224static BC_STATUS zbc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006225{
6226 BcStatus s;
6227 BcResult *r;
6228 BcNum *n = NULL;
6229 size_t idx;
6230 char *str;
6231
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006232 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01006233 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006234 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006235
Denys Vlasenko29301232018-12-11 15:29:32 +01006236 s = zbc_program_num(r, &n, false);
6237 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006238
Denys Vlasenko57734c92018-12-17 21:14:05 +01006239 if (BC_PROG_NUM(r, n)) {
6240 s = zbc_num_printNum(n, &G.prog.strmb, 1, bc_num_printChar);
6241 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06006242 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006243 str = *bc_program_str(idx);
Denys Vlasenko00d77792018-11-30 23:13:42 +01006244 printf("%s", str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006245 }
6246
Denys Vlasenko29301232018-12-11 15:29:32 +01006247 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006248}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006249#define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006250
Denys Vlasenko29301232018-12-11 15:29:32 +01006251static BC_STATUS zbc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006252{
6253 BcStatus s;
6254 BcResult *opnd;
6255 BcNum *num = NULL;
6256 unsigned long val;
6257
Denys Vlasenko29301232018-12-11 15:29:32 +01006258 s = zbc_program_prep(&opnd, &num);
6259 if (s) RETURN_STATUS(s);
6260 s = zbc_num_ulong(num, &val);
6261 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006262
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006263 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006264
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006265 if (G.prog.stack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006266 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006267 if (G.prog.stack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006268 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006269 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006270
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006271 bc_vec_npop(&G.prog.stack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006272
Denys Vlasenko29301232018-12-11 15:29:32 +01006273 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006274}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006275#define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006276
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006277static BC_STATUS zbc_program_execStr(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06006278 bool cond)
6279{
6280 BcStatus s = BC_STATUS_SUCCESS;
6281 BcResult *r;
6282 char **str;
6283 BcFunc *f;
6284 BcParse prs;
6285 BcInstPtr ip;
6286 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006287
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006288 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006289 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006290
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006291 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006292
6293 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006294 BcNum *n = n; // for compiler
6295 bool exec;
6296 char *name;
6297 char *then_name = bc_program_name(code, bgn);
6298 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006299
6300 if (code[*bgn] == BC_PARSE_STREND)
6301 (*bgn) += 1;
6302 else
6303 else_name = bc_program_name(code, bgn);
6304
6305 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006306 name = then_name;
6307 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006308 exec = true;
6309 name = else_name;
6310 }
6311
6312 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006313 BcVec *v;
6314 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006315 n = bc_vec_top(v);
6316 }
6317
6318 free(then_name);
6319 free(else_name);
6320
6321 if (!exec) goto exit;
6322 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006323 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006324 goto exit;
6325 }
6326
6327 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006328 } else {
6329 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006330 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006331 } else if (r->t == BC_RESULT_VAR) {
6332 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006333 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006334 if (s || !BC_PROG_STR(n)) goto exit;
6335 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006336 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006337 goto exit;
6338 }
6339
6340 fidx = sidx + BC_PROG_REQ_FUNCS;
6341
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006342 str = bc_program_str(sidx);
6343 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006344
6345 if (f->code.len == 0) {
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006346 bc_parse_create(&prs, fidx);
Denys Vlasenkof86e9602018-12-14 17:01:56 +01006347 s = zbc_parse_text_init(&prs, *str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006348 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006349 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006350 if (s) goto err;
6351
6352 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006353 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06006354 goto err;
6355 }
6356
6357 bc_parse_free(&prs);
6358 }
6359
6360 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006361 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006362 ip.func = fidx;
6363
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006364 bc_vec_pop(&G.prog.results);
6365 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006366
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006367 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006368
6369err:
6370 bc_parse_free(&prs);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006371 f = bc_program_func(fidx);
Denys Vlasenko7d628012018-12-04 21:46:47 +01006372 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06006373exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006374 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006375 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006376}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006377#define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006378#endif // ENABLE_DC
6379
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006380static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006381{
Gavin Howard01055ba2018-11-03 11:00:21 -06006382 BcResult res;
6383 unsigned long val;
6384
6385 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6386 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006387 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006388 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006389 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006390 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006391 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006392
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006393 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006394 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006395 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006396}
6397
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006398static void bc_program_addFunc(char *name, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06006399{
Gavin Howard01055ba2018-11-03 11:00:21 -06006400 BcId entry, *entry_ptr;
6401 BcFunc f;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006402 int inserted;
Gavin Howard01055ba2018-11-03 11:00:21 -06006403
6404 entry.name = name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006405 entry.idx = G.prog.fns.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006406
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006407 inserted = bc_map_insert(&G.prog.fn_map, &entry, idx);
6408 if (!inserted) free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06006409
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006410 entry_ptr = bc_vec_item(&G.prog.fn_map, *idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006411 *idx = entry_ptr->idx;
6412
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006413 if (!inserted) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006414
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006415 BcFunc *func = bc_program_func(entry_ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006416
6417 // We need to reset these, so the function can be repopulated.
6418 func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01006419 bc_vec_pop_all(&func->autos);
6420 bc_vec_pop_all(&func->code);
6421 bc_vec_pop_all(&func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06006422 }
6423 else {
6424 bc_func_init(&f);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006425 bc_vec_push(&G.prog.fns, &f);
Gavin Howard01055ba2018-11-03 11:00:21 -06006426 }
6427}
6428
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006429static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006430{
Gavin Howard01055ba2018-11-03 11:00:21 -06006431 BcResult r, *ptr;
6432 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006433 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006434 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006435 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006436
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006437 while (ip->idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006438 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06006439 char inst = code[(ip->idx)++];
6440
Denys Vlasenko99b37622018-12-15 20:06:59 +01006441 dbg_exec("inst:%d", inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006442 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006443#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006444 case BC_INST_JUMP_ZERO: {
6445 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006446 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006447 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006448 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006449 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006450 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006451 if (!zero) {
6452 bc_program_index(code, &ip->idx);
6453 break;
6454 }
6455 // else: fall through
6456 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006457 case BC_INST_JUMP: {
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006458 size_t idx = bc_program_index(code, &ip->idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006459 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006460 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006461 ip->idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006462 break;
6463 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006464 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006465 dbg_exec("BC_INST_CALL:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006466 s = zbc_program_call(code, &ip->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006467 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006468 case BC_INST_INC_PRE:
6469 case BC_INST_DEC_PRE:
6470 case BC_INST_INC_POST:
6471 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006472 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006473 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006474 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006475 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006476 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006477 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006478 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006479 case BC_INST_RET:
6480 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006481 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006482 s = zbc_program_return(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006483 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006484 case BC_INST_BOOL_OR:
6485 case BC_INST_BOOL_AND:
6486#endif // ENABLE_BC
6487 case BC_INST_REL_EQ:
6488 case BC_INST_REL_LE:
6489 case BC_INST_REL_GE:
6490 case BC_INST_REL_NE:
6491 case BC_INST_REL_LT:
6492 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006493 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006494 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006495 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006496 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006497 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006498 s = zbc_program_read();
Gavin Howard01055ba2018-11-03 11:00:21 -06006499 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006500 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006501 dbg_exec("BC_INST_VAR:");
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006502 s = zbc_program_pushVar(code, &ip->idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006503 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006504 case BC_INST_ARRAY_ELEM:
6505 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006506 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006507 s = zbc_program_pushArray(code, &ip->idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006508 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006509 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006510 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006511 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006512 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006513 case BC_INST_IBASE:
6514 case BC_INST_SCALE:
6515 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006516 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006517 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006518 case BC_INST_SCALE_FUNC:
6519 case BC_INST_LENGTH:
6520 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006521 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006522 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006523 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006524 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006525 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006526 r.t = BC_RESULT_CONSTANT;
6527 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006528 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006529 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006530 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006531 dbg_exec("BC_INST_POP:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006532 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006533 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006534 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006535 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006536 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006537 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006538 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006539 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006540 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006541 case BC_INST_PRINT:
6542 case BC_INST_PRINT_POP:
6543 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006544 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006545 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006546 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006547 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006548 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006549 r.t = BC_RESULT_STR;
6550 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006551 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006552 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006553 case BC_INST_POWER:
6554 case BC_INST_MULTIPLY:
6555 case BC_INST_DIVIDE:
6556 case BC_INST_MODULUS:
6557 case BC_INST_PLUS:
6558 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006559 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006560 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006561 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006562 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006563 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006564 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006565 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006566 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006567 if (!bc_num_cmp(num, &G.prog.zero))
6568 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006569 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006570 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006571 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006572 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006573 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006574 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006575 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006576#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006577 case BC_INST_ASSIGN_POWER:
6578 case BC_INST_ASSIGN_MULTIPLY:
6579 case BC_INST_ASSIGN_DIVIDE:
6580 case BC_INST_ASSIGN_MODULUS:
6581 case BC_INST_ASSIGN_PLUS:
6582 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006583#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006584 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006585 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006586 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006587 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006588#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006589 case BC_INST_MODEXP:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006590 s = zbc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006591 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006592 case BC_INST_DIVMOD:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006593 s = zbc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006594 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006595 case BC_INST_EXECUTE:
6596 case BC_INST_EXEC_COND:
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006597 s = zbc_program_execStr(code, &ip->idx, inst == BC_INST_EXEC_COND);
Gavin Howard01055ba2018-11-03 11:00:21 -06006598 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006599 case BC_INST_PRINT_STACK: {
6600 size_t idx;
6601 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006602 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006603 if (s) break;
6604 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006605 break;
6606 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006607 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006608 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006609 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006610 case BC_INST_STACK_LEN:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006611 bc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006612 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006613 case BC_INST_DUPLICATE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006614 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006615 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006616 ptr = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006617 bc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006618 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006619 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006620 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006621 BcResult *ptr2;
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006622 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006623 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006624 ptr = bc_vec_item_rev(&G.prog.results, 0);
6625 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006626 memcpy(&r, ptr, sizeof(BcResult));
6627 memcpy(ptr, ptr2, sizeof(BcResult));
6628 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006629 break;
6630 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006631 case BC_INST_ASCIIFY:
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006632 s = zbc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006633 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006634 case BC_INST_PRINT_STREAM:
Denys Vlasenko29301232018-12-11 15:29:32 +01006635 s = zbc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006636 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006637 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006638 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006639 bool copy = inst == BC_INST_LOAD;
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006640 s = zbc_program_pushVar(code, &ip->idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006641 break;
6642 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006643 case BC_INST_PUSH_TO_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006644 char *name = bc_program_name(code, &ip->idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006645 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006646 free(name);
6647 break;
6648 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006649 case BC_INST_QUIT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006650 dbg_exec("BC_INST_NEG:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006651 if (G.prog.stack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006652 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01006653 bc_vec_npop(&G.prog.stack, 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006654 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006655 case BC_INST_NQUIT:
Denys Vlasenko29301232018-12-11 15:29:32 +01006656 s = zbc_program_nquit();
Gavin Howard01055ba2018-11-03 11:00:21 -06006657 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006658#endif // ENABLE_DC
6659 }
6660
Denys Vlasenkod38af482018-12-04 19:11:02 +01006661 if (s || G_interrupt) {
6662 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006663 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006664 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006665
Denys Vlasenkoc5774a32018-12-17 01:22:53 +01006666 fflush_and_check();
6667
Gavin Howard01055ba2018-11-03 11:00:21 -06006668 // If the stack has changed, pointers may be invalid.
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006669 ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006670 func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006671 code = func->code.v;
6672 }
6673
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006674 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006675}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006676#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006677
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006678static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006679{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006680 char *lenv;
6681 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006682
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006683 lenv = getenv(var);
6684 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006685 if (!lenv) return len;
6686
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006687 len = bb_strtou(lenv, NULL, 10) - 1;
6688 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006689 len = BC_NUM_PRINT_WIDTH;
6690
6691 return len;
6692}
6693
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006694static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006695{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006696 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006697
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006698 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6699 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006700 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006701
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006702 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006703 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoec603182018-12-17 10:34:02 +01006704 s = zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006705 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006706 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006707 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006708 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006709 break;
6710 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006711 }
6712
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006713 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006714 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006715}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006716#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006717
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006718static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
Gavin Howard01055ba2018-11-03 11:00:21 -06006719{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006720 // So far bc/dc have no way to include a file from another file,
6721 // therefore we know G.prog.file == NULL on entry
6722 //const char *sv_file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006723 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006724
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006725 G.prog.file = filename;
6726 G.input_fp = fp;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006727 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06006728
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006729 do {
6730 s = zbc_vm_process("");
6731 // We do not stop looping on errors here if reading stdin.
6732 // Example: start interactive bc and enter "return".
6733 // It should say "'return' not in a function"
6734 // but should not exit.
6735 } while (G.input_fp == stdin);
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006736 G.prog.file = NULL;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006737 RETURN_STATUS(s);
6738}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006739#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006740
6741static BC_STATUS zbc_vm_file(const char *file)
6742{
6743 BcStatus s;
6744 FILE *fp;
6745
6746 fp = xfopen_for_read(file);
6747 s = zbc_vm_execute_FILE(fp, file);
6748 fclose(fp);
6749
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006750 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006751}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006752#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006753
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006754#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01006755static void bc_vm_info(void)
6756{
6757 printf("%s "BB_VER"\n"
6758 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
6759 , applet_name);
6760}
6761
6762static void bc_args(char **argv)
6763{
6764 unsigned opts;
6765 int i;
6766
6767 GETOPT_RESET();
6768#if ENABLE_FEATURE_BC_LONG_OPTIONS
6769 opts = option_mask32 |= getopt32long(argv, "wvsqli",
6770 "warn\0" No_argument "w"
6771 "version\0" No_argument "v"
6772 "standard\0" No_argument "s"
6773 "quiet\0" No_argument "q"
6774 "mathlib\0" No_argument "l"
6775 "interactive\0" No_argument "i"
6776 );
6777#else
6778 opts = option_mask32 |= getopt32(argv, "wvsqli");
6779#endif
6780 if (getenv("POSIXLY_CORRECT"))
6781 option_mask32 |= BC_FLAG_S;
6782
6783 if (opts & BC_FLAG_V) {
6784 bc_vm_info();
6785 exit(0);
6786 }
6787
6788 for (i = optind; argv[i]; ++i)
6789 bc_vec_push(&G.files, argv + i);
6790}
6791
6792static void bc_vm_envArgs(void)
6793{
6794 BcVec v;
6795 char *buf;
6796 char *env_args = getenv("BC_ENV_ARGS");
6797
6798 if (!env_args) return;
6799
6800 G.env_args = xstrdup(env_args);
6801 buf = G.env_args;
6802
6803 bc_vec_init(&v, sizeof(char *), NULL);
6804
6805 while (*(buf = skip_whitespace(buf)) != '\0') {
6806 bc_vec_push(&v, &buf);
6807 buf = skip_non_whitespace(buf);
6808 if (!*buf)
6809 break;
6810 *buf++ = '\0';
6811 }
6812
6813 // NULL terminate, and pass argv[] so that first arg is argv[1]
6814 if (sizeof(int) == sizeof(char*)) {
6815 bc_vec_push(&v, &const_int_0);
6816 } else {
6817 static char *const nullptr = NULL;
6818 bc_vec_push(&v, &nullptr);
6819 }
6820 bc_args(((char **)v.v) - 1);
6821
6822 bc_vec_free(&v);
6823}
6824
6825static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006826 "scale=20"
6827"\n" "define e(x){"
6828"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006829////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
6830//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
6831//e(-.998896): GNU:.36828580434569428695
6832// above code:.36828580434569428696
6833// actual value:.3682858043456942869594...
6834// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006835"\n" "b=ibase"
6836"\n" "ibase=A"
6837"\n" "if(x<0){"
6838"\n" "n=1"
6839"\n" "x=-x"
6840"\n" "}"
6841"\n" "s=scale"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006842"\n" "r=6+s+.44*x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006843"\n" "scale=scale(x)+1"
6844"\n" "while(x>1){"
6845"\n" "d+=1"
6846"\n" "x/=2"
6847"\n" "scale+=1"
6848"\n" "}"
6849"\n" "scale=r"
6850"\n" "r=x+1"
6851"\n" "p=x"
6852"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006853"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006854"\n" "p*=x"
6855"\n" "f*=i"
6856"\n" "v=p/f"
6857"\n" "r+=v"
6858"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006859"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006860"\n" "scale=s"
6861"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006862"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006863"\n" "return(r/1)"
6864"\n" "}"
6865"\n" "define l(x){"
6866"\n" "auto b,s,r,p,a,q,i,v"
6867"\n" "b=ibase"
6868"\n" "ibase=A"
6869"\n" "if(x<=0){"
6870"\n" "r=(1-10^scale)/1"
6871"\n" "ibase=b"
6872"\n" "return(r)"
6873"\n" "}"
6874"\n" "s=scale"
6875"\n" "scale+=6"
6876"\n" "p=2"
6877"\n" "while(x>=2){"
6878"\n" "p*=2"
6879"\n" "x=sqrt(x)"
6880"\n" "}"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006881"\n" "while(x<=.5){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006882"\n" "p*=2"
6883"\n" "x=sqrt(x)"
6884"\n" "}"
6885"\n" "r=a=(x-1)/(x+1)"
6886"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006887"\n" "v=1"
6888"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006889"\n" "a*=q"
6890"\n" "v=a/i"
6891"\n" "r+=v"
6892"\n" "}"
6893"\n" "r*=p"
6894"\n" "scale=s"
6895"\n" "ibase=b"
6896"\n" "return(r/1)"
6897"\n" "}"
6898"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01006899"\n" "auto b,s,r,a,q,i"
6900"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006901"\n" "b=ibase"
6902"\n" "ibase=A"
6903"\n" "s=scale"
6904"\n" "scale=1.1*s+2"
6905"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006906"\n" "scale=0"
6907"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006908"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006909"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006910"\n" "scale=s+2"
6911"\n" "r=a=x"
6912"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006913"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006914"\n" "a*=q/(i*(i-1))"
6915"\n" "r+=a"
6916"\n" "}"
6917"\n" "scale=s"
6918"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006919"\n" "return(r/1)"
6920"\n" "}"
6921"\n" "define c(x){"
6922"\n" "auto b,s"
6923"\n" "b=ibase"
6924"\n" "ibase=A"
6925"\n" "s=scale"
6926"\n" "scale*=1.2"
6927"\n" "x=s(2*a(1)+x)"
6928"\n" "scale=s"
6929"\n" "ibase=b"
6930"\n" "return(x/1)"
6931"\n" "}"
6932"\n" "define a(x){"
6933"\n" "auto b,s,r,n,a,m,t,f,i,u"
6934"\n" "b=ibase"
6935"\n" "ibase=A"
6936"\n" "n=1"
6937"\n" "if(x<0){"
6938"\n" "n=-1"
6939"\n" "x=-x"
6940"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006941"\n" "if(scale<65){"
6942"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
6943"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006944"\n" "}"
6945"\n" "s=scale"
6946"\n" "if(x>.2){"
6947"\n" "scale+=5"
6948"\n" "a=a(.2)"
6949"\n" "}"
6950"\n" "scale=s+3"
6951"\n" "while(x>.2){"
6952"\n" "m+=1"
6953"\n" "x=(x-.2)/(1+.2*x)"
6954"\n" "}"
6955"\n" "r=u=x"
6956"\n" "f=-x*x"
6957"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006958"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006959"\n" "u*=f"
6960"\n" "t=u/i"
6961"\n" "r+=t"
6962"\n" "}"
6963"\n" "scale=s"
6964"\n" "ibase=b"
6965"\n" "return((m*a+r)/n)"
6966"\n" "}"
6967"\n" "define j(n,x){"
6968"\n" "auto b,s,o,a,i,v,f"
6969"\n" "b=ibase"
6970"\n" "ibase=A"
6971"\n" "s=scale"
6972"\n" "scale=0"
6973"\n" "n/=1"
6974"\n" "if(n<0){"
6975"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006976"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006977"\n" "}"
6978"\n" "a=1"
6979"\n" "for(i=2;i<=n;++i)a*=i"
6980"\n" "scale=1.5*s"
6981"\n" "a=(x^n)/2^n/a"
6982"\n" "r=v=1"
6983"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01006984"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006985"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006986"\n" "v=v*f/i/(n+i)"
6987"\n" "r+=v"
6988"\n" "}"
6989"\n" "scale=s"
6990"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006991"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006992"\n" "return(a*r/1)"
6993"\n" "}"
6994};
6995#endif // ENABLE_BC
6996
Denys Vlasenko19f11072018-12-12 22:48:19 +01006997static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006998{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006999 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06007000 size_t i;
7001
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007002#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01007003 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007004 // We know that internal library is not buggy,
7005 // thus error checking is normally disabled.
7006# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01007007 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01007008 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01007009 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007010 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007011#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007012
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007013 s = BC_STATUS_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007014 for (i = 0; !s && i < G.files.len; ++i)
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007015 s = zbc_vm_file(*((char **) bc_vec_item(&G.files, i)));
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007016 if (ENABLE_FEATURE_CLEAN_UP && s && !G_ttyin) {
7017 // Debug config, non-interactive mode:
7018 // return all the way back to main.
7019 // Non-debug builds do not come here, they exit.
Denys Vlasenko19f11072018-12-12 22:48:19 +01007020 RETURN_STATUS(s);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01007021 }
Gavin Howard01055ba2018-11-03 11:00:21 -06007022
Denys Vlasenko91cde952018-12-10 20:56:08 +01007023 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007024 s = zbc_vm_execute_FILE(stdin, /*filename:*/ NULL);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007025
Denys Vlasenko19f11072018-12-12 22:48:19 +01007026 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007027}
Denys Vlasenkoec603182018-12-17 10:34:02 +01007028#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06007029
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007030#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007031static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007032{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007033 bc_num_free(&G.prog.ob);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007034# if ENABLE_DC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007035 bc_num_free(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007036# endif
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007037 bc_vec_free(&G.prog.fns);
7038 bc_vec_free(&G.prog.fn_map);
7039 bc_vec_free(&G.prog.vars);
7040 bc_vec_free(&G.prog.var_map);
7041 bc_vec_free(&G.prog.arrs);
7042 bc_vec_free(&G.prog.arr_map);
7043 bc_vec_free(&G.prog.strs);
7044 bc_vec_free(&G.prog.consts);
7045 bc_vec_free(&G.prog.results);
7046 bc_vec_free(&G.prog.stack);
7047 bc_num_free(&G.prog.last);
7048 bc_num_free(&G.prog.zero);
7049 bc_num_free(&G.prog.one);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007050 bc_vec_free(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007051}
7052
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007053static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007054{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007055 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007056 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007057 bc_parse_free(&G.prs);
7058 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06007059}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007060#endif
7061
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007062static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007063{
7064 size_t idx;
7065 BcInstPtr ip;
7066
Denys Vlasenko82269122018-12-14 16:30:56 +01007067 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007068 memset(&ip, 0, sizeof(BcInstPtr));
7069
Denys Vlasenko82269122018-12-14 16:30:56 +01007070 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007071 G.prog.ib_t = 10;
7072
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007073 bc_num_init_DEF_SIZE(&G.prog.ob);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007074 bc_num_ten(&G.prog.ob);
7075 G.prog.ob_t = 10;
7076
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007077#if ENABLE_DC
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007078 bc_num_init_DEF_SIZE(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007079 bc_num_ulong2num(&G.prog.strmb, UCHAR_MAX + 1);
7080#endif
7081
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007082 bc_num_init_DEF_SIZE(&G.prog.last);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007083 //bc_num_zero(&G.prog.last); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007084
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007085 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007086 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007087
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007088 bc_num_init_DEF_SIZE(&G.prog.one);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007089 bc_num_one(&G.prog.one);
7090
7091 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007092 bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007093
Denys Vlasenko1f67e932018-12-03 00:08:59 +01007094 bc_program_addFunc(xstrdup("(main)"), &idx);
7095 bc_program_addFunc(xstrdup("(read)"), &idx);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007096
7097 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007098 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007099
7100 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007101 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007102
7103 bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);
7104 bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);
7105 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
7106 bc_vec_init(&G.prog.stack, sizeof(BcInstPtr), NULL);
7107 bc_vec_push(&G.prog.stack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007108
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007109 bc_char_vec_init(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007110}
Gavin Howard01055ba2018-11-03 11:00:21 -06007111
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007112static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007113{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007114#if ENABLE_FEATURE_EDITING
7115 G.line_input_state = new_line_input_t(DO_HISTORY);
7116#endif
7117 G.prog.len = bc_vm_envLen(env_len);
7118
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007119 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007120 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007121 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007122 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007123
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007124//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7125//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007126 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007127#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007128 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007129 // With SA_RESTART, most system calls will restart
7130 // (IOW: they won't fail with EINTR).
7131 // In particular, this means ^C won't cause
7132 // stdout to get into "error state" if SIGINT hits
7133 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007134 //
7135 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007136 // will only be handled after [Enter] since read()
7137 // from stdin is not interrupted by ^C either,
7138 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007139 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007140 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7141
7142 // Without SA_RESTART, this exhibits a bug:
7143 // "while (1) print 1" and try ^C-ing it.
7144 // Intermittently, instead of returning to input line,
7145 // you'll get "output error: Interrupted system call"
7146 // and exit.
7147 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007148#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007149 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007150 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007151 return 0; // "not a tty"
7152}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007153
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007154static BcStatus bc_vm_run(void)
7155{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007156 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007157#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007158 if (G_exiting) // it was actually "halt" or "quit"
7159 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007160 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007161# if ENABLE_FEATURE_EDITING
7162 free_line_input_t(G.line_input_state);
7163# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007164 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007165#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007166 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007167 return st;
7168}
7169
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007170#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007171int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007172int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007173{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007174 int is_tty;
7175
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007176 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007177
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007178 is_tty = bc_vm_init("BC_LINE_LENGTH");
7179
7180 bc_args(argv);
7181
7182 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7183 bc_vm_info();
7184
7185 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007186}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007187#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007188
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007189#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007190int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007191int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007192{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007193 int noscript;
7194
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007195 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007196
7197 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7198 // 1 char wider than bc from the same package.
7199 // Both default width, and xC_LINE_LENGTH=N are wider:
7200 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007201 // |1234\ |
7202 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007203 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007204 // |123\ |
7205 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007206 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007207 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007208
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007209 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7210 noscript = BC_FLAG_I;
7211 for (;;) {
7212 int n = getopt(argc, argv, "e:f:x");
7213 if (n <= 0)
7214 break;
7215 switch (n) {
7216 case 'e':
7217 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007218 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007219 if (n) return n;
7220 break;
7221 case 'f':
7222 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007223 n = zbc_vm_file(optarg);
7224 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007225 break;
7226 case 'x':
7227 option_mask32 |= DC_FLAG_X;
7228 break;
7229 default:
7230 bb_show_usage();
7231 }
7232 }
7233 argv += optind;
7234
7235 while (*argv) {
7236 noscript = 0;
7237 bc_vec_push(&G.files, argv++);
7238 }
7239
7240 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7241
7242 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007243}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007244#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007245
7246#endif // not DC_SMALL