blob: 58734cf9cac795e6b5f95f28cac2a7744cb6884d [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
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100438 BC_LEX_LBRACE, // '{' is 0x7B, '}' is 0x7D,
Gavin Howard01055ba2018-11-03 11:00:21 -0600439 BC_LEX_SCOLON,
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100440 BC_LEX_RBRACE, // should be LBRACE+2: code uses (c - '{' + BC_LEX_LBRACE)
Gavin Howard01055ba2018-11-03 11:00:21 -0600441
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 Vlasenko59d4ce92018-12-17 10:42:31 +0100528#define STRING_if (bc_lex_kws[8].name8)
529#define STRING_else (bc_lex_kws[4].name8)
530#define STRING_while (bc_lex_kws[19].name8)
531#define STRING_for (bc_lex_kws[5].name8)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100532enum {
533 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100534 | (1 << 0) // 0
535 | (1 << 1) // 1
536 | (0 << 2) // 2
537 | (1 << 3) // 3
538 | (0 << 4) // 4
539 | (1 << 5) // 5
540 | (0 << 6) // 6
541 | (1 << 7) // 7
542 | (1 << 8) // 8
543 | (0 << 9) // 9
544 | (1 << 10) // 10
545 | (0 << 11) // 11
546 | (1 << 12) // 12
547 | (0 << 13) // 13
548 | (1 << 14) // 14
549 | (0 << 15) // 15
550 | (1 << 16) // 16
551 | (1 << 17) // 17
552 | (1 << 18) // 18
553 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100554};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100555#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100556#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600557
Gavin Howard01055ba2018-11-03 11:00:21 -0600558typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600559 const char *buf;
560 size_t i;
561 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600562 size_t len;
563 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600564 struct {
565 BcLexType t;
566 BcLexType last;
567 BcVec v;
568 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600569} BcLex;
570
Denys Vlasenko0154d782018-12-14 23:32:51 +0100571#define BC_PARSE_STREND ((char) UCHAR_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -0600572
Denys Vlasenko0154d782018-12-14 23:32:51 +0100573#define BC_PARSE_REL (1 << 0)
574#define BC_PARSE_PRINT (1 << 1)
575#define BC_PARSE_NOCALL (1 << 2)
576#define BC_PARSE_NOREAD (1 << 3)
577#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600578
Gavin Howard01055ba2018-11-03 11:00:21 -0600579typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600580 BcLex l;
581
Gavin Howard01055ba2018-11-03 11:00:21 -0600582 BcVec exits;
583 BcVec conds;
584
585 BcVec ops;
586
Gavin Howard01055ba2018-11-03 11:00:21 -0600587 BcFunc *func;
588 size_t fidx;
589
Denys Vlasenkoe9519e42018-12-16 17:06:07 +0100590 size_t in_funcdef;
Gavin Howard01055ba2018-11-03 11:00:21 -0600591} BcParse;
592
Gavin Howard01055ba2018-11-03 11:00:21 -0600593typedef struct BcProgram {
594
595 size_t len;
596 size_t scale;
597
598 BcNum ib;
599 size_t ib_t;
600 BcNum ob;
601 size_t ob_t;
602
603 BcNum hexb;
604
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100605#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600606 BcNum strmb;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100607#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600608
609 BcVec results;
610 BcVec stack;
611
612 BcVec fns;
613 BcVec fn_map;
614
615 BcVec vars;
616 BcVec var_map;
617
618 BcVec arrs;
619 BcVec arr_map;
620
621 BcVec strs;
622 BcVec consts;
623
624 const char *file;
625
626 BcNum last;
627 BcNum zero;
628 BcNum one;
629
630 size_t nchars;
631
Gavin Howard01055ba2018-11-03 11:00:21 -0600632} BcProgram;
633
634#define BC_PROG_STACK(s, n) ((s)->len >= ((size_t) n))
635
636#define BC_PROG_MAIN (0)
637#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100638#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600639#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100640#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600641
642#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
643#define BC_PROG_NUM(r, n) \
644 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
645
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100646#define BC_FLAG_W (1 << 0)
647#define BC_FLAG_V (1 << 1)
648#define BC_FLAG_S (1 << 2)
649#define BC_FLAG_Q (1 << 3)
650#define BC_FLAG_L (1 << 4)
651#define BC_FLAG_I (1 << 5)
652#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600653
654#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
655#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
656
Denys Vlasenko64074a12018-12-07 15:50:14 +0100657#define BC_MAX_OBASE ((unsigned) 999)
658#define BC_MAX_DIM ((unsigned) INT_MAX)
659#define BC_MAX_SCALE ((unsigned) UINT_MAX)
660#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
661#define BC_MAX_NUM BC_MAX_STRING
662// Unused apart from "limits" message. Just show a "biggish number" there.
663//#define BC_MAX_NAME BC_MAX_STRING
664//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
665//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
666#define BC_MAX_NAME_STR "999999999"
667#define BC_MAX_EXP_STR "999999999"
668#define BC_MAX_VARS_STR "999999999"
669
670#define BC_MAX_OBASE_STR "999"
671
672#if INT_MAX == 2147483647
673# define BC_MAX_DIM_STR "2147483647"
674#elif INT_MAX == 9223372036854775807
675# define BC_MAX_DIM_STR "9223372036854775807"
676#else
677# error Strange INT_MAX
678#endif
679
680#if UINT_MAX == 4294967295
681# define BC_MAX_SCALE_STR "4294967295"
682# define BC_MAX_STRING_STR "4294967294"
683#elif UINT_MAX == 18446744073709551615
684# define BC_MAX_SCALE_STR "18446744073709551615"
685# define BC_MAX_STRING_STR "18446744073709551614"
686#else
687# error Strange UINT_MAX
688#endif
689#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600690
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100691struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100692 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100693 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100694 smallint in_read;
Gavin Howard01055ba2018-11-03 11:00:21 -0600695
696 BcParse prs;
697 BcProgram prog;
698
Denys Vlasenko5318f812018-12-05 17:48:01 +0100699 // For error messages. Can be set to current parsed line,
700 // or [TODO] to current executing line (can be before last parsed one)
701 unsigned err_line;
702
Gavin Howard01055ba2018-11-03 11:00:21 -0600703 BcVec files;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +0100704 BcVec input_buffer;
705 FILE *input_fp;
Gavin Howard01055ba2018-11-03 11:00:21 -0600706
707 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100708
709#if ENABLE_FEATURE_EDITING
710 line_input_t *line_input_state;
711#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100712} FIX_ALIASING;
713#define G (*ptr_to_globals)
714#define INIT_G() do { \
715 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
716} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100717#define FREE_G() do { \
718 FREE_PTR_TO_GLOBALS(); \
719} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100720#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
721#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100722#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100723#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100724# define G_interrupt bb_got_signal
725# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100726#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100727# define G_interrupt 0
728# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100729#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100730#if ENABLE_FEATURE_CLEAN_UP
731# define G_exiting G.exiting
732#else
733# define G_exiting 0
734#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100735#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100736#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100737
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100738#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600739
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100740// This is a bit array that corresponds to token types. An entry is
Gavin Howard01055ba2018-11-03 11:00:21 -0600741// true if the token is valid in an expression, false otherwise.
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100742enum {
743 BC_PARSE_EXPRS_BITS = 0
744 + ((uint64_t)((0 << 0)+(0 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(1 << 5)+(1 << 6)+(1 << 7)) << (0*8))
745 + ((uint64_t)((1 << 0)+(1 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(1 << 5)+(1 << 6)+(1 << 7)) << (1*8))
746 + ((uint64_t)((1 << 0)+(1 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(1 << 5)+(1 << 6)+(1 << 7)) << (2*8))
747 + ((uint64_t)((1 << 0)+(1 << 1)+(1 << 2)+(0 << 3)+(0 << 4)+(1 << 5)+(1 << 6)+(0 << 7)) << (3*8))
748 + ((uint64_t)((0 << 0)+(0 << 1)+(0 << 2)+(0 << 3)+(0 << 4)+(0 << 5)+(1 << 6)+(1 << 7)) << (4*8))
749 + ((uint64_t)((0 << 0)+(0 << 1)+(0 << 2)+(0 << 3)+(0 << 4)+(0 << 5)+(0 << 6)+(1 << 7)) << (5*8))
750 + ((uint64_t)((0 << 0)+(1 << 1)+(1 << 2)+(1 << 3)+(1 << 4)+(0 << 5)+(0 << 6)+(1 << 7)) << (6*8))
751 + ((uint64_t)((0 << 0)+(1 << 1)+(1 << 2)+(0 << 3) ) << (7*8))
Gavin Howard01055ba2018-11-03 11:00:21 -0600752};
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100753static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
754{
755#if ULONG_MAX > 0xffffffff
756 // 64-bit version (will not work correctly for 32-bit longs!)
757 return BC_PARSE_EXPRS_BITS & (1UL << i);
758#else
759 // 32-bit version
760 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
761 if (i >= 32) {
762 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
763 i &= 31;
764 }
765 return m & (1UL << i);
766#endif
767}
Gavin Howard01055ba2018-11-03 11:00:21 -0600768
769// This is an array of data for operators that correspond to token types.
Denys Vlasenko65437582018-12-05 19:37:19 +0100770static const uint8_t bc_parse_ops[] = {
771#define OP(p,l) ((int)(l) * 0x10 + (p))
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100772 OP(0, false), OP( 0, false ), // inc dec
773 OP(1, false), // neg
Denys Vlasenko65437582018-12-05 19:37:19 +0100774 OP(2, false),
Denys Vlasenkobcb62a72018-12-05 20:17:48 +0100775 OP(3, true ), OP( 3, true ), OP( 3, true ), // pow mul div
776 OP(4, true ), OP( 4, true ), // mod + -
777 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
778 OP(1, false), // not
779 OP(7, true ), OP( 7, true ), // or and
780 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
781 OP(5, false), OP( 5, false ), // -= =
Denys Vlasenko65437582018-12-05 19:37:19 +0100782#undef OP
Gavin Howard01055ba2018-11-03 11:00:21 -0600783};
Denys Vlasenko65437582018-12-05 19:37:19 +0100784#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
785#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
Gavin Howard01055ba2018-11-03 11:00:21 -0600786
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100787// Byte array of up to 4 BC_LEX's, packed into 32-bit word
788typedef uint32_t BcParseNext;
789
Gavin Howard01055ba2018-11-03 11:00:21 -0600790// These identify what tokens can come after expressions in certain cases.
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100791enum {
792#define BC_PARSE_NEXT4(a,b,c,d) ( (a) | ((b)<<8) | ((c)<<16) | ((((d)|0x80)<<24)) )
793#define BC_PARSE_NEXT2(a,b) BC_PARSE_NEXT4(a,b,0xff,0xff)
794#define BC_PARSE_NEXT1(a) BC_PARSE_NEXT4(a,0xff,0xff,0xff)
795 bc_parse_next_expr = BC_PARSE_NEXT4(BC_LEX_NLINE, BC_LEX_SCOLON, BC_LEX_RBRACE, BC_LEX_EOF),
796 bc_parse_next_param = BC_PARSE_NEXT2(BC_LEX_RPAREN, BC_LEX_COMMA),
797 bc_parse_next_print = BC_PARSE_NEXT4(BC_LEX_COMMA, BC_LEX_NLINE, BC_LEX_SCOLON, BC_LEX_EOF),
798 bc_parse_next_rel = BC_PARSE_NEXT1(BC_LEX_RPAREN),
799 bc_parse_next_elem = BC_PARSE_NEXT1(BC_LEX_RBRACKET),
800 bc_parse_next_for = BC_PARSE_NEXT1(BC_LEX_SCOLON),
801 bc_parse_next_read = BC_PARSE_NEXT2(BC_LEX_NLINE, BC_LEX_EOF),
802#undef BC_PARSE_NEXT4
803#undef BC_PARSE_NEXT2
804#undef BC_PARSE_NEXT1
805};
Gavin Howard01055ba2018-11-03 11:00:21 -0600806#endif // ENABLE_BC
807
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100808#if ENABLE_DC
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100809static const //BcLexType - should be this type, but narrower type saves size:
810uint8_t
811dc_lex_regs[] = {
Gavin Howard01055ba2018-11-03 11:00:21 -0600812 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
813 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
814 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
815 BC_LEX_STORE_PUSH,
816};
817
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100818static const //BcLexType - should be this type
819uint8_t
820dc_lex_tokens[] = {
Gavin Howard01055ba2018-11-03 11:00:21 -0600821 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
822 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
823 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
824 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
825 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
826 BC_LEX_INVALID, BC_LEX_INVALID,
827 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
828 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
829 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
830 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
831 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
832 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
833 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
834 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
835 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
836 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
837 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
838 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
839 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
840 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
841 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
842 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
843 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
844 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
845 BC_LEX_INVALID
846};
847
Denys Vlasenko18c6b542018-12-07 12:57:32 +0100848static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
849int8_t
850dc_parse_insts[] = {
Gavin Howard01055ba2018-11-03 11:00:21 -0600851 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
852 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
853 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
854 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
855 BC_INST_INVALID, BC_INST_INVALID,
856 BC_INST_BOOL_NOT, BC_INST_INVALID, BC_INST_INVALID,
857 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
858 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
859 BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GT, BC_INST_INVALID,
860 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
861 BC_INST_INVALID, BC_INST_INVALID,
862 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
863 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
864 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
865 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
866 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
867 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
868 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
869 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
870 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
871 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
872 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
873 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
874};
875#endif // ENABLE_DC
876
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100877// In configurations where errors abort instead of propagating error
878// return code up the call chain, functions returning BC_STATUS
879// actually don't return anything, they always succeed and return "void".
880// A macro wrapper is provided, which makes this statement work:
881// s = zbc_func(...)
882// and makes it visible to the compiler that s is always zero,
883// allowing compiler to optimize dead code after the statement.
884//
885// To make code more readable, each such function has a "z"
886// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
887//
888#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100889# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100890# define ERRORFUNC /*nothing*/
Denys Vlasenkoec603182018-12-17 10:34:02 +0100891# define IF_ERROR_RETURN_POSSIBLE(a) a
892# define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100893# define RETURN_STATUS(v) return (v)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100894# define COMMA_SUCCESS /*nothing*/
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100895#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100896# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100897# define ERRORFUNC NORETURN
Denys Vlasenkoec603182018-12-17 10:34:02 +0100898# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
899# define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100900# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100901# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100902#endif
903
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100904#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
905#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
906#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
907//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
908static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
909{
910 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
911}
912//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
913static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
914{
915 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
916}
917
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100918typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
919
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100920typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100921
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100922static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
923 BcNumBinaryOp op, size_t req);
924static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
925static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
926static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
927static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
928static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
929static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
930
931static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
932{
933 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
934 (void) scale;
935 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
936}
937
938static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
939{
940 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
941 (void) scale;
942 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
943}
944
945static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
946{
947 size_t req = BC_NUM_MREQ(a, b, scale);
948 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
949}
950
951static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
952{
953 size_t req = BC_NUM_MREQ(a, b, scale);
954 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
955}
956
957static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
958{
959 size_t req = BC_NUM_MREQ(a, b, scale);
960 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
961}
962
963static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
964{
965 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
966}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100967
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100968static const BcNumBinaryOp zbc_program_ops[] = {
969 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 -0600970};
Denys Vlasenkoec603182018-12-17 10:34:02 +0100971#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
972#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
973#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
974#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
975#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
976#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -0600977
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100978static void fflush_and_check(void)
979{
980 fflush_all();
981 if (ferror(stdout) || ferror(stderr))
982 bb_perror_msg_and_die("output error");
983}
984
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100985#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100986#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100987do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100988 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100989 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100990 return BC_STATUS_FAILURE; \
991} while (0)
992#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100993#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100994#endif
995
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100996static void quit(void) NORETURN;
997static void quit(void)
998{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100999 if (ferror(stdin))
1000 bb_perror_msg_and_die("input error");
1001 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01001002 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +01001003 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01001004}
1005
Denys Vlasenko5318f812018-12-05 17:48:01 +01001006static void bc_verror_msg(const char *fmt, va_list p)
1007{
Denys Vlasenko82269122018-12-14 16:30:56 +01001008 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +01001009 if (G.prog.file) {
1010 sv = applet_name;
1011 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
1012 }
1013 bb_verror_msg(fmt, p, NULL);
1014 if (G.prog.file) {
1015 free((char*)applet_name);
1016 applet_name = sv;
1017 }
1018}
1019
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001020static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001021{
1022 va_list p;
1023
1024 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +01001025 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001026 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01001027
Denys Vlasenkoec603182018-12-17 10:34:02 +01001028 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
1029 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
1030 exit(1);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001031}
1032
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001033#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001034static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001035{
1036 va_list p;
1037
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001038 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01001039 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001040 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001041
1042 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +01001043 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001044 va_end(p);
1045
1046 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01001047 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001048 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenkoec603182018-12-17 10:34:02 +01001049 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
1050 return BC_STATUS_FAILURE;
1051 exit(1);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001052}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001053#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +01001054
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001055// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
1056// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001057// function must not have caller-cleaned parameters on stack.
1058// Unfortunately, vararg function API does exactly that on most arches.
1059// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001060static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001061{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001062 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001063}
1064static ERRORFUNC int bc_error_bad_character(char c)
1065{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001066 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001067}
1068static ERRORFUNC int bc_error_bad_expression(void)
1069{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001070 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001071}
1072static ERRORFUNC int bc_error_bad_token(void)
1073{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001074 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001075}
1076static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1077{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001078 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001079}
1080static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1081{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001082 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001083}
1084static ERRORFUNC int bc_error_nested_read_call(void)
1085{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001086 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001087}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001088#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001089static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001090{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001091 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001092}
Denys Vlasenko00646792018-12-05 18:12:27 +01001093static int bc_POSIX_does_not_allow(const char *msg)
1094{
1095 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1096}
1097static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1098{
1099 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1100}
1101static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1102{
1103 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1104}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001105#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001106
Gavin Howard01055ba2018-11-03 11:00:21 -06001107static void bc_vec_grow(BcVec *v, size_t n)
1108{
1109 size_t cap = v->cap * 2;
1110 while (cap < v->len + n) cap *= 2;
1111 v->v = xrealloc(v->v, v->size * cap);
1112 v->cap = cap;
1113}
1114
1115static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1116{
1117 v->size = esize;
1118 v->cap = BC_VEC_START_CAP;
1119 v->len = 0;
1120 v->dtor = dtor;
1121 v->v = xmalloc(esize * BC_VEC_START_CAP);
1122}
1123
Denys Vlasenko7d628012018-12-04 21:46:47 +01001124static void bc_char_vec_init(BcVec *v)
1125{
1126 bc_vec_init(v, sizeof(char), NULL);
1127}
1128
Gavin Howard01055ba2018-11-03 11:00:21 -06001129static void bc_vec_expand(BcVec *v, size_t req)
1130{
1131 if (v->cap < req) {
1132 v->v = xrealloc(v->v, v->size * req);
1133 v->cap = req;
1134 }
1135}
1136
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001137static void bc_vec_pop(BcVec *v)
1138{
1139 v->len--;
1140 if (v->dtor)
1141 v->dtor(v->v + (v->size * v->len));
1142}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001143
Gavin Howard01055ba2018-11-03 11:00:21 -06001144static void bc_vec_npop(BcVec *v, size_t n)
1145{
1146 if (!v->dtor)
1147 v->len -= n;
1148 else {
1149 size_t len = v->len - n;
1150 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1151 }
1152}
1153
Denys Vlasenko7d628012018-12-04 21:46:47 +01001154static void bc_vec_pop_all(BcVec *v)
1155{
1156 bc_vec_npop(v, v->len);
1157}
1158
Gavin Howard01055ba2018-11-03 11:00:21 -06001159static void bc_vec_push(BcVec *v, const void *data)
1160{
1161 if (v->len + 1 > v->cap) bc_vec_grow(v, 1);
1162 memmove(v->v + (v->size * v->len), data, v->size);
1163 v->len += 1;
1164}
1165
1166static void bc_vec_pushByte(BcVec *v, char data)
1167{
1168 bc_vec_push(v, &data);
1169}
1170
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001171static void bc_vec_pushZeroByte(BcVec *v)
1172{
1173 //bc_vec_pushByte(v, '\0');
1174 // better:
1175 bc_vec_push(v, &const_int_0);
1176}
1177
Gavin Howard01055ba2018-11-03 11:00:21 -06001178static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1179{
1180 if (idx == v->len)
1181 bc_vec_push(v, data);
1182 else {
1183
1184 char *ptr;
1185
1186 if (v->len == v->cap) bc_vec_grow(v, 1);
1187
1188 ptr = v->v + v->size * idx;
1189
1190 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1191 memmove(ptr, data, v->size);
1192 }
1193}
1194
1195static void bc_vec_string(BcVec *v, size_t len, const char *str)
1196{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001197 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001198 bc_vec_expand(v, len + 1);
1199 memcpy(v->v, str, len);
1200 v->len = len;
1201
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001202 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001203}
1204
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001205#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001206static void bc_vec_concat(BcVec *v, const char *str)
1207{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001208 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001209
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001210 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001211
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001212 slen = strlen(str);
1213 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001214
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001215 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001216 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001217
1218 v->len = len;
1219}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001220#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001221
1222static void *bc_vec_item(const BcVec *v, size_t idx)
1223{
1224 return v->v + v->size * idx;
1225}
1226
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001227static char** bc_program_str(size_t idx)
1228{
1229 return bc_vec_item(&G.prog.strs, idx);
1230}
1231
1232static BcFunc* bc_program_func(size_t idx)
1233{
1234 return bc_vec_item(&G.prog.fns, idx);
1235}
1236
Gavin Howard01055ba2018-11-03 11:00:21 -06001237static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1238{
1239 return v->v + v->size * (v->len - idx - 1);
1240}
1241
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001242static void *bc_vec_top(const BcVec *v)
1243{
1244 return v->v + v->size * (v->len - 1);
1245}
1246
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001247static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001248{
1249 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001250 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001251 free(v->v);
1252}
1253
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001254static int bc_id_cmp(const void *e1, const void *e2)
1255{
1256 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1257}
1258
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001259static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001260{
1261 free(((BcId *) id)->name);
1262}
1263
Gavin Howard01055ba2018-11-03 11:00:21 -06001264static size_t bc_map_find(const BcVec *v, const void *ptr)
1265{
1266 size_t low = 0, high = v->len;
1267
1268 while (low < high) {
1269
1270 size_t mid = (low + high) / 2;
1271 BcId *id = bc_vec_item(v, mid);
1272 int result = bc_id_cmp(ptr, id);
1273
1274 if (result == 0)
1275 return mid;
1276 else if (result < 0)
1277 high = mid;
1278 else
1279 low = mid + 1;
1280 }
1281
1282 return low;
1283}
1284
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001285static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001286{
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001287 size_t n = *i = bc_map_find(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001288
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001289 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001290 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001291 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1292 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001293 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001294 bc_vec_pushAt(v, ptr, n);
1295 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001296}
1297
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001298#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06001299static size_t bc_map_index(const BcVec *v, const void *ptr)
1300{
1301 size_t i = bc_map_find(v, ptr);
1302 if (i >= v->len) return BC_VEC_INVALID_IDX;
1303 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1304}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001305#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001306
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001307static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001308{
1309 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1310 || c > 0x7e
1311 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001312 bc_error_fmt("illegal character 0x%02x", c);
1313 return 1;
1314 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001315 return 0;
1316}
1317
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001318// Note: it _appends_ data from fp to vec.
1319static void bc_read_line(BcVec *vec, FILE *fp)
Gavin Howard01055ba2018-11-03 11:00:21 -06001320{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001321 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001322 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001323
Gavin Howard01055ba2018-11-03 11:00:21 -06001324#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001325 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001326 intr:
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001327 if (fp != stdin) {
1328 // ^C while running a script (bc SCRIPT): die.
1329 // We do not return to interactive prompt:
1330 // user might be running us from a shell,
1331 // and SCRIPT might be intended to terminate
1332 // (e.g. contain a "halt" stmt).
1333 // ^C dropping user into a bc prompt instead of
1334 // the shell would be unexpected.
1335 xfunc_die();
1336 }
1337 // ^C while interactive input
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001338 G_interrupt = 0;
1339 // GNU bc says "interrupted execution."
1340 // GNU dc says "Interrupt!"
1341 fputs("\ninterrupted execution\n", stderr);
1342 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001343
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001344# if ENABLE_FEATURE_EDITING
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001345 if (G_ttyin && fp == stdin) {
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001346 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001347# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001348 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1349 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1350 if (n == 0) // ^C
1351 goto intr;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001352 bc_vec_pushZeroByte(vec); // ^D or EOF (or error)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001353 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001354 }
1355 i = 0;
1356 for (;;) {
1357 char c = line_buf[i++];
1358 if (!c) break;
1359 if (bad_input_byte(c)) goto again;
1360 }
1361 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001362# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001363 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001364# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001365#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001366 {
1367 int c;
1368 bool bad_chars = 0;
1369 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001370
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001371 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001372#if ENABLE_FEATURE_BC_SIGNALS
1373 if (G_interrupt) {
1374 // ^C was pressed: ignore entire line, get another one
1375 vec->len = len;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001376 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001377 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001378#endif
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001379 c = fgetc(fp);
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001380 if (c == EOF) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001381 if (ferror(fp))
1382 bb_perror_msg_and_die("input error");
1383 // Note: EOF does not append '\n'
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001384 break;
1385 }
1386 bad_chars |= bad_input_byte(c);
1387 bc_vec_pushByte(vec, (char)c);
1388 } while (c != '\n');
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001389
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001390 if (bad_chars) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001391 // Bad chars on this line
1392 if (!G.prog.file) { // stdin
1393 // ignore entire line, get another one
1394 vec->len = len;
1395 goto again;
1396 }
1397 bb_perror_msg_and_die("file '%s' is not text", G.prog.file);
Denys Vlasenkoed849352018-12-06 10:26:13 +01001398 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001399 bc_vec_pushZeroByte(vec);
1400 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001401}
1402
Gavin Howard01055ba2018-11-03 11:00:21 -06001403static void bc_num_setToZero(BcNum *n, size_t scale)
1404{
1405 n->len = 0;
1406 n->neg = false;
1407 n->rdx = scale;
1408}
1409
1410static void bc_num_zero(BcNum *n)
1411{
1412 bc_num_setToZero(n, 0);
1413}
1414
1415static void bc_num_one(BcNum *n)
1416{
1417 bc_num_setToZero(n, 0);
1418 n->len = 1;
1419 n->num[0] = 1;
1420}
1421
1422static void bc_num_ten(BcNum *n)
1423{
1424 bc_num_setToZero(n, 0);
1425 n->len = 2;
1426 n->num[0] = 0;
1427 n->num[1] = 1;
1428}
1429
Denys Vlasenko3129f702018-12-09 12:04:44 +01001430// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001431static void bc_num_init(BcNum *n, size_t req)
1432{
1433 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001434 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001435 n->num = xmalloc(req);
1436 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001437 n->rdx = 0;
1438 n->len = 0;
1439 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001440}
1441
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001442static void bc_num_init_DEF_SIZE(BcNum *n)
1443{
1444 bc_num_init(n, BC_NUM_DEF_SIZE);
1445}
1446
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001447static void bc_num_expand(BcNum *n, size_t req)
1448{
1449 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1450 if (req > n->cap) {
1451 n->num = xrealloc(n->num, req);
1452 n->cap = req;
1453 }
1454}
1455
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001456static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001457{
1458 free(((BcNum *) num)->num);
1459}
1460
1461static void bc_num_copy(BcNum *d, BcNum *s)
1462{
1463 if (d != s) {
1464 bc_num_expand(d, s->cap);
1465 d->len = s->len;
1466 d->neg = s->neg;
1467 d->rdx = s->rdx;
1468 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1469 }
1470}
1471
Denys Vlasenko29301232018-12-11 15:29:32 +01001472static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001473{
1474 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001475 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001476
Denys Vlasenko29301232018-12-11 15:29:32 +01001477 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001478
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001479 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001480
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001481 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001482
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001483 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001484 pow *= 10;
1485
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001486 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001487 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001488 prev = result;
1489 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001490 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001491 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001492
Denys Vlasenko29301232018-12-11 15:29:32 +01001493 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001494}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001495#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001496
1497static void bc_num_ulong2num(BcNum *n, unsigned long val)
1498{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001499 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001500
1501 bc_num_zero(n);
1502
1503 if (val == 0) return;
1504
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001505 if (ULONG_MAX == 0xffffffffUL)
1506 bc_num_expand(n, 10); // 10 digits: 4294967295
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001507 if (ULONG_MAX == 0xffffffffffffffffULL)
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001508 bc_num_expand(n, 20); // 20 digits: 18446744073709551615
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001509 BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001510
1511 ptr = n->num;
1512 for (;;) {
1513 n->len++;
1514 *ptr++ = val % 10;
1515 val /= 10;
1516 if (val == 0) break;
1517 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001518}
1519
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001520static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001521 size_t len)
1522{
1523 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001524 for (i = 0; i < len; ++i) {
1525 for (a[i] -= b[i], j = 0; a[i + j] < 0;) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001526 a[i + j++] += 10;
1527 a[i + j] -= 1;
1528 }
1529 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001530}
1531
1532static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1533{
1534 size_t i;
1535 int c = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001536 for (i = len - 1; i < len && !(c = a[i] - b[i]); --i);
Gavin Howard01055ba2018-11-03 11:00:21 -06001537 return BC_NUM_NEG(i + 1, c < 0);
1538}
1539
1540static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1541{
1542 size_t i, min, a_int, b_int, diff;
1543 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001544 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001545 ssize_t cmp;
1546
1547 if (a == b) return 0;
1548 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1549 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001550
1551 if (a->neg != b->neg) // signs of a and b differ
1552 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1553 return (int)b->neg - (int)a->neg;
1554 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001555
1556 a_int = BC_NUM_INT(a);
1557 b_int = BC_NUM_INT(b);
1558 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001559
1560 if (a_int != 0) return (ssize_t) a_int;
1561
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001562 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001563 if (a_max) {
1564 min = b->rdx;
1565 diff = a->rdx - b->rdx;
1566 max_num = a->num + diff;
1567 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001568 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1569 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001570 min = a->rdx;
1571 diff = b->rdx - a->rdx;
1572 max_num = b->num + diff;
1573 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001574 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001575 }
1576
1577 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001578 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001579
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001580 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001581 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001582 }
1583
1584 return 0;
1585}
1586
1587static void bc_num_truncate(BcNum *n, size_t places)
1588{
1589 if (places == 0) return;
1590
1591 n->rdx -= places;
1592
1593 if (n->len != 0) {
1594 n->len -= places;
1595 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1596 }
1597}
1598
1599static void bc_num_extend(BcNum *n, size_t places)
1600{
1601 size_t len = n->len + places;
1602
1603 if (places != 0) {
1604
1605 if (n->cap < len) bc_num_expand(n, len);
1606
1607 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1608 memset(n->num, 0, sizeof(BcDig) * places);
1609
1610 n->len += places;
1611 n->rdx += places;
1612 }
1613}
1614
1615static void bc_num_clean(BcNum *n)
1616{
1617 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1618 if (n->len == 0)
1619 n->neg = false;
1620 else if (n->len < n->rdx)
1621 n->len = n->rdx;
1622}
1623
1624static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1625{
1626 if (n->rdx < scale)
1627 bc_num_extend(n, scale - n->rdx);
1628 else
1629 bc_num_truncate(n, n->rdx - scale);
1630
1631 bc_num_clean(n);
1632 if (n->len != 0) n->neg = !neg1 != !neg2;
1633}
1634
1635static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1636 BcNum *restrict b)
1637{
1638 if (idx < n->len) {
1639
1640 b->len = n->len - idx;
1641 a->len = idx;
1642 a->rdx = b->rdx = 0;
1643
1644 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1645 memcpy(a->num, n->num, idx * sizeof(BcDig));
1646 }
1647 else {
1648 bc_num_zero(b);
1649 bc_num_copy(a, n);
1650 }
1651
1652 bc_num_clean(a);
1653 bc_num_clean(b);
1654}
1655
Denys Vlasenko29301232018-12-11 15:29:32 +01001656static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001657{
Denys Vlasenko29301232018-12-11 15:29:32 +01001658 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001659
1660 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1661 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1662 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001663 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001664 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001665
1666 if (n->rdx >= places)
1667 n->rdx -= places;
1668 else {
1669 bc_num_extend(n, places - n->rdx);
1670 n->rdx = 0;
1671 }
1672
1673 bc_num_clean(n);
1674
Denys Vlasenko29301232018-12-11 15:29:32 +01001675 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001676}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001677#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001678
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001679static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001680{
1681 BcNum one;
1682 BcDig num[2];
1683
1684 one.cap = 2;
1685 one.num = num;
1686 bc_num_one(&one);
1687
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001688 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001689}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001690#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001691
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001692static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001693{
1694 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1695 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
1696 int carry, in;
1697
1698 // Because this function doesn't need to use scale (per the bc spec),
1699 // I am hijacking it to say whether it's doing an add or a subtract.
1700
1701 if (a->len == 0) {
1702 bc_num_copy(c, b);
1703 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001704 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001705 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001706 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001707 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001708 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001709 }
1710
1711 c->neg = a->neg;
1712 c->rdx = BC_MAX(a->rdx, b->rdx);
1713 min_rdx = BC_MIN(a->rdx, b->rdx);
1714 c->len = 0;
1715
1716 if (a->rdx > b->rdx) {
1717 diff = a->rdx - b->rdx;
1718 ptr = a->num;
1719 ptr_a = a->num + diff;
1720 ptr_b = b->num;
1721 }
1722 else {
1723 diff = b->rdx - a->rdx;
1724 ptr = b->num;
1725 ptr_a = a->num;
1726 ptr_b = b->num + diff;
1727 }
1728
1729 for (ptr_c = c->num, i = 0; i < diff; ++i, ++c->len) ptr_c[i] = ptr[i];
1730
1731 ptr_c += diff;
1732 a_int = BC_NUM_INT(a);
1733 b_int = BC_NUM_INT(b);
1734
1735 if (a_int > b_int) {
1736 min_int = b_int;
1737 max = a_int;
1738 ptr = ptr_a;
1739 }
1740 else {
1741 min_int = a_int;
1742 max = b_int;
1743 ptr = ptr_b;
1744 }
1745
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001746 for (carry = 0, i = 0; i < min_rdx + min_int; ++i, ++c->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001747 in = ((int) ptr_a[i]) + ((int) ptr_b[i]) + carry;
1748 carry = in / 10;
1749 ptr_c[i] = (BcDig)(in % 10);
1750 }
1751
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001752 for (; i < max + min_rdx; ++i, ++c->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001753 in = ((int) ptr[i]) + carry;
1754 carry = in / 10;
1755 ptr_c[i] = (BcDig)(in % 10);
1756 }
1757
1758 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1759
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001760 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001761}
1762
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001763static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001764{
Gavin Howard01055ba2018-11-03 11:00:21 -06001765 ssize_t cmp;
1766 BcNum *minuend, *subtrahend;
1767 size_t start;
1768 bool aneg, bneg, neg;
1769
1770 // Because this function doesn't need to use scale (per the bc spec),
1771 // I am hijacking it to say whether it's doing an add or a subtract.
1772
1773 if (a->len == 0) {
1774 bc_num_copy(c, b);
1775 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001776 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001777 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001778 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001779 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001780 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001781 }
1782
1783 aneg = a->neg;
1784 bneg = b->neg;
1785 a->neg = b->neg = false;
1786
1787 cmp = bc_num_cmp(a, b);
1788
1789 a->neg = aneg;
1790 b->neg = bneg;
1791
1792 if (cmp == 0) {
1793 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001794 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001795 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001796 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001797 neg = a->neg;
1798 minuend = a;
1799 subtrahend = b;
1800 }
1801 else {
1802 neg = b->neg;
1803 if (sub) neg = !neg;
1804 minuend = b;
1805 subtrahend = a;
1806 }
1807
1808 bc_num_copy(c, minuend);
1809 c->neg = neg;
1810
1811 if (c->rdx < subtrahend->rdx) {
1812 bc_num_extend(c, subtrahend->rdx - c->rdx);
1813 start = 0;
1814 }
1815 else
1816 start = c->rdx - subtrahend->rdx;
1817
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001818 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001819
1820 bc_num_clean(c);
1821
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001822 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001823}
1824
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001825static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001826 BcNum *restrict c)
Denys Vlasenkoec603182018-12-17 10:34:02 +01001827#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001828{
1829 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001830 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001831 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001832 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001833
Gavin Howard01055ba2018-11-03 11:00:21 -06001834 if (a->len == 0 || b->len == 0) {
1835 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001836 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001837 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001838 aone = BC_NUM_ONE(a);
1839 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001840 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001841 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001842 }
1843
1844 if (a->len + b->len < BC_NUM_KARATSUBA_LEN ||
1845 a->len < BC_NUM_KARATSUBA_LEN || b->len < BC_NUM_KARATSUBA_LEN)
1846 {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001847 size_t i, j, len;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001848 unsigned carry;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001849
Gavin Howard01055ba2018-11-03 11:00:21 -06001850 bc_num_expand(c, a->len + b->len + 1);
1851
1852 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001853 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001854
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001855 for (i = 0; i < b->len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001856
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001857 carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001858 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001859 unsigned in = c->num[i + j];
1860 in += ((unsigned) a->num[j]) * ((unsigned) b->num[i]) + carry;
1861 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001862 carry = in / 10;
1863 c->num[i + j] = (BcDig)(in % 10);
1864 }
1865
1866 c->num[i + j] += (BcDig) carry;
1867 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001868
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001869#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001870 // a=2^1000000
1871 // a*a <- without check below, this will not be interruptible
1872 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001873#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001874 }
1875
1876 c->len = len;
1877
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001878 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001879 }
1880
1881 bc_num_init(&l1, max);
1882 bc_num_init(&h1, max);
1883 bc_num_init(&l2, max);
1884 bc_num_init(&h2, max);
1885 bc_num_init(&m1, max);
1886 bc_num_init(&m2, max);
1887 bc_num_init(&z0, max);
1888 bc_num_init(&z1, max);
1889 bc_num_init(&z2, max);
1890 bc_num_init(&temp, max + max);
1891
1892 bc_num_split(a, max2, &l1, &h1);
1893 bc_num_split(b, max2, &l2, &h2);
1894
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001895 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001896 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001897 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001898 if (s) goto err;
1899
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001900 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001901 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001902 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001903 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001904 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001905 if (s) goto err;
1906
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001907 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001908 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001909 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001910 if (s) goto err;
1911
Denys Vlasenko29301232018-12-11 15:29:32 +01001912 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001913 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001914 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001915 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001916 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001917 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001918 s = zbc_num_add(&temp, &z2, c, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001919
1920err:
1921 bc_num_free(&temp);
1922 bc_num_free(&z2);
1923 bc_num_free(&z1);
1924 bc_num_free(&z0);
1925 bc_num_free(&m2);
1926 bc_num_free(&m1);
1927 bc_num_free(&h2);
1928 bc_num_free(&l2);
1929 bc_num_free(&h1);
1930 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001931 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001932}
1933
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001934static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001935{
1936 BcStatus s;
1937 BcNum cpa, cpb;
1938 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1939
1940 scale = BC_MAX(scale, a->rdx);
1941 scale = BC_MAX(scale, b->rdx);
1942 scale = BC_MIN(a->rdx + b->rdx, scale);
1943 maxrdx = BC_MAX(maxrdx, scale);
1944
1945 bc_num_init(&cpa, a->len);
1946 bc_num_init(&cpb, b->len);
1947
1948 bc_num_copy(&cpa, a);
1949 bc_num_copy(&cpb, b);
1950 cpa.neg = cpb.neg = false;
1951
Denys Vlasenko29301232018-12-11 15:29:32 +01001952 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001953 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001954 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001955 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001956 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001957 if (s) goto err;
1958
1959 maxrdx += scale;
1960 bc_num_expand(c, c->len + maxrdx);
1961
1962 if (c->len < maxrdx) {
1963 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1964 c->len += maxrdx;
1965 }
1966
1967 c->rdx = maxrdx;
1968 bc_num_retireMul(c, scale, a->neg, b->neg);
1969
1970err:
1971 bc_num_free(&cpb);
1972 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001973 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001974}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001975#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001976
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001977static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001978{
1979 BcStatus s = BC_STATUS_SUCCESS;
1980 BcDig *n, *p, q;
1981 size_t len, end, i;
1982 BcNum cp;
1983 bool zero = true;
1984
1985 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001986 RETURN_STATUS(bc_error("divide by zero"));
1987 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001988 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001989 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001990 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001991 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001992 bc_num_copy(c, a);
1993 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001994 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001995 }
1996
1997 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
1998 bc_num_copy(&cp, a);
1999 len = b->len;
2000
2001 if (len > cp.len) {
2002 bc_num_expand(&cp, len + 2);
2003 bc_num_extend(&cp, len - cp.len);
2004 }
2005
2006 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
2007 cp.rdx -= b->rdx;
2008 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
2009
2010 if (b->rdx == b->len) {
2011 for (i = 0; zero && i < len; ++i) zero = !b->num[len - i - 1];
2012 len -= i - 1;
2013 }
2014
2015 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
2016
2017 // We want an extra zero in front to make things simpler.
2018 cp.num[cp.len++] = 0;
2019 end = cp.len - len;
2020
2021 bc_num_expand(c, cp.len);
2022
2023 bc_num_zero(c);
2024 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
2025 c->rdx = cp.rdx;
2026 c->len = cp.len;
2027 p = b->num;
2028
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002029 for (i = end - 1; !s && i < end; --i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002030 n = cp.num + i;
2031 for (q = 0; (!s && n[len] != 0) || bc_num_compare(n, p, len) >= 0; ++q)
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002032 bc_num_subArrays(n, p, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002033 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002034#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01002035 // a=2^100000
2036 // scale=40000
2037 // 1/a <- without check below, this will not be interruptible
2038 if (G_interrupt) {
2039 s = BC_STATUS_FAILURE;
2040 break;
2041 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002042#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002043 }
2044
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002045 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06002046 bc_num_free(&cp);
2047
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002048 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002049}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002050#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002051
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002052static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06002053 BcNum *restrict d, size_t scale, size_t ts)
2054{
2055 BcStatus s;
2056 BcNum temp;
2057 bool neg;
2058
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002059 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002060 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002061
2062 if (a->len == 0) {
2063 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002064 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002065 }
2066
2067 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002068 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002069 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002070
2071 if (scale != 0) scale = ts;
2072
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002073 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002074 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002075 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002076 if (s) goto err;
2077
2078 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2079
2080 neg = d->neg;
2081 bc_num_retireMul(d, ts, a->neg, b->neg);
2082 d->neg = neg;
2083
2084err:
2085 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002086 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002087}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002088#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002089
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002090static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002091{
2092 BcStatus s;
2093 BcNum c1;
2094 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2095
2096 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002097 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002098 bc_num_free(&c1);
2099
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002100 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002101}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002102#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002103
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002104static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002105{
2106 BcStatus s = BC_STATUS_SUCCESS;
2107 BcNum copy;
2108 unsigned long pow;
2109 size_t i, powrdx, resrdx;
2110 bool neg, zero;
2111
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002112 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002113
2114 if (b->len == 0) {
2115 bc_num_one(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002116 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002117 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002118 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002119 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002120 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002121 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002122 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002123 if (!b->neg)
2124 bc_num_copy(c, a);
2125 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002126 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002127 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002128 }
2129
2130 neg = b->neg;
2131 b->neg = false;
2132
Denys Vlasenko29301232018-12-11 15:29:32 +01002133 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002134 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002135
2136 bc_num_init(&copy, a->len);
2137 bc_num_copy(&copy, a);
2138
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002139 if (!neg) {
2140 if (a->rdx > scale)
2141 scale = a->rdx;
2142 if (a->rdx * pow < scale)
2143 scale = a->rdx * pow;
2144 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002145
2146 b->neg = neg;
2147
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002148 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002149 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002150 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002151 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002152 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002153 //if (G_interrupt) {
2154 // s = BC_STATUS_FAILURE;
2155 // goto err;
2156 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002157 }
2158
Gavin Howard01055ba2018-11-03 11:00:21 -06002159 bc_num_copy(c, &copy);
2160
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002161 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002162
2163 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002164 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002165 if (s) goto err;
2166
2167 if (pow & 1) {
2168 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002169 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002170 if (s) goto err;
2171 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002172 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002173 //if (G_interrupt) {
2174 // s = BC_STATUS_FAILURE;
2175 // goto err;
2176 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002177 }
2178
2179 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002180 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002181 if (s) goto err;
2182 }
2183
Gavin Howard01055ba2018-11-03 11:00:21 -06002184 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2185
2186 // We can't use bc_num_clean() here.
2187 for (zero = true, i = 0; zero && i < c->len; ++i) zero = !c->num[i];
2188 if (zero) bc_num_setToZero(c, scale);
2189
2190err:
2191 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002192 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002193}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002194#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002195
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002196static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002197 BcNumBinaryOp op, size_t req)
2198{
2199 BcStatus s;
2200 BcNum num2, *ptr_a, *ptr_b;
2201 bool init = false;
2202
2203 if (c == a) {
2204 ptr_a = &num2;
2205 memcpy(ptr_a, c, sizeof(BcNum));
2206 init = true;
2207 }
2208 else
2209 ptr_a = a;
2210
2211 if (c == b) {
2212 ptr_b = &num2;
2213 if (c != a) {
2214 memcpy(ptr_b, c, sizeof(BcNum));
2215 init = true;
2216 }
2217 }
2218 else
2219 ptr_b = b;
2220
2221 if (init)
2222 bc_num_init(c, req);
2223 else
2224 bc_num_expand(c, req);
2225
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002226 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01002227 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002228
2229 if (init) bc_num_free(&num2);
2230
Denys Vlasenko29301232018-12-11 15:29:32 +01002231 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002232}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002233#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002234
Denys Vlasenko9311e012018-12-10 11:54:18 +01002235static bool bc_num_strValid(const char *val, size_t base)
2236{
2237 BcDig b;
2238 bool radix;
2239
2240 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2241 radix = false;
2242 for (;;) {
2243 BcDig c = *val++;
2244 if (c == '\0')
2245 break;
2246 if (c == '.') {
2247 if (radix) return false;
2248 radix = true;
2249 continue;
2250 }
2251 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2252 return false;
2253 }
2254 return true;
2255}
2256
2257// Note: n is already "bc_num_zero()"ed,
2258// leading zeroes in "val" are removed
2259static void bc_num_parseDecimal(BcNum *n, const char *val)
2260{
2261 size_t len, i;
2262 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002263
2264 len = strlen(val);
2265 if (len == 0)
2266 return;
2267
Denys Vlasenko9311e012018-12-10 11:54:18 +01002268 bc_num_expand(n, len);
2269
2270 ptr = strchr(val, '.');
2271
2272 n->rdx = 0;
2273 if (ptr != NULL)
2274 n->rdx = (size_t)((val + len) - (ptr + 1));
2275
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002276 for (i = 0; val[i]; ++i) {
2277 if (val[i] != '0' && val[i] != '.') {
2278 // Not entirely zero value - convert it, and exit
2279 i = len - 1;
2280 for (;;) {
2281 n->num[n->len] = val[i] - '0';
2282 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002283 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002284 if (i == 0) break;
2285 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002286 }
2287 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002288 }
2289 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002290 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002291}
2292
2293// Note: n is already "bc_num_zero()"ed,
2294// leading zeroes in "val" are removed
2295static void bc_num_parseBase(BcNum *n, const char *val, BcNum *base)
2296{
2297 BcStatus s;
2298 BcNum temp, mult, result;
2299 BcDig c = '\0';
2300 unsigned long v;
2301 size_t i, digits;
2302
2303 for (i = 0; ; ++i) {
2304 if (val[i] == '\0')
2305 return;
2306 if (val[i] != '.' && val[i] != '0')
2307 break;
2308 }
2309
2310 bc_num_init_DEF_SIZE(&temp);
2311 bc_num_init_DEF_SIZE(&mult);
2312
2313 for (;;) {
2314 c = *val++;
2315 if (c == '\0') goto int_err;
2316 if (c == '.') break;
2317
2318 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2319
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002320 s = zbc_num_mul(n, base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002321 if (s) goto int_err;
2322 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002323 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002324 if (s) goto int_err;
2325 }
2326
2327 bc_num_init(&result, base->len);
2328 //bc_num_zero(&result); - already is
2329 bc_num_one(&mult);
2330
2331 digits = 0;
2332 for (;;) {
2333 c = *val++;
2334 if (c == '\0') break;
2335 digits++;
2336
2337 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2338
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002339 s = zbc_num_mul(&result, base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002340 if (s) goto err;
2341 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002342 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002343 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002344 s = zbc_num_mul(&mult, base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002345 if (s) goto err;
2346 }
2347
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002348 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002349 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002350 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002351 if (s) goto err;
2352
2353 if (n->len != 0) {
2354 if (n->rdx < digits) bc_num_extend(n, digits - n->rdx);
2355 } else
2356 bc_num_zero(n);
2357
2358err:
2359 bc_num_free(&result);
2360int_err:
2361 bc_num_free(&mult);
2362 bc_num_free(&temp);
2363}
2364
Denys Vlasenko29301232018-12-11 15:29:32 +01002365static BC_STATUS zbc_num_parse(BcNum *n, const char *val, BcNum *base,
Gavin Howard01055ba2018-11-03 11:00:21 -06002366 size_t base_t)
2367{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002368 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002369 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002370
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002371 bc_num_zero(n);
2372 while (*val == '0') val++;
2373
Gavin Howard01055ba2018-11-03 11:00:21 -06002374 if (base_t == 10)
2375 bc_num_parseDecimal(n, val);
2376 else
2377 bc_num_parseBase(n, val, base);
2378
Denys Vlasenko29301232018-12-11 15:29:32 +01002379 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002380}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002381#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002382
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002383static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002384{
2385 BcStatus s;
2386 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2387 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2388 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2389
2390 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2391 bc_num_expand(b, req);
2392
2393 if (a->len == 0) {
2394 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002395 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002396 }
2397 else if (a->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002398 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002399 else if (BC_NUM_ONE(a)) {
2400 bc_num_one(b);
2401 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002402 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002403 }
2404
2405 scale = BC_MAX(scale, a->rdx) + 1;
2406 len = a->len + scale;
2407
2408 bc_num_init(&num1, len);
2409 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002410 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002411
2412 bc_num_one(&half);
2413 half.num[0] = 5;
2414 half.rdx = 1;
2415
2416 bc_num_init(&f, len);
2417 bc_num_init(&fprime, len);
2418
2419 x0 = &num1;
2420 x1 = &num2;
2421
2422 bc_num_one(x0);
2423 pow = BC_NUM_INT(a);
2424
2425 if (pow) {
2426
2427 if (pow & 1)
2428 x0->num[0] = 2;
2429 else
2430 x0->num[0] = 6;
2431
2432 pow -= 2 - (pow & 1);
2433
2434 bc_num_extend(x0, pow);
2435
2436 // Make sure to move the radix back.
2437 x0->rdx -= pow;
2438 }
2439
2440 x0->rdx = digs = digs1 = 0;
2441 resrdx = scale + 2;
2442 len = BC_NUM_INT(x0) + resrdx - 1;
2443
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002444 while (cmp != 0 || digs < len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002445
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002446 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002447 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002448 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002449 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002450 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002451 if (s) goto err;
2452
2453 cmp = bc_num_cmp(x1, x0);
2454 digs = x1->len - (unsigned long long) llabs(cmp);
2455
2456 if (cmp == cmp2 && digs == digs1)
2457 times += 1;
2458 else
2459 times = 0;
2460
2461 resrdx += times > 4;
2462
2463 cmp2 = cmp1;
2464 cmp1 = cmp;
2465 digs1 = digs;
2466
2467 temp = x0;
2468 x0 = x1;
2469 x1 = temp;
2470 }
2471
Gavin Howard01055ba2018-11-03 11:00:21 -06002472 bc_num_copy(b, x0);
2473 scale -= 1;
2474 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
2475
2476err:
2477 bc_num_free(&fprime);
2478 bc_num_free(&f);
2479 bc_num_free(&half);
2480 bc_num_free(&num2);
2481 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002482 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002483}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002484#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002485
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002486static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002487 size_t scale)
2488{
2489 BcStatus s;
2490 BcNum num2, *ptr_a;
2491 bool init = false;
2492 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2493
2494 if (c == a) {
2495 memcpy(&num2, c, sizeof(BcNum));
2496 ptr_a = &num2;
2497 bc_num_init(c, len);
2498 init = true;
2499 }
2500 else {
2501 ptr_a = a;
2502 bc_num_expand(c, len);
2503 }
2504
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002505 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002506
2507 if (init) bc_num_free(&num2);
2508
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002509 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002510}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002511#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002512
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002513#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002514static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002515{
2516 BcStatus s;
2517 BcNum base, exp, two, temp;
2518
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002519 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002520 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002521 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002522 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002523 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002524 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002525
2526 bc_num_expand(d, c->len);
2527 bc_num_init(&base, c->len);
2528 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002529 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002530 bc_num_init(&temp, b->len);
2531
2532 bc_num_one(&two);
2533 two.num[0] = 2;
2534 bc_num_one(d);
2535
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002536 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002537 if (s) goto err;
2538 bc_num_copy(&exp, b);
2539
2540 while (exp.len != 0) {
2541
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002542 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002543 if (s) goto err;
2544
2545 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002546 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002547 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002548 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002549 if (s) goto err;
2550 }
2551
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002552 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002553 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002554 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002555 if (s) goto err;
2556 }
2557
2558err:
2559 bc_num_free(&temp);
2560 bc_num_free(&two);
2561 bc_num_free(&exp);
2562 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002563 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002564}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002565#define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002566#endif // ENABLE_DC
2567
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002568#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002569static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002570{
2571 BcId a;
2572 size_t i;
2573
2574 for (i = 0; i < f->autos.len; ++i) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002575 if (strcmp(name, ((BcId *) bc_vec_item(&f->autos, i))->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002576 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002577 }
2578
2579 a.idx = var;
2580 a.name = name;
2581
2582 bc_vec_push(&f->autos, &a);
2583
Denys Vlasenko29301232018-12-11 15:29:32 +01002584 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002585}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002586#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002587#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002588
2589static void bc_func_init(BcFunc *f)
2590{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002591 bc_char_vec_init(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06002592 bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);
2593 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2594 f->nparams = 0;
2595}
2596
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002597static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002598{
2599 BcFunc *f = (BcFunc *) func;
2600 bc_vec_free(&f->code);
2601 bc_vec_free(&f->autos);
2602 bc_vec_free(&f->labels);
2603}
2604
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002605static void bc_array_expand(BcVec *a, size_t len);
2606
Gavin Howard01055ba2018-11-03 11:00:21 -06002607static void bc_array_init(BcVec *a, bool nums)
2608{
2609 if (nums)
2610 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2611 else
2612 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2613 bc_array_expand(a, 1);
2614}
2615
Gavin Howard01055ba2018-11-03 11:00:21 -06002616static void bc_array_expand(BcVec *a, size_t len)
2617{
2618 BcResultData data;
2619
2620 if (a->size == sizeof(BcNum) && a->dtor == bc_num_free) {
2621 while (len > a->len) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002622 bc_num_init_DEF_SIZE(&data.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002623 bc_vec_push(a, &data.n);
2624 }
2625 }
2626 else {
2627 while (len > a->len) {
2628 bc_array_init(&data.v, true);
2629 bc_vec_push(a, &data.v);
2630 }
2631 }
2632}
2633
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002634static void bc_array_copy(BcVec *d, const BcVec *s)
2635{
2636 size_t i;
2637
2638 bc_vec_pop_all(d);
2639 bc_vec_expand(d, s->cap);
2640 d->len = s->len;
2641
2642 for (i = 0; i < s->len; ++i) {
2643 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i);
2644 bc_num_init(dnum, snum->len);
2645 bc_num_copy(dnum, snum);
2646 }
2647}
2648
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002649static FAST_FUNC void bc_string_free(void *string)
Gavin Howard01055ba2018-11-03 11:00:21 -06002650{
2651 free(*((char **) string));
2652}
2653
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002654#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06002655static void bc_result_copy(BcResult *d, BcResult *src)
2656{
2657 d->t = src->t;
2658
2659 switch (d->t) {
2660
2661 case BC_RESULT_TEMP:
2662 case BC_RESULT_IBASE:
2663 case BC_RESULT_SCALE:
2664 case BC_RESULT_OBASE:
2665 {
2666 bc_num_init(&d->d.n, src->d.n.len);
2667 bc_num_copy(&d->d.n, &src->d.n);
2668 break;
2669 }
2670
2671 case BC_RESULT_VAR:
2672 case BC_RESULT_ARRAY:
2673 case BC_RESULT_ARRAY_ELEM:
2674 {
2675 d->d.id.name = xstrdup(src->d.id.name);
2676 break;
2677 }
2678
2679 case BC_RESULT_CONSTANT:
2680 case BC_RESULT_LAST:
2681 case BC_RESULT_ONE:
2682 case BC_RESULT_STR:
2683 {
2684 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2685 break;
2686 }
2687 }
2688}
2689#endif // ENABLE_DC
2690
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002691static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002692{
2693 BcResult *r = (BcResult *) result;
2694
2695 switch (r->t) {
2696
2697 case BC_RESULT_TEMP:
2698 case BC_RESULT_IBASE:
2699 case BC_RESULT_SCALE:
2700 case BC_RESULT_OBASE:
2701 {
2702 bc_num_free(&r->d.n);
2703 break;
2704 }
2705
2706 case BC_RESULT_VAR:
2707 case BC_RESULT_ARRAY:
2708 case BC_RESULT_ARRAY_ELEM:
2709 {
2710 free(r->d.id.name);
2711 break;
2712 }
2713
2714 default:
2715 {
2716 // Do nothing.
2717 break;
2718 }
2719 }
2720}
2721
2722static void bc_lex_lineComment(BcLex *l)
2723{
2724 l->t.t = BC_LEX_WHITESPACE;
2725 while (l->i < l->len && l->buf[l->i++] != '\n');
2726 --l->i;
2727}
2728
2729static void bc_lex_whitespace(BcLex *l)
2730{
Gavin Howard01055ba2018-11-03 11:00:21 -06002731 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002732 for (;;) {
2733 char c = l->buf[l->i];
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002734 if (c == '\n') // this is BC_LEX_NLINE, not BC_LEX_WHITESPACE
2735 break;
2736 if (!isspace(c))
Denys Vlasenko89198a92018-12-13 21:31:29 +01002737 break;
2738 l->i++;
2739 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002740}
2741
Denys Vlasenko29301232018-12-11 15:29:32 +01002742static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002743{
2744 const char *buf = l->buf + l->i;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002745 size_t len, bslashes, i, ccnt;
2746 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002747
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002748 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002749 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002750 bslashes = 0;
2751 ccnt = i = 0;
2752 for (;;) {
2753 char c = buf[i];
2754 if (c == '\0')
2755 break;
2756 if (c == '\\' && buf[i + 1] == '\n') {
2757 i += 2;
2758 bslashes++;
2759 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002760 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002761 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2762 if (c != '.') break;
2763 // if '.' was already seen, stop on second one:
2764 if (pt) break;
2765 pt = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002766 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002767 // buf[i] is one of "0-9A-F."
2768 i++;
2769 if (c != '.')
2770 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002771 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002772 //i is buf[i] index of the first not-yet-parsed char
2773 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002774
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002775 //ccnt is the number of chars in the number string, excluding possible
2776 //trailing "." and possible following trailing "\<newline>"(s).
2777 len = ccnt - bslashes * 2 + 1; // +1 byte for NUL termination
2778
Denys Vlasenko64074a12018-12-07 15:50:14 +01002779 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2780 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2781 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002782 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002783 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002784
Denys Vlasenko7d628012018-12-04 21:46:47 +01002785 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002786 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002787 bc_vec_push(&l->t.v, &start);
2788
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002789 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002790 // If we have hit a backslash, skip it. We don't have
2791 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002792 if (*buf == '\\') {
2793 buf += 2;
2794 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002795 continue;
2796 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002797 bc_vec_push(&l->t.v, buf);
2798 buf++;
2799 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002800 }
2801
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002802 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002803
Denys Vlasenko29301232018-12-11 15:29:32 +01002804 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002805}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002806#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002807
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002808static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002809{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002810 size_t i;
2811 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002812
2813 l->t.t = BC_LEX_NAME;
2814
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002815 i = 0;
2816 buf = l->buf + l->i - 1;
2817 for (;;) {
2818 char c = buf[i];
2819 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2820 i++;
2821 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002822
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002823#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002824 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2825 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2826 if (i > BC_MAX_STRING)
2827 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2828 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002829#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002830 bc_vec_string(&l->t.v, i, buf);
2831
2832 // Increment the index. We minus 1 because it has already been incremented.
2833 l->i += i - 1;
2834
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002835 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002836}
2837
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002838static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002839{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002840 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002841}
2842
2843static void bc_lex_free(BcLex *l)
2844{
2845 bc_vec_free(&l->t.v);
2846}
2847
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002848static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002849{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002850 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002851 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002852}
2853
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002854IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2855IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002856
2857static BC_STATUS zcommon_lex_token(BcLex *l)
2858{
2859 if (IS_BC) {
2860 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2861 }
2862 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2863}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002864#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002865
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002866static bool bc_lex_more_input(BcLex *l)
2867{
2868 size_t str;
2869 bool comment;
2870
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002871 bc_vec_pop_all(&G.input_buffer);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002872
2873 // This loop is complex because the vm tries not to send any lines that end
2874 // with a backslash to the parser. The reason for that is because the parser
2875 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2876 // case, and for strings and comments, the parser will expect more stuff.
2877 comment = false;
2878 str = 0;
2879 for (;;) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002880 size_t prevlen = G.input_buffer.len;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002881 char *string;
2882
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002883 bc_read_line(&G.input_buffer, G.input_fp);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002884 // No more input means EOF
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002885 if (G.input_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002886 break;
2887
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002888 string = G.input_buffer.v + prevlen;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002889 while (*string) {
2890 char c = *string;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002891 if (string == G.input_buffer.v || string[-1] != '\\') {
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002892 if (IS_BC)
2893 str ^= (c == '"');
2894 else {
2895 if (c == ']')
2896 str -= 1;
2897 else if (c == '[')
2898 str += 1;
2899 }
2900 }
2901 string++;
2902 if (c == '/' && *string == '*') {
2903 comment = true;
2904 string++;
2905 continue;
2906 }
2907 if (c == '*' && *string == '/') {
2908 comment = false;
2909 string++;
2910 }
2911 }
2912 if (str != 0 || comment) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002913 G.input_buffer.len--; // backstep over the trailing NUL byte
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002914 continue;
2915 }
2916
2917 // Check for backslash+newline.
2918 // we do not check that last char is '\n' -
2919 // if it is not, then it's EOF, and looping back
2920 // to bc_read_line() will detect it:
2921 string -= 2;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002922 if (string >= G.input_buffer.v && *string == '\\') {
2923 G.input_buffer.len--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002924 continue;
2925 }
2926
2927 break;
2928 }
2929
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002930 l->buf = G.input_buffer.v;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002931 l->i = 0;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002932// bb_error_msg("G.input_buffer.len:%d '%s'", G.input_buffer.len, G.input_buffer.v);
2933 l->len = G.input_buffer.len - 1; // do not include NUL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002934
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002935 return l->len != 0;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002936}
2937
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002938static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002939{
2940 BcStatus s;
2941
2942 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002943 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002944
2945 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002946 G.err_line = l->line;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002947 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002948
2949 // Loop until failure or we don't have whitespace. This
2950 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002951 // Comments are also BC_LEX_WHITESPACE tokens and eaten here.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002952 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002953 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002954 l->t.t = BC_LEX_EOF;
2955 if (l->i == l->len) {
2956 if (!G.input_fp)
2957 RETURN_STATUS(BC_STATUS_SUCCESS);
2958 if (!bc_lex_more_input(l)) {
2959 G.input_fp = NULL;
2960 RETURN_STATUS(BC_STATUS_SUCCESS);
2961 }
2962 // here it's guaranteed that l->i is below l->len
2963 }
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002964 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01002965 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2966 l->buf + l->i);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002967 s = zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002968 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01002969 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002970
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002971 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002972}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002973#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002974
Denys Vlasenko202dd192018-12-16 17:30:35 +01002975static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
2976{
2977 if (l->t.t == BC_LEX_NLINE)
2978 RETURN_STATUS(zbc_lex_next(l));
2979 RETURN_STATUS(BC_STATUS_SUCCESS);
2980}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002981#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002982
2983static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
2984{
2985 BcStatus s;
2986 s = zbc_lex_next(l);
2987 if (s) RETURN_STATUS(s);
2988 // if(cond)<newline>stmt is accepted too (but not 2+ newlines)
2989 s = zbc_lex_skip_if_at_NLINE(l);
2990 RETURN_STATUS(s);
2991}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002992#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002993
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002994static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06002995{
2996 l->buf = text;
2997 l->i = 0;
2998 l->len = strlen(text);
2999 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003000 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003001}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003002#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003003
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003004#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003005static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003006{
3007 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003008 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06003009 const char *buf = l->buf + l->i - 1;
3010
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003011 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
3012 const char *keyword8 = bc_lex_kws[i].name8;
3013 unsigned j = 0;
3014 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
3015 j++;
3016 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06003017 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003018 if (keyword8[j] != '\0')
3019 continue;
3020 match:
3021 // buf starts with keyword bc_lex_kws[i]
3022 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01003023 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01003024 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003025 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003026 }
3027
3028 // We minus 1 because the index has already been incremented.
3029 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003030 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003031 }
3032
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003033 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003034
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01003035 if (l->t.v.len > 2) {
3036 // Prevent this:
3037 // >>> qwe=1
3038 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
3039 // '
3040 unsigned len = strchrnul(buf, '\n') - buf;
3041 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
3042 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003043
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003044 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003045}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003046#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003047
Denys Vlasenko26819db2018-12-12 16:08:46 +01003048static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003049{
3050 size_t len, nls = 0, i = l->i;
3051 char c;
3052
3053 l->t.t = BC_LEX_STR;
3054
Denys Vlasenko26819db2018-12-12 16:08:46 +01003055 for (c = l->buf[i]; c != 0 && c != '"'; c = l->buf[++i])
3056 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003057
3058 if (c == '\0') {
3059 l->i = i;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003060 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003061 }
3062
3063 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01003064 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3065 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3066 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01003067 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003068 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003069 bc_vec_string(&l->t.v, len, l->buf + l->i);
3070
3071 l->i = i + 1;
3072 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003073 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003074
Denys Vlasenko26819db2018-12-12 16:08:46 +01003075 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003076}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003077#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003078
Denys Vlasenko0a238142018-12-14 16:48:34 +01003079static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003080{
3081 if (l->buf[l->i] == '=') {
3082 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003083 with_and_without >>= 8; // store "with" value
3084 } // else store "without" value
3085 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003086}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003087#define bc_lex_assign(l, with, without) \
3088 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003089
Denys Vlasenko29301232018-12-11 15:29:32 +01003090static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003091{
3092 size_t i, nls = 0;
3093 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003094
3095 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003096 i = l->i; /* here buf[l->i] is the '*' of opening comment delimiter */
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003097 for (;;) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003098 char c = buf[++i];
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003099 check_star:
3100 if (c == '*') {
3101 c = buf[++i];
3102 if (c == '/')
3103 break;
3104 goto check_star;
3105 }
3106 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003107 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003108 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003109 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003110 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003111 }
3112
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003113 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003114 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003115 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003116
Denys Vlasenko29301232018-12-11 15:29:32 +01003117 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003118}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003119#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003120
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003121static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003122{
3123 BcStatus s = BC_STATUS_SUCCESS;
3124 char c = l->buf[l->i++], c2;
3125
3126 // This is the workhorse of the lexer.
3127 switch (c) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003128 case '\0': // probably never reached
3129 l->i--;
3130 l->t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003131 l->newline = true;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003132 break;
3133 case '\n':
3134 l->t.t = BC_LEX_NLINE;
3135 l->newline = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06003136 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003137 case '\t':
3138 case '\v':
3139 case '\f':
3140 case '\r':
3141 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003142 bc_lex_whitespace(l);
3143 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003144 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003145 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003146 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003147 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003148 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003149 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003150 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003151 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003152 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003153 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003154 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003155 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003156 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003157 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003158 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003159 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003160 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3161 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003162 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003163 c2 = l->buf[l->i];
3164 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003165 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003166 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003167 ++l->i;
3168 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003169 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003170 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003171 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003172 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003173 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003174 case '(':
3175 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003176 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
3177 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003178 case '*':
Gavin Howard01055ba2018-11-03 11:00:21 -06003179 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
3180 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003181 case '+':
Gavin Howard01055ba2018-11-03 11:00:21 -06003182 c2 = l->buf[l->i];
3183 if (c2 == '+') {
3184 ++l->i;
3185 l->t.t = BC_LEX_OP_INC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003186 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003187 bc_lex_assign(l, BC_LEX_OP_ASSIGN_PLUS, BC_LEX_OP_PLUS);
3188 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003189 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003190 l->t.t = BC_LEX_COMMA;
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 == '-') {
3195 ++l->i;
3196 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003197 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003198 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3199 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003200 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003201 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003202 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003203 else {
3204 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003205 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003206 }
3207 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003208 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003209 c2 = l->buf[l->i];
3210 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003211 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003212 else
3213 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3214 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003215 case '0':
3216 case '1':
3217 case '2':
3218 case '3':
3219 case '4':
3220 case '5':
3221 case '6':
3222 case '7':
3223 case '8':
3224 case '9':
3225 case 'A':
3226 case 'B':
3227 case 'C':
3228 case 'D':
3229 case 'E':
3230 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003231 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003232 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003233 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003234 l->t.t = BC_LEX_SCOLON;
3235 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003236 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003237 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3238 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003239 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003240 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3241 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003242 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003243 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3244 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003245 case '[':
3246 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003247 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3248 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003249 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003250 if (l->buf[l->i] == '\n') {
3251 l->t.t = BC_LEX_WHITESPACE;
3252 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003253 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003254 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003255 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003256 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003257 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3258 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003259 case 'a':
3260 case 'b':
3261 case 'c':
3262 case 'd':
3263 case 'e':
3264 case 'f':
3265 case 'g':
3266 case 'h':
3267 case 'i':
3268 case 'j':
3269 case 'k':
3270 case 'l':
3271 case 'm':
3272 case 'n':
3273 case 'o':
3274 case 'p':
3275 case 'q':
3276 case 'r':
3277 case 's':
3278 case 't':
3279 case 'u':
3280 case 'v':
3281 case 'w':
3282 case 'x':
3283 case 'y':
3284 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003285 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003286 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003287 case '{':
3288 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003289 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3290 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003291 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003292 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003293 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003294 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003295 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003296 ++l->i;
3297 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003298 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003299 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003300 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003301 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003302 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003303 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003304 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003305 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003306 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003307 }
3308
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003309 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003310}
3311#endif // ENABLE_BC
3312
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003313#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003314static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003315{
Gavin Howard01055ba2018-11-03 11:00:21 -06003316 if (isspace(l->buf[l->i - 1])) {
3317 bc_lex_whitespace(l);
3318 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003319 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003320 RETURN_STATUS(bc_error("extended register"));
3321 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003322 }
3323 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003324 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003325 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003326 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003327 l->t.t = BC_LEX_NAME;
3328 }
3329
Denys Vlasenko29301232018-12-11 15:29:32 +01003330 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003331}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003332#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003333
Denys Vlasenko29301232018-12-11 15:29:32 +01003334static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003335{
3336 size_t depth = 1, nls = 0, i = l->i;
3337 char c;
3338
3339 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003340 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003341
3342 for (c = l->buf[i]; c != 0 && depth; c = l->buf[++i]) {
3343
3344 depth += (c == '[' && (i == l->i || l->buf[i - 1] != '\\'));
3345 depth -= (c == ']' && (i == l->i || l->buf[i - 1] != '\\'));
3346 nls += (c == '\n');
3347
3348 if (depth) bc_vec_push(&l->t.v, &c);
3349 }
3350
3351 if (c == '\0') {
3352 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003353 RETURN_STATUS(bc_error("string end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003354 }
3355
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003356 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003357 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3358 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3359 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003360 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003361 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003362
3363 l->i = i;
3364 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003365 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003366
Denys Vlasenko29301232018-12-11 15:29:32 +01003367 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003368}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003369#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003370
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003371static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003372{
3373 BcStatus s = BC_STATUS_SUCCESS;
3374 char c = l->buf[l->i++], c2;
3375 size_t i;
3376
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003377 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3378 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003379 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003380 }
3381
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003382 if (c >= '%' && c <= '~'
3383 && (l->t.t = dc_lex_tokens[(c - '%')]) != BC_LEX_INVALID
3384 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003385 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003386 }
3387
3388 // This is the workhorse of the lexer.
3389 switch (c) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003390 case '\0':
Gavin Howard01055ba2018-11-03 11:00:21 -06003391 l->t.t = BC_LEX_EOF;
3392 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003393 case '\n':
3394 case '\t':
3395 case '\v':
3396 case '\f':
3397 case '\r':
3398 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003399 l->newline = (c == '\n');
3400 bc_lex_whitespace(l);
3401 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003402 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003403 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003404 if (c2 == '=')
3405 l->t.t = BC_LEX_OP_REL_NE;
3406 else if (c2 == '<')
3407 l->t.t = BC_LEX_OP_REL_LE;
3408 else if (c2 == '>')
3409 l->t.t = BC_LEX_OP_REL_GE;
3410 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003411 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003412 ++l->i;
3413 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003414 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003415 bc_lex_lineComment(l);
3416 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003417 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003418 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003419 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003420 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003421 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003422 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003423 case '0':
3424 case '1':
3425 case '2':
3426 case '3':
3427 case '4':
3428 case '5':
3429 case '6':
3430 case '7':
3431 case '8':
3432 case '9':
3433 case 'A':
3434 case 'B':
3435 case 'C':
3436 case 'D':
3437 case 'E':
3438 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003439 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003440 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003441 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003442 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003443 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003444 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003445 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003446 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003447 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003448 }
3449
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003450 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003451}
3452#endif // ENABLE_DC
3453
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003454static void bc_program_addFunc(char *name, size_t *idx);
3455
Gavin Howard01055ba2018-11-03 11:00:21 -06003456static void bc_parse_addFunc(BcParse *p, char *name, size_t *idx)
3457{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003458 bc_program_addFunc(name, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003459 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003460}
3461
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003462static void bc_parse_push(BcParse *p, char i)
3463{
3464 dbg_lex("%s:%d pushing opcode %d", __func__, __LINE__, i);
3465 bc_vec_pushByte(&p->func->code, i);
3466}
Denys Vlasenkob23ac512018-12-06 13:10:56 +01003467
Gavin Howard01055ba2018-11-03 11:00:21 -06003468static void bc_parse_pushName(BcParse *p, char *name)
3469{
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003470 while (*name)
3471 bc_parse_push(p, *name++);
Gavin Howard01055ba2018-11-03 11:00:21 -06003472 bc_parse_push(p, BC_PARSE_STREND);
Gavin Howard01055ba2018-11-03 11:00:21 -06003473}
3474
3475static void bc_parse_pushIndex(BcParse *p, size_t idx)
3476{
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003477 size_t mask;
3478 unsigned amt;
Gavin Howard01055ba2018-11-03 11:00:21 -06003479
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003480 dbg_lex("%s:%d pushing index %d", __func__, __LINE__, idx);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003481 mask = ((size_t)0xff) << (sizeof(idx) * 8 - 8);
3482 amt = sizeof(idx);
3483 do {
3484 if (idx & mask) break;
3485 mask >>= 8;
3486 amt--;
3487 } while (amt != 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003488
3489 bc_parse_push(p, amt);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003490
3491 while (idx != 0) {
3492 bc_parse_push(p, (unsigned char)idx);
3493 idx >>= 8;
3494 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003495}
3496
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003497static void bc_parse_pushJUMP(BcParse *p, size_t idx)
3498{
3499 bc_parse_push(p, BC_INST_JUMP);
3500 bc_parse_pushIndex(p, idx);
3501}
3502
3503static void bc_parse_pushJUMP_ZERO(BcParse *p, size_t idx)
3504{
3505 bc_parse_push(p, BC_INST_JUMP_ZERO);
3506 bc_parse_pushIndex(p, idx);
3507}
3508
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003509static void bc_parse_number(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003510{
3511 char *num = xstrdup(p->l.t.v.v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003512 size_t idx = G.prog.consts.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06003513
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003514 bc_vec_push(&G.prog.consts, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06003515
3516 bc_parse_push(p, BC_INST_NUM);
3517 bc_parse_pushIndex(p, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003518}
3519
Denys Vlasenko99b37622018-12-15 20:06:59 +01003520IF_BC(static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p);)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01003521IF_DC(static BC_STATUS zdc_parse_parse(BcParse *p);)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003522
3523static BC_STATUS zcommon_parse(BcParse *p)
3524{
3525 if (IS_BC) {
Denys Vlasenko99b37622018-12-15 20:06:59 +01003526 IF_BC(RETURN_STATUS(zbc_parse_stmt_or_funcdef(p));)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003527 }
3528 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3529}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003530#define zcommon_parse(...) (zcommon_parse(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003531
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003532static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003533{
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003534 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003535
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003536 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
Gavin Howard01055ba2018-11-03 11:00:21 -06003537}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003538#define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003539
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003540// Called when parsing or execution detects a failure,
3541// resets execution structures.
3542static void bc_program_reset(void)
3543{
3544 BcFunc *f;
3545 BcInstPtr *ip;
3546
3547 bc_vec_npop(&G.prog.stack, G.prog.stack.len - 1);
3548 bc_vec_pop_all(&G.prog.results);
3549
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003550 f = bc_program_func(0);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003551 ip = bc_vec_top(&G.prog.stack);
3552 ip->idx = f->code.len;
3553}
3554
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003555#define bc_parse_updateFunc(p, f) \
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003556 ((p)->func = bc_program_func((p)->fidx = (f)))
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003557
Denys Vlasenko26819db2018-12-12 16:08:46 +01003558// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003559// resets parsing structures.
3560static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003561{
3562 if (p->fidx != BC_PROG_MAIN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003563 p->func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003564 bc_vec_pop_all(&p->func->code);
3565 bc_vec_pop_all(&p->func->autos);
3566 bc_vec_pop_all(&p->func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06003567
3568 bc_parse_updateFunc(p, BC_PROG_MAIN);
3569 }
3570
3571 p->l.i = p->l.len;
3572 p->l.t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003573
Denys Vlasenko7d628012018-12-04 21:46:47 +01003574 bc_vec_pop_all(&p->exits);
3575 bc_vec_pop_all(&p->conds);
3576 bc_vec_pop_all(&p->ops);
Gavin Howard01055ba2018-11-03 11:00:21 -06003577
Denys Vlasenkod38af482018-12-04 19:11:02 +01003578 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003579}
3580
3581static void bc_parse_free(BcParse *p)
3582{
Gavin Howard01055ba2018-11-03 11:00:21 -06003583 bc_vec_free(&p->exits);
3584 bc_vec_free(&p->conds);
3585 bc_vec_free(&p->ops);
3586 bc_lex_free(&p->l);
3587}
3588
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003589static void bc_parse_create(BcParse *p, size_t func)
Gavin Howard01055ba2018-11-03 11:00:21 -06003590{
3591 memset(p, 0, sizeof(BcParse));
3592
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003593 bc_lex_init(&p->l);
Denys Vlasenko266aa002018-12-16 23:24:25 +01003594 bc_vec_init(&p->exits, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003595 bc_vec_init(&p->conds, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003596 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3597
Gavin Howard01055ba2018-11-03 11:00:21 -06003598 bc_parse_updateFunc(p, func);
3599}
3600
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003601#if ENABLE_BC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003602
3603#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3604#define BC_PARSE_LEAF(p, rparen) \
3605 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3606 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3607
3608// We can calculate the conversion between tokens and exprs by subtracting the
3609// position of the first operator in the lex enum and adding the position of the
3610// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003611#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003612
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003613static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003614static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next);
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01003615static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003616#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
3617#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003618
3619static BC_STATUS zbc_parse_stmt(BcParse *p)
3620{
3621 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3622}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003623#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003624
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003625static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003626{
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003627 // "if(cond)<newline>stmt" is accepted too, but not 2+ newlines.
3628 // Same for "else", "while()", "for()".
3629 BcStatus s = zbc_lex_next_and_skip_NLINE(&p->l);
3630 if (s) RETURN_STATUS(s);
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003631 if (p->l.t.t == BC_LEX_NLINE)
3632 RETURN_STATUS(bc_error_fmt("no statement after '%s'", after_X));
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003633
3634 RETURN_STATUS(zbc_parse_stmt(p));
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003635}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003636#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003637
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003638static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3639 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003640{
Denys Vlasenko65437582018-12-05 19:37:19 +01003641 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3642 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003643
3644 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003645 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003646 if (t == BC_LEX_LPAREN) break;
3647
Denys Vlasenko65437582018-12-05 19:37:19 +01003648 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003649 if (l >= r && (l != r || !left)) break;
3650
Denys Vlasenko0154d782018-12-14 23:32:51 +01003651 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003652 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003653 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003654 }
3655
3656 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003657}
3658
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003659static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003660{
3661 BcLexType top;
3662
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003663 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003664 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003665 top = BC_PARSE_TOP_OP(p);
3666
3667 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003668 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003669
3670 bc_vec_pop(&p->ops);
3671 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3672
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003673 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003674 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003675 top = BC_PARSE_TOP_OP(p);
3676 }
3677
3678 bc_vec_pop(&p->ops);
3679
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003680 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003681}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003682#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003683
Denys Vlasenko26819db2018-12-12 16:08:46 +01003684static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003685{
3686 BcStatus s;
3687 bool comma = false;
3688 size_t nparams;
3689
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003690 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003691 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003692 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003693
3694 for (nparams = 0; p->l.t.t != BC_LEX_RPAREN; ++nparams) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003695 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003696 s = zbc_parse_expr(p, flags, bc_parse_next_param);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003697 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003698
3699 comma = p->l.t.t == BC_LEX_COMMA;
3700 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003701 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003702 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003703 }
3704 }
3705
Denys Vlasenko26819db2018-12-12 16:08:46 +01003706 if (comma) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003707 bc_parse_push(p, BC_INST_CALL);
3708 bc_parse_pushIndex(p, nparams);
3709
Denys Vlasenko26819db2018-12-12 16:08:46 +01003710 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003711}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003712#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003713
Denys Vlasenko26819db2018-12-12 16:08:46 +01003714static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003715{
3716 BcStatus s;
3717 BcId entry, *entry_ptr;
3718 size_t idx;
3719
3720 entry.name = name;
3721
Denys Vlasenko26819db2018-12-12 16:08:46 +01003722 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003723 if (s) goto err;
3724
3725 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003726 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003727 goto err;
3728 }
3729
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003730 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003731
3732 if (idx == BC_VEC_INVALID_IDX) {
3733 name = xstrdup(entry.name);
3734 bc_parse_addFunc(p, name, &idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003735 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003736 free(entry.name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003737 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003738 free(name);
3739
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003740 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003741 bc_parse_pushIndex(p, entry_ptr->idx);
3742
Denys Vlasenko26819db2018-12-12 16:08:46 +01003743 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003744
3745err:
3746 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003747 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003748}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003749#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003750
Denys Vlasenko26819db2018-12-12 16:08:46 +01003751static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003752{
3753 BcStatus s;
3754 char *name;
3755
3756 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003757 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003758 if (s) goto err;
3759
3760 if (p->l.t.t == BC_LEX_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003761 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003762 if (s) goto err;
3763
3764 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003765 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003766 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003767 goto err;
3768 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003769 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003770 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003771 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003772 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003773 s = zbc_parse_expr(p, flags, bc_parse_next_elem);
Gavin Howard01055ba2018-11-03 11:00:21 -06003774 if (s) goto err;
3775 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003776 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003777 if (s) goto err;
3778 bc_parse_push(p, *type);
3779 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003780 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003781 }
3782 else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003783 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003784 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003785 goto err;
3786 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003787 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003788 s = zbc_parse_call(p, name, flags);
3789 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003790 *type = BC_INST_VAR;
3791 bc_parse_push(p, BC_INST_VAR);
3792 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003793 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003794 }
3795
Denys Vlasenko26819db2018-12-12 16:08:46 +01003796 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003797
3798err:
3799 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003800 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003801}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003802#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003803
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003804static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003805{
3806 BcStatus s;
3807
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003808 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003809 if (s) RETURN_STATUS(s);
3810 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003811
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003812 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003813 if (s) RETURN_STATUS(s);
3814 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003815
3816 bc_parse_push(p, BC_INST_READ);
3817
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003818 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003819}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003820#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003821
Denys Vlasenko26819db2018-12-12 16:08:46 +01003822static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003823 BcInst *prev)
3824{
3825 BcStatus s;
3826
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003827 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003828 if (s) RETURN_STATUS(s);
3829 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003830
3831 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3832
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003833 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003834 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003835
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003836 s = zbc_parse_expr(p, flags, bc_parse_next_rel);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003837 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003838
Denys Vlasenko26819db2018-12-12 16:08:46 +01003839 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003840
3841 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3842 bc_parse_push(p, *prev);
3843
Denys Vlasenko26819db2018-12-12 16:08:46 +01003844 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003845}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003846#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003847
Denys Vlasenko26819db2018-12-12 16:08:46 +01003848static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003849{
3850 BcStatus s;
3851
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003852 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003853 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003854
3855 if (p->l.t.t != BC_LEX_LPAREN) {
3856 *type = BC_INST_SCALE;
3857 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003858 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003859 }
3860
3861 *type = BC_INST_SCALE_FUNC;
3862 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
3863
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003864 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003865 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003866
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003867 s = zbc_parse_expr(p, flags, bc_parse_next_rel);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003868 if (s) RETURN_STATUS(s);
3869 if (p->l.t.t != BC_LEX_RPAREN)
3870 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003871 bc_parse_push(p, BC_INST_SCALE_FUNC);
3872
Denys Vlasenko26819db2018-12-12 16:08:46 +01003873 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003874}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003875#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003876
Denys Vlasenko26819db2018-12-12 16:08:46 +01003877static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003878 size_t *nexprs, uint8_t flags)
3879{
3880 BcStatus s;
3881 BcLexType type;
3882 char inst;
3883 BcInst etype = *prev;
3884
3885 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM ||
3886 etype == BC_INST_SCALE || etype == BC_INST_LAST ||
3887 etype == BC_INST_IBASE || etype == BC_INST_OBASE)
3888 {
3889 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
3890 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003891 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003892 }
3893 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003894 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
3895 *paren_expr = true;
3896
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003897 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003898 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003899 type = p->l.t.t;
3900
3901 // Because we parse the next part of the expression
3902 // right here, we need to increment this.
3903 *nexprs = *nexprs + 1;
3904
3905 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003906 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01003907 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003908 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003909 case BC_LEX_KEY_IBASE:
3910 case BC_LEX_KEY_LAST:
3911 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06003912 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003913 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003914 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003915 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003916 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003917 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003918 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003919 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003920 else
3921 bc_parse_push(p, BC_INST_SCALE);
3922 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003923 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003924 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003925 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003926 }
3927
3928 if (!s) bc_parse_push(p, inst);
3929 }
3930
Denys Vlasenko26819db2018-12-12 16:08:46 +01003931 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003932}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003933#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003934
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003935static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06003936 bool rparen, size_t *nexprs)
3937{
3938 BcStatus s;
3939 BcLexType type;
3940 BcInst etype = *prev;
3941
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003942 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003943 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003944
3945 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
3946 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
3947 BC_LEX_OP_MINUS :
3948 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01003949 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003950
3951 // We can just push onto the op stack because this is the largest
3952 // precedence operator that gets pushed. Inc/dec does not.
3953 if (type != BC_LEX_OP_MINUS)
3954 bc_vec_push(&p->ops, &type);
3955 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003956 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06003957
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003958 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003959}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003960#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003961
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003962static BC_STATUS zbc_parse_string(BcParse *p, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06003963{
3964 char *str = xstrdup(p->l.t.v.v);
3965
3966 bc_parse_push(p, BC_INST_STR);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003967 bc_parse_pushIndex(p, G.prog.strs.len);
3968 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06003969 bc_parse_push(p, inst);
3970
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003971 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003972}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003973#define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003974
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003975static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003976{
3977 BcStatus s;
3978 BcLexType type;
Gavin Howard01055ba2018-11-03 11:00:21 -06003979
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003980 for (;;) {
3981 s = zbc_lex_next(&p->l);
3982 if (s) RETURN_STATUS(s);
3983 type = p->l.t.t;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01003984 if (type == BC_LEX_STR) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003985 s = zbc_parse_string(p, BC_INST_PRINT_POP);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01003986 } else {
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003987 s = zbc_parse_expr(p, 0, bc_parse_next_print);
Gavin Howard01055ba2018-11-03 11:00:21 -06003988 bc_parse_push(p, BC_INST_PRINT_POP);
3989 }
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003990 if (s) RETURN_STATUS(s);
3991 if (p->l.t.t != BC_LEX_COMMA)
3992 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003993 }
3994
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003995 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003996}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003997#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003998
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003999static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004000{
4001 BcStatus s;
4002 BcLexType t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004003
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004004 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004005 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004006 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004007
4008 t = p->l.t.t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004009 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4010 bc_parse_push(p, BC_INST_RET0);
4011 else {
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004012 bool paren = (t == BC_LEX_LPAREN);
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004013 s = bc_parse_expr_empty_ok(p, 0, bc_parse_next_expr);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004014 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004015 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004016 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004017 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004018 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004019
4020 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004021 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004022 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06004023 }
4024
4025 bc_parse_push(p, BC_INST_RET);
4026 }
4027
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004028 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004029 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004030}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004031#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004032
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004033static void rewrite_label_to_current(BcParse *p, size_t idx)
4034{
4035 size_t *label = bc_vec_item(&p->func->labels, idx);
4036 *label = p->func->code.len;
4037}
4038
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004039static BC_STATUS zbc_parse_if(BcParse *p)
4040{
4041 BcStatus s;
Denys Vlasenko15850832018-12-16 21:40:54 +01004042 size_t ip_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004043
4044 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4045 s = zbc_lex_next(&p->l);
4046 if (s) RETURN_STATUS(s);
4047 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4048
4049 s = zbc_lex_next(&p->l);
4050 if (s) RETURN_STATUS(s);
4051 s = zbc_parse_expr(p, BC_PARSE_REL, bc_parse_next_rel);
4052 if (s) RETURN_STATUS(s);
4053
4054 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004055
Denys Vlasenko15850832018-12-16 21:40:54 +01004056 ip_idx = p->func->labels.len;
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004057 bc_parse_pushJUMP_ZERO(p, ip_idx);
Denys Vlasenko15850832018-12-16 21:40:54 +01004058 bc_vec_push(&p->func->labels, &ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004059
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004060 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004061 if (s) RETURN_STATUS(s);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004062
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004063 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4064 if (p->l.t.t == BC_LEX_KEY_ELSE) {
Denys Vlasenko15850832018-12-16 21:40:54 +01004065 size_t ip2_idx;
Denys Vlasenko74156332018-12-16 21:21:27 +01004066
Denys Vlasenko15850832018-12-16 21:40:54 +01004067 ip2_idx = p->func->labels.len;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004068
Denys Vlasenko15850832018-12-16 21:40:54 +01004069 dbg_lex("%s:%d after if() body: BC_INST_JUMP to %d", __func__, __LINE__, ip2_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004070 bc_parse_pushJUMP(p, ip2_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004071
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004072 dbg_lex("%s:%d rewriting 'if_zero' label to jump to 'else'-> %d", __func__, __LINE__, p->func->code.len);
4073 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004074
Denys Vlasenko15850832018-12-16 21:40:54 +01004075 bc_vec_push(&p->func->labels, &ip2_idx);
4076 ip_idx = ip2_idx;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004077
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004078 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004079 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004080 }
4081
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004082 dbg_lex("%s:%d rewriting label to jump after 'if' body-> %d", __func__, __LINE__, p->func->code.len);
4083 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004084
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004085 dbg_lex_done("%s:%d done", __func__, __LINE__);
4086 RETURN_STATUS(s);
4087}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004088#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004089
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004090static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004091{
4092 BcStatus s;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004093 size_t cond_idx;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004094 size_t ip_idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06004095
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004096 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004097 if (s) RETURN_STATUS(s);
4098 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004099 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004100 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004101
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004102 cond_idx = p->func->labels.len;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004103 ip_idx = cond_idx + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06004104
4105 bc_vec_push(&p->func->labels, &p->func->code.len);
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004106 bc_vec_push(&p->conds, &cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004107
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004108 bc_vec_push(&p->exits, &ip_idx);
4109 bc_vec_push(&p->func->labels, &ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004110
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004111 s = zbc_parse_expr(p, BC_PARSE_REL, bc_parse_next_rel);
4112 if (s) RETURN_STATUS(s);
4113 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko202dd192018-12-16 17:30:35 +01004114
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004115 bc_parse_pushJUMP_ZERO(p, ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004116
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004117 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004118 if (s) RETURN_STATUS(s);
4119
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004120 dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, cond_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004121 bc_parse_pushJUMP(p, cond_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004122
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004123 dbg_lex("%s:%d rewriting label-> %d", __func__, __LINE__, p->func->code.len);
4124 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004125
4126 bc_vec_pop(&p->exits);
4127 bc_vec_pop(&p->conds);
4128
4129 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004130}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004131#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004132
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004133static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004134{
4135 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004136 size_t cond_idx, exit_idx, body_idx, update_idx;
4137
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004138 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004139 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004140 if (s) RETURN_STATUS(s);
4141 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004142 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004143 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004144
4145 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004146 s = zbc_parse_expr(p, 0, bc_parse_next_for);
Gavin Howard01055ba2018-11-03 11:00:21 -06004147 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004148 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Gavin Howard01055ba2018-11-03 11:00:21 -06004149
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004150 if (s) RETURN_STATUS(s);
4151 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004152 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004153 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004154
4155 cond_idx = p->func->labels.len;
4156 update_idx = cond_idx + 1;
4157 body_idx = update_idx + 1;
4158 exit_idx = body_idx + 1;
4159
4160 bc_vec_push(&p->func->labels, &p->func->code.len);
4161
4162 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004163 s = zbc_parse_expr(p, BC_PARSE_REL, bc_parse_next_for);
Gavin Howard01055ba2018-11-03 11:00:21 -06004164 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004165 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004166
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004167 if (s) RETURN_STATUS(s);
4168 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004169
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004170 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004171 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004172
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004173 bc_parse_pushJUMP_ZERO(p, exit_idx);
4174 bc_parse_pushJUMP(p, body_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004175
Gavin Howard01055ba2018-11-03 11:00:21 -06004176 bc_vec_push(&p->conds, &update_idx);
4177 bc_vec_push(&p->func->labels, &p->func->code.len);
4178
4179 if (p->l.t.t != BC_LEX_RPAREN)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004180 s = zbc_parse_expr(p, 0, bc_parse_next_rel);
Gavin Howard01055ba2018-11-03 11:00:21 -06004181 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004182 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Gavin Howard01055ba2018-11-03 11:00:21 -06004183
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004184 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004185
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004186 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004187 bc_parse_pushJUMP(p, cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004188 bc_vec_push(&p->func->labels, &p->func->code.len);
4189
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004190 bc_vec_push(&p->exits, &exit_idx);
4191 bc_vec_push(&p->func->labels, &exit_idx);
Denys Vlasenko202dd192018-12-16 17:30:35 +01004192
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004193 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004194 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004195
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004196 dbg_lex("%s:%d BC_INST_JUMP to %d", __func__, __LINE__, update_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004197 bc_parse_pushJUMP(p, update_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004198
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004199 dbg_lex("%s:%d rewriting label-> %d", __func__, __LINE__, p->func->code.len);
4200 rewrite_label_to_current(p, exit_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004201
4202 bc_vec_pop(&p->exits);
4203 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004204
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004205 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004206}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004207#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004208
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004209static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004210{
4211 BcStatus s;
4212 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06004213
Gavin Howard01055ba2018-11-03 11:00:21 -06004214 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004215 if (p->exits.len == 0) // none of the enclosing blocks is a loop
4216 RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko266aa002018-12-16 23:24:25 +01004217 i = *(size_t*)bc_vec_top(&p->exits);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004218 } else {
Denys Vlasenko266aa002018-12-16 23:24:25 +01004219 i = *(size_t*)bc_vec_top(&p->conds);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004220 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004221
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004222 bc_parse_pushJUMP(p, i);
Gavin Howard01055ba2018-11-03 11:00:21 -06004223
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004224 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004225 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004226
4227 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004228 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004229
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004230 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004231}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004232#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004233
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004234static BC_STATUS zbc_parse_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004235{
4236 BcStatus s;
4237 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004238 char *name;
4239
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004240 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004241 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004242 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004243 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004244
4245 name = xstrdup(p->l.t.v.v);
4246 bc_parse_addFunc(p, name, &p->fidx);
4247
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004248 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004249 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004250 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004251 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004252 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004253 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004254
4255 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004256 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004257 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004258
4259 ++p->func->nparams;
4260
4261 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004262 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004263 if (s) goto err;
4264
4265 var = p->l.t.t != BC_LEX_LBRACKET;
4266
4267 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004268 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004269 if (s) goto err;
4270
4271 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004272 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004273 goto err;
4274 }
4275
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004276 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004277 if (s) goto err;
4278 }
4279
4280 comma = p->l.t.t == BC_LEX_COMMA;
4281 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004282 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004283 if (s) goto err;
4284 }
4285
Denys Vlasenko29301232018-12-11 15:29:32 +01004286 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004287 if (s) goto err;
4288 }
4289
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004290 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004291
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004292 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004293 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004294
4295 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004296 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004297
Denys Vlasenko202dd192018-12-16 17:30:35 +01004298 // Prevent "define z()<newline>" from being interpreted as function with empty stmt as body
4299 s = zbc_lex_skip_if_at_NLINE(&p->l);
4300 if (s) RETURN_STATUS(s);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004301 //GNU bc requires a {} block even if function body has single stmt, enforce this?
4302 if (p->l.t.t != BC_LEX_LBRACE)
4303 RETURN_STATUS(bc_error("function { body } expected"));
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004304
4305 p->in_funcdef++; // to determine whether "return" stmt is allowed, and such
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004306 s = zbc_parse_stmt_possibly_auto(p, true);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004307 p->in_funcdef--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004308 if (s) RETURN_STATUS(s);
4309
4310 bc_parse_push(p, BC_INST_RET0);
4311 bc_parse_updateFunc(p, BC_PROG_MAIN);
4312
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004313 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004314
4315err:
4316 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004317 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004318}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004319#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004320
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004321static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004322{
4323 BcStatus s;
4324 bool comma, var, one;
4325 char *name;
4326
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004327 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004328 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004329 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004330
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004331 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004332 one = p->l.t.t == BC_LEX_NAME;
4333
4334 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004335 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004336 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004337 if (s) goto err;
4338
4339 var = p->l.t.t != BC_LEX_LBRACKET;
4340 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004341 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004342 if (s) goto err;
4343
4344 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004345 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004346 goto err;
4347 }
4348
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004349 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004350 if (s) goto err;
4351 }
4352
4353 comma = p->l.t.t == BC_LEX_COMMA;
4354 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004355 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004356 if (s) goto err;
4357 }
4358
Denys Vlasenko29301232018-12-11 15:29:32 +01004359 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004360 if (s) goto err;
4361 }
4362
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004363 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4364 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004365
4366 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004367 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004368
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004369 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004370 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004371
4372err:
4373 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004374 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004375 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004376}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004377#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004378
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004379#undef zbc_parse_stmt_possibly_auto
4380static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004381{
4382 BcStatus s = BC_STATUS_SUCCESS;
4383
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004384 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004385
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004386 if (p->l.t.t == BC_LEX_NLINE) {
4387 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4388 RETURN_STATUS(zbc_lex_next(&p->l));
4389 }
4390 if (p->l.t.t == BC_LEX_SCOLON) {
4391 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4392 RETURN_STATUS(zbc_lex_next(&p->l));
4393 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004394
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004395 if (p->l.t.t == BC_LEX_LBRACE) {
4396 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4397 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004398 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004399 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004400 } while (p->l.t.t == BC_LEX_NLINE);
4401 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4402 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4403 s = zbc_parse_auto(p);
4404 if (s) RETURN_STATUS(s);
4405 }
4406 while (p->l.t.t != BC_LEX_RBRACE) {
4407 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4408 s = zbc_parse_stmt(p);
4409 if (s) RETURN_STATUS(s);
4410 }
4411 s = zbc_lex_next(&p->l);
4412 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4413 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004414 }
4415
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004416 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004417 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004418 case BC_LEX_OP_INC:
4419 case BC_LEX_OP_DEC:
4420 case BC_LEX_OP_MINUS:
4421 case BC_LEX_OP_BOOL_NOT:
4422 case BC_LEX_LPAREN:
4423 case BC_LEX_NAME:
4424 case BC_LEX_NUMBER:
4425 case BC_LEX_KEY_IBASE:
4426 case BC_LEX_KEY_LAST:
4427 case BC_LEX_KEY_LENGTH:
4428 case BC_LEX_KEY_OBASE:
4429 case BC_LEX_KEY_READ:
4430 case BC_LEX_KEY_SCALE:
4431 case BC_LEX_KEY_SQRT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004432 s = zbc_parse_expr(p, BC_PARSE_PRINT, bc_parse_next_expr);
Gavin Howard01055ba2018-11-03 11:00:21 -06004433 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004434 case BC_LEX_STR:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004435 s = zbc_parse_string(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004436 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004437 case BC_LEX_KEY_BREAK:
4438 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004439 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004440 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004441 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004442 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004443 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004444 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004445 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004446 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004447 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004448 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004449 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004450 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004451 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004452 // "limits" is a compile-time command,
4453 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004454 printf(
4455 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4456 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4457 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4458 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4459 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4460 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4461 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4462 "Number of vars = "BC_MAX_VARS_STR "\n"
4463 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004464 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004465 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004466 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004467 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004468 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004469 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004470 // "quit" is a compile-time command. For example,
4471 // "if (0 == 1) quit" terminates when parsing the statement,
4472 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004473 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004474 case BC_LEX_KEY_RETURN:
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004475 if (!p->in_funcdef)
4476 RETURN_STATUS(bc_error("'return' not in a function"));
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004477 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004478 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004479 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004480 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004481 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004482 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004483 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004484 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004485 }
4486
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004487 if (s || G_interrupt) {
4488 bc_parse_reset(p);
4489 s = BC_STATUS_FAILURE;
4490 }
4491
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004492 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004493 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004494}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004495#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004496
Denys Vlasenko99b37622018-12-15 20:06:59 +01004497static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004498{
4499 BcStatus s;
4500
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004501 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004502 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004503 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004504 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004505 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004506 s = zbc_parse_funcdef(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004507 } else {
4508 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 +01004509 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004510 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004511
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004512 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004513 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004514}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004515#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004516
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004517// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004518static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next)
Gavin Howard01055ba2018-11-03 11:00:21 -06004519{
4520 BcStatus s = BC_STATUS_SUCCESS;
4521 BcInst prev = BC_INST_PRINT;
4522 BcLexType top, t = p->l.t.t;
4523 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004524 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004525 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4526
Denys Vlasenko17df8822018-12-14 23:00:24 +01004527 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004528 paren_first = p->l.t.t == BC_LEX_LPAREN;
4529 nparens = nrelops = 0;
4530 paren_expr = rprn = done = get_token = assign = false;
4531 bin_last = true;
4532
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004533 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004534 switch (t) {
4535
4536 case BC_LEX_OP_INC:
4537 case BC_LEX_OP_DEC:
4538 {
Denys Vlasenko26819db2018-12-12 16:08:46 +01004539 s = zbc_parse_incdec(p, &prev, &paren_expr, &nexprs, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004540 rprn = get_token = bin_last = false;
4541 break;
4542 }
4543
4544 case BC_LEX_OP_MINUS:
4545 {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004546 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004547 rprn = get_token = false;
4548 bin_last = prev == BC_INST_MINUS;
4549 break;
4550 }
4551
4552 case BC_LEX_OP_ASSIGN_POWER:
4553 case BC_LEX_OP_ASSIGN_MULTIPLY:
4554 case BC_LEX_OP_ASSIGN_DIVIDE:
4555 case BC_LEX_OP_ASSIGN_MODULUS:
4556 case BC_LEX_OP_ASSIGN_PLUS:
4557 case BC_LEX_OP_ASSIGN_MINUS:
4558 case BC_LEX_OP_ASSIGN:
4559 {
4560 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM &&
4561 prev != BC_INST_SCALE && prev != BC_INST_IBASE &&
4562 prev != BC_INST_OBASE && prev != BC_INST_LAST)
4563 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004564 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004565 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004566 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004567 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004568 break;
4569 }
4570 }
4571 // Fallthrough.
4572 case BC_LEX_OP_POWER:
4573 case BC_LEX_OP_MULTIPLY:
4574 case BC_LEX_OP_DIVIDE:
4575 case BC_LEX_OP_MODULUS:
4576 case BC_LEX_OP_PLUS:
4577 case BC_LEX_OP_REL_EQ:
4578 case BC_LEX_OP_REL_LE:
4579 case BC_LEX_OP_REL_GE:
4580 case BC_LEX_OP_REL_NE:
4581 case BC_LEX_OP_REL_LT:
4582 case BC_LEX_OP_REL_GT:
4583 case BC_LEX_OP_BOOL_NOT:
4584 case BC_LEX_OP_BOOL_OR:
4585 case BC_LEX_OP_BOOL_AND:
4586 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004587 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4588 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4589 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004590 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004591 }
4592
4593 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004594 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004595 bc_parse_operator(p, t, ops_bgn, &nexprs);
4596 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004597 rprn = get_token = false;
4598 bin_last = t != BC_LEX_OP_BOOL_NOT;
4599
4600 break;
4601 }
4602
4603 case BC_LEX_LPAREN:
4604 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004605 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004606 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004607 ++nparens;
4608 paren_expr = rprn = bin_last = false;
4609 get_token = true;
4610 bc_vec_push(&p->ops, &t);
4611
4612 break;
4613 }
4614
4615 case BC_LEX_RPAREN:
4616 {
4617 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004618 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004619
4620 if (nparens == 0) {
4621 s = BC_STATUS_SUCCESS;
4622 done = true;
4623 get_token = false;
4624 break;
4625 }
Denys Vlasenko17df8822018-12-14 23:00:24 +01004626 else if (!paren_expr) {
4627 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004628 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004629 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004630
4631 --nparens;
4632 paren_expr = rprn = true;
4633 get_token = bin_last = false;
4634
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004635 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004636
4637 break;
4638 }
4639
4640 case BC_LEX_NAME:
4641 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004642 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004643 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004644 paren_expr = true;
4645 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004646 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004647 ++nexprs;
4648
4649 break;
4650 }
4651
4652 case BC_LEX_NUMBER:
4653 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004654 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004655 return bc_error_bad_expression();
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004656 bc_parse_number(p);
4657 nexprs++;
4658 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004659 paren_expr = get_token = true;
4660 rprn = bin_last = false;
4661
4662 break;
4663 }
4664
4665 case BC_LEX_KEY_IBASE:
4666 case BC_LEX_KEY_LAST:
4667 case BC_LEX_KEY_OBASE:
4668 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004669 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004670 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004671 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4672 bc_parse_push(p, (char) prev);
4673
4674 paren_expr = get_token = true;
4675 rprn = bin_last = false;
4676 ++nexprs;
4677
4678 break;
4679 }
4680
4681 case BC_LEX_KEY_LENGTH:
4682 case BC_LEX_KEY_SQRT:
4683 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004684 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004685 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004686 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004687 paren_expr = true;
4688 rprn = get_token = bin_last = false;
4689 ++nexprs;
4690
4691 break;
4692 }
4693
4694 case BC_LEX_KEY_READ:
4695 {
4696 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004697 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004698 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004699 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004700 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004701 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004702
4703 paren_expr = true;
4704 rprn = get_token = bin_last = false;
4705 ++nexprs;
4706 prev = BC_INST_READ;
4707
4708 break;
4709 }
4710
4711 case BC_LEX_KEY_SCALE:
4712 {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004713 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004714 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004715 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004716 paren_expr = true;
4717 rprn = get_token = bin_last = false;
4718 ++nexprs;
4719 prev = BC_INST_SCALE;
4720
4721 break;
4722 }
4723
4724 default:
4725 {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004726 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004727 break;
4728 }
4729 }
4730
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004731 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004732 }
4733
4734 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004735 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004736
4737 while (p->ops.len > ops_bgn) {
4738
4739 top = BC_PARSE_TOP_OP(p);
4740 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4741
4742 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004743 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004744
Denys Vlasenko0154d782018-12-14 23:32:51 +01004745 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004746
4747 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4748 bc_vec_pop(&p->ops);
4749 }
4750
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004751 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004752 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004753
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004754//TODO: why is this needed at all?
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004755 // next is BcParseNext, byte array of up to 4 BC_LEX's, packed into 32-bit word
4756 for (;;) {
4757 if (t == (next & 0x7f))
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004758 goto ok;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004759 if (next & 0x80) // last element?
4760 break;
4761 next >>= 8;
4762 }
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004763 if (t != BC_LEX_KEY_ELSE)
4764 return bc_error_bad_expression();
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004765 ok:
Gavin Howard01055ba2018-11-03 11:00:21 -06004766
4767 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004768 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004769 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004770 }
4771 else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004772 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004773 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004774 }
4775
4776 if (flags & BC_PARSE_PRINT) {
4777 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4778 bc_parse_push(p, BC_INST_POP);
4779 }
4780
Denys Vlasenko17df8822018-12-14 23:00:24 +01004781 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004782 return s;
4783}
4784
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004785#undef zbc_parse_expr
4786static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next)
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004787{
4788 BcStatus s;
4789
4790 s = bc_parse_expr_empty_ok(p, flags, next);
4791 if (s == BC_STATUS_PARSE_EMPTY_EXP)
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004792 RETURN_STATUS(bc_error("empty expression"));
4793 RETURN_STATUS(s);
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004794}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004795#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko050b0fe2018-12-05 22:40:44 +01004796
Gavin Howard01055ba2018-11-03 11:00:21 -06004797#endif // ENABLE_BC
4798
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004799#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004800
4801#define DC_PARSE_BUF_LEN ((int) (sizeof(uint32_t) * CHAR_BIT))
4802
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004803static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004804{
4805 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004806
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004807 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004808 if (s) RETURN_STATUS(s);
4809 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004810
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01004811 bc_parse_pushName(p, p->l.t.v.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004812
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004813 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004814}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004815#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004816
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004817static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004818{
4819 char *str, *name, b[DC_PARSE_BUF_LEN + 1];
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004820 size_t idx, len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004821
4822 sprintf(b, "%0*zu", DC_PARSE_BUF_LEN, len);
4823 name = xstrdup(b);
4824
4825 str = xstrdup(p->l.t.v.v);
4826 bc_parse_push(p, BC_INST_STR);
4827 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004828 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004829 bc_parse_addFunc(p, name, &idx);
4830
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004831 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004832}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004833#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004834
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004835static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004836{
4837 BcStatus s;
4838
4839 bc_parse_push(p, inst);
4840 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004841 s = zdc_parse_register(p);
4842 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004843 }
4844
4845 if (store) {
4846 bc_parse_push(p, BC_INST_SWAP);
4847 bc_parse_push(p, BC_INST_ASSIGN);
4848 bc_parse_push(p, BC_INST_POP);
4849 }
4850
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004851 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004852}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004853#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004854
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004855static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004856{
4857 BcStatus s;
4858
4859 bc_parse_push(p, inst);
4860 bc_parse_push(p, BC_INST_EXEC_COND);
4861
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004862 s = zdc_parse_register(p);
4863 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004864
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004865 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004866 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004867
4868 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004869 s = zdc_parse_register(p);
4870 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004871 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004872 }
4873 else
4874 bc_parse_push(p, BC_PARSE_STREND);
4875
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004876 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004877}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004878#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004879
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004880static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004881{
4882 BcStatus s = BC_STATUS_SUCCESS;
4883 BcInst prev;
4884 uint8_t inst;
4885 bool assign, get_token = false;
4886
4887 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004888 case BC_LEX_OP_REL_EQ:
4889 case BC_LEX_OP_REL_LE:
4890 case BC_LEX_OP_REL_GE:
4891 case BC_LEX_OP_REL_NE:
4892 case BC_LEX_OP_REL_LT:
4893 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004894 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06004895 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004896 case BC_LEX_SCOLON:
4897 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004898 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06004899 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004900 case BC_LEX_STR:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004901 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004902 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004903 case BC_LEX_NEG:
4904 case BC_LEX_NUMBER:
Gavin Howard01055ba2018-11-03 11:00:21 -06004905 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004906 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004907 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004908 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004909 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004910 }
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004911 bc_parse_number(p);
4912 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004913 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
4914 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06004915 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004916 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004917 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004918 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004919 else
4920 bc_parse_push(p, BC_INST_READ);
4921 get_token = true;
4922 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004923 case BC_LEX_OP_ASSIGN:
4924 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06004925 assign = t == BC_LEX_OP_ASSIGN;
4926 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004927 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06004928 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004929 case BC_LEX_LOAD:
4930 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06004931 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004932 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06004933 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004934 case BC_LEX_STORE_IBASE:
4935 case BC_LEX_STORE_SCALE:
4936 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004937 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004938 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06004939 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004940 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004941 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004942 get_token = true;
4943 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004944 }
4945
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004946 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004947
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004948 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004949}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004950#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004951
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004952static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004953{
4954 BcStatus s = BC_STATUS_SUCCESS;
4955 BcInst inst;
4956 BcLexType t;
4957
Gavin Howard01055ba2018-11-03 11:00:21 -06004958 for (t = p->l.t.t; !s && t != BC_LEX_EOF; t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004959 inst = dc_parse_insts[t];
4960
4961 if (inst != BC_INST_INVALID) {
4962 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004963 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004964 } else
4965 s = zdc_parse_token(p, t, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004966 }
4967
4968 if (!s && p->l.t.t == BC_LEX_EOF && (flags & BC_PARSE_NOCALL))
4969 bc_parse_push(p, BC_INST_POP_EXEC);
4970
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004971 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004972}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004973#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004974
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01004975static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004976{
4977 BcStatus s;
4978
4979 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004980 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004981 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004982 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004983
Denys Vlasenkod38af482018-12-04 19:11:02 +01004984 if (s || G_interrupt) {
4985 bc_parse_reset(p);
4986 s = BC_STATUS_FAILURE;
4987 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004988
Denys Vlasenko26819db2018-12-12 16:08:46 +01004989 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004990}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004991#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004992
Gavin Howard01055ba2018-11-03 11:00:21 -06004993#endif // ENABLE_DC
4994
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004995static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004996{
4997 if (IS_BC) {
Denys Vlasenko99b37622018-12-15 20:06:59 +01004998 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags, bc_parse_next_read)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004999 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01005000 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005001 }
5002}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005003#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005004
Denys Vlasenkodf515392018-12-02 19:27:48 +01005005static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005006{
Gavin Howard01055ba2018-11-03 11:00:21 -06005007 BcId e, *ptr;
5008 BcVec *v, *map;
5009 size_t i;
5010 BcResultData data;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005011 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06005012
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005013 v = var ? &G.prog.vars : &G.prog.arrs;
5014 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06005015
5016 e.name = id;
5017 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005018 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06005019
5020 if (new) {
5021 bc_array_init(&data.v, var);
5022 bc_vec_push(v, &data.v);
5023 }
5024
5025 ptr = bc_vec_item(map, i);
5026 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005027 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005028}
5029
Denys Vlasenko29301232018-12-11 15:29:32 +01005030static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06005031{
Gavin Howard01055ba2018-11-03 11:00:21 -06005032 switch (r->t) {
5033
5034 case BC_RESULT_STR:
5035 case BC_RESULT_TEMP:
5036 case BC_RESULT_IBASE:
5037 case BC_RESULT_SCALE:
5038 case BC_RESULT_OBASE:
5039 {
5040 *num = &r->d.n;
5041 break;
5042 }
5043
5044 case BC_RESULT_CONSTANT:
5045 {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005046 BcStatus s;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005047 char **str = bc_vec_item(&G.prog.consts, r->d.id.idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005048 size_t base_t, len = strlen(*str);
5049 BcNum *base;
5050
5051 bc_num_init(&r->d.n, len);
5052
5053 hex = hex && len == 1;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005054 base = hex ? &G.prog.hexb : &G.prog.ib;
5055 base_t = hex ? BC_NUM_MAX_IBASE : G.prog.ib_t;
Denys Vlasenko29301232018-12-11 15:29:32 +01005056 s = zbc_num_parse(&r->d.n, *str, base, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005057
5058 if (s) {
5059 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01005060 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005061 }
5062
5063 *num = &r->d.n;
5064 r->t = BC_RESULT_TEMP;
5065
5066 break;
5067 }
5068
5069 case BC_RESULT_VAR:
5070 case BC_RESULT_ARRAY:
5071 case BC_RESULT_ARRAY_ELEM:
5072 {
5073 BcVec *v;
5074
Denys Vlasenkodf515392018-12-02 19:27:48 +01005075 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06005076
5077 if (r->t == BC_RESULT_ARRAY_ELEM) {
5078 v = bc_vec_top(v);
5079 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
5080 *num = bc_vec_item(v, r->d.id.idx);
5081 }
5082 else
5083 *num = bc_vec_top(v);
5084
5085 break;
5086 }
5087
5088 case BC_RESULT_LAST:
5089 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005090 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005091 break;
5092 }
5093
5094 case BC_RESULT_ONE:
5095 {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005096 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005097 break;
5098 }
5099 }
5100
Denys Vlasenko29301232018-12-11 15:29:32 +01005101 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005102}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005103#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005104
Denys Vlasenko29301232018-12-11 15:29:32 +01005105static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005106 BcResult **r, BcNum **rn, bool assign)
5107{
5108 BcStatus s;
5109 bool hex;
5110 BcResultType lt, rt;
5111
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005112 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005113 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005114
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005115 *r = bc_vec_item_rev(&G.prog.results, 0);
5116 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005117
5118 lt = (*l)->t;
5119 rt = (*r)->t;
5120 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5121
Denys Vlasenko29301232018-12-11 15:29:32 +01005122 s = zbc_program_num(*l, ln, false);
5123 if (s) RETURN_STATUS(s);
5124 s = zbc_program_num(*r, rn, hex);
5125 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005126
5127 // We run this again under these conditions in case any vector has been
5128 // reallocated out from under the BcNums or arrays we had.
5129 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005130 s = zbc_program_num(*l, ln, false);
5131 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005132 }
5133
5134 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005135 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005136 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005137 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005138
Denys Vlasenko29301232018-12-11 15:29:32 +01005139 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005140}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005141#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005142
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005143static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005144{
5145 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005146 bc_vec_pop(&G.prog.results);
5147 bc_vec_pop(&G.prog.results);
5148 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005149}
5150
Denys Vlasenko29301232018-12-11 15:29:32 +01005151static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005152{
5153 BcStatus s;
5154
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005155 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005156 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005157 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005158
Denys Vlasenko29301232018-12-11 15:29:32 +01005159 s = zbc_program_num(*r, n, false);
5160 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005161
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005162 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005163 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005164
Denys Vlasenko29301232018-12-11 15:29:32 +01005165 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005166}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005167#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005168
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005169static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005170{
5171 r->t = t;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005172 bc_vec_pop(&G.prog.results);
5173 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005174}
5175
Denys Vlasenko259137d2018-12-11 19:42:05 +01005176static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005177{
5178 BcStatus s;
5179 BcResult *opd1, *opd2, res;
5180 BcNum *n1, *n2 = NULL;
5181
Denys Vlasenko29301232018-12-11 15:29:32 +01005182 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005183 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005184 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005185
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005186 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005187 IF_ERROR_RETURN_POSSIBLE(s =) zbc_program_ops[inst - BC_INST_POWER](n1, n2, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06005188 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005189 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005190
Denys Vlasenko259137d2018-12-11 19:42:05 +01005191 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005192
5193err:
5194 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005195 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005196}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005197#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005198
Denys Vlasenko26819db2018-12-12 16:08:46 +01005199static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005200{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005201 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005202 BcStatus s;
5203 BcParse parse;
5204 BcVec buf;
5205 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005206 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005207
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005208 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005209 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005210
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005211 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005212 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005213
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005214 sv_file = G.prog.file;
5215 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005216 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005217
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005218 bc_char_vec_init(&buf);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01005219 bc_read_line(&buf, stdin);
Gavin Howard01055ba2018-11-03 11:00:21 -06005220
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005221 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005222 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005223
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005224 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005225 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005226 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005227 if (s) goto exec_err;
5228
5229 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005230 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005231 goto exec_err;
5232 }
5233
5234 ip.func = BC_PROG_READ;
5235 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005236 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005237
5238 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005239 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005240
5241 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005242 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005243
5244exec_err:
5245 bc_parse_free(&parse);
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005246 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005247 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005248 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005249 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005250}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005251#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005252
5253static size_t bc_program_index(char *code, size_t *bgn)
5254{
5255 char amt = code[(*bgn)++], i = 0;
5256 size_t res = 0;
5257
5258 for (; i < amt; ++i, ++(*bgn))
5259 res |= (((size_t)((int) code[*bgn]) & UCHAR_MAX) << (i * CHAR_BIT));
5260
5261 return res;
5262}
5263
5264static char *bc_program_name(char *code, size_t *bgn)
5265{
5266 size_t i;
5267 char c, *s, *str = code + *bgn, *ptr = strchr(str, BC_PARSE_STREND);
5268
5269 s = xmalloc(ptr - str + 1);
5270 c = code[(*bgn)++];
5271
5272 for (i = 0; c != 0 && c != BC_PARSE_STREND; c = code[(*bgn)++], ++i)
5273 s[i] = c;
5274
5275 s[i] = '\0';
5276
5277 return s;
5278}
5279
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005280static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005281{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005282#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005283 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005284 // Example: echo '[]ap' | dc
5285 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005286 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005287 return;
5288 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005289#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005290 while (*str) {
5291 int c = *str++;
5292 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005293 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005294 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005295 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005296 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005297 case 'a':
5298 bb_putchar('\a');
5299 break;
5300 case 'b':
5301 bb_putchar('\b');
5302 break;
5303 case '\\':
5304 case 'e':
5305 bb_putchar('\\');
5306 break;
5307 case 'f':
5308 bb_putchar('\f');
5309 break;
5310 case 'n':
5311 bb_putchar('\n');
5312 G.prog.nchars = SIZE_MAX;
5313 break;
5314 case 'r':
5315 bb_putchar('\r');
5316 break;
5317 case 'q':
5318 bb_putchar('"');
5319 break;
5320 case 't':
5321 bb_putchar('\t');
5322 break;
5323 default:
5324 // Just print the backslash and following character.
5325 bb_putchar('\\');
5326 ++G.prog.nchars;
5327 bb_putchar(c);
5328 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005329 }
5330 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005331 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005332 }
5333}
5334
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005335static void bc_num_printNewline(void)
5336{
5337 if (G.prog.nchars == G.prog.len - 1) {
5338 bb_putchar('\\');
5339 bb_putchar('\n');
5340 G.prog.nchars = 0;
5341 }
5342}
5343
5344#if ENABLE_DC
5345static FAST_FUNC void bc_num_printChar(size_t num, size_t width, bool radix)
5346{
5347 (void) radix;
5348 bb_putchar((char) num);
5349 G.prog.nchars += width;
5350}
5351#endif
5352
5353static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5354{
5355 size_t exp, pow;
5356
5357 bc_num_printNewline();
5358 bb_putchar(radix ? '.' : ' ');
5359 ++G.prog.nchars;
5360
5361 bc_num_printNewline();
5362 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5363 continue;
5364
5365 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5366 size_t dig;
5367 bc_num_printNewline();
5368 dig = num / pow;
5369 num -= dig * pow;
5370 bb_putchar(((char) dig) + '0');
5371 }
5372}
5373
5374static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5375{
5376 if (radix) {
5377 bc_num_printNewline();
5378 bb_putchar('.');
5379 G.prog.nchars += 1;
5380 }
5381
5382 bc_num_printNewline();
5383 bb_putchar(bb_hexdigits_upcase[num]);
5384 G.prog.nchars += width;
5385}
5386
5387static void bc_num_printDecimal(BcNum *n)
5388{
5389 size_t i, rdx = n->rdx - 1;
5390
5391 if (n->neg) bb_putchar('-');
5392 G.prog.nchars += n->neg;
5393
5394 for (i = n->len - 1; i < n->len; --i)
5395 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5396}
5397
5398static BC_STATUS zbc_num_printNum(BcNum *n, BcNum *base, size_t width, BcNumDigitOp print)
5399{
5400 BcStatus s;
5401 BcVec stack;
5402 BcNum intp, fracp, digit, frac_len;
5403 unsigned long dig, *ptr;
5404 size_t i;
5405 bool radix;
5406
5407 if (n->len == 0) {
5408 print(0, width, false);
5409 RETURN_STATUS(BC_STATUS_SUCCESS);
5410 }
5411
5412 bc_vec_init(&stack, sizeof(long), NULL);
5413 bc_num_init(&intp, n->len);
5414 bc_num_init(&fracp, n->rdx);
5415 bc_num_init(&digit, width);
5416 bc_num_init(&frac_len, BC_NUM_INT(n));
5417 bc_num_copy(&intp, n);
5418 bc_num_one(&frac_len);
5419
5420 bc_num_truncate(&intp, intp.rdx);
5421 s = zbc_num_sub(n, &intp, &fracp, 0);
5422 if (s) goto err;
5423
5424 while (intp.len != 0) {
5425 s = zbc_num_divmod(&intp, base, &intp, &digit, 0);
5426 if (s) goto err;
5427 s = zbc_num_ulong(&digit, &dig);
5428 if (s) goto err;
5429 bc_vec_push(&stack, &dig);
5430 }
5431
5432 for (i = 0; i < stack.len; ++i) {
5433 ptr = bc_vec_item_rev(&stack, i);
5434 print(*ptr, width, false);
5435 }
5436
5437 if (!n->rdx) goto err;
5438
5439 for (radix = true; frac_len.len <= n->rdx; radix = false) {
5440 s = zbc_num_mul(&fracp, base, &fracp, n->rdx);
5441 if (s) goto err;
5442 s = zbc_num_ulong(&fracp, &dig);
5443 if (s) goto err;
5444 bc_num_ulong2num(&intp, dig);
5445 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5446 if (s) goto err;
5447 print(dig, width, radix);
5448 s = zbc_num_mul(&frac_len, base, &frac_len, 0);
5449 if (s) goto err;
5450 }
5451
5452err:
5453 bc_num_free(&frac_len);
5454 bc_num_free(&digit);
5455 bc_num_free(&fracp);
5456 bc_num_free(&intp);
5457 bc_vec_free(&stack);
5458 RETURN_STATUS(s);
5459}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005460#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005461
5462static BC_STATUS zbc_num_printBase(BcNum *n)
5463{
5464 BcStatus s;
5465 size_t width, i;
5466 BcNumDigitOp print;
5467 bool neg = n->neg;
5468
5469 if (neg) {
5470 bb_putchar('-');
5471 G.prog.nchars++;
5472 }
5473
5474 n->neg = false;
5475
5476 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5477 width = 1;
5478 print = bc_num_printHex;
5479 }
5480 else {
5481 for (i = G.prog.ob_t - 1, width = 0; i != 0; i /= 10, ++width)
5482 continue;
5483 print = bc_num_printDigits;
5484 }
5485
5486 s = zbc_num_printNum(n, &G.prog.ob, width, print);
5487 n->neg = neg;
5488
5489 RETURN_STATUS(s);
5490}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005491#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005492
5493#if ENABLE_DC
5494static BC_STATUS zbc_num_stream(BcNum *n, BcNum *base)
5495{
5496 RETURN_STATUS(zbc_num_printNum(n, base, 1, bc_num_printChar));
5497}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005498#define zbc_num_stream(...) (zbc_num_stream(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005499#endif
5500
5501static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5502{
5503 BcStatus s = BC_STATUS_SUCCESS;
5504
5505 bc_num_printNewline();
5506
5507 if (n->len == 0) {
5508 bb_putchar('0');
5509 ++G.prog.nchars;
5510 }
5511 else if (G.prog.ob_t == 10)
5512 bc_num_printDecimal(n);
5513 else
5514 s = zbc_num_printBase(n);
5515
5516 if (newline) {
5517 bb_putchar('\n');
5518 G.prog.nchars = 0;
5519 }
5520
5521 RETURN_STATUS(s);
5522}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005523#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005524
Denys Vlasenko29301232018-12-11 15:29:32 +01005525static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005526{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005527 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005528 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005529 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005530 bool pop = inst != BC_INST_PRINT;
5531
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005532 if (!BC_PROG_STACK(&G.prog.results, idx + 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005533 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005534
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005535 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005536 num = NULL; // is this NULL necessary?
Denys Vlasenko29301232018-12-11 15:29:32 +01005537 s = zbc_program_num(r, &num, false);
5538 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005539
5540 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005541 s = zbc_num_print(num, !pop);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005542 if (!s) bc_num_copy(&G.prog.last, num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005543 }
5544 else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005545 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005546
5547 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005548 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005549
5550 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005551 for (;;) {
5552 char c = *str++;
5553 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005554 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005555 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005556 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005557 }
5558 }
5559 else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005560 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005561 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005562 }
5563 }
5564
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005565 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005566
Denys Vlasenko29301232018-12-11 15:29:32 +01005567 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005568}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005569#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005570
Denys Vlasenko29301232018-12-11 15:29:32 +01005571static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005572{
5573 BcStatus s;
5574 BcResult res, *ptr;
5575 BcNum *num = NULL;
5576
Denys Vlasenko29301232018-12-11 15:29:32 +01005577 s = zbc_program_prep(&ptr, &num);
5578 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005579
5580 bc_num_init(&res.d.n, num->len);
5581 bc_num_copy(&res.d.n, num);
5582 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5583
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005584 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005585
Denys Vlasenko29301232018-12-11 15:29:32 +01005586 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005587}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005588#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005589
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005590static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005591{
5592 BcStatus s;
5593 BcResult *opd1, *opd2, res;
5594 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005595 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005596
Denys Vlasenko29301232018-12-11 15:29:32 +01005597 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005598 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005599
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005600 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005601
5602 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005603 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005604 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005605 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005606 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005607 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005608 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005609 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005610 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005611 break;
5612 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005613 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005614 break;
5615 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005616 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005617 break;
5618 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005619 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005620 break;
5621 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005622 cond = (cond > 0);
5623 break;
5624 default: // = case BC_INST_REL_NE:
5625 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005626 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005627 }
5628 }
5629
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005630 if (cond) bc_num_one(&res.d.n);
5631 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005632
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005633 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005634
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005635 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005636}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005637#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005638
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005639#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01005640static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v,
Gavin Howard01055ba2018-11-03 11:00:21 -06005641 bool push)
5642{
5643 BcNum n2;
5644 BcResult res;
5645
5646 memset(&n2, 0, sizeof(BcNum));
5647 n2.rdx = res.d.id.idx = r->d.id.idx;
5648 res.t = BC_RESULT_STR;
5649
5650 if (!push) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005651 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005652 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005653 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005654 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005655 }
5656
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005657 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005658
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005659 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005660 bc_vec_push(v, &n2);
5661
Denys Vlasenko29301232018-12-11 15:29:32 +01005662 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005663}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005664#define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005665#endif // ENABLE_DC
5666
Denys Vlasenko29301232018-12-11 15:29:32 +01005667static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005668{
5669 BcStatus s;
5670 BcResult *ptr, r;
5671 BcVec *v;
5672 BcNum *n;
5673
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005674 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005675 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005676
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005677 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005678 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005679 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005680 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005681
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005682#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005683 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005684 RETURN_STATUS(bc_error_variable_is_wrong_type());
5685 if (ptr->t == BC_RESULT_STR)
5686 RETURN_STATUS(zbc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005687#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005688
Denys Vlasenko29301232018-12-11 15:29:32 +01005689 s = zbc_program_num(ptr, &n, false);
5690 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005691
5692 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005693 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005694
5695 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005696 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005697 bc_num_copy(&r.d.n, n);
5698 }
5699 else {
5700 bc_array_init(&r.d.v, true);
5701 bc_array_copy(&r.d.v, (BcVec *) n);
5702 }
5703
5704 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005705 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005706
Denys Vlasenko29301232018-12-11 15:29:32 +01005707 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005708}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005709#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005710
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005711static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005712{
5713 BcStatus s;
5714 BcResult *left, *right, res;
5715 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005716 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5717
Denys Vlasenko29301232018-12-11 15:29:32 +01005718 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005719 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005720
5721 ib = left->t == BC_RESULT_IBASE;
5722 sc = left->t == BC_RESULT_SCALE;
5723
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005724#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005725
5726 if (right->t == BC_RESULT_STR) {
5727
5728 BcVec *v;
5729
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005730 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005731 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005732 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005733
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005734 RETURN_STATUS(zbc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005735 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005736#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005737
5738 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005739 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005740 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005741 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005742 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005743
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005744#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005745 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005746 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005747
5748 if (assign)
5749 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005750 else {
5751 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005752 IF_ERROR_RETURN_POSSIBLE(s =) zbc_program_ops[inst - BC_INST_ASSIGN_POWER](l, r, l, G.prog.scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005753 }
5754 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005755#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005756 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005757#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005758
5759 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005760 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005761 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5762 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5763 NULL, //can't happen //BC_RESULT_LAST
5764 NULL, //can't happen //BC_RESULT_CONSTANT
5765 NULL, //can't happen //BC_RESULT_ONE
5766 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005767 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005768 size_t *ptr;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01005769 unsigned long val, max;
Gavin Howard01055ba2018-11-03 11:00:21 -06005770
Denys Vlasenko29301232018-12-11 15:29:32 +01005771 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005772 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005773 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005774 if (sc) {
5775 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005776 ptr = &G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06005777 }
5778 else {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005779 if (val < BC_NUM_MIN_BASE)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005780 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005781 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005782 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005783 }
5784
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005785 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005786 RETURN_STATUS(bc_error(msg[s]));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005787 if (!sc)
5788 bc_num_copy(ib ? &G.prog.ib : &G.prog.ob, l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005789
5790 *ptr = (size_t) val;
5791 s = BC_STATUS_SUCCESS;
5792 }
5793
5794 bc_num_init(&res.d.n, l->len);
5795 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005796 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005797
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005798 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005799}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005800#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005801
Denys Vlasenko416ce762018-12-02 20:57:17 +01005802#if !ENABLE_DC
5803#define bc_program_pushVar(code, bgn, pop, copy) \
5804 bc_program_pushVar(code, bgn)
5805// for bc, 'pop' and 'copy' are always false
5806#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005807static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005808 bool pop, bool copy)
5809{
Gavin Howard01055ba2018-11-03 11:00:21 -06005810 BcResult r;
5811 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06005812
5813 r.t = BC_RESULT_VAR;
5814 r.d.id.name = name;
5815
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005816#if ENABLE_DC
Denys Vlasenko416ce762018-12-02 20:57:17 +01005817 {
5818 BcVec *v = bc_program_search(name, true);
5819 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005820
Denys Vlasenko416ce762018-12-02 20:57:17 +01005821 if (pop || copy) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005822
Denys Vlasenko416ce762018-12-02 20:57:17 +01005823 if (!BC_PROG_STACK(v, 2 - copy)) {
5824 free(name);
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005825 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko416ce762018-12-02 20:57:17 +01005826 }
5827
Gavin Howard01055ba2018-11-03 11:00:21 -06005828 free(name);
Denys Vlasenko416ce762018-12-02 20:57:17 +01005829 name = NULL;
5830
5831 if (!BC_PROG_STR(num)) {
5832
5833 r.t = BC_RESULT_TEMP;
5834
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005835 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko416ce762018-12-02 20:57:17 +01005836 bc_num_copy(&r.d.n, num);
5837 }
5838 else {
5839 r.t = BC_RESULT_STR;
5840 r.d.id.idx = num->rdx;
5841 }
5842
5843 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005844 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005845 }
5846#endif // ENABLE_DC
5847
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005848 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005849
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005850 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005851}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005852#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005853
Denys Vlasenko29301232018-12-11 15:29:32 +01005854static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005855 char inst)
5856{
5857 BcStatus s = BC_STATUS_SUCCESS;
5858 BcResult r;
5859 BcNum *num;
5860
5861 r.d.id.name = bc_program_name(code, bgn);
5862
5863 if (inst == BC_INST_ARRAY) {
5864 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005865 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005866 }
5867 else {
5868
5869 BcResult *operand;
5870 unsigned long temp;
5871
Denys Vlasenko29301232018-12-11 15:29:32 +01005872 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005873 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01005874 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06005875 if (s) goto err;
5876
5877 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005878 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06005879 goto err;
5880 }
5881
5882 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005883 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06005884 }
5885
5886err:
5887 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01005888 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005889}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005890#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005891
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005892#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01005893static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005894{
5895 BcStatus s;
5896 BcResult *ptr, res, copy;
5897 BcNum *num = NULL;
5898 char inst2 = inst;
5899
Denys Vlasenko29301232018-12-11 15:29:32 +01005900 s = zbc_program_prep(&ptr, &num);
5901 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005902
5903 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
5904 copy.t = BC_RESULT_TEMP;
5905 bc_num_init(&copy.d.n, num->len);
5906 bc_num_copy(&copy.d.n, num);
5907 }
5908
5909 res.t = BC_RESULT_ONE;
5910 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
5911 BC_INST_ASSIGN_PLUS :
5912 BC_INST_ASSIGN_MINUS;
5913
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005914 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005915 s = zbc_program_assign(inst);
5916 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005917
5918 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005919 bc_vec_pop(&G.prog.results);
5920 bc_vec_push(&G.prog.results, &copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06005921 }
5922
Denys Vlasenko29301232018-12-11 15:29:32 +01005923 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005924}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005925#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005926
Denys Vlasenko29301232018-12-11 15:29:32 +01005927static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005928{
Gavin Howard01055ba2018-11-03 11:00:21 -06005929 BcInstPtr ip;
5930 size_t i, nparams = bc_program_index(code, idx);
5931 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06005932 BcId *a;
5933 BcResultData param;
5934 BcResult *arg;
5935
5936 ip.idx = 0;
5937 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005938 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005939
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005940 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005941 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005942 }
5943 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005944 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005945 }
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005946 ip.len = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005947
5948 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005949 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005950
5951 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005952 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005953
5954 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01005955 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005956
Denys Vlasenko29301232018-12-11 15:29:32 +01005957 s = zbc_program_copyToVar(a->name, a->idx);
5958 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005959 }
5960
5961 for (; i < func->autos.len; ++i) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01005962 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06005963
5964 a = bc_vec_item(&func->autos, i);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005965 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005966
5967 if (a->idx) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005968 bc_num_init_DEF_SIZE(&param.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005969 bc_vec_push(v, &param.n);
5970 }
5971 else {
5972 bc_array_init(&param.v, true);
5973 bc_vec_push(v, &param.v);
5974 }
5975 }
5976
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005977 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005978
Denys Vlasenko29301232018-12-11 15:29:32 +01005979 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005980}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005981#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005982
Denys Vlasenko29301232018-12-11 15:29:32 +01005983static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005984{
Gavin Howard01055ba2018-11-03 11:00:21 -06005985 BcResult res;
5986 BcFunc *f;
5987 size_t i;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005988 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005989
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005990 if (!BC_PROG_STACK(&G.prog.results, ip->len + inst == BC_INST_RET))
Denys Vlasenko29301232018-12-11 15:29:32 +01005991 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005992
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005993 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005994 res.t = BC_RESULT_TEMP;
5995
5996 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005997 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005998 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005999 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006000
Denys Vlasenko29301232018-12-11 15:29:32 +01006001 s = zbc_program_num(operand, &num, false);
6002 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006003 bc_num_init(&res.d.n, num->len);
6004 bc_num_copy(&res.d.n, num);
6005 }
6006 else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006007 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006008 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006009 }
6010
6011 // We need to pop arguments as well, so this takes that into account.
6012 for (i = 0; i < f->autos.len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006013 BcVec *v;
6014 BcId *a = bc_vec_item(&f->autos, i);
6015
Denys Vlasenkodf515392018-12-02 19:27:48 +01006016 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006017 bc_vec_pop(v);
6018 }
6019
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006020 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->len);
6021 bc_vec_push(&G.prog.results, &res);
6022 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006023
Denys Vlasenko29301232018-12-11 15:29:32 +01006024 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006025}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006026#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006027#endif // ENABLE_BC
6028
6029static unsigned long bc_program_scale(BcNum *n)
6030{
6031 return (unsigned long) n->rdx;
6032}
6033
6034static unsigned long bc_program_len(BcNum *n)
6035{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006036 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006037
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006038 if (n->rdx != len) return len;
6039 for (;;) {
6040 if (len == 0) break;
6041 len--;
6042 if (n->num[len] != 0) break;
6043 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006044 return len;
6045}
6046
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006047static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006048{
6049 BcStatus s;
6050 BcResult *opnd;
6051 BcNum *num = NULL;
6052 BcResult res;
6053 bool len = inst == BC_INST_LENGTH;
6054
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006055 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006056 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006057 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006058
Denys Vlasenko29301232018-12-11 15:29:32 +01006059 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006060 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006061
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006062#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006063 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006064 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006065#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006066
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006067 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006068
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006069 if (inst == BC_INST_SQRT) s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006070#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006071 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006072 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006073 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006074#endif
6075#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006076 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006077 char **str;
6078 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
6079
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006080 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006081 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06006082 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006083#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006084 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01006085 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06006086 }
6087
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006088 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006089
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006090 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006091}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006092#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006093
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006094#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006095static BC_STATUS zbc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006096{
6097 BcStatus s;
6098 BcResult *opd1, *opd2, res, res2;
6099 BcNum *n1, *n2 = NULL;
6100
Denys Vlasenko29301232018-12-11 15:29:32 +01006101 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006102 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006103
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006104 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006105 bc_num_init(&res2.d.n, n2->len);
6106
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006107 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006108 if (s) goto err;
6109
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006110 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006111 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006112 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006113
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006114 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006115
6116err:
6117 bc_num_free(&res2.d.n);
6118 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006119 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006120}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006121#define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006122
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006123static BC_STATUS zbc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006124{
6125 BcStatus s;
6126 BcResult *r1, *r2, *r3, res;
6127 BcNum *n1, *n2, *n3;
6128
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006129 if (!BC_PROG_STACK(&G.prog.results, 3))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006130 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006131 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006132 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006133
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006134 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006135 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006136 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006137 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006138 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006139
6140 // Make sure that the values have their pointers updated, if necessary.
6141 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
6142
6143 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006144 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006145 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006146 }
6147
6148 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006149 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006150 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006151 }
6152 }
6153
6154 bc_num_init(&res.d.n, n3->len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006155 s = zbc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006156 if (s) goto err;
6157
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006158 bc_vec_pop(&G.prog.results);
6159 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006160
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006161 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006162
6163err:
6164 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006165 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006166}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006167#define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006168
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006169static void bc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006170{
Gavin Howard01055ba2018-11-03 11:00:21 -06006171 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006172 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006173
6174 res.t = BC_RESULT_TEMP;
6175
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006176 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006177 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006178 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006179}
6180
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006181static BC_STATUS zbc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006182{
6183 BcStatus s;
6184 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006185 BcNum *num, n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006186 char *str, *str2, c;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006187 size_t len = G.prog.strs.len, idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006188 unsigned long val;
6189
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006190 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006191 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006192 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006193
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006194 num = NULL; // TODO: is this NULL needed?
Denys Vlasenko29301232018-12-11 15:29:32 +01006195 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006196 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006197
6198 if (BC_PROG_NUM(r, num)) {
6199
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006200 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006201 bc_num_copy(&n, num);
6202 bc_num_truncate(&n, n.rdx);
6203
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006204 s = zbc_num_mod(&n, &G.prog.strmb, &n, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006205 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006206 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006207 if (s) goto num_err;
6208
6209 c = (char) val;
6210
6211 bc_num_free(&n);
6212 }
6213 else {
6214 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006215 str2 = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006216 c = str2[0];
6217 }
6218
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006219 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006220 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006221 //str[1] = '\0'; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006222
6223 str2 = xstrdup(str);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006224 bc_program_addFunc(str2, &idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006225
6226 if (idx != len + BC_PROG_REQ_FUNCS) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006227 for (idx = 0; idx < G.prog.strs.len; ++idx) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006228 if (strcmp(*bc_program_str(idx), str) == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006229 len = idx;
6230 break;
6231 }
6232 }
6233
6234 free(str);
6235 }
6236 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006237 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006238
6239 res.t = BC_RESULT_STR;
6240 res.d.id.idx = len;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006241 bc_vec_pop(&G.prog.results);
6242 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006243
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006244 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006245
6246num_err:
6247 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006248 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006249}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006250#define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006251
Denys Vlasenko29301232018-12-11 15:29:32 +01006252static BC_STATUS zbc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006253{
6254 BcStatus s;
6255 BcResult *r;
6256 BcNum *n = NULL;
6257 size_t idx;
6258 char *str;
6259
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006260 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01006261 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006262 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006263
Denys Vlasenko29301232018-12-11 15:29:32 +01006264 s = zbc_program_num(r, &n, false);
6265 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006266
6267 if (BC_PROG_NUM(r, n))
Denys Vlasenko29301232018-12-11 15:29:32 +01006268 s = zbc_num_stream(n, &G.prog.strmb);
Gavin Howard01055ba2018-11-03 11:00:21 -06006269 else {
6270 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006271 str = *bc_program_str(idx);
Denys Vlasenko00d77792018-11-30 23:13:42 +01006272 printf("%s", str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006273 }
6274
Denys Vlasenko29301232018-12-11 15:29:32 +01006275 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006276}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006277#define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006278
Denys Vlasenko29301232018-12-11 15:29:32 +01006279static BC_STATUS zbc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006280{
6281 BcStatus s;
6282 BcResult *opnd;
6283 BcNum *num = NULL;
6284 unsigned long val;
6285
Denys Vlasenko29301232018-12-11 15:29:32 +01006286 s = zbc_program_prep(&opnd, &num);
6287 if (s) RETURN_STATUS(s);
6288 s = zbc_num_ulong(num, &val);
6289 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006290
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006291 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006292
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006293 if (G.prog.stack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006294 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006295 if (G.prog.stack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006296 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006297 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006298
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006299 bc_vec_npop(&G.prog.stack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006300
Denys Vlasenko29301232018-12-11 15:29:32 +01006301 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006302}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006303#define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006304
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006305static BC_STATUS zbc_program_execStr(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06006306 bool cond)
6307{
6308 BcStatus s = BC_STATUS_SUCCESS;
6309 BcResult *r;
6310 char **str;
6311 BcFunc *f;
6312 BcParse prs;
6313 BcInstPtr ip;
6314 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006315
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006316 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006317 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006318
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006319 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006320
6321 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006322 BcNum *n = n; // for compiler
6323 bool exec;
6324 char *name;
6325 char *then_name = bc_program_name(code, bgn);
6326 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006327
6328 if (code[*bgn] == BC_PARSE_STREND)
6329 (*bgn) += 1;
6330 else
6331 else_name = bc_program_name(code, bgn);
6332
6333 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006334 name = then_name;
6335 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006336 exec = true;
6337 name = else_name;
6338 }
6339
6340 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006341 BcVec *v;
6342 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006343 n = bc_vec_top(v);
6344 }
6345
6346 free(then_name);
6347 free(else_name);
6348
6349 if (!exec) goto exit;
6350 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006351 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006352 goto exit;
6353 }
6354
6355 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006356 } else {
6357 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006358 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006359 } else if (r->t == BC_RESULT_VAR) {
6360 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006361 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006362 if (s || !BC_PROG_STR(n)) goto exit;
6363 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006364 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006365 goto exit;
6366 }
6367
6368 fidx = sidx + BC_PROG_REQ_FUNCS;
6369
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006370 str = bc_program_str(sidx);
6371 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006372
6373 if (f->code.len == 0) {
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006374 bc_parse_create(&prs, fidx);
Denys Vlasenkof86e9602018-12-14 17:01:56 +01006375 s = zbc_parse_text_init(&prs, *str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006376 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006377 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006378 if (s) goto err;
6379
6380 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006381 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06006382 goto err;
6383 }
6384
6385 bc_parse_free(&prs);
6386 }
6387
6388 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006389 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006390 ip.func = fidx;
6391
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006392 bc_vec_pop(&G.prog.results);
6393 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006394
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006395 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006396
6397err:
6398 bc_parse_free(&prs);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006399 f = bc_program_func(fidx);
Denys Vlasenko7d628012018-12-04 21:46:47 +01006400 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06006401exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006402 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006403 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006404}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006405#define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006406#endif // ENABLE_DC
6407
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006408static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006409{
Gavin Howard01055ba2018-11-03 11:00:21 -06006410 BcResult res;
6411 unsigned long val;
6412
6413 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6414 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006415 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006416 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006417 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006418 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006419 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006420
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006421 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006422 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006423 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006424}
6425
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006426static void bc_program_addFunc(char *name, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06006427{
Gavin Howard01055ba2018-11-03 11:00:21 -06006428 BcId entry, *entry_ptr;
6429 BcFunc f;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006430 int inserted;
Gavin Howard01055ba2018-11-03 11:00:21 -06006431
6432 entry.name = name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006433 entry.idx = G.prog.fns.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006434
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006435 inserted = bc_map_insert(&G.prog.fn_map, &entry, idx);
6436 if (!inserted) free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06006437
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006438 entry_ptr = bc_vec_item(&G.prog.fn_map, *idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006439 *idx = entry_ptr->idx;
6440
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006441 if (!inserted) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006442
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006443 BcFunc *func = bc_program_func(entry_ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006444
6445 // We need to reset these, so the function can be repopulated.
6446 func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01006447 bc_vec_pop_all(&func->autos);
6448 bc_vec_pop_all(&func->code);
6449 bc_vec_pop_all(&func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06006450 }
6451 else {
6452 bc_func_init(&f);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006453 bc_vec_push(&G.prog.fns, &f);
Gavin Howard01055ba2018-11-03 11:00:21 -06006454 }
6455}
6456
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006457static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006458{
Gavin Howard01055ba2018-11-03 11:00:21 -06006459 BcResult r, *ptr;
6460 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006461 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006462 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006463 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006464
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006465 while (ip->idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006466 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06006467 char inst = code[(ip->idx)++];
6468
Denys Vlasenko99b37622018-12-15 20:06:59 +01006469 dbg_exec("inst:%d", inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006470 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006471#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006472 case BC_INST_JUMP_ZERO: {
6473 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006474 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006475 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006476 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006477 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006478 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006479 if (!zero) {
6480 bc_program_index(code, &ip->idx);
6481 break;
6482 }
6483 // else: fall through
6484 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006485 case BC_INST_JUMP: {
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006486 size_t idx = bc_program_index(code, &ip->idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006487 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006488 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006489 ip->idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006490 break;
6491 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006492 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006493 dbg_exec("BC_INST_CALL:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006494 s = zbc_program_call(code, &ip->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006495 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006496 case BC_INST_INC_PRE:
6497 case BC_INST_DEC_PRE:
6498 case BC_INST_INC_POST:
6499 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006500 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006501 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006502 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006503 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006504 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006505 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006506 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006507 case BC_INST_RET:
6508 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006509 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006510 s = zbc_program_return(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006511 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006512 case BC_INST_BOOL_OR:
6513 case BC_INST_BOOL_AND:
6514#endif // ENABLE_BC
6515 case BC_INST_REL_EQ:
6516 case BC_INST_REL_LE:
6517 case BC_INST_REL_GE:
6518 case BC_INST_REL_NE:
6519 case BC_INST_REL_LT:
6520 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006521 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006522 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006523 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006524 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006525 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006526 s = zbc_program_read();
Gavin Howard01055ba2018-11-03 11:00:21 -06006527 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006528 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006529 dbg_exec("BC_INST_VAR:");
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006530 s = zbc_program_pushVar(code, &ip->idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006531 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006532 case BC_INST_ARRAY_ELEM:
6533 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006534 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006535 s = zbc_program_pushArray(code, &ip->idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006536 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006537 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006538 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006539 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006540 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006541 case BC_INST_IBASE:
6542 case BC_INST_SCALE:
6543 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006544 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006545 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006546 case BC_INST_SCALE_FUNC:
6547 case BC_INST_LENGTH:
6548 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006549 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006550 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006551 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006552 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006553 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006554 r.t = BC_RESULT_CONSTANT;
6555 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006556 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006557 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006558 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006559 dbg_exec("BC_INST_POP:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006560 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006561 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006562 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006563 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006564 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006565 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006566 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006567 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006568 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006569 case BC_INST_PRINT:
6570 case BC_INST_PRINT_POP:
6571 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006572 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006573 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006574 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006575 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006576 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006577 r.t = BC_RESULT_STR;
6578 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006579 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006580 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006581 case BC_INST_POWER:
6582 case BC_INST_MULTIPLY:
6583 case BC_INST_DIVIDE:
6584 case BC_INST_MODULUS:
6585 case BC_INST_PLUS:
6586 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006587 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006588 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006589 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006590 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006591 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006592 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006593 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006594 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006595 if (!bc_num_cmp(num, &G.prog.zero))
6596 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006597 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006598 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006599 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006600 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006601 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006602 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006603 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006604#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006605 case BC_INST_ASSIGN_POWER:
6606 case BC_INST_ASSIGN_MULTIPLY:
6607 case BC_INST_ASSIGN_DIVIDE:
6608 case BC_INST_ASSIGN_MODULUS:
6609 case BC_INST_ASSIGN_PLUS:
6610 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006611#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006612 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006613 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006614 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006615 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006616#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006617 case BC_INST_MODEXP:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006618 s = zbc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006619 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006620 case BC_INST_DIVMOD:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006621 s = zbc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006622 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006623 case BC_INST_EXECUTE:
6624 case BC_INST_EXEC_COND:
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006625 s = zbc_program_execStr(code, &ip->idx, inst == BC_INST_EXEC_COND);
Gavin Howard01055ba2018-11-03 11:00:21 -06006626 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006627 case BC_INST_PRINT_STACK: {
6628 size_t idx;
6629 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006630 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006631 if (s) break;
6632 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006633 break;
6634 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006635 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006636 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006637 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006638 case BC_INST_STACK_LEN:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006639 bc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006640 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006641 case BC_INST_DUPLICATE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006642 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006643 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006644 ptr = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006645 bc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006646 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006647 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006648 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006649 BcResult *ptr2;
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006650 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006651 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006652 ptr = bc_vec_item_rev(&G.prog.results, 0);
6653 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006654 memcpy(&r, ptr, sizeof(BcResult));
6655 memcpy(ptr, ptr2, sizeof(BcResult));
6656 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006657 break;
6658 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006659 case BC_INST_ASCIIFY:
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006660 s = zbc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006661 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006662 case BC_INST_PRINT_STREAM:
Denys Vlasenko29301232018-12-11 15:29:32 +01006663 s = zbc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006664 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006665 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006666 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006667 bool copy = inst == BC_INST_LOAD;
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006668 s = zbc_program_pushVar(code, &ip->idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006669 break;
6670 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006671 case BC_INST_PUSH_TO_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006672 char *name = bc_program_name(code, &ip->idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006673 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006674 free(name);
6675 break;
6676 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006677 case BC_INST_QUIT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006678 dbg_exec("BC_INST_NEG:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006679 if (G.prog.stack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006680 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01006681 bc_vec_npop(&G.prog.stack, 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006682 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006683 case BC_INST_NQUIT:
Denys Vlasenko29301232018-12-11 15:29:32 +01006684 s = zbc_program_nquit();
Gavin Howard01055ba2018-11-03 11:00:21 -06006685 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006686#endif // ENABLE_DC
6687 }
6688
Denys Vlasenkod38af482018-12-04 19:11:02 +01006689 if (s || G_interrupt) {
6690 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006691 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006692 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006693
Denys Vlasenkoc5774a32018-12-17 01:22:53 +01006694 fflush_and_check();
6695
Gavin Howard01055ba2018-11-03 11:00:21 -06006696 // If the stack has changed, pointers may be invalid.
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006697 ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006698 func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006699 code = func->code.v;
6700 }
6701
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006702 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006703}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006704#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006705
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006706static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006707{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006708 char *lenv;
6709 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006710
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006711 lenv = getenv(var);
6712 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006713 if (!lenv) return len;
6714
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006715 len = bb_strtou(lenv, NULL, 10) - 1;
6716 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006717 len = BC_NUM_PRINT_WIDTH;
6718
6719 return len;
6720}
6721
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006722static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006723{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006724 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006725
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006726 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6727 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006728 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006729
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006730 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006731 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoec603182018-12-17 10:34:02 +01006732 s = zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006733 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006734 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006735 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006736 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006737 break;
6738 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006739 }
6740
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006741 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006742 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006743}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006744#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006745
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006746static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
Gavin Howard01055ba2018-11-03 11:00:21 -06006747{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006748 // So far bc/dc have no way to include a file from another file,
6749 // therefore we know G.prog.file == NULL on entry
6750 //const char *sv_file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006751 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006752
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006753 G.prog.file = filename;
6754 G.input_fp = fp;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006755 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06006756
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006757 do {
6758 s = zbc_vm_process("");
6759 // We do not stop looping on errors here if reading stdin.
6760 // Example: start interactive bc and enter "return".
6761 // It should say "'return' not in a function"
6762 // but should not exit.
6763 } while (G.input_fp == stdin);
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006764 G.prog.file = NULL;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006765 RETURN_STATUS(s);
6766}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006767#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006768
6769static BC_STATUS zbc_vm_file(const char *file)
6770{
6771 BcStatus s;
6772 FILE *fp;
6773
6774 fp = xfopen_for_read(file);
6775 s = zbc_vm_execute_FILE(fp, file);
6776 fclose(fp);
6777
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006778 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006779}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006780#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006781
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006782#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01006783static void bc_vm_info(void)
6784{
6785 printf("%s "BB_VER"\n"
6786 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
6787 , applet_name);
6788}
6789
6790static void bc_args(char **argv)
6791{
6792 unsigned opts;
6793 int i;
6794
6795 GETOPT_RESET();
6796#if ENABLE_FEATURE_BC_LONG_OPTIONS
6797 opts = option_mask32 |= getopt32long(argv, "wvsqli",
6798 "warn\0" No_argument "w"
6799 "version\0" No_argument "v"
6800 "standard\0" No_argument "s"
6801 "quiet\0" No_argument "q"
6802 "mathlib\0" No_argument "l"
6803 "interactive\0" No_argument "i"
6804 );
6805#else
6806 opts = option_mask32 |= getopt32(argv, "wvsqli");
6807#endif
6808 if (getenv("POSIXLY_CORRECT"))
6809 option_mask32 |= BC_FLAG_S;
6810
6811 if (opts & BC_FLAG_V) {
6812 bc_vm_info();
6813 exit(0);
6814 }
6815
6816 for (i = optind; argv[i]; ++i)
6817 bc_vec_push(&G.files, argv + i);
6818}
6819
6820static void bc_vm_envArgs(void)
6821{
6822 BcVec v;
6823 char *buf;
6824 char *env_args = getenv("BC_ENV_ARGS");
6825
6826 if (!env_args) return;
6827
6828 G.env_args = xstrdup(env_args);
6829 buf = G.env_args;
6830
6831 bc_vec_init(&v, sizeof(char *), NULL);
6832
6833 while (*(buf = skip_whitespace(buf)) != '\0') {
6834 bc_vec_push(&v, &buf);
6835 buf = skip_non_whitespace(buf);
6836 if (!*buf)
6837 break;
6838 *buf++ = '\0';
6839 }
6840
6841 // NULL terminate, and pass argv[] so that first arg is argv[1]
6842 if (sizeof(int) == sizeof(char*)) {
6843 bc_vec_push(&v, &const_int_0);
6844 } else {
6845 static char *const nullptr = NULL;
6846 bc_vec_push(&v, &nullptr);
6847 }
6848 bc_args(((char **)v.v) - 1);
6849
6850 bc_vec_free(&v);
6851}
6852
6853static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006854 "scale=20"
6855"\n" "define e(x){"
6856"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006857////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
6858//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
6859//e(-.998896): GNU:.36828580434569428695
6860// above code:.36828580434569428696
6861// actual value:.3682858043456942869594...
6862// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006863"\n" "b=ibase"
6864"\n" "ibase=A"
6865"\n" "if(x<0){"
6866"\n" "n=1"
6867"\n" "x=-x"
6868"\n" "}"
6869"\n" "s=scale"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006870"\n" "r=6+s+.44*x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006871"\n" "scale=scale(x)+1"
6872"\n" "while(x>1){"
6873"\n" "d+=1"
6874"\n" "x/=2"
6875"\n" "scale+=1"
6876"\n" "}"
6877"\n" "scale=r"
6878"\n" "r=x+1"
6879"\n" "p=x"
6880"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006881"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006882"\n" "p*=x"
6883"\n" "f*=i"
6884"\n" "v=p/f"
6885"\n" "r+=v"
6886"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006887"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006888"\n" "scale=s"
6889"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006890"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006891"\n" "return(r/1)"
6892"\n" "}"
6893"\n" "define l(x){"
6894"\n" "auto b,s,r,p,a,q,i,v"
6895"\n" "b=ibase"
6896"\n" "ibase=A"
6897"\n" "if(x<=0){"
6898"\n" "r=(1-10^scale)/1"
6899"\n" "ibase=b"
6900"\n" "return(r)"
6901"\n" "}"
6902"\n" "s=scale"
6903"\n" "scale+=6"
6904"\n" "p=2"
6905"\n" "while(x>=2){"
6906"\n" "p*=2"
6907"\n" "x=sqrt(x)"
6908"\n" "}"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006909"\n" "while(x<=.5){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006910"\n" "p*=2"
6911"\n" "x=sqrt(x)"
6912"\n" "}"
6913"\n" "r=a=(x-1)/(x+1)"
6914"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006915"\n" "v=1"
6916"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006917"\n" "a*=q"
6918"\n" "v=a/i"
6919"\n" "r+=v"
6920"\n" "}"
6921"\n" "r*=p"
6922"\n" "scale=s"
6923"\n" "ibase=b"
6924"\n" "return(r/1)"
6925"\n" "}"
6926"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01006927"\n" "auto b,s,r,a,q,i"
6928"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006929"\n" "b=ibase"
6930"\n" "ibase=A"
6931"\n" "s=scale"
6932"\n" "scale=1.1*s+2"
6933"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006934"\n" "scale=0"
6935"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006936"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006937"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006938"\n" "scale=s+2"
6939"\n" "r=a=x"
6940"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006941"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006942"\n" "a*=q/(i*(i-1))"
6943"\n" "r+=a"
6944"\n" "}"
6945"\n" "scale=s"
6946"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006947"\n" "return(r/1)"
6948"\n" "}"
6949"\n" "define c(x){"
6950"\n" "auto b,s"
6951"\n" "b=ibase"
6952"\n" "ibase=A"
6953"\n" "s=scale"
6954"\n" "scale*=1.2"
6955"\n" "x=s(2*a(1)+x)"
6956"\n" "scale=s"
6957"\n" "ibase=b"
6958"\n" "return(x/1)"
6959"\n" "}"
6960"\n" "define a(x){"
6961"\n" "auto b,s,r,n,a,m,t,f,i,u"
6962"\n" "b=ibase"
6963"\n" "ibase=A"
6964"\n" "n=1"
6965"\n" "if(x<0){"
6966"\n" "n=-1"
6967"\n" "x=-x"
6968"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006969"\n" "if(scale<65){"
6970"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
6971"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006972"\n" "}"
6973"\n" "s=scale"
6974"\n" "if(x>.2){"
6975"\n" "scale+=5"
6976"\n" "a=a(.2)"
6977"\n" "}"
6978"\n" "scale=s+3"
6979"\n" "while(x>.2){"
6980"\n" "m+=1"
6981"\n" "x=(x-.2)/(1+.2*x)"
6982"\n" "}"
6983"\n" "r=u=x"
6984"\n" "f=-x*x"
6985"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006986"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006987"\n" "u*=f"
6988"\n" "t=u/i"
6989"\n" "r+=t"
6990"\n" "}"
6991"\n" "scale=s"
6992"\n" "ibase=b"
6993"\n" "return((m*a+r)/n)"
6994"\n" "}"
6995"\n" "define j(n,x){"
6996"\n" "auto b,s,o,a,i,v,f"
6997"\n" "b=ibase"
6998"\n" "ibase=A"
6999"\n" "s=scale"
7000"\n" "scale=0"
7001"\n" "n/=1"
7002"\n" "if(n<0){"
7003"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01007004"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007005"\n" "}"
7006"\n" "a=1"
7007"\n" "for(i=2;i<=n;++i)a*=i"
7008"\n" "scale=1.5*s"
7009"\n" "a=(x^n)/2^n/a"
7010"\n" "r=v=1"
7011"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01007012"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007013"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007014"\n" "v=v*f/i/(n+i)"
7015"\n" "r+=v"
7016"\n" "}"
7017"\n" "scale=s"
7018"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007019"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007020"\n" "return(a*r/1)"
7021"\n" "}"
7022};
7023#endif // ENABLE_BC
7024
Denys Vlasenko19f11072018-12-12 22:48:19 +01007025static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007026{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007027 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06007028 size_t i;
7029
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007030#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01007031 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007032 // We know that internal library is not buggy,
7033 // thus error checking is normally disabled.
7034# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01007035 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01007036 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01007037 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007038 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007039#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007040
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007041 s = BC_STATUS_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007042 for (i = 0; !s && i < G.files.len; ++i)
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007043 s = zbc_vm_file(*((char **) bc_vec_item(&G.files, i)));
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007044 if (ENABLE_FEATURE_CLEAN_UP && s && !G_ttyin) {
7045 // Debug config, non-interactive mode:
7046 // return all the way back to main.
7047 // Non-debug builds do not come here, they exit.
Denys Vlasenko19f11072018-12-12 22:48:19 +01007048 RETURN_STATUS(s);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01007049 }
Gavin Howard01055ba2018-11-03 11:00:21 -06007050
Denys Vlasenko91cde952018-12-10 20:56:08 +01007051 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007052 s = zbc_vm_execute_FILE(stdin, /*filename:*/ NULL);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007053
Denys Vlasenko19f11072018-12-12 22:48:19 +01007054 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007055}
Denys Vlasenkoec603182018-12-17 10:34:02 +01007056#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06007057
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007058#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007059static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007060{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007061 bc_num_free(&G.prog.ib);
7062 bc_num_free(&G.prog.ob);
7063 bc_num_free(&G.prog.hexb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007064# if ENABLE_DC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007065 bc_num_free(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007066# endif
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007067 bc_vec_free(&G.prog.fns);
7068 bc_vec_free(&G.prog.fn_map);
7069 bc_vec_free(&G.prog.vars);
7070 bc_vec_free(&G.prog.var_map);
7071 bc_vec_free(&G.prog.arrs);
7072 bc_vec_free(&G.prog.arr_map);
7073 bc_vec_free(&G.prog.strs);
7074 bc_vec_free(&G.prog.consts);
7075 bc_vec_free(&G.prog.results);
7076 bc_vec_free(&G.prog.stack);
7077 bc_num_free(&G.prog.last);
7078 bc_num_free(&G.prog.zero);
7079 bc_num_free(&G.prog.one);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007080 bc_vec_free(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007081}
7082
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007083static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007084{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007085 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007086 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007087 bc_parse_free(&G.prs);
7088 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06007089}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007090#endif
7091
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007092static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007093{
7094 size_t idx;
7095 BcInstPtr ip;
7096
Denys Vlasenko82269122018-12-14 16:30:56 +01007097 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007098 memset(&ip, 0, sizeof(BcInstPtr));
7099
Denys Vlasenko82269122018-12-14 16:30:56 +01007100 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007101 bc_num_init_DEF_SIZE(&G.prog.ib);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007102 bc_num_ten(&G.prog.ib);
7103 G.prog.ib_t = 10;
7104
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007105 bc_num_init_DEF_SIZE(&G.prog.ob);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007106 bc_num_ten(&G.prog.ob);
7107 G.prog.ob_t = 10;
7108
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007109 bc_num_init_DEF_SIZE(&G.prog.hexb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007110 bc_num_ten(&G.prog.hexb);
7111 G.prog.hexb.num[0] = 6;
7112
7113#if ENABLE_DC
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007114 bc_num_init_DEF_SIZE(&G.prog.strmb);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007115 bc_num_ulong2num(&G.prog.strmb, UCHAR_MAX + 1);
7116#endif
7117
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007118 bc_num_init_DEF_SIZE(&G.prog.last);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007119 //bc_num_zero(&G.prog.last); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007120
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007121 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007122 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007123
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007124 bc_num_init_DEF_SIZE(&G.prog.one);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007125 bc_num_one(&G.prog.one);
7126
7127 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007128 bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007129
Denys Vlasenko1f67e932018-12-03 00:08:59 +01007130 bc_program_addFunc(xstrdup("(main)"), &idx);
7131 bc_program_addFunc(xstrdup("(read)"), &idx);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007132
7133 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007134 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007135
7136 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007137 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007138
7139 bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);
7140 bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);
7141 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
7142 bc_vec_init(&G.prog.stack, sizeof(BcInstPtr), NULL);
7143 bc_vec_push(&G.prog.stack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007144
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007145 bc_char_vec_init(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007146}
Gavin Howard01055ba2018-11-03 11:00:21 -06007147
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007148static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007149{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007150#if ENABLE_FEATURE_EDITING
7151 G.line_input_state = new_line_input_t(DO_HISTORY);
7152#endif
7153 G.prog.len = bc_vm_envLen(env_len);
7154
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007155 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007156 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007157 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007158 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007159
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007160//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7161//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007162 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007163#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007164 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007165 // With SA_RESTART, most system calls will restart
7166 // (IOW: they won't fail with EINTR).
7167 // In particular, this means ^C won't cause
7168 // stdout to get into "error state" if SIGINT hits
7169 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007170 //
7171 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007172 // will only be handled after [Enter] since read()
7173 // from stdin is not interrupted by ^C either,
7174 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007175 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007176 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7177
7178 // Without SA_RESTART, this exhibits a bug:
7179 // "while (1) print 1" and try ^C-ing it.
7180 // Intermittently, instead of returning to input line,
7181 // you'll get "output error: Interrupted system call"
7182 // and exit.
7183 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007184#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007185 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007186 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007187 return 0; // "not a tty"
7188}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007189
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007190static BcStatus bc_vm_run(void)
7191{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007192 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007193#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007194 if (G_exiting) // it was actually "halt" or "quit"
7195 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007196 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007197# if ENABLE_FEATURE_EDITING
7198 free_line_input_t(G.line_input_state);
7199# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007200 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007201#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007202 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007203 return st;
7204}
7205
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007206#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007207int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007208int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007209{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007210 int is_tty;
7211
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007212 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007213
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007214 is_tty = bc_vm_init("BC_LINE_LENGTH");
7215
7216 bc_args(argv);
7217
7218 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7219 bc_vm_info();
7220
7221 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007222}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007223#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007224
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007225#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007226int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007227int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007228{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007229 int noscript;
7230
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007231 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007232
7233 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7234 // 1 char wider than bc from the same package.
7235 // Both default width, and xC_LINE_LENGTH=N are wider:
7236 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007237 // |1234\ |
7238 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007239 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007240 // |123\ |
7241 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007242 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007243 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007244
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007245 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7246 noscript = BC_FLAG_I;
7247 for (;;) {
7248 int n = getopt(argc, argv, "e:f:x");
7249 if (n <= 0)
7250 break;
7251 switch (n) {
7252 case 'e':
7253 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007254 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007255 if (n) return n;
7256 break;
7257 case 'f':
7258 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007259 n = zbc_vm_file(optarg);
7260 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007261 break;
7262 case 'x':
7263 option_mask32 |= DC_FLAG_X;
7264 break;
7265 default:
7266 bb_show_usage();
7267 }
7268 }
7269 argv += optind;
7270
7271 while (*argv) {
7272 noscript = 0;
7273 bc_vec_push(&G.files, argv++);
7274 }
7275
7276 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7277
7278 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007279}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007280#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007281
7282#endif // not DC_SMALL