blob: 20ce497ddc10d07036042c98f3c11c6220698293 [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_MIN_BASE ((unsigned long) 2)
232#define BC_NUM_MAX_IBASE ((unsigned long) 16)
233// larger value might speed up BIGNUM calculations a bit:
234#define BC_NUM_DEF_SIZE (16)
235#define BC_NUM_PRINT_WIDTH (69)
Gavin Howard01055ba2018-11-03 11:00:21 -0600236
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100237#define BC_NUM_KARATSUBA_LEN (32)
Gavin Howard01055ba2018-11-03 11:00:21 -0600238
Gavin Howard01055ba2018-11-03 11:00:21 -0600239typedef enum BcInst {
240
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100241#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600242 BC_INST_INC_PRE,
243 BC_INST_DEC_PRE,
244 BC_INST_INC_POST,
245 BC_INST_DEC_POST,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100246#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600247
248 BC_INST_NEG,
249
250 BC_INST_POWER,
251 BC_INST_MULTIPLY,
252 BC_INST_DIVIDE,
253 BC_INST_MODULUS,
254 BC_INST_PLUS,
255 BC_INST_MINUS,
256
257 BC_INST_REL_EQ,
258 BC_INST_REL_LE,
259 BC_INST_REL_GE,
260 BC_INST_REL_NE,
261 BC_INST_REL_LT,
262 BC_INST_REL_GT,
263
264 BC_INST_BOOL_NOT,
265 BC_INST_BOOL_OR,
266 BC_INST_BOOL_AND,
267
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100268#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600269 BC_INST_ASSIGN_POWER,
270 BC_INST_ASSIGN_MULTIPLY,
271 BC_INST_ASSIGN_DIVIDE,
272 BC_INST_ASSIGN_MODULUS,
273 BC_INST_ASSIGN_PLUS,
274 BC_INST_ASSIGN_MINUS,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100275#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600276 BC_INST_ASSIGN,
277
278 BC_INST_NUM,
279 BC_INST_VAR,
280 BC_INST_ARRAY_ELEM,
281 BC_INST_ARRAY,
282
283 BC_INST_SCALE_FUNC,
284 BC_INST_IBASE,
285 BC_INST_SCALE,
286 BC_INST_LAST,
287 BC_INST_LENGTH,
288 BC_INST_READ,
289 BC_INST_OBASE,
290 BC_INST_SQRT,
291
292 BC_INST_PRINT,
293 BC_INST_PRINT_POP,
294 BC_INST_STR,
295 BC_INST_PRINT_STR,
296
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100297#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600298 BC_INST_JUMP,
299 BC_INST_JUMP_ZERO,
300
301 BC_INST_CALL,
302
303 BC_INST_RET,
304 BC_INST_RET0,
305
306 BC_INST_HALT,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100307#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600308
309 BC_INST_POP,
310 BC_INST_POP_EXEC,
311
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100312#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600313 BC_INST_MODEXP,
314 BC_INST_DIVMOD,
315
316 BC_INST_EXECUTE,
317 BC_INST_EXEC_COND,
318
319 BC_INST_ASCIIFY,
320 BC_INST_PRINT_STREAM,
321
322 BC_INST_PRINT_STACK,
323 BC_INST_CLEAR_STACK,
324 BC_INST_STACK_LEN,
325 BC_INST_DUPLICATE,
326 BC_INST_SWAP,
327
328 BC_INST_LOAD,
329 BC_INST_PUSH_VAR,
330 BC_INST_PUSH_TO_VAR,
331
332 BC_INST_QUIT,
333 BC_INST_NQUIT,
334
335 BC_INST_INVALID = -1,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100336#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600337
338} BcInst;
339
340typedef struct BcId {
341 char *name;
342 size_t idx;
343} BcId;
344
345typedef struct BcFunc {
346 BcVec code;
347 BcVec labels;
348 size_t nparams;
349 BcVec autos;
350} BcFunc;
351
352typedef enum BcResultType {
353
354 BC_RESULT_TEMP,
355
356 BC_RESULT_VAR,
357 BC_RESULT_ARRAY_ELEM,
358 BC_RESULT_ARRAY,
359
360 BC_RESULT_STR,
361
362 BC_RESULT_IBASE,
363 BC_RESULT_SCALE,
364 BC_RESULT_LAST,
365
366 // These are between to calculate ibase, obase, and last from instructions.
367 BC_RESULT_CONSTANT,
368 BC_RESULT_ONE,
369
370 BC_RESULT_OBASE,
371
372} BcResultType;
373
374typedef union BcResultData {
375 BcNum n;
376 BcVec v;
377 BcId id;
378} BcResultData;
379
380typedef struct BcResult {
381 BcResultType t;
382 BcResultData d;
383} BcResult;
384
385typedef struct BcInstPtr {
386 size_t func;
387 size_t idx;
388 size_t len;
389} BcInstPtr;
390
Gavin Howard01055ba2018-11-03 11:00:21 -0600391// BC_LEX_NEG is not used in lexing; it is only for parsing.
392typedef enum BcLexType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600393 BC_LEX_EOF,
394 BC_LEX_INVALID,
395
396 BC_LEX_OP_INC,
397 BC_LEX_OP_DEC,
398
399 BC_LEX_NEG,
400
401 BC_LEX_OP_POWER,
402 BC_LEX_OP_MULTIPLY,
403 BC_LEX_OP_DIVIDE,
404 BC_LEX_OP_MODULUS,
405 BC_LEX_OP_PLUS,
406 BC_LEX_OP_MINUS,
407
408 BC_LEX_OP_REL_EQ,
409 BC_LEX_OP_REL_LE,
410 BC_LEX_OP_REL_GE,
411 BC_LEX_OP_REL_NE,
412 BC_LEX_OP_REL_LT,
413 BC_LEX_OP_REL_GT,
414
415 BC_LEX_OP_BOOL_NOT,
416 BC_LEX_OP_BOOL_OR,
417 BC_LEX_OP_BOOL_AND,
418
419 BC_LEX_OP_ASSIGN_POWER,
420 BC_LEX_OP_ASSIGN_MULTIPLY,
421 BC_LEX_OP_ASSIGN_DIVIDE,
422 BC_LEX_OP_ASSIGN_MODULUS,
423 BC_LEX_OP_ASSIGN_PLUS,
424 BC_LEX_OP_ASSIGN_MINUS,
425 BC_LEX_OP_ASSIGN,
426
427 BC_LEX_NLINE,
428 BC_LEX_WHITESPACE,
429
430 BC_LEX_LPAREN,
431 BC_LEX_RPAREN,
432
433 BC_LEX_LBRACKET,
434 BC_LEX_COMMA,
435 BC_LEX_RBRACKET,
436
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100437 BC_LEX_LBRACE, // '{' is 0x7B, '}' is 0x7D,
Gavin Howard01055ba2018-11-03 11:00:21 -0600438 BC_LEX_SCOLON,
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100439 BC_LEX_RBRACE, // should be LBRACE+2: code uses (c - '{' + BC_LEX_LBRACE)
Gavin Howard01055ba2018-11-03 11:00:21 -0600440
441 BC_LEX_STR,
442 BC_LEX_NAME,
443 BC_LEX_NUMBER,
444
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100445 BC_LEX_KEY_1st_keyword,
446 BC_LEX_KEY_AUTO = BC_LEX_KEY_1st_keyword,
Gavin Howard01055ba2018-11-03 11:00:21 -0600447 BC_LEX_KEY_BREAK,
448 BC_LEX_KEY_CONTINUE,
449 BC_LEX_KEY_DEFINE,
450 BC_LEX_KEY_ELSE,
451 BC_LEX_KEY_FOR,
452 BC_LEX_KEY_HALT,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100453 // code uses "type - BC_LEX_KEY_IBASE + BC_INST_IBASE" construct,
454 BC_LEX_KEY_IBASE, // relative order should match for: BC_INST_IBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600455 BC_LEX_KEY_IF,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100456 BC_LEX_KEY_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600457 BC_LEX_KEY_LENGTH,
458 BC_LEX_KEY_LIMITS,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100459 BC_LEX_KEY_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600460 BC_LEX_KEY_PRINT,
461 BC_LEX_KEY_QUIT,
462 BC_LEX_KEY_READ,
463 BC_LEX_KEY_RETURN,
464 BC_LEX_KEY_SCALE,
465 BC_LEX_KEY_SQRT,
466 BC_LEX_KEY_WHILE,
467
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100468#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600469 BC_LEX_EQ_NO_REG,
470 BC_LEX_OP_MODEXP,
471 BC_LEX_OP_DIVMOD,
472
473 BC_LEX_COLON,
474 BC_LEX_ELSE,
475 BC_LEX_EXECUTE,
476 BC_LEX_PRINT_STACK,
477 BC_LEX_CLEAR_STACK,
478 BC_LEX_STACK_LEVEL,
479 BC_LEX_DUPLICATE,
480 BC_LEX_SWAP,
481 BC_LEX_POP,
482
483 BC_LEX_ASCIIFY,
484 BC_LEX_PRINT_STREAM,
485
486 BC_LEX_STORE_IBASE,
487 BC_LEX_STORE_SCALE,
488 BC_LEX_LOAD,
489 BC_LEX_LOAD_POP,
490 BC_LEX_STORE_PUSH,
491 BC_LEX_STORE_OBASE,
492 BC_LEX_PRINT_POP,
493 BC_LEX_NQUIT,
494 BC_LEX_SCALE_FACTOR,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100495#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600496} BcLexType;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100497// must match order of BC_LEX_KEY_foo etc above
498#if ENABLE_BC
499struct BcLexKeyword {
500 char name8[8];
501};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100502#define BC_LEX_KW_ENTRY(a, b) \
503 { .name8 = a /*, .posix = b */ }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100504static const struct BcLexKeyword bc_lex_kws[20] = {
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100505 BC_LEX_KW_ENTRY("auto" , 1), // 0
506 BC_LEX_KW_ENTRY("break" , 1), // 1
507 BC_LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
508 BC_LEX_KW_ENTRY("define" , 1), // 3
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100509 BC_LEX_KW_ENTRY("else" , 0), // 4
510 BC_LEX_KW_ENTRY("for" , 1), // 5
511 BC_LEX_KW_ENTRY("halt" , 0), // 6
512 BC_LEX_KW_ENTRY("ibase" , 1), // 7
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100513 BC_LEX_KW_ENTRY("if" , 1), // 8
514 BC_LEX_KW_ENTRY("last" , 0), // 9
515 BC_LEX_KW_ENTRY("length" , 1), // 10
516 BC_LEX_KW_ENTRY("limits" , 0), // 11
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100517 BC_LEX_KW_ENTRY("obase" , 1), // 12
518 BC_LEX_KW_ENTRY("print" , 0), // 13
519 BC_LEX_KW_ENTRY("quit" , 1), // 14
520 BC_LEX_KW_ENTRY("read" , 0), // 15
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100521 BC_LEX_KW_ENTRY("return" , 1), // 16
522 BC_LEX_KW_ENTRY("scale" , 1), // 17
523 BC_LEX_KW_ENTRY("sqrt" , 1), // 18
524 BC_LEX_KW_ENTRY("while" , 1), // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100525};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100526#undef BC_LEX_KW_ENTRY
Denys Vlasenko59d4ce92018-12-17 10:42:31 +0100527#define STRING_if (bc_lex_kws[8].name8)
528#define STRING_else (bc_lex_kws[4].name8)
529#define STRING_while (bc_lex_kws[19].name8)
530#define STRING_for (bc_lex_kws[5].name8)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100531enum {
532 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100533 | (1 << 0) // 0
534 | (1 << 1) // 1
535 | (0 << 2) // 2
536 | (1 << 3) // 3
537 | (0 << 4) // 4
538 | (1 << 5) // 5
539 | (0 << 6) // 6
540 | (1 << 7) // 7
541 | (1 << 8) // 8
542 | (0 << 9) // 9
543 | (1 << 10) // 10
544 | (0 << 11) // 11
545 | (1 << 12) // 12
546 | (0 << 13) // 13
547 | (1 << 14) // 14
548 | (0 << 15) // 15
549 | (1 << 16) // 16
550 | (1 << 17) // 17
551 | (1 << 18) // 18
552 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100553};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100554#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100555
556// This is a bit array that corresponds to token types. An entry is
557// true if the token is valid in an expression, false otherwise.
558// Used to figure out when expr parsing should stop *without error message*
559// - 0 element indicates this condition. 1 means "this token is to be eaten
560// as part of the expression", token can them still be determined to be invalid
561// by later processing.
562enum {
563#define EXBITS(a,b,c,d,e,f,g,h) \
564 ((uint64_t)((a << 0)+(b << 1)+(c << 2)+(d << 3)+(e << 4)+(f << 5)+(g << 6)+(h << 7)))
565 BC_PARSE_EXPRS_BITS = 0
566 + (EXBITS(0,0,1,1,1,1,1,1) << (0*8)) // 0: eof inval ++ -- - ^ * /
567 + (EXBITS(1,1,1,1,1,1,1,1) << (1*8)) // 8: % + - == <= >= != <
568 + (EXBITS(1,1,1,1,1,1,1,1) << (2*8)) // 16: > ! || && ^= *= /= %=
569 + (EXBITS(1,1,1,0,0,1,1,0) << (3*8)) // 24: += -= = NL WS ( ) [
570 + (EXBITS(0,0,0,0,0,0,1,1) << (4*8)) // 32: , ] { ; } STR NAME NUM
571 + (EXBITS(0,0,0,0,0,0,0,1) << (5*8)) // 40: auto break cont define else for halt ibase
572 + (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?
573 + (EXBITS(0,1,1,0,0,0,0,0) << (7*8)) // 56: return scale sqrt while
574#undef EXBITS
575};
576static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
577{
578#if ULONG_MAX > 0xffffffff
579 // 64-bit version (will not work correctly for 32-bit longs!)
580 return BC_PARSE_EXPRS_BITS & (1UL << i);
581#else
582 // 32-bit version
583 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
584 if (i >= 32) {
585 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
586 i &= 31;
587 }
588 return m & (1UL << i);
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100589#endif
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100590}
591
592// This is an array of data for operators that correspond to
593// [BC_LEX_OP_INC...BC_LEX_OP_ASSIGN] token types.
594static const uint8_t bc_parse_ops[] = {
595#define OP(p,l) ((int)(l) * 0x10 + (p))
596 OP(0, false), OP( 0, false ), // inc dec
597 OP(1, false), // neg
598 OP(2, false), // pow
599 OP(3, true ), OP( 3, true ), OP( 3, true ), // mul div mod
600 OP(4, true ), OP( 4, true ), // + -
601 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
602 OP(1, false), // not
603 OP(7, true ), OP( 7, true ), // or and
604 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
605 OP(5, false), OP( 5, false ), // -= =
606#undef OP
607};
608#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
609#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
610#endif // ENABLE_BC
611
612#if ENABLE_DC
613static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
614int8_t
615dc_parse_insts[] = {
616 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
617 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
618 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
619 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
620 BC_INST_INVALID, BC_INST_INVALID,
621 BC_INST_BOOL_NOT, BC_INST_INVALID, BC_INST_INVALID,
622 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
623 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
624 BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GT, BC_INST_INVALID,
625 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
626 BC_INST_INVALID, BC_INST_INVALID,
627 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
628 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
629 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
630 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
631 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
632 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
633 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
634 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
635 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
636 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
637 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
638 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
639};
640#endif // ENABLE_DC
641
Gavin Howard01055ba2018-11-03 11:00:21 -0600642
Gavin Howard01055ba2018-11-03 11:00:21 -0600643typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600644 const char *buf;
645 size_t i;
646 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600647 size_t len;
648 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600649 struct {
650 BcLexType t;
651 BcLexType last;
652 BcVec v;
653 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600654} BcLex;
655
Denys Vlasenko0154d782018-12-14 23:32:51 +0100656#define BC_PARSE_STREND ((char) UCHAR_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -0600657
Denys Vlasenko0154d782018-12-14 23:32:51 +0100658#define BC_PARSE_REL (1 << 0)
659#define BC_PARSE_PRINT (1 << 1)
660#define BC_PARSE_NOCALL (1 << 2)
661#define BC_PARSE_NOREAD (1 << 3)
662#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600663
Gavin Howard01055ba2018-11-03 11:00:21 -0600664typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600665 BcLex l;
666
Gavin Howard01055ba2018-11-03 11:00:21 -0600667 BcVec exits;
668 BcVec conds;
669
670 BcVec ops;
671
Gavin Howard01055ba2018-11-03 11:00:21 -0600672 BcFunc *func;
673 size_t fidx;
674
Denys Vlasenkoe9519e42018-12-16 17:06:07 +0100675 size_t in_funcdef;
Gavin Howard01055ba2018-11-03 11:00:21 -0600676} BcParse;
677
Gavin Howard01055ba2018-11-03 11:00:21 -0600678typedef struct BcProgram {
679
680 size_t len;
681 size_t scale;
682
683 BcNum ib;
684 size_t ib_t;
685 BcNum ob;
686 size_t ob_t;
687
688 BcNum hexb;
689
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100690#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600691 BcNum strmb;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100692#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600693
694 BcVec results;
695 BcVec stack;
696
697 BcVec fns;
698 BcVec fn_map;
699
700 BcVec vars;
701 BcVec var_map;
702
703 BcVec arrs;
704 BcVec arr_map;
705
706 BcVec strs;
707 BcVec consts;
708
709 const char *file;
710
711 BcNum last;
712 BcNum zero;
713 BcNum one;
714
715 size_t nchars;
716
Gavin Howard01055ba2018-11-03 11:00:21 -0600717} BcProgram;
718
719#define BC_PROG_STACK(s, n) ((s)->len >= ((size_t) n))
720
721#define BC_PROG_MAIN (0)
722#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100723#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600724#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100725#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600726
727#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
728#define BC_PROG_NUM(r, n) \
729 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
730
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100731#define BC_FLAG_W (1 << 0)
732#define BC_FLAG_V (1 << 1)
733#define BC_FLAG_S (1 << 2)
734#define BC_FLAG_Q (1 << 3)
735#define BC_FLAG_L (1 << 4)
736#define BC_FLAG_I (1 << 5)
737#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600738
739#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
740#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
741
Denys Vlasenko64074a12018-12-07 15:50:14 +0100742#define BC_MAX_OBASE ((unsigned) 999)
743#define BC_MAX_DIM ((unsigned) INT_MAX)
744#define BC_MAX_SCALE ((unsigned) UINT_MAX)
745#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
746#define BC_MAX_NUM BC_MAX_STRING
747// Unused apart from "limits" message. Just show a "biggish number" there.
748//#define BC_MAX_NAME BC_MAX_STRING
749//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
750//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
751#define BC_MAX_NAME_STR "999999999"
752#define BC_MAX_EXP_STR "999999999"
753#define BC_MAX_VARS_STR "999999999"
754
755#define BC_MAX_OBASE_STR "999"
756
757#if INT_MAX == 2147483647
758# define BC_MAX_DIM_STR "2147483647"
759#elif INT_MAX == 9223372036854775807
760# define BC_MAX_DIM_STR "9223372036854775807"
761#else
762# error Strange INT_MAX
763#endif
764
765#if UINT_MAX == 4294967295
766# define BC_MAX_SCALE_STR "4294967295"
767# define BC_MAX_STRING_STR "4294967294"
768#elif UINT_MAX == 18446744073709551615
769# define BC_MAX_SCALE_STR "18446744073709551615"
770# define BC_MAX_STRING_STR "18446744073709551614"
771#else
772# error Strange UINT_MAX
773#endif
774#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600775
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100776struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100777 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100778 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100779 smallint in_read;
Gavin Howard01055ba2018-11-03 11:00:21 -0600780
781 BcParse prs;
782 BcProgram prog;
783
Denys Vlasenko5318f812018-12-05 17:48:01 +0100784 // For error messages. Can be set to current parsed line,
785 // or [TODO] to current executing line (can be before last parsed one)
786 unsigned err_line;
787
Gavin Howard01055ba2018-11-03 11:00:21 -0600788 BcVec files;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +0100789 BcVec input_buffer;
790 FILE *input_fp;
Gavin Howard01055ba2018-11-03 11:00:21 -0600791
792 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100793
794#if ENABLE_FEATURE_EDITING
795 line_input_t *line_input_state;
796#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100797} FIX_ALIASING;
798#define G (*ptr_to_globals)
799#define INIT_G() do { \
800 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
801} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100802#define FREE_G() do { \
803 FREE_PTR_TO_GLOBALS(); \
804} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100805#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
806#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100807#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100808#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100809# define G_interrupt bb_got_signal
810# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100811#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100812# define G_interrupt 0
813# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100814#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100815#if ENABLE_FEATURE_CLEAN_UP
816# define G_exiting G.exiting
817#else
818# define G_exiting 0
819#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100820#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100821#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100822
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100823// In configurations where errors abort instead of propagating error
824// return code up the call chain, functions returning BC_STATUS
825// actually don't return anything, they always succeed and return "void".
826// A macro wrapper is provided, which makes this statement work:
827// s = zbc_func(...)
828// and makes it visible to the compiler that s is always zero,
829// allowing compiler to optimize dead code after the statement.
830//
831// To make code more readable, each such function has a "z"
832// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
833//
834#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100835# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100836# define ERRORFUNC /*nothing*/
Denys Vlasenkoec603182018-12-17 10:34:02 +0100837# define IF_ERROR_RETURN_POSSIBLE(a) a
838# define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100839# define RETURN_STATUS(v) return (v)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100840# define COMMA_SUCCESS /*nothing*/
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100841#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100842# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100843# define ERRORFUNC NORETURN
Denys Vlasenkoec603182018-12-17 10:34:02 +0100844# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
845# define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100846# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100847# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100848#endif
849
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100850#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
851#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
852#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
853//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
854static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
855{
856 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
857}
858//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
859static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
860{
861 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
862}
863
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100864typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
865
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100866typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100867
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100868static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
869 BcNumBinaryOp op, size_t req);
870static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
871static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
872static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
873static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
874static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
875static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
876
877static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
878{
879 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
880 (void) scale;
881 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
882}
883
884static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
885{
886 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
887 (void) scale;
888 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
889}
890
891static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
892{
893 size_t req = BC_NUM_MREQ(a, b, scale);
894 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
895}
896
897static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
898{
899 size_t req = BC_NUM_MREQ(a, b, scale);
900 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
901}
902
903static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
904{
905 size_t req = BC_NUM_MREQ(a, b, scale);
906 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
907}
908
909static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
910{
911 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
912}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100913
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100914static const BcNumBinaryOp zbc_program_ops[] = {
915 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 -0600916};
Denys Vlasenkoec603182018-12-17 10:34:02 +0100917#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
918#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
919#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
920#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
921#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
922#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -0600923
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100924static void fflush_and_check(void)
925{
926 fflush_all();
927 if (ferror(stdout) || ferror(stderr))
928 bb_perror_msg_and_die("output error");
929}
930
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100931#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100932#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100933do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100934 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100935 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100936 return BC_STATUS_FAILURE; \
937} while (0)
938#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100939#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100940#endif
941
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100942static void quit(void) NORETURN;
943static void quit(void)
944{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100945 if (ferror(stdin))
946 bb_perror_msg_and_die("input error");
947 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100948 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100949 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100950}
951
Denys Vlasenko5318f812018-12-05 17:48:01 +0100952static void bc_verror_msg(const char *fmt, va_list p)
953{
Denys Vlasenko82269122018-12-14 16:30:56 +0100954 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +0100955 if (G.prog.file) {
956 sv = applet_name;
957 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
958 }
959 bb_verror_msg(fmt, p, NULL);
960 if (G.prog.file) {
961 free((char*)applet_name);
962 applet_name = sv;
963 }
964}
965
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100966static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100967{
968 va_list p;
969
970 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100971 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100972 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +0100973
Denys Vlasenkoec603182018-12-17 10:34:02 +0100974 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
975 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
976 exit(1);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100977}
978
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100979#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100980static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100981{
982 va_list p;
983
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100984 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100985 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100986 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100987
988 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100989 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100990 va_end(p);
991
992 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100993 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100994 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenkoec603182018-12-17 10:34:02 +0100995 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
996 return BC_STATUS_FAILURE;
997 exit(1);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100998}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100999#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001000
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001001// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
1002// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001003// function must not have caller-cleaned parameters on stack.
1004// Unfortunately, vararg function API does exactly that on most arches.
1005// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001006static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001007{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001008 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001009}
1010static ERRORFUNC int bc_error_bad_character(char c)
1011{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001012 if (!c)
1013 IF_ERROR_RETURN_POSSIBLE(return) bc_error("NUL character");
Denys Vlasenkoec603182018-12-17 10:34:02 +01001014 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001015}
1016static ERRORFUNC int bc_error_bad_expression(void)
1017{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001018 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001019}
1020static ERRORFUNC int bc_error_bad_token(void)
1021{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001022 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001023}
1024static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1025{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001026 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001027}
1028static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1029{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001030 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001031}
1032static ERRORFUNC int bc_error_nested_read_call(void)
1033{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001034 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001035}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001036#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001037static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001038{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001039 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001040}
Denys Vlasenko00646792018-12-05 18:12:27 +01001041static int bc_POSIX_does_not_allow(const char *msg)
1042{
1043 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1044}
1045static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1046{
1047 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1048}
1049static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1050{
1051 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1052}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001053#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001054
Gavin Howard01055ba2018-11-03 11:00:21 -06001055static void bc_vec_grow(BcVec *v, size_t n)
1056{
1057 size_t cap = v->cap * 2;
1058 while (cap < v->len + n) cap *= 2;
1059 v->v = xrealloc(v->v, v->size * cap);
1060 v->cap = cap;
1061}
1062
1063static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1064{
1065 v->size = esize;
1066 v->cap = BC_VEC_START_CAP;
1067 v->len = 0;
1068 v->dtor = dtor;
1069 v->v = xmalloc(esize * BC_VEC_START_CAP);
1070}
1071
Denys Vlasenko7d628012018-12-04 21:46:47 +01001072static void bc_char_vec_init(BcVec *v)
1073{
1074 bc_vec_init(v, sizeof(char), NULL);
1075}
1076
Gavin Howard01055ba2018-11-03 11:00:21 -06001077static void bc_vec_expand(BcVec *v, size_t req)
1078{
1079 if (v->cap < req) {
1080 v->v = xrealloc(v->v, v->size * req);
1081 v->cap = req;
1082 }
1083}
1084
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001085static void bc_vec_pop(BcVec *v)
1086{
1087 v->len--;
1088 if (v->dtor)
1089 v->dtor(v->v + (v->size * v->len));
1090}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001091
Gavin Howard01055ba2018-11-03 11:00:21 -06001092static void bc_vec_npop(BcVec *v, size_t n)
1093{
1094 if (!v->dtor)
1095 v->len -= n;
1096 else {
1097 size_t len = v->len - n;
1098 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1099 }
1100}
1101
Denys Vlasenko7d628012018-12-04 21:46:47 +01001102static void bc_vec_pop_all(BcVec *v)
1103{
1104 bc_vec_npop(v, v->len);
1105}
1106
Gavin Howard01055ba2018-11-03 11:00:21 -06001107static void bc_vec_push(BcVec *v, const void *data)
1108{
1109 if (v->len + 1 > v->cap) bc_vec_grow(v, 1);
1110 memmove(v->v + (v->size * v->len), data, v->size);
1111 v->len += 1;
1112}
1113
1114static void bc_vec_pushByte(BcVec *v, char data)
1115{
1116 bc_vec_push(v, &data);
1117}
1118
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001119static void bc_vec_pushZeroByte(BcVec *v)
1120{
1121 //bc_vec_pushByte(v, '\0');
1122 // better:
1123 bc_vec_push(v, &const_int_0);
1124}
1125
Gavin Howard01055ba2018-11-03 11:00:21 -06001126static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1127{
1128 if (idx == v->len)
1129 bc_vec_push(v, data);
1130 else {
1131
1132 char *ptr;
1133
1134 if (v->len == v->cap) bc_vec_grow(v, 1);
1135
1136 ptr = v->v + v->size * idx;
1137
1138 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1139 memmove(ptr, data, v->size);
1140 }
1141}
1142
1143static void bc_vec_string(BcVec *v, size_t len, const char *str)
1144{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001145 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001146 bc_vec_expand(v, len + 1);
1147 memcpy(v->v, str, len);
1148 v->len = len;
1149
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001150 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001151}
1152
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001153#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001154static void bc_vec_concat(BcVec *v, const char *str)
1155{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001156 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001157
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001158 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001159
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001160 slen = strlen(str);
1161 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001162
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001163 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001164 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001165
1166 v->len = len;
1167}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001168#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001169
1170static void *bc_vec_item(const BcVec *v, size_t idx)
1171{
1172 return v->v + v->size * idx;
1173}
1174
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001175static char** bc_program_str(size_t idx)
1176{
1177 return bc_vec_item(&G.prog.strs, idx);
1178}
1179
1180static BcFunc* bc_program_func(size_t idx)
1181{
1182 return bc_vec_item(&G.prog.fns, idx);
1183}
1184
Gavin Howard01055ba2018-11-03 11:00:21 -06001185static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1186{
1187 return v->v + v->size * (v->len - idx - 1);
1188}
1189
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001190static void *bc_vec_top(const BcVec *v)
1191{
1192 return v->v + v->size * (v->len - 1);
1193}
1194
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001195static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001196{
1197 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001198 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001199 free(v->v);
1200}
1201
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001202static int bc_id_cmp(const void *e1, const void *e2)
1203{
1204 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1205}
1206
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001207static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001208{
1209 free(((BcId *) id)->name);
1210}
1211
Gavin Howard01055ba2018-11-03 11:00:21 -06001212static size_t bc_map_find(const BcVec *v, const void *ptr)
1213{
1214 size_t low = 0, high = v->len;
1215
1216 while (low < high) {
1217
1218 size_t mid = (low + high) / 2;
1219 BcId *id = bc_vec_item(v, mid);
1220 int result = bc_id_cmp(ptr, id);
1221
1222 if (result == 0)
1223 return mid;
1224 else if (result < 0)
1225 high = mid;
1226 else
1227 low = mid + 1;
1228 }
1229
1230 return low;
1231}
1232
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001233static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001234{
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001235 size_t n = *i = bc_map_find(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001236
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001237 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001238 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001239 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1240 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001241 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001242 bc_vec_pushAt(v, ptr, n);
1243 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001244}
1245
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001246#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06001247static size_t bc_map_index(const BcVec *v, const void *ptr)
1248{
1249 size_t i = bc_map_find(v, ptr);
1250 if (i >= v->len) return BC_VEC_INVALID_IDX;
1251 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1252}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001253#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001254
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001255static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001256{
1257 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1258 || c > 0x7e
1259 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001260 bc_error_fmt("illegal character 0x%02x", c);
1261 return 1;
1262 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001263 return 0;
1264}
1265
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001266// Note: it _appends_ data from fp to vec.
1267static void bc_read_line(BcVec *vec, FILE *fp)
Gavin Howard01055ba2018-11-03 11:00:21 -06001268{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001269 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001270 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001271
Gavin Howard01055ba2018-11-03 11:00:21 -06001272#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001273 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001274 intr:
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001275 if (fp != stdin) {
1276 // ^C while running a script (bc SCRIPT): die.
1277 // We do not return to interactive prompt:
1278 // user might be running us from a shell,
1279 // and SCRIPT might be intended to terminate
1280 // (e.g. contain a "halt" stmt).
1281 // ^C dropping user into a bc prompt instead of
1282 // the shell would be unexpected.
1283 xfunc_die();
1284 }
1285 // ^C while interactive input
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001286 G_interrupt = 0;
1287 // GNU bc says "interrupted execution."
1288 // GNU dc says "Interrupt!"
1289 fputs("\ninterrupted execution\n", stderr);
1290 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001291
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001292# if ENABLE_FEATURE_EDITING
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001293 if (G_ttyin && fp == stdin) {
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001294 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001295# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001296 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1297 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1298 if (n == 0) // ^C
1299 goto intr;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001300 bc_vec_pushZeroByte(vec); // ^D or EOF (or error)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001301 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001302 }
1303 i = 0;
1304 for (;;) {
1305 char c = line_buf[i++];
1306 if (!c) break;
1307 if (bad_input_byte(c)) goto again;
1308 }
1309 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001310# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001311 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001312# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001313#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001314 {
1315 int c;
1316 bool bad_chars = 0;
1317 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001318
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001319 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001320#if ENABLE_FEATURE_BC_SIGNALS
1321 if (G_interrupt) {
1322 // ^C was pressed: ignore entire line, get another one
1323 vec->len = len;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001324 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001325 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001326#endif
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001327 do c = fgetc(fp); while (c == '\0');
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001328 if (c == EOF) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001329 if (ferror(fp))
1330 bb_perror_msg_and_die("input error");
1331 // Note: EOF does not append '\n'
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001332 break;
1333 }
1334 bad_chars |= bad_input_byte(c);
1335 bc_vec_pushByte(vec, (char)c);
1336 } while (c != '\n');
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001337
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001338 if (bad_chars) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001339 // Bad chars on this line
1340 if (!G.prog.file) { // stdin
1341 // ignore entire line, get another one
1342 vec->len = len;
1343 goto again;
1344 }
1345 bb_perror_msg_and_die("file '%s' is not text", G.prog.file);
Denys Vlasenkoed849352018-12-06 10:26:13 +01001346 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001347 bc_vec_pushZeroByte(vec);
1348 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001349}
1350
Gavin Howard01055ba2018-11-03 11:00:21 -06001351static void bc_num_setToZero(BcNum *n, size_t scale)
1352{
1353 n->len = 0;
1354 n->neg = false;
1355 n->rdx = scale;
1356}
1357
1358static void bc_num_zero(BcNum *n)
1359{
1360 bc_num_setToZero(n, 0);
1361}
1362
1363static void bc_num_one(BcNum *n)
1364{
1365 bc_num_setToZero(n, 0);
1366 n->len = 1;
1367 n->num[0] = 1;
1368}
1369
1370static void bc_num_ten(BcNum *n)
1371{
1372 bc_num_setToZero(n, 0);
1373 n->len = 2;
1374 n->num[0] = 0;
1375 n->num[1] = 1;
1376}
1377
Denys Vlasenko3129f702018-12-09 12:04:44 +01001378// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001379static void bc_num_init(BcNum *n, size_t req)
1380{
1381 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001382 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001383 n->num = xmalloc(req);
1384 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001385 n->rdx = 0;
1386 n->len = 0;
1387 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001388}
1389
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001390static void bc_num_init_DEF_SIZE(BcNum *n)
1391{
1392 bc_num_init(n, BC_NUM_DEF_SIZE);
1393}
1394
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001395static void bc_num_expand(BcNum *n, size_t req)
1396{
1397 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1398 if (req > n->cap) {
1399 n->num = xrealloc(n->num, req);
1400 n->cap = req;
1401 }
1402}
1403
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001404static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001405{
1406 free(((BcNum *) num)->num);
1407}
1408
1409static void bc_num_copy(BcNum *d, BcNum *s)
1410{
1411 if (d != s) {
1412 bc_num_expand(d, s->cap);
1413 d->len = s->len;
1414 d->neg = s->neg;
1415 d->rdx = s->rdx;
1416 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1417 }
1418}
1419
Denys Vlasenko29301232018-12-11 15:29:32 +01001420static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001421{
1422 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001423 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001424
Denys Vlasenko29301232018-12-11 15:29:32 +01001425 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001426
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001427 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001428
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001429 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001430
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001431 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001432 pow *= 10;
1433
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001434 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001435 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001436 prev = result;
1437 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001438 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001439 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001440
Denys Vlasenko29301232018-12-11 15:29:32 +01001441 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001442}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001443#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001444
1445static void bc_num_ulong2num(BcNum *n, unsigned long val)
1446{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001447 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001448
1449 bc_num_zero(n);
1450
1451 if (val == 0) return;
1452
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001453 if (ULONG_MAX == 0xffffffffUL)
1454 bc_num_expand(n, 10); // 10 digits: 4294967295
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001455 if (ULONG_MAX == 0xffffffffffffffffULL)
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001456 bc_num_expand(n, 20); // 20 digits: 18446744073709551615
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001457 BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001458
1459 ptr = n->num;
1460 for (;;) {
1461 n->len++;
1462 *ptr++ = val % 10;
1463 val /= 10;
1464 if (val == 0) break;
1465 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001466}
1467
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001468static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001469 size_t len)
1470{
1471 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001472 for (i = 0; i < len; ++i) {
1473 for (a[i] -= b[i], j = 0; a[i + j] < 0;) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001474 a[i + j++] += 10;
1475 a[i + j] -= 1;
1476 }
1477 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001478}
1479
1480static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1481{
1482 size_t i;
1483 int c = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001484 for (i = len - 1; i < len && !(c = a[i] - b[i]); --i);
Gavin Howard01055ba2018-11-03 11:00:21 -06001485 return BC_NUM_NEG(i + 1, c < 0);
1486}
1487
1488static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1489{
1490 size_t i, min, a_int, b_int, diff;
1491 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001492 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001493 ssize_t cmp;
1494
1495 if (a == b) return 0;
1496 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1497 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001498
1499 if (a->neg != b->neg) // signs of a and b differ
1500 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1501 return (int)b->neg - (int)a->neg;
1502 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001503
1504 a_int = BC_NUM_INT(a);
1505 b_int = BC_NUM_INT(b);
1506 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001507
1508 if (a_int != 0) return (ssize_t) a_int;
1509
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001510 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001511 if (a_max) {
1512 min = b->rdx;
1513 diff = a->rdx - b->rdx;
1514 max_num = a->num + diff;
1515 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001516 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1517 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001518 min = a->rdx;
1519 diff = b->rdx - a->rdx;
1520 max_num = b->num + diff;
1521 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001522 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001523 }
1524
1525 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001526 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001527
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001528 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001529 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001530 }
1531
1532 return 0;
1533}
1534
1535static void bc_num_truncate(BcNum *n, size_t places)
1536{
1537 if (places == 0) return;
1538
1539 n->rdx -= places;
1540
1541 if (n->len != 0) {
1542 n->len -= places;
1543 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1544 }
1545}
1546
1547static void bc_num_extend(BcNum *n, size_t places)
1548{
1549 size_t len = n->len + places;
1550
1551 if (places != 0) {
1552
1553 if (n->cap < len) bc_num_expand(n, len);
1554
1555 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1556 memset(n->num, 0, sizeof(BcDig) * places);
1557
1558 n->len += places;
1559 n->rdx += places;
1560 }
1561}
1562
1563static void bc_num_clean(BcNum *n)
1564{
1565 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1566 if (n->len == 0)
1567 n->neg = false;
1568 else if (n->len < n->rdx)
1569 n->len = n->rdx;
1570}
1571
1572static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1573{
1574 if (n->rdx < scale)
1575 bc_num_extend(n, scale - n->rdx);
1576 else
1577 bc_num_truncate(n, n->rdx - scale);
1578
1579 bc_num_clean(n);
1580 if (n->len != 0) n->neg = !neg1 != !neg2;
1581}
1582
1583static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1584 BcNum *restrict b)
1585{
1586 if (idx < n->len) {
1587
1588 b->len = n->len - idx;
1589 a->len = idx;
1590 a->rdx = b->rdx = 0;
1591
1592 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1593 memcpy(a->num, n->num, idx * sizeof(BcDig));
1594 }
1595 else {
1596 bc_num_zero(b);
1597 bc_num_copy(a, n);
1598 }
1599
1600 bc_num_clean(a);
1601 bc_num_clean(b);
1602}
1603
Denys Vlasenko29301232018-12-11 15:29:32 +01001604static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001605{
Denys Vlasenko29301232018-12-11 15:29:32 +01001606 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001607
1608 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1609 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1610 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001611 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001612 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001613
1614 if (n->rdx >= places)
1615 n->rdx -= places;
1616 else {
1617 bc_num_extend(n, places - n->rdx);
1618 n->rdx = 0;
1619 }
1620
1621 bc_num_clean(n);
1622
Denys Vlasenko29301232018-12-11 15:29:32 +01001623 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001624}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001625#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001626
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001627static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001628{
1629 BcNum one;
1630 BcDig num[2];
1631
1632 one.cap = 2;
1633 one.num = num;
1634 bc_num_one(&one);
1635
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001636 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001637}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001638#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001639
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001640static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001641{
1642 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1643 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
1644 int carry, in;
1645
1646 // Because this function doesn't need to use scale (per the bc spec),
1647 // I am hijacking it to say whether it's doing an add or a subtract.
1648
1649 if (a->len == 0) {
1650 bc_num_copy(c, b);
1651 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001652 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001653 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001654 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001655 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001656 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001657 }
1658
1659 c->neg = a->neg;
1660 c->rdx = BC_MAX(a->rdx, b->rdx);
1661 min_rdx = BC_MIN(a->rdx, b->rdx);
1662 c->len = 0;
1663
1664 if (a->rdx > b->rdx) {
1665 diff = a->rdx - b->rdx;
1666 ptr = a->num;
1667 ptr_a = a->num + diff;
1668 ptr_b = b->num;
1669 }
1670 else {
1671 diff = b->rdx - a->rdx;
1672 ptr = b->num;
1673 ptr_a = a->num;
1674 ptr_b = b->num + diff;
1675 }
1676
1677 for (ptr_c = c->num, i = 0; i < diff; ++i, ++c->len) ptr_c[i] = ptr[i];
1678
1679 ptr_c += diff;
1680 a_int = BC_NUM_INT(a);
1681 b_int = BC_NUM_INT(b);
1682
1683 if (a_int > b_int) {
1684 min_int = b_int;
1685 max = a_int;
1686 ptr = ptr_a;
1687 }
1688 else {
1689 min_int = a_int;
1690 max = b_int;
1691 ptr = ptr_b;
1692 }
1693
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001694 for (carry = 0, i = 0; i < min_rdx + min_int; ++i, ++c->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001695 in = ((int) ptr_a[i]) + ((int) ptr_b[i]) + carry;
1696 carry = in / 10;
1697 ptr_c[i] = (BcDig)(in % 10);
1698 }
1699
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001700 for (; i < max + min_rdx; ++i, ++c->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001701 in = ((int) ptr[i]) + carry;
1702 carry = in / 10;
1703 ptr_c[i] = (BcDig)(in % 10);
1704 }
1705
1706 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1707
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001708 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001709}
1710
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001711static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001712{
Gavin Howard01055ba2018-11-03 11:00:21 -06001713 ssize_t cmp;
1714 BcNum *minuend, *subtrahend;
1715 size_t start;
1716 bool aneg, bneg, neg;
1717
1718 // Because this function doesn't need to use scale (per the bc spec),
1719 // I am hijacking it to say whether it's doing an add or a subtract.
1720
1721 if (a->len == 0) {
1722 bc_num_copy(c, b);
1723 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001724 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001725 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001726 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001727 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001728 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001729 }
1730
1731 aneg = a->neg;
1732 bneg = b->neg;
1733 a->neg = b->neg = false;
1734
1735 cmp = bc_num_cmp(a, b);
1736
1737 a->neg = aneg;
1738 b->neg = bneg;
1739
1740 if (cmp == 0) {
1741 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001742 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001743 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001744 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001745 neg = a->neg;
1746 minuend = a;
1747 subtrahend = b;
1748 }
1749 else {
1750 neg = b->neg;
1751 if (sub) neg = !neg;
1752 minuend = b;
1753 subtrahend = a;
1754 }
1755
1756 bc_num_copy(c, minuend);
1757 c->neg = neg;
1758
1759 if (c->rdx < subtrahend->rdx) {
1760 bc_num_extend(c, subtrahend->rdx - c->rdx);
1761 start = 0;
1762 }
1763 else
1764 start = c->rdx - subtrahend->rdx;
1765
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001766 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001767
1768 bc_num_clean(c);
1769
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001770 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001771}
1772
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001773static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001774 BcNum *restrict c)
Denys Vlasenkoec603182018-12-17 10:34:02 +01001775#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001776{
1777 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001778 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001779 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001780 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001781
Gavin Howard01055ba2018-11-03 11:00:21 -06001782 if (a->len == 0 || b->len == 0) {
1783 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001784 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001785 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001786 aone = BC_NUM_ONE(a);
1787 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001788 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001789 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001790 }
1791
1792 if (a->len + b->len < BC_NUM_KARATSUBA_LEN ||
1793 a->len < BC_NUM_KARATSUBA_LEN || b->len < BC_NUM_KARATSUBA_LEN)
1794 {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001795 size_t i, j, len;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001796 unsigned carry;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001797
Gavin Howard01055ba2018-11-03 11:00:21 -06001798 bc_num_expand(c, a->len + b->len + 1);
1799
1800 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001801 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001802
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001803 for (i = 0; i < b->len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001804
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001805 carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001806 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001807 unsigned in = c->num[i + j];
1808 in += ((unsigned) a->num[j]) * ((unsigned) b->num[i]) + carry;
1809 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001810 carry = in / 10;
1811 c->num[i + j] = (BcDig)(in % 10);
1812 }
1813
1814 c->num[i + j] += (BcDig) carry;
1815 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001816
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001817#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001818 // a=2^1000000
1819 // a*a <- without check below, this will not be interruptible
1820 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001821#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001822 }
1823
1824 c->len = len;
1825
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001826 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001827 }
1828
1829 bc_num_init(&l1, max);
1830 bc_num_init(&h1, max);
1831 bc_num_init(&l2, max);
1832 bc_num_init(&h2, max);
1833 bc_num_init(&m1, max);
1834 bc_num_init(&m2, max);
1835 bc_num_init(&z0, max);
1836 bc_num_init(&z1, max);
1837 bc_num_init(&z2, max);
1838 bc_num_init(&temp, max + max);
1839
1840 bc_num_split(a, max2, &l1, &h1);
1841 bc_num_split(b, max2, &l2, &h2);
1842
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001843 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001844 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001845 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001846 if (s) goto err;
1847
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001848 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001849 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001850 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001851 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001852 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001853 if (s) goto err;
1854
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001855 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001856 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001857 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001858 if (s) goto err;
1859
Denys Vlasenko29301232018-12-11 15:29:32 +01001860 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001861 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001862 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001863 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001864 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001865 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001866 s = zbc_num_add(&temp, &z2, c, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001867
1868err:
1869 bc_num_free(&temp);
1870 bc_num_free(&z2);
1871 bc_num_free(&z1);
1872 bc_num_free(&z0);
1873 bc_num_free(&m2);
1874 bc_num_free(&m1);
1875 bc_num_free(&h2);
1876 bc_num_free(&l2);
1877 bc_num_free(&h1);
1878 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001879 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001880}
1881
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001882static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001883{
1884 BcStatus s;
1885 BcNum cpa, cpb;
1886 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1887
1888 scale = BC_MAX(scale, a->rdx);
1889 scale = BC_MAX(scale, b->rdx);
1890 scale = BC_MIN(a->rdx + b->rdx, scale);
1891 maxrdx = BC_MAX(maxrdx, scale);
1892
1893 bc_num_init(&cpa, a->len);
1894 bc_num_init(&cpb, b->len);
1895
1896 bc_num_copy(&cpa, a);
1897 bc_num_copy(&cpb, b);
1898 cpa.neg = cpb.neg = false;
1899
Denys Vlasenko29301232018-12-11 15:29:32 +01001900 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001901 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001902 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001903 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001904 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001905 if (s) goto err;
1906
1907 maxrdx += scale;
1908 bc_num_expand(c, c->len + maxrdx);
1909
1910 if (c->len < maxrdx) {
1911 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1912 c->len += maxrdx;
1913 }
1914
1915 c->rdx = maxrdx;
1916 bc_num_retireMul(c, scale, a->neg, b->neg);
1917
1918err:
1919 bc_num_free(&cpb);
1920 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001921 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001922}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001923#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001924
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001925static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001926{
1927 BcStatus s = BC_STATUS_SUCCESS;
1928 BcDig *n, *p, q;
1929 size_t len, end, i;
1930 BcNum cp;
1931 bool zero = true;
1932
1933 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001934 RETURN_STATUS(bc_error("divide by zero"));
1935 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001936 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001937 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001938 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001939 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001940 bc_num_copy(c, a);
1941 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001942 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001943 }
1944
1945 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
1946 bc_num_copy(&cp, a);
1947 len = b->len;
1948
1949 if (len > cp.len) {
1950 bc_num_expand(&cp, len + 2);
1951 bc_num_extend(&cp, len - cp.len);
1952 }
1953
1954 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
1955 cp.rdx -= b->rdx;
1956 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
1957
1958 if (b->rdx == b->len) {
1959 for (i = 0; zero && i < len; ++i) zero = !b->num[len - i - 1];
1960 len -= i - 1;
1961 }
1962
1963 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
1964
1965 // We want an extra zero in front to make things simpler.
1966 cp.num[cp.len++] = 0;
1967 end = cp.len - len;
1968
1969 bc_num_expand(c, cp.len);
1970
1971 bc_num_zero(c);
1972 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
1973 c->rdx = cp.rdx;
1974 c->len = cp.len;
1975 p = b->num;
1976
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001977 for (i = end - 1; !s && i < end; --i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001978 n = cp.num + i;
1979 for (q = 0; (!s && n[len] != 0) || bc_num_compare(n, p, len) >= 0; ++q)
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001980 bc_num_subArrays(n, p, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001981 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001982#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01001983 // a=2^100000
1984 // scale=40000
1985 // 1/a <- without check below, this will not be interruptible
1986 if (G_interrupt) {
1987 s = BC_STATUS_FAILURE;
1988 break;
1989 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001990#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001991 }
1992
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001993 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001994 bc_num_free(&cp);
1995
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001996 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001997}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001998#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001999
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002000static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06002001 BcNum *restrict d, size_t scale, size_t ts)
2002{
2003 BcStatus s;
2004 BcNum temp;
2005 bool neg;
2006
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002007 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002008 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002009
2010 if (a->len == 0) {
2011 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002012 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002013 }
2014
2015 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002016 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002017 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002018
2019 if (scale != 0) scale = ts;
2020
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002021 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002022 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002023 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002024 if (s) goto err;
2025
2026 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2027
2028 neg = d->neg;
2029 bc_num_retireMul(d, ts, a->neg, b->neg);
2030 d->neg = neg;
2031
2032err:
2033 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002034 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002035}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002036#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002037
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002038static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002039{
2040 BcStatus s;
2041 BcNum c1;
2042 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2043
2044 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002045 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002046 bc_num_free(&c1);
2047
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002048 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002049}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002050#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002051
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002052static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002053{
2054 BcStatus s = BC_STATUS_SUCCESS;
2055 BcNum copy;
2056 unsigned long pow;
2057 size_t i, powrdx, resrdx;
2058 bool neg, zero;
2059
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002060 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002061
2062 if (b->len == 0) {
2063 bc_num_one(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002064 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002065 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002066 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002067 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002068 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002069 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002070 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002071 if (!b->neg)
2072 bc_num_copy(c, a);
2073 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002074 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002075 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002076 }
2077
2078 neg = b->neg;
2079 b->neg = false;
2080
Denys Vlasenko29301232018-12-11 15:29:32 +01002081 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002082 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002083
2084 bc_num_init(&copy, a->len);
2085 bc_num_copy(&copy, a);
2086
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002087 if (!neg) {
2088 if (a->rdx > scale)
2089 scale = a->rdx;
2090 if (a->rdx * pow < scale)
2091 scale = a->rdx * pow;
2092 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002093
2094 b->neg = neg;
2095
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002096 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002097 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002098 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002099 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002100 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002101 //if (G_interrupt) {
2102 // s = BC_STATUS_FAILURE;
2103 // goto err;
2104 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002105 }
2106
Gavin Howard01055ba2018-11-03 11:00:21 -06002107 bc_num_copy(c, &copy);
2108
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002109 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002110
2111 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002112 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002113 if (s) goto err;
2114
2115 if (pow & 1) {
2116 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002117 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002118 if (s) goto err;
2119 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002120 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002121 //if (G_interrupt) {
2122 // s = BC_STATUS_FAILURE;
2123 // goto err;
2124 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002125 }
2126
2127 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002128 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002129 if (s) goto err;
2130 }
2131
Gavin Howard01055ba2018-11-03 11:00:21 -06002132 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2133
2134 // We can't use bc_num_clean() here.
2135 for (zero = true, i = 0; zero && i < c->len; ++i) zero = !c->num[i];
2136 if (zero) bc_num_setToZero(c, scale);
2137
2138err:
2139 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002140 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002141}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002142#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002143
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002144static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002145 BcNumBinaryOp op, size_t req)
2146{
2147 BcStatus s;
2148 BcNum num2, *ptr_a, *ptr_b;
2149 bool init = false;
2150
2151 if (c == a) {
2152 ptr_a = &num2;
2153 memcpy(ptr_a, c, sizeof(BcNum));
2154 init = true;
2155 }
2156 else
2157 ptr_a = a;
2158
2159 if (c == b) {
2160 ptr_b = &num2;
2161 if (c != a) {
2162 memcpy(ptr_b, c, sizeof(BcNum));
2163 init = true;
2164 }
2165 }
2166 else
2167 ptr_b = b;
2168
2169 if (init)
2170 bc_num_init(c, req);
2171 else
2172 bc_num_expand(c, req);
2173
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002174 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01002175 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002176
2177 if (init) bc_num_free(&num2);
2178
Denys Vlasenko29301232018-12-11 15:29:32 +01002179 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002180}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002181#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002182
Denys Vlasenko9311e012018-12-10 11:54:18 +01002183static bool bc_num_strValid(const char *val, size_t base)
2184{
2185 BcDig b;
2186 bool radix;
2187
2188 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2189 radix = false;
2190 for (;;) {
2191 BcDig c = *val++;
2192 if (c == '\0')
2193 break;
2194 if (c == '.') {
2195 if (radix) return false;
2196 radix = true;
2197 continue;
2198 }
2199 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2200 return false;
2201 }
2202 return true;
2203}
2204
2205// Note: n is already "bc_num_zero()"ed,
2206// leading zeroes in "val" are removed
2207static void bc_num_parseDecimal(BcNum *n, const char *val)
2208{
2209 size_t len, i;
2210 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002211
2212 len = strlen(val);
2213 if (len == 0)
2214 return;
2215
Denys Vlasenko9311e012018-12-10 11:54:18 +01002216 bc_num_expand(n, len);
2217
2218 ptr = strchr(val, '.');
2219
2220 n->rdx = 0;
2221 if (ptr != NULL)
2222 n->rdx = (size_t)((val + len) - (ptr + 1));
2223
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002224 for (i = 0; val[i]; ++i) {
2225 if (val[i] != '0' && val[i] != '.') {
2226 // Not entirely zero value - convert it, and exit
2227 i = len - 1;
2228 for (;;) {
2229 n->num[n->len] = val[i] - '0';
2230 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002231 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002232 if (i == 0) break;
2233 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002234 }
2235 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002236 }
2237 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002238 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002239}
2240
2241// Note: n is already "bc_num_zero()"ed,
2242// leading zeroes in "val" are removed
2243static void bc_num_parseBase(BcNum *n, const char *val, BcNum *base)
2244{
2245 BcStatus s;
2246 BcNum temp, mult, result;
2247 BcDig c = '\0';
2248 unsigned long v;
2249 size_t i, digits;
2250
2251 for (i = 0; ; ++i) {
2252 if (val[i] == '\0')
2253 return;
2254 if (val[i] != '.' && val[i] != '0')
2255 break;
2256 }
2257
2258 bc_num_init_DEF_SIZE(&temp);
2259 bc_num_init_DEF_SIZE(&mult);
2260
2261 for (;;) {
2262 c = *val++;
2263 if (c == '\0') goto int_err;
2264 if (c == '.') break;
2265
2266 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2267
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002268 s = zbc_num_mul(n, base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002269 if (s) goto int_err;
2270 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002271 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002272 if (s) goto int_err;
2273 }
2274
2275 bc_num_init(&result, base->len);
2276 //bc_num_zero(&result); - already is
2277 bc_num_one(&mult);
2278
2279 digits = 0;
2280 for (;;) {
2281 c = *val++;
2282 if (c == '\0') break;
2283 digits++;
2284
2285 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2286
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002287 s = zbc_num_mul(&result, base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002288 if (s) goto err;
2289 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002290 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002291 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002292 s = zbc_num_mul(&mult, base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002293 if (s) goto err;
2294 }
2295
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002296 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002297 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002298 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002299 if (s) goto err;
2300
2301 if (n->len != 0) {
2302 if (n->rdx < digits) bc_num_extend(n, digits - n->rdx);
2303 } else
2304 bc_num_zero(n);
2305
2306err:
2307 bc_num_free(&result);
2308int_err:
2309 bc_num_free(&mult);
2310 bc_num_free(&temp);
2311}
2312
Denys Vlasenko29301232018-12-11 15:29:32 +01002313static BC_STATUS zbc_num_parse(BcNum *n, const char *val, BcNum *base,
Gavin Howard01055ba2018-11-03 11:00:21 -06002314 size_t base_t)
2315{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002316 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002317 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002318
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002319 bc_num_zero(n);
2320 while (*val == '0') val++;
2321
Gavin Howard01055ba2018-11-03 11:00:21 -06002322 if (base_t == 10)
2323 bc_num_parseDecimal(n, val);
2324 else
2325 bc_num_parseBase(n, val, base);
2326
Denys Vlasenko29301232018-12-11 15:29:32 +01002327 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002328}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002329#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002330
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002331static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002332{
2333 BcStatus s;
2334 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2335 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2336 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2337
2338 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2339 bc_num_expand(b, req);
2340
2341 if (a->len == 0) {
2342 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002343 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002344 }
2345 else if (a->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002346 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002347 else if (BC_NUM_ONE(a)) {
2348 bc_num_one(b);
2349 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002350 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002351 }
2352
2353 scale = BC_MAX(scale, a->rdx) + 1;
2354 len = a->len + scale;
2355
2356 bc_num_init(&num1, len);
2357 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002358 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002359
2360 bc_num_one(&half);
2361 half.num[0] = 5;
2362 half.rdx = 1;
2363
2364 bc_num_init(&f, len);
2365 bc_num_init(&fprime, len);
2366
2367 x0 = &num1;
2368 x1 = &num2;
2369
2370 bc_num_one(x0);
2371 pow = BC_NUM_INT(a);
2372
2373 if (pow) {
2374
2375 if (pow & 1)
2376 x0->num[0] = 2;
2377 else
2378 x0->num[0] = 6;
2379
2380 pow -= 2 - (pow & 1);
2381
2382 bc_num_extend(x0, pow);
2383
2384 // Make sure to move the radix back.
2385 x0->rdx -= pow;
2386 }
2387
2388 x0->rdx = digs = digs1 = 0;
2389 resrdx = scale + 2;
2390 len = BC_NUM_INT(x0) + resrdx - 1;
2391
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002392 while (cmp != 0 || digs < len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002393
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002394 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002395 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002396 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002397 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002398 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002399 if (s) goto err;
2400
2401 cmp = bc_num_cmp(x1, x0);
2402 digs = x1->len - (unsigned long long) llabs(cmp);
2403
2404 if (cmp == cmp2 && digs == digs1)
2405 times += 1;
2406 else
2407 times = 0;
2408
2409 resrdx += times > 4;
2410
2411 cmp2 = cmp1;
2412 cmp1 = cmp;
2413 digs1 = digs;
2414
2415 temp = x0;
2416 x0 = x1;
2417 x1 = temp;
2418 }
2419
Gavin Howard01055ba2018-11-03 11:00:21 -06002420 bc_num_copy(b, x0);
2421 scale -= 1;
2422 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
2423
2424err:
2425 bc_num_free(&fprime);
2426 bc_num_free(&f);
2427 bc_num_free(&half);
2428 bc_num_free(&num2);
2429 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002430 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002431}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002432#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002433
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002434static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002435 size_t scale)
2436{
2437 BcStatus s;
2438 BcNum num2, *ptr_a;
2439 bool init = false;
2440 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2441
2442 if (c == a) {
2443 memcpy(&num2, c, sizeof(BcNum));
2444 ptr_a = &num2;
2445 bc_num_init(c, len);
2446 init = true;
2447 }
2448 else {
2449 ptr_a = a;
2450 bc_num_expand(c, len);
2451 }
2452
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002453 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002454
2455 if (init) bc_num_free(&num2);
2456
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002457 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002458}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002459#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002460
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002461#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002462static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002463{
2464 BcStatus s;
2465 BcNum base, exp, two, temp;
2466
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002467 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002468 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002469 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002470 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002471 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002472 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002473
2474 bc_num_expand(d, c->len);
2475 bc_num_init(&base, c->len);
2476 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002477 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002478 bc_num_init(&temp, b->len);
2479
2480 bc_num_one(&two);
2481 two.num[0] = 2;
2482 bc_num_one(d);
2483
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002484 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002485 if (s) goto err;
2486 bc_num_copy(&exp, b);
2487
2488 while (exp.len != 0) {
2489
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002490 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002491 if (s) goto err;
2492
2493 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002494 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002495 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002496 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002497 if (s) goto err;
2498 }
2499
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002500 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002501 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002502 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002503 if (s) goto err;
2504 }
2505
2506err:
2507 bc_num_free(&temp);
2508 bc_num_free(&two);
2509 bc_num_free(&exp);
2510 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002511 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002512}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002513#define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002514#endif // ENABLE_DC
2515
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002516#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002517static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002518{
2519 BcId a;
2520 size_t i;
2521
2522 for (i = 0; i < f->autos.len; ++i) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002523 if (strcmp(name, ((BcId *) bc_vec_item(&f->autos, i))->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002524 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002525 }
2526
2527 a.idx = var;
2528 a.name = name;
2529
2530 bc_vec_push(&f->autos, &a);
2531
Denys Vlasenko29301232018-12-11 15:29:32 +01002532 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002533}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002534#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002535#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002536
2537static void bc_func_init(BcFunc *f)
2538{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002539 bc_char_vec_init(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06002540 bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);
2541 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2542 f->nparams = 0;
2543}
2544
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002545static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002546{
2547 BcFunc *f = (BcFunc *) func;
2548 bc_vec_free(&f->code);
2549 bc_vec_free(&f->autos);
2550 bc_vec_free(&f->labels);
2551}
2552
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002553static void bc_array_expand(BcVec *a, size_t len);
2554
Gavin Howard01055ba2018-11-03 11:00:21 -06002555static void bc_array_init(BcVec *a, bool nums)
2556{
2557 if (nums)
2558 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2559 else
2560 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2561 bc_array_expand(a, 1);
2562}
2563
Gavin Howard01055ba2018-11-03 11:00:21 -06002564static void bc_array_expand(BcVec *a, size_t len)
2565{
2566 BcResultData data;
2567
2568 if (a->size == sizeof(BcNum) && a->dtor == bc_num_free) {
2569 while (len > a->len) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002570 bc_num_init_DEF_SIZE(&data.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002571 bc_vec_push(a, &data.n);
2572 }
2573 }
2574 else {
2575 while (len > a->len) {
2576 bc_array_init(&data.v, true);
2577 bc_vec_push(a, &data.v);
2578 }
2579 }
2580}
2581
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002582static void bc_array_copy(BcVec *d, const BcVec *s)
2583{
2584 size_t i;
2585
2586 bc_vec_pop_all(d);
2587 bc_vec_expand(d, s->cap);
2588 d->len = s->len;
2589
2590 for (i = 0; i < s->len; ++i) {
2591 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i);
2592 bc_num_init(dnum, snum->len);
2593 bc_num_copy(dnum, snum);
2594 }
2595}
2596
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002597static FAST_FUNC void bc_string_free(void *string)
Gavin Howard01055ba2018-11-03 11:00:21 -06002598{
2599 free(*((char **) string));
2600}
2601
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002602#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06002603static void bc_result_copy(BcResult *d, BcResult *src)
2604{
2605 d->t = src->t;
2606
2607 switch (d->t) {
2608
2609 case BC_RESULT_TEMP:
2610 case BC_RESULT_IBASE:
2611 case BC_RESULT_SCALE:
2612 case BC_RESULT_OBASE:
2613 {
2614 bc_num_init(&d->d.n, src->d.n.len);
2615 bc_num_copy(&d->d.n, &src->d.n);
2616 break;
2617 }
2618
2619 case BC_RESULT_VAR:
2620 case BC_RESULT_ARRAY:
2621 case BC_RESULT_ARRAY_ELEM:
2622 {
2623 d->d.id.name = xstrdup(src->d.id.name);
2624 break;
2625 }
2626
2627 case BC_RESULT_CONSTANT:
2628 case BC_RESULT_LAST:
2629 case BC_RESULT_ONE:
2630 case BC_RESULT_STR:
2631 {
2632 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2633 break;
2634 }
2635 }
2636}
2637#endif // ENABLE_DC
2638
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002639static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002640{
2641 BcResult *r = (BcResult *) result;
2642
2643 switch (r->t) {
2644
2645 case BC_RESULT_TEMP:
2646 case BC_RESULT_IBASE:
2647 case BC_RESULT_SCALE:
2648 case BC_RESULT_OBASE:
2649 {
2650 bc_num_free(&r->d.n);
2651 break;
2652 }
2653
2654 case BC_RESULT_VAR:
2655 case BC_RESULT_ARRAY:
2656 case BC_RESULT_ARRAY_ELEM:
2657 {
2658 free(r->d.id.name);
2659 break;
2660 }
2661
2662 default:
2663 {
2664 // Do nothing.
2665 break;
2666 }
2667 }
2668}
2669
2670static void bc_lex_lineComment(BcLex *l)
2671{
2672 l->t.t = BC_LEX_WHITESPACE;
2673 while (l->i < l->len && l->buf[l->i++] != '\n');
2674 --l->i;
2675}
2676
2677static void bc_lex_whitespace(BcLex *l)
2678{
Gavin Howard01055ba2018-11-03 11:00:21 -06002679 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002680 for (;;) {
2681 char c = l->buf[l->i];
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002682 if (c == '\n') // this is BC_LEX_NLINE, not BC_LEX_WHITESPACE
2683 break;
2684 if (!isspace(c))
Denys Vlasenko89198a92018-12-13 21:31:29 +01002685 break;
2686 l->i++;
2687 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002688}
2689
Denys Vlasenko29301232018-12-11 15:29:32 +01002690static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002691{
2692 const char *buf = l->buf + l->i;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002693 size_t len, bslashes, i, ccnt;
2694 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002695
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002696 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002697 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002698 bslashes = 0;
2699 ccnt = i = 0;
2700 for (;;) {
2701 char c = buf[i];
2702 if (c == '\0')
2703 break;
2704 if (c == '\\' && buf[i + 1] == '\n') {
2705 i += 2;
2706 bslashes++;
2707 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002708 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002709 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2710 if (c != '.') break;
2711 // if '.' was already seen, stop on second one:
2712 if (pt) break;
2713 pt = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002714 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002715 // buf[i] is one of "0-9A-F."
2716 i++;
2717 if (c != '.')
2718 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002719 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002720 //i is buf[i] index of the first not-yet-parsed char
2721 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002722
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002723 //ccnt is the number of chars in the number string, excluding possible
2724 //trailing "." and possible following trailing "\<newline>"(s).
2725 len = ccnt - bslashes * 2 + 1; // +1 byte for NUL termination
2726
Denys Vlasenko64074a12018-12-07 15:50:14 +01002727 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2728 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2729 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002730 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002731 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002732
Denys Vlasenko7d628012018-12-04 21:46:47 +01002733 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002734 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002735 bc_vec_push(&l->t.v, &start);
2736
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002737 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002738 // If we have hit a backslash, skip it. We don't have
2739 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002740 if (*buf == '\\') {
2741 buf += 2;
2742 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002743 continue;
2744 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002745 bc_vec_push(&l->t.v, buf);
2746 buf++;
2747 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002748 }
2749
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002750 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002751
Denys Vlasenko29301232018-12-11 15:29:32 +01002752 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002753}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002754#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002755
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002756static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002757{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002758 size_t i;
2759 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002760
2761 l->t.t = BC_LEX_NAME;
2762
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002763 i = 0;
2764 buf = l->buf + l->i - 1;
2765 for (;;) {
2766 char c = buf[i];
2767 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2768 i++;
2769 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002770
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002771#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002772 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2773 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2774 if (i > BC_MAX_STRING)
2775 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2776 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002777#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002778 bc_vec_string(&l->t.v, i, buf);
2779
2780 // Increment the index. We minus 1 because it has already been incremented.
2781 l->i += i - 1;
2782
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002783 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002784}
2785
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002786static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002787{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002788 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002789}
2790
2791static void bc_lex_free(BcLex *l)
2792{
2793 bc_vec_free(&l->t.v);
2794}
2795
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002796static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002797{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002798 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002799 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002800}
2801
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002802IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2803IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002804
2805static BC_STATUS zcommon_lex_token(BcLex *l)
2806{
2807 if (IS_BC) {
2808 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2809 }
2810 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2811}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002812#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002813
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002814static bool bc_lex_more_input(BcLex *l)
2815{
2816 size_t str;
2817 bool comment;
2818
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002819 bc_vec_pop_all(&G.input_buffer);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002820
2821 // This loop is complex because the vm tries not to send any lines that end
2822 // with a backslash to the parser. The reason for that is because the parser
2823 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2824 // case, and for strings and comments, the parser will expect more stuff.
2825 comment = false;
2826 str = 0;
2827 for (;;) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002828 size_t prevlen = G.input_buffer.len;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002829 char *string;
2830
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002831 bc_read_line(&G.input_buffer, G.input_fp);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002832 // No more input means EOF
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002833 if (G.input_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002834 break;
2835
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002836 string = G.input_buffer.v + prevlen;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002837 while (*string) {
2838 char c = *string;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002839 if (string == G.input_buffer.v || string[-1] != '\\') {
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002840 if (IS_BC)
2841 str ^= (c == '"');
2842 else {
2843 if (c == ']')
2844 str -= 1;
2845 else if (c == '[')
2846 str += 1;
2847 }
2848 }
2849 string++;
2850 if (c == '/' && *string == '*') {
2851 comment = true;
2852 string++;
2853 continue;
2854 }
2855 if (c == '*' && *string == '/') {
2856 comment = false;
2857 string++;
2858 }
2859 }
2860 if (str != 0 || comment) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002861 G.input_buffer.len--; // backstep over the trailing NUL byte
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002862 continue;
2863 }
2864
2865 // Check for backslash+newline.
2866 // we do not check that last char is '\n' -
2867 // if it is not, then it's EOF, and looping back
2868 // to bc_read_line() will detect it:
2869 string -= 2;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002870 if (string >= G.input_buffer.v && *string == '\\') {
2871 G.input_buffer.len--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002872 continue;
2873 }
2874
2875 break;
2876 }
2877
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002878 l->buf = G.input_buffer.v;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002879 l->i = 0;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002880// bb_error_msg("G.input_buffer.len:%d '%s'", G.input_buffer.len, G.input_buffer.v);
2881 l->len = G.input_buffer.len - 1; // do not include NUL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002882
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002883 return l->len != 0;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002884}
2885
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002886static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002887{
2888 BcStatus s;
2889
2890 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002891 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002892
2893 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002894 G.err_line = l->line;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002895 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002896
2897 // Loop until failure or we don't have whitespace. This
2898 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002899 // Comments are also BC_LEX_WHITESPACE tokens and eaten here.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002900 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002901 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002902 l->t.t = BC_LEX_EOF;
2903 if (l->i == l->len) {
2904 if (!G.input_fp)
2905 RETURN_STATUS(BC_STATUS_SUCCESS);
2906 if (!bc_lex_more_input(l)) {
2907 G.input_fp = NULL;
2908 RETURN_STATUS(BC_STATUS_SUCCESS);
2909 }
2910 // here it's guaranteed that l->i is below l->len
2911 }
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002912 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01002913 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2914 l->buf + l->i);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002915 s = zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002916 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01002917 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002918
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002919 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002920}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002921#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002922
Denys Vlasenko202dd192018-12-16 17:30:35 +01002923static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
2924{
2925 if (l->t.t == BC_LEX_NLINE)
2926 RETURN_STATUS(zbc_lex_next(l));
2927 RETURN_STATUS(BC_STATUS_SUCCESS);
2928}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002929#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002930
2931static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
2932{
2933 BcStatus s;
2934 s = zbc_lex_next(l);
2935 if (s) RETURN_STATUS(s);
2936 // if(cond)<newline>stmt is accepted too (but not 2+ newlines)
2937 s = zbc_lex_skip_if_at_NLINE(l);
2938 RETURN_STATUS(s);
2939}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002940#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002941
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002942static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06002943{
2944 l->buf = text;
2945 l->i = 0;
2946 l->len = strlen(text);
2947 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002948 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06002949}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002950#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002951
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002952#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002953static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002954{
2955 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002956 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002957 const char *buf = l->buf + l->i - 1;
2958
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002959 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
2960 const char *keyword8 = bc_lex_kws[i].name8;
2961 unsigned j = 0;
2962 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
2963 j++;
2964 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06002965 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002966 if (keyword8[j] != '\0')
2967 continue;
2968 match:
2969 // buf starts with keyword bc_lex_kws[i]
2970 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01002971 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002972 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002973 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002974 }
2975
2976 // We minus 1 because the index has already been incremented.
2977 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002978 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002979 }
2980
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002981 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002982
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002983 if (l->t.v.len > 2) {
2984 // Prevent this:
2985 // >>> qwe=1
2986 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
2987 // '
2988 unsigned len = strchrnul(buf, '\n') - buf;
2989 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
2990 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002991
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002992 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002993}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002994#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002995
Denys Vlasenko26819db2018-12-12 16:08:46 +01002996static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002997{
2998 size_t len, nls = 0, i = l->i;
2999 char c;
3000
3001 l->t.t = BC_LEX_STR;
3002
Denys Vlasenko26819db2018-12-12 16:08:46 +01003003 for (c = l->buf[i]; c != 0 && c != '"'; c = l->buf[++i])
3004 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003005
3006 if (c == '\0') {
3007 l->i = i;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003008 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003009 }
3010
3011 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01003012 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3013 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3014 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01003015 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003016 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003017 bc_vec_string(&l->t.v, len, l->buf + l->i);
3018
3019 l->i = i + 1;
3020 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003021 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003022
Denys Vlasenko26819db2018-12-12 16:08:46 +01003023 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003024}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003025#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003026
Denys Vlasenko0a238142018-12-14 16:48:34 +01003027static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003028{
3029 if (l->buf[l->i] == '=') {
3030 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003031 with_and_without >>= 8; // store "with" value
3032 } // else store "without" value
3033 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003034}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003035#define bc_lex_assign(l, with, without) \
3036 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003037
Denys Vlasenko29301232018-12-11 15:29:32 +01003038static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003039{
3040 size_t i, nls = 0;
3041 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003042
3043 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003044 i = l->i; /* here buf[l->i] is the '*' of opening comment delimiter */
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003045 for (;;) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003046 char c = buf[++i];
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003047 check_star:
3048 if (c == '*') {
3049 c = buf[++i];
3050 if (c == '/')
3051 break;
3052 goto check_star;
3053 }
3054 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003055 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003056 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003057 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003058 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003059 }
3060
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003061 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003062 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003063 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003064
Denys Vlasenko29301232018-12-11 15:29:32 +01003065 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003066}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003067#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003068
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003069static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003070{
3071 BcStatus s = BC_STATUS_SUCCESS;
3072 char c = l->buf[l->i++], c2;
3073
3074 // This is the workhorse of the lexer.
3075 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003076// case '\0': // probably never reached
3077// l->i--;
3078// l->t.t = BC_LEX_EOF;
3079// l->newline = true;
3080// break;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003081 case '\n':
3082 l->t.t = BC_LEX_NLINE;
3083 l->newline = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06003084 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003085 case '\t':
3086 case '\v':
3087 case '\f':
3088 case '\r':
3089 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003090 bc_lex_whitespace(l);
3091 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003092 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003093 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003094 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003095 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003096 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003097 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003098 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003099 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003100 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003101 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003102 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003103 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003104 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003105 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003106 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003107 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003108 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3109 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003110 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003111 c2 = l->buf[l->i];
3112 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003113 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003114 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003115 ++l->i;
3116 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003117 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003118 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003119 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003120 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003121 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003122 case '(':
3123 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003124 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
3125 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003126 case '*':
Gavin Howard01055ba2018-11-03 11:00:21 -06003127 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
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_INC;
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_PLUS, BC_LEX_OP_PLUS);
3136 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003137 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003138 l->t.t = BC_LEX_COMMA;
3139 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003140 case '-':
Gavin Howard01055ba2018-11-03 11:00:21 -06003141 c2 = l->buf[l->i];
3142 if (c2 == '-') {
3143 ++l->i;
3144 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003145 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003146 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3147 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003148 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003149 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003150 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003151 else {
3152 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003153 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003154 }
3155 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003156 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003157 c2 = l->buf[l->i];
3158 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003159 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003160 else
3161 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3162 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003163 case '0':
3164 case '1':
3165 case '2':
3166 case '3':
3167 case '4':
3168 case '5':
3169 case '6':
3170 case '7':
3171 case '8':
3172 case '9':
3173 case 'A':
3174 case 'B':
3175 case 'C':
3176 case 'D':
3177 case 'E':
3178 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003179 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003180 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003181 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003182 l->t.t = BC_LEX_SCOLON;
3183 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003184 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003185 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3186 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003187 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003188 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3189 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003190 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003191 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3192 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003193 case '[':
3194 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003195 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3196 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003197 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003198 if (l->buf[l->i] == '\n') {
3199 l->t.t = BC_LEX_WHITESPACE;
3200 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003201 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003202 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003203 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003204 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003205 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3206 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003207 case 'a':
3208 case 'b':
3209 case 'c':
3210 case 'd':
3211 case 'e':
3212 case 'f':
3213 case 'g':
3214 case 'h':
3215 case 'i':
3216 case 'j':
3217 case 'k':
3218 case 'l':
3219 case 'm':
3220 case 'n':
3221 case 'o':
3222 case 'p':
3223 case 'q':
3224 case 'r':
3225 case 's':
3226 case 't':
3227 case 'u':
3228 case 'v':
3229 case 'w':
3230 case 'x':
3231 case 'y':
3232 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003233 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003234 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003235 case '{':
3236 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003237 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3238 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003239 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003240 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003241 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003242 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003243 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003244 ++l->i;
3245 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003246 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003247 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003248 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003249 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003250 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003251 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003252 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003253 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003254 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003255 }
3256
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003257 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003258}
3259#endif // ENABLE_BC
3260
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003261#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003262static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003263{
Gavin Howard01055ba2018-11-03 11:00:21 -06003264 if (isspace(l->buf[l->i - 1])) {
3265 bc_lex_whitespace(l);
3266 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003267 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003268 RETURN_STATUS(bc_error("extended register"));
3269 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003270 }
3271 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003272 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003273 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003274 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003275 l->t.t = BC_LEX_NAME;
3276 }
3277
Denys Vlasenko29301232018-12-11 15:29:32 +01003278 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003279}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003280#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003281
Denys Vlasenko29301232018-12-11 15:29:32 +01003282static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003283{
3284 size_t depth = 1, nls = 0, i = l->i;
3285 char c;
3286
3287 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003288 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003289
3290 for (c = l->buf[i]; c != 0 && depth; c = l->buf[++i]) {
3291
3292 depth += (c == '[' && (i == l->i || l->buf[i - 1] != '\\'));
3293 depth -= (c == ']' && (i == l->i || l->buf[i - 1] != '\\'));
3294 nls += (c == '\n');
3295
3296 if (depth) bc_vec_push(&l->t.v, &c);
3297 }
3298
3299 if (c == '\0') {
3300 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003301 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003302 }
3303
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003304 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003305 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3306 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3307 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003308 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003309 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003310
3311 l->i = i;
3312 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003313 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003314
Denys Vlasenko29301232018-12-11 15:29:32 +01003315 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003316}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003317#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003318
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003319static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003320{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003321 static const //BcLexType - should be this type, but narrower type saves size:
3322 uint8_t
3323 dc_lex_regs[] = {
3324 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
3325 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
3326 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
3327 BC_LEX_STORE_PUSH,
3328 };
3329 static const //BcLexType - should be this type
3330 uint8_t
3331 dc_lex_tokens[] = {
3332 /* %&'( */
3333 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
3334 /* )*+, */
3335 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
3336 /* -./ */
3337 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
3338 /* 0123456789 */
3339 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3340 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3341 BC_LEX_INVALID, BC_LEX_INVALID,
3342 /* :;<=>?@ */
3343 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
3344 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
3345 /* ABCDEFGH */
3346 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3347 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
3348 /* IJKLMNOP */
3349 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
3350 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
3351 /* QRSTUVWXY */
3352 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
3353 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
3354 /* Z[\] */
3355 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3356 /* ^_` */
3357 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
3358 /* abcdefgh */
3359 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
3360 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
3361 /* ijklmnop */
3362 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
3363 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
3364 /* qrstuvwx */
3365 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
3366 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
3367 /* yz */
3368 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
3369 /* {|}~ */
3370 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
3371 };
3372
Gavin Howard01055ba2018-11-03 11:00:21 -06003373 BcStatus s = BC_STATUS_SUCCESS;
3374 char c = l->buf[l->i++], c2;
3375 size_t i;
3376
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003377 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3378 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003379 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003380 }
3381
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003382 if (c >= '%' && c <= '~'
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003383 && (l->t.t = dc_lex_tokens[c - '%']) != BC_LEX_INVALID
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003384 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003385 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003386 }
3387
3388 // This is the workhorse of the lexer.
3389 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003390// case '\0': // probably never reached
3391// l->t.t = BC_LEX_EOF;
3392// break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003393 case '\n':
3394 case '\t':
3395 case '\v':
3396 case '\f':
3397 case '\r':
3398 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003399 l->newline = (c == '\n');
3400 bc_lex_whitespace(l);
3401 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003402 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003403 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003404 if (c2 == '=')
3405 l->t.t = BC_LEX_OP_REL_NE;
3406 else if (c2 == '<')
3407 l->t.t = BC_LEX_OP_REL_LE;
3408 else if (c2 == '>')
3409 l->t.t = BC_LEX_OP_REL_GE;
3410 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003411 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003412 ++l->i;
3413 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003414 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003415 bc_lex_lineComment(l);
3416 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003417 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003418 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003419 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003420 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003421 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003422 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003423 case '0':
3424 case '1':
3425 case '2':
3426 case '3':
3427 case '4':
3428 case '5':
3429 case '6':
3430 case '7':
3431 case '8':
3432 case '9':
3433 case 'A':
3434 case 'B':
3435 case 'C':
3436 case 'D':
3437 case 'E':
3438 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003439 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003440 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003441 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003442 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003443 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003444 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003445 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003446 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003447 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003448 }
3449
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003450 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003451}
3452#endif // ENABLE_DC
3453
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003454static void bc_program_addFunc(char *name, size_t *idx);
3455
Gavin Howard01055ba2018-11-03 11:00:21 -06003456static void bc_parse_addFunc(BcParse *p, char *name, size_t *idx)
3457{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003458 bc_program_addFunc(name, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003459 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003460}
3461
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003462static void bc_parse_push(BcParse *p, char i)
3463{
3464 dbg_lex("%s:%d pushing opcode %d", __func__, __LINE__, i);
3465 bc_vec_pushByte(&p->func->code, i);
3466}
Denys Vlasenkob23ac512018-12-06 13:10:56 +01003467
Gavin Howard01055ba2018-11-03 11:00:21 -06003468static void bc_parse_pushName(BcParse *p, char *name)
3469{
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003470 while (*name)
3471 bc_parse_push(p, *name++);
Gavin Howard01055ba2018-11-03 11:00:21 -06003472 bc_parse_push(p, BC_PARSE_STREND);
Gavin Howard01055ba2018-11-03 11:00:21 -06003473}
3474
3475static void bc_parse_pushIndex(BcParse *p, size_t idx)
3476{
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003477 size_t mask;
3478 unsigned amt;
Gavin Howard01055ba2018-11-03 11:00:21 -06003479
Denys Vlasenkof4f10722018-12-18 02:23:53 +01003480 dbg_lex("%s:%d pushing index %zd", __func__, __LINE__, idx);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003481 mask = ((size_t)0xff) << (sizeof(idx) * 8 - 8);
3482 amt = sizeof(idx);
3483 do {
3484 if (idx & mask) break;
3485 mask >>= 8;
3486 amt--;
3487 } while (amt != 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003488
3489 bc_parse_push(p, amt);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003490
3491 while (idx != 0) {
3492 bc_parse_push(p, (unsigned char)idx);
3493 idx >>= 8;
3494 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003495}
3496
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003497static void bc_parse_pushJUMP(BcParse *p, size_t idx)
3498{
3499 bc_parse_push(p, BC_INST_JUMP);
3500 bc_parse_pushIndex(p, idx);
3501}
3502
3503static void bc_parse_pushJUMP_ZERO(BcParse *p, size_t idx)
3504{
3505 bc_parse_push(p, BC_INST_JUMP_ZERO);
3506 bc_parse_pushIndex(p, idx);
3507}
3508
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003509static void bc_parse_number(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003510{
3511 char *num = xstrdup(p->l.t.v.v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003512 size_t idx = G.prog.consts.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06003513
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003514 bc_vec_push(&G.prog.consts, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06003515
3516 bc_parse_push(p, BC_INST_NUM);
3517 bc_parse_pushIndex(p, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003518}
3519
Denys Vlasenko99b37622018-12-15 20:06:59 +01003520IF_BC(static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p);)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01003521IF_DC(static BC_STATUS zdc_parse_parse(BcParse *p);)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003522
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003523// "Parse" half of "parse,execute,repeat" main loop
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003524static BC_STATUS zcommon_parse(BcParse *p)
3525{
3526 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003527// FIXME: "eating" of stmt delemiters is coded inconsistently
3528// (sometimes zbc_parse_stmt() eats the delimiter, sometimes don't),
3529// which causes bugs such as "print 1 print 2" erroneously accepted,
3530// or "print 1 else 2" detecting parse error only after executing
3531// "print 1" part.
Denys Vlasenko99b37622018-12-15 20:06:59 +01003532 IF_BC(RETURN_STATUS(zbc_parse_stmt_or_funcdef(p));)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003533 }
3534 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3535}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003536#define zcommon_parse(...) (zcommon_parse(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003537
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003538static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003539{
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003540 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003541
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003542 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
Gavin Howard01055ba2018-11-03 11:00:21 -06003543}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003544#define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003545
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003546// Called when parsing or execution detects a failure,
3547// resets execution structures.
3548static void bc_program_reset(void)
3549{
3550 BcFunc *f;
3551 BcInstPtr *ip;
3552
3553 bc_vec_npop(&G.prog.stack, G.prog.stack.len - 1);
3554 bc_vec_pop_all(&G.prog.results);
3555
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003556 f = bc_program_func(0);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003557 ip = bc_vec_top(&G.prog.stack);
3558 ip->idx = f->code.len;
3559}
3560
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003561#define bc_parse_updateFunc(p, f) \
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003562 ((p)->func = bc_program_func((p)->fidx = (f)))
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003563
Denys Vlasenko26819db2018-12-12 16:08:46 +01003564// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003565// resets parsing structures.
3566static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003567{
3568 if (p->fidx != BC_PROG_MAIN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003569 p->func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003570 bc_vec_pop_all(&p->func->code);
3571 bc_vec_pop_all(&p->func->autos);
3572 bc_vec_pop_all(&p->func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06003573
3574 bc_parse_updateFunc(p, BC_PROG_MAIN);
3575 }
3576
3577 p->l.i = p->l.len;
3578 p->l.t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003579
Denys Vlasenko7d628012018-12-04 21:46:47 +01003580 bc_vec_pop_all(&p->exits);
3581 bc_vec_pop_all(&p->conds);
3582 bc_vec_pop_all(&p->ops);
Gavin Howard01055ba2018-11-03 11:00:21 -06003583
Denys Vlasenkod38af482018-12-04 19:11:02 +01003584 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003585}
3586
3587static void bc_parse_free(BcParse *p)
3588{
Gavin Howard01055ba2018-11-03 11:00:21 -06003589 bc_vec_free(&p->exits);
3590 bc_vec_free(&p->conds);
3591 bc_vec_free(&p->ops);
3592 bc_lex_free(&p->l);
3593}
3594
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003595static void bc_parse_create(BcParse *p, size_t func)
Gavin Howard01055ba2018-11-03 11:00:21 -06003596{
3597 memset(p, 0, sizeof(BcParse));
3598
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003599 bc_lex_init(&p->l);
Denys Vlasenko266aa002018-12-16 23:24:25 +01003600 bc_vec_init(&p->exits, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003601 bc_vec_init(&p->conds, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003602 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3603
Gavin Howard01055ba2018-11-03 11:00:21 -06003604 bc_parse_updateFunc(p, func);
3605}
3606
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003607#if ENABLE_BC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003608
3609#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3610#define BC_PARSE_LEAF(p, rparen) \
3611 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3612 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3613
3614// We can calculate the conversion between tokens and exprs by subtracting the
3615// position of the first operator in the lex enum and adding the position of the
3616// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003617#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003618
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003619static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags);
3620
3621static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags)
3622{
3623 BcStatus s;
3624
3625 s = bc_parse_expr_empty_ok(p, flags);
3626 if (s == BC_STATUS_PARSE_EMPTY_EXP)
3627 RETURN_STATUS(bc_error("empty expression"));
3628 RETURN_STATUS(s);
3629}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003630#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003631
3632static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003633#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003634
3635static BC_STATUS zbc_parse_stmt(BcParse *p)
3636{
3637 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3638}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003639#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003640
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003641static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003642{
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003643 // "if(cond)<newline>stmt" is accepted too, but not 2+ newlines.
3644 // Same for "else", "while()", "for()".
3645 BcStatus s = zbc_lex_next_and_skip_NLINE(&p->l);
3646 if (s) RETURN_STATUS(s);
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003647 if (p->l.t.t == BC_LEX_NLINE)
3648 RETURN_STATUS(bc_error_fmt("no statement after '%s'", after_X));
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003649
3650 RETURN_STATUS(zbc_parse_stmt(p));
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003651}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003652#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003653
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003654static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3655 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003656{
Denys Vlasenko65437582018-12-05 19:37:19 +01003657 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3658 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003659
3660 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003661 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003662 if (t == BC_LEX_LPAREN) break;
3663
Denys Vlasenko65437582018-12-05 19:37:19 +01003664 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003665 if (l >= r && (l != r || !left)) break;
3666
Denys Vlasenko0154d782018-12-14 23:32:51 +01003667 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003668 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003669 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003670 }
3671
3672 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003673}
3674
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003675static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003676{
3677 BcLexType top;
3678
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003679 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003680 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003681 top = BC_PARSE_TOP_OP(p);
3682
3683 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003684 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003685
3686 bc_vec_pop(&p->ops);
3687 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3688
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003689 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003690 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003691 top = BC_PARSE_TOP_OP(p);
3692 }
3693
3694 bc_vec_pop(&p->ops);
3695
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003696 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003697}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003698#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003699
Denys Vlasenko26819db2018-12-12 16:08:46 +01003700static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003701{
3702 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06003703 size_t nparams;
3704
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003705 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003706 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3707
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003708 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003709 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003710
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003711 nparams = 0;
3712 if (p->l.t.t != BC_LEX_RPAREN) {
3713 for (;;) {
3714 s = zbc_parse_expr(p, flags);
3715 if (s) RETURN_STATUS(s);
3716 nparams++;
3717 if (p->l.t.t != BC_LEX_COMMA) {
3718 if (p->l.t.t == BC_LEX_RPAREN)
3719 break;
3720 RETURN_STATUS(bc_error_bad_token());
3721 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003722 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003723 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003724 }
3725 }
3726
Gavin Howard01055ba2018-11-03 11:00:21 -06003727 bc_parse_push(p, BC_INST_CALL);
3728 bc_parse_pushIndex(p, nparams);
3729
Denys Vlasenko26819db2018-12-12 16:08:46 +01003730 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003731}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003732#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003733
Denys Vlasenko26819db2018-12-12 16:08:46 +01003734static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003735{
3736 BcStatus s;
3737 BcId entry, *entry_ptr;
3738 size_t idx;
3739
3740 entry.name = name;
3741
Denys Vlasenko26819db2018-12-12 16:08:46 +01003742 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003743 if (s) goto err;
3744
3745 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003746 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003747 goto err;
3748 }
3749
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003750 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003751
3752 if (idx == BC_VEC_INVALID_IDX) {
3753 name = xstrdup(entry.name);
3754 bc_parse_addFunc(p, name, &idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003755 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003756 free(entry.name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003757 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003758 free(name);
3759
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003760 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003761 bc_parse_pushIndex(p, entry_ptr->idx);
3762
Denys Vlasenko26819db2018-12-12 16:08:46 +01003763 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003764
3765err:
3766 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003767 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003768}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003769#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003770
Denys Vlasenko26819db2018-12-12 16:08:46 +01003771static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003772{
3773 BcStatus s;
3774 char *name;
3775
3776 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003777 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003778 if (s) goto err;
3779
3780 if (p->l.t.t == BC_LEX_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003781 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003782 if (s) goto err;
3783
3784 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003785 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003786 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003787 goto err;
3788 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003789 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003790 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003791 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003792 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003793 s = zbc_parse_expr(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003794 if (s) goto err;
3795 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003796 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003797 if (s) goto err;
3798 bc_parse_push(p, *type);
3799 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003800 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003801 }
3802 else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003803 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003804 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003805 goto err;
3806 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003807 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003808 s = zbc_parse_call(p, name, flags);
3809 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003810 *type = BC_INST_VAR;
3811 bc_parse_push(p, BC_INST_VAR);
3812 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003813 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003814 }
3815
Denys Vlasenko26819db2018-12-12 16:08:46 +01003816 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003817
3818err:
3819 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003820 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003821}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003822#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003823
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003824static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003825{
3826 BcStatus s;
3827
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003828 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003829 if (s) RETURN_STATUS(s);
3830 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003831
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003832 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003833 if (s) RETURN_STATUS(s);
3834 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003835
3836 bc_parse_push(p, BC_INST_READ);
3837
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003838 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003839}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003840#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003841
Denys Vlasenko26819db2018-12-12 16:08:46 +01003842static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003843 BcInst *prev)
3844{
3845 BcStatus s;
3846
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003847 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003848 if (s) RETURN_STATUS(s);
3849 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003850
3851 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3852
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003853 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003854 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003855
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003856 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003857 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003858
Denys Vlasenko26819db2018-12-12 16:08:46 +01003859 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003860
3861 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3862 bc_parse_push(p, *prev);
3863
Denys Vlasenko26819db2018-12-12 16:08:46 +01003864 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003865}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003866#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003867
Denys Vlasenko26819db2018-12-12 16:08:46 +01003868static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003869{
3870 BcStatus s;
3871
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003872 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003873 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003874
3875 if (p->l.t.t != BC_LEX_LPAREN) {
3876 *type = BC_INST_SCALE;
3877 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003878 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003879 }
3880
3881 *type = BC_INST_SCALE_FUNC;
3882 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
3883
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003884 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003885 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003886
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003887 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003888 if (s) RETURN_STATUS(s);
3889 if (p->l.t.t != BC_LEX_RPAREN)
3890 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003891 bc_parse_push(p, BC_INST_SCALE_FUNC);
3892
Denys Vlasenko26819db2018-12-12 16:08:46 +01003893 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003894}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003895#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003896
Denys Vlasenko26819db2018-12-12 16:08:46 +01003897static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003898 size_t *nexprs, uint8_t flags)
3899{
3900 BcStatus s;
3901 BcLexType type;
3902 char inst;
3903 BcInst etype = *prev;
3904
3905 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM ||
3906 etype == BC_INST_SCALE || etype == BC_INST_LAST ||
3907 etype == BC_INST_IBASE || etype == BC_INST_OBASE)
3908 {
3909 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
3910 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003911 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003912 }
3913 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003914 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
3915 *paren_expr = true;
3916
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003917 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003918 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003919 type = p->l.t.t;
3920
3921 // Because we parse the next part of the expression
3922 // right here, we need to increment this.
3923 *nexprs = *nexprs + 1;
3924
3925 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003926 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01003927 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003928 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003929 case BC_LEX_KEY_IBASE:
3930 case BC_LEX_KEY_LAST:
3931 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06003932 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003933 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003934 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003935 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003936 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003937 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003938 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003939 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003940 else
3941 bc_parse_push(p, BC_INST_SCALE);
3942 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003943 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003944 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003945 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003946 }
3947
3948 if (!s) bc_parse_push(p, inst);
3949 }
3950
Denys Vlasenko26819db2018-12-12 16:08:46 +01003951 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003952}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003953#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003954
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003955static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06003956 bool rparen, size_t *nexprs)
3957{
3958 BcStatus s;
3959 BcLexType type;
3960 BcInst etype = *prev;
3961
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003962 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003963 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003964
3965 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
3966 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
3967 BC_LEX_OP_MINUS :
3968 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01003969 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003970
3971 // We can just push onto the op stack because this is the largest
3972 // precedence operator that gets pushed. Inc/dec does not.
3973 if (type != BC_LEX_OP_MINUS)
3974 bc_vec_push(&p->ops, &type);
3975 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003976 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06003977
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003978 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003979}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003980#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003981
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003982static BC_STATUS zbc_parse_string(BcParse *p, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06003983{
3984 char *str = xstrdup(p->l.t.v.v);
3985
3986 bc_parse_push(p, BC_INST_STR);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003987 bc_parse_pushIndex(p, G.prog.strs.len);
3988 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06003989 bc_parse_push(p, inst);
3990
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003991 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003992}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003993#define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003994
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003995static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003996{
3997 BcStatus s;
3998 BcLexType type;
Gavin Howard01055ba2018-11-03 11:00:21 -06003999
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004000 for (;;) {
4001 s = zbc_lex_next(&p->l);
4002 if (s) RETURN_STATUS(s);
4003 type = p->l.t.t;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004004 if (type == BC_LEX_STR) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004005 s = zbc_parse_string(p, BC_INST_PRINT_POP);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004006 } else {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004007 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004008 bc_parse_push(p, BC_INST_PRINT_POP);
4009 }
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004010 if (s) RETURN_STATUS(s);
4011 if (p->l.t.t != BC_LEX_COMMA)
4012 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004013 }
4014
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004015 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004016}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004017#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004018
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004019static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004020{
4021 BcStatus s;
4022 BcLexType t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004023
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004024 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004025 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004026 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004027
4028 t = p->l.t.t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004029 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4030 bc_parse_push(p, BC_INST_RET0);
4031 else {
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004032 bool paren = (t == BC_LEX_LPAREN);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004033 s = bc_parse_expr_empty_ok(p, 0);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004034 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004035 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004036 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004037 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004038 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004039
4040 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004041 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004042 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06004043 }
4044
4045 bc_parse_push(p, BC_INST_RET);
4046 }
4047
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004048 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004049 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004050}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004051#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004052
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004053static void rewrite_label_to_current(BcParse *p, size_t idx)
4054{
4055 size_t *label = bc_vec_item(&p->func->labels, idx);
4056 *label = p->func->code.len;
4057}
4058
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004059static BC_STATUS zbc_parse_if(BcParse *p)
4060{
4061 BcStatus s;
Denys Vlasenko15850832018-12-16 21:40:54 +01004062 size_t ip_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004063
4064 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4065 s = zbc_lex_next(&p->l);
4066 if (s) RETURN_STATUS(s);
4067 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4068
4069 s = zbc_lex_next(&p->l);
4070 if (s) RETURN_STATUS(s);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004071 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004072 if (s) RETURN_STATUS(s);
4073
4074 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004075
Denys Vlasenko15850832018-12-16 21:40:54 +01004076 ip_idx = p->func->labels.len;
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004077 bc_parse_pushJUMP_ZERO(p, ip_idx);
Denys Vlasenko15850832018-12-16 21:40:54 +01004078 bc_vec_push(&p->func->labels, &ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004079
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004080 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004081 if (s) RETURN_STATUS(s);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004082
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004083 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4084 if (p->l.t.t == BC_LEX_KEY_ELSE) {
Denys Vlasenko15850832018-12-16 21:40:54 +01004085 size_t ip2_idx;
Denys Vlasenko74156332018-12-16 21:21:27 +01004086
Denys Vlasenko15850832018-12-16 21:40:54 +01004087 ip2_idx = p->func->labels.len;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004088
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004089 dbg_lex("%s:%d after if() body: BC_INST_JUMP to %zd", __func__, __LINE__, ip2_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004090 bc_parse_pushJUMP(p, ip2_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004091
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004092 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 +01004093 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004094
Denys Vlasenko15850832018-12-16 21:40:54 +01004095 bc_vec_push(&p->func->labels, &ip2_idx);
4096 ip_idx = ip2_idx;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004097
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004098 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004099 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004100 }
4101
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004102 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 +01004103 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004104
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004105 dbg_lex_done("%s:%d done", __func__, __LINE__);
4106 RETURN_STATUS(s);
4107}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004108#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004109
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004110static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004111{
4112 BcStatus s;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004113 size_t cond_idx;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004114 size_t ip_idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06004115
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004116 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004117 if (s) RETURN_STATUS(s);
4118 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004119 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004120 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004121
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004122 cond_idx = p->func->labels.len;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004123 ip_idx = cond_idx + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06004124
4125 bc_vec_push(&p->func->labels, &p->func->code.len);
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004126 bc_vec_push(&p->conds, &cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004127
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004128 bc_vec_push(&p->exits, &ip_idx);
4129 bc_vec_push(&p->func->labels, &ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004130
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004131 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004132 if (s) RETURN_STATUS(s);
4133 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko202dd192018-12-16 17:30:35 +01004134
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004135 bc_parse_pushJUMP_ZERO(p, ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004136
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004137 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004138 if (s) RETURN_STATUS(s);
4139
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004140 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, cond_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004141 bc_parse_pushJUMP(p, cond_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004142
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004143 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004144 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004145
4146 bc_vec_pop(&p->exits);
4147 bc_vec_pop(&p->conds);
4148
4149 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004150}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004151#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004152
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004153static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004154{
4155 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004156 size_t cond_idx, exit_idx, body_idx, update_idx;
4157
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004158 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004159 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004160 if (s) RETURN_STATUS(s);
4161 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004162 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004163 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004164
4165 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004166 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004167 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004168 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Gavin Howard01055ba2018-11-03 11:00:21 -06004169
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004170 if (s) RETURN_STATUS(s);
4171 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004172 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004173 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004174
4175 cond_idx = p->func->labels.len;
4176 update_idx = cond_idx + 1;
4177 body_idx = update_idx + 1;
4178 exit_idx = body_idx + 1;
4179
4180 bc_vec_push(&p->func->labels, &p->func->code.len);
4181
4182 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004183 s = zbc_parse_expr(p, BC_PARSE_REL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004184 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004185 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004186
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004187 if (s) RETURN_STATUS(s);
4188 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004189
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004190 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004191 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004192
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004193 bc_parse_pushJUMP_ZERO(p, exit_idx);
4194 bc_parse_pushJUMP(p, body_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004195
Gavin Howard01055ba2018-11-03 11:00:21 -06004196 bc_vec_push(&p->conds, &update_idx);
4197 bc_vec_push(&p->func->labels, &p->func->code.len);
4198
4199 if (p->l.t.t != BC_LEX_RPAREN)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004200 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004201 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004202 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Gavin Howard01055ba2018-11-03 11:00:21 -06004203
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004204 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004205
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004206 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004207 bc_parse_pushJUMP(p, cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004208 bc_vec_push(&p->func->labels, &p->func->code.len);
4209
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004210 bc_vec_push(&p->exits, &exit_idx);
4211 bc_vec_push(&p->func->labels, &exit_idx);
Denys Vlasenko202dd192018-12-16 17:30:35 +01004212
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004213 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004214 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004215
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004216 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, update_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004217 bc_parse_pushJUMP(p, update_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004218
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004219 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004220 rewrite_label_to_current(p, exit_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004221
4222 bc_vec_pop(&p->exits);
4223 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004224
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004225 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004226}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004227#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004228
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004229static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004230{
4231 BcStatus s;
4232 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06004233
Gavin Howard01055ba2018-11-03 11:00:21 -06004234 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004235 if (p->exits.len == 0) // none of the enclosing blocks is a loop
4236 RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko266aa002018-12-16 23:24:25 +01004237 i = *(size_t*)bc_vec_top(&p->exits);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004238 } else {
Denys Vlasenko266aa002018-12-16 23:24:25 +01004239 i = *(size_t*)bc_vec_top(&p->conds);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004240 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004241
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004242 bc_parse_pushJUMP(p, i);
Gavin Howard01055ba2018-11-03 11:00:21 -06004243
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004244 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004245 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004246
4247 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004248 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004249
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004250 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004251}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004252#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004253
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004254static BC_STATUS zbc_parse_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004255{
4256 BcStatus s;
4257 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004258 char *name;
4259
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004260 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004261 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004262 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004263 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004264 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004265
4266 name = xstrdup(p->l.t.v.v);
4267 bc_parse_addFunc(p, name, &p->fidx);
4268
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004269 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004270 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004271 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004272 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004273 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004274 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004275
4276 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004277 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004278 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004279
4280 ++p->func->nparams;
4281
4282 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004283 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004284 if (s) goto err;
4285
4286 var = p->l.t.t != BC_LEX_LBRACKET;
4287
4288 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004289 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004290 if (s) goto err;
4291
4292 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004293 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004294 goto err;
4295 }
4296
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004297 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004298 if (s) goto err;
4299 }
4300
4301 comma = p->l.t.t == BC_LEX_COMMA;
4302 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004303 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004304 if (s) goto err;
4305 }
4306
Denys Vlasenko29301232018-12-11 15:29:32 +01004307 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004308 if (s) goto err;
4309 }
4310
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004311 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004312
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004313 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004314 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004315
4316 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004317 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004318
Denys Vlasenko202dd192018-12-16 17:30:35 +01004319 // Prevent "define z()<newline>" from being interpreted as function with empty stmt as body
4320 s = zbc_lex_skip_if_at_NLINE(&p->l);
4321 if (s) RETURN_STATUS(s);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004322 //GNU bc requires a {} block even if function body has single stmt, enforce this?
4323 if (p->l.t.t != BC_LEX_LBRACE)
4324 RETURN_STATUS(bc_error("function { body } expected"));
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004325
4326 p->in_funcdef++; // to determine whether "return" stmt is allowed, and such
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004327 s = zbc_parse_stmt_possibly_auto(p, true);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004328 p->in_funcdef--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004329 if (s) RETURN_STATUS(s);
4330
4331 bc_parse_push(p, BC_INST_RET0);
4332 bc_parse_updateFunc(p, BC_PROG_MAIN);
4333
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004334 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004335 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004336
4337err:
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004338 dbg_lex_done("%s:%d done (error)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004339 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004340 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004341}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004342#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004343
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004344static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004345{
4346 BcStatus s;
4347 bool comma, var, one;
4348 char *name;
4349
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004350 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004351 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004352 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004353
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004354 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004355 one = p->l.t.t == BC_LEX_NAME;
4356
4357 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004358 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004359 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004360 if (s) goto err;
4361
4362 var = p->l.t.t != BC_LEX_LBRACKET;
4363 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004364 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004365 if (s) goto err;
4366
4367 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004368 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004369 goto err;
4370 }
4371
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004372 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004373 if (s) goto err;
4374 }
4375
4376 comma = p->l.t.t == BC_LEX_COMMA;
4377 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004378 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004379 if (s) goto err;
4380 }
4381
Denys Vlasenko29301232018-12-11 15:29:32 +01004382 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004383 if (s) goto err;
4384 }
4385
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004386 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4387 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004388
4389 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004390 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004391
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004392 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004393 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004394
4395err:
4396 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004397 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004398 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004399}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004400#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004401
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004402#undef zbc_parse_stmt_possibly_auto
4403static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004404{
4405 BcStatus s = BC_STATUS_SUCCESS;
4406
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004407 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004408
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004409 if (p->l.t.t == BC_LEX_NLINE) {
4410 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4411 RETURN_STATUS(zbc_lex_next(&p->l));
4412 }
4413 if (p->l.t.t == BC_LEX_SCOLON) {
4414 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4415 RETURN_STATUS(zbc_lex_next(&p->l));
4416 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004417
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004418 if (p->l.t.t == BC_LEX_LBRACE) {
4419 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4420 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004421 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004422 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004423 } while (p->l.t.t == BC_LEX_NLINE);
4424 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4425 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4426 s = zbc_parse_auto(p);
4427 if (s) RETURN_STATUS(s);
4428 }
4429 while (p->l.t.t != BC_LEX_RBRACE) {
4430 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4431 s = zbc_parse_stmt(p);
4432 if (s) RETURN_STATUS(s);
4433 }
4434 s = zbc_lex_next(&p->l);
4435 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4436 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004437 }
4438
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004439 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004440 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004441 case BC_LEX_OP_INC:
4442 case BC_LEX_OP_DEC:
4443 case BC_LEX_OP_MINUS:
4444 case BC_LEX_OP_BOOL_NOT:
4445 case BC_LEX_LPAREN:
4446 case BC_LEX_NAME:
4447 case BC_LEX_NUMBER:
4448 case BC_LEX_KEY_IBASE:
4449 case BC_LEX_KEY_LAST:
4450 case BC_LEX_KEY_LENGTH:
4451 case BC_LEX_KEY_OBASE:
4452 case BC_LEX_KEY_READ:
4453 case BC_LEX_KEY_SCALE:
4454 case BC_LEX_KEY_SQRT:
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004455 s = zbc_parse_expr(p, BC_PARSE_PRINT);
Gavin Howard01055ba2018-11-03 11:00:21 -06004456 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004457 case BC_LEX_STR:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004458 s = zbc_parse_string(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004459 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004460 case BC_LEX_KEY_BREAK:
4461 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004462 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004463 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004464 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004465 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004466 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004467 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004468 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004469 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004470 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004471 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004472 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004473 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004474 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004475 // "limits" is a compile-time command,
4476 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004477 printf(
4478 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4479 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4480 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4481 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4482 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4483 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4484 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4485 "Number of vars = "BC_MAX_VARS_STR "\n"
4486 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004487 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004488 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004489 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004490 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004491 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004492 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004493 // "quit" is a compile-time command. For example,
4494 // "if (0 == 1) quit" terminates when parsing the statement,
4495 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004496 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004497 case BC_LEX_KEY_RETURN:
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004498 if (!p->in_funcdef)
4499 RETURN_STATUS(bc_error("'return' not in a function"));
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004500 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004501 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004502 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004503 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004504 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004505 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004506 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004507 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004508 }
4509
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004510 if (s || G_interrupt) {
4511 bc_parse_reset(p);
4512 s = BC_STATUS_FAILURE;
4513 }
4514
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004515 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004516 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004517}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004518#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004519
Denys Vlasenko99b37622018-12-15 20:06:59 +01004520static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004521{
4522 BcStatus s;
4523
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004524 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004525 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004526 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004527 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004528 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004529 s = zbc_parse_funcdef(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004530 } else {
4531 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 +01004532 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004533 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004534
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004535 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004536 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004537}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004538#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004539
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004540// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004541static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004542{
4543 BcStatus s = BC_STATUS_SUCCESS;
4544 BcInst prev = BC_INST_PRINT;
4545 BcLexType top, t = p->l.t.t;
4546 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004547 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004548 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4549
Denys Vlasenko17df8822018-12-14 23:00:24 +01004550 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004551 paren_first = p->l.t.t == BC_LEX_LPAREN;
4552 nparens = nrelops = 0;
4553 paren_expr = rprn = done = get_token = assign = false;
4554 bin_last = true;
4555
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004556 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004557 switch (t) {
4558
4559 case BC_LEX_OP_INC:
4560 case BC_LEX_OP_DEC:
4561 {
Denys Vlasenko26819db2018-12-12 16:08:46 +01004562 s = zbc_parse_incdec(p, &prev, &paren_expr, &nexprs, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004563 rprn = get_token = bin_last = false;
4564 break;
4565 }
4566
4567 case BC_LEX_OP_MINUS:
4568 {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004569 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004570 rprn = get_token = false;
4571 bin_last = prev == BC_INST_MINUS;
4572 break;
4573 }
4574
4575 case BC_LEX_OP_ASSIGN_POWER:
4576 case BC_LEX_OP_ASSIGN_MULTIPLY:
4577 case BC_LEX_OP_ASSIGN_DIVIDE:
4578 case BC_LEX_OP_ASSIGN_MODULUS:
4579 case BC_LEX_OP_ASSIGN_PLUS:
4580 case BC_LEX_OP_ASSIGN_MINUS:
4581 case BC_LEX_OP_ASSIGN:
4582 {
4583 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM &&
4584 prev != BC_INST_SCALE && prev != BC_INST_IBASE &&
4585 prev != BC_INST_OBASE && prev != BC_INST_LAST)
4586 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004587 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004588 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004589 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004590 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004591 break;
4592 }
4593 }
4594 // Fallthrough.
4595 case BC_LEX_OP_POWER:
4596 case BC_LEX_OP_MULTIPLY:
4597 case BC_LEX_OP_DIVIDE:
4598 case BC_LEX_OP_MODULUS:
4599 case BC_LEX_OP_PLUS:
4600 case BC_LEX_OP_REL_EQ:
4601 case BC_LEX_OP_REL_LE:
4602 case BC_LEX_OP_REL_GE:
4603 case BC_LEX_OP_REL_NE:
4604 case BC_LEX_OP_REL_LT:
4605 case BC_LEX_OP_REL_GT:
4606 case BC_LEX_OP_BOOL_NOT:
4607 case BC_LEX_OP_BOOL_OR:
4608 case BC_LEX_OP_BOOL_AND:
4609 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004610 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4611 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4612 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004613 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004614 }
4615
4616 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004617 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004618 bc_parse_operator(p, t, ops_bgn, &nexprs);
4619 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004620 rprn = get_token = false;
4621 bin_last = t != BC_LEX_OP_BOOL_NOT;
4622
4623 break;
4624 }
4625
4626 case BC_LEX_LPAREN:
4627 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004628 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004629 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004630 ++nparens;
4631 paren_expr = rprn = bin_last = false;
4632 get_token = true;
4633 bc_vec_push(&p->ops, &t);
4634
4635 break;
4636 }
4637
4638 case BC_LEX_RPAREN:
4639 {
4640 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004641 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004642
4643 if (nparens == 0) {
4644 s = BC_STATUS_SUCCESS;
4645 done = true;
4646 get_token = false;
4647 break;
4648 }
Denys Vlasenko17df8822018-12-14 23:00:24 +01004649 else if (!paren_expr) {
4650 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004651 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004652 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004653
4654 --nparens;
4655 paren_expr = rprn = true;
4656 get_token = bin_last = false;
4657
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004658 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004659
4660 break;
4661 }
4662
4663 case BC_LEX_NAME:
4664 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004665 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004666 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004667 paren_expr = true;
4668 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004669 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004670 ++nexprs;
4671
4672 break;
4673 }
4674
4675 case BC_LEX_NUMBER:
4676 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004677 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004678 return bc_error_bad_expression();
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004679 bc_parse_number(p);
4680 nexprs++;
4681 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004682 paren_expr = get_token = true;
4683 rprn = bin_last = false;
4684
4685 break;
4686 }
4687
4688 case BC_LEX_KEY_IBASE:
4689 case BC_LEX_KEY_LAST:
4690 case BC_LEX_KEY_OBASE:
4691 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004692 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004693 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004694 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4695 bc_parse_push(p, (char) prev);
4696
4697 paren_expr = get_token = true;
4698 rprn = bin_last = false;
4699 ++nexprs;
4700
4701 break;
4702 }
4703
4704 case BC_LEX_KEY_LENGTH:
4705 case BC_LEX_KEY_SQRT:
4706 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004707 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004708 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004709 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004710 paren_expr = true;
4711 rprn = get_token = bin_last = false;
4712 ++nexprs;
4713
4714 break;
4715 }
4716
4717 case BC_LEX_KEY_READ:
4718 {
4719 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004720 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004721 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004722 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004723 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004724 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004725
4726 paren_expr = true;
4727 rprn = get_token = bin_last = false;
4728 ++nexprs;
4729 prev = BC_INST_READ;
4730
4731 break;
4732 }
4733
4734 case BC_LEX_KEY_SCALE:
4735 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004736 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004737 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004738 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004739 paren_expr = true;
4740 rprn = get_token = bin_last = false;
4741 ++nexprs;
4742 prev = BC_INST_SCALE;
4743
4744 break;
4745 }
4746
4747 default:
4748 {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004749 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004750 break;
4751 }
4752 }
4753
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004754 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004755 }
4756
4757 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004758 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004759
4760 while (p->ops.len > ops_bgn) {
4761
4762 top = BC_PARSE_TOP_OP(p);
4763 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4764
4765 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004766 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004767
Denys Vlasenko0154d782018-12-14 23:32:51 +01004768 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004769
4770 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4771 bc_vec_pop(&p->ops);
4772 }
4773
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004774 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004775 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004776
Gavin Howard01055ba2018-11-03 11:00:21 -06004777 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004778 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004779 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004780 }
4781 else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004782 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004783 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004784 }
4785
4786 if (flags & BC_PARSE_PRINT) {
4787 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4788 bc_parse_push(p, BC_INST_POP);
4789 }
4790
Denys Vlasenko17df8822018-12-14 23:00:24 +01004791 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004792 return s;
4793}
4794
Gavin Howard01055ba2018-11-03 11:00:21 -06004795#endif // ENABLE_BC
4796
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004797#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004798
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004799static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004800{
4801 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004802
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004803 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004804 if (s) RETURN_STATUS(s);
4805 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004806
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01004807 bc_parse_pushName(p, p->l.t.v.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004808
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004809 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004810}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004811#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004812
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004813static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004814{
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004815 char *str, *name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004816 size_t idx, len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004817
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004818//why pad to 32 zeros??
4819 name = xasprintf("%032lu", (unsigned long)len);
Gavin Howard01055ba2018-11-03 11:00:21 -06004820
4821 str = xstrdup(p->l.t.v.v);
4822 bc_parse_push(p, BC_INST_STR);
4823 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004824 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004825 bc_parse_addFunc(p, name, &idx);
4826
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004827 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004828}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004829#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004830
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004831static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004832{
4833 BcStatus s;
4834
4835 bc_parse_push(p, inst);
4836 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004837 s = zdc_parse_register(p);
4838 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004839 }
4840
4841 if (store) {
4842 bc_parse_push(p, BC_INST_SWAP);
4843 bc_parse_push(p, BC_INST_ASSIGN);
4844 bc_parse_push(p, BC_INST_POP);
4845 }
4846
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004847 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004848}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004849#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004850
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004851static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004852{
4853 BcStatus s;
4854
4855 bc_parse_push(p, inst);
4856 bc_parse_push(p, BC_INST_EXEC_COND);
4857
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004858 s = zdc_parse_register(p);
4859 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004860
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004861 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004862 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004863
4864 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004865 s = zdc_parse_register(p);
4866 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004867 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004868 }
4869 else
4870 bc_parse_push(p, BC_PARSE_STREND);
4871
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004872 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004873}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004874#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004875
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004876static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004877{
4878 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06004879 uint8_t inst;
4880 bool assign, get_token = false;
4881
4882 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004883 case BC_LEX_OP_REL_EQ:
4884 case BC_LEX_OP_REL_LE:
4885 case BC_LEX_OP_REL_GE:
4886 case BC_LEX_OP_REL_NE:
4887 case BC_LEX_OP_REL_LT:
4888 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004889 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06004890 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004891 case BC_LEX_SCOLON:
4892 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004893 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06004894 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004895 case BC_LEX_STR:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004896 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004897 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004898 case BC_LEX_NEG:
4899 case BC_LEX_NUMBER:
Gavin Howard01055ba2018-11-03 11:00:21 -06004900 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004901 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004902 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004903 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004904 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004905 }
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004906 bc_parse_number(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004907 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
4908 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06004909 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004910 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004911 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004912 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004913 else
4914 bc_parse_push(p, BC_INST_READ);
4915 get_token = true;
4916 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004917 case BC_LEX_OP_ASSIGN:
4918 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06004919 assign = t == BC_LEX_OP_ASSIGN;
4920 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004921 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06004922 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004923 case BC_LEX_LOAD:
4924 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06004925 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004926 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06004927 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004928 case BC_LEX_STORE_IBASE:
4929 case BC_LEX_STORE_SCALE:
4930 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004931 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004932 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06004933 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004934 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004935 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004936 get_token = true;
4937 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004938 }
4939
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004940 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004941
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004942 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004943}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004944#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004945
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004946static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004947{
4948 BcStatus s = BC_STATUS_SUCCESS;
4949 BcInst inst;
4950 BcLexType t;
4951
Gavin Howard01055ba2018-11-03 11:00:21 -06004952 for (t = p->l.t.t; !s && t != BC_LEX_EOF; t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004953 inst = dc_parse_insts[t];
4954
4955 if (inst != BC_INST_INVALID) {
4956 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004957 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004958 } else
4959 s = zdc_parse_token(p, t, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004960 }
4961
4962 if (!s && p->l.t.t == BC_LEX_EOF && (flags & BC_PARSE_NOCALL))
4963 bc_parse_push(p, BC_INST_POP_EXEC);
4964
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004965 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004966}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004967#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004968
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01004969static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004970{
4971 BcStatus s;
4972
4973 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004974 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004975 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004976 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004977
Denys Vlasenkod38af482018-12-04 19:11:02 +01004978 if (s || G_interrupt) {
4979 bc_parse_reset(p);
4980 s = BC_STATUS_FAILURE;
4981 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004982
Denys Vlasenko26819db2018-12-12 16:08:46 +01004983 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004984}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004985#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004986
Gavin Howard01055ba2018-11-03 11:00:21 -06004987#endif // ENABLE_DC
4988
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004989static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004990{
4991 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004992 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004993 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01004994 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004995 }
4996}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004997#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004998
Denys Vlasenkodf515392018-12-02 19:27:48 +01004999static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005000{
Gavin Howard01055ba2018-11-03 11:00:21 -06005001 BcId e, *ptr;
5002 BcVec *v, *map;
5003 size_t i;
5004 BcResultData data;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005005 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06005006
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005007 v = var ? &G.prog.vars : &G.prog.arrs;
5008 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06005009
5010 e.name = id;
5011 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005012 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06005013
5014 if (new) {
5015 bc_array_init(&data.v, var);
5016 bc_vec_push(v, &data.v);
5017 }
5018
5019 ptr = bc_vec_item(map, i);
5020 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005021 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005022}
5023
Denys Vlasenko29301232018-12-11 15:29:32 +01005024static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06005025{
Gavin Howard01055ba2018-11-03 11:00:21 -06005026 switch (r->t) {
5027
5028 case BC_RESULT_STR:
5029 case BC_RESULT_TEMP:
5030 case BC_RESULT_IBASE:
5031 case BC_RESULT_SCALE:
5032 case BC_RESULT_OBASE:
5033 {
5034 *num = &r->d.n;
5035 break;
5036 }
5037
5038 case BC_RESULT_CONSTANT:
5039 {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005040 BcStatus s;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005041 char **str = bc_vec_item(&G.prog.consts, r->d.id.idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005042 size_t base_t, len = strlen(*str);
5043 BcNum *base;
5044
5045 bc_num_init(&r->d.n, len);
5046
5047 hex = hex && len == 1;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005048 base = hex ? &G.prog.hexb : &G.prog.ib;
5049 base_t = hex ? BC_NUM_MAX_IBASE : G.prog.ib_t;
Denys Vlasenko29301232018-12-11 15:29:32 +01005050 s = zbc_num_parse(&r->d.n, *str, base, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005051
5052 if (s) {
5053 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01005054 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005055 }
5056
5057 *num = &r->d.n;
5058 r->t = BC_RESULT_TEMP;
5059
5060 break;
5061 }
5062
5063 case BC_RESULT_VAR:
5064 case BC_RESULT_ARRAY:
5065 case BC_RESULT_ARRAY_ELEM:
5066 {
5067 BcVec *v;
5068
Denys Vlasenkodf515392018-12-02 19:27:48 +01005069 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06005070
5071 if (r->t == BC_RESULT_ARRAY_ELEM) {
5072 v = bc_vec_top(v);
5073 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
5074 *num = bc_vec_item(v, r->d.id.idx);
5075 }
5076 else
5077 *num = bc_vec_top(v);
5078
5079 break;
5080 }
5081
5082 case BC_RESULT_LAST:
5083 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005084 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005085 break;
5086 }
5087
5088 case BC_RESULT_ONE:
5089 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005090 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005091 break;
5092 }
5093 }
5094
Denys Vlasenko29301232018-12-11 15:29:32 +01005095 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005096}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005097#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005098
Denys Vlasenko29301232018-12-11 15:29:32 +01005099static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005100 BcResult **r, BcNum **rn, bool assign)
5101{
5102 BcStatus s;
5103 bool hex;
5104 BcResultType lt, rt;
5105
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005106 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005107 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005108
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005109 *r = bc_vec_item_rev(&G.prog.results, 0);
5110 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005111
5112 lt = (*l)->t;
5113 rt = (*r)->t;
5114 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5115
Denys Vlasenko29301232018-12-11 15:29:32 +01005116 s = zbc_program_num(*l, ln, false);
5117 if (s) RETURN_STATUS(s);
5118 s = zbc_program_num(*r, rn, hex);
5119 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005120
5121 // We run this again under these conditions in case any vector has been
5122 // reallocated out from under the BcNums or arrays we had.
5123 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005124 s = zbc_program_num(*l, ln, false);
5125 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005126 }
5127
5128 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005129 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005130 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005131 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005132
Denys Vlasenko29301232018-12-11 15:29:32 +01005133 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005134}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005135#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005136
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005137static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005138{
5139 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005140 bc_vec_pop(&G.prog.results);
5141 bc_vec_pop(&G.prog.results);
5142 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005143}
5144
Denys Vlasenko29301232018-12-11 15:29:32 +01005145static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005146{
5147 BcStatus s;
5148
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005149 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005150 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005151 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005152
Denys Vlasenko29301232018-12-11 15:29:32 +01005153 s = zbc_program_num(*r, n, false);
5154 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005155
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005156 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005157 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005158
Denys Vlasenko29301232018-12-11 15:29:32 +01005159 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005160}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005161#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005162
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005163static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005164{
5165 r->t = t;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005166 bc_vec_pop(&G.prog.results);
5167 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005168}
5169
Denys Vlasenko259137d2018-12-11 19:42:05 +01005170static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005171{
5172 BcStatus s;
5173 BcResult *opd1, *opd2, res;
5174 BcNum *n1, *n2 = NULL;
5175
Denys Vlasenko29301232018-12-11 15:29:32 +01005176 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005177 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005178 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005179
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005180 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005181 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 -06005182 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005183 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005184
Denys Vlasenko259137d2018-12-11 19:42:05 +01005185 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005186
5187err:
5188 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005189 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005190}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005191#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005192
Denys Vlasenko26819db2018-12-12 16:08:46 +01005193static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005194{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005195 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005196 BcStatus s;
5197 BcParse parse;
5198 BcVec buf;
5199 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005200 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005201
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005202 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005203 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005204
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005205 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005206 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005207
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005208 sv_file = G.prog.file;
5209 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005210 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005211
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005212 bc_char_vec_init(&buf);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01005213 bc_read_line(&buf, stdin);
Gavin Howard01055ba2018-11-03 11:00:21 -06005214
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005215 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005216 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005217
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005218 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005219 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005220 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005221 if (s) goto exec_err;
5222
5223 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005224 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005225 goto exec_err;
5226 }
5227
5228 ip.func = BC_PROG_READ;
5229 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005230 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005231
5232 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005233 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005234
5235 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005236 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005237
5238exec_err:
5239 bc_parse_free(&parse);
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005240 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005241 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005242 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005243 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005244}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005245#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005246
5247static size_t bc_program_index(char *code, size_t *bgn)
5248{
5249 char amt = code[(*bgn)++], i = 0;
5250 size_t res = 0;
5251
5252 for (; i < amt; ++i, ++(*bgn))
5253 res |= (((size_t)((int) code[*bgn]) & UCHAR_MAX) << (i * CHAR_BIT));
5254
5255 return res;
5256}
5257
5258static char *bc_program_name(char *code, size_t *bgn)
5259{
5260 size_t i;
5261 char c, *s, *str = code + *bgn, *ptr = strchr(str, BC_PARSE_STREND);
5262
5263 s = xmalloc(ptr - str + 1);
5264 c = code[(*bgn)++];
5265
5266 for (i = 0; c != 0 && c != BC_PARSE_STREND; c = code[(*bgn)++], ++i)
5267 s[i] = c;
5268
5269 s[i] = '\0';
5270
5271 return s;
5272}
5273
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005274static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005275{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005276#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005277 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005278 // Example: echo '[]ap' | dc
5279 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005280 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005281 return;
5282 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005283#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005284 while (*str) {
5285 int c = *str++;
5286 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005287 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005288 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005289 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005290 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005291 case 'a':
5292 bb_putchar('\a');
5293 break;
5294 case 'b':
5295 bb_putchar('\b');
5296 break;
5297 case '\\':
5298 case 'e':
5299 bb_putchar('\\');
5300 break;
5301 case 'f':
5302 bb_putchar('\f');
5303 break;
5304 case 'n':
5305 bb_putchar('\n');
5306 G.prog.nchars = SIZE_MAX;
5307 break;
5308 case 'r':
5309 bb_putchar('\r');
5310 break;
5311 case 'q':
5312 bb_putchar('"');
5313 break;
5314 case 't':
5315 bb_putchar('\t');
5316 break;
5317 default:
5318 // Just print the backslash and following character.
5319 bb_putchar('\\');
5320 ++G.prog.nchars;
5321 bb_putchar(c);
5322 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005323 }
5324 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005325 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005326 }
5327}
5328
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005329static void bc_num_printNewline(void)
5330{
5331 if (G.prog.nchars == G.prog.len - 1) {
5332 bb_putchar('\\');
5333 bb_putchar('\n');
5334 G.prog.nchars = 0;
5335 }
5336}
5337
5338#if ENABLE_DC
5339static FAST_FUNC void bc_num_printChar(size_t num, size_t width, bool radix)
5340{
5341 (void) radix;
5342 bb_putchar((char) num);
5343 G.prog.nchars += width;
5344}
5345#endif
5346
5347static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5348{
5349 size_t exp, pow;
5350
5351 bc_num_printNewline();
5352 bb_putchar(radix ? '.' : ' ');
5353 ++G.prog.nchars;
5354
5355 bc_num_printNewline();
5356 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5357 continue;
5358
5359 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5360 size_t dig;
5361 bc_num_printNewline();
5362 dig = num / pow;
5363 num -= dig * pow;
5364 bb_putchar(((char) dig) + '0');
5365 }
5366}
5367
5368static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5369{
5370 if (radix) {
5371 bc_num_printNewline();
5372 bb_putchar('.');
5373 G.prog.nchars += 1;
5374 }
5375
5376 bc_num_printNewline();
5377 bb_putchar(bb_hexdigits_upcase[num]);
5378 G.prog.nchars += width;
5379}
5380
5381static void bc_num_printDecimal(BcNum *n)
5382{
5383 size_t i, rdx = n->rdx - 1;
5384
5385 if (n->neg) bb_putchar('-');
5386 G.prog.nchars += n->neg;
5387
5388 for (i = n->len - 1; i < n->len; --i)
5389 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5390}
5391
5392static BC_STATUS zbc_num_printNum(BcNum *n, BcNum *base, size_t width, BcNumDigitOp print)
5393{
5394 BcStatus s;
5395 BcVec stack;
5396 BcNum intp, fracp, digit, frac_len;
5397 unsigned long dig, *ptr;
5398 size_t i;
5399 bool radix;
5400
5401 if (n->len == 0) {
5402 print(0, width, false);
5403 RETURN_STATUS(BC_STATUS_SUCCESS);
5404 }
5405
5406 bc_vec_init(&stack, sizeof(long), NULL);
5407 bc_num_init(&intp, n->len);
5408 bc_num_init(&fracp, n->rdx);
5409 bc_num_init(&digit, width);
5410 bc_num_init(&frac_len, BC_NUM_INT(n));
5411 bc_num_copy(&intp, n);
5412 bc_num_one(&frac_len);
5413
5414 bc_num_truncate(&intp, intp.rdx);
5415 s = zbc_num_sub(n, &intp, &fracp, 0);
5416 if (s) goto err;
5417
5418 while (intp.len != 0) {
5419 s = zbc_num_divmod(&intp, base, &intp, &digit, 0);
5420 if (s) goto err;
5421 s = zbc_num_ulong(&digit, &dig);
5422 if (s) goto err;
5423 bc_vec_push(&stack, &dig);
5424 }
5425
5426 for (i = 0; i < stack.len; ++i) {
5427 ptr = bc_vec_item_rev(&stack, i);
5428 print(*ptr, width, false);
5429 }
5430
5431 if (!n->rdx) goto err;
5432
5433 for (radix = true; frac_len.len <= n->rdx; radix = false) {
5434 s = zbc_num_mul(&fracp, base, &fracp, n->rdx);
5435 if (s) goto err;
5436 s = zbc_num_ulong(&fracp, &dig);
5437 if (s) goto err;
5438 bc_num_ulong2num(&intp, dig);
5439 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5440 if (s) goto err;
5441 print(dig, width, radix);
5442 s = zbc_num_mul(&frac_len, base, &frac_len, 0);
5443 if (s) goto err;
5444 }
5445
5446err:
5447 bc_num_free(&frac_len);
5448 bc_num_free(&digit);
5449 bc_num_free(&fracp);
5450 bc_num_free(&intp);
5451 bc_vec_free(&stack);
5452 RETURN_STATUS(s);
5453}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005454#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005455
5456static BC_STATUS zbc_num_printBase(BcNum *n)
5457{
5458 BcStatus s;
5459 size_t width, i;
5460 BcNumDigitOp print;
5461 bool neg = n->neg;
5462
5463 if (neg) {
5464 bb_putchar('-');
5465 G.prog.nchars++;
5466 }
5467
5468 n->neg = false;
5469
5470 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5471 width = 1;
5472 print = bc_num_printHex;
5473 }
5474 else {
5475 for (i = G.prog.ob_t - 1, width = 0; i != 0; i /= 10, ++width)
5476 continue;
5477 print = bc_num_printDigits;
5478 }
5479
5480 s = zbc_num_printNum(n, &G.prog.ob, width, print);
5481 n->neg = neg;
5482
5483 RETURN_STATUS(s);
5484}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005485#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005486
5487#if ENABLE_DC
5488static BC_STATUS zbc_num_stream(BcNum *n, BcNum *base)
5489{
5490 RETURN_STATUS(zbc_num_printNum(n, base, 1, bc_num_printChar));
5491}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005492#define zbc_num_stream(...) (zbc_num_stream(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005493#endif
5494
5495static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5496{
5497 BcStatus s = BC_STATUS_SUCCESS;
5498
5499 bc_num_printNewline();
5500
5501 if (n->len == 0) {
5502 bb_putchar('0');
5503 ++G.prog.nchars;
5504 }
5505 else if (G.prog.ob_t == 10)
5506 bc_num_printDecimal(n);
5507 else
5508 s = zbc_num_printBase(n);
5509
5510 if (newline) {
5511 bb_putchar('\n');
5512 G.prog.nchars = 0;
5513 }
5514
5515 RETURN_STATUS(s);
5516}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005517#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005518
Denys Vlasenko29301232018-12-11 15:29:32 +01005519static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005520{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005521 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005522 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005523 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005524 bool pop = inst != BC_INST_PRINT;
5525
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005526 if (!BC_PROG_STACK(&G.prog.results, idx + 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005527 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005528
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005529 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005530 num = NULL; // is this NULL necessary?
Denys Vlasenko29301232018-12-11 15:29:32 +01005531 s = zbc_program_num(r, &num, false);
5532 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005533
5534 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005535 s = zbc_num_print(num, !pop);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005536 if (!s) bc_num_copy(&G.prog.last, num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005537 }
5538 else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005539 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005540
5541 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005542 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005543
5544 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005545 for (;;) {
5546 char c = *str++;
5547 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005548 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005549 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005550 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005551 }
5552 }
5553 else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005554 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005555 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005556 }
5557 }
5558
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005559 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005560
Denys Vlasenko29301232018-12-11 15:29:32 +01005561 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005562}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005563#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005564
Denys Vlasenko29301232018-12-11 15:29:32 +01005565static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005566{
5567 BcStatus s;
5568 BcResult res, *ptr;
5569 BcNum *num = NULL;
5570
Denys Vlasenko29301232018-12-11 15:29:32 +01005571 s = zbc_program_prep(&ptr, &num);
5572 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005573
5574 bc_num_init(&res.d.n, num->len);
5575 bc_num_copy(&res.d.n, num);
5576 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5577
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005578 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005579
Denys Vlasenko29301232018-12-11 15:29:32 +01005580 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005581}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005582#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005583
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005584static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005585{
5586 BcStatus s;
5587 BcResult *opd1, *opd2, res;
5588 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005589 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005590
Denys Vlasenko29301232018-12-11 15:29:32 +01005591 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005592 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005593
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005594 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005595
5596 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005597 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005598 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005599 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005600 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005601 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005602 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005603 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005604 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005605 break;
5606 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005607 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005608 break;
5609 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005610 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005611 break;
5612 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005613 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005614 break;
5615 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005616 cond = (cond > 0);
5617 break;
5618 default: // = case BC_INST_REL_NE:
5619 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005620 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005621 }
5622 }
5623
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005624 if (cond) bc_num_one(&res.d.n);
5625 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005626
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005627 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005628
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005629 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005630}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005631#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005632
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005633#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01005634static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v,
Gavin Howard01055ba2018-11-03 11:00:21 -06005635 bool push)
5636{
5637 BcNum n2;
5638 BcResult res;
5639
5640 memset(&n2, 0, sizeof(BcNum));
5641 n2.rdx = res.d.id.idx = r->d.id.idx;
5642 res.t = BC_RESULT_STR;
5643
5644 if (!push) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005645 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005646 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005647 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005648 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005649 }
5650
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005651 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005652
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005653 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005654 bc_vec_push(v, &n2);
5655
Denys Vlasenko29301232018-12-11 15:29:32 +01005656 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005657}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005658#define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005659#endif // ENABLE_DC
5660
Denys Vlasenko29301232018-12-11 15:29:32 +01005661static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005662{
5663 BcStatus s;
5664 BcResult *ptr, r;
5665 BcVec *v;
5666 BcNum *n;
5667
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005668 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005669 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005670
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005671 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005672 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005673 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005674 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005675
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005676#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005677 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005678 RETURN_STATUS(bc_error_variable_is_wrong_type());
5679 if (ptr->t == BC_RESULT_STR)
5680 RETURN_STATUS(zbc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005681#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005682
Denys Vlasenko29301232018-12-11 15:29:32 +01005683 s = zbc_program_num(ptr, &n, false);
5684 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005685
5686 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005687 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005688
5689 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005690 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005691 bc_num_copy(&r.d.n, n);
5692 }
5693 else {
5694 bc_array_init(&r.d.v, true);
5695 bc_array_copy(&r.d.v, (BcVec *) n);
5696 }
5697
5698 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005699 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005700
Denys Vlasenko29301232018-12-11 15:29:32 +01005701 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005702}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005703#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005704
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005705static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005706{
5707 BcStatus s;
5708 BcResult *left, *right, res;
5709 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005710 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5711
Denys Vlasenko29301232018-12-11 15:29:32 +01005712 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005713 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005714
5715 ib = left->t == BC_RESULT_IBASE;
5716 sc = left->t == BC_RESULT_SCALE;
5717
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005718#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005719
5720 if (right->t == BC_RESULT_STR) {
5721
5722 BcVec *v;
5723
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005724 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005725 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005726 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005727
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005728 RETURN_STATUS(zbc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005729 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005730#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005731
5732 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005733 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005734 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005735 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005736 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005737
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005738#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005739 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005740 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005741
5742 if (assign)
5743 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005744 else {
5745 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005746 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 +01005747 }
5748 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005749#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005750 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005751#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005752
5753 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005754 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005755 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5756 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5757 NULL, //can't happen //BC_RESULT_LAST
5758 NULL, //can't happen //BC_RESULT_CONSTANT
5759 NULL, //can't happen //BC_RESULT_ONE
5760 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005761 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005762 size_t *ptr;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01005763 unsigned long val, max;
Gavin Howard01055ba2018-11-03 11:00:21 -06005764
Denys Vlasenko29301232018-12-11 15:29:32 +01005765 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005766 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005767 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005768 if (sc) {
5769 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005770 ptr = &G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06005771 }
5772 else {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005773 if (val < BC_NUM_MIN_BASE)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005774 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005775 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005776 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005777 }
5778
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005779 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005780 RETURN_STATUS(bc_error(msg[s]));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005781 if (!sc)
5782 bc_num_copy(ib ? &G.prog.ib : &G.prog.ob, l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005783
5784 *ptr = (size_t) val;
5785 s = BC_STATUS_SUCCESS;
5786 }
5787
5788 bc_num_init(&res.d.n, l->len);
5789 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005790 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005791
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005792 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005793}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005794#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005795
Denys Vlasenko416ce762018-12-02 20:57:17 +01005796#if !ENABLE_DC
5797#define bc_program_pushVar(code, bgn, pop, copy) \
5798 bc_program_pushVar(code, bgn)
5799// for bc, 'pop' and 'copy' are always false
5800#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005801static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005802 bool pop, bool copy)
5803{
Gavin Howard01055ba2018-11-03 11:00:21 -06005804 BcResult r;
5805 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06005806
5807 r.t = BC_RESULT_VAR;
5808 r.d.id.name = name;
5809
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005810#if ENABLE_DC
Denys Vlasenko416ce762018-12-02 20:57:17 +01005811 {
5812 BcVec *v = bc_program_search(name, true);
5813 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005814
Denys Vlasenko416ce762018-12-02 20:57:17 +01005815 if (pop || copy) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005816
Denys Vlasenko416ce762018-12-02 20:57:17 +01005817 if (!BC_PROG_STACK(v, 2 - copy)) {
5818 free(name);
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005819 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko416ce762018-12-02 20:57:17 +01005820 }
5821
Gavin Howard01055ba2018-11-03 11:00:21 -06005822 free(name);
Denys Vlasenko416ce762018-12-02 20:57:17 +01005823 name = NULL;
5824
5825 if (!BC_PROG_STR(num)) {
5826
5827 r.t = BC_RESULT_TEMP;
5828
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005829 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko416ce762018-12-02 20:57:17 +01005830 bc_num_copy(&r.d.n, num);
5831 }
5832 else {
5833 r.t = BC_RESULT_STR;
5834 r.d.id.idx = num->rdx;
5835 }
5836
5837 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005838 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005839 }
5840#endif // ENABLE_DC
5841
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005842 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005843
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005844 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005845}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005846#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005847
Denys Vlasenko29301232018-12-11 15:29:32 +01005848static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005849 char inst)
5850{
5851 BcStatus s = BC_STATUS_SUCCESS;
5852 BcResult r;
5853 BcNum *num;
5854
5855 r.d.id.name = bc_program_name(code, bgn);
5856
5857 if (inst == BC_INST_ARRAY) {
5858 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005859 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005860 }
5861 else {
5862
5863 BcResult *operand;
5864 unsigned long temp;
5865
Denys Vlasenko29301232018-12-11 15:29:32 +01005866 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005867 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01005868 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06005869 if (s) goto err;
5870
5871 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005872 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06005873 goto err;
5874 }
5875
5876 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005877 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06005878 }
5879
5880err:
5881 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01005882 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005883}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005884#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005885
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005886#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01005887static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005888{
5889 BcStatus s;
5890 BcResult *ptr, res, copy;
5891 BcNum *num = NULL;
5892 char inst2 = inst;
5893
Denys Vlasenko29301232018-12-11 15:29:32 +01005894 s = zbc_program_prep(&ptr, &num);
5895 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005896
5897 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
5898 copy.t = BC_RESULT_TEMP;
5899 bc_num_init(&copy.d.n, num->len);
5900 bc_num_copy(&copy.d.n, num);
5901 }
5902
5903 res.t = BC_RESULT_ONE;
5904 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
5905 BC_INST_ASSIGN_PLUS :
5906 BC_INST_ASSIGN_MINUS;
5907
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005908 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005909 s = zbc_program_assign(inst);
5910 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005911
5912 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005913 bc_vec_pop(&G.prog.results);
5914 bc_vec_push(&G.prog.results, &copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06005915 }
5916
Denys Vlasenko29301232018-12-11 15:29:32 +01005917 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005918}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005919#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005920
Denys Vlasenko29301232018-12-11 15:29:32 +01005921static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005922{
Gavin Howard01055ba2018-11-03 11:00:21 -06005923 BcInstPtr ip;
5924 size_t i, nparams = bc_program_index(code, idx);
5925 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06005926 BcId *a;
5927 BcResultData param;
5928 BcResult *arg;
5929
5930 ip.idx = 0;
5931 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005932 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005933
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005934 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005935 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005936 }
5937 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005938 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005939 }
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005940 ip.len = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005941
5942 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005943 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005944
5945 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005946 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005947
5948 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01005949 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005950
Denys Vlasenko29301232018-12-11 15:29:32 +01005951 s = zbc_program_copyToVar(a->name, a->idx);
5952 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005953 }
5954
5955 for (; i < func->autos.len; ++i) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01005956 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06005957
5958 a = bc_vec_item(&func->autos, i);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005959 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005960
5961 if (a->idx) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005962 bc_num_init_DEF_SIZE(&param.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005963 bc_vec_push(v, &param.n);
5964 }
5965 else {
5966 bc_array_init(&param.v, true);
5967 bc_vec_push(v, &param.v);
5968 }
5969 }
5970
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005971 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005972
Denys Vlasenko29301232018-12-11 15:29:32 +01005973 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005974}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005975#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005976
Denys Vlasenko29301232018-12-11 15:29:32 +01005977static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005978{
Gavin Howard01055ba2018-11-03 11:00:21 -06005979 BcResult res;
5980 BcFunc *f;
5981 size_t i;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005982 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005983
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005984 if (!BC_PROG_STACK(&G.prog.results, ip->len + inst == BC_INST_RET))
Denys Vlasenko29301232018-12-11 15:29:32 +01005985 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005986
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005987 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005988 res.t = BC_RESULT_TEMP;
5989
5990 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005991 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005992 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005993 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005994
Denys Vlasenko29301232018-12-11 15:29:32 +01005995 s = zbc_program_num(operand, &num, false);
5996 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005997 bc_num_init(&res.d.n, num->len);
5998 bc_num_copy(&res.d.n, num);
5999 }
6000 else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006001 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006002 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006003 }
6004
6005 // We need to pop arguments as well, so this takes that into account.
6006 for (i = 0; i < f->autos.len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006007 BcVec *v;
6008 BcId *a = bc_vec_item(&f->autos, i);
6009
Denys Vlasenkodf515392018-12-02 19:27:48 +01006010 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006011 bc_vec_pop(v);
6012 }
6013
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006014 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->len);
6015 bc_vec_push(&G.prog.results, &res);
6016 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006017
Denys Vlasenko29301232018-12-11 15:29:32 +01006018 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006019}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006020#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006021#endif // ENABLE_BC
6022
6023static unsigned long bc_program_scale(BcNum *n)
6024{
6025 return (unsigned long) n->rdx;
6026}
6027
6028static unsigned long bc_program_len(BcNum *n)
6029{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006030 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006031
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006032 if (n->rdx != len) return len;
6033 for (;;) {
6034 if (len == 0) break;
6035 len--;
6036 if (n->num[len] != 0) break;
6037 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006038 return len;
6039}
6040
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006041static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006042{
6043 BcStatus s;
6044 BcResult *opnd;
6045 BcNum *num = NULL;
6046 BcResult res;
6047 bool len = inst == BC_INST_LENGTH;
6048
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006049 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006050 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006051 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006052
Denys Vlasenko29301232018-12-11 15:29:32 +01006053 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006054 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006055
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006056#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006057 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006058 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006059#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006060
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006061 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006062
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006063 if (inst == BC_INST_SQRT) s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006064#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006065 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006066 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006067 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006068#endif
6069#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006070 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006071 char **str;
6072 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
6073
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006074 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006075 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06006076 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006077#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006078 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01006079 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06006080 }
6081
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006082 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006083
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006084 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006085}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006086#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006087
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006088#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006089static BC_STATUS zbc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006090{
6091 BcStatus s;
6092 BcResult *opd1, *opd2, res, res2;
6093 BcNum *n1, *n2 = NULL;
6094
Denys Vlasenko29301232018-12-11 15:29:32 +01006095 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006096 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006097
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006098 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006099 bc_num_init(&res2.d.n, n2->len);
6100
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006101 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006102 if (s) goto err;
6103
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006104 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006105 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006106 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006107
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006108 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006109
6110err:
6111 bc_num_free(&res2.d.n);
6112 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006113 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006114}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006115#define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006116
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006117static BC_STATUS zbc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006118{
6119 BcStatus s;
6120 BcResult *r1, *r2, *r3, res;
6121 BcNum *n1, *n2, *n3;
6122
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006123 if (!BC_PROG_STACK(&G.prog.results, 3))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006124 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006125 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006126 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006127
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006128 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006129 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006130 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006131 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006132 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006133
6134 // Make sure that the values have their pointers updated, if necessary.
6135 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
6136
6137 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006138 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006139 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006140 }
6141
6142 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006143 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006144 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006145 }
6146 }
6147
6148 bc_num_init(&res.d.n, n3->len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006149 s = zbc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006150 if (s) goto err;
6151
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006152 bc_vec_pop(&G.prog.results);
6153 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006154
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006155 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006156
6157err:
6158 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006159 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006160}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006161#define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006162
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006163static void bc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006164{
Gavin Howard01055ba2018-11-03 11:00:21 -06006165 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006166 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006167
6168 res.t = BC_RESULT_TEMP;
6169
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006170 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006171 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006172 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006173}
6174
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006175static BC_STATUS zbc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006176{
6177 BcStatus s;
6178 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006179 BcNum *num, n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006180 char *str, *str2, c;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006181 size_t len = G.prog.strs.len, idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006182 unsigned long val;
6183
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006184 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006185 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006186 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006187
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006188 num = NULL; // TODO: is this NULL needed?
Denys Vlasenko29301232018-12-11 15:29:32 +01006189 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006190 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006191
6192 if (BC_PROG_NUM(r, num)) {
6193
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006194 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006195 bc_num_copy(&n, num);
6196 bc_num_truncate(&n, n.rdx);
6197
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006198 s = zbc_num_mod(&n, &G.prog.strmb, &n, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006199 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006200 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006201 if (s) goto num_err;
6202
6203 c = (char) val;
6204
6205 bc_num_free(&n);
6206 }
6207 else {
6208 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006209 str2 = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006210 c = str2[0];
6211 }
6212
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006213 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006214 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006215 //str[1] = '\0'; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006216
6217 str2 = xstrdup(str);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006218 bc_program_addFunc(str2, &idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006219
6220 if (idx != len + BC_PROG_REQ_FUNCS) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006221 for (idx = 0; idx < G.prog.strs.len; ++idx) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006222 if (strcmp(*bc_program_str(idx), str) == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006223 len = idx;
6224 break;
6225 }
6226 }
6227
6228 free(str);
6229 }
6230 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006231 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006232
6233 res.t = BC_RESULT_STR;
6234 res.d.id.idx = len;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006235 bc_vec_pop(&G.prog.results);
6236 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006237
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006238 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006239
6240num_err:
6241 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006242 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006243}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006244#define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006245
Denys Vlasenko29301232018-12-11 15:29:32 +01006246static BC_STATUS zbc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006247{
6248 BcStatus s;
6249 BcResult *r;
6250 BcNum *n = NULL;
6251 size_t idx;
6252 char *str;
6253
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006254 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01006255 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006256 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006257
Denys Vlasenko29301232018-12-11 15:29:32 +01006258 s = zbc_program_num(r, &n, false);
6259 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006260
6261 if (BC_PROG_NUM(r, n))
Denys Vlasenko29301232018-12-11 15:29:32 +01006262 s = zbc_num_stream(n, &G.prog.strmb);
Gavin Howard01055ba2018-11-03 11:00:21 -06006263 else {
6264 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006265 str = *bc_program_str(idx);
Denys Vlasenko00d77792018-11-30 23:13:42 +01006266 printf("%s", str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006267 }
6268
Denys Vlasenko29301232018-12-11 15:29:32 +01006269 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006270}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006271#define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006272
Denys Vlasenko29301232018-12-11 15:29:32 +01006273static BC_STATUS zbc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006274{
6275 BcStatus s;
6276 BcResult *opnd;
6277 BcNum *num = NULL;
6278 unsigned long val;
6279
Denys Vlasenko29301232018-12-11 15:29:32 +01006280 s = zbc_program_prep(&opnd, &num);
6281 if (s) RETURN_STATUS(s);
6282 s = zbc_num_ulong(num, &val);
6283 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006284
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006285 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006286
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006287 if (G.prog.stack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006288 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006289 if (G.prog.stack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006290 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006291 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006292
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006293 bc_vec_npop(&G.prog.stack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006294
Denys Vlasenko29301232018-12-11 15:29:32 +01006295 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006296}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006297#define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006298
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006299static BC_STATUS zbc_program_execStr(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06006300 bool cond)
6301{
6302 BcStatus s = BC_STATUS_SUCCESS;
6303 BcResult *r;
6304 char **str;
6305 BcFunc *f;
6306 BcParse prs;
6307 BcInstPtr ip;
6308 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006309
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006310 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006311 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006312
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006313 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006314
6315 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006316 BcNum *n = n; // for compiler
6317 bool exec;
6318 char *name;
6319 char *then_name = bc_program_name(code, bgn);
6320 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006321
6322 if (code[*bgn] == BC_PARSE_STREND)
6323 (*bgn) += 1;
6324 else
6325 else_name = bc_program_name(code, bgn);
6326
6327 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006328 name = then_name;
6329 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006330 exec = true;
6331 name = else_name;
6332 }
6333
6334 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006335 BcVec *v;
6336 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006337 n = bc_vec_top(v);
6338 }
6339
6340 free(then_name);
6341 free(else_name);
6342
6343 if (!exec) goto exit;
6344 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006345 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006346 goto exit;
6347 }
6348
6349 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006350 } else {
6351 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006352 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006353 } else if (r->t == BC_RESULT_VAR) {
6354 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006355 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006356 if (s || !BC_PROG_STR(n)) goto exit;
6357 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006358 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006359 goto exit;
6360 }
6361
6362 fidx = sidx + BC_PROG_REQ_FUNCS;
6363
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006364 str = bc_program_str(sidx);
6365 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006366
6367 if (f->code.len == 0) {
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006368 bc_parse_create(&prs, fidx);
Denys Vlasenkof86e9602018-12-14 17:01:56 +01006369 s = zbc_parse_text_init(&prs, *str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006370 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006371 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006372 if (s) goto err;
6373
6374 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006375 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06006376 goto err;
6377 }
6378
6379 bc_parse_free(&prs);
6380 }
6381
6382 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006383 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006384 ip.func = fidx;
6385
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006386 bc_vec_pop(&G.prog.results);
6387 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006388
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006389 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006390
6391err:
6392 bc_parse_free(&prs);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006393 f = bc_program_func(fidx);
Denys Vlasenko7d628012018-12-04 21:46:47 +01006394 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06006395exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006396 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006397 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006398}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006399#define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006400#endif // ENABLE_DC
6401
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006402static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006403{
Gavin Howard01055ba2018-11-03 11:00:21 -06006404 BcResult res;
6405 unsigned long val;
6406
6407 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6408 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006409 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006410 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006411 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006412 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006413 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006414
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006415 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006416 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006417 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006418}
6419
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006420static void bc_program_addFunc(char *name, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06006421{
Gavin Howard01055ba2018-11-03 11:00:21 -06006422 BcId entry, *entry_ptr;
6423 BcFunc f;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006424 int inserted;
Gavin Howard01055ba2018-11-03 11:00:21 -06006425
6426 entry.name = name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006427 entry.idx = G.prog.fns.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006428
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006429 inserted = bc_map_insert(&G.prog.fn_map, &entry, idx);
6430 if (!inserted) free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06006431
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006432 entry_ptr = bc_vec_item(&G.prog.fn_map, *idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006433 *idx = entry_ptr->idx;
6434
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006435 if (!inserted) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006436
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006437 BcFunc *func = bc_program_func(entry_ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006438
6439 // We need to reset these, so the function can be repopulated.
6440 func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01006441 bc_vec_pop_all(&func->autos);
6442 bc_vec_pop_all(&func->code);
6443 bc_vec_pop_all(&func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06006444 }
6445 else {
6446 bc_func_init(&f);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006447 bc_vec_push(&G.prog.fns, &f);
Gavin Howard01055ba2018-11-03 11:00:21 -06006448 }
6449}
6450
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006451static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006452{
Gavin Howard01055ba2018-11-03 11:00:21 -06006453 BcResult r, *ptr;
6454 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006455 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006456 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006457 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006458
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006459 while (ip->idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006460 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06006461 char inst = code[(ip->idx)++];
6462
Denys Vlasenko99b37622018-12-15 20:06:59 +01006463 dbg_exec("inst:%d", inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006464 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006465#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006466 case BC_INST_JUMP_ZERO: {
6467 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006468 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006469 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006470 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006471 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006472 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006473 if (!zero) {
6474 bc_program_index(code, &ip->idx);
6475 break;
6476 }
6477 // else: fall through
6478 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006479 case BC_INST_JUMP: {
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006480 size_t idx = bc_program_index(code, &ip->idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006481 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006482 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006483 ip->idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006484 break;
6485 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006486 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006487 dbg_exec("BC_INST_CALL:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006488 s = zbc_program_call(code, &ip->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006489 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006490 case BC_INST_INC_PRE:
6491 case BC_INST_DEC_PRE:
6492 case BC_INST_INC_POST:
6493 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006494 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006495 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006496 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006497 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006498 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006499 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006500 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006501 case BC_INST_RET:
6502 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006503 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006504 s = zbc_program_return(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006505 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006506 case BC_INST_BOOL_OR:
6507 case BC_INST_BOOL_AND:
6508#endif // ENABLE_BC
6509 case BC_INST_REL_EQ:
6510 case BC_INST_REL_LE:
6511 case BC_INST_REL_GE:
6512 case BC_INST_REL_NE:
6513 case BC_INST_REL_LT:
6514 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006515 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006516 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006517 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006518 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006519 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006520 s = zbc_program_read();
Gavin Howard01055ba2018-11-03 11:00:21 -06006521 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006522 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006523 dbg_exec("BC_INST_VAR:");
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006524 s = zbc_program_pushVar(code, &ip->idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006525 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006526 case BC_INST_ARRAY_ELEM:
6527 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006528 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006529 s = zbc_program_pushArray(code, &ip->idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006530 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006531 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006532 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006533 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006534 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006535 case BC_INST_IBASE:
6536 case BC_INST_SCALE:
6537 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006538 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006539 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006540 case BC_INST_SCALE_FUNC:
6541 case BC_INST_LENGTH:
6542 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006543 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006544 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006545 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006546 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006547 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006548 r.t = BC_RESULT_CONSTANT;
6549 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006550 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006551 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006552 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006553 dbg_exec("BC_INST_POP:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006554 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006555 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006556 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006557 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006558 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006559 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006560 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006561 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006562 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006563 case BC_INST_PRINT:
6564 case BC_INST_PRINT_POP:
6565 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006566 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006567 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006568 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006569 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006570 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006571 r.t = BC_RESULT_STR;
6572 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006573 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006574 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006575 case BC_INST_POWER:
6576 case BC_INST_MULTIPLY:
6577 case BC_INST_DIVIDE:
6578 case BC_INST_MODULUS:
6579 case BC_INST_PLUS:
6580 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006581 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006582 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006583 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006584 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006585 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006586 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006587 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006588 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006589 if (!bc_num_cmp(num, &G.prog.zero))
6590 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006591 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006592 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006593 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006594 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006595 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006596 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006597 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006598#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006599 case BC_INST_ASSIGN_POWER:
6600 case BC_INST_ASSIGN_MULTIPLY:
6601 case BC_INST_ASSIGN_DIVIDE:
6602 case BC_INST_ASSIGN_MODULUS:
6603 case BC_INST_ASSIGN_PLUS:
6604 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006605#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006606 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006607 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006608 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006609 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006610#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006611 case BC_INST_MODEXP:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006612 s = zbc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006613 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006614 case BC_INST_DIVMOD:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006615 s = zbc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006616 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006617 case BC_INST_EXECUTE:
6618 case BC_INST_EXEC_COND:
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006619 s = zbc_program_execStr(code, &ip->idx, inst == BC_INST_EXEC_COND);
Gavin Howard01055ba2018-11-03 11:00:21 -06006620 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006621 case BC_INST_PRINT_STACK: {
6622 size_t idx;
6623 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006624 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006625 if (s) break;
6626 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006627 break;
6628 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006629 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006630 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006631 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006632 case BC_INST_STACK_LEN:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006633 bc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006634 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006635 case BC_INST_DUPLICATE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006636 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006637 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006638 ptr = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006639 bc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006640 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006641 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006642 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006643 BcResult *ptr2;
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006644 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006645 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006646 ptr = bc_vec_item_rev(&G.prog.results, 0);
6647 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006648 memcpy(&r, ptr, sizeof(BcResult));
6649 memcpy(ptr, ptr2, sizeof(BcResult));
6650 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006651 break;
6652 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006653 case BC_INST_ASCIIFY:
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006654 s = zbc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006655 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006656 case BC_INST_PRINT_STREAM:
Denys Vlasenko29301232018-12-11 15:29:32 +01006657 s = zbc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006658 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006659 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006660 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006661 bool copy = inst == BC_INST_LOAD;
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006662 s = zbc_program_pushVar(code, &ip->idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006663 break;
6664 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006665 case BC_INST_PUSH_TO_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006666 char *name = bc_program_name(code, &ip->idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006667 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006668 free(name);
6669 break;
6670 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006671 case BC_INST_QUIT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006672 dbg_exec("BC_INST_NEG:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006673 if (G.prog.stack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006674 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01006675 bc_vec_npop(&G.prog.stack, 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006676 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006677 case BC_INST_NQUIT:
Denys Vlasenko29301232018-12-11 15:29:32 +01006678 s = zbc_program_nquit();
Gavin Howard01055ba2018-11-03 11:00:21 -06006679 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006680#endif // ENABLE_DC
6681 }
6682
Denys Vlasenkod38af482018-12-04 19:11:02 +01006683 if (s || G_interrupt) {
6684 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006685 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006686 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006687
Denys Vlasenkoc5774a32018-12-17 01:22:53 +01006688 fflush_and_check();
6689
Gavin Howard01055ba2018-11-03 11:00:21 -06006690 // If the stack has changed, pointers may be invalid.
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006691 ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006692 func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006693 code = func->code.v;
6694 }
6695
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006696 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006697}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006698#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006699
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006700static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006701{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006702 char *lenv;
6703 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006704
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006705 lenv = getenv(var);
6706 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006707 if (!lenv) return len;
6708
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006709 len = bb_strtou(lenv, NULL, 10) - 1;
6710 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006711 len = BC_NUM_PRINT_WIDTH;
6712
6713 return len;
6714}
6715
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006716static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006717{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006718 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006719
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006720 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6721 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006722 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006723
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006724 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006725 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoec603182018-12-17 10:34:02 +01006726 s = zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006727 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006728 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006729 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006730 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006731 break;
6732 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006733 }
6734
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006735 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006736 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006737}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006738#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006739
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006740static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
Gavin Howard01055ba2018-11-03 11:00:21 -06006741{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006742 // So far bc/dc have no way to include a file from another file,
6743 // therefore we know G.prog.file == NULL on entry
6744 //const char *sv_file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006745 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006746
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006747 G.prog.file = filename;
6748 G.input_fp = fp;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006749 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06006750
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006751 do {
6752 s = zbc_vm_process("");
6753 // We do not stop looping on errors here if reading stdin.
6754 // Example: start interactive bc and enter "return".
6755 // It should say "'return' not in a function"
6756 // but should not exit.
6757 } while (G.input_fp == stdin);
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006758 G.prog.file = NULL;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006759 RETURN_STATUS(s);
6760}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006761#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006762
6763static BC_STATUS zbc_vm_file(const char *file)
6764{
6765 BcStatus s;
6766 FILE *fp;
6767
6768 fp = xfopen_for_read(file);
6769 s = zbc_vm_execute_FILE(fp, file);
6770 fclose(fp);
6771
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006772 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006773}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006774#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006775
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006776#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01006777static void bc_vm_info(void)
6778{
6779 printf("%s "BB_VER"\n"
6780 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
6781 , applet_name);
6782}
6783
6784static void bc_args(char **argv)
6785{
6786 unsigned opts;
6787 int i;
6788
6789 GETOPT_RESET();
6790#if ENABLE_FEATURE_BC_LONG_OPTIONS
6791 opts = option_mask32 |= getopt32long(argv, "wvsqli",
6792 "warn\0" No_argument "w"
6793 "version\0" No_argument "v"
6794 "standard\0" No_argument "s"
6795 "quiet\0" No_argument "q"
6796 "mathlib\0" No_argument "l"
6797 "interactive\0" No_argument "i"
6798 );
6799#else
6800 opts = option_mask32 |= getopt32(argv, "wvsqli");
6801#endif
6802 if (getenv("POSIXLY_CORRECT"))
6803 option_mask32 |= BC_FLAG_S;
6804
6805 if (opts & BC_FLAG_V) {
6806 bc_vm_info();
6807 exit(0);
6808 }
6809
6810 for (i = optind; argv[i]; ++i)
6811 bc_vec_push(&G.files, argv + i);
6812}
6813
6814static void bc_vm_envArgs(void)
6815{
6816 BcVec v;
6817 char *buf;
6818 char *env_args = getenv("BC_ENV_ARGS");
6819
6820 if (!env_args) return;
6821
6822 G.env_args = xstrdup(env_args);
6823 buf = G.env_args;
6824
6825 bc_vec_init(&v, sizeof(char *), NULL);
6826
6827 while (*(buf = skip_whitespace(buf)) != '\0') {
6828 bc_vec_push(&v, &buf);
6829 buf = skip_non_whitespace(buf);
6830 if (!*buf)
6831 break;
6832 *buf++ = '\0';
6833 }
6834
6835 // NULL terminate, and pass argv[] so that first arg is argv[1]
6836 if (sizeof(int) == sizeof(char*)) {
6837 bc_vec_push(&v, &const_int_0);
6838 } else {
6839 static char *const nullptr = NULL;
6840 bc_vec_push(&v, &nullptr);
6841 }
6842 bc_args(((char **)v.v) - 1);
6843
6844 bc_vec_free(&v);
6845}
6846
6847static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006848 "scale=20"
6849"\n" "define e(x){"
6850"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006851////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
6852//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
6853//e(-.998896): GNU:.36828580434569428695
6854// above code:.36828580434569428696
6855// actual value:.3682858043456942869594...
6856// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006857"\n" "b=ibase"
6858"\n" "ibase=A"
6859"\n" "if(x<0){"
6860"\n" "n=1"
6861"\n" "x=-x"
6862"\n" "}"
6863"\n" "s=scale"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006864"\n" "r=6+s+.44*x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006865"\n" "scale=scale(x)+1"
6866"\n" "while(x>1){"
6867"\n" "d+=1"
6868"\n" "x/=2"
6869"\n" "scale+=1"
6870"\n" "}"
6871"\n" "scale=r"
6872"\n" "r=x+1"
6873"\n" "p=x"
6874"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006875"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006876"\n" "p*=x"
6877"\n" "f*=i"
6878"\n" "v=p/f"
6879"\n" "r+=v"
6880"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006881"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006882"\n" "scale=s"
6883"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006884"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006885"\n" "return(r/1)"
6886"\n" "}"
6887"\n" "define l(x){"
6888"\n" "auto b,s,r,p,a,q,i,v"
6889"\n" "b=ibase"
6890"\n" "ibase=A"
6891"\n" "if(x<=0){"
6892"\n" "r=(1-10^scale)/1"
6893"\n" "ibase=b"
6894"\n" "return(r)"
6895"\n" "}"
6896"\n" "s=scale"
6897"\n" "scale+=6"
6898"\n" "p=2"
6899"\n" "while(x>=2){"
6900"\n" "p*=2"
6901"\n" "x=sqrt(x)"
6902"\n" "}"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006903"\n" "while(x<=.5){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006904"\n" "p*=2"
6905"\n" "x=sqrt(x)"
6906"\n" "}"
6907"\n" "r=a=(x-1)/(x+1)"
6908"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006909"\n" "v=1"
6910"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006911"\n" "a*=q"
6912"\n" "v=a/i"
6913"\n" "r+=v"
6914"\n" "}"
6915"\n" "r*=p"
6916"\n" "scale=s"
6917"\n" "ibase=b"
6918"\n" "return(r/1)"
6919"\n" "}"
6920"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01006921"\n" "auto b,s,r,a,q,i"
6922"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006923"\n" "b=ibase"
6924"\n" "ibase=A"
6925"\n" "s=scale"
6926"\n" "scale=1.1*s+2"
6927"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006928"\n" "scale=0"
6929"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006930"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006931"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006932"\n" "scale=s+2"
6933"\n" "r=a=x"
6934"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006935"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006936"\n" "a*=q/(i*(i-1))"
6937"\n" "r+=a"
6938"\n" "}"
6939"\n" "scale=s"
6940"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006941"\n" "return(r/1)"
6942"\n" "}"
6943"\n" "define c(x){"
6944"\n" "auto b,s"
6945"\n" "b=ibase"
6946"\n" "ibase=A"
6947"\n" "s=scale"
6948"\n" "scale*=1.2"
6949"\n" "x=s(2*a(1)+x)"
6950"\n" "scale=s"
6951"\n" "ibase=b"
6952"\n" "return(x/1)"
6953"\n" "}"
6954"\n" "define a(x){"
6955"\n" "auto b,s,r,n,a,m,t,f,i,u"
6956"\n" "b=ibase"
6957"\n" "ibase=A"
6958"\n" "n=1"
6959"\n" "if(x<0){"
6960"\n" "n=-1"
6961"\n" "x=-x"
6962"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006963"\n" "if(scale<65){"
6964"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
6965"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006966"\n" "}"
6967"\n" "s=scale"
6968"\n" "if(x>.2){"
6969"\n" "scale+=5"
6970"\n" "a=a(.2)"
6971"\n" "}"
6972"\n" "scale=s+3"
6973"\n" "while(x>.2){"
6974"\n" "m+=1"
6975"\n" "x=(x-.2)/(1+.2*x)"
6976"\n" "}"
6977"\n" "r=u=x"
6978"\n" "f=-x*x"
6979"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006980"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006981"\n" "u*=f"
6982"\n" "t=u/i"
6983"\n" "r+=t"
6984"\n" "}"
6985"\n" "scale=s"
6986"\n" "ibase=b"
6987"\n" "return((m*a+r)/n)"
6988"\n" "}"
6989"\n" "define j(n,x){"
6990"\n" "auto b,s,o,a,i,v,f"
6991"\n" "b=ibase"
6992"\n" "ibase=A"
6993"\n" "s=scale"
6994"\n" "scale=0"
6995"\n" "n/=1"
6996"\n" "if(n<0){"
6997"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006998"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006999"\n" "}"
7000"\n" "a=1"
7001"\n" "for(i=2;i<=n;++i)a*=i"
7002"\n" "scale=1.5*s"
7003"\n" "a=(x^n)/2^n/a"
7004"\n" "r=v=1"
7005"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01007006"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007007"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007008"\n" "v=v*f/i/(n+i)"
7009"\n" "r+=v"
7010"\n" "}"
7011"\n" "scale=s"
7012"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007013"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007014"\n" "return(a*r/1)"
7015"\n" "}"
7016};
7017#endif // ENABLE_BC
7018
Denys Vlasenko19f11072018-12-12 22:48:19 +01007019static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007020{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007021 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06007022 size_t i;
7023
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007024#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01007025 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007026 // We know that internal library is not buggy,
7027 // thus error checking is normally disabled.
7028# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01007029 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01007030 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01007031 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007032 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007033#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007034
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007035 s = BC_STATUS_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007036 for (i = 0; !s && i < G.files.len; ++i)
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007037 s = zbc_vm_file(*((char **) bc_vec_item(&G.files, i)));
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007038 if (ENABLE_FEATURE_CLEAN_UP && s && !G_ttyin) {
7039 // Debug config, non-interactive mode:
7040 // return all the way back to main.
7041 // Non-debug builds do not come here, they exit.
Denys Vlasenko19f11072018-12-12 22:48:19 +01007042 RETURN_STATUS(s);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01007043 }
Gavin Howard01055ba2018-11-03 11:00:21 -06007044
Denys Vlasenko91cde952018-12-10 20:56:08 +01007045 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007046 s = zbc_vm_execute_FILE(stdin, /*filename:*/ NULL);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007047
Denys Vlasenko19f11072018-12-12 22:48:19 +01007048 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007049}
Denys Vlasenkoec603182018-12-17 10:34:02 +01007050#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06007051
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007052#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007053static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007054{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007055 bc_num_free(&G.prog.ib);
7056 bc_num_free(&G.prog.ob);
7057 bc_num_free(&G.prog.hexb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007058# if ENABLE_DC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007059 bc_num_free(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007060# endif
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007061 bc_vec_free(&G.prog.fns);
7062 bc_vec_free(&G.prog.fn_map);
7063 bc_vec_free(&G.prog.vars);
7064 bc_vec_free(&G.prog.var_map);
7065 bc_vec_free(&G.prog.arrs);
7066 bc_vec_free(&G.prog.arr_map);
7067 bc_vec_free(&G.prog.strs);
7068 bc_vec_free(&G.prog.consts);
7069 bc_vec_free(&G.prog.results);
7070 bc_vec_free(&G.prog.stack);
7071 bc_num_free(&G.prog.last);
7072 bc_num_free(&G.prog.zero);
7073 bc_num_free(&G.prog.one);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007074 bc_vec_free(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007075}
7076
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007077static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007078{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007079 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007080 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007081 bc_parse_free(&G.prs);
7082 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06007083}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007084#endif
7085
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007086static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007087{
7088 size_t idx;
7089 BcInstPtr ip;
7090
Denys Vlasenko82269122018-12-14 16:30:56 +01007091 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007092 memset(&ip, 0, sizeof(BcInstPtr));
7093
Denys Vlasenko82269122018-12-14 16:30:56 +01007094 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007095 bc_num_init_DEF_SIZE(&G.prog.ib);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007096 bc_num_ten(&G.prog.ib);
7097 G.prog.ib_t = 10;
7098
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007099 bc_num_init_DEF_SIZE(&G.prog.ob);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007100 bc_num_ten(&G.prog.ob);
7101 G.prog.ob_t = 10;
7102
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007103 bc_num_init_DEF_SIZE(&G.prog.hexb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007104 bc_num_ten(&G.prog.hexb);
7105 G.prog.hexb.num[0] = 6;
7106
7107#if ENABLE_DC
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007108 bc_num_init_DEF_SIZE(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007109 bc_num_ulong2num(&G.prog.strmb, UCHAR_MAX + 1);
7110#endif
7111
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007112 bc_num_init_DEF_SIZE(&G.prog.last);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007113 //bc_num_zero(&G.prog.last); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007114
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007115 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007116 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007117
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007118 bc_num_init_DEF_SIZE(&G.prog.one);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007119 bc_num_one(&G.prog.one);
7120
7121 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007122 bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007123
Denys Vlasenko1f67e932018-12-03 00:08:59 +01007124 bc_program_addFunc(xstrdup("(main)"), &idx);
7125 bc_program_addFunc(xstrdup("(read)"), &idx);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007126
7127 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007128 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007129
7130 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007131 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007132
7133 bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);
7134 bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);
7135 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
7136 bc_vec_init(&G.prog.stack, sizeof(BcInstPtr), NULL);
7137 bc_vec_push(&G.prog.stack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007138
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007139 bc_char_vec_init(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007140}
Gavin Howard01055ba2018-11-03 11:00:21 -06007141
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007142static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007143{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007144#if ENABLE_FEATURE_EDITING
7145 G.line_input_state = new_line_input_t(DO_HISTORY);
7146#endif
7147 G.prog.len = bc_vm_envLen(env_len);
7148
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007149 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007150 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007151 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007152 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007153
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007154//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7155//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007156 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007157#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007158 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007159 // With SA_RESTART, most system calls will restart
7160 // (IOW: they won't fail with EINTR).
7161 // In particular, this means ^C won't cause
7162 // stdout to get into "error state" if SIGINT hits
7163 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007164 //
7165 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007166 // will only be handled after [Enter] since read()
7167 // from stdin is not interrupted by ^C either,
7168 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007169 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007170 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7171
7172 // Without SA_RESTART, this exhibits a bug:
7173 // "while (1) print 1" and try ^C-ing it.
7174 // Intermittently, instead of returning to input line,
7175 // you'll get "output error: Interrupted system call"
7176 // and exit.
7177 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007178#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007179 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007180 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007181 return 0; // "not a tty"
7182}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007183
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007184static BcStatus bc_vm_run(void)
7185{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007186 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007187#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007188 if (G_exiting) // it was actually "halt" or "quit"
7189 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007190 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007191# if ENABLE_FEATURE_EDITING
7192 free_line_input_t(G.line_input_state);
7193# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007194 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007195#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007196 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007197 return st;
7198}
7199
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007200#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007201int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007202int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007203{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007204 int is_tty;
7205
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007206 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007207
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007208 is_tty = bc_vm_init("BC_LINE_LENGTH");
7209
7210 bc_args(argv);
7211
7212 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7213 bc_vm_info();
7214
7215 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007216}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007217#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007218
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007219#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007220int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007221int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007222{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007223 int noscript;
7224
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007225 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007226
7227 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7228 // 1 char wider than bc from the same package.
7229 // Both default width, and xC_LINE_LENGTH=N are wider:
7230 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007231 // |1234\ |
7232 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007233 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007234 // |123\ |
7235 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007236 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007237 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007238
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007239 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7240 noscript = BC_FLAG_I;
7241 for (;;) {
7242 int n = getopt(argc, argv, "e:f:x");
7243 if (n <= 0)
7244 break;
7245 switch (n) {
7246 case 'e':
7247 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007248 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007249 if (n) return n;
7250 break;
7251 case 'f':
7252 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007253 n = zbc_vm_file(optarg);
7254 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007255 break;
7256 case 'x':
7257 option_mask32 |= DC_FLAG_X;
7258 break;
7259 default:
7260 bb_show_usage();
7261 }
7262 }
7263 argv += optind;
7264
7265 while (*argv) {
7266 noscript = 0;
7267 bc_vec_push(&G.files, argv++);
7268 }
7269
7270 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7271
7272 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007273}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007274#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007275
7276#endif // not DC_SMALL