blob: 95ba8b09439fe30dc3d51bb5268d26a28c8eae6f [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 {
393
394 BC_LEX_EOF,
395 BC_LEX_INVALID,
396
397 BC_LEX_OP_INC,
398 BC_LEX_OP_DEC,
399
400 BC_LEX_NEG,
401
402 BC_LEX_OP_POWER,
403 BC_LEX_OP_MULTIPLY,
404 BC_LEX_OP_DIVIDE,
405 BC_LEX_OP_MODULUS,
406 BC_LEX_OP_PLUS,
407 BC_LEX_OP_MINUS,
408
409 BC_LEX_OP_REL_EQ,
410 BC_LEX_OP_REL_LE,
411 BC_LEX_OP_REL_GE,
412 BC_LEX_OP_REL_NE,
413 BC_LEX_OP_REL_LT,
414 BC_LEX_OP_REL_GT,
415
416 BC_LEX_OP_BOOL_NOT,
417 BC_LEX_OP_BOOL_OR,
418 BC_LEX_OP_BOOL_AND,
419
420 BC_LEX_OP_ASSIGN_POWER,
421 BC_LEX_OP_ASSIGN_MULTIPLY,
422 BC_LEX_OP_ASSIGN_DIVIDE,
423 BC_LEX_OP_ASSIGN_MODULUS,
424 BC_LEX_OP_ASSIGN_PLUS,
425 BC_LEX_OP_ASSIGN_MINUS,
426 BC_LEX_OP_ASSIGN,
427
428 BC_LEX_NLINE,
429 BC_LEX_WHITESPACE,
430
431 BC_LEX_LPAREN,
432 BC_LEX_RPAREN,
433
434 BC_LEX_LBRACKET,
435 BC_LEX_COMMA,
436 BC_LEX_RBRACKET,
437
438 BC_LEX_LBRACE,
439 BC_LEX_SCOLON,
440 BC_LEX_RBRACE,
441
442 BC_LEX_STR,
443 BC_LEX_NAME,
444 BC_LEX_NUMBER,
445
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100446 BC_LEX_KEY_1st_keyword,
447 BC_LEX_KEY_AUTO = BC_LEX_KEY_1st_keyword,
Gavin Howard01055ba2018-11-03 11:00:21 -0600448 BC_LEX_KEY_BREAK,
449 BC_LEX_KEY_CONTINUE,
450 BC_LEX_KEY_DEFINE,
451 BC_LEX_KEY_ELSE,
452 BC_LEX_KEY_FOR,
453 BC_LEX_KEY_HALT,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100454 // code uses "type - BC_LEX_KEY_IBASE + BC_INST_IBASE" construct,
455 BC_LEX_KEY_IBASE, // relative order should match for: BC_INST_IBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600456 BC_LEX_KEY_IF,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100457 BC_LEX_KEY_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600458 BC_LEX_KEY_LENGTH,
459 BC_LEX_KEY_LIMITS,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100460 BC_LEX_KEY_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600461 BC_LEX_KEY_PRINT,
462 BC_LEX_KEY_QUIT,
463 BC_LEX_KEY_READ,
464 BC_LEX_KEY_RETURN,
465 BC_LEX_KEY_SCALE,
466 BC_LEX_KEY_SQRT,
467 BC_LEX_KEY_WHILE,
468
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100469#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600470 BC_LEX_EQ_NO_REG,
471 BC_LEX_OP_MODEXP,
472 BC_LEX_OP_DIVMOD,
473
474 BC_LEX_COLON,
475 BC_LEX_ELSE,
476 BC_LEX_EXECUTE,
477 BC_LEX_PRINT_STACK,
478 BC_LEX_CLEAR_STACK,
479 BC_LEX_STACK_LEVEL,
480 BC_LEX_DUPLICATE,
481 BC_LEX_SWAP,
482 BC_LEX_POP,
483
484 BC_LEX_ASCIIFY,
485 BC_LEX_PRINT_STREAM,
486
487 BC_LEX_STORE_IBASE,
488 BC_LEX_STORE_SCALE,
489 BC_LEX_LOAD,
490 BC_LEX_LOAD_POP,
491 BC_LEX_STORE_PUSH,
492 BC_LEX_STORE_OBASE,
493 BC_LEX_PRINT_POP,
494 BC_LEX_NQUIT,
495 BC_LEX_SCALE_FACTOR,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100496#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600497} BcLexType;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100498// must match order of BC_LEX_KEY_foo etc above
499#if ENABLE_BC
500struct BcLexKeyword {
501 char name8[8];
502};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100503#define BC_LEX_KW_ENTRY(a, b) \
504 { .name8 = a /*, .posix = b */ }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100505static const struct BcLexKeyword bc_lex_kws[20] = {
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100506 BC_LEX_KW_ENTRY("auto" , 1), // 0
507 BC_LEX_KW_ENTRY("break" , 1), // 1
508 BC_LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
509 BC_LEX_KW_ENTRY("define" , 1), // 3
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100510 BC_LEX_KW_ENTRY("else" , 0), // 4
511 BC_LEX_KW_ENTRY("for" , 1), // 5
512 BC_LEX_KW_ENTRY("halt" , 0), // 6
513 BC_LEX_KW_ENTRY("ibase" , 1), // 7
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100514 BC_LEX_KW_ENTRY("if" , 1), // 8
515 BC_LEX_KW_ENTRY("last" , 0), // 9
516 BC_LEX_KW_ENTRY("length" , 1), // 10
517 BC_LEX_KW_ENTRY("limits" , 0), // 11
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100518 BC_LEX_KW_ENTRY("obase" , 1), // 12
519 BC_LEX_KW_ENTRY("print" , 0), // 13
520 BC_LEX_KW_ENTRY("quit" , 1), // 14
521 BC_LEX_KW_ENTRY("read" , 0), // 15
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100522 BC_LEX_KW_ENTRY("return" , 1), // 16
523 BC_LEX_KW_ENTRY("scale" , 1), // 17
524 BC_LEX_KW_ENTRY("sqrt" , 1), // 18
525 BC_LEX_KW_ENTRY("while" , 1), // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100526};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100527#undef BC_LEX_KW_ENTRY
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100528enum {
529 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100530 | (1 << 0) // 0
531 | (1 << 1) // 1
532 | (0 << 2) // 2
533 | (1 << 3) // 3
534 | (0 << 4) // 4
535 | (1 << 5) // 5
536 | (0 << 6) // 6
537 | (1 << 7) // 7
538 | (1 << 8) // 8
539 | (0 << 9) // 9
540 | (1 << 10) // 10
541 | (0 << 11) // 11
542 | (1 << 12) // 12
543 | (0 << 13) // 13
544 | (1 << 14) // 14
545 | (0 << 15) // 15
546 | (1 << 16) // 16
547 | (1 << 17) // 17
548 | (1 << 18) // 18
549 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100550};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100551#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100552#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600553
Denys Vlasenko9a34e892018-12-12 13:58:55 +0100554#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
555# define BC_STATUS BcStatus
556#else
557# define BC_STATUS void
558#endif
559
Gavin Howard01055ba2018-11-03 11:00:21 -0600560typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600561 const char *buf;
562 size_t i;
563 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600564 size_t len;
565 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600566 struct {
567 BcLexType t;
568 BcLexType last;
569 BcVec v;
570 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600571} BcLex;
572
Denys Vlasenko0154d782018-12-14 23:32:51 +0100573#define BC_PARSE_STREND ((char) UCHAR_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -0600574
Denys Vlasenko0154d782018-12-14 23:32:51 +0100575#define BC_PARSE_REL (1 << 0)
576#define BC_PARSE_PRINT (1 << 1)
577#define BC_PARSE_NOCALL (1 << 2)
578#define BC_PARSE_NOREAD (1 << 3)
579#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600580
Gavin Howard01055ba2018-11-03 11:00:21 -0600581typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600582 BcLex l;
583
Gavin Howard01055ba2018-11-03 11:00:21 -0600584 BcVec exits;
585 BcVec conds;
586
587 BcVec ops;
588
Gavin Howard01055ba2018-11-03 11:00:21 -0600589 BcFunc *func;
590 size_t fidx;
591
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100592//TODO: needed? Example?
Gavin Howard01055ba2018-11-03 11:00:21 -0600593 size_t nbraces;
Gavin Howard01055ba2018-11-03 11:00:21 -0600594} BcParse;
595
Gavin Howard01055ba2018-11-03 11:00:21 -0600596typedef struct BcProgram {
597
598 size_t len;
599 size_t scale;
600
601 BcNum ib;
602 size_t ib_t;
603 BcNum ob;
604 size_t ob_t;
605
606 BcNum hexb;
607
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100608#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600609 BcNum strmb;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100610#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600611
612 BcVec results;
613 BcVec stack;
614
615 BcVec fns;
616 BcVec fn_map;
617
618 BcVec vars;
619 BcVec var_map;
620
621 BcVec arrs;
622 BcVec arr_map;
623
624 BcVec strs;
625 BcVec consts;
626
627 const char *file;
628
629 BcNum last;
630 BcNum zero;
631 BcNum one;
632
633 size_t nchars;
634
Gavin Howard01055ba2018-11-03 11:00:21 -0600635} BcProgram;
636
637#define BC_PROG_STACK(s, n) ((s)->len >= ((size_t) n))
638
639#define BC_PROG_MAIN (0)
640#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100641#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600642#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100643#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600644
645#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
646#define BC_PROG_NUM(r, n) \
647 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
648
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100649#define BC_FLAG_W (1 << 0)
650#define BC_FLAG_V (1 << 1)
651#define BC_FLAG_S (1 << 2)
652#define BC_FLAG_Q (1 << 3)
653#define BC_FLAG_L (1 << 4)
654#define BC_FLAG_I (1 << 5)
655#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600656
657#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
658#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
659
Denys Vlasenko64074a12018-12-07 15:50:14 +0100660#define BC_MAX_OBASE ((unsigned) 999)
661#define BC_MAX_DIM ((unsigned) INT_MAX)
662#define BC_MAX_SCALE ((unsigned) UINT_MAX)
663#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
664#define BC_MAX_NUM BC_MAX_STRING
665// Unused apart from "limits" message. Just show a "biggish number" there.
666//#define BC_MAX_NAME BC_MAX_STRING
667//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
668//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
669#define BC_MAX_NAME_STR "999999999"
670#define BC_MAX_EXP_STR "999999999"
671#define BC_MAX_VARS_STR "999999999"
672
673#define BC_MAX_OBASE_STR "999"
674
675#if INT_MAX == 2147483647
676# define BC_MAX_DIM_STR "2147483647"
677#elif INT_MAX == 9223372036854775807
678# define BC_MAX_DIM_STR "9223372036854775807"
679#else
680# error Strange INT_MAX
681#endif
682
683#if UINT_MAX == 4294967295
684# define BC_MAX_SCALE_STR "4294967295"
685# define BC_MAX_STRING_STR "4294967294"
686#elif UINT_MAX == 18446744073709551615
687# define BC_MAX_SCALE_STR "18446744073709551615"
688# define BC_MAX_STRING_STR "18446744073709551614"
689#else
690# error Strange UINT_MAX
691#endif
692#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600693
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100694struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100695 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100696 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100697 smallint in_read;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100698 smallint use_stdin;
Gavin Howard01055ba2018-11-03 11:00:21 -0600699
700 BcParse prs;
701 BcProgram prog;
702
Denys Vlasenko5318f812018-12-05 17:48:01 +0100703 // For error messages. Can be set to current parsed line,
704 // or [TODO] to current executing line (can be before last parsed one)
705 unsigned err_line;
706
Gavin Howard01055ba2018-11-03 11:00:21 -0600707 BcVec files;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100708 BcVec stdin_buffer;
Gavin Howard01055ba2018-11-03 11:00:21 -0600709
710 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100711
712#if ENABLE_FEATURE_EDITING
713 line_input_t *line_input_state;
714#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100715} FIX_ALIASING;
716#define G (*ptr_to_globals)
717#define INIT_G() do { \
718 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
719} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100720#define FREE_G() do { \
721 FREE_PTR_TO_GLOBALS(); \
722} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100723#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
724#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100725#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100726#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100727# define G_interrupt bb_got_signal
728# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100729#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100730# define G_interrupt 0
731# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100732#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100733#if ENABLE_FEATURE_CLEAN_UP
734# define G_exiting G.exiting
735#else
736# define G_exiting 0
737#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100738#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100739#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100740
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100741#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600742
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100743// This is a bit array that corresponds to token types. An entry is
Gavin Howard01055ba2018-11-03 11:00:21 -0600744// true if the token is valid in an expression, false otherwise.
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100745enum {
746 BC_PARSE_EXPRS_BITS = 0
747 + ((uint64_t)((0 << 0)+(0 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(1 << 5)+(1 << 6)+(1 << 7)) << (0*8))
748 + ((uint64_t)((1 << 0)+(1 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(1 << 5)+(1 << 6)+(1 << 7)) << (1*8))
749 + ((uint64_t)((1 << 0)+(1 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(1 << 5)+(1 << 6)+(1 << 7)) << (2*8))
750 + ((uint64_t)((1 << 0)+(1 << 1)+(1 << 2)+(0 << 3)+(0 << 4)+(1 << 5)+(1 << 6)+(0 << 7)) << (3*8))
751 + ((uint64_t)((0 << 0)+(0 << 1)+(0 << 2)+(0 << 3)+(0 << 4)+(0 << 5)+(1 << 6)+(1 << 7)) << (4*8))
752 + ((uint64_t)((0 << 0)+(0 << 1)+(0 << 2)+(0 << 3)+(0 << 4)+(0 << 5)+(0 << 6)+(1 << 7)) << (5*8))
753 + ((uint64_t)((0 << 0)+(1 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(0 << 5)+(0 << 6)+(1 << 7)) << (6*8))
754 + ((uint64_t)((0 << 0)+(1 << 1)+(1 << 2)+(0 << 3) ) << (7*8))
Gavin Howard01055ba2018-11-03 11:00:21 -0600755};
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100756static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
757{
758#if ULONG_MAX > 0xffffffff
759 // 64-bit version (will not work correctly for 32-bit longs!)
760 return BC_PARSE_EXPRS_BITS & (1UL << i);
761#else
762 // 32-bit version
763 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
764 if (i >= 32) {
765 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
766 i &= 31;
767 }
768 return m & (1UL << i);
769#endif
770}
Gavin Howard01055ba2018-11-03 11:00:21 -0600771
772// This is an array of data for operators that correspond to token types.
Denys Vlasenko65437582018-12-05 19:37:19 +0100773static const uint8_t bc_parse_ops[] = {
774#define OP(p,l) ((int)(l) * 0x10 + (p))
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100775 OP(0, false), OP( 0, false ), // inc dec
776 OP(1, false), // neg
Denys Vlasenko65437582018-12-05 19:37:19 +0100777 OP(2, false),
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100778 OP(3, true ), OP( 3, true ), OP( 3, true ), // pow mul div
779 OP(4, true ), OP( 4, true ), // mod + -
780 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
781 OP(1, false), // not
782 OP(7, true ), OP( 7, true ), // or and
783 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
784 OP(5, false), OP( 5, false ), // -= =
Denys Vlasenko65437582018-12-05 19:37:19 +0100785#undef OP
Gavin Howard01055ba2018-11-03 11:00:21 -0600786};
Denys Vlasenko65437582018-12-05 19:37:19 +0100787#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
788#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
Gavin Howard01055ba2018-11-03 11:00:21 -0600789
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100790// Byte array of up to 4 BC_LEX's, packed into 32-bit word
791typedef uint32_t BcParseNext;
792
Gavin Howard01055ba2018-11-03 11:00:21 -0600793// These identify what tokens can come after expressions in certain cases.
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100794enum {
795#define BC_PARSE_NEXT4(a,b,c,d) ( (a) | ((b)<<8) | ((c)<<16) | ((((d)|0x80)<<24)) )
796#define BC_PARSE_NEXT2(a,b) BC_PARSE_NEXT4(a,b,0xff,0xff)
797#define BC_PARSE_NEXT1(a) BC_PARSE_NEXT4(a,0xff,0xff,0xff)
798 bc_parse_next_expr = BC_PARSE_NEXT4(BC_LEX_NLINE, BC_LEX_SCOLON, BC_LEX_RBRACE, BC_LEX_EOF),
799 bc_parse_next_param = BC_PARSE_NEXT2(BC_LEX_RPAREN, BC_LEX_COMMA),
800 bc_parse_next_print = BC_PARSE_NEXT4(BC_LEX_COMMA, BC_LEX_NLINE, BC_LEX_SCOLON, BC_LEX_EOF),
801 bc_parse_next_rel = BC_PARSE_NEXT1(BC_LEX_RPAREN),
802 bc_parse_next_elem = BC_PARSE_NEXT1(BC_LEX_RBRACKET),
803 bc_parse_next_for = BC_PARSE_NEXT1(BC_LEX_SCOLON),
804 bc_parse_next_read = BC_PARSE_NEXT2(BC_LEX_NLINE, BC_LEX_EOF),
805#undef BC_PARSE_NEXT4
806#undef BC_PARSE_NEXT2
807#undef BC_PARSE_NEXT1
808};
Gavin Howard01055ba2018-11-03 11:00:21 -0600809#endif // ENABLE_BC
810
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100811#if ENABLE_DC
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100812static const //BcLexType - should be this type, but narrower type saves size:
813uint8_t
814dc_lex_regs[] = {
Gavin Howard01055ba2018-11-03 11:00:21 -0600815 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
816 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
817 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
818 BC_LEX_STORE_PUSH,
819};
820
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100821static const //BcLexType - should be this type
822uint8_t
823dc_lex_tokens[] = {
Gavin Howard01055ba2018-11-03 11:00:21 -0600824 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
825 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
826 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
827 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
828 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
829 BC_LEX_INVALID, BC_LEX_INVALID,
830 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
831 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
832 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
833 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
834 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
835 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
836 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
837 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
838 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
839 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
840 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
841 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
842 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
843 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
844 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
845 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
846 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
847 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
848 BC_LEX_INVALID
849};
850
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100851static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
852int8_t
853dc_parse_insts[] = {
Gavin Howard01055ba2018-11-03 11:00:21 -0600854 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
855 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
856 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
857 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
858 BC_INST_INVALID, BC_INST_INVALID,
859 BC_INST_BOOL_NOT, BC_INST_INVALID, BC_INST_INVALID,
860 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
861 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
862 BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GT, BC_INST_INVALID,
863 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
864 BC_INST_INVALID, BC_INST_INVALID,
865 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
866 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
867 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
868 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
869 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
870 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
871 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
872 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
873 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
874 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
875 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
876 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
877};
878#endif // ENABLE_DC
879
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100880// In configurations where errors abort instead of propagating error
881// return code up the call chain, functions returning BC_STATUS
882// actually don't return anything, they always succeed and return "void".
883// A macro wrapper is provided, which makes this statement work:
884// s = zbc_func(...)
885// and makes it visible to the compiler that s is always zero,
886// allowing compiler to optimize dead code after the statement.
887//
888// To make code more readable, each such function has a "z"
889// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
890//
891#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100892# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100893# define ERRORFUNC /*nothing*/
894# define ERROR_RETURN(a) a
Denys Vlasenko9a34e892018-12-12 13:58:55 +0100895//moved up: # define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100896# define RETURN_STATUS(v) return (v)
897#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100898# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100899# define ERRORFUNC NORETURN
900# define ERROR_RETURN(a) /*nothing*/
Denys Vlasenko9a34e892018-12-12 13:58:55 +0100901//moved up: # define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100902# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
903#endif
904
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100905#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
906#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
907#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
908//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
909static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
910{
911 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
912}
913//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
914static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
915{
916 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
917}
918
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100919typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
920
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100921typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100922
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100923static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
924 BcNumBinaryOp op, size_t req);
925static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
926static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
927static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
928static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
929static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
930static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
931
932static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
933{
934 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
935 (void) scale;
936 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
937}
938
939static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
940{
941 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
942 (void) scale;
943 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
944}
945
946static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
947{
948 size_t req = BC_NUM_MREQ(a, b, scale);
949 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
950}
951
952static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
953{
954 size_t req = BC_NUM_MREQ(a, b, scale);
955 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
956}
957
958static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
959{
960 size_t req = BC_NUM_MREQ(a, b, scale);
961 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
962}
963
964static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
965{
966 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
967}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100968
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100969static const BcNumBinaryOp zbc_program_ops[] = {
970 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 -0600971};
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100972#if ERRORS_ARE_FATAL
973# define zbc_num_add(...) (zbc_num_add(__VA_ARGS__), BC_STATUS_SUCCESS)
974# define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__), BC_STATUS_SUCCESS)
975# define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__), BC_STATUS_SUCCESS)
976# define zbc_num_div(...) (zbc_num_div(__VA_ARGS__), BC_STATUS_SUCCESS)
977# define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__), BC_STATUS_SUCCESS)
978# define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__), BC_STATUS_SUCCESS)
979#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600980
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100981static void fflush_and_check(void)
982{
983 fflush_all();
984 if (ferror(stdout) || ferror(stderr))
985 bb_perror_msg_and_die("output error");
986}
987
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100988#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100989#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100990do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100991 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100992 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100993 return BC_STATUS_FAILURE; \
994} while (0)
995#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100996#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100997#endif
998
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100999static void quit(void) NORETURN;
1000static void quit(void)
1001{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +01001002 if (ferror(stdin))
1003 bb_perror_msg_and_die("input error");
1004 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01001005 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +01001006 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01001007}
1008
Denys Vlasenko5318f812018-12-05 17:48:01 +01001009static void bc_verror_msg(const char *fmt, va_list p)
1010{
Denys Vlasenko82269122018-12-14 16:30:56 +01001011 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +01001012 if (G.prog.file) {
1013 sv = applet_name;
1014 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
1015 }
1016 bb_verror_msg(fmt, p, NULL);
1017 if (G.prog.file) {
1018 free((char*)applet_name);
1019 applet_name = sv;
1020 }
1021}
1022
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001023static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001024{
1025 va_list p;
1026
1027 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +01001028 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001029 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01001030
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01001031 if (!ENABLE_FEATURE_CLEAN_UP && !G_ttyin)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001032 exit(1);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001033 ERROR_RETURN(return BC_STATUS_FAILURE;)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001034}
1035
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001036#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001037static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001038{
1039 va_list p;
1040
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001041 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01001042 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001043 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001044
1045 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +01001046 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001047 va_end(p);
1048
1049 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01001050 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001051 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01001052 if (!ENABLE_FEATURE_CLEAN_UP && !G_ttyin)
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001053 exit(1);
1054 return BC_STATUS_FAILURE;
1055}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001056#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001057
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001058// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
1059// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001060// function must not have caller-cleaned parameters on stack.
1061// Unfortunately, vararg function API does exactly that on most arches.
1062// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001063static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001064{
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001065 ERROR_RETURN(return) bc_error_fmt("%s", msg);
1066}
1067static ERRORFUNC int bc_error_bad_character(char c)
1068{
1069 ERROR_RETURN(return) bc_error_fmt("bad character '%c'", c);
1070}
1071static ERRORFUNC int bc_error_bad_expression(void)
1072{
1073 ERROR_RETURN(return) bc_error("bad expression");
1074}
1075static ERRORFUNC int bc_error_bad_token(void)
1076{
1077 ERROR_RETURN(return) bc_error("bad token");
1078}
1079static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1080{
1081 ERROR_RETURN(return) bc_error("stack has too few elements");
1082}
1083static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1084{
1085 ERROR_RETURN(return) bc_error("variable is wrong type");
1086}
1087static ERRORFUNC int bc_error_nested_read_call(void)
1088{
1089 ERROR_RETURN(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001090}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001091#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001092static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001093{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001094 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001095}
Denys Vlasenko00646792018-12-05 18:12:27 +01001096static int bc_POSIX_does_not_allow(const char *msg)
1097{
1098 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1099}
1100static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1101{
1102 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1103}
1104static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1105{
1106 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1107}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001108#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001109
Gavin Howard01055ba2018-11-03 11:00:21 -06001110static void bc_vec_grow(BcVec *v, size_t n)
1111{
1112 size_t cap = v->cap * 2;
1113 while (cap < v->len + n) cap *= 2;
1114 v->v = xrealloc(v->v, v->size * cap);
1115 v->cap = cap;
1116}
1117
1118static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1119{
1120 v->size = esize;
1121 v->cap = BC_VEC_START_CAP;
1122 v->len = 0;
1123 v->dtor = dtor;
1124 v->v = xmalloc(esize * BC_VEC_START_CAP);
1125}
1126
Denys Vlasenko7d628012018-12-04 21:46:47 +01001127static void bc_char_vec_init(BcVec *v)
1128{
1129 bc_vec_init(v, sizeof(char), NULL);
1130}
1131
Gavin Howard01055ba2018-11-03 11:00:21 -06001132static void bc_vec_expand(BcVec *v, size_t req)
1133{
1134 if (v->cap < req) {
1135 v->v = xrealloc(v->v, v->size * req);
1136 v->cap = req;
1137 }
1138}
1139
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001140static void bc_vec_pop(BcVec *v)
1141{
1142 v->len--;
1143 if (v->dtor)
1144 v->dtor(v->v + (v->size * v->len));
1145}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001146
Gavin Howard01055ba2018-11-03 11:00:21 -06001147static void bc_vec_npop(BcVec *v, size_t n)
1148{
1149 if (!v->dtor)
1150 v->len -= n;
1151 else {
1152 size_t len = v->len - n;
1153 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1154 }
1155}
1156
Denys Vlasenko7d628012018-12-04 21:46:47 +01001157static void bc_vec_pop_all(BcVec *v)
1158{
1159 bc_vec_npop(v, v->len);
1160}
1161
Gavin Howard01055ba2018-11-03 11:00:21 -06001162static void bc_vec_push(BcVec *v, const void *data)
1163{
1164 if (v->len + 1 > v->cap) bc_vec_grow(v, 1);
1165 memmove(v->v + (v->size * v->len), data, v->size);
1166 v->len += 1;
1167}
1168
1169static void bc_vec_pushByte(BcVec *v, char data)
1170{
1171 bc_vec_push(v, &data);
1172}
1173
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001174static void bc_vec_pushZeroByte(BcVec *v)
1175{
1176 //bc_vec_pushByte(v, '\0');
1177 // better:
1178 bc_vec_push(v, &const_int_0);
1179}
1180
Gavin Howard01055ba2018-11-03 11:00:21 -06001181static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1182{
1183 if (idx == v->len)
1184 bc_vec_push(v, data);
1185 else {
1186
1187 char *ptr;
1188
1189 if (v->len == v->cap) bc_vec_grow(v, 1);
1190
1191 ptr = v->v + v->size * idx;
1192
1193 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1194 memmove(ptr, data, v->size);
1195 }
1196}
1197
1198static void bc_vec_string(BcVec *v, size_t len, const char *str)
1199{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001200 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001201 bc_vec_expand(v, len + 1);
1202 memcpy(v->v, str, len);
1203 v->len = len;
1204
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001205 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001206}
1207
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001208#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001209static void bc_vec_concat(BcVec *v, const char *str)
1210{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001211 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001212
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001213 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001214
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001215 slen = strlen(str);
1216 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001217
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001218 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001219 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001220
1221 v->len = len;
1222}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001223#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001224
1225static void *bc_vec_item(const BcVec *v, size_t idx)
1226{
1227 return v->v + v->size * idx;
1228}
1229
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001230static char** bc_program_str(size_t idx)
1231{
1232 return bc_vec_item(&G.prog.strs, idx);
1233}
1234
1235static BcFunc* bc_program_func(size_t idx)
1236{
1237 return bc_vec_item(&G.prog.fns, idx);
1238}
1239
Gavin Howard01055ba2018-11-03 11:00:21 -06001240static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1241{
1242 return v->v + v->size * (v->len - idx - 1);
1243}
1244
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001245static void *bc_vec_top(const BcVec *v)
1246{
1247 return v->v + v->size * (v->len - 1);
1248}
1249
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001250static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001251{
1252 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001253 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001254 free(v->v);
1255}
1256
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001257static int bc_id_cmp(const void *e1, const void *e2)
1258{
1259 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1260}
1261
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001262static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001263{
1264 free(((BcId *) id)->name);
1265}
1266
Gavin Howard01055ba2018-11-03 11:00:21 -06001267static size_t bc_map_find(const BcVec *v, const void *ptr)
1268{
1269 size_t low = 0, high = v->len;
1270
1271 while (low < high) {
1272
1273 size_t mid = (low + high) / 2;
1274 BcId *id = bc_vec_item(v, mid);
1275 int result = bc_id_cmp(ptr, id);
1276
1277 if (result == 0)
1278 return mid;
1279 else if (result < 0)
1280 high = mid;
1281 else
1282 low = mid + 1;
1283 }
1284
1285 return low;
1286}
1287
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001288static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001289{
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001290 size_t n = *i = bc_map_find(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001291
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001292 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001293 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001294 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1295 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001296 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001297 bc_vec_pushAt(v, ptr, n);
1298 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001299}
1300
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001301#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06001302static size_t bc_map_index(const BcVec *v, const void *ptr)
1303{
1304 size_t i = bc_map_find(v, ptr);
1305 if (i >= v->len) return BC_VEC_INVALID_IDX;
1306 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1307}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001308#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001309
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001310static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001311{
1312 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1313 || c > 0x7e
1314 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001315 bc_error_fmt("illegal character 0x%02x", c);
1316 return 1;
1317 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001318 return 0;
1319}
1320
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001321// Note: it _appends_ data from the stdin to vec.
Denys Vlasenko8a892472018-12-12 22:43:58 +01001322static void bc_read_line(BcVec *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001323{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001324 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001325 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001326
Gavin Howard01055ba2018-11-03 11:00:21 -06001327#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001328 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001329 intr:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001330 G_interrupt = 0;
1331 // GNU bc says "interrupted execution."
1332 // GNU dc says "Interrupt!"
1333 fputs("\ninterrupted execution\n", stderr);
1334 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001335
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001336# if ENABLE_FEATURE_EDITING
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001337 if (G_ttyin) {
1338 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001339# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001340 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1341 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1342 if (n == 0) // ^C
1343 goto intr;
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001344 bc_vec_pushZeroByte(vec);
1345 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001346 }
1347 i = 0;
1348 for (;;) {
1349 char c = line_buf[i++];
1350 if (!c) break;
1351 if (bad_input_byte(c)) goto again;
1352 }
1353 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001354# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001355 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001356# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001357#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001358 {
1359 int c;
1360 bool bad_chars = 0;
1361 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001362
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001363 IF_FEATURE_BC_SIGNALS(errno = 0;)
1364 do {
1365 c = fgetc(stdin);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001366#if ENABLE_FEATURE_BC_SIGNALS && !ENABLE_FEATURE_EDITING
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001367 // Both conditions appear simultaneously, check both just in case
1368 if (errno == EINTR || G_interrupt) {
1369 // ^C was pressed
1370 clearerr(stdin);
1371 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001372 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001373#endif
1374 if (c == EOF) {
1375 if (ferror(stdin))
1376 quit(); // this emits error message
1377 // Note: EOF does not append '\n', therefore:
1378 // printf 'print 123\n' | bc - works
1379 // printf 'print 123' | bc - fails (syntax error)
1380 break;
1381 }
1382 bad_chars |= bad_input_byte(c);
1383 bc_vec_pushByte(vec, (char)c);
1384 } while (c != '\n');
1385 if (bad_chars) {
1386 // Bad chars on this line, ignore entire line
1387 vec->len = len;
1388 goto again;
Denys Vlasenkoed849352018-12-06 10:26:13 +01001389 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001390 bc_vec_pushZeroByte(vec);
1391 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001392}
1393
Denys Vlasenkodf515392018-12-02 19:27:48 +01001394static char* bc_read_file(const char *path)
Gavin Howard01055ba2018-11-03 11:00:21 -06001395{
Denys Vlasenkodf515392018-12-02 19:27:48 +01001396 char *buf;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01001397 size_t size = ((size_t) -1);
1398 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06001399
Denys Vlasenko4c9455f2018-12-06 15:21:39 +01001400 // Never returns NULL (dies on errors)
1401 buf = xmalloc_xopen_read_close(path, &size);
Gavin Howard01055ba2018-11-03 11:00:21 -06001402
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01001403 for (i = 0; i < size; ++i) {
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001404 char c = buf[i];
1405 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1406 || c > 0x7e
1407 ) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01001408 free(buf);
1409 buf = NULL;
1410 break;
1411 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001412 }
1413
Denys Vlasenkodf515392018-12-02 19:27:48 +01001414 return buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06001415}
1416
Gavin Howard01055ba2018-11-03 11:00:21 -06001417static void bc_num_setToZero(BcNum *n, size_t scale)
1418{
1419 n->len = 0;
1420 n->neg = false;
1421 n->rdx = scale;
1422}
1423
1424static void bc_num_zero(BcNum *n)
1425{
1426 bc_num_setToZero(n, 0);
1427}
1428
1429static void bc_num_one(BcNum *n)
1430{
1431 bc_num_setToZero(n, 0);
1432 n->len = 1;
1433 n->num[0] = 1;
1434}
1435
1436static void bc_num_ten(BcNum *n)
1437{
1438 bc_num_setToZero(n, 0);
1439 n->len = 2;
1440 n->num[0] = 0;
1441 n->num[1] = 1;
1442}
1443
Denys Vlasenko3129f702018-12-09 12:04:44 +01001444// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001445static void bc_num_init(BcNum *n, size_t req)
1446{
1447 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001448 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001449 n->num = xmalloc(req);
1450 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001451 n->rdx = 0;
1452 n->len = 0;
1453 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001454}
1455
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001456static void bc_num_init_DEF_SIZE(BcNum *n)
1457{
1458 bc_num_init(n, BC_NUM_DEF_SIZE);
1459}
1460
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001461static void bc_num_expand(BcNum *n, size_t req)
1462{
1463 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1464 if (req > n->cap) {
1465 n->num = xrealloc(n->num, req);
1466 n->cap = req;
1467 }
1468}
1469
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001470static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001471{
1472 free(((BcNum *) num)->num);
1473}
1474
1475static void bc_num_copy(BcNum *d, BcNum *s)
1476{
1477 if (d != s) {
1478 bc_num_expand(d, s->cap);
1479 d->len = s->len;
1480 d->neg = s->neg;
1481 d->rdx = s->rdx;
1482 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1483 }
1484}
1485
Denys Vlasenko29301232018-12-11 15:29:32 +01001486static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001487{
1488 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001489 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001490
Denys Vlasenko29301232018-12-11 15:29:32 +01001491 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001492
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001493 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001494
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001495 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001496
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001497 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001498 pow *= 10;
1499
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001500 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001501 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001502 prev = result;
1503 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001504 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001505 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001506
Denys Vlasenko29301232018-12-11 15:29:32 +01001507 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001508}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01001509#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01001510# define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01001511#endif
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001512
1513static void bc_num_ulong2num(BcNum *n, unsigned long val)
1514{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001515 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001516
1517 bc_num_zero(n);
1518
1519 if (val == 0) return;
1520
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001521 if (ULONG_MAX == 0xffffffffUL)
1522 bc_num_expand(n, 10); // 10 digits: 4294967295
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001523 if (ULONG_MAX == 0xffffffffffffffffULL)
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001524 bc_num_expand(n, 20); // 20 digits: 18446744073709551615
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001525 BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001526
1527 ptr = n->num;
1528 for (;;) {
1529 n->len++;
1530 *ptr++ = val % 10;
1531 val /= 10;
1532 if (val == 0) break;
1533 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001534}
1535
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001536static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001537 size_t len)
1538{
1539 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001540 for (i = 0; i < len; ++i) {
1541 for (a[i] -= b[i], j = 0; a[i + j] < 0;) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001542 a[i + j++] += 10;
1543 a[i + j] -= 1;
1544 }
1545 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001546}
1547
1548static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1549{
1550 size_t i;
1551 int c = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001552 for (i = len - 1; i < len && !(c = a[i] - b[i]); --i);
Gavin Howard01055ba2018-11-03 11:00:21 -06001553 return BC_NUM_NEG(i + 1, c < 0);
1554}
1555
1556static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1557{
1558 size_t i, min, a_int, b_int, diff;
1559 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001560 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001561 ssize_t cmp;
1562
1563 if (a == b) return 0;
1564 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1565 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001566
1567 if (a->neg != b->neg) // signs of a and b differ
1568 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1569 return (int)b->neg - (int)a->neg;
1570 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001571
1572 a_int = BC_NUM_INT(a);
1573 b_int = BC_NUM_INT(b);
1574 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001575
1576 if (a_int != 0) return (ssize_t) a_int;
1577
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001578 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001579 if (a_max) {
1580 min = b->rdx;
1581 diff = a->rdx - b->rdx;
1582 max_num = a->num + diff;
1583 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001584 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1585 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001586 min = a->rdx;
1587 diff = b->rdx - a->rdx;
1588 max_num = b->num + diff;
1589 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001590 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001591 }
1592
1593 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001594 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001595
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001596 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001597 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001598 }
1599
1600 return 0;
1601}
1602
1603static void bc_num_truncate(BcNum *n, size_t places)
1604{
1605 if (places == 0) return;
1606
1607 n->rdx -= places;
1608
1609 if (n->len != 0) {
1610 n->len -= places;
1611 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1612 }
1613}
1614
1615static void bc_num_extend(BcNum *n, size_t places)
1616{
1617 size_t len = n->len + places;
1618
1619 if (places != 0) {
1620
1621 if (n->cap < len) bc_num_expand(n, len);
1622
1623 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1624 memset(n->num, 0, sizeof(BcDig) * places);
1625
1626 n->len += places;
1627 n->rdx += places;
1628 }
1629}
1630
1631static void bc_num_clean(BcNum *n)
1632{
1633 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1634 if (n->len == 0)
1635 n->neg = false;
1636 else if (n->len < n->rdx)
1637 n->len = n->rdx;
1638}
1639
1640static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1641{
1642 if (n->rdx < scale)
1643 bc_num_extend(n, scale - n->rdx);
1644 else
1645 bc_num_truncate(n, n->rdx - scale);
1646
1647 bc_num_clean(n);
1648 if (n->len != 0) n->neg = !neg1 != !neg2;
1649}
1650
1651static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1652 BcNum *restrict b)
1653{
1654 if (idx < n->len) {
1655
1656 b->len = n->len - idx;
1657 a->len = idx;
1658 a->rdx = b->rdx = 0;
1659
1660 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1661 memcpy(a->num, n->num, idx * sizeof(BcDig));
1662 }
1663 else {
1664 bc_num_zero(b);
1665 bc_num_copy(a, n);
1666 }
1667
1668 bc_num_clean(a);
1669 bc_num_clean(b);
1670}
1671
Denys Vlasenko29301232018-12-11 15:29:32 +01001672static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001673{
Denys Vlasenko29301232018-12-11 15:29:32 +01001674 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001675
1676 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1677 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1678 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001679 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001680 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001681
1682 if (n->rdx >= places)
1683 n->rdx -= places;
1684 else {
1685 bc_num_extend(n, places - n->rdx);
1686 n->rdx = 0;
1687 }
1688
1689 bc_num_clean(n);
1690
Denys Vlasenko29301232018-12-11 15:29:32 +01001691 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001692}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01001693#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01001694# define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01001695#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001696
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001697static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001698{
1699 BcNum one;
1700 BcDig num[2];
1701
1702 one.cap = 2;
1703 one.num = num;
1704 bc_num_one(&one);
1705
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001706 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001707}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001708#if ERRORS_ARE_FATAL
1709# define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__), BC_STATUS_SUCCESS)
1710#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001711
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001712static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001713{
1714 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1715 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
1716 int carry, in;
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 c->neg = a->neg;
1732 c->rdx = BC_MAX(a->rdx, b->rdx);
1733 min_rdx = BC_MIN(a->rdx, b->rdx);
1734 c->len = 0;
1735
1736 if (a->rdx > b->rdx) {
1737 diff = a->rdx - b->rdx;
1738 ptr = a->num;
1739 ptr_a = a->num + diff;
1740 ptr_b = b->num;
1741 }
1742 else {
1743 diff = b->rdx - a->rdx;
1744 ptr = b->num;
1745 ptr_a = a->num;
1746 ptr_b = b->num + diff;
1747 }
1748
1749 for (ptr_c = c->num, i = 0; i < diff; ++i, ++c->len) ptr_c[i] = ptr[i];
1750
1751 ptr_c += diff;
1752 a_int = BC_NUM_INT(a);
1753 b_int = BC_NUM_INT(b);
1754
1755 if (a_int > b_int) {
1756 min_int = b_int;
1757 max = a_int;
1758 ptr = ptr_a;
1759 }
1760 else {
1761 min_int = a_int;
1762 max = b_int;
1763 ptr = ptr_b;
1764 }
1765
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001766 for (carry = 0, i = 0; i < min_rdx + min_int; ++i, ++c->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001767 in = ((int) ptr_a[i]) + ((int) ptr_b[i]) + carry;
1768 carry = in / 10;
1769 ptr_c[i] = (BcDig)(in % 10);
1770 }
1771
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001772 for (; i < max + min_rdx; ++i, ++c->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001773 in = ((int) ptr[i]) + carry;
1774 carry = in / 10;
1775 ptr_c[i] = (BcDig)(in % 10);
1776 }
1777
1778 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1779
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001780 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001781}
1782
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001783static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001784{
Gavin Howard01055ba2018-11-03 11:00:21 -06001785 ssize_t cmp;
1786 BcNum *minuend, *subtrahend;
1787 size_t start;
1788 bool aneg, bneg, neg;
1789
1790 // Because this function doesn't need to use scale (per the bc spec),
1791 // I am hijacking it to say whether it's doing an add or a subtract.
1792
1793 if (a->len == 0) {
1794 bc_num_copy(c, b);
1795 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001796 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001797 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001798 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001799 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001800 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001801 }
1802
1803 aneg = a->neg;
1804 bneg = b->neg;
1805 a->neg = b->neg = false;
1806
1807 cmp = bc_num_cmp(a, b);
1808
1809 a->neg = aneg;
1810 b->neg = bneg;
1811
1812 if (cmp == 0) {
1813 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001814 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001815 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001816 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001817 neg = a->neg;
1818 minuend = a;
1819 subtrahend = b;
1820 }
1821 else {
1822 neg = b->neg;
1823 if (sub) neg = !neg;
1824 minuend = b;
1825 subtrahend = a;
1826 }
1827
1828 bc_num_copy(c, minuend);
1829 c->neg = neg;
1830
1831 if (c->rdx < subtrahend->rdx) {
1832 bc_num_extend(c, subtrahend->rdx - c->rdx);
1833 start = 0;
1834 }
1835 else
1836 start = c->rdx - subtrahend->rdx;
1837
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001838 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001839
1840 bc_num_clean(c);
1841
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001842 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001843}
1844
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001845static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001846 BcNum *restrict c)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001847#if ERRORS_ARE_FATAL
1848# define zbc_num_k(...) (zbc_num_k(__VA_ARGS__), BC_STATUS_SUCCESS)
1849#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001850{
1851 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001852 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001853 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001854 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001855
Gavin Howard01055ba2018-11-03 11:00:21 -06001856 if (a->len == 0 || b->len == 0) {
1857 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001858 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001859 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001860 aone = BC_NUM_ONE(a);
1861 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001862 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001863 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001864 }
1865
1866 if (a->len + b->len < BC_NUM_KARATSUBA_LEN ||
1867 a->len < BC_NUM_KARATSUBA_LEN || b->len < BC_NUM_KARATSUBA_LEN)
1868 {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001869 size_t i, j, len;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001870 unsigned carry;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001871
Gavin Howard01055ba2018-11-03 11:00:21 -06001872 bc_num_expand(c, a->len + b->len + 1);
1873
1874 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001875 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001876
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001877 for (i = 0; i < b->len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001878
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001879 carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001880 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001881 unsigned in = c->num[i + j];
1882 in += ((unsigned) a->num[j]) * ((unsigned) b->num[i]) + carry;
1883 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001884 carry = in / 10;
1885 c->num[i + j] = (BcDig)(in % 10);
1886 }
1887
1888 c->num[i + j] += (BcDig) carry;
1889 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001890
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001891#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001892 // a=2^1000000
1893 // a*a <- without check below, this will not be interruptible
1894 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001895#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001896 }
1897
1898 c->len = len;
1899
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001900 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001901 }
1902
1903 bc_num_init(&l1, max);
1904 bc_num_init(&h1, max);
1905 bc_num_init(&l2, max);
1906 bc_num_init(&h2, max);
1907 bc_num_init(&m1, max);
1908 bc_num_init(&m2, max);
1909 bc_num_init(&z0, max);
1910 bc_num_init(&z1, max);
1911 bc_num_init(&z2, max);
1912 bc_num_init(&temp, max + max);
1913
1914 bc_num_split(a, max2, &l1, &h1);
1915 bc_num_split(b, max2, &l2, &h2);
1916
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001917 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001918 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001919 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001920 if (s) goto err;
1921
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001922 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001923 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001924 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001925 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001926 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001927 if (s) goto err;
1928
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001929 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001930 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001931 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001932 if (s) goto err;
1933
Denys Vlasenko29301232018-12-11 15:29:32 +01001934 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001935 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001936 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001937 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001938 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001939 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001940 s = zbc_num_add(&temp, &z2, c, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001941
1942err:
1943 bc_num_free(&temp);
1944 bc_num_free(&z2);
1945 bc_num_free(&z1);
1946 bc_num_free(&z0);
1947 bc_num_free(&m2);
1948 bc_num_free(&m1);
1949 bc_num_free(&h2);
1950 bc_num_free(&l2);
1951 bc_num_free(&h1);
1952 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001953 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001954}
1955
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001956static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001957{
1958 BcStatus s;
1959 BcNum cpa, cpb;
1960 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1961
1962 scale = BC_MAX(scale, a->rdx);
1963 scale = BC_MAX(scale, b->rdx);
1964 scale = BC_MIN(a->rdx + b->rdx, scale);
1965 maxrdx = BC_MAX(maxrdx, scale);
1966
1967 bc_num_init(&cpa, a->len);
1968 bc_num_init(&cpb, b->len);
1969
1970 bc_num_copy(&cpa, a);
1971 bc_num_copy(&cpb, b);
1972 cpa.neg = cpb.neg = false;
1973
Denys Vlasenko29301232018-12-11 15:29:32 +01001974 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001975 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001976 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001977 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001978 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001979 if (s) goto err;
1980
1981 maxrdx += scale;
1982 bc_num_expand(c, c->len + maxrdx);
1983
1984 if (c->len < maxrdx) {
1985 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1986 c->len += maxrdx;
1987 }
1988
1989 c->rdx = maxrdx;
1990 bc_num_retireMul(c, scale, a->neg, b->neg);
1991
1992err:
1993 bc_num_free(&cpb);
1994 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001995 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001996}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001997#if ERRORS_ARE_FATAL
1998# define zbc_num_m(...) (zbc_num_m(__VA_ARGS__), BC_STATUS_SUCCESS)
1999#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002000
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002001static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002002{
2003 BcStatus s = BC_STATUS_SUCCESS;
2004 BcDig *n, *p, q;
2005 size_t len, end, i;
2006 BcNum cp;
2007 bool zero = true;
2008
2009 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002010 RETURN_STATUS(bc_error("divide by zero"));
2011 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002012 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002013 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002014 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002015 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002016 bc_num_copy(c, a);
2017 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002018 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002019 }
2020
2021 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
2022 bc_num_copy(&cp, a);
2023 len = b->len;
2024
2025 if (len > cp.len) {
2026 bc_num_expand(&cp, len + 2);
2027 bc_num_extend(&cp, len - cp.len);
2028 }
2029
2030 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
2031 cp.rdx -= b->rdx;
2032 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
2033
2034 if (b->rdx == b->len) {
2035 for (i = 0; zero && i < len; ++i) zero = !b->num[len - i - 1];
2036 len -= i - 1;
2037 }
2038
2039 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
2040
2041 // We want an extra zero in front to make things simpler.
2042 cp.num[cp.len++] = 0;
2043 end = cp.len - len;
2044
2045 bc_num_expand(c, cp.len);
2046
2047 bc_num_zero(c);
2048 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
2049 c->rdx = cp.rdx;
2050 c->len = cp.len;
2051 p = b->num;
2052
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002053 for (i = end - 1; !s && i < end; --i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002054 n = cp.num + i;
2055 for (q = 0; (!s && n[len] != 0) || bc_num_compare(n, p, len) >= 0; ++q)
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002056 bc_num_subArrays(n, p, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002057 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002058#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01002059 // a=2^100000
2060 // scale=40000
2061 // 1/a <- without check below, this will not be interruptible
2062 if (G_interrupt) {
2063 s = BC_STATUS_FAILURE;
2064 break;
2065 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002066#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002067 }
2068
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002069 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06002070 bc_num_free(&cp);
2071
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002072 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002073}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002074#if ERRORS_ARE_FATAL
2075# define zbc_num_d(...) (zbc_num_d(__VA_ARGS__), BC_STATUS_SUCCESS)
2076#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002077
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002078static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06002079 BcNum *restrict d, size_t scale, size_t ts)
2080{
2081 BcStatus s;
2082 BcNum temp;
2083 bool neg;
2084
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002085 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002086 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002087
2088 if (a->len == 0) {
2089 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002090 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002091 }
2092
2093 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002094 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002095 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002096
2097 if (scale != 0) scale = ts;
2098
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002099 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002100 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002101 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002102 if (s) goto err;
2103
2104 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2105
2106 neg = d->neg;
2107 bc_num_retireMul(d, ts, a->neg, b->neg);
2108 d->neg = neg;
2109
2110err:
2111 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002112 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002113}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002114#if ERRORS_ARE_FATAL
2115# define zbc_num_r(...) (zbc_num_r(__VA_ARGS__), BC_STATUS_SUCCESS)
2116#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002117
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002118static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002119{
2120 BcStatus s;
2121 BcNum c1;
2122 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2123
2124 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002125 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002126 bc_num_free(&c1);
2127
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002128 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002129}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002130#if ERRORS_ARE_FATAL
2131# define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__), BC_STATUS_SUCCESS)
2132#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002133
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002134static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002135{
2136 BcStatus s = BC_STATUS_SUCCESS;
2137 BcNum copy;
2138 unsigned long pow;
2139 size_t i, powrdx, resrdx;
2140 bool neg, zero;
2141
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002142 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002143
2144 if (b->len == 0) {
2145 bc_num_one(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002146 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002147 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002148 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002149 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002150 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002151 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002152 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002153 if (!b->neg)
2154 bc_num_copy(c, a);
2155 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002156 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002157 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002158 }
2159
2160 neg = b->neg;
2161 b->neg = false;
2162
Denys Vlasenko29301232018-12-11 15:29:32 +01002163 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002164 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002165
2166 bc_num_init(&copy, a->len);
2167 bc_num_copy(&copy, a);
2168
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002169 if (!neg) {
2170 if (a->rdx > scale)
2171 scale = a->rdx;
2172 if (a->rdx * pow < scale)
2173 scale = a->rdx * pow;
2174 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002175
2176 b->neg = neg;
2177
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002178 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002179 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002180 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002181 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002182 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002183 //if (G_interrupt) {
2184 // s = BC_STATUS_FAILURE;
2185 // goto err;
2186 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002187 }
2188
Gavin Howard01055ba2018-11-03 11:00:21 -06002189 bc_num_copy(c, &copy);
2190
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002191 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002192
2193 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002194 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002195 if (s) goto err;
2196
2197 if (pow & 1) {
2198 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002199 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002200 if (s) goto err;
2201 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002202 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002203 //if (G_interrupt) {
2204 // s = BC_STATUS_FAILURE;
2205 // goto err;
2206 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002207 }
2208
2209 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002210 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002211 if (s) goto err;
2212 }
2213
Gavin Howard01055ba2018-11-03 11:00:21 -06002214 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2215
2216 // We can't use bc_num_clean() here.
2217 for (zero = true, i = 0; zero && i < c->len; ++i) zero = !c->num[i];
2218 if (zero) bc_num_setToZero(c, scale);
2219
2220err:
2221 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002222 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002223}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002224#if ERRORS_ARE_FATAL
2225# define zbc_num_p(...) (zbc_num_p(__VA_ARGS__), BC_STATUS_SUCCESS)
2226#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002227
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002228static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002229 BcNumBinaryOp op, size_t req)
2230{
2231 BcStatus s;
2232 BcNum num2, *ptr_a, *ptr_b;
2233 bool init = false;
2234
2235 if (c == a) {
2236 ptr_a = &num2;
2237 memcpy(ptr_a, c, sizeof(BcNum));
2238 init = true;
2239 }
2240 else
2241 ptr_a = a;
2242
2243 if (c == b) {
2244 ptr_b = &num2;
2245 if (c != a) {
2246 memcpy(ptr_b, c, sizeof(BcNum));
2247 init = true;
2248 }
2249 }
2250 else
2251 ptr_b = b;
2252
2253 if (init)
2254 bc_num_init(c, req);
2255 else
2256 bc_num_expand(c, req);
2257
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002258 s = BC_STATUS_SUCCESS;
Denys Vlasenko26819db2018-12-12 16:08:46 +01002259 ERROR_RETURN(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002260
2261 if (init) bc_num_free(&num2);
2262
Denys Vlasenko29301232018-12-11 15:29:32 +01002263 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002264}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002265#if ERRORS_ARE_FATAL
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002266# define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002267#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002268
Denys Vlasenko9311e012018-12-10 11:54:18 +01002269static bool bc_num_strValid(const char *val, size_t base)
2270{
2271 BcDig b;
2272 bool radix;
2273
2274 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2275 radix = false;
2276 for (;;) {
2277 BcDig c = *val++;
2278 if (c == '\0')
2279 break;
2280 if (c == '.') {
2281 if (radix) return false;
2282 radix = true;
2283 continue;
2284 }
2285 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2286 return false;
2287 }
2288 return true;
2289}
2290
2291// Note: n is already "bc_num_zero()"ed,
2292// leading zeroes in "val" are removed
2293static void bc_num_parseDecimal(BcNum *n, const char *val)
2294{
2295 size_t len, i;
2296 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002297
2298 len = strlen(val);
2299 if (len == 0)
2300 return;
2301
Denys Vlasenko9311e012018-12-10 11:54:18 +01002302 bc_num_expand(n, len);
2303
2304 ptr = strchr(val, '.');
2305
2306 n->rdx = 0;
2307 if (ptr != NULL)
2308 n->rdx = (size_t)((val + len) - (ptr + 1));
2309
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002310 for (i = 0; val[i]; ++i) {
2311 if (val[i] != '0' && val[i] != '.') {
2312 // Not entirely zero value - convert it, and exit
2313 i = len - 1;
2314 for (;;) {
2315 n->num[n->len] = val[i] - '0';
2316 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002317 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002318 if (i == 0) break;
2319 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002320 }
2321 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002322 }
2323 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002324 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002325}
2326
2327// Note: n is already "bc_num_zero()"ed,
2328// leading zeroes in "val" are removed
2329static void bc_num_parseBase(BcNum *n, const char *val, BcNum *base)
2330{
2331 BcStatus s;
2332 BcNum temp, mult, result;
2333 BcDig c = '\0';
2334 unsigned long v;
2335 size_t i, digits;
2336
2337 for (i = 0; ; ++i) {
2338 if (val[i] == '\0')
2339 return;
2340 if (val[i] != '.' && val[i] != '0')
2341 break;
2342 }
2343
2344 bc_num_init_DEF_SIZE(&temp);
2345 bc_num_init_DEF_SIZE(&mult);
2346
2347 for (;;) {
2348 c = *val++;
2349 if (c == '\0') goto int_err;
2350 if (c == '.') break;
2351
2352 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2353
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002354 s = zbc_num_mul(n, base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002355 if (s) goto int_err;
2356 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002357 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002358 if (s) goto int_err;
2359 }
2360
2361 bc_num_init(&result, base->len);
2362 //bc_num_zero(&result); - already is
2363 bc_num_one(&mult);
2364
2365 digits = 0;
2366 for (;;) {
2367 c = *val++;
2368 if (c == '\0') break;
2369 digits++;
2370
2371 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2372
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002373 s = zbc_num_mul(&result, base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002374 if (s) goto err;
2375 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002376 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002377 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002378 s = zbc_num_mul(&mult, base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002379 if (s) goto err;
2380 }
2381
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002382 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002383 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002384 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002385 if (s) goto err;
2386
2387 if (n->len != 0) {
2388 if (n->rdx < digits) bc_num_extend(n, digits - n->rdx);
2389 } else
2390 bc_num_zero(n);
2391
2392err:
2393 bc_num_free(&result);
2394int_err:
2395 bc_num_free(&mult);
2396 bc_num_free(&temp);
2397}
2398
Denys Vlasenko29301232018-12-11 15:29:32 +01002399static BC_STATUS zbc_num_parse(BcNum *n, const char *val, BcNum *base,
Gavin Howard01055ba2018-11-03 11:00:21 -06002400 size_t base_t)
2401{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002402 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002403 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002404
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002405 bc_num_zero(n);
2406 while (*val == '0') val++;
2407
Gavin Howard01055ba2018-11-03 11:00:21 -06002408 if (base_t == 10)
2409 bc_num_parseDecimal(n, val);
2410 else
2411 bc_num_parseBase(n, val, base);
2412
Denys Vlasenko29301232018-12-11 15:29:32 +01002413 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002414}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002415#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01002416# define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002417#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002418
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002419static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002420{
2421 BcStatus s;
2422 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2423 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2424 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2425
2426 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2427 bc_num_expand(b, req);
2428
2429 if (a->len == 0) {
2430 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002431 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002432 }
2433 else if (a->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002434 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002435 else if (BC_NUM_ONE(a)) {
2436 bc_num_one(b);
2437 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002438 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002439 }
2440
2441 scale = BC_MAX(scale, a->rdx) + 1;
2442 len = a->len + scale;
2443
2444 bc_num_init(&num1, len);
2445 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002446 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002447
2448 bc_num_one(&half);
2449 half.num[0] = 5;
2450 half.rdx = 1;
2451
2452 bc_num_init(&f, len);
2453 bc_num_init(&fprime, len);
2454
2455 x0 = &num1;
2456 x1 = &num2;
2457
2458 bc_num_one(x0);
2459 pow = BC_NUM_INT(a);
2460
2461 if (pow) {
2462
2463 if (pow & 1)
2464 x0->num[0] = 2;
2465 else
2466 x0->num[0] = 6;
2467
2468 pow -= 2 - (pow & 1);
2469
2470 bc_num_extend(x0, pow);
2471
2472 // Make sure to move the radix back.
2473 x0->rdx -= pow;
2474 }
2475
2476 x0->rdx = digs = digs1 = 0;
2477 resrdx = scale + 2;
2478 len = BC_NUM_INT(x0) + resrdx - 1;
2479
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002480 while (cmp != 0 || digs < len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002481
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002482 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002483 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002484 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002485 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002486 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002487 if (s) goto err;
2488
2489 cmp = bc_num_cmp(x1, x0);
2490 digs = x1->len - (unsigned long long) llabs(cmp);
2491
2492 if (cmp == cmp2 && digs == digs1)
2493 times += 1;
2494 else
2495 times = 0;
2496
2497 resrdx += times > 4;
2498
2499 cmp2 = cmp1;
2500 cmp1 = cmp;
2501 digs1 = digs;
2502
2503 temp = x0;
2504 x0 = x1;
2505 x1 = temp;
2506 }
2507
Gavin Howard01055ba2018-11-03 11:00:21 -06002508 bc_num_copy(b, x0);
2509 scale -= 1;
2510 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
2511
2512err:
2513 bc_num_free(&fprime);
2514 bc_num_free(&f);
2515 bc_num_free(&half);
2516 bc_num_free(&num2);
2517 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002518 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002519}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002520#if ERRORS_ARE_FATAL
2521# define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__), BC_STATUS_SUCCESS)
2522#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002523
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002524static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002525 size_t scale)
2526{
2527 BcStatus s;
2528 BcNum num2, *ptr_a;
2529 bool init = false;
2530 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2531
2532 if (c == a) {
2533 memcpy(&num2, c, sizeof(BcNum));
2534 ptr_a = &num2;
2535 bc_num_init(c, len);
2536 init = true;
2537 }
2538 else {
2539 ptr_a = a;
2540 bc_num_expand(c, len);
2541 }
2542
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002543 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002544
2545 if (init) bc_num_free(&num2);
2546
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002547 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002548}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002549#if ERRORS_ARE_FATAL
2550# define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__), BC_STATUS_SUCCESS)
2551#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002552
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002553#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002554static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002555{
2556 BcStatus s;
2557 BcNum base, exp, two, temp;
2558
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002559 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002560 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002561 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002562 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002563 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002564 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002565
2566 bc_num_expand(d, c->len);
2567 bc_num_init(&base, c->len);
2568 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002569 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002570 bc_num_init(&temp, b->len);
2571
2572 bc_num_one(&two);
2573 two.num[0] = 2;
2574 bc_num_one(d);
2575
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002576 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002577 if (s) goto err;
2578 bc_num_copy(&exp, b);
2579
2580 while (exp.len != 0) {
2581
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002582 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002583 if (s) goto err;
2584
2585 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002586 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002587 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002588 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002589 if (s) goto err;
2590 }
2591
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002592 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002593 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002594 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002595 if (s) goto err;
2596 }
2597
2598err:
2599 bc_num_free(&temp);
2600 bc_num_free(&two);
2601 bc_num_free(&exp);
2602 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002603 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002604}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002605#if ERRORS_ARE_FATAL
2606# define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__), BC_STATUS_SUCCESS)
2607#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002608#endif // ENABLE_DC
2609
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002610#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002611static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002612{
2613 BcId a;
2614 size_t i;
2615
2616 for (i = 0; i < f->autos.len; ++i) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002617 if (strcmp(name, ((BcId *) bc_vec_item(&f->autos, i))->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002618 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002619 }
2620
2621 a.idx = var;
2622 a.name = name;
2623
2624 bc_vec_push(&f->autos, &a);
2625
Denys Vlasenko29301232018-12-11 15:29:32 +01002626 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002627}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002628#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01002629# define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002630#endif
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002631#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002632
2633static void bc_func_init(BcFunc *f)
2634{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002635 bc_char_vec_init(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06002636 bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);
2637 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2638 f->nparams = 0;
2639}
2640
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002641static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002642{
2643 BcFunc *f = (BcFunc *) func;
2644 bc_vec_free(&f->code);
2645 bc_vec_free(&f->autos);
2646 bc_vec_free(&f->labels);
2647}
2648
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002649static void bc_array_expand(BcVec *a, size_t len);
2650
Gavin Howard01055ba2018-11-03 11:00:21 -06002651static void bc_array_init(BcVec *a, bool nums)
2652{
2653 if (nums)
2654 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2655 else
2656 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2657 bc_array_expand(a, 1);
2658}
2659
Gavin Howard01055ba2018-11-03 11:00:21 -06002660static void bc_array_expand(BcVec *a, size_t len)
2661{
2662 BcResultData data;
2663
2664 if (a->size == sizeof(BcNum) && a->dtor == bc_num_free) {
2665 while (len > a->len) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002666 bc_num_init_DEF_SIZE(&data.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002667 bc_vec_push(a, &data.n);
2668 }
2669 }
2670 else {
2671 while (len > a->len) {
2672 bc_array_init(&data.v, true);
2673 bc_vec_push(a, &data.v);
2674 }
2675 }
2676}
2677
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002678static void bc_array_copy(BcVec *d, const BcVec *s)
2679{
2680 size_t i;
2681
2682 bc_vec_pop_all(d);
2683 bc_vec_expand(d, s->cap);
2684 d->len = s->len;
2685
2686 for (i = 0; i < s->len; ++i) {
2687 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i);
2688 bc_num_init(dnum, snum->len);
2689 bc_num_copy(dnum, snum);
2690 }
2691}
2692
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002693static FAST_FUNC void bc_string_free(void *string)
Gavin Howard01055ba2018-11-03 11:00:21 -06002694{
2695 free(*((char **) string));
2696}
2697
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002698#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06002699static void bc_result_copy(BcResult *d, BcResult *src)
2700{
2701 d->t = src->t;
2702
2703 switch (d->t) {
2704
2705 case BC_RESULT_TEMP:
2706 case BC_RESULT_IBASE:
2707 case BC_RESULT_SCALE:
2708 case BC_RESULT_OBASE:
2709 {
2710 bc_num_init(&d->d.n, src->d.n.len);
2711 bc_num_copy(&d->d.n, &src->d.n);
2712 break;
2713 }
2714
2715 case BC_RESULT_VAR:
2716 case BC_RESULT_ARRAY:
2717 case BC_RESULT_ARRAY_ELEM:
2718 {
2719 d->d.id.name = xstrdup(src->d.id.name);
2720 break;
2721 }
2722
2723 case BC_RESULT_CONSTANT:
2724 case BC_RESULT_LAST:
2725 case BC_RESULT_ONE:
2726 case BC_RESULT_STR:
2727 {
2728 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2729 break;
2730 }
2731 }
2732}
2733#endif // ENABLE_DC
2734
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002735static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002736{
2737 BcResult *r = (BcResult *) result;
2738
2739 switch (r->t) {
2740
2741 case BC_RESULT_TEMP:
2742 case BC_RESULT_IBASE:
2743 case BC_RESULT_SCALE:
2744 case BC_RESULT_OBASE:
2745 {
2746 bc_num_free(&r->d.n);
2747 break;
2748 }
2749
2750 case BC_RESULT_VAR:
2751 case BC_RESULT_ARRAY:
2752 case BC_RESULT_ARRAY_ELEM:
2753 {
2754 free(r->d.id.name);
2755 break;
2756 }
2757
2758 default:
2759 {
2760 // Do nothing.
2761 break;
2762 }
2763 }
2764}
2765
2766static void bc_lex_lineComment(BcLex *l)
2767{
2768 l->t.t = BC_LEX_WHITESPACE;
2769 while (l->i < l->len && l->buf[l->i++] != '\n');
2770 --l->i;
2771}
2772
2773static void bc_lex_whitespace(BcLex *l)
2774{
Gavin Howard01055ba2018-11-03 11:00:21 -06002775 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002776 for (;;) {
2777 char c = l->buf[l->i];
2778 if (c == '\n' || !isspace(c))
2779 break;
2780 l->i++;
2781 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002782}
2783
Denys Vlasenko29301232018-12-11 15:29:32 +01002784static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002785{
2786 const char *buf = l->buf + l->i;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002787 size_t len, bslashes, i, ccnt;
2788 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002789
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002790 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002791 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002792 bslashes = 0;
2793 ccnt = i = 0;
2794 for (;;) {
2795 char c = buf[i];
2796 if (c == '\0')
2797 break;
2798 if (c == '\\' && buf[i + 1] == '\n') {
2799 i += 2;
2800 bslashes++;
2801 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002802 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002803 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2804 if (c != '.') break;
2805 // if '.' was already seen, stop on second one:
2806 if (pt) break;
2807 pt = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002808 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002809 // buf[i] is one of "0-9A-F."
2810 i++;
2811 if (c != '.')
2812 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002813 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002814 //i is buf[i] index of the first not-yet-parsed char
2815 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002816
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002817 //ccnt is the number of chars in the number string, excluding possible
2818 //trailing "." and possible following trailing "\<newline>"(s).
2819 len = ccnt - bslashes * 2 + 1; // +1 byte for NUL termination
2820
Denys Vlasenko64074a12018-12-07 15:50:14 +01002821 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2822 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2823 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002824 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002825 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002826
Denys Vlasenko7d628012018-12-04 21:46:47 +01002827 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002828 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002829 bc_vec_push(&l->t.v, &start);
2830
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002831 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002832 // If we have hit a backslash, skip it. We don't have
2833 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002834 if (*buf == '\\') {
2835 buf += 2;
2836 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002837 continue;
2838 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002839 bc_vec_push(&l->t.v, buf);
2840 buf++;
2841 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002842 }
2843
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002844 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002845
Denys Vlasenko29301232018-12-11 15:29:32 +01002846 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002847}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002848#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01002849# define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01002850#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002851
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002852static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002853{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002854 size_t i;
2855 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002856
2857 l->t.t = BC_LEX_NAME;
2858
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002859 i = 0;
2860 buf = l->buf + l->i - 1;
2861 for (;;) {
2862 char c = buf[i];
2863 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2864 i++;
2865 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002866
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002867#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002868 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2869 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2870 if (i > BC_MAX_STRING)
2871 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2872 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002873#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002874 bc_vec_string(&l->t.v, i, buf);
2875
2876 // Increment the index. We minus 1 because it has already been incremented.
2877 l->i += i - 1;
2878
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002879 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002880}
2881
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002882static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002883{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002884 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002885}
2886
2887static void bc_lex_free(BcLex *l)
2888{
2889 bc_vec_free(&l->t.v);
2890}
2891
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002892static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002893{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002894 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002895 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002896}
2897
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002898IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2899IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002900
2901static BC_STATUS zcommon_lex_token(BcLex *l)
2902{
2903 if (IS_BC) {
2904 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2905 }
2906 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2907}
2908
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002909static bool bc_lex_more_input(BcLex *l)
2910{
2911 size_t str;
2912 bool comment;
2913
2914 bc_vec_pop_all(&G.stdin_buffer);
2915
2916 // This loop is complex because the vm tries not to send any lines that end
2917 // with a backslash to the parser. The reason for that is because the parser
2918 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2919 // case, and for strings and comments, the parser will expect more stuff.
2920 comment = false;
2921 str = 0;
2922 for (;;) {
2923 size_t prevlen = G.stdin_buffer.len;
2924 char *string;
2925
2926 bc_read_line(&G.stdin_buffer);
2927 // No more input means EOF
2928 if (G.stdin_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
2929 break;
2930
2931 string = G.stdin_buffer.v + prevlen;
2932 while (*string) {
2933 char c = *string;
2934 if (string == G.stdin_buffer.v || string[-1] != '\\') {
2935 if (IS_BC)
2936 str ^= (c == '"');
2937 else {
2938 if (c == ']')
2939 str -= 1;
2940 else if (c == '[')
2941 str += 1;
2942 }
2943 }
2944 string++;
2945 if (c == '/' && *string == '*') {
2946 comment = true;
2947 string++;
2948 continue;
2949 }
2950 if (c == '*' && *string == '/') {
2951 comment = false;
2952 string++;
2953 }
2954 }
2955 if (str != 0 || comment) {
2956 G.stdin_buffer.len--; // backstep over the trailing NUL byte
2957 continue;
2958 }
2959
2960 // Check for backslash+newline.
2961 // we do not check that last char is '\n' -
2962 // if it is not, then it's EOF, and looping back
2963 // to bc_read_line() will detect it:
2964 string -= 2;
2965 if (string >= G.stdin_buffer.v && *string == '\\') {
2966 G.stdin_buffer.len--;
2967 continue;
2968 }
2969
2970 break;
2971 }
2972
2973 l->buf = G.stdin_buffer.v;
2974 l->i = 0;
2975//bb_error_msg("G.stdin_buffer.len:%d '%s'", G.stdin_buffer.len, G.stdin_buffer.v);
2976 l->len = G.stdin_buffer.len - 1; // do not include NUL
2977
2978 G.use_stdin = (l->len != 0);
2979 return G.use_stdin;
2980}
2981
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002982static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002983{
2984 BcStatus s;
2985
2986 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002987 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002988
2989 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002990 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06002991
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002992 l->t.t = BC_LEX_EOF;
2993//this NL handling is bogus
Gavin Howard01055ba2018-11-03 11:00:21 -06002994 l->newline = (l->i == l->len);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002995 if (l->newline) {
2996 if (!G.use_stdin || !bc_lex_more_input(l))
2997 RETURN_STATUS(BC_STATUS_SUCCESS);
2998 // here it's guaranteed that l->i is below l->len
2999 l->newline = false;
3000 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003001
3002 // Loop until failure or we don't have whitespace. This
3003 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003004 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06003005 do {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003006 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01003007 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
3008 l->buf + l->i);
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003009 ERROR_RETURN(s =) zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003010 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01003011 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06003012
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003013 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003014}
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003015#if ERRORS_ARE_FATAL
3016# define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__), BC_STATUS_SUCCESS)
3017#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003018
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003019static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003020{
3021 l->buf = text;
3022 l->i = 0;
3023 l->len = strlen(text);
3024 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003025 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003026}
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003027#if ERRORS_ARE_FATAL
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003028# define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003029#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003030
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003031#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003032static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003033{
3034 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003035 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06003036 const char *buf = l->buf + l->i - 1;
3037
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003038 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
3039 const char *keyword8 = bc_lex_kws[i].name8;
3040 unsigned j = 0;
3041 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
3042 j++;
3043 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06003044 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003045 if (keyword8[j] != '\0')
3046 continue;
3047 match:
3048 // buf starts with keyword bc_lex_kws[i]
3049 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01003050 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01003051 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003052 ERROR_RETURN(if (s) RETURN_STATUS(s);)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003053 }
3054
3055 // We minus 1 because the index has already been incremented.
3056 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003057 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003058 }
3059
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003060 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003061
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01003062 if (l->t.v.len > 2) {
3063 // Prevent this:
3064 // >>> qwe=1
3065 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
3066 // '
3067 unsigned len = strchrnul(buf, '\n') - buf;
3068 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
3069 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003070
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003071 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003072}
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003073#if ERRORS_ARE_FATAL
3074# define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__), BC_STATUS_SUCCESS)
3075#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003076
Denys Vlasenko26819db2018-12-12 16:08:46 +01003077static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003078{
3079 size_t len, nls = 0, i = l->i;
3080 char c;
3081
3082 l->t.t = BC_LEX_STR;
3083
Denys Vlasenko26819db2018-12-12 16:08:46 +01003084 for (c = l->buf[i]; c != 0 && c != '"'; c = l->buf[++i])
3085 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003086
3087 if (c == '\0') {
3088 l->i = i;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003089 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003090 }
3091
3092 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01003093 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3094 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3095 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01003096 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003097 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003098 bc_vec_string(&l->t.v, len, l->buf + l->i);
3099
3100 l->i = i + 1;
3101 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003102 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003103
Denys Vlasenko26819db2018-12-12 16:08:46 +01003104 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003105}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003106#if ERRORS_ARE_FATAL
3107# define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__), BC_STATUS_SUCCESS)
3108#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003109
Denys Vlasenko0a238142018-12-14 16:48:34 +01003110static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003111{
3112 if (l->buf[l->i] == '=') {
3113 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003114 with_and_without >>= 8; // store "with" value
3115 } // else store "without" value
3116 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003117}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003118#define bc_lex_assign(l, with, without) \
3119 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003120
Denys Vlasenko29301232018-12-11 15:29:32 +01003121static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003122{
3123 size_t i, nls = 0;
3124 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003125
3126 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003127 i = ++l->i;
3128 for (;;) {
3129 char c = buf[i];
3130 check_star:
3131 if (c == '*') {
3132 c = buf[++i];
3133 if (c == '/')
3134 break;
3135 goto check_star;
3136 }
3137 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003138 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003139 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003140 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003141 nls += (c == '\n');
3142 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003143 }
3144
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003145 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003146 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003147 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003148
Denys Vlasenko29301232018-12-11 15:29:32 +01003149 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003150}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01003151#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01003152# define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01003153#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003154
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003155static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003156{
3157 BcStatus s = BC_STATUS_SUCCESS;
3158 char c = l->buf[l->i++], c2;
3159
3160 // This is the workhorse of the lexer.
3161 switch (c) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003162 case '\0':
3163 case '\n':
Gavin Howard01055ba2018-11-03 11:00:21 -06003164 l->newline = true;
3165 l->t.t = !c ? BC_LEX_EOF : BC_LEX_NLINE;
3166 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003167 case '\t':
3168 case '\v':
3169 case '\f':
3170 case '\r':
3171 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003172 bc_lex_whitespace(l);
3173 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003174 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003175 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003176 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003177 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003178 ERROR_RETURN(if (s) RETURN_STATUS(s);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003179 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003180 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003181 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003182 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003183 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003184 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003185 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003186 ERROR_RETURN(if (s) RETURN_STATUS(s);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003187 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003188 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003189 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003190 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3191 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003192 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003193 c2 = l->buf[l->i];
3194 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003195 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003196 ERROR_RETURN(if (s) RETURN_STATUS(s);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003197 ++l->i;
3198 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003199 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003200 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003201 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003202 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003203 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003204 case '(':
3205 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003206 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
3207 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003208 case '*':
Gavin Howard01055ba2018-11-03 11:00:21 -06003209 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
3210 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003211 case '+':
Gavin Howard01055ba2018-11-03 11:00:21 -06003212 c2 = l->buf[l->i];
3213 if (c2 == '+') {
3214 ++l->i;
3215 l->t.t = BC_LEX_OP_INC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003216 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003217 bc_lex_assign(l, BC_LEX_OP_ASSIGN_PLUS, BC_LEX_OP_PLUS);
3218 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003219 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003220 l->t.t = BC_LEX_COMMA;
3221 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003222 case '-':
Gavin Howard01055ba2018-11-03 11:00:21 -06003223 c2 = l->buf[l->i];
3224 if (c2 == '-') {
3225 ++l->i;
3226 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003227 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003228 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3229 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003230 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003231 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003232 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003233 else {
3234 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003235 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003236 }
3237 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003238 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003239 c2 = l->buf[l->i];
3240 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003241 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003242 else
3243 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3244 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003245 case '0':
3246 case '1':
3247 case '2':
3248 case '3':
3249 case '4':
3250 case '5':
3251 case '6':
3252 case '7':
3253 case '8':
3254 case '9':
3255 case 'A':
3256 case 'B':
3257 case 'C':
3258 case 'D':
3259 case 'E':
3260 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003261 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003262 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003263 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003264 l->t.t = BC_LEX_SCOLON;
3265 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003266 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003267 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3268 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003269 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003270 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3271 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003272 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003273 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3274 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003275 case '[':
3276 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003277 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3278 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003279 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003280 if (l->buf[l->i] == '\n') {
3281 l->t.t = BC_LEX_WHITESPACE;
3282 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003283 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003284 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003285 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003286 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003287 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3288 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003289 case 'a':
3290 case 'b':
3291 case 'c':
3292 case 'd':
3293 case 'e':
3294 case 'f':
3295 case 'g':
3296 case 'h':
3297 case 'i':
3298 case 'j':
3299 case 'k':
3300 case 'l':
3301 case 'm':
3302 case 'n':
3303 case 'o':
3304 case 'p':
3305 case 'q':
3306 case 'r':
3307 case 's':
3308 case 't':
3309 case 'u':
3310 case 'v':
3311 case 'w':
3312 case 'x':
3313 case 'y':
3314 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003315 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003316 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003317 case '{':
3318 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003319 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3320 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003321 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003322 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003323 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003324 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003325 ERROR_RETURN(if (s) RETURN_STATUS(s);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003326 ++l->i;
3327 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003328 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003329 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003330 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003331 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003332 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003333 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003334 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003335 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003336 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003337 }
3338
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003339 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003340}
3341#endif // ENABLE_BC
3342
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003343#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003344static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003345{
Gavin Howard01055ba2018-11-03 11:00:21 -06003346 if (isspace(l->buf[l->i - 1])) {
3347 bc_lex_whitespace(l);
3348 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003349 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003350 RETURN_STATUS(bc_error("extended register"));
3351 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003352 }
3353 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003354 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003355 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003356 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003357 l->t.t = BC_LEX_NAME;
3358 }
3359
Denys Vlasenko29301232018-12-11 15:29:32 +01003360 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003361}
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003362#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01003363# define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003364#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003365
Denys Vlasenko29301232018-12-11 15:29:32 +01003366static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003367{
3368 size_t depth = 1, nls = 0, i = l->i;
3369 char c;
3370
3371 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003372 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003373
3374 for (c = l->buf[i]; c != 0 && depth; c = l->buf[++i]) {
3375
3376 depth += (c == '[' && (i == l->i || l->buf[i - 1] != '\\'));
3377 depth -= (c == ']' && (i == l->i || l->buf[i - 1] != '\\'));
3378 nls += (c == '\n');
3379
3380 if (depth) bc_vec_push(&l->t.v, &c);
3381 }
3382
3383 if (c == '\0') {
3384 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003385 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003386 }
3387
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003388 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003389 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3390 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3391 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003392 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003393 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003394
3395 l->i = i;
3396 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003397 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003398
Denys Vlasenko29301232018-12-11 15:29:32 +01003399 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003400}
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003401#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01003402# define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003403#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003404
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003405static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003406{
3407 BcStatus s = BC_STATUS_SUCCESS;
3408 char c = l->buf[l->i++], c2;
3409 size_t i;
3410
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003411 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3412 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003413 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003414 }
3415
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003416 if (c >= '%' && c <= '~'
3417 && (l->t.t = dc_lex_tokens[(c - '%')]) != BC_LEX_INVALID
3418 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003419 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003420 }
3421
3422 // This is the workhorse of the lexer.
3423 switch (c) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003424 case '\0':
Gavin Howard01055ba2018-11-03 11:00:21 -06003425 l->t.t = BC_LEX_EOF;
3426 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003427 case '\n':
3428 case '\t':
3429 case '\v':
3430 case '\f':
3431 case '\r':
3432 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003433 l->newline = (c == '\n');
3434 bc_lex_whitespace(l);
3435 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003436 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003437 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003438 if (c2 == '=')
3439 l->t.t = BC_LEX_OP_REL_NE;
3440 else if (c2 == '<')
3441 l->t.t = BC_LEX_OP_REL_LE;
3442 else if (c2 == '>')
3443 l->t.t = BC_LEX_OP_REL_GE;
3444 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003445 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003446 ++l->i;
3447 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003448 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003449 bc_lex_lineComment(l);
3450 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003451 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003452 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003453 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003454 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003455 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003456 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003457 case '0':
3458 case '1':
3459 case '2':
3460 case '3':
3461 case '4':
3462 case '5':
3463 case '6':
3464 case '7':
3465 case '8':
3466 case '9':
3467 case 'A':
3468 case 'B':
3469 case 'C':
3470 case 'D':
3471 case 'E':
3472 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003473 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003474 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003475 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003476 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003477 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003478 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003479 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003480 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003481 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003482 }
3483
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003484 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003485}
3486#endif // ENABLE_DC
3487
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003488static void bc_program_addFunc(char *name, size_t *idx);
3489
Gavin Howard01055ba2018-11-03 11:00:21 -06003490static void bc_parse_addFunc(BcParse *p, char *name, size_t *idx)
3491{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003492 bc_program_addFunc(name, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003493 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003494}
3495
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003496static void bc_parse_push(BcParse *p, char i)
3497{
3498 dbg_lex("%s:%d pushing opcode %d", __func__, __LINE__, i);
3499 bc_vec_pushByte(&p->func->code, i);
3500}
Denys Vlasenkob23ac512018-12-06 13:10:56 +01003501
Gavin Howard01055ba2018-11-03 11:00:21 -06003502static void bc_parse_pushName(BcParse *p, char *name)
3503{
3504 size_t i = 0, len = strlen(name);
3505
3506 for (; i < len; ++i) bc_parse_push(p, name[i]);
3507 bc_parse_push(p, BC_PARSE_STREND);
3508
3509 free(name);
3510}
3511
3512static void bc_parse_pushIndex(BcParse *p, size_t idx)
3513{
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003514 size_t mask;
3515 unsigned amt;
Gavin Howard01055ba2018-11-03 11:00:21 -06003516
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003517 dbg_lex("%s:%d pushing index %d", __func__, __LINE__, idx);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003518 mask = ((size_t)0xff) << (sizeof(idx) * 8 - 8);
3519 amt = sizeof(idx);
3520 do {
3521 if (idx & mask) break;
3522 mask >>= 8;
3523 amt--;
3524 } while (amt != 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003525
3526 bc_parse_push(p, amt);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003527
3528 while (idx != 0) {
3529 bc_parse_push(p, (unsigned char)idx);
3530 idx >>= 8;
3531 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003532}
3533
3534static void bc_parse_number(BcParse *p, BcInst *prev, size_t *nexs)
3535{
3536 char *num = xstrdup(p->l.t.v.v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003537 size_t idx = G.prog.consts.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06003538
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003539 bc_vec_push(&G.prog.consts, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06003540
3541 bc_parse_push(p, BC_INST_NUM);
3542 bc_parse_pushIndex(p, idx);
3543
3544 ++(*nexs);
3545 (*prev) = BC_INST_NUM;
3546}
3547
Denys Vlasenko99b37622018-12-15 20:06:59 +01003548IF_BC(static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p);)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01003549IF_DC(static BC_STATUS zdc_parse_parse(BcParse *p);)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003550
3551static BC_STATUS zcommon_parse(BcParse *p)
3552{
3553 if (IS_BC) {
Denys Vlasenko99b37622018-12-15 20:06:59 +01003554 IF_BC(RETURN_STATUS(zbc_parse_stmt_or_funcdef(p));)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003555 }
3556 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3557}
3558
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003559static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003560{
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003561 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003562
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003563 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
Gavin Howard01055ba2018-11-03 11:00:21 -06003564}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003565#if ERRORS_ARE_FATAL
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003566# define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko26819db2018-12-12 16:08:46 +01003567#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003568
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003569// Called when parsing or execution detects a failure,
3570// resets execution structures.
3571static void bc_program_reset(void)
3572{
3573 BcFunc *f;
3574 BcInstPtr *ip;
3575
3576 bc_vec_npop(&G.prog.stack, G.prog.stack.len - 1);
3577 bc_vec_pop_all(&G.prog.results);
3578
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003579 f = bc_program_func(0);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003580 ip = bc_vec_top(&G.prog.stack);
3581 ip->idx = f->code.len;
3582}
3583
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003584#define bc_parse_updateFunc(p, f) \
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003585 ((p)->func = bc_program_func((p)->fidx = (f)))
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003586
Denys Vlasenko26819db2018-12-12 16:08:46 +01003587// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003588// resets parsing structures.
3589static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003590{
3591 if (p->fidx != BC_PROG_MAIN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003592 p->func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003593 bc_vec_pop_all(&p->func->code);
3594 bc_vec_pop_all(&p->func->autos);
3595 bc_vec_pop_all(&p->func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06003596
3597 bc_parse_updateFunc(p, BC_PROG_MAIN);
3598 }
3599
3600 p->l.i = p->l.len;
3601 p->l.t.t = BC_LEX_EOF;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003602 p->nbraces = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06003603
Denys Vlasenko7d628012018-12-04 21:46:47 +01003604 bc_vec_pop_all(&p->exits);
3605 bc_vec_pop_all(&p->conds);
3606 bc_vec_pop_all(&p->ops);
Gavin Howard01055ba2018-11-03 11:00:21 -06003607
Denys Vlasenkod38af482018-12-04 19:11:02 +01003608 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003609}
3610
3611static void bc_parse_free(BcParse *p)
3612{
Gavin Howard01055ba2018-11-03 11:00:21 -06003613 bc_vec_free(&p->exits);
3614 bc_vec_free(&p->conds);
3615 bc_vec_free(&p->ops);
3616 bc_lex_free(&p->l);
3617}
3618
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003619static void bc_parse_create(BcParse *p, size_t func)
Gavin Howard01055ba2018-11-03 11:00:21 -06003620{
3621 memset(p, 0, sizeof(BcParse));
3622
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003623 bc_lex_init(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003624 bc_vec_init(&p->exits, sizeof(BcInstPtr), NULL);
3625 bc_vec_init(&p->conds, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003626 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3627
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003628 // p->nbraces = 0; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06003629 bc_parse_updateFunc(p, func);
3630}
3631
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003632#if ENABLE_BC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003633
3634#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3635#define BC_PARSE_LEAF(p, rparen) \
3636 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3637 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3638
3639// We can calculate the conversion between tokens and exprs by subtracting the
3640// position of the first operator in the lex enum and adding the position of the
3641// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003642#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003643
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003644static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003645static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next);
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01003646static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003647#if ERRORS_ARE_FATAL
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003648# define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003649# defone zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__), BC_STATUS_SUCCESS)
3650#endif
3651
3652static BC_STATUS zbc_parse_stmt(BcParse *p)
3653{
3654 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3655}
3656#if ERRORS_ARE_FATAL
3657# define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003658#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003659
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003660static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3661 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003662{
Denys Vlasenko65437582018-12-05 19:37:19 +01003663 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3664 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003665
3666 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003667 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003668 if (t == BC_LEX_LPAREN) break;
3669
Denys Vlasenko65437582018-12-05 19:37:19 +01003670 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003671 if (l >= r && (l != r || !left)) break;
3672
Denys Vlasenko0154d782018-12-14 23:32:51 +01003673 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003674 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003675 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003676 }
3677
3678 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003679}
3680
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003681static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003682{
3683 BcLexType top;
3684
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003685 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003686 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003687 top = BC_PARSE_TOP_OP(p);
3688
3689 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003690 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003691
3692 bc_vec_pop(&p->ops);
3693 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3694
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003695 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003696 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003697 top = BC_PARSE_TOP_OP(p);
3698 }
3699
3700 bc_vec_pop(&p->ops);
3701
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003702 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003703}
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003704#if ERRORS_ARE_FATAL
3705# define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__), BC_STATUS_SUCCESS)
3706#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003707
Denys Vlasenko26819db2018-12-12 16:08:46 +01003708static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003709{
3710 BcStatus s;
3711 bool comma = false;
3712 size_t nparams;
3713
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003714 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003715 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003716 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003717
3718 for (nparams = 0; p->l.t.t != BC_LEX_RPAREN; ++nparams) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003719 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003720 s = zbc_parse_expr(p, flags, bc_parse_next_param);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003721 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003722
3723 comma = p->l.t.t == BC_LEX_COMMA;
3724 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003725 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003726 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003727 }
3728 }
3729
Denys Vlasenko26819db2018-12-12 16:08:46 +01003730 if (comma) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003731 bc_parse_push(p, BC_INST_CALL);
3732 bc_parse_pushIndex(p, nparams);
3733
Denys Vlasenko26819db2018-12-12 16:08:46 +01003734 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003735}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003736#if ERRORS_ARE_FATAL
3737# define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__), BC_STATUS_SUCCESS)
3738#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003739
Denys Vlasenko26819db2018-12-12 16:08:46 +01003740static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003741{
3742 BcStatus s;
3743 BcId entry, *entry_ptr;
3744 size_t idx;
3745
3746 entry.name = name;
3747
Denys Vlasenko26819db2018-12-12 16:08:46 +01003748 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003749 if (s) goto err;
3750
3751 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003752 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003753 goto err;
3754 }
3755
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003756 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003757
3758 if (idx == BC_VEC_INVALID_IDX) {
3759 name = xstrdup(entry.name);
3760 bc_parse_addFunc(p, name, &idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003761 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003762 free(entry.name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003763 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003764 free(name);
3765
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003766 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003767 bc_parse_pushIndex(p, entry_ptr->idx);
3768
Denys Vlasenko26819db2018-12-12 16:08:46 +01003769 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003770
3771err:
3772 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003773 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003774}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003775#if ERRORS_ARE_FATAL
3776# define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__), BC_STATUS_SUCCESS)
3777#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003778
Denys Vlasenko26819db2018-12-12 16:08:46 +01003779static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003780{
3781 BcStatus s;
3782 char *name;
3783
3784 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003785 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003786 if (s) goto err;
3787
3788 if (p->l.t.t == BC_LEX_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003789 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003790 if (s) goto err;
3791
3792 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003793 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003794 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003795 goto err;
3796 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003797 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003798 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003799 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003800 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003801 s = zbc_parse_expr(p, flags, bc_parse_next_elem);
Gavin Howard01055ba2018-11-03 11:00:21 -06003802 if (s) goto err;
3803 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003804 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003805 if (s) goto err;
3806 bc_parse_push(p, *type);
3807 bc_parse_pushName(p, name);
3808 }
3809 else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003810 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003811 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003812 goto err;
3813 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003814 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003815 s = zbc_parse_call(p, name, flags);
3816 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003817 *type = BC_INST_VAR;
3818 bc_parse_push(p, BC_INST_VAR);
3819 bc_parse_pushName(p, name);
3820 }
3821
Denys Vlasenko26819db2018-12-12 16:08:46 +01003822 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003823
3824err:
3825 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003826 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003827}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003828#if ERRORS_ARE_FATAL
3829# define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__), BC_STATUS_SUCCESS)
3830#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003831
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003832static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003833{
3834 BcStatus s;
3835
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003836 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003837 if (s) RETURN_STATUS(s);
3838 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003839
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003840 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003841 if (s) RETURN_STATUS(s);
3842 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003843
3844 bc_parse_push(p, BC_INST_READ);
3845
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003846 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003847}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003848#if ERRORS_ARE_FATAL
3849# define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__), BC_STATUS_SUCCESS)
3850#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003851
Denys Vlasenko26819db2018-12-12 16:08:46 +01003852static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003853 BcInst *prev)
3854{
3855 BcStatus s;
3856
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003857 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003858 if (s) RETURN_STATUS(s);
3859 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003860
3861 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3862
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003863 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003864 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003865
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003866 s = zbc_parse_expr(p, flags, bc_parse_next_rel);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003867 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003868
Denys Vlasenko26819db2018-12-12 16:08:46 +01003869 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003870
3871 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3872 bc_parse_push(p, *prev);
3873
Denys Vlasenko26819db2018-12-12 16:08:46 +01003874 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003875}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003876#if ERRORS_ARE_FATAL
3877# define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__), BC_STATUS_SUCCESS)
3878#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003879
Denys Vlasenko26819db2018-12-12 16:08:46 +01003880static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003881{
3882 BcStatus s;
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
3887 if (p->l.t.t != BC_LEX_LPAREN) {
3888 *type = BC_INST_SCALE;
3889 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003890 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003891 }
3892
3893 *type = BC_INST_SCALE_FUNC;
3894 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
3895
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003896 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003897 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003898
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003899 s = zbc_parse_expr(p, flags, bc_parse_next_rel);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003900 if (s) RETURN_STATUS(s);
3901 if (p->l.t.t != BC_LEX_RPAREN)
3902 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003903 bc_parse_push(p, BC_INST_SCALE_FUNC);
3904
Denys Vlasenko26819db2018-12-12 16:08:46 +01003905 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003906}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003907#if ERRORS_ARE_FATAL
3908# define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__), BC_STATUS_SUCCESS)
3909#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003910
Denys Vlasenko26819db2018-12-12 16:08:46 +01003911static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003912 size_t *nexprs, uint8_t flags)
3913{
3914 BcStatus s;
3915 BcLexType type;
3916 char inst;
3917 BcInst etype = *prev;
3918
3919 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM ||
3920 etype == BC_INST_SCALE || etype == BC_INST_LAST ||
3921 etype == BC_INST_IBASE || etype == BC_INST_OBASE)
3922 {
3923 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
3924 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003925 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003926 }
3927 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003928 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
3929 *paren_expr = true;
3930
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003931 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003932 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003933 type = p->l.t.t;
3934
3935 // Because we parse the next part of the expression
3936 // right here, we need to increment this.
3937 *nexprs = *nexprs + 1;
3938
3939 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003940 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01003941 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003942 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003943 case BC_LEX_KEY_IBASE:
3944 case BC_LEX_KEY_LAST:
3945 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06003946 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003947 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003948 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003949 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003950 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003951 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003952 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003953 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003954 else
3955 bc_parse_push(p, BC_INST_SCALE);
3956 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003957 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003958 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003959 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003960 }
3961
3962 if (!s) bc_parse_push(p, inst);
3963 }
3964
Denys Vlasenko26819db2018-12-12 16:08:46 +01003965 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003966}
Denys Vlasenko26819db2018-12-12 16:08:46 +01003967#if ERRORS_ARE_FATAL
3968# define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__), BC_STATUS_SUCCESS)
3969#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003970
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003971static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06003972 bool rparen, size_t *nexprs)
3973{
3974 BcStatus s;
3975 BcLexType type;
3976 BcInst etype = *prev;
3977
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003978 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003979 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003980
3981 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
3982 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
3983 BC_LEX_OP_MINUS :
3984 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01003985 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003986
3987 // We can just push onto the op stack because this is the largest
3988 // precedence operator that gets pushed. Inc/dec does not.
3989 if (type != BC_LEX_OP_MINUS)
3990 bc_vec_push(&p->ops, &type);
3991 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003992 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06003993
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003994 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003995}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003996#if ERRORS_ARE_FATAL
3997# define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__), BC_STATUS_SUCCESS)
3998#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06003999
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004000static BC_STATUS zbc_parse_string(BcParse *p, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004001{
4002 char *str = xstrdup(p->l.t.v.v);
4003
4004 bc_parse_push(p, BC_INST_STR);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004005 bc_parse_pushIndex(p, G.prog.strs.len);
4006 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004007 bc_parse_push(p, inst);
4008
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004009 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004010}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004011#if ERRORS_ARE_FATAL
4012# define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__), BC_STATUS_SUCCESS)
4013#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004014
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004015static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004016{
4017 BcStatus s;
4018 BcLexType type;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004019 bool comma;
Gavin Howard01055ba2018-11-03 11:00:21 -06004020
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004021 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004022 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004023
4024 type = p->l.t.t;
4025
4026 if (type == BC_LEX_SCOLON || type == BC_LEX_NLINE)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004027 RETURN_STATUS(bc_error("bad print statement"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004028
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004029 comma = false;
4030 while (type != BC_LEX_SCOLON && type != BC_LEX_NLINE) {
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004031 if (type == BC_LEX_STR) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004032 s = zbc_parse_string(p, BC_INST_PRINT_POP);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004033 if (s) RETURN_STATUS(s);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004034 } else {
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004035 s = zbc_parse_expr(p, 0, bc_parse_next_print);
4036 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004037 bc_parse_push(p, BC_INST_PRINT_POP);
4038 }
4039
Gavin Howard01055ba2018-11-03 11:00:21 -06004040 comma = p->l.t.t == BC_LEX_COMMA;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004041 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004042 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004043 if (s) RETURN_STATUS(s);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004044 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004045 type = p->l.t.t;
4046 }
4047
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004048 if (comma) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004049
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004050 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004051}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004052#if ERRORS_ARE_FATAL
4053# define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__), BC_STATUS_SUCCESS)
4054#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004055
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004056static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004057{
4058 BcStatus s;
4059 BcLexType t;
4060 bool paren;
4061
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004062 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004063
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004064 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004065 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004066
4067 t = p->l.t.t;
4068 paren = t == BC_LEX_LPAREN;
4069
4070 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4071 bc_parse_push(p, BC_INST_RET0);
4072 else {
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004073 s = bc_parse_expr_empty_ok(p, 0, bc_parse_next_expr);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004074 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004075 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004076 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004077 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004078 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004079
4080 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004081 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004082 ERROR_RETURN(if (s) RETURN_STATUS(s);)
Gavin Howard01055ba2018-11-03 11:00:21 -06004083 }
4084
4085 bc_parse_push(p, BC_INST_RET);
4086 }
4087
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004088 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004089 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004090}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004091#if ERRORS_ARE_FATAL
4092# define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__), BC_STATUS_SUCCESS)
4093#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004094
Gavin Howard01055ba2018-11-03 11:00:21 -06004095static void bc_parse_noElse(BcParse *p)
4096{
4097 BcInstPtr *ip;
4098 size_t *label;
Gavin Howard01055ba2018-11-03 11:00:21 -06004099
4100 ip = bc_vec_top(&p->exits);
4101 label = bc_vec_item(&p->func->labels, ip->idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01004102 dbg_lex("%s:%d rewriting label: %d -> %d", __func__, __LINE__, *label, p->func->code.len);
Gavin Howard01055ba2018-11-03 11:00:21 -06004103 *label = p->func->code.len;
4104
4105 bc_vec_pop(&p->exits);
4106}
4107
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004108static BC_STATUS zbc_parse_else(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004109{
4110 BcStatus s;
4111 BcInstPtr ip;
4112
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004113 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004114
4115 ip.idx = p->func->labels.len;
4116 ip.func = ip.len = 0;
4117
Denys Vlasenko99b37622018-12-15 20:06:59 +01004118 dbg_lex("%s:%d after if() body: BC_INST_JUMP to %d", __func__, __LINE__, ip.idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004119 bc_parse_push(p, BC_INST_JUMP);
4120 bc_parse_pushIndex(p, ip.idx);
4121
Denys Vlasenko17df8822018-12-14 23:00:24 +01004122 dbg_lex("%s:%d calling bc_parse_noElse()", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004123 bc_parse_noElse(p);
4124
4125 bc_vec_push(&p->exits, &ip);
4126 bc_vec_push(&p->func->labels, &ip.idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004127
4128 s = zbc_parse_stmt(p);
4129 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004130
Denys Vlasenko17df8822018-12-14 23:00:24 +01004131 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004132 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004133}
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004134#if ERRORS_ARE_FATAL
4135# define zbc_parse_else(...) (zbc_parse_else(__VA_ARGS__), BC_STATUS_SUCCESS)
4136#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004137
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004138static BC_STATUS zbc_parse_if(BcParse *p)
4139{
4140 BcStatus s;
4141 BcInstPtr ip;
4142 BcInstPtr *ipp;
4143 size_t *label;
4144
4145 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4146 s = zbc_lex_next(&p->l);
4147 if (s) RETURN_STATUS(s);
4148 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4149
4150 s = zbc_lex_next(&p->l);
4151 if (s) RETURN_STATUS(s);
4152 s = zbc_parse_expr(p, BC_PARSE_REL, bc_parse_next_rel);
4153 if (s) RETURN_STATUS(s);
4154
4155 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
4156 s = zbc_lex_next(&p->l);
4157 if (s) RETURN_STATUS(s);
4158
4159 bc_parse_push(p, BC_INST_JUMP_ZERO);
4160 ip.idx = p->func->labels.len;
4161 ip.func = ip.len = 0;
4162 bc_parse_pushIndex(p, ip.idx);
4163//TODO: can get rid of p->exits stack?
4164 bc_vec_push(&p->exits, &ip);
4165 bc_vec_push(&p->func->labels, &ip.idx);
4166
4167 s = zbc_parse_stmt(p);
4168 if (s) RETURN_STATUS(s);
4169 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4170 if (p->l.t.t == BC_LEX_KEY_ELSE) {
4171 s = zbc_lex_next(&p->l);
4172 if (s) RETURN_STATUS(s);
4173 dbg_lex("%s:%d calling zbc_parse_else(), p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4174 s = zbc_parse_else(p);
4175 }
4176
4177 ipp = bc_vec_top(&p->exits);
4178 label = bc_vec_item(&p->func->labels, ipp->idx);
4179 dbg_lex("%s:%d rewriting label: %d -> %d", __func__, __LINE__, *label, p->func->code.len);
4180 *label = p->func->code.len;
4181
4182 bc_vec_pop(&p->exits);
4183
4184 dbg_lex_done("%s:%d done", __func__, __LINE__);
4185 RETURN_STATUS(s);
4186}
4187#if ERRORS_ARE_FATAL
4188# define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__), BC_STATUS_SUCCESS)
4189#endif
4190
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004191static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004192{
4193 BcStatus s;
4194 BcInstPtr ip;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004195 BcInstPtr *ipp;
4196 size_t *label;
4197 size_t n;
Gavin Howard01055ba2018-11-03 11:00:21 -06004198
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004199 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004200 if (s) RETURN_STATUS(s);
4201 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004202 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004203 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004204
4205 ip.idx = p->func->labels.len;
4206
4207 bc_vec_push(&p->func->labels, &p->func->code.len);
4208 bc_vec_push(&p->conds, &ip.idx);
4209
4210 ip.idx = p->func->labels.len;
4211 ip.func = 1;
4212 ip.len = 0;
4213
4214 bc_vec_push(&p->exits, &ip);
4215 bc_vec_push(&p->func->labels, &ip.idx);
4216
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004217 s = zbc_parse_expr(p, BC_PARSE_REL, bc_parse_next_rel);
4218 if (s) RETURN_STATUS(s);
4219 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004220 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004221 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004222
4223 bc_parse_push(p, BC_INST_JUMP_ZERO);
4224 bc_parse_pushIndex(p, ip.idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004225
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004226 s = zbc_parse_stmt(p);
4227 if (s) RETURN_STATUS(s);
4228
4229 n = *((size_t *) bc_vec_top(&p->conds));
4230 bc_parse_push(p, BC_INST_JUMP);
4231 bc_parse_pushIndex(p, n);
4232
4233 ipp = bc_vec_top(&p->exits);
4234 label = bc_vec_top(&p->conds);
4235
4236 dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, *label);
4237 bc_parse_push(p, BC_INST_JUMP);
4238 bc_parse_pushIndex(p, *label);
4239
4240 label = bc_vec_item(&p->func->labels, ipp->idx);
4241 dbg_lex("%s:%d rewriting label: %d -> %d", __func__, __LINE__, *label, p->func->code.len);
4242 *label = p->func->code.len;
4243
4244 bc_vec_pop(&p->exits);
4245 bc_vec_pop(&p->conds);
4246
4247 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004248}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004249#if ERRORS_ARE_FATAL
4250# define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__), BC_STATUS_SUCCESS)
4251#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004252
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004253static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004254{
4255 BcStatus s;
4256 BcInstPtr ip;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004257 BcInstPtr *ipp;
4258 size_t *label;
Gavin Howard01055ba2018-11-03 11:00:21 -06004259 size_t cond_idx, exit_idx, body_idx, update_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004260 size_t n;
Gavin Howard01055ba2018-11-03 11:00:21 -06004261
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004262 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004263 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004264 if (s) RETURN_STATUS(s);
4265 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004266 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004267 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004268
4269 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004270 s = zbc_parse_expr(p, 0, bc_parse_next_for);
Gavin Howard01055ba2018-11-03 11:00:21 -06004271 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004272 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Gavin Howard01055ba2018-11-03 11:00:21 -06004273
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004274 if (s) RETURN_STATUS(s);
4275 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004276 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004277 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004278
4279 cond_idx = p->func->labels.len;
4280 update_idx = cond_idx + 1;
4281 body_idx = update_idx + 1;
4282 exit_idx = body_idx + 1;
4283
4284 bc_vec_push(&p->func->labels, &p->func->code.len);
4285
4286 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004287 s = zbc_parse_expr(p, BC_PARSE_REL, bc_parse_next_for);
Gavin Howard01055ba2018-11-03 11:00:21 -06004288 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004289 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004290
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004291 if (s) RETURN_STATUS(s);
4292 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004293
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004294 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004295 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004296
4297 bc_parse_push(p, BC_INST_JUMP_ZERO);
4298 bc_parse_pushIndex(p, exit_idx);
4299 bc_parse_push(p, BC_INST_JUMP);
4300 bc_parse_pushIndex(p, body_idx);
4301
4302 ip.idx = p->func->labels.len;
4303
4304 bc_vec_push(&p->conds, &update_idx);
4305 bc_vec_push(&p->func->labels, &p->func->code.len);
4306
4307 if (p->l.t.t != BC_LEX_RPAREN)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004308 s = zbc_parse_expr(p, 0, bc_parse_next_rel);
Gavin Howard01055ba2018-11-03 11:00:21 -06004309 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004310 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Gavin Howard01055ba2018-11-03 11:00:21 -06004311
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004312 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004313
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004314 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004315 bc_parse_push(p, BC_INST_JUMP);
4316 bc_parse_pushIndex(p, cond_idx);
4317 bc_vec_push(&p->func->labels, &p->func->code.len);
4318
4319 ip.idx = exit_idx;
4320 ip.func = 1;
4321 ip.len = 0;
4322
4323 bc_vec_push(&p->exits, &ip);
4324 bc_vec_push(&p->func->labels, &ip.idx);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004325 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004326 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004327
4328 s = zbc_parse_stmt(p);
4329 if (s) RETURN_STATUS(s);
4330
4331 n = *((size_t *) bc_vec_top(&p->conds));
4332 bc_parse_push(p, BC_INST_JUMP);
4333 bc_parse_pushIndex(p, n);
4334
4335 ipp = bc_vec_top(&p->exits);
4336 label = bc_vec_top(&p->conds);
4337
4338//TODO: commonalize?
4339 dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, *label);
4340 bc_parse_push(p, BC_INST_JUMP);
4341 bc_parse_pushIndex(p, *label);
4342
4343 label = bc_vec_item(&p->func->labels, ipp->idx);
4344 dbg_lex("%s:%d rewriting label: %d -> %d", __func__, __LINE__, *label, p->func->code.len);
4345 *label = p->func->code.len;
4346
4347 bc_vec_pop(&p->exits);
4348 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004349
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004350 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004351}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004352#if ERRORS_ARE_FATAL
4353# define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__), BC_STATUS_SUCCESS)
4354#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004355
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004356static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004357{
4358 BcStatus s;
4359 size_t i;
4360 BcInstPtr *ip;
4361
Gavin Howard01055ba2018-11-03 11:00:21 -06004362 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004363 if (p->exits.len == 0) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004364
4365 i = p->exits.len - 1;
4366 ip = bc_vec_item(&p->exits, i);
4367
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004368 while (!ip->func && i < p->exits.len)
4369 ip = bc_vec_item(&p->exits, i--);
4370 if (i >= p->exits.len && !ip->func)
4371 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004372
4373 i = ip->idx;
4374 }
4375 else
4376 i = *((size_t *) bc_vec_top(&p->conds));
4377
4378 bc_parse_push(p, BC_INST_JUMP);
4379 bc_parse_pushIndex(p, i);
4380
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004381 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004382 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004383
4384 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004385 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004386
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004387 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004388}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004389#if ERRORS_ARE_FATAL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004390# define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004391#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004392
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004393static BC_STATUS zbc_parse_func(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004394{
4395 BcStatus s;
4396 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004397 char *name;
4398
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004399 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004400 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004401 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004402 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004403
4404 name = xstrdup(p->l.t.v.v);
4405 bc_parse_addFunc(p, name, &p->fidx);
4406
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004407 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004408 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004409 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004410 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004411 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004412 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004413
4414 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004415 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004416 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004417
4418 ++p->func->nparams;
4419
4420 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004421 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004422 if (s) goto err;
4423
4424 var = p->l.t.t != BC_LEX_LBRACKET;
4425
4426 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004427 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004428 if (s) goto err;
4429
4430 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004431 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004432 goto err;
4433 }
4434
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004435 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004436 if (s) goto err;
4437 }
4438
4439 comma = p->l.t.t == BC_LEX_COMMA;
4440 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004441 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004442 if (s) goto err;
4443 }
4444
Denys Vlasenko29301232018-12-11 15:29:32 +01004445 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004446 if (s) goto err;
4447 }
4448
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004449 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004450
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004451 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004452 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004453
4454 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004455 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004456
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004457 s = zbc_parse_stmt_possibly_auto(p, true);
4458 if (s) RETURN_STATUS(s);
4459
4460 bc_parse_push(p, BC_INST_RET0);
4461 bc_parse_updateFunc(p, BC_PROG_MAIN);
4462
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004463 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004464
4465err:
4466 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004467 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004468}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004469#if ERRORS_ARE_FATAL
4470# define zbc_parse_func(...) (zbc_parse_func(__VA_ARGS__), BC_STATUS_SUCCESS)
4471#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004472
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004473static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004474{
4475 BcStatus s;
4476 bool comma, var, one;
4477 char *name;
4478
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004479 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004480 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004481 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004482
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004483 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004484 one = p->l.t.t == BC_LEX_NAME;
4485
4486 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004487 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004488 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004489 if (s) goto err;
4490
4491 var = p->l.t.t != BC_LEX_LBRACKET;
4492 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004493 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004494 if (s) goto err;
4495
4496 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004497 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004498 goto err;
4499 }
4500
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004501 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004502 if (s) goto err;
4503 }
4504
4505 comma = p->l.t.t == BC_LEX_COMMA;
4506 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004507 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004508 if (s) goto err;
4509 }
4510
Denys Vlasenko29301232018-12-11 15:29:32 +01004511 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004512 if (s) goto err;
4513 }
4514
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004515 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4516 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004517
4518 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004519 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004520
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004521 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004522 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004523
4524err:
4525 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004526 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004527 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004528}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004529#if ERRORS_ARE_FATAL
4530# define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__), BC_STATUS_SUCCESS)
4531#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004532
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004533#undef zbc_parse_stmt_possibly_auto
4534static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004535{
4536 BcStatus s = BC_STATUS_SUCCESS;
4537
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004538 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004539
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004540 if (p->l.t.t == BC_LEX_NLINE) {
4541 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4542 RETURN_STATUS(zbc_lex_next(&p->l));
4543 }
4544 if (p->l.t.t == BC_LEX_SCOLON) {
4545 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4546 RETURN_STATUS(zbc_lex_next(&p->l));
4547 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004548
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004549 if (p->l.t.t == BC_LEX_LBRACE) {
4550 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4551 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004552 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004553 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004554 } while (p->l.t.t == BC_LEX_NLINE);
4555 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4556 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4557 s = zbc_parse_auto(p);
4558 if (s) RETURN_STATUS(s);
4559 }
4560 while (p->l.t.t != BC_LEX_RBRACE) {
4561 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4562 s = zbc_parse_stmt(p);
4563 if (s) RETURN_STATUS(s);
4564 }
4565 s = zbc_lex_next(&p->l);
4566 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4567 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004568 }
4569
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004570 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004571 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004572 case BC_LEX_OP_INC:
4573 case BC_LEX_OP_DEC:
4574 case BC_LEX_OP_MINUS:
4575 case BC_LEX_OP_BOOL_NOT:
4576 case BC_LEX_LPAREN:
4577 case BC_LEX_NAME:
4578 case BC_LEX_NUMBER:
4579 case BC_LEX_KEY_IBASE:
4580 case BC_LEX_KEY_LAST:
4581 case BC_LEX_KEY_LENGTH:
4582 case BC_LEX_KEY_OBASE:
4583 case BC_LEX_KEY_READ:
4584 case BC_LEX_KEY_SCALE:
4585 case BC_LEX_KEY_SQRT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004586 s = zbc_parse_expr(p, BC_PARSE_PRINT, bc_parse_next_expr);
Gavin Howard01055ba2018-11-03 11:00:21 -06004587 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004588 case BC_LEX_STR:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004589 s = zbc_parse_string(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004590 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004591 case BC_LEX_KEY_BREAK:
4592 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004593 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004594 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004595 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004596 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004597 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004598 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004599 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004600 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004601 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004602 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004603 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004604 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004605 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004606 // "limits" is a compile-time command,
4607 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004608 printf(
4609 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4610 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4611 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4612 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4613 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4614 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4615 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4616 "Number of vars = "BC_MAX_VARS_STR "\n"
4617 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004618 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004619 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004620 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004621 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004622 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004623 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004624 // "quit" is a compile-time command. For example,
4625 // "if (0 == 1) quit" terminates when parsing the statement,
4626 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004627 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004628 case BC_LEX_KEY_RETURN:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004629 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004630 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004631 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004632 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004633 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004634 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004635 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004636 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004637 }
4638
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004639 if (s || G_interrupt) {
4640 bc_parse_reset(p);
4641 s = BC_STATUS_FAILURE;
4642 }
4643
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004644 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004645 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004646}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004647#if ERRORS_ARE_FATAL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004648# define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004649#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004650
Denys Vlasenko99b37622018-12-15 20:06:59 +01004651static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004652{
4653 BcStatus s;
4654
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004655 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004656 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004657 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004658 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004659 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004660 s = zbc_parse_func(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004661 } else {
4662 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 +01004663 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004664 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004665
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004666 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004667 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004668}
Denys Vlasenko26819db2018-12-12 16:08:46 +01004669#if ERRORS_ARE_FATAL
Denys Vlasenko99b37622018-12-15 20:06:59 +01004670# define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko26819db2018-12-12 16:08:46 +01004671#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004672
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004673// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004674static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next)
Gavin Howard01055ba2018-11-03 11:00:21 -06004675{
4676 BcStatus s = BC_STATUS_SUCCESS;
4677 BcInst prev = BC_INST_PRINT;
4678 BcLexType top, t = p->l.t.t;
4679 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004680 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004681 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4682
Denys Vlasenko17df8822018-12-14 23:00:24 +01004683 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004684 paren_first = p->l.t.t == BC_LEX_LPAREN;
4685 nparens = nrelops = 0;
4686 paren_expr = rprn = done = get_token = assign = false;
4687 bin_last = true;
4688
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004689 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004690 switch (t) {
4691
4692 case BC_LEX_OP_INC:
4693 case BC_LEX_OP_DEC:
4694 {
Denys Vlasenko26819db2018-12-12 16:08:46 +01004695 s = zbc_parse_incdec(p, &prev, &paren_expr, &nexprs, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004696 rprn = get_token = bin_last = false;
4697 break;
4698 }
4699
4700 case BC_LEX_OP_MINUS:
4701 {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004702 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004703 rprn = get_token = false;
4704 bin_last = prev == BC_INST_MINUS;
4705 break;
4706 }
4707
4708 case BC_LEX_OP_ASSIGN_POWER:
4709 case BC_LEX_OP_ASSIGN_MULTIPLY:
4710 case BC_LEX_OP_ASSIGN_DIVIDE:
4711 case BC_LEX_OP_ASSIGN_MODULUS:
4712 case BC_LEX_OP_ASSIGN_PLUS:
4713 case BC_LEX_OP_ASSIGN_MINUS:
4714 case BC_LEX_OP_ASSIGN:
4715 {
4716 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM &&
4717 prev != BC_INST_SCALE && prev != BC_INST_IBASE &&
4718 prev != BC_INST_OBASE && prev != BC_INST_LAST)
4719 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004720 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004721 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004722 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004723 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004724 break;
4725 }
4726 }
4727 // Fallthrough.
4728 case BC_LEX_OP_POWER:
4729 case BC_LEX_OP_MULTIPLY:
4730 case BC_LEX_OP_DIVIDE:
4731 case BC_LEX_OP_MODULUS:
4732 case BC_LEX_OP_PLUS:
4733 case BC_LEX_OP_REL_EQ:
4734 case BC_LEX_OP_REL_LE:
4735 case BC_LEX_OP_REL_GE:
4736 case BC_LEX_OP_REL_NE:
4737 case BC_LEX_OP_REL_LT:
4738 case BC_LEX_OP_REL_GT:
4739 case BC_LEX_OP_BOOL_NOT:
4740 case BC_LEX_OP_BOOL_OR:
4741 case BC_LEX_OP_BOOL_AND:
4742 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004743 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4744 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4745 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004746 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004747 }
4748
4749 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004750 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004751 bc_parse_operator(p, t, ops_bgn, &nexprs);
4752 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004753 rprn = get_token = false;
4754 bin_last = t != BC_LEX_OP_BOOL_NOT;
4755
4756 break;
4757 }
4758
4759 case BC_LEX_LPAREN:
4760 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004761 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004762 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004763 ++nparens;
4764 paren_expr = rprn = bin_last = false;
4765 get_token = true;
4766 bc_vec_push(&p->ops, &t);
4767
4768 break;
4769 }
4770
4771 case BC_LEX_RPAREN:
4772 {
4773 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004774 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004775
4776 if (nparens == 0) {
4777 s = BC_STATUS_SUCCESS;
4778 done = true;
4779 get_token = false;
4780 break;
4781 }
Denys Vlasenko17df8822018-12-14 23:00:24 +01004782 else if (!paren_expr) {
4783 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004784 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004785 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004786
4787 --nparens;
4788 paren_expr = rprn = true;
4789 get_token = bin_last = false;
4790
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004791 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004792
4793 break;
4794 }
4795
4796 case BC_LEX_NAME:
4797 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004798 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004799 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004800 paren_expr = true;
4801 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004802 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004803 ++nexprs;
4804
4805 break;
4806 }
4807
4808 case BC_LEX_NUMBER:
4809 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004810 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004811 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004812 bc_parse_number(p, &prev, &nexprs);
4813 paren_expr = get_token = true;
4814 rprn = bin_last = false;
4815
4816 break;
4817 }
4818
4819 case BC_LEX_KEY_IBASE:
4820 case BC_LEX_KEY_LAST:
4821 case BC_LEX_KEY_OBASE:
4822 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004823 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004824 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004825 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4826 bc_parse_push(p, (char) prev);
4827
4828 paren_expr = get_token = true;
4829 rprn = bin_last = false;
4830 ++nexprs;
4831
4832 break;
4833 }
4834
4835 case BC_LEX_KEY_LENGTH:
4836 case BC_LEX_KEY_SQRT:
4837 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004838 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004839 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004840 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004841 paren_expr = true;
4842 rprn = get_token = bin_last = false;
4843 ++nexprs;
4844
4845 break;
4846 }
4847
4848 case BC_LEX_KEY_READ:
4849 {
4850 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004851 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004852 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004853 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004854 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004855 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004856
4857 paren_expr = true;
4858 rprn = get_token = bin_last = false;
4859 ++nexprs;
4860 prev = BC_INST_READ;
4861
4862 break;
4863 }
4864
4865 case BC_LEX_KEY_SCALE:
4866 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004867 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004868 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004869 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004870 paren_expr = true;
4871 rprn = get_token = bin_last = false;
4872 ++nexprs;
4873 prev = BC_INST_SCALE;
4874
4875 break;
4876 }
4877
4878 default:
4879 {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004880 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004881 break;
4882 }
4883 }
4884
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004885 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004886 }
4887
4888 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004889 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004890
4891 while (p->ops.len > ops_bgn) {
4892
4893 top = BC_PARSE_TOP_OP(p);
4894 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4895
4896 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004897 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004898
Denys Vlasenko0154d782018-12-14 23:32:51 +01004899 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004900
4901 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4902 bc_vec_pop(&p->ops);
4903 }
4904
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004905 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004906 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004907
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004908//TODO: why is this needed at all?
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004909 // next is BcParseNext, byte array of up to 4 BC_LEX's, packed into 32-bit word
4910 for (;;) {
4911 if (t == (next & 0x7f))
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004912 goto ok;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004913 if (next & 0x80) // last element?
4914 break;
4915 next >>= 8;
4916 }
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004917 if (t != BC_LEX_KEY_ELSE)
4918 return bc_error_bad_expression();
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004919 ok:
Gavin Howard01055ba2018-11-03 11:00:21 -06004920
4921 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004922 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01004923 ERROR_RETURN(if (s) return s;)
Gavin Howard01055ba2018-11-03 11:00:21 -06004924 }
4925 else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004926 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01004927 ERROR_RETURN(if (s) return s;)
Gavin Howard01055ba2018-11-03 11:00:21 -06004928 }
4929
4930 if (flags & BC_PARSE_PRINT) {
4931 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4932 bc_parse_push(p, BC_INST_POP);
4933 }
4934
Denys Vlasenko17df8822018-12-14 23:00:24 +01004935 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004936 return s;
4937}
4938
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004939#undef zbc_parse_expr
4940static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next)
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004941{
4942 BcStatus s;
4943
4944 s = bc_parse_expr_empty_ok(p, flags, next);
4945 if (s == BC_STATUS_PARSE_EMPTY_EXP)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004946 RETURN_STATUS(bc_error("empty expression"));
4947 RETURN_STATUS(s);
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004948}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004949#if ERRORS_ARE_FATAL
4950# define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
4951#endif
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004952
Gavin Howard01055ba2018-11-03 11:00:21 -06004953#endif // ENABLE_BC
4954
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004955#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004956
4957#define DC_PARSE_BUF_LEN ((int) (sizeof(uint32_t) * CHAR_BIT))
4958
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004959static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004960{
4961 BcStatus s;
4962 char *name;
4963
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004964 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004965 if (s) RETURN_STATUS(s);
4966 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004967
4968 name = xstrdup(p->l.t.v.v);
4969 bc_parse_pushName(p, name);
4970
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004971 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004972}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004973#if ERRORS_ARE_FATAL
4974# define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__), BC_STATUS_SUCCESS)
4975#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004976
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004977static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004978{
4979 char *str, *name, b[DC_PARSE_BUF_LEN + 1];
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004980 size_t idx, len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004981
4982 sprintf(b, "%0*zu", DC_PARSE_BUF_LEN, len);
4983 name = xstrdup(b);
4984
4985 str = xstrdup(p->l.t.v.v);
4986 bc_parse_push(p, BC_INST_STR);
4987 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004988 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004989 bc_parse_addFunc(p, name, &idx);
4990
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004991 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004992}
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004993#if ERRORS_ARE_FATAL
4994# define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__), BC_STATUS_SUCCESS)
4995#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06004996
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004997static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004998{
4999 BcStatus s;
5000
5001 bc_parse_push(p, inst);
5002 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005003 s = zdc_parse_register(p);
5004 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005005 }
5006
5007 if (store) {
5008 bc_parse_push(p, BC_INST_SWAP);
5009 bc_parse_push(p, BC_INST_ASSIGN);
5010 bc_parse_push(p, BC_INST_POP);
5011 }
5012
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005013 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06005014}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005015#if ERRORS_ARE_FATAL
5016# define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__), BC_STATUS_SUCCESS)
5017#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005018
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005019static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005020{
5021 BcStatus s;
5022
5023 bc_parse_push(p, inst);
5024 bc_parse_push(p, BC_INST_EXEC_COND);
5025
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005026 s = zdc_parse_register(p);
5027 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005028
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005029 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005030 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005031
5032 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005033 s = zdc_parse_register(p);
5034 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005035 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005036 }
5037 else
5038 bc_parse_push(p, BC_PARSE_STREND);
5039
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005040 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005041}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005042#if ERRORS_ARE_FATAL
5043# define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__), BC_STATUS_SUCCESS)
5044#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005045
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005046static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06005047{
5048 BcStatus s = BC_STATUS_SUCCESS;
5049 BcInst prev;
5050 uint8_t inst;
5051 bool assign, get_token = false;
5052
5053 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005054 case BC_LEX_OP_REL_EQ:
5055 case BC_LEX_OP_REL_LE:
5056 case BC_LEX_OP_REL_GE:
5057 case BC_LEX_OP_REL_NE:
5058 case BC_LEX_OP_REL_LT:
5059 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005060 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005061 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005062 case BC_LEX_SCOLON:
5063 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005064 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06005065 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005066 case BC_LEX_STR:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005067 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06005068 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005069 case BC_LEX_NEG:
5070 case BC_LEX_NUMBER:
Gavin Howard01055ba2018-11-03 11:00:21 -06005071 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005072 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005073 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005074 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005075 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06005076 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005077 bc_parse_number(p, &prev, &p->nbraces);
Gavin Howard01055ba2018-11-03 11:00:21 -06005078 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
5079 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06005080 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005081 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06005082 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01005083 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06005084 else
5085 bc_parse_push(p, BC_INST_READ);
5086 get_token = true;
5087 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005088 case BC_LEX_OP_ASSIGN:
5089 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06005090 assign = t == BC_LEX_OP_ASSIGN;
5091 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005092 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06005093 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005094 case BC_LEX_LOAD:
5095 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06005096 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005097 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06005098 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005099 case BC_LEX_STORE_IBASE:
5100 case BC_LEX_STORE_SCALE:
5101 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06005102 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005103 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005104 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005105 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01005106 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06005107 get_token = true;
5108 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005109 }
5110
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005111 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005112
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005113 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005114}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005115#if ERRORS_ARE_FATAL
5116# define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__), BC_STATUS_SUCCESS)
5117#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005118
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005119static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06005120{
5121 BcStatus s = BC_STATUS_SUCCESS;
5122 BcInst inst;
5123 BcLexType t;
5124
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005125 if (flags & BC_PARSE_NOCALL) p->nbraces = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005126
5127 for (t = p->l.t.t; !s && t != BC_LEX_EOF; t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005128 inst = dc_parse_insts[t];
5129
5130 if (inst != BC_INST_INVALID) {
5131 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005132 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005133 } else
5134 s = zdc_parse_token(p, t, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06005135 }
5136
5137 if (!s && p->l.t.t == BC_LEX_EOF && (flags & BC_PARSE_NOCALL))
5138 bc_parse_push(p, BC_INST_POP_EXEC);
5139
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005140 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005141}
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005142#if ERRORS_ARE_FATAL
5143# define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
5144#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005145
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01005146static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06005147{
5148 BcStatus s;
5149
5150 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005151 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06005152 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005153 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06005154
Denys Vlasenkod38af482018-12-04 19:11:02 +01005155 if (s || G_interrupt) {
5156 bc_parse_reset(p);
5157 s = BC_STATUS_FAILURE;
5158 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005159
Denys Vlasenko26819db2018-12-12 16:08:46 +01005160 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005161}
Denys Vlasenko26819db2018-12-12 16:08:46 +01005162#if ERRORS_ARE_FATAL
5163# define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__), BC_STATUS_SUCCESS)
5164#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005165
Gavin Howard01055ba2018-11-03 11:00:21 -06005166#endif // ENABLE_DC
5167
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005168static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005169{
5170 if (IS_BC) {
Denys Vlasenko99b37622018-12-15 20:06:59 +01005171 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags, bc_parse_next_read)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005172 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01005173 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005174 }
5175}
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005176#if ERRORS_ARE_FATAL
5177# define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
5178#endif
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005179
Denys Vlasenkodf515392018-12-02 19:27:48 +01005180static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005181{
Gavin Howard01055ba2018-11-03 11:00:21 -06005182 BcId e, *ptr;
5183 BcVec *v, *map;
5184 size_t i;
5185 BcResultData data;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005186 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06005187
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005188 v = var ? &G.prog.vars : &G.prog.arrs;
5189 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06005190
5191 e.name = id;
5192 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005193 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06005194
5195 if (new) {
5196 bc_array_init(&data.v, var);
5197 bc_vec_push(v, &data.v);
5198 }
5199
5200 ptr = bc_vec_item(map, i);
5201 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005202 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005203}
5204
Denys Vlasenko29301232018-12-11 15:29:32 +01005205static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06005206{
Gavin Howard01055ba2018-11-03 11:00:21 -06005207 switch (r->t) {
5208
5209 case BC_RESULT_STR:
5210 case BC_RESULT_TEMP:
5211 case BC_RESULT_IBASE:
5212 case BC_RESULT_SCALE:
5213 case BC_RESULT_OBASE:
5214 {
5215 *num = &r->d.n;
5216 break;
5217 }
5218
5219 case BC_RESULT_CONSTANT:
5220 {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005221 BcStatus s;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005222 char **str = bc_vec_item(&G.prog.consts, r->d.id.idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005223 size_t base_t, len = strlen(*str);
5224 BcNum *base;
5225
5226 bc_num_init(&r->d.n, len);
5227
5228 hex = hex && len == 1;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005229 base = hex ? &G.prog.hexb : &G.prog.ib;
5230 base_t = hex ? BC_NUM_MAX_IBASE : G.prog.ib_t;
Denys Vlasenko29301232018-12-11 15:29:32 +01005231 s = zbc_num_parse(&r->d.n, *str, base, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005232
5233 if (s) {
5234 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01005235 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005236 }
5237
5238 *num = &r->d.n;
5239 r->t = BC_RESULT_TEMP;
5240
5241 break;
5242 }
5243
5244 case BC_RESULT_VAR:
5245 case BC_RESULT_ARRAY:
5246 case BC_RESULT_ARRAY_ELEM:
5247 {
5248 BcVec *v;
5249
Denys Vlasenkodf515392018-12-02 19:27:48 +01005250 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06005251
5252 if (r->t == BC_RESULT_ARRAY_ELEM) {
5253 v = bc_vec_top(v);
5254 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
5255 *num = bc_vec_item(v, r->d.id.idx);
5256 }
5257 else
5258 *num = bc_vec_top(v);
5259
5260 break;
5261 }
5262
5263 case BC_RESULT_LAST:
5264 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005265 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005266 break;
5267 }
5268
5269 case BC_RESULT_ONE:
5270 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005271 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005272 break;
5273 }
5274 }
5275
Denys Vlasenko29301232018-12-11 15:29:32 +01005276 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005277}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005278#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005279# define zbc_program_num(...) (zbc_program_num(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005280#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005281
Denys Vlasenko29301232018-12-11 15:29:32 +01005282static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005283 BcResult **r, BcNum **rn, bool assign)
5284{
5285 BcStatus s;
5286 bool hex;
5287 BcResultType lt, rt;
5288
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005289 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005290 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005291
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005292 *r = bc_vec_item_rev(&G.prog.results, 0);
5293 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005294
5295 lt = (*l)->t;
5296 rt = (*r)->t;
5297 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5298
Denys Vlasenko29301232018-12-11 15:29:32 +01005299 s = zbc_program_num(*l, ln, false);
5300 if (s) RETURN_STATUS(s);
5301 s = zbc_program_num(*r, rn, hex);
5302 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005303
5304 // We run this again under these conditions in case any vector has been
5305 // reallocated out from under the BcNums or arrays we had.
5306 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005307 s = zbc_program_num(*l, ln, false);
5308 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005309 }
5310
5311 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005312 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005313 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005314 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005315
Denys Vlasenko29301232018-12-11 15:29:32 +01005316 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005317}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005318#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005319# define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005320#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005321
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005322static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005323{
5324 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005325 bc_vec_pop(&G.prog.results);
5326 bc_vec_pop(&G.prog.results);
5327 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005328}
5329
Denys Vlasenko29301232018-12-11 15:29:32 +01005330static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005331{
5332 BcStatus s;
5333
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005334 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005335 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005336 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005337
Denys Vlasenko29301232018-12-11 15:29:32 +01005338 s = zbc_program_num(*r, n, false);
5339 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005340
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005341 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005342 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005343
Denys Vlasenko29301232018-12-11 15:29:32 +01005344 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005345}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005346#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005347# define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005348#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005349
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005350static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005351{
5352 r->t = t;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005353 bc_vec_pop(&G.prog.results);
5354 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005355}
5356
Denys Vlasenko259137d2018-12-11 19:42:05 +01005357static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005358{
5359 BcStatus s;
5360 BcResult *opd1, *opd2, res;
5361 BcNum *n1, *n2 = NULL;
5362
Denys Vlasenko29301232018-12-11 15:29:32 +01005363 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005364 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005365 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005366
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005367 s = BC_STATUS_SUCCESS;
Denys Vlasenko26819db2018-12-12 16:08:46 +01005368 ERROR_RETURN(s =) zbc_program_ops[inst - BC_INST_POWER](n1, n2, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06005369 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005370 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005371
Denys Vlasenko259137d2018-12-11 19:42:05 +01005372 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005373
5374err:
5375 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005376 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005377}
Denys Vlasenko259137d2018-12-11 19:42:05 +01005378#if ERRORS_ARE_FATAL
5379# define zbc_program_op(...) (zbc_program_op(__VA_ARGS__), BC_STATUS_SUCCESS)
5380#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005381
Denys Vlasenko26819db2018-12-12 16:08:46 +01005382static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005383{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005384 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005385 BcStatus s;
5386 BcParse parse;
5387 BcVec buf;
5388 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005389 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005390
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005391 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005392 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005393
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005394 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005395 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005396
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005397 sv_file = G.prog.file;
5398 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005399 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005400
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005401 bc_char_vec_init(&buf);
Denys Vlasenko8a892472018-12-12 22:43:58 +01005402 bc_read_line(&buf);
Gavin Howard01055ba2018-11-03 11:00:21 -06005403
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005404 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005405 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005406
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005407 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005408 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005409 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005410 if (s) goto exec_err;
5411
5412 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005413 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005414 goto exec_err;
5415 }
5416
5417 ip.func = BC_PROG_READ;
5418 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005419 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005420
5421 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005422 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005423
5424 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005425 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005426
5427exec_err:
5428 bc_parse_free(&parse);
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005429//io_err:
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005430 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005431 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005432 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005433 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005434}
Denys Vlasenko26819db2018-12-12 16:08:46 +01005435#if ERRORS_ARE_FATAL
5436# define zbc_program_read(...) (zbc_program_read(__VA_ARGS__), BC_STATUS_SUCCESS)
5437#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005438
5439static size_t bc_program_index(char *code, size_t *bgn)
5440{
5441 char amt = code[(*bgn)++], i = 0;
5442 size_t res = 0;
5443
5444 for (; i < amt; ++i, ++(*bgn))
5445 res |= (((size_t)((int) code[*bgn]) & UCHAR_MAX) << (i * CHAR_BIT));
5446
5447 return res;
5448}
5449
5450static char *bc_program_name(char *code, size_t *bgn)
5451{
5452 size_t i;
5453 char c, *s, *str = code + *bgn, *ptr = strchr(str, BC_PARSE_STREND);
5454
5455 s = xmalloc(ptr - str + 1);
5456 c = code[(*bgn)++];
5457
5458 for (i = 0; c != 0 && c != BC_PARSE_STREND; c = code[(*bgn)++], ++i)
5459 s[i] = c;
5460
5461 s[i] = '\0';
5462
5463 return s;
5464}
5465
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005466static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005467{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005468#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005469 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005470 // Example: echo '[]ap' | dc
5471 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005472 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005473 return;
5474 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005475#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005476 while (*str) {
5477 int c = *str++;
5478 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005479 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005480 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005481 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005482 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005483 case 'a':
5484 bb_putchar('\a');
5485 break;
5486 case 'b':
5487 bb_putchar('\b');
5488 break;
5489 case '\\':
5490 case 'e':
5491 bb_putchar('\\');
5492 break;
5493 case 'f':
5494 bb_putchar('\f');
5495 break;
5496 case 'n':
5497 bb_putchar('\n');
5498 G.prog.nchars = SIZE_MAX;
5499 break;
5500 case 'r':
5501 bb_putchar('\r');
5502 break;
5503 case 'q':
5504 bb_putchar('"');
5505 break;
5506 case 't':
5507 bb_putchar('\t');
5508 break;
5509 default:
5510 // Just print the backslash and following character.
5511 bb_putchar('\\');
5512 ++G.prog.nchars;
5513 bb_putchar(c);
5514 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005515 }
5516 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005517 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005518 }
5519}
5520
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005521static void bc_num_printNewline(void)
5522{
5523 if (G.prog.nchars == G.prog.len - 1) {
5524 bb_putchar('\\');
5525 bb_putchar('\n');
5526 G.prog.nchars = 0;
5527 }
5528}
5529
5530#if ENABLE_DC
5531static FAST_FUNC void bc_num_printChar(size_t num, size_t width, bool radix)
5532{
5533 (void) radix;
5534 bb_putchar((char) num);
5535 G.prog.nchars += width;
5536}
5537#endif
5538
5539static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5540{
5541 size_t exp, pow;
5542
5543 bc_num_printNewline();
5544 bb_putchar(radix ? '.' : ' ');
5545 ++G.prog.nchars;
5546
5547 bc_num_printNewline();
5548 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5549 continue;
5550
5551 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5552 size_t dig;
5553 bc_num_printNewline();
5554 dig = num / pow;
5555 num -= dig * pow;
5556 bb_putchar(((char) dig) + '0');
5557 }
5558}
5559
5560static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5561{
5562 if (radix) {
5563 bc_num_printNewline();
5564 bb_putchar('.');
5565 G.prog.nchars += 1;
5566 }
5567
5568 bc_num_printNewline();
5569 bb_putchar(bb_hexdigits_upcase[num]);
5570 G.prog.nchars += width;
5571}
5572
5573static void bc_num_printDecimal(BcNum *n)
5574{
5575 size_t i, rdx = n->rdx - 1;
5576
5577 if (n->neg) bb_putchar('-');
5578 G.prog.nchars += n->neg;
5579
5580 for (i = n->len - 1; i < n->len; --i)
5581 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5582}
5583
5584static BC_STATUS zbc_num_printNum(BcNum *n, BcNum *base, size_t width, BcNumDigitOp print)
5585{
5586 BcStatus s;
5587 BcVec stack;
5588 BcNum intp, fracp, digit, frac_len;
5589 unsigned long dig, *ptr;
5590 size_t i;
5591 bool radix;
5592
5593 if (n->len == 0) {
5594 print(0, width, false);
5595 RETURN_STATUS(BC_STATUS_SUCCESS);
5596 }
5597
5598 bc_vec_init(&stack, sizeof(long), NULL);
5599 bc_num_init(&intp, n->len);
5600 bc_num_init(&fracp, n->rdx);
5601 bc_num_init(&digit, width);
5602 bc_num_init(&frac_len, BC_NUM_INT(n));
5603 bc_num_copy(&intp, n);
5604 bc_num_one(&frac_len);
5605
5606 bc_num_truncate(&intp, intp.rdx);
5607 s = zbc_num_sub(n, &intp, &fracp, 0);
5608 if (s) goto err;
5609
5610 while (intp.len != 0) {
5611 s = zbc_num_divmod(&intp, base, &intp, &digit, 0);
5612 if (s) goto err;
5613 s = zbc_num_ulong(&digit, &dig);
5614 if (s) goto err;
5615 bc_vec_push(&stack, &dig);
5616 }
5617
5618 for (i = 0; i < stack.len; ++i) {
5619 ptr = bc_vec_item_rev(&stack, i);
5620 print(*ptr, width, false);
5621 }
5622
5623 if (!n->rdx) goto err;
5624
5625 for (radix = true; frac_len.len <= n->rdx; radix = false) {
5626 s = zbc_num_mul(&fracp, base, &fracp, n->rdx);
5627 if (s) goto err;
5628 s = zbc_num_ulong(&fracp, &dig);
5629 if (s) goto err;
5630 bc_num_ulong2num(&intp, dig);
5631 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5632 if (s) goto err;
5633 print(dig, width, radix);
5634 s = zbc_num_mul(&frac_len, base, &frac_len, 0);
5635 if (s) goto err;
5636 }
5637
5638err:
5639 bc_num_free(&frac_len);
5640 bc_num_free(&digit);
5641 bc_num_free(&fracp);
5642 bc_num_free(&intp);
5643 bc_vec_free(&stack);
5644 RETURN_STATUS(s);
5645}
5646#if ERRORS_ARE_FATAL
5647# define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__), BC_STATUS_SUCCESS)
5648#endif
5649
5650static BC_STATUS zbc_num_printBase(BcNum *n)
5651{
5652 BcStatus s;
5653 size_t width, i;
5654 BcNumDigitOp print;
5655 bool neg = n->neg;
5656
5657 if (neg) {
5658 bb_putchar('-');
5659 G.prog.nchars++;
5660 }
5661
5662 n->neg = false;
5663
5664 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5665 width = 1;
5666 print = bc_num_printHex;
5667 }
5668 else {
5669 for (i = G.prog.ob_t - 1, width = 0; i != 0; i /= 10, ++width)
5670 continue;
5671 print = bc_num_printDigits;
5672 }
5673
5674 s = zbc_num_printNum(n, &G.prog.ob, width, print);
5675 n->neg = neg;
5676
5677 RETURN_STATUS(s);
5678}
5679#if ERRORS_ARE_FATAL
5680# define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__), BC_STATUS_SUCCESS)
5681#endif
5682
5683#if ENABLE_DC
5684static BC_STATUS zbc_num_stream(BcNum *n, BcNum *base)
5685{
5686 RETURN_STATUS(zbc_num_printNum(n, base, 1, bc_num_printChar));
5687}
5688#if ERRORS_ARE_FATAL
5689# define zbc_num_stream(...) (zbc_num_stream(__VA_ARGS__), BC_STATUS_SUCCESS)
5690#endif
5691#endif
5692
5693static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5694{
5695 BcStatus s = BC_STATUS_SUCCESS;
5696
5697 bc_num_printNewline();
5698
5699 if (n->len == 0) {
5700 bb_putchar('0');
5701 ++G.prog.nchars;
5702 }
5703 else if (G.prog.ob_t == 10)
5704 bc_num_printDecimal(n);
5705 else
5706 s = zbc_num_printBase(n);
5707
5708 if (newline) {
5709 bb_putchar('\n');
5710 G.prog.nchars = 0;
5711 }
5712
5713 RETURN_STATUS(s);
5714}
5715#if ERRORS_ARE_FATAL
5716# define zbc_num_print(...) (zbc_num_print(__VA_ARGS__), BC_STATUS_SUCCESS)
5717#endif
5718
Denys Vlasenko29301232018-12-11 15:29:32 +01005719static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005720{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005721 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005722 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005723 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005724 bool pop = inst != BC_INST_PRINT;
5725
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005726 if (!BC_PROG_STACK(&G.prog.results, idx + 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005727 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005728
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005729 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005730 num = NULL; // is this NULL necessary?
Denys Vlasenko29301232018-12-11 15:29:32 +01005731 s = zbc_program_num(r, &num, false);
5732 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005733
5734 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005735 s = zbc_num_print(num, !pop);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005736 if (!s) bc_num_copy(&G.prog.last, num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005737 }
5738 else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005739 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005740
5741 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005742 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005743
5744 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005745 for (;;) {
5746 char c = *str++;
5747 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005748 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005749 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005750 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005751 }
5752 }
5753 else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005754 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005755 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005756 }
5757 }
5758
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005759 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005760
Denys Vlasenko29301232018-12-11 15:29:32 +01005761 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005762}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005763#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005764# define zbc_program_print(...) (zbc_program_print(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005765#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005766
Denys Vlasenko29301232018-12-11 15:29:32 +01005767static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005768{
5769 BcStatus s;
5770 BcResult res, *ptr;
5771 BcNum *num = NULL;
5772
Denys Vlasenko29301232018-12-11 15:29:32 +01005773 s = zbc_program_prep(&ptr, &num);
5774 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005775
5776 bc_num_init(&res.d.n, num->len);
5777 bc_num_copy(&res.d.n, num);
5778 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5779
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005780 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005781
Denys Vlasenko29301232018-12-11 15:29:32 +01005782 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005783}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005784#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005785# define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005786#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005787
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005788static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005789{
5790 BcStatus s;
5791 BcResult *opd1, *opd2, res;
5792 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005793 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005794
Denys Vlasenko29301232018-12-11 15:29:32 +01005795 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005796 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005797
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005798 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005799
5800 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005801 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005802 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005803 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005804 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005805 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005806 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005807 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005808 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005809 break;
5810 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005811 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005812 break;
5813 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005814 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005815 break;
5816 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005817 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005818 break;
5819 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005820 cond = (cond > 0);
5821 break;
5822 default: // = case BC_INST_REL_NE:
5823 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005824 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005825 }
5826 }
5827
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005828 if (cond) bc_num_one(&res.d.n);
5829 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005830
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005831 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005832
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005833 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005834}
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005835#if ERRORS_ARE_FATAL
5836# define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__), BC_STATUS_SUCCESS)
5837#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005838
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005839#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01005840static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v,
Gavin Howard01055ba2018-11-03 11:00:21 -06005841 bool push)
5842{
5843 BcNum n2;
5844 BcResult res;
5845
5846 memset(&n2, 0, sizeof(BcNum));
5847 n2.rdx = res.d.id.idx = r->d.id.idx;
5848 res.t = BC_RESULT_STR;
5849
5850 if (!push) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005851 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005852 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005853 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005854 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005855 }
5856
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005857 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005858
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005859 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005860 bc_vec_push(v, &n2);
5861
Denys Vlasenko29301232018-12-11 15:29:32 +01005862 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005863}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005864#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005865# define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005866#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005867#endif // ENABLE_DC
5868
Denys Vlasenko29301232018-12-11 15:29:32 +01005869static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005870{
5871 BcStatus s;
5872 BcResult *ptr, r;
5873 BcVec *v;
5874 BcNum *n;
5875
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005876 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005877 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005878
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005879 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005880 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005881 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005882 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005883
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005884#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005885 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005886 RETURN_STATUS(bc_error_variable_is_wrong_type());
5887 if (ptr->t == BC_RESULT_STR)
5888 RETURN_STATUS(zbc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005889#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005890
Denys Vlasenko29301232018-12-11 15:29:32 +01005891 s = zbc_program_num(ptr, &n, false);
5892 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005893
5894 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005895 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005896
5897 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005898 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005899 bc_num_copy(&r.d.n, n);
5900 }
5901 else {
5902 bc_array_init(&r.d.v, true);
5903 bc_array_copy(&r.d.v, (BcVec *) n);
5904 }
5905
5906 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005907 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005908
Denys Vlasenko29301232018-12-11 15:29:32 +01005909 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005910}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005911#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01005912# define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005913#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005914
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005915static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005916{
5917 BcStatus s;
5918 BcResult *left, *right, res;
5919 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005920 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5921
Denys Vlasenko29301232018-12-11 15:29:32 +01005922 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005923 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005924
5925 ib = left->t == BC_RESULT_IBASE;
5926 sc = left->t == BC_RESULT_SCALE;
5927
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005928#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005929
5930 if (right->t == BC_RESULT_STR) {
5931
5932 BcVec *v;
5933
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005934 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005935 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005936 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005937
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005938 RETURN_STATUS(zbc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005939 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005940#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005941
5942 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005943 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005944 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005945 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005946 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005947
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005948#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005949 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005950 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005951
5952 if (assign)
5953 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005954 else {
5955 s = BC_STATUS_SUCCESS;
Denys Vlasenko26819db2018-12-12 16:08:46 +01005956 ERROR_RETURN(s =) zbc_program_ops[inst - BC_INST_ASSIGN_POWER](l, r, l, G.prog.scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005957 }
5958 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005959#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005960 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005961#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005962
5963 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005964 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005965 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5966 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5967 NULL, //can't happen //BC_RESULT_LAST
5968 NULL, //can't happen //BC_RESULT_CONSTANT
5969 NULL, //can't happen //BC_RESULT_ONE
5970 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005971 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005972 size_t *ptr;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01005973 unsigned long val, max;
Gavin Howard01055ba2018-11-03 11:00:21 -06005974
Denys Vlasenko29301232018-12-11 15:29:32 +01005975 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005976 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005977 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005978 if (sc) {
5979 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005980 ptr = &G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06005981 }
5982 else {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005983 if (val < BC_NUM_MIN_BASE)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005984 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005985 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005986 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005987 }
5988
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005989 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005990 RETURN_STATUS(bc_error(msg[s]));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005991 if (!sc)
5992 bc_num_copy(ib ? &G.prog.ib : &G.prog.ob, l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005993
5994 *ptr = (size_t) val;
5995 s = BC_STATUS_SUCCESS;
5996 }
5997
5998 bc_num_init(&res.d.n, l->len);
5999 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006000 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006001
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006002 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006003}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006004#if ERRORS_ARE_FATAL
6005# define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__), BC_STATUS_SUCCESS)
6006#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006007
Denys Vlasenko416ce762018-12-02 20:57:17 +01006008#if !ENABLE_DC
6009#define bc_program_pushVar(code, bgn, pop, copy) \
6010 bc_program_pushVar(code, bgn)
6011// for bc, 'pop' and 'copy' are always false
6012#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006013static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06006014 bool pop, bool copy)
6015{
Gavin Howard01055ba2018-11-03 11:00:21 -06006016 BcResult r;
6017 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06006018
6019 r.t = BC_RESULT_VAR;
6020 r.d.id.name = name;
6021
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006022#if ENABLE_DC
Denys Vlasenko416ce762018-12-02 20:57:17 +01006023 {
6024 BcVec *v = bc_program_search(name, true);
6025 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06006026
Denys Vlasenko416ce762018-12-02 20:57:17 +01006027 if (pop || copy) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006028
Denys Vlasenko416ce762018-12-02 20:57:17 +01006029 if (!BC_PROG_STACK(v, 2 - copy)) {
6030 free(name);
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006031 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko416ce762018-12-02 20:57:17 +01006032 }
6033
Gavin Howard01055ba2018-11-03 11:00:21 -06006034 free(name);
Denys Vlasenko416ce762018-12-02 20:57:17 +01006035 name = NULL;
6036
6037 if (!BC_PROG_STR(num)) {
6038
6039 r.t = BC_RESULT_TEMP;
6040
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006041 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko416ce762018-12-02 20:57:17 +01006042 bc_num_copy(&r.d.n, num);
6043 }
6044 else {
6045 r.t = BC_RESULT_STR;
6046 r.d.id.idx = num->rdx;
6047 }
6048
6049 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06006050 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006051 }
6052#endif // ENABLE_DC
6053
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006054 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006055
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006056 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006057}
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006058#if ERRORS_ARE_FATAL
6059# define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__), BC_STATUS_SUCCESS)
6060#else
6061# define zbc_program_pushVar(...) bc_program_pushVar(__VA_ARGS__)
6062#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006063
Denys Vlasenko29301232018-12-11 15:29:32 +01006064static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06006065 char inst)
6066{
6067 BcStatus s = BC_STATUS_SUCCESS;
6068 BcResult r;
6069 BcNum *num;
6070
6071 r.d.id.name = bc_program_name(code, bgn);
6072
6073 if (inst == BC_INST_ARRAY) {
6074 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006075 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006076 }
6077 else {
6078
6079 BcResult *operand;
6080 unsigned long temp;
6081
Denys Vlasenko29301232018-12-11 15:29:32 +01006082 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06006083 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006084 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06006085 if (s) goto err;
6086
6087 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01006088 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06006089 goto err;
6090 }
6091
6092 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006093 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06006094 }
6095
6096err:
6097 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01006098 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006099}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006100#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01006101# define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006102#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006103
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006104#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01006105static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006106{
6107 BcStatus s;
6108 BcResult *ptr, res, copy;
6109 BcNum *num = NULL;
6110 char inst2 = inst;
6111
Denys Vlasenko29301232018-12-11 15:29:32 +01006112 s = zbc_program_prep(&ptr, &num);
6113 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006114
6115 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
6116 copy.t = BC_RESULT_TEMP;
6117 bc_num_init(&copy.d.n, num->len);
6118 bc_num_copy(&copy.d.n, num);
6119 }
6120
6121 res.t = BC_RESULT_ONE;
6122 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
6123 BC_INST_ASSIGN_PLUS :
6124 BC_INST_ASSIGN_MINUS;
6125
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006126 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006127 s = zbc_program_assign(inst);
6128 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006129
6130 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006131 bc_vec_pop(&G.prog.results);
6132 bc_vec_push(&G.prog.results, &copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006133 }
6134
Denys Vlasenko29301232018-12-11 15:29:32 +01006135 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006136}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006137#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01006138# define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006139#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006140
Denys Vlasenko29301232018-12-11 15:29:32 +01006141static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06006142{
Gavin Howard01055ba2018-11-03 11:00:21 -06006143 BcInstPtr ip;
6144 size_t i, nparams = bc_program_index(code, idx);
6145 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06006146 BcId *a;
6147 BcResultData param;
6148 BcResult *arg;
6149
6150 ip.idx = 0;
6151 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006152 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006153
Denys Vlasenko04a1c762018-12-03 21:10:57 +01006154 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006155 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01006156 }
6157 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006158 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01006159 }
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006160 ip.len = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06006161
6162 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006163 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006164
6165 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006166 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006167
6168 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01006169 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006170
Denys Vlasenko29301232018-12-11 15:29:32 +01006171 s = zbc_program_copyToVar(a->name, a->idx);
6172 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006173 }
6174
6175 for (; i < func->autos.len; ++i) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006176 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006177
6178 a = bc_vec_item(&func->autos, i);
Denys Vlasenkodf515392018-12-02 19:27:48 +01006179 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006180
6181 if (a->idx) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006182 bc_num_init_DEF_SIZE(&param.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006183 bc_vec_push(v, &param.n);
6184 }
6185 else {
6186 bc_array_init(&param.v, true);
6187 bc_vec_push(v, &param.v);
6188 }
6189 }
6190
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006191 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006192
Denys Vlasenko29301232018-12-11 15:29:32 +01006193 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006194}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006195#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01006196# define zbc_program_call(...) (zbc_program_call(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006197#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006198
Denys Vlasenko29301232018-12-11 15:29:32 +01006199static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006200{
Gavin Howard01055ba2018-11-03 11:00:21 -06006201 BcResult res;
6202 BcFunc *f;
6203 size_t i;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006204 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006205
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006206 if (!BC_PROG_STACK(&G.prog.results, ip->len + inst == BC_INST_RET))
Denys Vlasenko29301232018-12-11 15:29:32 +01006207 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006208
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006209 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006210 res.t = BC_RESULT_TEMP;
6211
6212 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006213 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006214 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006215 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006216
Denys Vlasenko29301232018-12-11 15:29:32 +01006217 s = zbc_program_num(operand, &num, false);
6218 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006219 bc_num_init(&res.d.n, num->len);
6220 bc_num_copy(&res.d.n, num);
6221 }
6222 else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006223 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006224 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006225 }
6226
6227 // We need to pop arguments as well, so this takes that into account.
6228 for (i = 0; i < f->autos.len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006229 BcVec *v;
6230 BcId *a = bc_vec_item(&f->autos, i);
6231
Denys Vlasenkodf515392018-12-02 19:27:48 +01006232 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006233 bc_vec_pop(v);
6234 }
6235
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006236 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->len);
6237 bc_vec_push(&G.prog.results, &res);
6238 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006239
Denys Vlasenko29301232018-12-11 15:29:32 +01006240 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006241}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006242#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01006243# define zbc_program_return(...) (zbc_program_return(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006244#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006245#endif // ENABLE_BC
6246
6247static unsigned long bc_program_scale(BcNum *n)
6248{
6249 return (unsigned long) n->rdx;
6250}
6251
6252static unsigned long bc_program_len(BcNum *n)
6253{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006254 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006255
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006256 if (n->rdx != len) return len;
6257 for (;;) {
6258 if (len == 0) break;
6259 len--;
6260 if (n->num[len] != 0) break;
6261 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006262 return len;
6263}
6264
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006265static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006266{
6267 BcStatus s;
6268 BcResult *opnd;
6269 BcNum *num = NULL;
6270 BcResult res;
6271 bool len = inst == BC_INST_LENGTH;
6272
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006273 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006274 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006275 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006276
Denys Vlasenko29301232018-12-11 15:29:32 +01006277 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006278 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006279
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006280#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006281 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006282 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006283#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006284
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006285 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006286
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006287 if (inst == BC_INST_SQRT) s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006288#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006289 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006290 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006291 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006292#endif
6293#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006294 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006295 char **str;
6296 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
6297
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006298 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006299 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06006300 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006301#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006302 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01006303 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06006304 }
6305
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006306 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006307
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006308 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006309}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006310#if ERRORS_ARE_FATAL
6311# define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__), BC_STATUS_SUCCESS)
6312#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006313
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006314#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006315static BC_STATUS zbc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006316{
6317 BcStatus s;
6318 BcResult *opd1, *opd2, res, res2;
6319 BcNum *n1, *n2 = NULL;
6320
Denys Vlasenko29301232018-12-11 15:29:32 +01006321 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006322 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006323
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006324 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006325 bc_num_init(&res2.d.n, n2->len);
6326
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006327 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006328 if (s) goto err;
6329
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006330 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006331 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006332 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006333
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006334 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006335
6336err:
6337 bc_num_free(&res2.d.n);
6338 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006339 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006340}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006341#if ERRORS_ARE_FATAL
6342# define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__), BC_STATUS_SUCCESS)
6343#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006344
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006345static BC_STATUS zbc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006346{
6347 BcStatus s;
6348 BcResult *r1, *r2, *r3, res;
6349 BcNum *n1, *n2, *n3;
6350
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006351 if (!BC_PROG_STACK(&G.prog.results, 3))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006352 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006353 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006354 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006355
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006356 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006357 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006358 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006359 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006360 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006361
6362 // Make sure that the values have their pointers updated, if necessary.
6363 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
6364
6365 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006366 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006367 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006368 }
6369
6370 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006371 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006372 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006373 }
6374 }
6375
6376 bc_num_init(&res.d.n, n3->len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006377 s = zbc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006378 if (s) goto err;
6379
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006380 bc_vec_pop(&G.prog.results);
6381 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006382
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006383 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006384
6385err:
6386 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006387 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006388}
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006389#if ERRORS_ARE_FATAL
6390# define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__), BC_STATUS_SUCCESS)
6391#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006392
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006393static void bc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006394{
Gavin Howard01055ba2018-11-03 11:00:21 -06006395 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006396 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006397
6398 res.t = BC_RESULT_TEMP;
6399
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006400 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006401 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006402 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006403}
6404
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006405static BC_STATUS zbc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006406{
6407 BcStatus s;
6408 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006409 BcNum *num, n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006410 char *str, *str2, c;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006411 size_t len = G.prog.strs.len, idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006412 unsigned long val;
6413
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006414 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006415 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006416 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006417
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006418 num = NULL; // TODO: is this NULL needed?
Denys Vlasenko29301232018-12-11 15:29:32 +01006419 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006420 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006421
6422 if (BC_PROG_NUM(r, num)) {
6423
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006424 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006425 bc_num_copy(&n, num);
6426 bc_num_truncate(&n, n.rdx);
6427
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006428 s = zbc_num_mod(&n, &G.prog.strmb, &n, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006429 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006430 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006431 if (s) goto num_err;
6432
6433 c = (char) val;
6434
6435 bc_num_free(&n);
6436 }
6437 else {
6438 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006439 str2 = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006440 c = str2[0];
6441 }
6442
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006443 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006444 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006445 //str[1] = '\0'; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006446
6447 str2 = xstrdup(str);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006448 bc_program_addFunc(str2, &idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006449
6450 if (idx != len + BC_PROG_REQ_FUNCS) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006451 for (idx = 0; idx < G.prog.strs.len; ++idx) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006452 if (strcmp(*bc_program_str(idx), str) == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006453 len = idx;
6454 break;
6455 }
6456 }
6457
6458 free(str);
6459 }
6460 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006461 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006462
6463 res.t = BC_RESULT_STR;
6464 res.d.id.idx = len;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006465 bc_vec_pop(&G.prog.results);
6466 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006467
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006468 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006469
6470num_err:
6471 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006472 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006473}
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006474#if ERRORS_ARE_FATAL
6475# define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__), BC_STATUS_SUCCESS)
6476#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006477
Denys Vlasenko29301232018-12-11 15:29:32 +01006478static BC_STATUS zbc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006479{
6480 BcStatus s;
6481 BcResult *r;
6482 BcNum *n = NULL;
6483 size_t idx;
6484 char *str;
6485
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006486 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01006487 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006488 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006489
Denys Vlasenko29301232018-12-11 15:29:32 +01006490 s = zbc_program_num(r, &n, false);
6491 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006492
6493 if (BC_PROG_NUM(r, n))
Denys Vlasenko29301232018-12-11 15:29:32 +01006494 s = zbc_num_stream(n, &G.prog.strmb);
Gavin Howard01055ba2018-11-03 11:00:21 -06006495 else {
6496 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006497 str = *bc_program_str(idx);
Denys Vlasenko00d77792018-11-30 23:13:42 +01006498 printf("%s", str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006499 }
6500
Denys Vlasenko29301232018-12-11 15:29:32 +01006501 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006502}
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006503#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01006504# define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006505#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006506
Denys Vlasenko29301232018-12-11 15:29:32 +01006507static BC_STATUS zbc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006508{
6509 BcStatus s;
6510 BcResult *opnd;
6511 BcNum *num = NULL;
6512 unsigned long val;
6513
Denys Vlasenko29301232018-12-11 15:29:32 +01006514 s = zbc_program_prep(&opnd, &num);
6515 if (s) RETURN_STATUS(s);
6516 s = zbc_num_ulong(num, &val);
6517 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006518
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006519 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006520
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006521 if (G.prog.stack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006522 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006523 if (G.prog.stack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006524 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006525 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006526
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006527 bc_vec_npop(&G.prog.stack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006528
Denys Vlasenko29301232018-12-11 15:29:32 +01006529 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006530}
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006531#if ERRORS_ARE_FATAL
Denys Vlasenko29301232018-12-11 15:29:32 +01006532# define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__), BC_STATUS_SUCCESS)
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006533#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006534
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006535static BC_STATUS zbc_program_execStr(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06006536 bool cond)
6537{
6538 BcStatus s = BC_STATUS_SUCCESS;
6539 BcResult *r;
6540 char **str;
6541 BcFunc *f;
6542 BcParse prs;
6543 BcInstPtr ip;
6544 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006545
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006546 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006547 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006548
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006549 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006550
6551 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006552 BcNum *n = n; // for compiler
6553 bool exec;
6554 char *name;
6555 char *then_name = bc_program_name(code, bgn);
6556 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006557
6558 if (code[*bgn] == BC_PARSE_STREND)
6559 (*bgn) += 1;
6560 else
6561 else_name = bc_program_name(code, bgn);
6562
6563 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006564 name = then_name;
6565 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006566 exec = true;
6567 name = else_name;
6568 }
6569
6570 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006571 BcVec *v;
6572 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006573 n = bc_vec_top(v);
6574 }
6575
6576 free(then_name);
6577 free(else_name);
6578
6579 if (!exec) goto exit;
6580 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006581 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006582 goto exit;
6583 }
6584
6585 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006586 } else {
6587 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006588 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006589 } else if (r->t == BC_RESULT_VAR) {
6590 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006591 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006592 if (s || !BC_PROG_STR(n)) goto exit;
6593 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006594 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006595 goto exit;
6596 }
6597
6598 fidx = sidx + BC_PROG_REQ_FUNCS;
6599
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006600 str = bc_program_str(sidx);
6601 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006602
6603 if (f->code.len == 0) {
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006604 bc_parse_create(&prs, fidx);
Denys Vlasenkof86e9602018-12-14 17:01:56 +01006605 s = zbc_parse_text_init(&prs, *str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006606 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006607 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006608 if (s) goto err;
6609
6610 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006611 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06006612 goto err;
6613 }
6614
6615 bc_parse_free(&prs);
6616 }
6617
6618 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006619 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006620 ip.func = fidx;
6621
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006622 bc_vec_pop(&G.prog.results);
6623 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006624
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006625 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006626
6627err:
6628 bc_parse_free(&prs);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006629 f = bc_program_func(fidx);
Denys Vlasenko7d628012018-12-04 21:46:47 +01006630 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06006631exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006632 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006633 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006634}
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006635#if ERRORS_ARE_FATAL
6636# define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__), BC_STATUS_SUCCESS)
6637#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006638#endif // ENABLE_DC
6639
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006640static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006641{
Gavin Howard01055ba2018-11-03 11:00:21 -06006642 BcResult res;
6643 unsigned long val;
6644
6645 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6646 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006647 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006648 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006649 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006650 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006651 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006652
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006653 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006654 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006655 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006656}
6657
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006658static void bc_program_addFunc(char *name, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06006659{
Gavin Howard01055ba2018-11-03 11:00:21 -06006660 BcId entry, *entry_ptr;
6661 BcFunc f;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006662 int inserted;
Gavin Howard01055ba2018-11-03 11:00:21 -06006663
6664 entry.name = name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006665 entry.idx = G.prog.fns.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006666
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006667 inserted = bc_map_insert(&G.prog.fn_map, &entry, idx);
6668 if (!inserted) free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06006669
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006670 entry_ptr = bc_vec_item(&G.prog.fn_map, *idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006671 *idx = entry_ptr->idx;
6672
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006673 if (!inserted) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006674
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006675 BcFunc *func = bc_program_func(entry_ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006676
6677 // We need to reset these, so the function can be repopulated.
6678 func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01006679 bc_vec_pop_all(&func->autos);
6680 bc_vec_pop_all(&func->code);
6681 bc_vec_pop_all(&func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06006682 }
6683 else {
6684 bc_func_init(&f);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006685 bc_vec_push(&G.prog.fns, &f);
Gavin Howard01055ba2018-11-03 11:00:21 -06006686 }
6687}
6688
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006689static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006690{
Gavin Howard01055ba2018-11-03 11:00:21 -06006691 BcResult r, *ptr;
6692 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006693 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006694 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006695 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006696
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006697 while (ip->idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006698 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06006699 char inst = code[(ip->idx)++];
6700
Denys Vlasenko99b37622018-12-15 20:06:59 +01006701 dbg_exec("inst:%d", inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006702 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006703#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006704 case BC_INST_JUMP_ZERO: {
6705 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006706 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006707 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006708 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006709 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006710 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006711 if (!zero) {
6712 bc_program_index(code, &ip->idx);
6713 break;
6714 }
6715 // else: fall through
6716 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006717 case BC_INST_JUMP: {
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006718 size_t idx = bc_program_index(code, &ip->idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006719 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006720 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006721 ip->idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006722 break;
6723 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006724 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006725 dbg_exec("BC_INST_CALL:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006726 s = zbc_program_call(code, &ip->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006727 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006728 case BC_INST_INC_PRE:
6729 case BC_INST_DEC_PRE:
6730 case BC_INST_INC_POST:
6731 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006732 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006733 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006734 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006735 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006736 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006737 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006738 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006739 case BC_INST_RET:
6740 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006741 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006742 s = zbc_program_return(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006743 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006744 case BC_INST_BOOL_OR:
6745 case BC_INST_BOOL_AND:
6746#endif // ENABLE_BC
6747 case BC_INST_REL_EQ:
6748 case BC_INST_REL_LE:
6749 case BC_INST_REL_GE:
6750 case BC_INST_REL_NE:
6751 case BC_INST_REL_LT:
6752 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006753 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006754 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006755 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006756 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006757 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006758 s = zbc_program_read();
Gavin Howard01055ba2018-11-03 11:00:21 -06006759 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006760 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006761 dbg_exec("BC_INST_VAR:");
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006762 s = zbc_program_pushVar(code, &ip->idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006763 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006764 case BC_INST_ARRAY_ELEM:
6765 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006766 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006767 s = zbc_program_pushArray(code, &ip->idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006768 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006769 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006770 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006771 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006772 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006773 case BC_INST_IBASE:
6774 case BC_INST_SCALE:
6775 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006776 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006777 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006778 case BC_INST_SCALE_FUNC:
6779 case BC_INST_LENGTH:
6780 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006781 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006782 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006783 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006784 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006785 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006786 r.t = BC_RESULT_CONSTANT;
6787 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006788 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006789 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006790 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006791 dbg_exec("BC_INST_POP:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006792 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006793 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006794 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006795 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006796 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006797 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006798 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006799 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006800 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006801 case BC_INST_PRINT:
6802 case BC_INST_PRINT_POP:
6803 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006804 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006805 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006806 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006807 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006808 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006809 r.t = BC_RESULT_STR;
6810 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006811 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006812 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006813 case BC_INST_POWER:
6814 case BC_INST_MULTIPLY:
6815 case BC_INST_DIVIDE:
6816 case BC_INST_MODULUS:
6817 case BC_INST_PLUS:
6818 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006819 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006820 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006821 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006822 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006823 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006824 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006825 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006826 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006827 if (!bc_num_cmp(num, &G.prog.zero))
6828 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006829 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006830 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006831 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006832 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006833 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006834 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006835 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006836#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006837 case BC_INST_ASSIGN_POWER:
6838 case BC_INST_ASSIGN_MULTIPLY:
6839 case BC_INST_ASSIGN_DIVIDE:
6840 case BC_INST_ASSIGN_MODULUS:
6841 case BC_INST_ASSIGN_PLUS:
6842 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006843#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006844 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006845 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006846 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006847 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006848#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006849 case BC_INST_MODEXP:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006850 s = zbc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006851 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006852 case BC_INST_DIVMOD:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006853 s = zbc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006854 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006855 case BC_INST_EXECUTE:
6856 case BC_INST_EXEC_COND:
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006857 s = zbc_program_execStr(code, &ip->idx, inst == BC_INST_EXEC_COND);
Gavin Howard01055ba2018-11-03 11:00:21 -06006858 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006859 case BC_INST_PRINT_STACK: {
6860 size_t idx;
6861 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006862 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006863 if (s) break;
6864 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006865 break;
6866 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006867 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006868 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006869 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006870 case BC_INST_STACK_LEN:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006871 bc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006872 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006873 case BC_INST_DUPLICATE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006874 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006875 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006876 ptr = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006877 bc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006878 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006879 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006880 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006881 BcResult *ptr2;
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006882 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006883 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006884 ptr = bc_vec_item_rev(&G.prog.results, 0);
6885 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006886 memcpy(&r, ptr, sizeof(BcResult));
6887 memcpy(ptr, ptr2, sizeof(BcResult));
6888 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006889 break;
6890 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006891 case BC_INST_ASCIIFY:
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006892 s = zbc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006893 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006894 case BC_INST_PRINT_STREAM:
Denys Vlasenko29301232018-12-11 15:29:32 +01006895 s = zbc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006896 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006897 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006898 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006899 bool copy = inst == BC_INST_LOAD;
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006900 s = zbc_program_pushVar(code, &ip->idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006901 break;
6902 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006903 case BC_INST_PUSH_TO_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006904 char *name = bc_program_name(code, &ip->idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006905 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006906 free(name);
6907 break;
6908 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006909 case BC_INST_QUIT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006910 dbg_exec("BC_INST_NEG:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006911 if (G.prog.stack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006912 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01006913 bc_vec_npop(&G.prog.stack, 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006914 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006915 case BC_INST_NQUIT:
Denys Vlasenko29301232018-12-11 15:29:32 +01006916 s = zbc_program_nquit();
Gavin Howard01055ba2018-11-03 11:00:21 -06006917 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006918#endif // ENABLE_DC
6919 }
6920
Denys Vlasenkod38af482018-12-04 19:11:02 +01006921 if (s || G_interrupt) {
6922 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006923 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006924 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006925
6926 // If the stack has changed, pointers may be invalid.
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006927 ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006928 func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006929 code = func->code.v;
6930 }
6931
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006932 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006933}
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006934#if ERRORS_ARE_FATAL
6935# define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__), BC_STATUS_SUCCESS)
6936#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006937
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006938static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006939{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006940 char *lenv;
6941 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006942
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006943 lenv = getenv(var);
6944 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006945 if (!lenv) return len;
6946
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006947 len = bb_strtou(lenv, NULL, 10) - 1;
6948 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006949 len = BC_NUM_PRINT_WIDTH;
6950
6951 return len;
6952}
6953
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006954static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006955{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006956 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006957
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006958 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6959 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006960 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006961
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006962 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006963 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01006964 ERROR_RETURN(s =) zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006965 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006966 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006967 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006968 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006969 break;
6970 }
6971 fflush_and_check();
Gavin Howard01055ba2018-11-03 11:00:21 -06006972 }
6973
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006974 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006975 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006976}
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006977#if ERRORS_ARE_FATAL
6978# define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__), BC_STATUS_SUCCESS)
6979#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006980
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006981static BC_STATUS zbc_vm_file(const char *file)
Gavin Howard01055ba2018-11-03 11:00:21 -06006982{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006983 // So far bc/dc have no way to include a file from another file,
6984 // therefore we know G.prog.file == NULL on entry
6985 //const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06006986 char *data;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006987 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006988 BcFunc *main_func;
6989 BcInstPtr *ip;
6990
Denys Vlasenkodf515392018-12-02 19:27:48 +01006991 data = bc_read_file(file);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006992 if (!data) RETURN_STATUS(bc_error_fmt("file '%s' is not text", file));
Gavin Howard01055ba2018-11-03 11:00:21 -06006993
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006994 //sv_file = G.prog.file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006995 G.prog.file = file;
6996 bc_lex_file(&G.prs.l);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006997 s = zbc_vm_process(data);
Gavin Howard01055ba2018-11-03 11:00:21 -06006998 if (s) goto err;
6999
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01007000 main_func = bc_program_func(BC_PROG_MAIN);
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007001 ip = bc_vec_item(&G.prog.stack, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06007002
Denys Vlasenko60cf7472018-12-04 20:05:28 +01007003 if (main_func->code.len < ip->idx)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01007004 s = bc_error_fmt("file '%s' is not executable", file);
Gavin Howard01055ba2018-11-03 11:00:21 -06007005
7006err:
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01007007 //G.prog.file = sv_file;
7008 G.prog.file = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06007009 free(data);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007010 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007011}
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007012#if ERRORS_ARE_FATAL
7013# define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__), BC_STATUS_SUCCESS)
7014#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007015
Denys Vlasenko19f11072018-12-12 22:48:19 +01007016static BC_STATUS zbc_vm_stdin(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007017{
Denys Vlasenkoa0c421c2018-12-02 20:16:52 +01007018 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06007019
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01007020 //G.prog.file = NULL; - already is
Denys Vlasenko0409ad32018-12-05 16:39:22 +01007021 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06007022
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007023 G.use_stdin = 1;
7024 s = zbc_vm_process("");
Denys Vlasenko19f11072018-12-12 22:48:19 +01007025 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007026}
Denys Vlasenko19f11072018-12-12 22:48:19 +01007027#if ERRORS_ARE_FATAL
7028# define zbc_vm_stdin(...) (zbc_vm_stdin(__VA_ARGS__), BC_STATUS_SUCCESS)
7029#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007030
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007031#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01007032static void bc_vm_info(void)
7033{
7034 printf("%s "BB_VER"\n"
7035 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
7036 , applet_name);
7037}
7038
7039static void bc_args(char **argv)
7040{
7041 unsigned opts;
7042 int i;
7043
7044 GETOPT_RESET();
7045#if ENABLE_FEATURE_BC_LONG_OPTIONS
7046 opts = option_mask32 |= getopt32long(argv, "wvsqli",
7047 "warn\0" No_argument "w"
7048 "version\0" No_argument "v"
7049 "standard\0" No_argument "s"
7050 "quiet\0" No_argument "q"
7051 "mathlib\0" No_argument "l"
7052 "interactive\0" No_argument "i"
7053 );
7054#else
7055 opts = option_mask32 |= getopt32(argv, "wvsqli");
7056#endif
7057 if (getenv("POSIXLY_CORRECT"))
7058 option_mask32 |= BC_FLAG_S;
7059
7060 if (opts & BC_FLAG_V) {
7061 bc_vm_info();
7062 exit(0);
7063 }
7064
7065 for (i = optind; argv[i]; ++i)
7066 bc_vec_push(&G.files, argv + i);
7067}
7068
7069static void bc_vm_envArgs(void)
7070{
7071 BcVec v;
7072 char *buf;
7073 char *env_args = getenv("BC_ENV_ARGS");
7074
7075 if (!env_args) return;
7076
7077 G.env_args = xstrdup(env_args);
7078 buf = G.env_args;
7079
7080 bc_vec_init(&v, sizeof(char *), NULL);
7081
7082 while (*(buf = skip_whitespace(buf)) != '\0') {
7083 bc_vec_push(&v, &buf);
7084 buf = skip_non_whitespace(buf);
7085 if (!*buf)
7086 break;
7087 *buf++ = '\0';
7088 }
7089
7090 // NULL terminate, and pass argv[] so that first arg is argv[1]
7091 if (sizeof(int) == sizeof(char*)) {
7092 bc_vec_push(&v, &const_int_0);
7093 } else {
7094 static char *const nullptr = NULL;
7095 bc_vec_push(&v, &nullptr);
7096 }
7097 bc_args(((char **)v.v) - 1);
7098
7099 bc_vec_free(&v);
7100}
7101
7102static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007103 "scale=20"
7104"\n" "define e(x){"
7105"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01007106////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
7107//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
7108//e(-.998896): GNU:.36828580434569428695
7109// above code:.36828580434569428696
7110// actual value:.3682858043456942869594...
7111// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007112"\n" "b=ibase"
7113"\n" "ibase=A"
7114"\n" "if(x<0){"
7115"\n" "n=1"
7116"\n" "x=-x"
7117"\n" "}"
7118"\n" "s=scale"
7119"\n" "r=6+s+0.44*x"
7120"\n" "scale=scale(x)+1"
7121"\n" "while(x>1){"
7122"\n" "d+=1"
7123"\n" "x/=2"
7124"\n" "scale+=1"
7125"\n" "}"
7126"\n" "scale=r"
7127"\n" "r=x+1"
7128"\n" "p=x"
7129"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007130"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007131"\n" "p*=x"
7132"\n" "f*=i"
7133"\n" "v=p/f"
7134"\n" "r+=v"
7135"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007136"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007137"\n" "scale=s"
7138"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007139"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007140"\n" "return(r/1)"
7141"\n" "}"
7142"\n" "define l(x){"
7143"\n" "auto b,s,r,p,a,q,i,v"
7144"\n" "b=ibase"
7145"\n" "ibase=A"
7146"\n" "if(x<=0){"
7147"\n" "r=(1-10^scale)/1"
7148"\n" "ibase=b"
7149"\n" "return(r)"
7150"\n" "}"
7151"\n" "s=scale"
7152"\n" "scale+=6"
7153"\n" "p=2"
7154"\n" "while(x>=2){"
7155"\n" "p*=2"
7156"\n" "x=sqrt(x)"
7157"\n" "}"
7158"\n" "while(x<=0.5){"
7159"\n" "p*=2"
7160"\n" "x=sqrt(x)"
7161"\n" "}"
7162"\n" "r=a=(x-1)/(x+1)"
7163"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007164"\n" "v=1"
7165"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007166"\n" "a*=q"
7167"\n" "v=a/i"
7168"\n" "r+=v"
7169"\n" "}"
7170"\n" "r*=p"
7171"\n" "scale=s"
7172"\n" "ibase=b"
7173"\n" "return(r/1)"
7174"\n" "}"
7175"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01007176"\n" "auto b,s,r,a,q,i"
7177"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007178"\n" "b=ibase"
7179"\n" "ibase=A"
7180"\n" "s=scale"
7181"\n" "scale=1.1*s+2"
7182"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007183"\n" "scale=0"
7184"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01007185"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007186"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007187"\n" "scale=s+2"
7188"\n" "r=a=x"
7189"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007190"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007191"\n" "a*=q/(i*(i-1))"
7192"\n" "r+=a"
7193"\n" "}"
7194"\n" "scale=s"
7195"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007196"\n" "return(r/1)"
7197"\n" "}"
7198"\n" "define c(x){"
7199"\n" "auto b,s"
7200"\n" "b=ibase"
7201"\n" "ibase=A"
7202"\n" "s=scale"
7203"\n" "scale*=1.2"
7204"\n" "x=s(2*a(1)+x)"
7205"\n" "scale=s"
7206"\n" "ibase=b"
7207"\n" "return(x/1)"
7208"\n" "}"
7209"\n" "define a(x){"
7210"\n" "auto b,s,r,n,a,m,t,f,i,u"
7211"\n" "b=ibase"
7212"\n" "ibase=A"
7213"\n" "n=1"
7214"\n" "if(x<0){"
7215"\n" "n=-1"
7216"\n" "x=-x"
7217"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007218"\n" "if(scale<65){"
7219"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
7220"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007221"\n" "}"
7222"\n" "s=scale"
7223"\n" "if(x>.2){"
7224"\n" "scale+=5"
7225"\n" "a=a(.2)"
7226"\n" "}"
7227"\n" "scale=s+3"
7228"\n" "while(x>.2){"
7229"\n" "m+=1"
7230"\n" "x=(x-.2)/(1+.2*x)"
7231"\n" "}"
7232"\n" "r=u=x"
7233"\n" "f=-x*x"
7234"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007235"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007236"\n" "u*=f"
7237"\n" "t=u/i"
7238"\n" "r+=t"
7239"\n" "}"
7240"\n" "scale=s"
7241"\n" "ibase=b"
7242"\n" "return((m*a+r)/n)"
7243"\n" "}"
7244"\n" "define j(n,x){"
7245"\n" "auto b,s,o,a,i,v,f"
7246"\n" "b=ibase"
7247"\n" "ibase=A"
7248"\n" "s=scale"
7249"\n" "scale=0"
7250"\n" "n/=1"
7251"\n" "if(n<0){"
7252"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01007253"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007254"\n" "}"
7255"\n" "a=1"
7256"\n" "for(i=2;i<=n;++i)a*=i"
7257"\n" "scale=1.5*s"
7258"\n" "a=(x^n)/2^n/a"
7259"\n" "r=v=1"
7260"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01007261"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007262"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007263"\n" "v=v*f/i/(n+i)"
7264"\n" "r+=v"
7265"\n" "}"
7266"\n" "scale=s"
7267"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007268"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007269"\n" "return(a*r/1)"
7270"\n" "}"
7271};
7272#endif // ENABLE_BC
7273
Denys Vlasenko19f11072018-12-12 22:48:19 +01007274static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007275{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007276 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06007277 size_t i;
7278
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007279#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01007280 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007281 // We know that internal library is not buggy,
7282 // thus error checking is normally disabled.
7283# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01007284 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01007285 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01007286 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007287 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007288#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007289
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007290 s = BC_STATUS_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007291 for (i = 0; !s && i < G.files.len; ++i)
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007292 s = zbc_vm_file(*((char **) bc_vec_item(&G.files, i)));
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007293 if (ENABLE_FEATURE_CLEAN_UP && s && !G_ttyin) {
7294 // Debug config, non-interactive mode:
7295 // return all the way back to main.
7296 // Non-debug builds do not come here, they exit.
Denys Vlasenko19f11072018-12-12 22:48:19 +01007297 RETURN_STATUS(s);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01007298 }
Gavin Howard01055ba2018-11-03 11:00:21 -06007299
Denys Vlasenko91cde952018-12-10 20:56:08 +01007300 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenko19f11072018-12-12 22:48:19 +01007301 s = zbc_vm_stdin();
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007302
Denys Vlasenko19f11072018-12-12 22:48:19 +01007303 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007304}
Denys Vlasenko19f11072018-12-12 22:48:19 +01007305#if ERRORS_ARE_FATAL
7306# define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__), BC_STATUS_SUCCESS)
7307#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007308
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007309#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007310static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007311{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007312 bc_num_free(&G.prog.ib);
7313 bc_num_free(&G.prog.ob);
7314 bc_num_free(&G.prog.hexb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007315# if ENABLE_DC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007316 bc_num_free(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007317# endif
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007318 bc_vec_free(&G.prog.fns);
7319 bc_vec_free(&G.prog.fn_map);
7320 bc_vec_free(&G.prog.vars);
7321 bc_vec_free(&G.prog.var_map);
7322 bc_vec_free(&G.prog.arrs);
7323 bc_vec_free(&G.prog.arr_map);
7324 bc_vec_free(&G.prog.strs);
7325 bc_vec_free(&G.prog.consts);
7326 bc_vec_free(&G.prog.results);
7327 bc_vec_free(&G.prog.stack);
7328 bc_num_free(&G.prog.last);
7329 bc_num_free(&G.prog.zero);
7330 bc_num_free(&G.prog.one);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007331 bc_vec_free(&G.stdin_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007332}
7333
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007334static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007335{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007336 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007337 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007338 bc_parse_free(&G.prs);
7339 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06007340}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007341#endif
7342
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007343static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007344{
7345 size_t idx;
7346 BcInstPtr ip;
7347
Denys Vlasenko82269122018-12-14 16:30:56 +01007348 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007349 memset(&ip, 0, sizeof(BcInstPtr));
7350
Denys Vlasenko82269122018-12-14 16:30:56 +01007351 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007352 bc_num_init_DEF_SIZE(&G.prog.ib);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007353 bc_num_ten(&G.prog.ib);
7354 G.prog.ib_t = 10;
7355
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007356 bc_num_init_DEF_SIZE(&G.prog.ob);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007357 bc_num_ten(&G.prog.ob);
7358 G.prog.ob_t = 10;
7359
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007360 bc_num_init_DEF_SIZE(&G.prog.hexb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007361 bc_num_ten(&G.prog.hexb);
7362 G.prog.hexb.num[0] = 6;
7363
7364#if ENABLE_DC
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007365 bc_num_init_DEF_SIZE(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007366 bc_num_ulong2num(&G.prog.strmb, UCHAR_MAX + 1);
7367#endif
7368
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007369 bc_num_init_DEF_SIZE(&G.prog.last);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007370 //bc_num_zero(&G.prog.last); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007371
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007372 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007373 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007374
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007375 bc_num_init_DEF_SIZE(&G.prog.one);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007376 bc_num_one(&G.prog.one);
7377
7378 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007379 bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007380
Denys Vlasenko1f67e932018-12-03 00:08:59 +01007381 bc_program_addFunc(xstrdup("(main)"), &idx);
7382 bc_program_addFunc(xstrdup("(read)"), &idx);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007383
7384 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007385 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007386
7387 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007388 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007389
7390 bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);
7391 bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);
7392 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
7393 bc_vec_init(&G.prog.stack, sizeof(BcInstPtr), NULL);
7394 bc_vec_push(&G.prog.stack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007395
7396 bc_char_vec_init(&G.stdin_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007397}
Gavin Howard01055ba2018-11-03 11:00:21 -06007398
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007399static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007400{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007401#if ENABLE_FEATURE_EDITING
7402 G.line_input_state = new_line_input_t(DO_HISTORY);
7403#endif
7404 G.prog.len = bc_vm_envLen(env_len);
7405
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007406 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007407 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007408 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007409 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007410
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007411//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7412//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007413 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007414#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007415 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007416 // With SA_RESTART, most system calls will restart
7417 // (IOW: they won't fail with EINTR).
7418 // In particular, this means ^C won't cause
7419 // stdout to get into "error state" if SIGINT hits
7420 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007421 //
7422 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007423 // will only be handled after [Enter] since read()
7424 // from stdin is not interrupted by ^C either,
7425 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007426 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007427 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7428
7429 // Without SA_RESTART, this exhibits a bug:
7430 // "while (1) print 1" and try ^C-ing it.
7431 // Intermittently, instead of returning to input line,
7432 // you'll get "output error: Interrupted system call"
7433 // and exit.
7434 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007435#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007436 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007437 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007438 return 0; // "not a tty"
7439}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007440
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007441static BcStatus bc_vm_run(void)
7442{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007443 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007444#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007445 if (G_exiting) // it was actually "halt" or "quit"
7446 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007447 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007448# if ENABLE_FEATURE_EDITING
7449 free_line_input_t(G.line_input_state);
7450# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007451 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007452#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007453 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007454 return st;
7455}
7456
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007457#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007458int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007459int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007460{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007461 int is_tty;
7462
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007463 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007464
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007465 is_tty = bc_vm_init("BC_LINE_LENGTH");
7466
7467 bc_args(argv);
7468
7469 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7470 bc_vm_info();
7471
7472 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007473}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007474#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007475
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007476#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007477int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007478int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007479{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007480 int noscript;
7481
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007482 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007483
7484 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7485 // 1 char wider than bc from the same package.
7486 // Both default width, and xC_LINE_LENGTH=N are wider:
7487 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007488 // |1234\ |
7489 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007490 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007491 // |123\ |
7492 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007493 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007494 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007495
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007496 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7497 noscript = BC_FLAG_I;
7498 for (;;) {
7499 int n = getopt(argc, argv, "e:f:x");
7500 if (n <= 0)
7501 break;
7502 switch (n) {
7503 case 'e':
7504 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007505 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007506 if (n) return n;
7507 break;
7508 case 'f':
7509 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007510 n = zbc_vm_file(optarg);
7511 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007512 break;
7513 case 'x':
7514 option_mask32 |= DC_FLAG_X;
7515 break;
7516 default:
7517 bb_show_usage();
7518 }
7519 }
7520 argv += optind;
7521
7522 while (*argv) {
7523 noscript = 0;
7524 bc_vec_push(&G.files, argv++);
7525 }
7526
7527 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7528
7529 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007530}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007531#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007532
7533#endif // not DC_SMALL