blob: eba8aa272c06280c6b336d7077a108b441b7d296 [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 Vlasenko09fe0aa2018-12-18 16:32:25 +0100113//usage: "[-sqlw] FILE..."
Gavin Howard01055ba2018-11-03 11:00:21 -0600114//usage:
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100115//usage:#define bc_full_usage "\n"
116//usage: "\nArbitrary precision calculator"
117//usage: "\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100118///////: "\n -i Interactive" - has no effect for now
119//usage: "\n -q Quiet"
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100120//usage: "\n -l Load standard math library"
121//usage: "\n -s Be POSIX compatible"
Denys Vlasenko9721f6c2018-12-02 20:34:03 +0100122//usage: "\n -w Warn if extensions are used"
123///////: "\n -v Version"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100124//usage: "\n"
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100125//usage: "\n$BC_LINE_LENGTH changes output width"
Gavin Howard01055ba2018-11-03 11:00:21 -0600126//usage:
127//usage:#define bc_example_usage
128//usage: "3 + 4.129\n"
129//usage: "1903 - 2893\n"
130//usage: "-129 * 213.28935\n"
131//usage: "12 / -1932\n"
132//usage: "12 % 12\n"
133//usage: "34 ^ 189\n"
134//usage: "scale = 13\n"
135//usage: "ibase = 2\n"
136//usage: "obase = A\n"
137//usage:
138//usage:#define dc_trivial_usage
Denys Vlasenko6e7c65f2018-12-08 19:34:35 +0100139//usage: IF_NOT_FEATURE_DC_SMALL("[-x] ")"[-eSCRIPT]... [-fFILE]... [FILE]..."
Gavin Howard01055ba2018-11-03 11:00:21 -0600140//usage:
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +0100141//usage:#define dc_full_usage "\n"
142//usage: "\nTiny RPN calculator. Operations:"
Denys Vlasenko6e7c65f2018-12-08 19:34:35 +0100143//usage: "\n+, -, *, /, %, ~, ^," IF_NOT_FEATURE_DC_SMALL(" |,")
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100144//usage: "\np - print top of the stack (without popping)"
145//usage: "\nf - print entire stack"
146//usage: "\nk - pop the value and set the precision"
147//usage: "\ni - pop the value and set input radix"
148//usage: "\no - pop the value and set output radix"
149//usage: "\nExamples: dc -e'2 2 + p' -> 4, dc -e'8 8 * 2 2 + / p' -> 16"
Gavin Howard01055ba2018-11-03 11:00:21 -0600150//usage:
151//usage:#define dc_example_usage
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100152//usage: "$ dc -e'2 2 + p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600153//usage: "4\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100154//usage: "$ dc -e'8 8 \\* 2 2 + / p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600155//usage: "16\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100156//usage: "$ dc -e'0 1 & p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600157//usage: "0\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100158//usage: "$ dc -e'0 1 | p'\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600159//usage: "1\n"
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100160//usage: "$ echo '72 9 / 8 * p' | dc\n"
Gavin Howard01055ba2018-11-03 11:00:21 -0600161//usage: "64\n"
162
163#include "libbb.h"
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100164#include "common_bufsiz.h"
Gavin Howard01055ba2018-11-03 11:00:21 -0600165
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +0100166#if ENABLE_FEATURE_DC_SMALL
167# include "dc.c"
168#else
169
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100170#define DEBUG_LEXER 0
Denys Vlasenko99b37622018-12-15 20:06:59 +0100171#define DEBUG_EXEC 0
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100172
173#if DEBUG_LEXER
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100174static uint8_t lex_indent;
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100175#define dbg_lex(...) \
176 do { \
177 fprintf(stderr, "%*s", lex_indent, ""); \
178 bb_error_msg(__VA_ARGS__); \
179 } while (0)
180#define dbg_lex_enter(...) \
181 do { \
182 dbg_lex(__VA_ARGS__); \
183 lex_indent++; \
184 } while (0)
185#define dbg_lex_done(...) \
186 do { \
187 lex_indent--; \
188 dbg_lex(__VA_ARGS__); \
189 } while (0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100190#else
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100191# define dbg_lex(...) ((void)0)
192# define dbg_lex_enter(...) ((void)0)
193# define dbg_lex_done(...) ((void)0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100194#endif
195
Denys Vlasenko99b37622018-12-15 20:06:59 +0100196#if DEBUG_EXEC
197# define dbg_exec(...) bb_error_msg(__VA_ARGS__)
198#else
199# define dbg_exec(...) ((void)0)
200#endif
201
Gavin Howard01055ba2018-11-03 11:00:21 -0600202typedef enum BcStatus {
Denys Vlasenko60cf7472018-12-04 20:05:28 +0100203 BC_STATUS_SUCCESS = 0,
204 BC_STATUS_FAILURE = 1,
Denys Vlasenkob402ff82018-12-11 15:45:15 +0100205 BC_STATUS_PARSE_EMPTY_EXP = 2, // bc_parse_expr_empty_ok() uses this
Gavin Howard01055ba2018-11-03 11:00:21 -0600206} BcStatus;
207
Gavin Howard01055ba2018-11-03 11:00:21 -0600208#define BC_VEC_INVALID_IDX ((size_t) -1)
209#define BC_VEC_START_CAP (1 << 5)
210
Denys Vlasenko5ba55f12018-12-10 15:37:14 +0100211typedef void (*BcVecFree)(void *) FAST_FUNC;
Gavin Howard01055ba2018-11-03 11:00:21 -0600212
213typedef struct BcVec {
214 char *v;
215 size_t len;
216 size_t cap;
217 size_t size;
218 BcVecFree dtor;
219} BcVec;
220
Gavin Howard01055ba2018-11-03 11:00:21 -0600221typedef signed char BcDig;
222
223typedef struct BcNum {
224 BcDig *restrict num;
225 size_t rdx;
226 size_t len;
227 size_t cap;
228 bool neg;
229} BcNum;
230
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100231#define BC_NUM_MAX_IBASE ((unsigned long) 16)
232// larger value might speed up BIGNUM calculations a bit:
233#define BC_NUM_DEF_SIZE (16)
234#define BC_NUM_PRINT_WIDTH (69)
Gavin Howard01055ba2018-11-03 11:00:21 -0600235
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100236#define BC_NUM_KARATSUBA_LEN (32)
Gavin Howard01055ba2018-11-03 11:00:21 -0600237
Gavin Howard01055ba2018-11-03 11:00:21 -0600238typedef enum BcInst {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100239#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600240 BC_INST_INC_PRE,
241 BC_INST_DEC_PRE,
242 BC_INST_INC_POST,
243 BC_INST_DEC_POST,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100244#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600245
246 BC_INST_NEG,
247
248 BC_INST_POWER,
249 BC_INST_MULTIPLY,
250 BC_INST_DIVIDE,
251 BC_INST_MODULUS,
252 BC_INST_PLUS,
253 BC_INST_MINUS,
254
255 BC_INST_REL_EQ,
256 BC_INST_REL_LE,
257 BC_INST_REL_GE,
258 BC_INST_REL_NE,
259 BC_INST_REL_LT,
260 BC_INST_REL_GT,
261
262 BC_INST_BOOL_NOT,
263 BC_INST_BOOL_OR,
264 BC_INST_BOOL_AND,
265
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100266#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600267 BC_INST_ASSIGN_POWER,
268 BC_INST_ASSIGN_MULTIPLY,
269 BC_INST_ASSIGN_DIVIDE,
270 BC_INST_ASSIGN_MODULUS,
271 BC_INST_ASSIGN_PLUS,
272 BC_INST_ASSIGN_MINUS,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100273#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600274 BC_INST_ASSIGN,
275
276 BC_INST_NUM,
277 BC_INST_VAR,
278 BC_INST_ARRAY_ELEM,
279 BC_INST_ARRAY,
280
281 BC_INST_SCALE_FUNC,
282 BC_INST_IBASE,
283 BC_INST_SCALE,
284 BC_INST_LAST,
285 BC_INST_LENGTH,
286 BC_INST_READ,
287 BC_INST_OBASE,
288 BC_INST_SQRT,
289
290 BC_INST_PRINT,
291 BC_INST_PRINT_POP,
292 BC_INST_STR,
293 BC_INST_PRINT_STR,
294
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100295#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600296 BC_INST_JUMP,
297 BC_INST_JUMP_ZERO,
298
299 BC_INST_CALL,
300
301 BC_INST_RET,
302 BC_INST_RET0,
303
304 BC_INST_HALT,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100305#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600306
307 BC_INST_POP,
308 BC_INST_POP_EXEC,
309
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100310#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600311 BC_INST_MODEXP,
312 BC_INST_DIVMOD,
313
314 BC_INST_EXECUTE,
315 BC_INST_EXEC_COND,
316
317 BC_INST_ASCIIFY,
318 BC_INST_PRINT_STREAM,
319
320 BC_INST_PRINT_STACK,
321 BC_INST_CLEAR_STACK,
322 BC_INST_STACK_LEN,
323 BC_INST_DUPLICATE,
324 BC_INST_SWAP,
325
326 BC_INST_LOAD,
327 BC_INST_PUSH_VAR,
328 BC_INST_PUSH_TO_VAR,
329
330 BC_INST_QUIT,
331 BC_INST_NQUIT,
332
333 BC_INST_INVALID = -1,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100334#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600335} BcInst;
336
337typedef struct BcId {
338 char *name;
339 size_t idx;
340} BcId;
341
342typedef struct BcFunc {
343 BcVec code;
344 BcVec labels;
345 size_t nparams;
346 BcVec autos;
347} BcFunc;
348
349typedef enum BcResultType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600350 BC_RESULT_TEMP,
351
352 BC_RESULT_VAR,
353 BC_RESULT_ARRAY_ELEM,
354 BC_RESULT_ARRAY,
355
356 BC_RESULT_STR,
357
358 BC_RESULT_IBASE,
359 BC_RESULT_SCALE,
360 BC_RESULT_LAST,
361
362 // These are between to calculate ibase, obase, and last from instructions.
363 BC_RESULT_CONSTANT,
364 BC_RESULT_ONE,
365
366 BC_RESULT_OBASE,
Gavin Howard01055ba2018-11-03 11:00:21 -0600367} BcResultType;
368
369typedef union BcResultData {
370 BcNum n;
371 BcVec v;
372 BcId id;
373} BcResultData;
374
375typedef struct BcResult {
376 BcResultType t;
377 BcResultData d;
378} BcResult;
379
380typedef struct BcInstPtr {
381 size_t func;
382 size_t idx;
383 size_t len;
384} BcInstPtr;
385
Gavin Howard01055ba2018-11-03 11:00:21 -0600386// BC_LEX_NEG is not used in lexing; it is only for parsing.
387typedef enum BcLexType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600388 BC_LEX_EOF,
389 BC_LEX_INVALID,
390
391 BC_LEX_OP_INC,
392 BC_LEX_OP_DEC,
393
394 BC_LEX_NEG,
395
396 BC_LEX_OP_POWER,
397 BC_LEX_OP_MULTIPLY,
398 BC_LEX_OP_DIVIDE,
399 BC_LEX_OP_MODULUS,
400 BC_LEX_OP_PLUS,
401 BC_LEX_OP_MINUS,
402
403 BC_LEX_OP_REL_EQ,
404 BC_LEX_OP_REL_LE,
405 BC_LEX_OP_REL_GE,
406 BC_LEX_OP_REL_NE,
407 BC_LEX_OP_REL_LT,
408 BC_LEX_OP_REL_GT,
409
410 BC_LEX_OP_BOOL_NOT,
411 BC_LEX_OP_BOOL_OR,
412 BC_LEX_OP_BOOL_AND,
413
414 BC_LEX_OP_ASSIGN_POWER,
415 BC_LEX_OP_ASSIGN_MULTIPLY,
416 BC_LEX_OP_ASSIGN_DIVIDE,
417 BC_LEX_OP_ASSIGN_MODULUS,
418 BC_LEX_OP_ASSIGN_PLUS,
419 BC_LEX_OP_ASSIGN_MINUS,
420 BC_LEX_OP_ASSIGN,
421
422 BC_LEX_NLINE,
423 BC_LEX_WHITESPACE,
424
425 BC_LEX_LPAREN,
426 BC_LEX_RPAREN,
427
428 BC_LEX_LBRACKET,
429 BC_LEX_COMMA,
430 BC_LEX_RBRACKET,
431
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100432 BC_LEX_LBRACE, // '{' is 0x7B, '}' is 0x7D,
Gavin Howard01055ba2018-11-03 11:00:21 -0600433 BC_LEX_SCOLON,
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100434 BC_LEX_RBRACE, // should be LBRACE+2: code uses (c - '{' + BC_LEX_LBRACE)
Gavin Howard01055ba2018-11-03 11:00:21 -0600435
436 BC_LEX_STR,
437 BC_LEX_NAME,
438 BC_LEX_NUMBER,
439
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100440 BC_LEX_KEY_1st_keyword,
441 BC_LEX_KEY_AUTO = BC_LEX_KEY_1st_keyword,
Gavin Howard01055ba2018-11-03 11:00:21 -0600442 BC_LEX_KEY_BREAK,
443 BC_LEX_KEY_CONTINUE,
444 BC_LEX_KEY_DEFINE,
445 BC_LEX_KEY_ELSE,
446 BC_LEX_KEY_FOR,
447 BC_LEX_KEY_HALT,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100448 // code uses "type - BC_LEX_KEY_IBASE + BC_INST_IBASE" construct,
449 BC_LEX_KEY_IBASE, // relative order should match for: BC_INST_IBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600450 BC_LEX_KEY_IF,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100451 BC_LEX_KEY_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600452 BC_LEX_KEY_LENGTH,
453 BC_LEX_KEY_LIMITS,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100454 BC_LEX_KEY_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600455 BC_LEX_KEY_PRINT,
456 BC_LEX_KEY_QUIT,
457 BC_LEX_KEY_READ,
458 BC_LEX_KEY_RETURN,
459 BC_LEX_KEY_SCALE,
460 BC_LEX_KEY_SQRT,
461 BC_LEX_KEY_WHILE,
462
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100463#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600464 BC_LEX_EQ_NO_REG,
465 BC_LEX_OP_MODEXP,
466 BC_LEX_OP_DIVMOD,
467
468 BC_LEX_COLON,
469 BC_LEX_ELSE,
470 BC_LEX_EXECUTE,
471 BC_LEX_PRINT_STACK,
472 BC_LEX_CLEAR_STACK,
473 BC_LEX_STACK_LEVEL,
474 BC_LEX_DUPLICATE,
475 BC_LEX_SWAP,
476 BC_LEX_POP,
477
478 BC_LEX_ASCIIFY,
479 BC_LEX_PRINT_STREAM,
480
481 BC_LEX_STORE_IBASE,
482 BC_LEX_STORE_SCALE,
483 BC_LEX_LOAD,
484 BC_LEX_LOAD_POP,
485 BC_LEX_STORE_PUSH,
486 BC_LEX_STORE_OBASE,
487 BC_LEX_PRINT_POP,
488 BC_LEX_NQUIT,
489 BC_LEX_SCALE_FACTOR,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100490#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600491} BcLexType;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100492// must match order of BC_LEX_KEY_foo etc above
493#if ENABLE_BC
494struct BcLexKeyword {
495 char name8[8];
496};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100497#define BC_LEX_KW_ENTRY(a, b) \
498 { .name8 = a /*, .posix = b */ }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100499static const struct BcLexKeyword bc_lex_kws[20] = {
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100500 BC_LEX_KW_ENTRY("auto" , 1), // 0
501 BC_LEX_KW_ENTRY("break" , 1), // 1
502 BC_LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
503 BC_LEX_KW_ENTRY("define" , 1), // 3
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100504 BC_LEX_KW_ENTRY("else" , 0), // 4
505 BC_LEX_KW_ENTRY("for" , 1), // 5
506 BC_LEX_KW_ENTRY("halt" , 0), // 6
507 BC_LEX_KW_ENTRY("ibase" , 1), // 7
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100508 BC_LEX_KW_ENTRY("if" , 1), // 8
509 BC_LEX_KW_ENTRY("last" , 0), // 9
510 BC_LEX_KW_ENTRY("length" , 1), // 10
511 BC_LEX_KW_ENTRY("limits" , 0), // 11
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100512 BC_LEX_KW_ENTRY("obase" , 1), // 12
513 BC_LEX_KW_ENTRY("print" , 0), // 13
514 BC_LEX_KW_ENTRY("quit" , 1), // 14
515 BC_LEX_KW_ENTRY("read" , 0), // 15
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100516 BC_LEX_KW_ENTRY("return" , 1), // 16
517 BC_LEX_KW_ENTRY("scale" , 1), // 17
518 BC_LEX_KW_ENTRY("sqrt" , 1), // 18
519 BC_LEX_KW_ENTRY("while" , 1), // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100520};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100521#undef BC_LEX_KW_ENTRY
Denys Vlasenko59d4ce92018-12-17 10:42:31 +0100522#define STRING_if (bc_lex_kws[8].name8)
523#define STRING_else (bc_lex_kws[4].name8)
524#define STRING_while (bc_lex_kws[19].name8)
525#define STRING_for (bc_lex_kws[5].name8)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100526enum {
527 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100528 | (1 << 0) // 0
529 | (1 << 1) // 1
530 | (0 << 2) // 2
531 | (1 << 3) // 3
532 | (0 << 4) // 4
533 | (1 << 5) // 5
534 | (0 << 6) // 6
535 | (1 << 7) // 7
536 | (1 << 8) // 8
537 | (0 << 9) // 9
538 | (1 << 10) // 10
539 | (0 << 11) // 11
540 | (1 << 12) // 12
541 | (0 << 13) // 13
542 | (1 << 14) // 14
543 | (0 << 15) // 15
544 | (1 << 16) // 16
545 | (1 << 17) // 17
546 | (1 << 18) // 18
547 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100548};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100549#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100550
551// This is a bit array that corresponds to token types. An entry is
552// true if the token is valid in an expression, false otherwise.
553// Used to figure out when expr parsing should stop *without error message*
554// - 0 element indicates this condition. 1 means "this token is to be eaten
555// as part of the expression", token can them still be determined to be invalid
556// by later processing.
557enum {
558#define EXBITS(a,b,c,d,e,f,g,h) \
559 ((uint64_t)((a << 0)+(b << 1)+(c << 2)+(d << 3)+(e << 4)+(f << 5)+(g << 6)+(h << 7)))
560 BC_PARSE_EXPRS_BITS = 0
561 + (EXBITS(0,0,1,1,1,1,1,1) << (0*8)) // 0: eof inval ++ -- - ^ * /
562 + (EXBITS(1,1,1,1,1,1,1,1) << (1*8)) // 8: % + - == <= >= != <
563 + (EXBITS(1,1,1,1,1,1,1,1) << (2*8)) // 16: > ! || && ^= *= /= %=
564 + (EXBITS(1,1,1,0,0,1,1,0) << (3*8)) // 24: += -= = NL WS ( ) [
565 + (EXBITS(0,0,0,0,0,0,1,1) << (4*8)) // 32: , ] { ; } STR NAME NUM
566 + (EXBITS(0,0,0,0,0,0,0,1) << (5*8)) // 40: auto break cont define else for halt ibase
567 + (EXBITS(0,1,1,1,1,0,0,1) << (6*8)) // 48: if last len limits obase print quit read - bug, why "limits" is allowed?
568 + (EXBITS(0,1,1,0,0,0,0,0) << (7*8)) // 56: return scale sqrt while
569#undef EXBITS
570};
571static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
572{
573#if ULONG_MAX > 0xffffffff
574 // 64-bit version (will not work correctly for 32-bit longs!)
575 return BC_PARSE_EXPRS_BITS & (1UL << i);
576#else
577 // 32-bit version
578 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
579 if (i >= 32) {
580 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
581 i &= 31;
582 }
583 return m & (1UL << i);
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100584#endif
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100585}
586
587// This is an array of data for operators that correspond to
588// [BC_LEX_OP_INC...BC_LEX_OP_ASSIGN] token types.
589static const uint8_t bc_parse_ops[] = {
590#define OP(p,l) ((int)(l) * 0x10 + (p))
591 OP(0, false), OP( 0, false ), // inc dec
592 OP(1, false), // neg
593 OP(2, false), // pow
594 OP(3, true ), OP( 3, true ), OP( 3, true ), // mul div mod
595 OP(4, true ), OP( 4, true ), // + -
596 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
597 OP(1, false), // not
598 OP(7, true ), OP( 7, true ), // or and
599 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
600 OP(5, false), OP( 5, false ), // -= =
601#undef OP
602};
603#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
604#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
605#endif // ENABLE_BC
606
607#if ENABLE_DC
608static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
609int8_t
610dc_parse_insts[] = {
611 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
612 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
613 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
614 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
615 BC_INST_INVALID, BC_INST_INVALID,
616 BC_INST_BOOL_NOT, BC_INST_INVALID, BC_INST_INVALID,
617 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
618 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
619 BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GT, BC_INST_INVALID,
620 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
621 BC_INST_INVALID, BC_INST_INVALID,
622 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
623 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
624 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
625 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
626 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
627 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
628 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
629 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
630 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
631 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
632 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
633 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
634};
635#endif // ENABLE_DC
636
Gavin Howard01055ba2018-11-03 11:00:21 -0600637
Gavin Howard01055ba2018-11-03 11:00:21 -0600638typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600639 const char *buf;
640 size_t i;
641 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600642 size_t len;
643 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600644 struct {
645 BcLexType t;
646 BcLexType last;
647 BcVec v;
648 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600649} BcLex;
650
Denys Vlasenko0154d782018-12-14 23:32:51 +0100651#define BC_PARSE_STREND ((char) UCHAR_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -0600652
Denys Vlasenko0154d782018-12-14 23:32:51 +0100653#define BC_PARSE_REL (1 << 0)
654#define BC_PARSE_PRINT (1 << 1)
655#define BC_PARSE_NOCALL (1 << 2)
656#define BC_PARSE_NOREAD (1 << 3)
657#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600658
Gavin Howard01055ba2018-11-03 11:00:21 -0600659typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600660 BcLex l;
661
Gavin Howard01055ba2018-11-03 11:00:21 -0600662 BcVec exits;
663 BcVec conds;
664
665 BcVec ops;
666
Gavin Howard01055ba2018-11-03 11:00:21 -0600667 BcFunc *func;
668 size_t fidx;
669
Denys Vlasenkoe9519e42018-12-16 17:06:07 +0100670 size_t in_funcdef;
Gavin Howard01055ba2018-11-03 11:00:21 -0600671} BcParse;
672
Gavin Howard01055ba2018-11-03 11:00:21 -0600673typedef struct BcProgram {
Gavin Howard01055ba2018-11-03 11:00:21 -0600674 size_t len;
675 size_t scale;
676
Gavin Howard01055ba2018-11-03 11:00:21 -0600677 size_t ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600678 size_t ob_t;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +0100679 BcNum ob;
Gavin Howard01055ba2018-11-03 11:00:21 -0600680
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100681#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600682 BcNum strmb;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100683#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600684
685 BcVec results;
686 BcVec stack;
687
688 BcVec fns;
689 BcVec fn_map;
690
691 BcVec vars;
692 BcVec var_map;
693
694 BcVec arrs;
695 BcVec arr_map;
696
697 BcVec strs;
698 BcVec consts;
699
700 const char *file;
701
702 BcNum last;
703 BcNum zero;
704 BcNum one;
705
706 size_t nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -0600707} BcProgram;
708
709#define BC_PROG_STACK(s, n) ((s)->len >= ((size_t) n))
710
711#define BC_PROG_MAIN (0)
712#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100713#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600714#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100715#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600716
717#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
718#define BC_PROG_NUM(r, n) \
719 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
720
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100721#define BC_FLAG_W (1 << 0)
722#define BC_FLAG_V (1 << 1)
723#define BC_FLAG_S (1 << 2)
724#define BC_FLAG_Q (1 << 3)
725#define BC_FLAG_L (1 << 4)
726#define BC_FLAG_I (1 << 5)
727#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600728
729#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
730#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
731
Denys Vlasenko64074a12018-12-07 15:50:14 +0100732#define BC_MAX_OBASE ((unsigned) 999)
733#define BC_MAX_DIM ((unsigned) INT_MAX)
734#define BC_MAX_SCALE ((unsigned) UINT_MAX)
735#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
736#define BC_MAX_NUM BC_MAX_STRING
737// Unused apart from "limits" message. Just show a "biggish number" there.
738//#define BC_MAX_NAME BC_MAX_STRING
739//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
740//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
741#define BC_MAX_NAME_STR "999999999"
742#define BC_MAX_EXP_STR "999999999"
743#define BC_MAX_VARS_STR "999999999"
744
745#define BC_MAX_OBASE_STR "999"
746
747#if INT_MAX == 2147483647
748# define BC_MAX_DIM_STR "2147483647"
749#elif INT_MAX == 9223372036854775807
750# define BC_MAX_DIM_STR "9223372036854775807"
751#else
752# error Strange INT_MAX
753#endif
754
755#if UINT_MAX == 4294967295
756# define BC_MAX_SCALE_STR "4294967295"
757# define BC_MAX_STRING_STR "4294967294"
758#elif UINT_MAX == 18446744073709551615
759# define BC_MAX_SCALE_STR "18446744073709551615"
760# define BC_MAX_STRING_STR "18446744073709551614"
761#else
762# error Strange UINT_MAX
763#endif
764#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600765
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100766struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100767 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100768 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100769 smallint in_read;
Gavin Howard01055ba2018-11-03 11:00:21 -0600770
771 BcParse prs;
772 BcProgram prog;
773
Denys Vlasenko5318f812018-12-05 17:48:01 +0100774 // For error messages. Can be set to current parsed line,
775 // or [TODO] to current executing line (can be before last parsed one)
776 unsigned err_line;
777
Gavin Howard01055ba2018-11-03 11:00:21 -0600778 BcVec files;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +0100779 BcVec input_buffer;
780 FILE *input_fp;
Gavin Howard01055ba2018-11-03 11:00:21 -0600781
782 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100783
784#if ENABLE_FEATURE_EDITING
785 line_input_t *line_input_state;
786#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100787} FIX_ALIASING;
788#define G (*ptr_to_globals)
789#define INIT_G() do { \
790 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
791} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100792#define FREE_G() do { \
793 FREE_PTR_TO_GLOBALS(); \
794} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100795#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
796#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100797#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100798#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100799# define G_interrupt bb_got_signal
800# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100801#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100802# define G_interrupt 0
803# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100804#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100805#if ENABLE_FEATURE_CLEAN_UP
806# define G_exiting G.exiting
807#else
808# define G_exiting 0
809#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100810#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100811#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100812
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100813// In configurations where errors abort instead of propagating error
814// return code up the call chain, functions returning BC_STATUS
815// actually don't return anything, they always succeed and return "void".
816// A macro wrapper is provided, which makes this statement work:
817// s = zbc_func(...)
818// and makes it visible to the compiler that s is always zero,
819// allowing compiler to optimize dead code after the statement.
820//
821// To make code more readable, each such function has a "z"
822// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
823//
824#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100825# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100826# define ERRORFUNC /*nothing*/
Denys Vlasenkoec603182018-12-17 10:34:02 +0100827# define IF_ERROR_RETURN_POSSIBLE(a) a
828# define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100829# define RETURN_STATUS(v) return (v)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100830# define COMMA_SUCCESS /*nothing*/
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100831#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100832# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100833# define ERRORFUNC NORETURN
Denys Vlasenkoec603182018-12-17 10:34:02 +0100834# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
835# define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100836# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100837# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100838#endif
839
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100840#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
841#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
842#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
843//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
844static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
845{
846 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
847}
848//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
849static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
850{
851 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
852}
853
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100854typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
855
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100856typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100857
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100858static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
859 BcNumBinaryOp op, size_t req);
860static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
861static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
862static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
863static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
864static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
865static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
866
867static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
868{
869 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
870 (void) scale;
871 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
872}
873
874static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
875{
876 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
877 (void) scale;
878 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
879}
880
881static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
882{
883 size_t req = BC_NUM_MREQ(a, b, scale);
884 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
885}
886
887static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
888{
889 size_t req = BC_NUM_MREQ(a, b, scale);
890 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
891}
892
893static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
894{
895 size_t req = BC_NUM_MREQ(a, b, scale);
896 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
897}
898
899static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
900{
901 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
902}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100903
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100904static const BcNumBinaryOp zbc_program_ops[] = {
905 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 -0600906};
Denys Vlasenkoec603182018-12-17 10:34:02 +0100907#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
908#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
909#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
910#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
911#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
912#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -0600913
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100914static void fflush_and_check(void)
915{
916 fflush_all();
917 if (ferror(stdout) || ferror(stderr))
918 bb_perror_msg_and_die("output error");
919}
920
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100921#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100922#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100923do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100924 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100925 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100926 return BC_STATUS_FAILURE; \
927} while (0)
928#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100929#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100930#endif
931
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100932static void quit(void) NORETURN;
933static void quit(void)
934{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100935 if (ferror(stdin))
936 bb_perror_msg_and_die("input error");
937 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100938 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100939 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100940}
941
Denys Vlasenko5318f812018-12-05 17:48:01 +0100942static void bc_verror_msg(const char *fmt, va_list p)
943{
Denys Vlasenko82269122018-12-14 16:30:56 +0100944 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +0100945 if (G.prog.file) {
946 sv = applet_name;
947 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
948 }
949 bb_verror_msg(fmt, p, NULL);
950 if (G.prog.file) {
951 free((char*)applet_name);
952 applet_name = sv;
953 }
954}
955
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100956static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100957{
958 va_list p;
959
960 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100961 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100962 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +0100963
Denys Vlasenkoec603182018-12-17 10:34:02 +0100964 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
965 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
966 exit(1);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100967}
968
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100969#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100970static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100971{
972 va_list p;
973
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100974 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100975 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100976 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100977
978 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100979 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100980 va_end(p);
981
982 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100983 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100984 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenkoec603182018-12-17 10:34:02 +0100985 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
986 return BC_STATUS_FAILURE;
987 exit(1);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100988}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100989#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100990
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100991// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
992// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100993// function must not have caller-cleaned parameters on stack.
994// Unfortunately, vararg function API does exactly that on most arches.
995// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100996static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100997{
Denys Vlasenkoec603182018-12-17 10:34:02 +0100998 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100999}
1000static ERRORFUNC int bc_error_bad_character(char c)
1001{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001002 if (!c)
1003 IF_ERROR_RETURN_POSSIBLE(return) bc_error("NUL character");
Denys Vlasenkoec603182018-12-17 10:34:02 +01001004 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001005}
1006static ERRORFUNC int bc_error_bad_expression(void)
1007{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001008 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001009}
1010static ERRORFUNC int bc_error_bad_token(void)
1011{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001012 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001013}
1014static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1015{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001016 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001017}
1018static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1019{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001020 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001021}
1022static ERRORFUNC int bc_error_nested_read_call(void)
1023{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001024 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001025}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001026#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001027static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001028{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001029 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001030}
Denys Vlasenko00646792018-12-05 18:12:27 +01001031static int bc_POSIX_does_not_allow(const char *msg)
1032{
1033 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1034}
1035static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1036{
1037 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1038}
1039static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1040{
1041 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1042}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001043#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001044
Gavin Howard01055ba2018-11-03 11:00:21 -06001045static void bc_vec_grow(BcVec *v, size_t n)
1046{
1047 size_t cap = v->cap * 2;
1048 while (cap < v->len + n) cap *= 2;
1049 v->v = xrealloc(v->v, v->size * cap);
1050 v->cap = cap;
1051}
1052
1053static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1054{
1055 v->size = esize;
1056 v->cap = BC_VEC_START_CAP;
1057 v->len = 0;
1058 v->dtor = dtor;
1059 v->v = xmalloc(esize * BC_VEC_START_CAP);
1060}
1061
Denys Vlasenko7d628012018-12-04 21:46:47 +01001062static void bc_char_vec_init(BcVec *v)
1063{
1064 bc_vec_init(v, sizeof(char), NULL);
1065}
1066
Gavin Howard01055ba2018-11-03 11:00:21 -06001067static void bc_vec_expand(BcVec *v, size_t req)
1068{
1069 if (v->cap < req) {
1070 v->v = xrealloc(v->v, v->size * req);
1071 v->cap = req;
1072 }
1073}
1074
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001075static void bc_vec_pop(BcVec *v)
1076{
1077 v->len--;
1078 if (v->dtor)
1079 v->dtor(v->v + (v->size * v->len));
1080}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001081
Gavin Howard01055ba2018-11-03 11:00:21 -06001082static void bc_vec_npop(BcVec *v, size_t n)
1083{
1084 if (!v->dtor)
1085 v->len -= n;
1086 else {
1087 size_t len = v->len - n;
1088 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1089 }
1090}
1091
Denys Vlasenko7d628012018-12-04 21:46:47 +01001092static void bc_vec_pop_all(BcVec *v)
1093{
1094 bc_vec_npop(v, v->len);
1095}
1096
Gavin Howard01055ba2018-11-03 11:00:21 -06001097static void bc_vec_push(BcVec *v, const void *data)
1098{
1099 if (v->len + 1 > v->cap) bc_vec_grow(v, 1);
1100 memmove(v->v + (v->size * v->len), data, v->size);
1101 v->len += 1;
1102}
1103
1104static void bc_vec_pushByte(BcVec *v, char data)
1105{
1106 bc_vec_push(v, &data);
1107}
1108
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001109static void bc_vec_pushZeroByte(BcVec *v)
1110{
1111 //bc_vec_pushByte(v, '\0');
1112 // better:
1113 bc_vec_push(v, &const_int_0);
1114}
1115
Gavin Howard01055ba2018-11-03 11:00:21 -06001116static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1117{
1118 if (idx == v->len)
1119 bc_vec_push(v, data);
1120 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001121 char *ptr;
1122
1123 if (v->len == v->cap) bc_vec_grow(v, 1);
1124
1125 ptr = v->v + v->size * idx;
1126
1127 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1128 memmove(ptr, data, v->size);
1129 }
1130}
1131
1132static void bc_vec_string(BcVec *v, size_t len, const char *str)
1133{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001134 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001135 bc_vec_expand(v, len + 1);
1136 memcpy(v->v, str, len);
1137 v->len = len;
1138
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001139 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001140}
1141
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001142#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001143static void bc_vec_concat(BcVec *v, const char *str)
1144{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001145 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001146
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001147 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001148
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001149 slen = strlen(str);
1150 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001151
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001152 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001153 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001154
1155 v->len = len;
1156}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001157#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001158
1159static void *bc_vec_item(const BcVec *v, size_t idx)
1160{
1161 return v->v + v->size * idx;
1162}
1163
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001164static char** bc_program_str(size_t idx)
1165{
1166 return bc_vec_item(&G.prog.strs, idx);
1167}
1168
1169static BcFunc* bc_program_func(size_t idx)
1170{
1171 return bc_vec_item(&G.prog.fns, idx);
1172}
1173
Gavin Howard01055ba2018-11-03 11:00:21 -06001174static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1175{
1176 return v->v + v->size * (v->len - idx - 1);
1177}
1178
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001179static void *bc_vec_top(const BcVec *v)
1180{
1181 return v->v + v->size * (v->len - 1);
1182}
1183
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001184static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001185{
1186 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001187 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001188 free(v->v);
1189}
1190
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001191static int bc_id_cmp(const void *e1, const void *e2)
1192{
1193 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1194}
1195
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001196static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001197{
1198 free(((BcId *) id)->name);
1199}
1200
Gavin Howard01055ba2018-11-03 11:00:21 -06001201static size_t bc_map_find(const BcVec *v, const void *ptr)
1202{
1203 size_t low = 0, high = v->len;
1204
1205 while (low < high) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001206 size_t mid = (low + high) / 2;
1207 BcId *id = bc_vec_item(v, mid);
1208 int result = bc_id_cmp(ptr, id);
1209
1210 if (result == 0)
1211 return mid;
1212 else if (result < 0)
1213 high = mid;
1214 else
1215 low = mid + 1;
1216 }
1217
1218 return low;
1219}
1220
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001221static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001222{
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001223 size_t n = *i = bc_map_find(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001224
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001225 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001226 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001227 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1228 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001229 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001230 bc_vec_pushAt(v, ptr, n);
1231 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001232}
1233
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001234#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06001235static size_t bc_map_index(const BcVec *v, const void *ptr)
1236{
1237 size_t i = bc_map_find(v, ptr);
1238 if (i >= v->len) return BC_VEC_INVALID_IDX;
1239 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1240}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001241#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001242
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001243static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001244{
1245 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1246 || c > 0x7e
1247 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001248 bc_error_fmt("illegal character 0x%02x", c);
1249 return 1;
1250 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001251 return 0;
1252}
1253
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001254// Note: it _appends_ data from fp to vec.
1255static void bc_read_line(BcVec *vec, FILE *fp)
Gavin Howard01055ba2018-11-03 11:00:21 -06001256{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001257 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001258 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001259
Gavin Howard01055ba2018-11-03 11:00:21 -06001260#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001261 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001262 intr:
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001263 if (fp != stdin) {
1264 // ^C while running a script (bc SCRIPT): die.
1265 // We do not return to interactive prompt:
1266 // user might be running us from a shell,
1267 // and SCRIPT might be intended to terminate
1268 // (e.g. contain a "halt" stmt).
1269 // ^C dropping user into a bc prompt instead of
1270 // the shell would be unexpected.
1271 xfunc_die();
1272 }
1273 // ^C while interactive input
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001274 G_interrupt = 0;
1275 // GNU bc says "interrupted execution."
1276 // GNU dc says "Interrupt!"
1277 fputs("\ninterrupted execution\n", stderr);
1278 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001279
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001280# if ENABLE_FEATURE_EDITING
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001281 if (G_ttyin && fp == stdin) {
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001282 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001283# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001284 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1285 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1286 if (n == 0) // ^C
1287 goto intr;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001288 bc_vec_pushZeroByte(vec); // ^D or EOF (or error)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001289 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001290 }
1291 i = 0;
1292 for (;;) {
1293 char c = line_buf[i++];
1294 if (!c) break;
1295 if (bad_input_byte(c)) goto again;
1296 }
1297 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001298# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001299 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001300# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001301#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001302 {
1303 int c;
1304 bool bad_chars = 0;
1305 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001306
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001307 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001308#if ENABLE_FEATURE_BC_SIGNALS
1309 if (G_interrupt) {
1310 // ^C was pressed: ignore entire line, get another one
1311 vec->len = len;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001312 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001313 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001314#endif
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001315 do c = fgetc(fp); while (c == '\0');
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001316 if (c == EOF) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001317 if (ferror(fp))
1318 bb_perror_msg_and_die("input error");
1319 // Note: EOF does not append '\n'
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001320 break;
1321 }
1322 bad_chars |= bad_input_byte(c);
1323 bc_vec_pushByte(vec, (char)c);
1324 } while (c != '\n');
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001325
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001326 if (bad_chars) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001327 // Bad chars on this line
1328 if (!G.prog.file) { // stdin
1329 // ignore entire line, get another one
1330 vec->len = len;
1331 goto again;
1332 }
1333 bb_perror_msg_and_die("file '%s' is not text", G.prog.file);
Denys Vlasenkoed849352018-12-06 10:26:13 +01001334 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001335 bc_vec_pushZeroByte(vec);
1336 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001337}
1338
Gavin Howard01055ba2018-11-03 11:00:21 -06001339static void bc_num_setToZero(BcNum *n, size_t scale)
1340{
1341 n->len = 0;
1342 n->neg = false;
1343 n->rdx = scale;
1344}
1345
1346static void bc_num_zero(BcNum *n)
1347{
1348 bc_num_setToZero(n, 0);
1349}
1350
1351static void bc_num_one(BcNum *n)
1352{
1353 bc_num_setToZero(n, 0);
1354 n->len = 1;
1355 n->num[0] = 1;
1356}
1357
Denys Vlasenko3129f702018-12-09 12:04:44 +01001358// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001359static void bc_num_init(BcNum *n, size_t req)
1360{
1361 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001362 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001363 n->num = xmalloc(req);
1364 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001365 n->rdx = 0;
1366 n->len = 0;
1367 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001368}
1369
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001370static void bc_num_init_DEF_SIZE(BcNum *n)
1371{
1372 bc_num_init(n, BC_NUM_DEF_SIZE);
1373}
1374
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001375static void bc_num_expand(BcNum *n, size_t req)
1376{
1377 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1378 if (req > n->cap) {
1379 n->num = xrealloc(n->num, req);
1380 n->cap = req;
1381 }
1382}
1383
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001384static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001385{
1386 free(((BcNum *) num)->num);
1387}
1388
1389static void bc_num_copy(BcNum *d, BcNum *s)
1390{
1391 if (d != s) {
1392 bc_num_expand(d, s->cap);
1393 d->len = s->len;
1394 d->neg = s->neg;
1395 d->rdx = s->rdx;
1396 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1397 }
1398}
1399
Denys Vlasenko29301232018-12-11 15:29:32 +01001400static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001401{
1402 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001403 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001404
Denys Vlasenko29301232018-12-11 15:29:32 +01001405 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001406
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001407 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001408 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001409
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001410 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001411 pow *= 10;
1412
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001413 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001414 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001415 prev = result;
1416 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001417 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001418 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001419
Denys Vlasenko29301232018-12-11 15:29:32 +01001420 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001421}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001422#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001423
1424static void bc_num_ulong2num(BcNum *n, unsigned long val)
1425{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001426 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001427
1428 bc_num_zero(n);
1429
1430 if (val == 0) return;
1431
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001432 if (ULONG_MAX == 0xffffffffUL)
1433 bc_num_expand(n, 10); // 10 digits: 4294967295
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001434 if (ULONG_MAX == 0xffffffffffffffffULL)
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001435 bc_num_expand(n, 20); // 20 digits: 18446744073709551615
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001436 BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001437
1438 ptr = n->num;
1439 for (;;) {
1440 n->len++;
1441 *ptr++ = val % 10;
1442 val /= 10;
1443 if (val == 0) break;
1444 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001445}
1446
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001447static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b, size_t len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001448{
1449 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001450 for (i = 0; i < len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001451 a[i] -= b[i];
1452 for (j = i; a[j] < 0;) {
1453 a[j++] += 10;
1454 a[j] -= 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06001455 }
1456 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001457}
1458
1459static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1460{
Denys Vlasenko4113e1f2018-12-18 00:39:24 +01001461 size_t i = len;
1462 for (;;) {
1463 int c;
1464 if (i == 0)
1465 return 0;
1466 i--;
1467 c = a[i] - b[i];
1468 if (c != 0) {
1469 i++;
1470 if (c < 0)
1471 return -i;
1472 return i;
1473 }
1474 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001475}
1476
1477static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1478{
1479 size_t i, min, a_int, b_int, diff;
1480 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001481 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001482 ssize_t cmp;
1483
1484 if (a == b) return 0;
1485 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1486 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001487
1488 if (a->neg != b->neg) // signs of a and b differ
1489 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1490 return (int)b->neg - (int)a->neg;
1491 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001492
1493 a_int = BC_NUM_INT(a);
1494 b_int = BC_NUM_INT(b);
1495 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001496
1497 if (a_int != 0) return (ssize_t) a_int;
1498
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001499 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001500 if (a_max) {
1501 min = b->rdx;
1502 diff = a->rdx - b->rdx;
1503 max_num = a->num + diff;
1504 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001505 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1506 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001507 min = a->rdx;
1508 diff = b->rdx - a->rdx;
1509 max_num = b->num + diff;
1510 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001511 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001512 }
1513
1514 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001515 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001516
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001517 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001518 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001519 }
1520
1521 return 0;
1522}
1523
1524static void bc_num_truncate(BcNum *n, size_t places)
1525{
1526 if (places == 0) return;
1527
1528 n->rdx -= places;
1529
1530 if (n->len != 0) {
1531 n->len -= places;
1532 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1533 }
1534}
1535
1536static void bc_num_extend(BcNum *n, size_t places)
1537{
1538 size_t len = n->len + places;
1539
1540 if (places != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001541 if (n->cap < len) bc_num_expand(n, len);
1542
1543 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1544 memset(n->num, 0, sizeof(BcDig) * places);
1545
1546 n->len += places;
1547 n->rdx += places;
1548 }
1549}
1550
1551static void bc_num_clean(BcNum *n)
1552{
1553 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1554 if (n->len == 0)
1555 n->neg = false;
1556 else if (n->len < n->rdx)
1557 n->len = n->rdx;
1558}
1559
1560static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1561{
1562 if (n->rdx < scale)
1563 bc_num_extend(n, scale - n->rdx);
1564 else
1565 bc_num_truncate(n, n->rdx - scale);
1566
1567 bc_num_clean(n);
1568 if (n->len != 0) n->neg = !neg1 != !neg2;
1569}
1570
1571static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1572 BcNum *restrict b)
1573{
1574 if (idx < n->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001575 b->len = n->len - idx;
1576 a->len = idx;
1577 a->rdx = b->rdx = 0;
1578
1579 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1580 memcpy(a->num, n->num, idx * sizeof(BcDig));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001581 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001582 bc_num_zero(b);
1583 bc_num_copy(a, n);
1584 }
1585
1586 bc_num_clean(a);
1587 bc_num_clean(b);
1588}
1589
Denys Vlasenko29301232018-12-11 15:29:32 +01001590static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001591{
Denys Vlasenko29301232018-12-11 15:29:32 +01001592 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001593
1594 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1595 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1596 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001597 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001598 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001599
1600 if (n->rdx >= places)
1601 n->rdx -= places;
1602 else {
1603 bc_num_extend(n, places - n->rdx);
1604 n->rdx = 0;
1605 }
1606
1607 bc_num_clean(n);
1608
Denys Vlasenko29301232018-12-11 15:29:32 +01001609 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001610}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001611#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001612
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001613static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001614{
1615 BcNum one;
1616 BcDig num[2];
1617
1618 one.cap = 2;
1619 one.num = num;
1620 bc_num_one(&one);
1621
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001622 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001623}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001624#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001625
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001626static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001627{
1628 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1629 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001630 unsigned carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001631
1632 // Because this function doesn't need to use scale (per the bc spec),
1633 // I am hijacking it to say whether it's doing an add or a subtract.
1634
1635 if (a->len == 0) {
1636 bc_num_copy(c, b);
1637 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001638 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001639 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001640 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001641 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001642 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001643 }
1644
1645 c->neg = a->neg;
1646 c->rdx = BC_MAX(a->rdx, b->rdx);
1647 min_rdx = BC_MIN(a->rdx, b->rdx);
1648 c->len = 0;
1649
1650 if (a->rdx > b->rdx) {
1651 diff = a->rdx - b->rdx;
1652 ptr = a->num;
1653 ptr_a = a->num + diff;
1654 ptr_b = b->num;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001655 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001656 diff = b->rdx - a->rdx;
1657 ptr = b->num;
1658 ptr_a = a->num;
1659 ptr_b = b->num + diff;
1660 }
1661
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001662 ptr_c = c->num;
1663 for (i = 0; i < diff; ++i, ++c->len)
1664 ptr_c[i] = ptr[i];
Gavin Howard01055ba2018-11-03 11:00:21 -06001665
1666 ptr_c += diff;
1667 a_int = BC_NUM_INT(a);
1668 b_int = BC_NUM_INT(b);
1669
1670 if (a_int > b_int) {
1671 min_int = b_int;
1672 max = a_int;
1673 ptr = ptr_a;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001674 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001675 min_int = a_int;
1676 max = b_int;
1677 ptr = ptr_b;
1678 }
1679
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001680 carry = 0;
1681 for (i = 0; i < min_rdx + min_int; ++i) {
1682 unsigned in = (unsigned)ptr_a[i] + (unsigned)ptr_b[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001683 carry = in / 10;
1684 ptr_c[i] = (BcDig)(in % 10);
1685 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001686 for (; i < max + min_rdx; ++i) {
1687 unsigned in = (unsigned)ptr[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001688 carry = in / 10;
1689 ptr_c[i] = (BcDig)(in % 10);
1690 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001691 c->len += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06001692
1693 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1694
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001695 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001696}
1697
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001698static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001699{
Gavin Howard01055ba2018-11-03 11:00:21 -06001700 ssize_t cmp;
1701 BcNum *minuend, *subtrahend;
1702 size_t start;
1703 bool aneg, bneg, neg;
1704
1705 // Because this function doesn't need to use scale (per the bc spec),
1706 // I am hijacking it to say whether it's doing an add or a subtract.
1707
1708 if (a->len == 0) {
1709 bc_num_copy(c, b);
1710 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001711 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001712 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001713 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001714 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001715 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001716 }
1717
1718 aneg = a->neg;
1719 bneg = b->neg;
1720 a->neg = b->neg = false;
1721
1722 cmp = bc_num_cmp(a, b);
1723
1724 a->neg = aneg;
1725 b->neg = bneg;
1726
1727 if (cmp == 0) {
1728 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001729 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001730 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001731 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001732 neg = a->neg;
1733 minuend = a;
1734 subtrahend = b;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001735 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001736 neg = b->neg;
1737 if (sub) neg = !neg;
1738 minuend = b;
1739 subtrahend = a;
1740 }
1741
1742 bc_num_copy(c, minuend);
1743 c->neg = neg;
1744
1745 if (c->rdx < subtrahend->rdx) {
1746 bc_num_extend(c, subtrahend->rdx - c->rdx);
1747 start = 0;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001748 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06001749 start = c->rdx - subtrahend->rdx;
1750
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001751 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001752
1753 bc_num_clean(c);
1754
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001755 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001756}
1757
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001758static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001759 BcNum *restrict c)
Denys Vlasenkoec603182018-12-17 10:34:02 +01001760#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001761{
1762 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001763 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001764 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001765 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001766
Gavin Howard01055ba2018-11-03 11:00:21 -06001767 if (a->len == 0 || b->len == 0) {
1768 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001769 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001770 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001771 aone = BC_NUM_ONE(a);
1772 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001773 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001774 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001775 }
1776
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001777 if (a->len + b->len < BC_NUM_KARATSUBA_LEN
1778 || a->len < BC_NUM_KARATSUBA_LEN
1779 || b->len < BC_NUM_KARATSUBA_LEN
1780 ) {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001781 size_t i, j, len;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001782
Gavin Howard01055ba2018-11-03 11:00:21 -06001783 bc_num_expand(c, a->len + b->len + 1);
1784
1785 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001786 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001787
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001788 for (i = 0; i < b->len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001789 unsigned carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001790 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001791 unsigned in = c->num[i + j];
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001792 in += (unsigned)a->num[j] * (unsigned)b->num[i] + carry;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001793 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001794 carry = in / 10;
1795 c->num[i + j] = (BcDig)(in % 10);
1796 }
1797
1798 c->num[i + j] += (BcDig) carry;
1799 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001800
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001801#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001802 // a=2^1000000
1803 // a*a <- without check below, this will not be interruptible
1804 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001805#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001806 }
1807
1808 c->len = len;
1809
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001810 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001811 }
1812
1813 bc_num_init(&l1, max);
1814 bc_num_init(&h1, max);
1815 bc_num_init(&l2, max);
1816 bc_num_init(&h2, max);
1817 bc_num_init(&m1, max);
1818 bc_num_init(&m2, max);
1819 bc_num_init(&z0, max);
1820 bc_num_init(&z1, max);
1821 bc_num_init(&z2, max);
1822 bc_num_init(&temp, max + max);
1823
1824 bc_num_split(a, max2, &l1, &h1);
1825 bc_num_split(b, max2, &l2, &h2);
1826
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001827 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001828 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001829 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001830 if (s) goto err;
1831
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001832 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001833 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001834 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001835 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001836 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001837 if (s) goto err;
1838
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001839 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001840 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001841 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001842 if (s) goto err;
1843
Denys Vlasenko29301232018-12-11 15:29:32 +01001844 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001845 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001846 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001847 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001848 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001849 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001850 s = zbc_num_add(&temp, &z2, c, 0);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001851 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06001852 bc_num_free(&temp);
1853 bc_num_free(&z2);
1854 bc_num_free(&z1);
1855 bc_num_free(&z0);
1856 bc_num_free(&m2);
1857 bc_num_free(&m1);
1858 bc_num_free(&h2);
1859 bc_num_free(&l2);
1860 bc_num_free(&h1);
1861 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001862 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001863}
1864
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001865static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001866{
1867 BcStatus s;
1868 BcNum cpa, cpb;
1869 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1870
1871 scale = BC_MAX(scale, a->rdx);
1872 scale = BC_MAX(scale, b->rdx);
1873 scale = BC_MIN(a->rdx + b->rdx, scale);
1874 maxrdx = BC_MAX(maxrdx, scale);
1875
1876 bc_num_init(&cpa, a->len);
1877 bc_num_init(&cpb, b->len);
1878
1879 bc_num_copy(&cpa, a);
1880 bc_num_copy(&cpb, b);
1881 cpa.neg = cpb.neg = false;
1882
Denys Vlasenko29301232018-12-11 15:29:32 +01001883 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001884 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001885 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001886 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001887 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001888 if (s) goto err;
1889
1890 maxrdx += scale;
1891 bc_num_expand(c, c->len + maxrdx);
1892
1893 if (c->len < maxrdx) {
1894 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1895 c->len += maxrdx;
1896 }
1897
1898 c->rdx = maxrdx;
1899 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001900 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06001901 bc_num_free(&cpb);
1902 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001903 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001904}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001905#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001906
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001907static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001908{
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001909 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06001910 size_t len, end, i;
1911 BcNum cp;
Gavin Howard01055ba2018-11-03 11:00:21 -06001912
1913 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001914 RETURN_STATUS(bc_error("divide by zero"));
1915 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001916 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001917 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001918 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001919 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001920 bc_num_copy(c, a);
1921 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001922 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001923 }
1924
1925 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
1926 bc_num_copy(&cp, a);
1927 len = b->len;
1928
1929 if (len > cp.len) {
1930 bc_num_expand(&cp, len + 2);
1931 bc_num_extend(&cp, len - cp.len);
1932 }
1933
1934 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
1935 cp.rdx -= b->rdx;
1936 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
1937
1938 if (b->rdx == b->len) {
Denys Vlasenko71c82d12018-12-18 12:43:21 +01001939 for (;;) {
1940 if (len == 0) break;
1941 len--;
1942 if (b->num[len] != 0)
1943 break;
1944 }
1945 len++;
Gavin Howard01055ba2018-11-03 11:00:21 -06001946 }
1947
1948 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
1949
1950 // We want an extra zero in front to make things simpler.
1951 cp.num[cp.len++] = 0;
1952 end = cp.len - len;
1953
1954 bc_num_expand(c, cp.len);
1955
1956 bc_num_zero(c);
1957 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
1958 c->rdx = cp.rdx;
1959 c->len = cp.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06001960
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001961 s = BC_STATUS_SUCCESS;
1962 for (i = end - 1; i < end; --i) {
1963 BcDig *n, q;
Gavin Howard01055ba2018-11-03 11:00:21 -06001964 n = cp.num + i;
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001965 for (q = 0; n[len] != 0 || bc_num_compare(n, b->num, len) >= 0; ++q)
1966 bc_num_subArrays(n, b->num, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001967 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001968#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01001969 // a=2^100000
1970 // scale=40000
1971 // 1/a <- without check below, this will not be interruptible
1972 if (G_interrupt) {
1973 s = BC_STATUS_FAILURE;
1974 break;
1975 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001976#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001977 }
1978
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001979 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001980 bc_num_free(&cp);
1981
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001982 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001983}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001984#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001985
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001986static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06001987 BcNum *restrict d, size_t scale, size_t ts)
1988{
1989 BcStatus s;
1990 BcNum temp;
1991 bool neg;
1992
Denys Vlasenko60cf7472018-12-04 20:05:28 +01001993 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001994 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06001995
1996 if (a->len == 0) {
1997 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001998 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001999 }
2000
2001 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002002 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002003 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002004
2005 if (scale != 0) scale = ts;
2006
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002007 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002008 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002009 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002010 if (s) goto err;
2011
2012 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2013
2014 neg = d->neg;
2015 bc_num_retireMul(d, ts, a->neg, b->neg);
2016 d->neg = neg;
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002017 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002018 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002019 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002020}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002021#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002022
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002023static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002024{
2025 BcStatus s;
2026 BcNum c1;
2027 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2028
2029 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002030 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002031 bc_num_free(&c1);
2032
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002033 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002034}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002035#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002036
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002037static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002038{
2039 BcStatus s = BC_STATUS_SUCCESS;
2040 BcNum copy;
2041 unsigned long pow;
2042 size_t i, powrdx, resrdx;
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002043 bool neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06002044
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002045 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002046
2047 if (b->len == 0) {
2048 bc_num_one(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002049 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002050 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002051 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002052 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002053 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002054 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002055 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002056 if (!b->neg)
2057 bc_num_copy(c, a);
2058 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002059 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002060 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002061 }
2062
2063 neg = b->neg;
2064 b->neg = false;
2065
Denys Vlasenko29301232018-12-11 15:29:32 +01002066 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002067 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002068
2069 bc_num_init(&copy, a->len);
2070 bc_num_copy(&copy, a);
2071
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002072 if (!neg) {
2073 if (a->rdx > scale)
2074 scale = a->rdx;
2075 if (a->rdx * pow < scale)
2076 scale = a->rdx * pow;
2077 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002078
2079 b->neg = neg;
2080
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002081 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002082 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002083 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002084 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002085 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002086 //if (G_interrupt) {
2087 // s = BC_STATUS_FAILURE;
2088 // goto err;
2089 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002090 }
2091
Gavin Howard01055ba2018-11-03 11:00:21 -06002092 bc_num_copy(c, &copy);
2093
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002094 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002095 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002096 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002097 if (s) goto err;
2098
2099 if (pow & 1) {
2100 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002101 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002102 if (s) goto err;
2103 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002104 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002105 //if (G_interrupt) {
2106 // s = BC_STATUS_FAILURE;
2107 // goto err;
2108 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002109 }
2110
2111 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002112 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002113 if (s) goto err;
2114 }
2115
Gavin Howard01055ba2018-11-03 11:00:21 -06002116 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2117
2118 // We can't use bc_num_clean() here.
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002119 for (i = 0; i < c->len; ++i)
2120 if (c->num[i] != 0)
2121 goto skip;
2122 bc_num_setToZero(c, scale);
2123 skip:
Gavin Howard01055ba2018-11-03 11:00:21 -06002124
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002125 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002126 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002127 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002128}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002129#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002130
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002131static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002132 BcNumBinaryOp op, size_t req)
2133{
2134 BcStatus s;
2135 BcNum num2, *ptr_a, *ptr_b;
2136 bool init = false;
2137
2138 if (c == a) {
2139 ptr_a = &num2;
2140 memcpy(ptr_a, c, sizeof(BcNum));
2141 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002142 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002143 ptr_a = a;
2144
2145 if (c == b) {
2146 ptr_b = &num2;
2147 if (c != a) {
2148 memcpy(ptr_b, c, sizeof(BcNum));
2149 init = true;
2150 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002151 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002152 ptr_b = b;
2153
2154 if (init)
2155 bc_num_init(c, req);
2156 else
2157 bc_num_expand(c, req);
2158
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002159 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01002160 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002161
2162 if (init) bc_num_free(&num2);
2163
Denys Vlasenko29301232018-12-11 15:29:32 +01002164 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002165}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002166#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002167
Denys Vlasenko9311e012018-12-10 11:54:18 +01002168static bool bc_num_strValid(const char *val, size_t base)
2169{
2170 BcDig b;
2171 bool radix;
2172
2173 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2174 radix = false;
2175 for (;;) {
2176 BcDig c = *val++;
2177 if (c == '\0')
2178 break;
2179 if (c == '.') {
2180 if (radix) return false;
2181 radix = true;
2182 continue;
2183 }
2184 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2185 return false;
2186 }
2187 return true;
2188}
2189
2190// Note: n is already "bc_num_zero()"ed,
2191// leading zeroes in "val" are removed
2192static void bc_num_parseDecimal(BcNum *n, const char *val)
2193{
2194 size_t len, i;
2195 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002196
2197 len = strlen(val);
2198 if (len == 0)
2199 return;
2200
Denys Vlasenko9311e012018-12-10 11:54:18 +01002201 bc_num_expand(n, len);
2202
2203 ptr = strchr(val, '.');
2204
2205 n->rdx = 0;
2206 if (ptr != NULL)
2207 n->rdx = (size_t)((val + len) - (ptr + 1));
2208
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002209 for (i = 0; val[i]; ++i) {
2210 if (val[i] != '0' && val[i] != '.') {
2211 // Not entirely zero value - convert it, and exit
2212 i = len - 1;
2213 for (;;) {
2214 n->num[n->len] = val[i] - '0';
2215 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002216 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002217 if (i == 0) break;
2218 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002219 }
2220 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002221 }
2222 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002223 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002224}
2225
2226// Note: n is already "bc_num_zero()"ed,
2227// leading zeroes in "val" are removed
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002228static void bc_num_parseBase(BcNum *n, const char *val, unsigned base_t)
Denys Vlasenko9311e012018-12-10 11:54:18 +01002229{
2230 BcStatus s;
2231 BcNum temp, mult, result;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002232 BcNum base;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002233 BcDig c = '\0';
2234 unsigned long v;
2235 size_t i, digits;
2236
2237 for (i = 0; ; ++i) {
2238 if (val[i] == '\0')
2239 return;
2240 if (val[i] != '.' && val[i] != '0')
2241 break;
2242 }
2243
2244 bc_num_init_DEF_SIZE(&temp);
2245 bc_num_init_DEF_SIZE(&mult);
Denys Vlasenkod3401432018-12-18 17:00:35 +01002246//TODO: have BcNumSmall type, with static buffer
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002247 bc_num_init_DEF_SIZE(&base);
2248 bc_num_ulong2num(&base, base_t);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002249
2250 for (;;) {
2251 c = *val++;
2252 if (c == '\0') goto int_err;
2253 if (c == '.') break;
2254
2255 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2256
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002257 s = zbc_num_mul(n, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002258 if (s) goto int_err;
2259 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002260 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002261 if (s) goto int_err;
2262 }
2263
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002264 bc_num_init(&result, base.len);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002265 //bc_num_zero(&result); - already is
2266 bc_num_one(&mult);
2267
2268 digits = 0;
2269 for (;;) {
2270 c = *val++;
2271 if (c == '\0') break;
2272 digits++;
2273
2274 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2275
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002276 s = zbc_num_mul(&result, &base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002277 if (s) goto err;
2278 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002279 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002280 if (s) goto err;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002281 s = zbc_num_mul(&mult, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002282 if (s) goto err;
2283 }
2284
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002285 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002286 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002287 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002288 if (s) goto err;
2289
2290 if (n->len != 0) {
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002291 if (n->rdx < digits)
2292 bc_num_extend(n, digits - n->rdx);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002293 } else
2294 bc_num_zero(n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002295 err:
Denys Vlasenko9311e012018-12-10 11:54:18 +01002296 bc_num_free(&result);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002297 int_err:
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002298 bc_num_free(&base);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002299 bc_num_free(&mult);
2300 bc_num_free(&temp);
2301}
2302
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002303static BC_STATUS zbc_num_parse(BcNum *n, const char *val, unsigned base_t)
Gavin Howard01055ba2018-11-03 11:00:21 -06002304{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002305 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002306 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002307
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002308 bc_num_zero(n);
2309 while (*val == '0') val++;
2310
Gavin Howard01055ba2018-11-03 11:00:21 -06002311 if (base_t == 10)
2312 bc_num_parseDecimal(n, val);
2313 else
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002314 bc_num_parseBase(n, val, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002315
Denys Vlasenko29301232018-12-11 15:29:32 +01002316 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002317}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002318#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002319
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002320static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002321{
2322 BcStatus s;
2323 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2324 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2325 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2326
2327 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2328 bc_num_expand(b, req);
2329
2330 if (a->len == 0) {
2331 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002332 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002333 }
2334 if (a->neg) {
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002335 RETURN_STATUS(bc_error("negative number"));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002336 }
2337 if (BC_NUM_ONE(a)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002338 bc_num_one(b);
2339 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002340 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002341 }
2342
2343 scale = BC_MAX(scale, a->rdx) + 1;
2344 len = a->len + scale;
2345
2346 bc_num_init(&num1, len);
2347 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002348 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002349
2350 bc_num_one(&half);
2351 half.num[0] = 5;
2352 half.rdx = 1;
2353
2354 bc_num_init(&f, len);
2355 bc_num_init(&fprime, len);
2356
2357 x0 = &num1;
2358 x1 = &num2;
2359
2360 bc_num_one(x0);
2361 pow = BC_NUM_INT(a);
2362
2363 if (pow) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002364 if (pow & 1)
2365 x0->num[0] = 2;
2366 else
2367 x0->num[0] = 6;
2368
2369 pow -= 2 - (pow & 1);
2370
2371 bc_num_extend(x0, pow);
2372
2373 // Make sure to move the radix back.
2374 x0->rdx -= pow;
2375 }
2376
2377 x0->rdx = digs = digs1 = 0;
2378 resrdx = scale + 2;
2379 len = BC_NUM_INT(x0) + resrdx - 1;
2380
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002381 while (cmp != 0 || digs < len) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002382 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002383 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002384 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002385 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002386 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002387 if (s) goto err;
2388
2389 cmp = bc_num_cmp(x1, x0);
2390 digs = x1->len - (unsigned long long) llabs(cmp);
2391
2392 if (cmp == cmp2 && digs == digs1)
2393 times += 1;
2394 else
2395 times = 0;
2396
2397 resrdx += times > 4;
2398
2399 cmp2 = cmp1;
2400 cmp1 = cmp;
2401 digs1 = digs;
2402
2403 temp = x0;
2404 x0 = x1;
2405 x1 = temp;
2406 }
2407
Gavin Howard01055ba2018-11-03 11:00:21 -06002408 bc_num_copy(b, x0);
2409 scale -= 1;
2410 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002411 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002412 bc_num_free(&fprime);
2413 bc_num_free(&f);
2414 bc_num_free(&half);
2415 bc_num_free(&num2);
2416 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002417 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002418}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002419#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002420
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002421static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002422 size_t scale)
2423{
2424 BcStatus s;
2425 BcNum num2, *ptr_a;
2426 bool init = false;
2427 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2428
2429 if (c == a) {
2430 memcpy(&num2, c, sizeof(BcNum));
2431 ptr_a = &num2;
2432 bc_num_init(c, len);
2433 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002434 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06002435 ptr_a = a;
2436 bc_num_expand(c, len);
2437 }
2438
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002439 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002440
2441 if (init) bc_num_free(&num2);
2442
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002443 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002444}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002445#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002446
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002447#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002448static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002449{
2450 BcStatus s;
2451 BcNum base, exp, two, temp;
2452
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002453 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002454 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002455 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002456 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002457 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002458 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002459
2460 bc_num_expand(d, c->len);
2461 bc_num_init(&base, c->len);
2462 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002463 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002464 bc_num_init(&temp, b->len);
2465
2466 bc_num_one(&two);
2467 two.num[0] = 2;
2468 bc_num_one(d);
2469
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002470 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002471 if (s) goto err;
2472 bc_num_copy(&exp, b);
2473
2474 while (exp.len != 0) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002475 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002476 if (s) goto err;
2477
2478 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002479 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002480 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002481 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002482 if (s) goto err;
2483 }
2484
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002485 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002486 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002487 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002488 if (s) goto err;
2489 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002490 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002491 bc_num_free(&temp);
2492 bc_num_free(&two);
2493 bc_num_free(&exp);
2494 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002495 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002496}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002497#define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002498#endif // ENABLE_DC
2499
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002500#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002501static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002502{
2503 BcId a;
2504 size_t i;
2505
2506 for (i = 0; i < f->autos.len; ++i) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002507 if (strcmp(name, ((BcId *) bc_vec_item(&f->autos, i))->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002508 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002509 }
2510
2511 a.idx = var;
2512 a.name = name;
2513
2514 bc_vec_push(&f->autos, &a);
2515
Denys Vlasenko29301232018-12-11 15:29:32 +01002516 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002517}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002518#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002519#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002520
2521static void bc_func_init(BcFunc *f)
2522{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002523 bc_char_vec_init(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06002524 bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);
2525 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2526 f->nparams = 0;
2527}
2528
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002529static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002530{
2531 BcFunc *f = (BcFunc *) func;
2532 bc_vec_free(&f->code);
2533 bc_vec_free(&f->autos);
2534 bc_vec_free(&f->labels);
2535}
2536
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002537static void bc_array_expand(BcVec *a, size_t len);
2538
Gavin Howard01055ba2018-11-03 11:00:21 -06002539static void bc_array_init(BcVec *a, bool nums)
2540{
2541 if (nums)
2542 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2543 else
2544 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2545 bc_array_expand(a, 1);
2546}
2547
Gavin Howard01055ba2018-11-03 11:00:21 -06002548static void bc_array_expand(BcVec *a, size_t len)
2549{
2550 BcResultData data;
2551
2552 if (a->size == sizeof(BcNum) && a->dtor == bc_num_free) {
2553 while (len > a->len) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002554 bc_num_init_DEF_SIZE(&data.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002555 bc_vec_push(a, &data.n);
2556 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002557 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06002558 while (len > a->len) {
2559 bc_array_init(&data.v, true);
2560 bc_vec_push(a, &data.v);
2561 }
2562 }
2563}
2564
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002565static void bc_array_copy(BcVec *d, const BcVec *s)
2566{
2567 size_t i;
2568
2569 bc_vec_pop_all(d);
2570 bc_vec_expand(d, s->cap);
2571 d->len = s->len;
2572
2573 for (i = 0; i < s->len; ++i) {
2574 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i);
2575 bc_num_init(dnum, snum->len);
2576 bc_num_copy(dnum, snum);
2577 }
2578}
2579
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002580static FAST_FUNC void bc_string_free(void *string)
Gavin Howard01055ba2018-11-03 11:00:21 -06002581{
2582 free(*((char **) string));
2583}
2584
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002585#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06002586static void bc_result_copy(BcResult *d, BcResult *src)
2587{
2588 d->t = src->t;
2589
2590 switch (d->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002591 case BC_RESULT_TEMP:
2592 case BC_RESULT_IBASE:
2593 case BC_RESULT_SCALE:
2594 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002595 bc_num_init(&d->d.n, src->d.n.len);
2596 bc_num_copy(&d->d.n, &src->d.n);
2597 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002598 case BC_RESULT_VAR:
2599 case BC_RESULT_ARRAY:
2600 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002601 d->d.id.name = xstrdup(src->d.id.name);
2602 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002603 case BC_RESULT_CONSTANT:
2604 case BC_RESULT_LAST:
2605 case BC_RESULT_ONE:
2606 case BC_RESULT_STR:
Gavin Howard01055ba2018-11-03 11:00:21 -06002607 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2608 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002609 }
2610}
2611#endif // ENABLE_DC
2612
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002613static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002614{
2615 BcResult *r = (BcResult *) result;
2616
2617 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002618 case BC_RESULT_TEMP:
2619 case BC_RESULT_IBASE:
2620 case BC_RESULT_SCALE:
2621 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002622 bc_num_free(&r->d.n);
2623 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002624 case BC_RESULT_VAR:
2625 case BC_RESULT_ARRAY:
2626 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002627 free(r->d.id.name);
2628 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002629 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06002630 // Do nothing.
2631 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002632 }
2633}
2634
2635static void bc_lex_lineComment(BcLex *l)
2636{
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002637 // Try: echo -n '#foo' | bc
2638 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002639 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002640 i = l->i;
2641 while (i < l->len && l->buf[i] != '\n')
2642 i++;
2643 l->i = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002644}
2645
2646static void bc_lex_whitespace(BcLex *l)
2647{
Gavin Howard01055ba2018-11-03 11:00:21 -06002648 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002649 for (;;) {
2650 char c = l->buf[l->i];
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002651 if (c == '\n') // this is BC_LEX_NLINE, not BC_LEX_WHITESPACE
2652 break;
2653 if (!isspace(c))
Denys Vlasenko89198a92018-12-13 21:31:29 +01002654 break;
2655 l->i++;
2656 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002657}
2658
Denys Vlasenko29301232018-12-11 15:29:32 +01002659static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002660{
2661 const char *buf = l->buf + l->i;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002662 size_t len, i, ccnt;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002663 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002664
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002665 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002666 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002667 ccnt = i = 0;
2668 for (;;) {
2669 char c = buf[i];
2670 if (c == '\0')
2671 break;
2672 if (c == '\\' && buf[i + 1] == '\n') {
2673 i += 2;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002674 //number_of_backslashes++ - see comment below
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002675 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002676 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002677 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2678 if (c != '.') break;
2679 // if '.' was already seen, stop on second one:
2680 if (pt) break;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002681 pt = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06002682 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002683 // buf[i] is one of "0-9A-F."
2684 i++;
2685 if (c != '.')
2686 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002687 }
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002688 //ccnt is the number of chars in the number string, excluding possible
2689 //trailing "[\<newline>].[\<newline>]" (with any number of \<NL> repetitions).
2690 //i is buf[i] index of the first not-yet-parsed char after that.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002691 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002692
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002693 // This might overestimate the size, if there are "\<NL>"'s
2694 // in the number. Subtracting number_of_backslashes*2 correctly
2695 // is not that easy: consider that in the case of "NNN.\<NL>"
2696 // loop above will count "\<NL>" before it realizes it is not
2697 // in fact *inside* the number:
2698 len = ccnt + 1; // +1 byte for NUL termination
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002699
Denys Vlasenko64074a12018-12-07 15:50:14 +01002700 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2701 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2702 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002703 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002704 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002705
Denys Vlasenko7d628012018-12-04 21:46:47 +01002706 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002707 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002708 bc_vec_push(&l->t.v, &start);
2709
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002710 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002711 // If we have hit a backslash, skip it. We don't have
2712 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002713 if (*buf == '\\') {
2714 buf += 2;
2715 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002716 continue;
2717 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002718 bc_vec_push(&l->t.v, buf);
2719 buf++;
2720 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002721 }
2722
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002723 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002724
Denys Vlasenko29301232018-12-11 15:29:32 +01002725 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002726}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002727#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002728
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002729static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002730{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002731 size_t i;
2732 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002733
2734 l->t.t = BC_LEX_NAME;
2735
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002736 i = 0;
2737 buf = l->buf + l->i - 1;
2738 for (;;) {
2739 char c = buf[i];
2740 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2741 i++;
2742 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002743
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002744#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002745 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2746 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2747 if (i > BC_MAX_STRING)
2748 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2749 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002750#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002751 bc_vec_string(&l->t.v, i, buf);
2752
2753 // Increment the index. We minus 1 because it has already been incremented.
2754 l->i += i - 1;
2755
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002756 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002757}
2758
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002759static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002760{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002761 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002762}
2763
2764static void bc_lex_free(BcLex *l)
2765{
2766 bc_vec_free(&l->t.v);
2767}
2768
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002769static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002770{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002771 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002772 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002773}
2774
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002775IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2776IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002777
2778static BC_STATUS zcommon_lex_token(BcLex *l)
2779{
2780 if (IS_BC) {
2781 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2782 }
2783 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2784}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002785#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002786
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002787static bool bc_lex_more_input(BcLex *l)
2788{
2789 size_t str;
2790 bool comment;
2791
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002792 bc_vec_pop_all(&G.input_buffer);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002793
2794 // This loop is complex because the vm tries not to send any lines that end
2795 // with a backslash to the parser. The reason for that is because the parser
2796 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2797 // case, and for strings and comments, the parser will expect more stuff.
2798 comment = false;
2799 str = 0;
2800 for (;;) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002801 size_t prevlen = G.input_buffer.len;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002802 char *string;
2803
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002804 bc_read_line(&G.input_buffer, G.input_fp);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002805 // No more input means EOF
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002806 if (G.input_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002807 break;
2808
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002809 string = G.input_buffer.v + prevlen;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002810 while (*string) {
2811 char c = *string;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002812 if (string == G.input_buffer.v || string[-1] != '\\') {
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002813 if (IS_BC)
2814 str ^= (c == '"');
2815 else {
2816 if (c == ']')
2817 str -= 1;
2818 else if (c == '[')
2819 str += 1;
2820 }
2821 }
2822 string++;
2823 if (c == '/' && *string == '*') {
2824 comment = true;
2825 string++;
2826 continue;
2827 }
2828 if (c == '*' && *string == '/') {
2829 comment = false;
2830 string++;
2831 }
2832 }
2833 if (str != 0 || comment) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002834 G.input_buffer.len--; // backstep over the trailing NUL byte
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002835 continue;
2836 }
2837
2838 // Check for backslash+newline.
2839 // we do not check that last char is '\n' -
2840 // if it is not, then it's EOF, and looping back
2841 // to bc_read_line() will detect it:
2842 string -= 2;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002843 if (string >= G.input_buffer.v && *string == '\\') {
2844 G.input_buffer.len--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002845 continue;
2846 }
2847
2848 break;
2849 }
2850
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002851 l->buf = G.input_buffer.v;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002852 l->i = 0;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002853// bb_error_msg("G.input_buffer.len:%d '%s'", G.input_buffer.len, G.input_buffer.v);
2854 l->len = G.input_buffer.len - 1; // do not include NUL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002855
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002856 return l->len != 0;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002857}
2858
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002859static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002860{
2861 BcStatus s;
2862
2863 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002864 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002865
2866 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002867 G.err_line = l->line;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002868 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002869
2870 // Loop until failure or we don't have whitespace. This
2871 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002872 // Comments are also BC_LEX_WHITESPACE tokens and eaten here.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002873 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002874 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002875 if (l->i == l->len) {
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002876 l->t.t = BC_LEX_EOF;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002877 if (!G.input_fp)
2878 RETURN_STATUS(BC_STATUS_SUCCESS);
2879 if (!bc_lex_more_input(l)) {
2880 G.input_fp = NULL;
2881 RETURN_STATUS(BC_STATUS_SUCCESS);
2882 }
2883 // here it's guaranteed that l->i is below l->len
2884 }
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002885 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01002886 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2887 l->buf + l->i);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002888 s = zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002889 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01002890 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002891
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002892 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002893}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002894#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002895
Denys Vlasenko202dd192018-12-16 17:30:35 +01002896static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
2897{
2898 if (l->t.t == BC_LEX_NLINE)
2899 RETURN_STATUS(zbc_lex_next(l));
2900 RETURN_STATUS(BC_STATUS_SUCCESS);
2901}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002902#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002903
2904static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
2905{
2906 BcStatus s;
2907 s = zbc_lex_next(l);
2908 if (s) RETURN_STATUS(s);
2909 // if(cond)<newline>stmt is accepted too (but not 2+ newlines)
2910 s = zbc_lex_skip_if_at_NLINE(l);
2911 RETURN_STATUS(s);
2912}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002913#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002914
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002915static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06002916{
2917 l->buf = text;
2918 l->i = 0;
2919 l->len = strlen(text);
2920 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002921 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06002922}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002923#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002924
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002925#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002926static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002927{
2928 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002929 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002930 const char *buf = l->buf + l->i - 1;
2931
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002932 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
2933 const char *keyword8 = bc_lex_kws[i].name8;
2934 unsigned j = 0;
2935 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
2936 j++;
2937 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06002938 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002939 if (keyword8[j] != '\0')
2940 continue;
2941 match:
2942 // buf starts with keyword bc_lex_kws[i]
2943 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01002944 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002945 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002946 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002947 }
2948
2949 // We minus 1 because the index has already been incremented.
2950 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002951 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002952 }
2953
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002954 bc_lex_name(l);
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002955 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002956
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002957 if (l->t.v.len > 2) {
2958 // Prevent this:
2959 // >>> qwe=1
2960 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
2961 // '
2962 unsigned len = strchrnul(buf, '\n') - buf;
2963 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
2964 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002965
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002966 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002967}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002968#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002969
Denys Vlasenko26819db2018-12-12 16:08:46 +01002970static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002971{
Denys Vlasenko07597cd2018-12-18 14:03:20 +01002972 size_t len, nls, i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002973
2974 l->t.t = BC_LEX_STR;
2975
Denys Vlasenko07597cd2018-12-18 14:03:20 +01002976 nls = 0;
2977 i = l->i;
2978 for (;;) {
2979 char c = l->buf[i];
2980 if (c == '\0') {
2981 l->i = i;
2982 RETURN_STATUS(bc_error("string end could not be found"));
2983 }
2984 if (c == '"')
2985 break;
Denys Vlasenko26819db2018-12-12 16:08:46 +01002986 nls += (c == '\n');
Denys Vlasenko07597cd2018-12-18 14:03:20 +01002987 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06002988 }
2989
2990 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01002991 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2992 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2993 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01002994 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002995 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002996 bc_vec_string(&l->t.v, len, l->buf + l->i);
2997
2998 l->i = i + 1;
2999 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003000 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003001
Denys Vlasenko26819db2018-12-12 16:08:46 +01003002 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003003}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003004#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003005
Denys Vlasenko0a238142018-12-14 16:48:34 +01003006static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003007{
3008 if (l->buf[l->i] == '=') {
3009 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003010 with_and_without >>= 8; // store "with" value
3011 } // else store "without" value
3012 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003013}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003014#define bc_lex_assign(l, with, without) \
3015 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003016
Denys Vlasenko29301232018-12-11 15:29:32 +01003017static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003018{
3019 size_t i, nls = 0;
3020 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003021
3022 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003023 i = l->i; /* here buf[l->i] is the '*' of opening comment delimiter */
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003024 for (;;) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003025 char c = buf[++i];
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003026 check_star:
3027 if (c == '*') {
3028 c = buf[++i];
3029 if (c == '/')
3030 break;
3031 goto check_star;
3032 }
3033 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003034 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003035 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003036 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003037 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003038 }
3039
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003040 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003041 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003042 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003043
Denys Vlasenko29301232018-12-11 15:29:32 +01003044 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003045}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003046#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003047
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003048static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003049{
3050 BcStatus s = BC_STATUS_SUCCESS;
3051 char c = l->buf[l->i++], c2;
3052
3053 // This is the workhorse of the lexer.
3054 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003055// case '\0': // probably never reached
3056// l->i--;
3057// l->t.t = BC_LEX_EOF;
3058// l->newline = true;
3059// break;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003060 case '\n':
3061 l->t.t = BC_LEX_NLINE;
3062 l->newline = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06003063 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003064 case '\t':
3065 case '\v':
3066 case '\f':
3067 case '\r':
3068 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003069 bc_lex_whitespace(l);
3070 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003071 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003072 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003073 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003074 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003075 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003076 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003077 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003078 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003079 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003080 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003081 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003082 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003083 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003084 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003085 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003086 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003087 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3088 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003089 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003090 c2 = l->buf[l->i];
3091 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003092 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003093 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003094 ++l->i;
3095 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003096 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003097 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003098 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003099 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003100 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003101 case '(':
3102 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003103 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
3104 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003105 case '*':
Gavin Howard01055ba2018-11-03 11:00:21 -06003106 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
3107 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003108 case '+':
Gavin Howard01055ba2018-11-03 11:00:21 -06003109 c2 = l->buf[l->i];
3110 if (c2 == '+') {
3111 ++l->i;
3112 l->t.t = BC_LEX_OP_INC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003113 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003114 bc_lex_assign(l, BC_LEX_OP_ASSIGN_PLUS, BC_LEX_OP_PLUS);
3115 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003116 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003117 l->t.t = BC_LEX_COMMA;
3118 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003119 case '-':
Gavin Howard01055ba2018-11-03 11:00:21 -06003120 c2 = l->buf[l->i];
3121 if (c2 == '-') {
3122 ++l->i;
3123 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003124 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003125 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3126 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003127 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003128 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003129 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003130 else {
3131 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003132 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003133 }
3134 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003135 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003136 c2 = l->buf[l->i];
3137 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003138 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003139 else
3140 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3141 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003142 case '0':
3143 case '1':
3144 case '2':
3145 case '3':
3146 case '4':
3147 case '5':
3148 case '6':
3149 case '7':
3150 case '8':
3151 case '9':
3152 case 'A':
3153 case 'B':
3154 case 'C':
3155 case 'D':
3156 case 'E':
3157 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003158 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003159 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003160 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003161 l->t.t = BC_LEX_SCOLON;
3162 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003163 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003164 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3165 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003166 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003167 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3168 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003169 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003170 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3171 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003172 case '[':
3173 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003174 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3175 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003176 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003177 if (l->buf[l->i] == '\n') {
3178 l->t.t = BC_LEX_WHITESPACE;
3179 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003180 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003181 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003182 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003183 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003184 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3185 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003186 case 'a':
3187 case 'b':
3188 case 'c':
3189 case 'd':
3190 case 'e':
3191 case 'f':
3192 case 'g':
3193 case 'h':
3194 case 'i':
3195 case 'j':
3196 case 'k':
3197 case 'l':
3198 case 'm':
3199 case 'n':
3200 case 'o':
3201 case 'p':
3202 case 'q':
3203 case 'r':
3204 case 's':
3205 case 't':
3206 case 'u':
3207 case 'v':
3208 case 'w':
3209 case 'x':
3210 case 'y':
3211 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003212 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003213 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003214 case '{':
3215 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003216 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3217 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003218 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003219 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003220 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003221 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003222 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003223 ++l->i;
3224 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003225 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003226 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003227 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003228 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003229 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003230 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003231 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003232 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003233 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003234 }
3235
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003236 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003237}
3238#endif // ENABLE_BC
3239
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003240#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003241static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003242{
Gavin Howard01055ba2018-11-03 11:00:21 -06003243 if (isspace(l->buf[l->i - 1])) {
3244 bc_lex_whitespace(l);
3245 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003246 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003247 RETURN_STATUS(bc_error("extended register"));
3248 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003249 }
3250 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003251 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003252 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003253 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003254 l->t.t = BC_LEX_NAME;
3255 }
3256
Denys Vlasenko29301232018-12-11 15:29:32 +01003257 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003258}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003259#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003260
Denys Vlasenko29301232018-12-11 15:29:32 +01003261static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003262{
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003263 size_t depth, nls, i;
Gavin Howard01055ba2018-11-03 11:00:21 -06003264
3265 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003266 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003267
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003268 nls = 0;
3269 depth = 1;
3270 i = l->i;
3271 for (;;) {
3272 char c = l->buf[i];
3273 if (c == '\0') {
3274 l->i = i;
3275 RETURN_STATUS(bc_error("string end could not be found"));
3276 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003277 nls += (c == '\n');
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003278 if (i == l->i || l->buf[i - 1] != '\\') {
3279 if (c == '[') depth++;
3280 if (c == ']')
3281 if (--depth == 0)
3282 break;
3283 }
3284 bc_vec_push(&l->t.v, &l->buf[i]);
3285 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003286 }
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003287 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003288
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003289 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003290 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3291 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3292 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003293 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003294 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003295
3296 l->i = i;
3297 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003298 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003299
Denys Vlasenko29301232018-12-11 15:29:32 +01003300 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003301}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003302#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003303
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003304static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003305{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003306 static const //BcLexType - should be this type, but narrower type saves size:
3307 uint8_t
3308 dc_lex_regs[] = {
3309 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
3310 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
3311 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
3312 BC_LEX_STORE_PUSH,
3313 };
3314 static const //BcLexType - should be this type
3315 uint8_t
3316 dc_lex_tokens[] = {
3317 /* %&'( */
3318 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
3319 /* )*+, */
3320 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
3321 /* -./ */
3322 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
3323 /* 0123456789 */
3324 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3325 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3326 BC_LEX_INVALID, BC_LEX_INVALID,
3327 /* :;<=>?@ */
3328 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
3329 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
3330 /* ABCDEFGH */
3331 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3332 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
3333 /* IJKLMNOP */
3334 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
3335 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
3336 /* QRSTUVWXY */
3337 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
3338 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
3339 /* Z[\] */
3340 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3341 /* ^_` */
3342 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
3343 /* abcdefgh */
3344 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
3345 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
3346 /* ijklmnop */
3347 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
3348 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
3349 /* qrstuvwx */
3350 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
3351 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
3352 /* yz */
3353 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
3354 /* {|}~ */
3355 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
3356 };
3357
Gavin Howard01055ba2018-11-03 11:00:21 -06003358 BcStatus s = BC_STATUS_SUCCESS;
3359 char c = l->buf[l->i++], c2;
3360 size_t i;
3361
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003362 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3363 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003364 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003365 }
3366
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003367 if (c >= '%' && c <= '~'
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003368 && (l->t.t = dc_lex_tokens[c - '%']) != BC_LEX_INVALID
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003369 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003370 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003371 }
3372
3373 // This is the workhorse of the lexer.
3374 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003375// case '\0': // probably never reached
3376// l->t.t = BC_LEX_EOF;
3377// break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003378 case '\n':
3379 case '\t':
3380 case '\v':
3381 case '\f':
3382 case '\r':
3383 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003384 l->newline = (c == '\n');
3385 bc_lex_whitespace(l);
3386 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003387 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003388 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003389 if (c2 == '=')
3390 l->t.t = BC_LEX_OP_REL_NE;
3391 else if (c2 == '<')
3392 l->t.t = BC_LEX_OP_REL_LE;
3393 else if (c2 == '>')
3394 l->t.t = BC_LEX_OP_REL_GE;
3395 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003396 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003397 ++l->i;
3398 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003399 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003400 bc_lex_lineComment(l);
3401 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003402 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003403 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003404 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003405 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003406 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003407 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003408 case '0':
3409 case '1':
3410 case '2':
3411 case '3':
3412 case '4':
3413 case '5':
3414 case '6':
3415 case '7':
3416 case '8':
3417 case '9':
3418 case 'A':
3419 case 'B':
3420 case 'C':
3421 case 'D':
3422 case 'E':
3423 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003424 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003425 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003426 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003427 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003428 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003429 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003430 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003431 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003432 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003433 }
3434
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003435 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003436}
3437#endif // ENABLE_DC
3438
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003439static void bc_program_addFunc(char *name, size_t *idx);
3440
Gavin Howard01055ba2018-11-03 11:00:21 -06003441static void bc_parse_addFunc(BcParse *p, char *name, size_t *idx)
3442{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003443 bc_program_addFunc(name, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003444 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003445}
3446
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003447static void bc_parse_push(BcParse *p, char i)
3448{
3449 dbg_lex("%s:%d pushing opcode %d", __func__, __LINE__, i);
3450 bc_vec_pushByte(&p->func->code, i);
3451}
Denys Vlasenkob23ac512018-12-06 13:10:56 +01003452
Gavin Howard01055ba2018-11-03 11:00:21 -06003453static void bc_parse_pushName(BcParse *p, char *name)
3454{
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003455 while (*name)
3456 bc_parse_push(p, *name++);
Gavin Howard01055ba2018-11-03 11:00:21 -06003457 bc_parse_push(p, BC_PARSE_STREND);
Gavin Howard01055ba2018-11-03 11:00:21 -06003458}
3459
3460static void bc_parse_pushIndex(BcParse *p, size_t idx)
3461{
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003462 size_t mask;
3463 unsigned amt;
Gavin Howard01055ba2018-11-03 11:00:21 -06003464
Denys Vlasenkof4f10722018-12-18 02:23:53 +01003465 dbg_lex("%s:%d pushing index %zd", __func__, __LINE__, idx);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003466 mask = ((size_t)0xff) << (sizeof(idx) * 8 - 8);
3467 amt = sizeof(idx);
3468 do {
3469 if (idx & mask) break;
3470 mask >>= 8;
3471 amt--;
3472 } while (amt != 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003473
3474 bc_parse_push(p, amt);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003475
3476 while (idx != 0) {
3477 bc_parse_push(p, (unsigned char)idx);
3478 idx >>= 8;
3479 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003480}
3481
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003482static void bc_parse_pushJUMP(BcParse *p, size_t idx)
3483{
3484 bc_parse_push(p, BC_INST_JUMP);
3485 bc_parse_pushIndex(p, idx);
3486}
3487
3488static void bc_parse_pushJUMP_ZERO(BcParse *p, size_t idx)
3489{
3490 bc_parse_push(p, BC_INST_JUMP_ZERO);
3491 bc_parse_pushIndex(p, idx);
3492}
3493
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003494static void bc_parse_number(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003495{
3496 char *num = xstrdup(p->l.t.v.v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003497 size_t idx = G.prog.consts.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06003498
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003499 bc_vec_push(&G.prog.consts, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06003500
3501 bc_parse_push(p, BC_INST_NUM);
3502 bc_parse_pushIndex(p, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003503}
3504
Denys Vlasenko99b37622018-12-15 20:06:59 +01003505IF_BC(static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p);)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01003506IF_DC(static BC_STATUS zdc_parse_parse(BcParse *p);)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003507
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003508// "Parse" half of "parse,execute,repeat" main loop
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003509static BC_STATUS zcommon_parse(BcParse *p)
3510{
3511 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003512// FIXME: "eating" of stmt delemiters is coded inconsistently
3513// (sometimes zbc_parse_stmt() eats the delimiter, sometimes don't),
3514// which causes bugs such as "print 1 print 2" erroneously accepted,
3515// or "print 1 else 2" detecting parse error only after executing
3516// "print 1" part.
Denys Vlasenko99b37622018-12-15 20:06:59 +01003517 IF_BC(RETURN_STATUS(zbc_parse_stmt_or_funcdef(p));)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003518 }
3519 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3520}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003521#define zcommon_parse(...) (zcommon_parse(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003522
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003523static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003524{
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003525 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003526
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003527 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
Gavin Howard01055ba2018-11-03 11:00:21 -06003528}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003529#define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003530
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003531// Called when parsing or execution detects a failure,
3532// resets execution structures.
3533static void bc_program_reset(void)
3534{
3535 BcFunc *f;
3536 BcInstPtr *ip;
3537
3538 bc_vec_npop(&G.prog.stack, G.prog.stack.len - 1);
3539 bc_vec_pop_all(&G.prog.results);
3540
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003541 f = bc_program_func(0);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003542 ip = bc_vec_top(&G.prog.stack);
3543 ip->idx = f->code.len;
3544}
3545
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003546#define bc_parse_updateFunc(p, f) \
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003547 ((p)->func = bc_program_func((p)->fidx = (f)))
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003548
Denys Vlasenko26819db2018-12-12 16:08:46 +01003549// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003550// resets parsing structures.
3551static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003552{
3553 if (p->fidx != BC_PROG_MAIN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003554 p->func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003555 bc_vec_pop_all(&p->func->code);
3556 bc_vec_pop_all(&p->func->autos);
3557 bc_vec_pop_all(&p->func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06003558
3559 bc_parse_updateFunc(p, BC_PROG_MAIN);
3560 }
3561
3562 p->l.i = p->l.len;
3563 p->l.t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003564
Denys Vlasenko7d628012018-12-04 21:46:47 +01003565 bc_vec_pop_all(&p->exits);
3566 bc_vec_pop_all(&p->conds);
3567 bc_vec_pop_all(&p->ops);
Gavin Howard01055ba2018-11-03 11:00:21 -06003568
Denys Vlasenkod38af482018-12-04 19:11:02 +01003569 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003570}
3571
3572static void bc_parse_free(BcParse *p)
3573{
Gavin Howard01055ba2018-11-03 11:00:21 -06003574 bc_vec_free(&p->exits);
3575 bc_vec_free(&p->conds);
3576 bc_vec_free(&p->ops);
3577 bc_lex_free(&p->l);
3578}
3579
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003580static void bc_parse_create(BcParse *p, size_t func)
Gavin Howard01055ba2018-11-03 11:00:21 -06003581{
3582 memset(p, 0, sizeof(BcParse));
3583
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003584 bc_lex_init(&p->l);
Denys Vlasenko266aa002018-12-16 23:24:25 +01003585 bc_vec_init(&p->exits, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003586 bc_vec_init(&p->conds, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003587 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3588
Gavin Howard01055ba2018-11-03 11:00:21 -06003589 bc_parse_updateFunc(p, func);
3590}
3591
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003592#if ENABLE_BC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003593
3594#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3595#define BC_PARSE_LEAF(p, rparen) \
3596 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3597 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3598
3599// We can calculate the conversion between tokens and exprs by subtracting the
3600// position of the first operator in the lex enum and adding the position of the
3601// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003602#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003603
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003604static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags);
3605
3606static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags)
3607{
3608 BcStatus s;
3609
3610 s = bc_parse_expr_empty_ok(p, flags);
3611 if (s == BC_STATUS_PARSE_EMPTY_EXP)
3612 RETURN_STATUS(bc_error("empty expression"));
3613 RETURN_STATUS(s);
3614}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003615#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003616
3617static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003618#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003619
3620static BC_STATUS zbc_parse_stmt(BcParse *p)
3621{
3622 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3623}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003624#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003625
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003626static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003627{
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003628 // "if(cond)<newline>stmt" is accepted too, but not 2+ newlines.
3629 // Same for "else", "while()", "for()".
3630 BcStatus s = zbc_lex_next_and_skip_NLINE(&p->l);
3631 if (s) RETURN_STATUS(s);
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003632 if (p->l.t.t == BC_LEX_NLINE)
3633 RETURN_STATUS(bc_error_fmt("no statement after '%s'", after_X));
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003634
3635 RETURN_STATUS(zbc_parse_stmt(p));
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003636}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003637#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003638
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003639static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3640 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003641{
Denys Vlasenko65437582018-12-05 19:37:19 +01003642 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3643 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003644
3645 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003646 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003647 if (t == BC_LEX_LPAREN) break;
3648
Denys Vlasenko65437582018-12-05 19:37:19 +01003649 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003650 if (l >= r && (l != r || !left)) break;
3651
Denys Vlasenko0154d782018-12-14 23:32:51 +01003652 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003653 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003654 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003655 }
3656
3657 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003658}
3659
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003660static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003661{
3662 BcLexType top;
3663
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003664 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003665 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003666 top = BC_PARSE_TOP_OP(p);
3667
3668 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003669 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003670
3671 bc_vec_pop(&p->ops);
3672 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3673
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003674 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003675 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003676 top = BC_PARSE_TOP_OP(p);
3677 }
3678
3679 bc_vec_pop(&p->ops);
3680
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003681 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003682}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003683#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003684
Denys Vlasenko26819db2018-12-12 16:08:46 +01003685static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003686{
3687 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06003688 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 Vlasenko4b72aeb2018-12-17 16:54:37 +01003691 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3692
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003693 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003694 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003695
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003696 nparams = 0;
3697 if (p->l.t.t != BC_LEX_RPAREN) {
3698 for (;;) {
3699 s = zbc_parse_expr(p, flags);
3700 if (s) RETURN_STATUS(s);
3701 nparams++;
3702 if (p->l.t.t != BC_LEX_COMMA) {
3703 if (p->l.t.t == BC_LEX_RPAREN)
3704 break;
3705 RETURN_STATUS(bc_error_bad_token());
3706 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003707 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003708 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003709 }
3710 }
3711
Gavin Howard01055ba2018-11-03 11:00:21 -06003712 bc_parse_push(p, BC_INST_CALL);
3713 bc_parse_pushIndex(p, nparams);
3714
Denys Vlasenko26819db2018-12-12 16:08:46 +01003715 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003716}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003717#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003718
Denys Vlasenko26819db2018-12-12 16:08:46 +01003719static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003720{
3721 BcStatus s;
3722 BcId entry, *entry_ptr;
3723 size_t idx;
3724
3725 entry.name = name;
3726
Denys Vlasenko26819db2018-12-12 16:08:46 +01003727 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003728 if (s) goto err;
3729
3730 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003731 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003732 goto err;
3733 }
3734
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
3737 if (idx == BC_VEC_INVALID_IDX) {
3738 name = xstrdup(entry.name);
3739 bc_parse_addFunc(p, name, &idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003740 idx = bc_map_index(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003741 free(entry.name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003742 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003743 free(name);
3744
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003745 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003746 bc_parse_pushIndex(p, entry_ptr->idx);
3747
Denys Vlasenko26819db2018-12-12 16:08:46 +01003748 RETURN_STATUS(zbc_lex_next(&p->l));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003749 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06003750 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003751 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003752}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003753#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003754
Denys Vlasenko26819db2018-12-12 16:08:46 +01003755static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003756{
3757 BcStatus s;
3758 char *name;
3759
3760 name = xstrdup(p->l.t.v.v);
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_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003765 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003766 if (s) goto err;
3767
3768 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003769 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003770 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003771 goto err;
3772 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003773 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003774 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003775 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003776 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003777 s = zbc_parse_expr(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003778 if (s) goto err;
3779 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003780 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003781 if (s) goto err;
3782 bc_parse_push(p, *type);
3783 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003784 free(name);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003785 } else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003786 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003787 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003788 goto err;
3789 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003790 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003791 s = zbc_parse_call(p, name, flags);
3792 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003793 *type = BC_INST_VAR;
3794 bc_parse_push(p, BC_INST_VAR);
3795 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003796 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003797 }
3798
Denys Vlasenko26819db2018-12-12 16:08:46 +01003799 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003800 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06003801 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003802 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003803}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003804#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003805
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003806static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003807{
3808 BcStatus s;
3809
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003810 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003811 if (s) RETURN_STATUS(s);
3812 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003813
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003814 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003815 if (s) RETURN_STATUS(s);
3816 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003817
3818 bc_parse_push(p, BC_INST_READ);
3819
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003820 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003821}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003822#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003823
Denys Vlasenko26819db2018-12-12 16:08:46 +01003824static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003825 BcInst *prev)
3826{
3827 BcStatus s;
3828
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003829 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003830 if (s) RETURN_STATUS(s);
3831 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003832
3833 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3834
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003835 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003836 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003837
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003838 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003839 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003840
Denys Vlasenko26819db2018-12-12 16:08:46 +01003841 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003842
3843 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3844 bc_parse_push(p, *prev);
3845
Denys Vlasenko26819db2018-12-12 16:08:46 +01003846 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003847}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003848#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003849
Denys Vlasenko26819db2018-12-12 16:08:46 +01003850static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003851{
3852 BcStatus s;
3853
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003854 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003855 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003856
3857 if (p->l.t.t != BC_LEX_LPAREN) {
3858 *type = BC_INST_SCALE;
3859 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003860 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003861 }
3862
3863 *type = BC_INST_SCALE_FUNC;
3864 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
3865
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003866 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003867 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003868
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003869 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003870 if (s) RETURN_STATUS(s);
3871 if (p->l.t.t != BC_LEX_RPAREN)
3872 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003873 bc_parse_push(p, BC_INST_SCALE_FUNC);
3874
Denys Vlasenko26819db2018-12-12 16:08:46 +01003875 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003876}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003877#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003878
Denys Vlasenko26819db2018-12-12 16:08:46 +01003879static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003880 size_t *nexprs, uint8_t flags)
3881{
3882 BcStatus s;
3883 BcLexType type;
3884 char inst;
3885 BcInst etype = *prev;
3886
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003887 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM
3888 || etype == BC_INST_SCALE || etype == BC_INST_LAST
3889 || etype == BC_INST_IBASE || etype == BC_INST_OBASE
3890 ) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003891 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
3892 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003893 s = zbc_lex_next(&p->l);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003894 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003895 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
3896 *paren_expr = true;
3897
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003898 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003899 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003900 type = p->l.t.t;
3901
3902 // Because we parse the next part of the expression
3903 // right here, we need to increment this.
3904 *nexprs = *nexprs + 1;
3905
3906 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003907 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01003908 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003909 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003910 case BC_LEX_KEY_IBASE:
3911 case BC_LEX_KEY_LAST:
3912 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06003913 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003914 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003915 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003916 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003917 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003918 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003919 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003920 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003921 else
3922 bc_parse_push(p, BC_INST_SCALE);
3923 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003924 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003925 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003926 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003927 }
3928
3929 if (!s) bc_parse_push(p, inst);
3930 }
3931
Denys Vlasenko26819db2018-12-12 16:08:46 +01003932 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003933}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003934#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003935
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003936static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06003937 bool rparen, size_t *nexprs)
3938{
3939 BcStatus s;
3940 BcLexType type;
3941 BcInst etype = *prev;
3942
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003943 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003944 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003945
3946 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
3947 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
3948 BC_LEX_OP_MINUS :
3949 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01003950 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003951
3952 // We can just push onto the op stack because this is the largest
3953 // precedence operator that gets pushed. Inc/dec does not.
3954 if (type != BC_LEX_OP_MINUS)
3955 bc_vec_push(&p->ops, &type);
3956 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003957 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06003958
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003959 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003960}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003961#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003962
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003963static BC_STATUS zbc_parse_string(BcParse *p, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06003964{
3965 char *str = xstrdup(p->l.t.v.v);
3966
3967 bc_parse_push(p, BC_INST_STR);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003968 bc_parse_pushIndex(p, G.prog.strs.len);
3969 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06003970 bc_parse_push(p, inst);
3971
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003972 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003973}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003974#define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003975
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01003976static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003977{
3978 BcStatus s;
3979 BcLexType type;
Gavin Howard01055ba2018-11-03 11:00:21 -06003980
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003981 for (;;) {
3982 s = zbc_lex_next(&p->l);
3983 if (s) RETURN_STATUS(s);
3984 type = p->l.t.t;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01003985 if (type == BC_LEX_STR) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003986 s = zbc_parse_string(p, BC_INST_PRINT_POP);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01003987 } else {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003988 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003989 bc_parse_push(p, BC_INST_PRINT_POP);
3990 }
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003991 if (s) RETURN_STATUS(s);
3992 if (p->l.t.t != BC_LEX_COMMA)
3993 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003994 }
3995
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01003996 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003997}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003998#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003999
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004000static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004001{
4002 BcStatus s;
4003 BcLexType t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004004
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004005 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004006 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004007 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004008
4009 t = p->l.t.t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004010 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4011 bc_parse_push(p, BC_INST_RET0);
4012 else {
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004013 bool paren = (t == BC_LEX_LPAREN);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004014 s = bc_parse_expr_empty_ok(p, 0);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004015 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004016 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004017 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004018 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004019 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004020
4021 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004022 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004023 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06004024 }
4025
4026 bc_parse_push(p, BC_INST_RET);
4027 }
4028
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004029 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004030 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004031}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004032#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004033
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004034static void rewrite_label_to_current(BcParse *p, size_t idx)
4035{
4036 size_t *label = bc_vec_item(&p->func->labels, idx);
4037 *label = p->func->code.len;
4038}
4039
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004040static BC_STATUS zbc_parse_if(BcParse *p)
4041{
4042 BcStatus s;
Denys Vlasenko15850832018-12-16 21:40:54 +01004043 size_t ip_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004044
4045 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4046 s = zbc_lex_next(&p->l);
4047 if (s) RETURN_STATUS(s);
4048 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4049
4050 s = zbc_lex_next(&p->l);
4051 if (s) RETURN_STATUS(s);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004052 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004053 if (s) RETURN_STATUS(s);
4054
4055 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004056
Denys Vlasenko15850832018-12-16 21:40:54 +01004057 ip_idx = p->func->labels.len;
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004058 bc_parse_pushJUMP_ZERO(p, ip_idx);
Denys Vlasenko15850832018-12-16 21:40:54 +01004059 bc_vec_push(&p->func->labels, &ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004060
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004061 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004062 if (s) RETURN_STATUS(s);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004063
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004064 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4065 if (p->l.t.t == BC_LEX_KEY_ELSE) {
Denys Vlasenko15850832018-12-16 21:40:54 +01004066 size_t ip2_idx;
Denys Vlasenko74156332018-12-16 21:21:27 +01004067
Denys Vlasenko15850832018-12-16 21:40:54 +01004068 ip2_idx = p->func->labels.len;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004069
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004070 dbg_lex("%s:%d after if() body: BC_INST_JUMP to %zd", __func__, __LINE__, ip2_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004071 bc_parse_pushJUMP(p, ip2_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004072
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004073 dbg_lex("%s:%d rewriting 'if_zero' label to jump to 'else'-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004074 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004075
Denys Vlasenko15850832018-12-16 21:40:54 +01004076 bc_vec_push(&p->func->labels, &ip2_idx);
4077 ip_idx = ip2_idx;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004078
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004079 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004080 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004081 }
4082
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004083 dbg_lex("%s:%d rewriting label to jump after 'if' body-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004084 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004085
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004086 dbg_lex_done("%s:%d done", __func__, __LINE__);
4087 RETURN_STATUS(s);
4088}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004089#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004090
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004091static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004092{
4093 BcStatus s;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004094 size_t cond_idx;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004095 size_t ip_idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06004096
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004097 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004098 if (s) RETURN_STATUS(s);
4099 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004100 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004101 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004102
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004103 cond_idx = p->func->labels.len;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004104 ip_idx = cond_idx + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06004105
4106 bc_vec_push(&p->func->labels, &p->func->code.len);
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004107 bc_vec_push(&p->conds, &cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004108
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004109 bc_vec_push(&p->exits, &ip_idx);
4110 bc_vec_push(&p->func->labels, &ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004111
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004112 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004113 if (s) RETURN_STATUS(s);
4114 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko202dd192018-12-16 17:30:35 +01004115
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004116 bc_parse_pushJUMP_ZERO(p, ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004117
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004118 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004119 if (s) RETURN_STATUS(s);
4120
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004121 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, cond_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004122 bc_parse_pushJUMP(p, cond_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004123
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004124 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004125 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004126
4127 bc_vec_pop(&p->exits);
4128 bc_vec_pop(&p->conds);
4129
4130 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004131}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004132#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004133
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004134static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004135{
4136 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004137 size_t cond_idx, exit_idx, body_idx, update_idx;
4138
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004139 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004140 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004141 if (s) RETURN_STATUS(s);
4142 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004143 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004144 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004145
4146 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004147 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004148 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004149 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Gavin Howard01055ba2018-11-03 11:00:21 -06004150
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004151 if (s) RETURN_STATUS(s);
4152 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004153 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004154 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004155
4156 cond_idx = p->func->labels.len;
4157 update_idx = cond_idx + 1;
4158 body_idx = update_idx + 1;
4159 exit_idx = body_idx + 1;
4160
4161 bc_vec_push(&p->func->labels, &p->func->code.len);
4162
4163 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004164 s = zbc_parse_expr(p, BC_PARSE_REL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004165 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004166 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004167
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004168 if (s) RETURN_STATUS(s);
4169 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004170
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004171 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004172 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004173
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004174 bc_parse_pushJUMP_ZERO(p, exit_idx);
4175 bc_parse_pushJUMP(p, body_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004176
Gavin Howard01055ba2018-11-03 11:00:21 -06004177 bc_vec_push(&p->conds, &update_idx);
4178 bc_vec_push(&p->func->labels, &p->func->code.len);
4179
4180 if (p->l.t.t != BC_LEX_RPAREN)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004181 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004182 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004183 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Gavin Howard01055ba2018-11-03 11:00:21 -06004184
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004185 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004186
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004187 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004188 bc_parse_pushJUMP(p, cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004189 bc_vec_push(&p->func->labels, &p->func->code.len);
4190
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004191 bc_vec_push(&p->exits, &exit_idx);
4192 bc_vec_push(&p->func->labels, &exit_idx);
Denys Vlasenko202dd192018-12-16 17:30:35 +01004193
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004194 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004195 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004196
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004197 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, update_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004198 bc_parse_pushJUMP(p, update_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004199
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004200 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004201 rewrite_label_to_current(p, exit_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004202
4203 bc_vec_pop(&p->exits);
4204 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004205
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004206 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004207}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004208#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004209
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004210static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004211{
4212 BcStatus s;
4213 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06004214
Gavin Howard01055ba2018-11-03 11:00:21 -06004215 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004216 if (p->exits.len == 0) // none of the enclosing blocks is a loop
4217 RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko266aa002018-12-16 23:24:25 +01004218 i = *(size_t*)bc_vec_top(&p->exits);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004219 } else {
Denys Vlasenko266aa002018-12-16 23:24:25 +01004220 i = *(size_t*)bc_vec_top(&p->conds);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004221 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004222
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004223 bc_parse_pushJUMP(p, i);
Gavin Howard01055ba2018-11-03 11:00:21 -06004224
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004225 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004226 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004227
4228 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004229 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004230
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004231 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004232}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004233#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004234
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004235static BC_STATUS zbc_parse_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004236{
4237 BcStatus s;
4238 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004239 char *name;
4240
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004241 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004242 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004243 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004244 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004245 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004246
4247 name = xstrdup(p->l.t.v.v);
4248 bc_parse_addFunc(p, name, &p->fidx);
4249
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004250 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004251 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004252 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004253 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004254 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004255 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004256
4257 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004258 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004259 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004260
4261 ++p->func->nparams;
4262
4263 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004264 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004265 if (s) goto err;
4266
4267 var = p->l.t.t != BC_LEX_LBRACKET;
4268
4269 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004270 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004271 if (s) goto err;
4272
4273 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004274 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004275 goto err;
4276 }
4277
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004278 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004279 if (s) goto err;
4280 }
4281
4282 comma = p->l.t.t == BC_LEX_COMMA;
4283 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004284 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004285 if (s) goto err;
4286 }
4287
Denys Vlasenko29301232018-12-11 15:29:32 +01004288 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004289 if (s) goto err;
4290 }
4291
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004292 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004293
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004294 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004295 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004296
4297 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004298 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004299
Denys Vlasenko202dd192018-12-16 17:30:35 +01004300 // Prevent "define z()<newline>" from being interpreted as function with empty stmt as body
4301 s = zbc_lex_skip_if_at_NLINE(&p->l);
4302 if (s) RETURN_STATUS(s);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004303 //GNU bc requires a {} block even if function body has single stmt, enforce this?
4304 if (p->l.t.t != BC_LEX_LBRACE)
4305 RETURN_STATUS(bc_error("function { body } expected"));
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004306
4307 p->in_funcdef++; // to determine whether "return" stmt is allowed, and such
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004308 s = zbc_parse_stmt_possibly_auto(p, true);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004309 p->in_funcdef--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004310 if (s) RETURN_STATUS(s);
4311
4312 bc_parse_push(p, BC_INST_RET0);
4313 bc_parse_updateFunc(p, BC_PROG_MAIN);
4314
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004315 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004316 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004317 err:
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004318 dbg_lex_done("%s:%d done (error)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004319 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004320 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004321}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004322#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004323
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004324static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004325{
4326 BcStatus s;
4327 bool comma, var, one;
4328 char *name;
4329
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004330 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004331 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004332 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004333
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004334 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004335 one = p->l.t.t == BC_LEX_NAME;
4336
4337 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004338 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004339 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004340 if (s) goto err;
4341
4342 var = p->l.t.t != BC_LEX_LBRACKET;
4343 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004344 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004345 if (s) goto err;
4346
4347 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004348 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004349 goto err;
4350 }
4351
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004352 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004353 if (s) goto err;
4354 }
4355
4356 comma = p->l.t.t == BC_LEX_COMMA;
4357 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004358 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004359 if (s) goto err;
4360 }
4361
Denys Vlasenko29301232018-12-11 15:29:32 +01004362 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004363 if (s) goto err;
4364 }
4365
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004366 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4367 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004368
4369 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004370 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004371
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004372 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004373 RETURN_STATUS(zbc_lex_next(&p->l));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004374 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06004375 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004376 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004377 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004378}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004379#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004380
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004381#undef zbc_parse_stmt_possibly_auto
4382static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004383{
4384 BcStatus s = BC_STATUS_SUCCESS;
4385
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004386 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004387
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004388 if (p->l.t.t == BC_LEX_NLINE) {
4389 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4390 RETURN_STATUS(zbc_lex_next(&p->l));
4391 }
4392 if (p->l.t.t == BC_LEX_SCOLON) {
4393 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4394 RETURN_STATUS(zbc_lex_next(&p->l));
4395 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004396
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004397 if (p->l.t.t == BC_LEX_LBRACE) {
4398 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4399 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004400 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004401 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004402 } while (p->l.t.t == BC_LEX_NLINE);
4403 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4404 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4405 s = zbc_parse_auto(p);
4406 if (s) RETURN_STATUS(s);
4407 }
4408 while (p->l.t.t != BC_LEX_RBRACE) {
4409 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4410 s = zbc_parse_stmt(p);
4411 if (s) RETURN_STATUS(s);
4412 }
4413 s = zbc_lex_next(&p->l);
4414 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4415 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004416 }
4417
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004418 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004419 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004420 case BC_LEX_OP_INC:
4421 case BC_LEX_OP_DEC:
4422 case BC_LEX_OP_MINUS:
4423 case BC_LEX_OP_BOOL_NOT:
4424 case BC_LEX_LPAREN:
4425 case BC_LEX_NAME:
4426 case BC_LEX_NUMBER:
4427 case BC_LEX_KEY_IBASE:
4428 case BC_LEX_KEY_LAST:
4429 case BC_LEX_KEY_LENGTH:
4430 case BC_LEX_KEY_OBASE:
4431 case BC_LEX_KEY_READ:
4432 case BC_LEX_KEY_SCALE:
4433 case BC_LEX_KEY_SQRT:
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004434 s = zbc_parse_expr(p, BC_PARSE_PRINT);
Gavin Howard01055ba2018-11-03 11:00:21 -06004435 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004436 case BC_LEX_STR:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004437 s = zbc_parse_string(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004438 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004439 case BC_LEX_KEY_BREAK:
4440 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004441 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004442 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004443 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004444 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004445 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004446 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004447 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004448 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004449 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004450 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004451 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004452 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004453 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004454 // "limits" is a compile-time command,
4455 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004456 printf(
4457 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4458 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4459 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4460 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4461 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4462 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4463 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4464 "Number of vars = "BC_MAX_VARS_STR "\n"
4465 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004466 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004467 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004468 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004469 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004470 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004471 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004472 // "quit" is a compile-time command. For example,
4473 // "if (0 == 1) quit" terminates when parsing the statement,
4474 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004475 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004476 case BC_LEX_KEY_RETURN:
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004477 if (!p->in_funcdef)
4478 RETURN_STATUS(bc_error("'return' not in a function"));
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004479 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004480 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004481 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004482 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004483 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004484 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004485 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004486 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004487 }
4488
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004489 if (s || G_interrupt) {
4490 bc_parse_reset(p);
4491 s = BC_STATUS_FAILURE;
4492 }
4493
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004494 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004495 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004496}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004497#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004498
Denys Vlasenko99b37622018-12-15 20:06:59 +01004499static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004500{
4501 BcStatus s;
4502
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004503 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004504 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004505 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004506 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004507 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004508 s = zbc_parse_funcdef(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004509 } else {
4510 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 +01004511 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004512 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004513
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004514 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004515 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004516}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004517#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004518
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004519// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004520static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004521{
4522 BcStatus s = BC_STATUS_SUCCESS;
4523 BcInst prev = BC_INST_PRINT;
4524 BcLexType top, t = p->l.t.t;
4525 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004526 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004527 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4528
Denys Vlasenko17df8822018-12-14 23:00:24 +01004529 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004530 paren_first = p->l.t.t == BC_LEX_LPAREN;
4531 nparens = nrelops = 0;
4532 paren_expr = rprn = done = get_token = assign = false;
4533 bin_last = true;
4534
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004535 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004536 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004537 case BC_LEX_OP_INC:
4538 case BC_LEX_OP_DEC:
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;
Gavin Howard01055ba2018-11-03 11:00:21 -06004542 case BC_LEX_OP_MINUS:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004543 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004544 rprn = get_token = false;
4545 bin_last = prev == BC_INST_MINUS;
4546 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004547 case BC_LEX_OP_ASSIGN_POWER:
4548 case BC_LEX_OP_ASSIGN_MULTIPLY:
4549 case BC_LEX_OP_ASSIGN_DIVIDE:
4550 case BC_LEX_OP_ASSIGN_MODULUS:
4551 case BC_LEX_OP_ASSIGN_PLUS:
4552 case BC_LEX_OP_ASSIGN_MINUS:
4553 case BC_LEX_OP_ASSIGN:
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004554 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM
4555 && prev != BC_INST_SCALE && prev != BC_INST_IBASE
4556 && prev != BC_INST_OBASE && prev != BC_INST_LAST
4557 ) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004558 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004559 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004560 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004561 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004562 break;
4563 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004564 // Fallthrough.
4565 case BC_LEX_OP_POWER:
4566 case BC_LEX_OP_MULTIPLY:
4567 case BC_LEX_OP_DIVIDE:
4568 case BC_LEX_OP_MODULUS:
4569 case BC_LEX_OP_PLUS:
4570 case BC_LEX_OP_REL_EQ:
4571 case BC_LEX_OP_REL_LE:
4572 case BC_LEX_OP_REL_GE:
4573 case BC_LEX_OP_REL_NE:
4574 case BC_LEX_OP_REL_LT:
4575 case BC_LEX_OP_REL_GT:
4576 case BC_LEX_OP_BOOL_NOT:
4577 case BC_LEX_OP_BOOL_OR:
4578 case BC_LEX_OP_BOOL_AND:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004579 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4580 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4581 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004582 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004583 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004584 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004585 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004586 bc_parse_operator(p, t, ops_bgn, &nexprs);
4587 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004588 rprn = get_token = false;
4589 bin_last = t != BC_LEX_OP_BOOL_NOT;
Gavin Howard01055ba2018-11-03 11:00:21 -06004590 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004591 case BC_LEX_LPAREN:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004592 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004593 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004594 ++nparens;
4595 paren_expr = rprn = bin_last = false;
4596 get_token = true;
4597 bc_vec_push(&p->ops, &t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004598 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004599 case BC_LEX_RPAREN:
Gavin Howard01055ba2018-11-03 11:00:21 -06004600 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004601 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004602 if (nparens == 0) {
4603 s = BC_STATUS_SUCCESS;
4604 done = true;
4605 get_token = false;
4606 break;
4607 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004608 if (!paren_expr) {
Denys Vlasenko17df8822018-12-14 23:00:24 +01004609 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004610 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004611 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004612 --nparens;
4613 paren_expr = rprn = true;
4614 get_token = bin_last = false;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004615 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004616 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004617 case BC_LEX_NAME:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004618 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004619 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004620 paren_expr = true;
4621 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004622 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004623 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004624 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004625 case BC_LEX_NUMBER:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004626 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004627 return bc_error_bad_expression();
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004628 bc_parse_number(p);
4629 nexprs++;
4630 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004631 paren_expr = get_token = true;
4632 rprn = bin_last = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004633 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004634 case BC_LEX_KEY_IBASE:
4635 case BC_LEX_KEY_LAST:
4636 case BC_LEX_KEY_OBASE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004637 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004638 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004639 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4640 bc_parse_push(p, (char) prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004641 paren_expr = get_token = true;
4642 rprn = bin_last = false;
4643 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004644 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004645 case BC_LEX_KEY_LENGTH:
4646 case BC_LEX_KEY_SQRT:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004647 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004648 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004649 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004650 paren_expr = true;
4651 rprn = get_token = bin_last = false;
4652 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004653 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004654 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004655 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004656 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004657 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004658 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004659 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004660 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004661 paren_expr = true;
4662 rprn = get_token = bin_last = false;
4663 ++nexprs;
4664 prev = BC_INST_READ;
Gavin Howard01055ba2018-11-03 11:00:21 -06004665 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004666 case BC_LEX_KEY_SCALE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004667 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004668 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004669 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004670 paren_expr = true;
4671 rprn = get_token = bin_last = false;
4672 ++nexprs;
4673 prev = BC_INST_SCALE;
Gavin Howard01055ba2018-11-03 11:00:21 -06004674 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004675 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004676 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004677 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004678 }
4679
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004680 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004681 }
4682
4683 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004684 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004685
4686 while (p->ops.len > ops_bgn) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004687 top = BC_PARSE_TOP_OP(p);
4688 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4689
4690 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004691 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004692
Denys Vlasenko0154d782018-12-14 23:32:51 +01004693 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004694
4695 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4696 bc_vec_pop(&p->ops);
4697 }
4698
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004699 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004700 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004701
Gavin Howard01055ba2018-11-03 11:00:21 -06004702 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004703 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004704 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004705 } else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004706 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004707 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004708 }
4709
4710 if (flags & BC_PARSE_PRINT) {
4711 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4712 bc_parse_push(p, BC_INST_POP);
4713 }
4714
Denys Vlasenko17df8822018-12-14 23:00:24 +01004715 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004716 return s;
4717}
4718
Gavin Howard01055ba2018-11-03 11:00:21 -06004719#endif // ENABLE_BC
4720
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004721#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004722
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004723static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004724{
4725 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004726
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004727 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004728 if (s) RETURN_STATUS(s);
4729 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004730
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01004731 bc_parse_pushName(p, p->l.t.v.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004732
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004733 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004734}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004735#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004736
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004737static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004738{
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004739 char *str, *name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004740 size_t idx, len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004741
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004742//why pad to 32 zeros??
4743 name = xasprintf("%032lu", (unsigned long)len);
Gavin Howard01055ba2018-11-03 11:00:21 -06004744
4745 str = xstrdup(p->l.t.v.v);
4746 bc_parse_push(p, BC_INST_STR);
4747 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004748 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004749 bc_parse_addFunc(p, name, &idx);
4750
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004751 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004752}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004753#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004754
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004755static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004756{
4757 BcStatus s;
4758
4759 bc_parse_push(p, inst);
4760 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004761 s = zdc_parse_register(p);
4762 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004763 }
4764
4765 if (store) {
4766 bc_parse_push(p, BC_INST_SWAP);
4767 bc_parse_push(p, BC_INST_ASSIGN);
4768 bc_parse_push(p, BC_INST_POP);
4769 }
4770
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004771 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004772}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004773#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004774
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004775static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004776{
4777 BcStatus s;
4778
4779 bc_parse_push(p, inst);
4780 bc_parse_push(p, BC_INST_EXEC_COND);
4781
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004782 s = zdc_parse_register(p);
4783 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004784
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004785 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004786 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004787
4788 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004789 s = zdc_parse_register(p);
4790 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004791 s = zbc_lex_next(&p->l);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004792 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06004793 bc_parse_push(p, BC_PARSE_STREND);
4794
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004795 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004796}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004797#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004798
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004799static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004800{
4801 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06004802 uint8_t inst;
4803 bool assign, get_token = false;
4804
4805 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004806 case BC_LEX_OP_REL_EQ:
4807 case BC_LEX_OP_REL_LE:
4808 case BC_LEX_OP_REL_GE:
4809 case BC_LEX_OP_REL_NE:
4810 case BC_LEX_OP_REL_LT:
4811 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004812 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06004813 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004814 case BC_LEX_SCOLON:
4815 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004816 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06004817 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004818 case BC_LEX_STR:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004819 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004820 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004821 case BC_LEX_NEG:
4822 case BC_LEX_NUMBER:
Gavin Howard01055ba2018-11-03 11:00:21 -06004823 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004824 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004825 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004826 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004827 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004828 }
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004829 bc_parse_number(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004830 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
4831 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06004832 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004833 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004834 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004835 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004836 else
4837 bc_parse_push(p, BC_INST_READ);
4838 get_token = true;
4839 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004840 case BC_LEX_OP_ASSIGN:
4841 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06004842 assign = t == BC_LEX_OP_ASSIGN;
4843 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004844 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06004845 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004846 case BC_LEX_LOAD:
4847 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06004848 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004849 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06004850 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004851 case BC_LEX_STORE_IBASE:
4852 case BC_LEX_STORE_SCALE:
4853 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004854 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004855 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06004856 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004857 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004858 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004859 get_token = true;
4860 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004861 }
4862
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004863 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004864
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004865 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004866}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004867#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004868
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004869static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004870{
Gavin Howard01055ba2018-11-03 11:00:21 -06004871 BcLexType t;
4872
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004873 for (;;) {
4874 BcInst inst;
4875 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004876
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004877 t = p->l.t.t;
4878 if (t == BC_LEX_EOF) break;
4879
4880 inst = dc_parse_insts[t];
Gavin Howard01055ba2018-11-03 11:00:21 -06004881 if (inst != BC_INST_INVALID) {
4882 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004883 s = zbc_lex_next(&p->l);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004884 } else {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004885 s = zdc_parse_token(p, t, flags);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004886 }
4887 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004888 }
4889
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004890 if (flags & BC_PARSE_NOCALL)
Gavin Howard01055ba2018-11-03 11:00:21 -06004891 bc_parse_push(p, BC_INST_POP_EXEC);
4892
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004893 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004894}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004895#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004896
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01004897static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004898{
4899 BcStatus s;
4900
4901 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004902 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004903 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004904 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004905
Denys Vlasenkod38af482018-12-04 19:11:02 +01004906 if (s || G_interrupt) {
4907 bc_parse_reset(p);
4908 s = BC_STATUS_FAILURE;
4909 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004910
Denys Vlasenko26819db2018-12-12 16:08:46 +01004911 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004912}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004913#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004914
Gavin Howard01055ba2018-11-03 11:00:21 -06004915#endif // ENABLE_DC
4916
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004917static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004918{
4919 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004920 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004921 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01004922 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004923 }
4924}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004925#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004926
Denys Vlasenkodf515392018-12-02 19:27:48 +01004927static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06004928{
Gavin Howard01055ba2018-11-03 11:00:21 -06004929 BcId e, *ptr;
4930 BcVec *v, *map;
4931 size_t i;
4932 BcResultData data;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01004933 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06004934
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004935 v = var ? &G.prog.vars : &G.prog.arrs;
4936 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06004937
4938 e.name = id;
4939 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01004940 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06004941
4942 if (new) {
4943 bc_array_init(&data.v, var);
4944 bc_vec_push(v, &data.v);
4945 }
4946
4947 ptr = bc_vec_item(map, i);
4948 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01004949 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004950}
4951
Denys Vlasenko29301232018-12-11 15:29:32 +01004952static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06004953{
Gavin Howard01055ba2018-11-03 11:00:21 -06004954 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004955 case BC_RESULT_STR:
4956 case BC_RESULT_TEMP:
4957 case BC_RESULT_IBASE:
4958 case BC_RESULT_SCALE:
4959 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004960 *num = &r->d.n;
4961 break;
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004962 case BC_RESULT_CONSTANT: {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01004963 BcStatus s;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004964 char **str = bc_vec_item(&G.prog.consts, r->d.id.idx);
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01004965 unsigned base_t;
4966 size_t len = strlen(*str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004967
4968 bc_num_init(&r->d.n, len);
4969
4970 hex = hex && len == 1;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01004971 base_t = hex ? 16 : G.prog.ib_t;
4972 s = zbc_num_parse(&r->d.n, *str, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004973
4974 if (s) {
4975 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01004976 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004977 }
4978
4979 *num = &r->d.n;
4980 r->t = BC_RESULT_TEMP;
Gavin Howard01055ba2018-11-03 11:00:21 -06004981 break;
4982 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004983 case BC_RESULT_VAR:
4984 case BC_RESULT_ARRAY:
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004985 case BC_RESULT_ARRAY_ELEM: {
Gavin Howard01055ba2018-11-03 11:00:21 -06004986 BcVec *v;
4987
Denys Vlasenkodf515392018-12-02 19:27:48 +01004988 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004989
4990 if (r->t == BC_RESULT_ARRAY_ELEM) {
4991 v = bc_vec_top(v);
4992 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
4993 *num = bc_vec_item(v, r->d.id.idx);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004994 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06004995 *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004996 break;
4997 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004998 case BC_RESULT_LAST:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004999 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005000 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005001 case BC_RESULT_ONE:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005002 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005003 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005004 }
5005
Denys Vlasenko29301232018-12-11 15:29:32 +01005006 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005007}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005008#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005009
Denys Vlasenko29301232018-12-11 15:29:32 +01005010static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005011 BcResult **r, BcNum **rn, bool assign)
5012{
5013 BcStatus s;
5014 bool hex;
5015 BcResultType lt, rt;
5016
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005017 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005018 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005019
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005020 *r = bc_vec_item_rev(&G.prog.results, 0);
5021 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005022
5023 lt = (*l)->t;
5024 rt = (*r)->t;
5025 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5026
Denys Vlasenko29301232018-12-11 15:29:32 +01005027 s = zbc_program_num(*l, ln, false);
5028 if (s) RETURN_STATUS(s);
5029 s = zbc_program_num(*r, rn, hex);
5030 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005031
5032 // We run this again under these conditions in case any vector has been
5033 // reallocated out from under the BcNums or arrays we had.
5034 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005035 s = zbc_program_num(*l, ln, false);
5036 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005037 }
5038
5039 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005040 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005041 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005042 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005043
Denys Vlasenko29301232018-12-11 15:29:32 +01005044 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005045}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005046#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005047
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005048static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005049{
5050 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005051 bc_vec_pop(&G.prog.results);
5052 bc_vec_pop(&G.prog.results);
5053 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005054}
5055
Denys Vlasenko29301232018-12-11 15:29:32 +01005056static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005057{
5058 BcStatus s;
5059
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005060 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005061 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005062 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005063
Denys Vlasenko29301232018-12-11 15:29:32 +01005064 s = zbc_program_num(*r, n, false);
5065 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005066
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005067 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005068 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005069
Denys Vlasenko29301232018-12-11 15:29:32 +01005070 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005071}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005072#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005073
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005074static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005075{
5076 r->t = t;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005077 bc_vec_pop(&G.prog.results);
5078 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005079}
5080
Denys Vlasenko259137d2018-12-11 19:42:05 +01005081static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005082{
5083 BcStatus s;
5084 BcResult *opd1, *opd2, res;
5085 BcNum *n1, *n2 = NULL;
5086
Denys Vlasenko29301232018-12-11 15:29:32 +01005087 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005088 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005089 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005090
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005091 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005092 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 -06005093 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005094 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005095
Denys Vlasenko259137d2018-12-11 19:42:05 +01005096 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005097 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005098 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005099 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005100}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005101#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005102
Denys Vlasenko26819db2018-12-12 16:08:46 +01005103static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005104{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005105 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005106 BcStatus s;
5107 BcParse parse;
5108 BcVec buf;
5109 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005110 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005111
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005112 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005113 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005114
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005115 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005116 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005117
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005118 sv_file = G.prog.file;
5119 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005120 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005121
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005122 bc_char_vec_init(&buf);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01005123 bc_read_line(&buf, stdin);
Gavin Howard01055ba2018-11-03 11:00:21 -06005124
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005125 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005126 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005127
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005128 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005129 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005130 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005131 if (s) goto exec_err;
5132
5133 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005134 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005135 goto exec_err;
5136 }
5137
5138 ip.func = BC_PROG_READ;
5139 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005140 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005141
5142 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005143 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005144
5145 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005146 bc_vec_push(&G.prog.stack, &ip);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005147 exec_err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005148 bc_parse_free(&parse);
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005149 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005150 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005151 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005152 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005153}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005154#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005155
5156static size_t bc_program_index(char *code, size_t *bgn)
5157{
Denys Vlasenko3f940c92018-12-18 15:49:42 +01005158 unsigned char *bytes = (void*)(code + *bgn);
5159 unsigned amt;
5160 unsigned i;
5161 size_t res;
Gavin Howard01055ba2018-11-03 11:00:21 -06005162
Denys Vlasenko3f940c92018-12-18 15:49:42 +01005163 amt = *bytes++;
5164 *bgn += amt + 1;
5165
5166 amt *= 8;
5167 res = 0;
5168 for (i = 0; i < amt; i += 8)
5169 res |= (size_t)(*bytes++) << i;
Gavin Howard01055ba2018-11-03 11:00:21 -06005170
5171 return res;
5172}
5173
5174static char *bc_program_name(char *code, size_t *bgn)
5175{
5176 size_t i;
Denys Vlasenko694d2982018-12-18 19:17:11 +01005177 char *s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005178
Denys Vlasenko694d2982018-12-18 19:17:11 +01005179 code += *bgn;
5180 s = xmalloc(strchr(code, BC_PARSE_STREND) - code + 1);
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01005181 i = 0;
5182 for (;;) {
Denys Vlasenko694d2982018-12-18 19:17:11 +01005183 char c = *code++;
5184 if (c == BC_PARSE_STREND)
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01005185 break;
5186 s[i++] = c;
5187 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005188 s[i] = '\0';
Denys Vlasenko694d2982018-12-18 19:17:11 +01005189 *bgn += i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06005190
5191 return s;
5192}
5193
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005194static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005195{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005196#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005197 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005198 // Example: echo '[]ap' | dc
5199 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005200 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005201 return;
5202 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005203#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005204 while (*str) {
5205 int c = *str++;
5206 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005207 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005208 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005209 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005210 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005211 case 'a':
5212 bb_putchar('\a');
5213 break;
5214 case 'b':
5215 bb_putchar('\b');
5216 break;
5217 case '\\':
5218 case 'e':
5219 bb_putchar('\\');
5220 break;
5221 case 'f':
5222 bb_putchar('\f');
5223 break;
5224 case 'n':
5225 bb_putchar('\n');
5226 G.prog.nchars = SIZE_MAX;
5227 break;
5228 case 'r':
5229 bb_putchar('\r');
5230 break;
5231 case 'q':
5232 bb_putchar('"');
5233 break;
5234 case 't':
5235 bb_putchar('\t');
5236 break;
5237 default:
5238 // Just print the backslash and following character.
5239 bb_putchar('\\');
5240 ++G.prog.nchars;
5241 bb_putchar(c);
5242 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005243 }
5244 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005245 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005246 }
5247}
5248
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005249static void bc_num_printNewline(void)
5250{
5251 if (G.prog.nchars == G.prog.len - 1) {
5252 bb_putchar('\\');
5253 bb_putchar('\n');
5254 G.prog.nchars = 0;
5255 }
5256}
5257
5258#if ENABLE_DC
5259static FAST_FUNC void bc_num_printChar(size_t num, size_t width, bool radix)
5260{
5261 (void) radix;
5262 bb_putchar((char) num);
5263 G.prog.nchars += width;
5264}
5265#endif
5266
5267static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5268{
5269 size_t exp, pow;
5270
5271 bc_num_printNewline();
5272 bb_putchar(radix ? '.' : ' ');
5273 ++G.prog.nchars;
5274
5275 bc_num_printNewline();
5276 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5277 continue;
5278
5279 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5280 size_t dig;
5281 bc_num_printNewline();
5282 dig = num / pow;
5283 num -= dig * pow;
5284 bb_putchar(((char) dig) + '0');
5285 }
5286}
5287
5288static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5289{
5290 if (radix) {
5291 bc_num_printNewline();
5292 bb_putchar('.');
5293 G.prog.nchars += 1;
5294 }
5295
5296 bc_num_printNewline();
5297 bb_putchar(bb_hexdigits_upcase[num]);
5298 G.prog.nchars += width;
5299}
5300
5301static void bc_num_printDecimal(BcNum *n)
5302{
5303 size_t i, rdx = n->rdx - 1;
5304
5305 if (n->neg) bb_putchar('-');
5306 G.prog.nchars += n->neg;
5307
5308 for (i = n->len - 1; i < n->len; --i)
5309 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5310}
5311
Denys Vlasenkod3401432018-12-18 17:00:35 +01005312static BC_STATUS zbc_num_printNum(BcNum *n, unsigned base_t, size_t width, BcNumDigitOp print)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005313{
5314 BcStatus s;
5315 BcVec stack;
Denys Vlasenkod3401432018-12-18 17:00:35 +01005316 BcNum base;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005317 BcNum intp, fracp, digit, frac_len;
5318 unsigned long dig, *ptr;
5319 size_t i;
5320 bool radix;
5321
5322 if (n->len == 0) {
5323 print(0, width, false);
5324 RETURN_STATUS(BC_STATUS_SUCCESS);
5325 }
5326
5327 bc_vec_init(&stack, sizeof(long), NULL);
5328 bc_num_init(&intp, n->len);
5329 bc_num_init(&fracp, n->rdx);
5330 bc_num_init(&digit, width);
5331 bc_num_init(&frac_len, BC_NUM_INT(n));
5332 bc_num_copy(&intp, n);
5333 bc_num_one(&frac_len);
Denys Vlasenkod3401432018-12-18 17:00:35 +01005334//TODO: have BcNumSmall type, with static buffer
5335 bc_num_init_DEF_SIZE(&base);
5336 bc_num_ulong2num(&base, base_t);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005337
5338 bc_num_truncate(&intp, intp.rdx);
5339 s = zbc_num_sub(n, &intp, &fracp, 0);
5340 if (s) goto err;
5341
5342 while (intp.len != 0) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01005343 s = zbc_num_divmod(&intp, &base, &intp, &digit, 0);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005344 if (s) goto err;
5345 s = zbc_num_ulong(&digit, &dig);
5346 if (s) goto err;
5347 bc_vec_push(&stack, &dig);
5348 }
5349
5350 for (i = 0; i < stack.len; ++i) {
5351 ptr = bc_vec_item_rev(&stack, i);
5352 print(*ptr, width, false);
5353 }
5354
5355 if (!n->rdx) goto err;
5356
5357 for (radix = true; frac_len.len <= n->rdx; radix = false) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01005358 s = zbc_num_mul(&fracp, &base, &fracp, n->rdx);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005359 if (s) goto err;
5360 s = zbc_num_ulong(&fracp, &dig);
5361 if (s) goto err;
5362 bc_num_ulong2num(&intp, dig);
5363 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5364 if (s) goto err;
5365 print(dig, width, radix);
Denys Vlasenkod3401432018-12-18 17:00:35 +01005366 s = zbc_num_mul(&frac_len, &base, &frac_len, 0);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005367 if (s) goto err;
5368 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005369 err:
Denys Vlasenkod3401432018-12-18 17:00:35 +01005370 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005371 bc_num_free(&frac_len);
5372 bc_num_free(&digit);
5373 bc_num_free(&fracp);
5374 bc_num_free(&intp);
5375 bc_vec_free(&stack);
5376 RETURN_STATUS(s);
5377}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005378#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005379
5380static BC_STATUS zbc_num_printBase(BcNum *n)
5381{
5382 BcStatus s;
Denys Vlasenkod4258dd2018-12-18 13:22:23 +01005383 size_t width;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005384 BcNumDigitOp print;
5385 bool neg = n->neg;
5386
5387 if (neg) {
5388 bb_putchar('-');
5389 G.prog.nchars++;
5390 }
5391
5392 n->neg = false;
5393
5394 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5395 width = 1;
5396 print = bc_num_printHex;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005397 } else {
Denys Vlasenkod4258dd2018-12-18 13:22:23 +01005398 unsigned i = G.prog.ob_t - 1;
5399 width = 0;
5400 for (;;) {
5401 width++;
5402 i /= 10;
5403 if (i == 0)
5404 break;
5405 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005406 print = bc_num_printDigits;
5407 }
5408
Denys Vlasenkod3401432018-12-18 17:00:35 +01005409 s = zbc_num_printNum(n, G.prog.ob_t, width, print);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005410 n->neg = neg;
5411
5412 RETURN_STATUS(s);
5413}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005414#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005415
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005416static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5417{
5418 BcStatus s = BC_STATUS_SUCCESS;
5419
5420 bc_num_printNewline();
5421
5422 if (n->len == 0) {
5423 bb_putchar('0');
5424 ++G.prog.nchars;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005425 } else if (G.prog.ob_t == 10)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005426 bc_num_printDecimal(n);
5427 else
5428 s = zbc_num_printBase(n);
5429
5430 if (newline) {
5431 bb_putchar('\n');
5432 G.prog.nchars = 0;
5433 }
5434
5435 RETURN_STATUS(s);
5436}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005437#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005438
Denys Vlasenko29301232018-12-11 15:29:32 +01005439static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005440{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005441 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005442 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005443 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005444 bool pop = inst != BC_INST_PRINT;
5445
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005446 if (!BC_PROG_STACK(&G.prog.results, idx + 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005447 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005448
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005449 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005450 num = NULL; // is this NULL necessary?
Denys Vlasenko29301232018-12-11 15:29:32 +01005451 s = zbc_program_num(r, &num, false);
5452 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005453
5454 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005455 s = zbc_num_print(num, !pop);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005456 if (!s) bc_num_copy(&G.prog.last, num);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005457 } else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005458 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005459
5460 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005461 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005462
5463 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005464 for (;;) {
5465 char c = *str++;
5466 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005467 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005468 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005469 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005470 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005471 } else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005472 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005473 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005474 }
5475 }
5476
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005477 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005478
Denys Vlasenko29301232018-12-11 15:29:32 +01005479 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005480}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005481#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005482
Denys Vlasenko29301232018-12-11 15:29:32 +01005483static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005484{
5485 BcStatus s;
5486 BcResult res, *ptr;
5487 BcNum *num = NULL;
5488
Denys Vlasenko29301232018-12-11 15:29:32 +01005489 s = zbc_program_prep(&ptr, &num);
5490 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005491
5492 bc_num_init(&res.d.n, num->len);
5493 bc_num_copy(&res.d.n, num);
5494 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5495
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005496 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005497
Denys Vlasenko29301232018-12-11 15:29:32 +01005498 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005499}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005500#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005501
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005502static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005503{
5504 BcStatus s;
5505 BcResult *opd1, *opd2, res;
5506 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005507 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005508
Denys Vlasenko29301232018-12-11 15:29:32 +01005509 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005510 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005511
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005512 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005513
5514 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005515 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005516 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005517 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005518 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005519 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005520 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005521 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005522 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005523 break;
5524 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005525 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005526 break;
5527 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005528 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005529 break;
5530 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005531 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005532 break;
5533 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005534 cond = (cond > 0);
5535 break;
5536 default: // = case BC_INST_REL_NE:
5537 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005538 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005539 }
5540 }
5541
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005542 if (cond) bc_num_one(&res.d.n);
5543 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005544
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005545 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005546
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005547 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005548}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005549#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005550
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005551#if ENABLE_DC
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005552static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v, bool push)
Gavin Howard01055ba2018-11-03 11:00:21 -06005553{
5554 BcNum n2;
5555 BcResult res;
5556
5557 memset(&n2, 0, sizeof(BcNum));
5558 n2.rdx = res.d.id.idx = r->d.id.idx;
5559 res.t = BC_RESULT_STR;
5560
5561 if (!push) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005562 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenko29301232018-12-11 15:29:32 +01005563 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005564 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005565 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005566 }
5567
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005568 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005569
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005570 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005571 bc_vec_push(v, &n2);
5572
Denys Vlasenko29301232018-12-11 15:29:32 +01005573 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005574}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005575#define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005576#endif // ENABLE_DC
5577
Denys Vlasenko29301232018-12-11 15:29:32 +01005578static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005579{
5580 BcStatus s;
5581 BcResult *ptr, r;
5582 BcVec *v;
5583 BcNum *n;
5584
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005585 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005586 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005587
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005588 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005589 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005590 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005591 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005592
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005593#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005594 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005595 RETURN_STATUS(bc_error_variable_is_wrong_type());
5596 if (ptr->t == BC_RESULT_STR)
5597 RETURN_STATUS(zbc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005598#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005599
Denys Vlasenko29301232018-12-11 15:29:32 +01005600 s = zbc_program_num(ptr, &n, false);
5601 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005602
5603 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005604 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005605
5606 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005607 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005608 bc_num_copy(&r.d.n, n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005609 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005610 bc_array_init(&r.d.v, true);
5611 bc_array_copy(&r.d.v, (BcVec *) n);
5612 }
5613
5614 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005615 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005616
Denys Vlasenko29301232018-12-11 15:29:32 +01005617 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005618}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005619#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005620
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005621static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005622{
5623 BcStatus s;
5624 BcResult *left, *right, res;
5625 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005626 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5627
Denys Vlasenko29301232018-12-11 15:29:32 +01005628 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005629 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005630
5631 ib = left->t == BC_RESULT_IBASE;
5632 sc = left->t == BC_RESULT_SCALE;
5633
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005634#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005635 if (right->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005636 BcVec *v;
5637
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005638 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005639 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005640 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005641
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005642 RETURN_STATUS(zbc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005643 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005644#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005645
5646 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005647 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005648 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005649 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005650 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005651
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005652#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005653 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005654 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005655
5656 if (assign)
5657 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005658 else {
5659 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005660 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 +01005661 }
5662 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005663#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005664 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005665#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005666
5667 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005668 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005669 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5670 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5671 NULL, //can't happen //BC_RESULT_LAST
5672 NULL, //can't happen //BC_RESULT_CONSTANT
5673 NULL, //can't happen //BC_RESULT_ONE
5674 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005675 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005676 size_t *ptr;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005677 size_t max;
5678 unsigned long val;
Gavin Howard01055ba2018-11-03 11:00:21 -06005679
Denys Vlasenko29301232018-12-11 15:29:32 +01005680 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005681 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005682 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005683 if (sc) {
5684 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005685 ptr = &G.prog.scale;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005686 } else {
5687 if (val < 2)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005688 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005689 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005690 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005691 }
5692
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005693 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005694 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005695
5696 *ptr = (size_t) val;
5697 s = BC_STATUS_SUCCESS;
5698 }
5699
5700 bc_num_init(&res.d.n, l->len);
5701 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005702 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005703
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005704 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005705}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005706#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005707
Denys Vlasenko416ce762018-12-02 20:57:17 +01005708#if !ENABLE_DC
5709#define bc_program_pushVar(code, bgn, pop, copy) \
5710 bc_program_pushVar(code, bgn)
5711// for bc, 'pop' and 'copy' are always false
5712#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005713static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005714 bool pop, bool copy)
5715{
Gavin Howard01055ba2018-11-03 11:00:21 -06005716 BcResult r;
5717 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06005718
5719 r.t = BC_RESULT_VAR;
5720 r.d.id.name = name;
5721
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005722#if ENABLE_DC
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005723 if (pop || copy) {
Denys Vlasenko416ce762018-12-02 20:57:17 +01005724 BcVec *v = bc_program_search(name, true);
5725 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005726
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005727 free(name);
5728 if (!BC_PROG_STACK(v, 2 - copy)) {
5729 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005730 }
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005731
5732 if (!BC_PROG_STR(num)) {
5733 r.t = BC_RESULT_TEMP;
5734 bc_num_init_DEF_SIZE(&r.d.n);
5735 bc_num_copy(&r.d.n, num);
5736 } else {
5737 r.t = BC_RESULT_STR;
5738 r.d.id.idx = num->rdx;
5739 }
5740
5741 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005742 }
5743#endif // ENABLE_DC
5744
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005745 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005746
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005747 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005748}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005749#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005750
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005751static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005752{
5753 BcStatus s = BC_STATUS_SUCCESS;
5754 BcResult r;
5755 BcNum *num;
5756
5757 r.d.id.name = bc_program_name(code, bgn);
5758
5759 if (inst == BC_INST_ARRAY) {
5760 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005761 bc_vec_push(&G.prog.results, &r);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005762 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005763 BcResult *operand;
5764 unsigned long temp;
5765
Denys Vlasenko29301232018-12-11 15:29:32 +01005766 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005767 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01005768 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06005769 if (s) goto err;
5770
5771 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005772 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06005773 goto err;
5774 }
5775
5776 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005777 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06005778 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005779 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005780 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01005781 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005782}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005783#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005784
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005785#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01005786static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005787{
5788 BcStatus s;
5789 BcResult *ptr, res, copy;
5790 BcNum *num = NULL;
5791 char inst2 = inst;
5792
Denys Vlasenko29301232018-12-11 15:29:32 +01005793 s = zbc_program_prep(&ptr, &num);
5794 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005795
5796 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
5797 copy.t = BC_RESULT_TEMP;
5798 bc_num_init(&copy.d.n, num->len);
5799 bc_num_copy(&copy.d.n, num);
5800 }
5801
5802 res.t = BC_RESULT_ONE;
5803 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
5804 BC_INST_ASSIGN_PLUS :
5805 BC_INST_ASSIGN_MINUS;
5806
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005807 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005808 s = zbc_program_assign(inst);
5809 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005810
5811 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005812 bc_vec_pop(&G.prog.results);
5813 bc_vec_push(&G.prog.results, &copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06005814 }
5815
Denys Vlasenko29301232018-12-11 15:29:32 +01005816 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005817}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005818#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005819
Denys Vlasenko29301232018-12-11 15:29:32 +01005820static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005821{
Gavin Howard01055ba2018-11-03 11:00:21 -06005822 BcInstPtr ip;
5823 size_t i, nparams = bc_program_index(code, idx);
5824 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06005825 BcId *a;
5826 BcResultData param;
5827 BcResult *arg;
5828
5829 ip.idx = 0;
5830 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005831 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005832
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005833 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005834 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005835 }
5836 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005837 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005838 }
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005839 ip.len = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005840
5841 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005842 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005843
5844 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005845 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005846
5847 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01005848 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005849
Denys Vlasenko29301232018-12-11 15:29:32 +01005850 s = zbc_program_copyToVar(a->name, a->idx);
5851 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005852 }
5853
5854 for (; i < func->autos.len; ++i) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01005855 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06005856
5857 a = bc_vec_item(&func->autos, i);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005858 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005859
5860 if (a->idx) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005861 bc_num_init_DEF_SIZE(&param.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005862 bc_vec_push(v, &param.n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005863 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005864 bc_array_init(&param.v, true);
5865 bc_vec_push(v, &param.v);
5866 }
5867 }
5868
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005869 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005870
Denys Vlasenko29301232018-12-11 15:29:32 +01005871 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005872}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005873#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005874
Denys Vlasenko29301232018-12-11 15:29:32 +01005875static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005876{
Gavin Howard01055ba2018-11-03 11:00:21 -06005877 BcResult res;
5878 BcFunc *f;
5879 size_t i;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005880 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005881
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005882 if (!BC_PROG_STACK(&G.prog.results, ip->len + inst == BC_INST_RET))
Denys Vlasenko29301232018-12-11 15:29:32 +01005883 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005884
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005885 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005886 res.t = BC_RESULT_TEMP;
5887
5888 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005889 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005890 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005891 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005892
Denys Vlasenko29301232018-12-11 15:29:32 +01005893 s = zbc_program_num(operand, &num, false);
5894 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005895 bc_num_init(&res.d.n, num->len);
5896 bc_num_copy(&res.d.n, num);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005897 } else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005898 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01005899 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005900 }
5901
5902 // We need to pop arguments as well, so this takes that into account.
5903 for (i = 0; i < f->autos.len; ++i) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005904 BcVec *v;
5905 BcId *a = bc_vec_item(&f->autos, i);
5906
Denys Vlasenkodf515392018-12-02 19:27:48 +01005907 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005908 bc_vec_pop(v);
5909 }
5910
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005911 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->len);
5912 bc_vec_push(&G.prog.results, &res);
5913 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005914
Denys Vlasenko29301232018-12-11 15:29:32 +01005915 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005916}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005917#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005918#endif // ENABLE_BC
5919
5920static unsigned long bc_program_scale(BcNum *n)
5921{
5922 return (unsigned long) n->rdx;
5923}
5924
5925static unsigned long bc_program_len(BcNum *n)
5926{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01005927 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005928
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01005929 if (n->rdx != len) return len;
5930 for (;;) {
5931 if (len == 0) break;
5932 len--;
5933 if (n->num[len] != 0) break;
5934 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005935 return len;
5936}
5937
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005938static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005939{
5940 BcStatus s;
5941 BcResult *opnd;
5942 BcNum *num = NULL;
5943 BcResult res;
5944 bool len = inst == BC_INST_LENGTH;
5945
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005946 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005947 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005948 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005949
Denys Vlasenko29301232018-12-11 15:29:32 +01005950 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005951 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005952
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005953#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005954 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005955 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005956#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005957
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005958 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005959
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005960 if (inst == BC_INST_SQRT)
5961 s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005962#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06005963 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01005964 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06005965 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005966#endif
5967#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005968 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005969 char **str;
5970 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
5971
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005972 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01005973 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06005974 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005975#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005976 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01005977 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06005978 }
5979
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005980 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005981
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005982 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005983}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005984#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005985
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005986#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005987static BC_STATUS zbc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005988{
5989 BcStatus s;
5990 BcResult *opd1, *opd2, res, res2;
5991 BcNum *n1, *n2 = NULL;
5992
Denys Vlasenko29301232018-12-11 15:29:32 +01005993 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005994 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005995
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005996 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005997 bc_num_init(&res2.d.n, n2->len);
5998
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01005999 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006000 if (s) goto err;
6001
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006002 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006003 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006004 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006005
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006006 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006007 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006008 bc_num_free(&res2.d.n);
6009 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006010 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006011}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006012#define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006013
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006014static BC_STATUS zbc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006015{
6016 BcStatus s;
6017 BcResult *r1, *r2, *r3, res;
6018 BcNum *n1, *n2, *n3;
6019
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006020 if (!BC_PROG_STACK(&G.prog.results, 3))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006021 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006022 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006023 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006024
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006025 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006026 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006027 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006028 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006029 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006030
6031 // Make sure that the values have their pointers updated, if necessary.
6032 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006033 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006034 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006035 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006036 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006037 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006038 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006039 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006040 }
6041 }
6042
6043 bc_num_init(&res.d.n, n3->len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006044 s = zbc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006045 if (s) goto err;
6046
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006047 bc_vec_pop(&G.prog.results);
6048 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006049
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006050 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006051 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006052 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006053 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006054}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006055#define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006056
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006057static void bc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006058{
Gavin Howard01055ba2018-11-03 11:00:21 -06006059 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006060 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006061
6062 res.t = BC_RESULT_TEMP;
6063
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006064 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006065 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006066 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006067}
6068
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006069static BC_STATUS zbc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006070{
6071 BcStatus s;
6072 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006073 BcNum *num, n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006074 char *str, *str2, c;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006075 size_t len = G.prog.strs.len, idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006076 unsigned long val;
6077
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006078 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006079 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006080 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006081
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006082 num = NULL; // TODO: is this NULL needed?
Denys Vlasenko29301232018-12-11 15:29:32 +01006083 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006084 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006085
6086 if (BC_PROG_NUM(r, num)) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01006087 BcNum strmb;
6088
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006089 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006090 bc_num_copy(&n, num);
6091 bc_num_truncate(&n, n.rdx);
6092
Denys Vlasenkod3401432018-12-18 17:00:35 +01006093//TODO: have BcNumSmall type, with static buffer
6094 bc_num_init_DEF_SIZE(&strmb);
6095 bc_num_ulong2num(&strmb, 0x100);
6096 s = zbc_num_mod(&n, &strmb, &n, 0);
6097 bc_num_free(&strmb);
6098
Gavin Howard01055ba2018-11-03 11:00:21 -06006099 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006100 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006101 if (s) goto num_err;
6102
6103 c = (char) val;
6104
6105 bc_num_free(&n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006106 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06006107 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006108 str2 = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006109 c = str2[0];
6110 }
6111
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006112 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006113 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006114 //str[1] = '\0'; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006115
6116 str2 = xstrdup(str);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006117 bc_program_addFunc(str2, &idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006118
6119 if (idx != len + BC_PROG_REQ_FUNCS) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006120 for (idx = 0; idx < G.prog.strs.len; ++idx) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006121 if (strcmp(*bc_program_str(idx), str) == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006122 len = idx;
6123 break;
6124 }
6125 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006126 free(str);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006127 } else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006128 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006129
6130 res.t = BC_RESULT_STR;
6131 res.d.id.idx = len;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006132 bc_vec_pop(&G.prog.results);
6133 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006134
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006135 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006136 num_err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006137 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006138 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006139}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006140#define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006141
Denys Vlasenko29301232018-12-11 15:29:32 +01006142static BC_STATUS zbc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006143{
6144 BcStatus s;
6145 BcResult *r;
6146 BcNum *n = NULL;
6147 size_t idx;
6148 char *str;
6149
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006150 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01006151 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006152 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006153
Denys Vlasenko29301232018-12-11 15:29:32 +01006154 s = zbc_program_num(r, &n, false);
6155 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006156
Denys Vlasenko57734c92018-12-17 21:14:05 +01006157 if (BC_PROG_NUM(r, n)) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01006158 s = zbc_num_printNum(n, 0x100, 1, bc_num_printChar);
Denys Vlasenko57734c92018-12-17 21:14:05 +01006159 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06006160 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006161 str = *bc_program_str(idx);
Denys Vlasenko00d77792018-11-30 23:13:42 +01006162 printf("%s", str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006163 }
6164
Denys Vlasenko29301232018-12-11 15:29:32 +01006165 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006166}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006167#define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006168
Denys Vlasenko29301232018-12-11 15:29:32 +01006169static BC_STATUS zbc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006170{
6171 BcStatus s;
6172 BcResult *opnd;
6173 BcNum *num = NULL;
6174 unsigned long val;
6175
Denys Vlasenko29301232018-12-11 15:29:32 +01006176 s = zbc_program_prep(&opnd, &num);
6177 if (s) RETURN_STATUS(s);
6178 s = zbc_num_ulong(num, &val);
6179 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006180
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006181 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006182
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006183 if (G.prog.stack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006184 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006185 if (G.prog.stack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006186 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006187 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006188
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006189 bc_vec_npop(&G.prog.stack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006190
Denys Vlasenko29301232018-12-11 15:29:32 +01006191 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006192}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006193#define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006194
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006195static BC_STATUS zbc_program_execStr(char *code, size_t *bgn, bool cond)
Gavin Howard01055ba2018-11-03 11:00:21 -06006196{
6197 BcStatus s = BC_STATUS_SUCCESS;
6198 BcResult *r;
6199 char **str;
6200 BcFunc *f;
6201 BcParse prs;
6202 BcInstPtr ip;
6203 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006204
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006205 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006206 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006207
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006208 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006209
6210 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006211 BcNum *n = n; // for compiler
6212 bool exec;
6213 char *name;
6214 char *then_name = bc_program_name(code, bgn);
6215 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006216
6217 if (code[*bgn] == BC_PARSE_STREND)
6218 (*bgn) += 1;
6219 else
6220 else_name = bc_program_name(code, bgn);
6221
6222 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006223 name = then_name;
6224 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006225 exec = true;
6226 name = else_name;
6227 }
6228
6229 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006230 BcVec *v;
6231 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006232 n = bc_vec_top(v);
6233 }
6234
6235 free(then_name);
6236 free(else_name);
6237
6238 if (!exec) goto exit;
6239 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006240 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006241 goto exit;
6242 }
6243
6244 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006245 } else {
6246 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006247 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006248 } else if (r->t == BC_RESULT_VAR) {
6249 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006250 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006251 if (s || !BC_PROG_STR(n)) goto exit;
6252 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006253 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006254 goto exit;
6255 }
6256
6257 fidx = sidx + BC_PROG_REQ_FUNCS;
6258
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006259 str = bc_program_str(sidx);
6260 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006261
6262 if (f->code.len == 0) {
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006263 bc_parse_create(&prs, fidx);
Denys Vlasenkof86e9602018-12-14 17:01:56 +01006264 s = zbc_parse_text_init(&prs, *str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006265 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006266 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006267 if (s) goto err;
6268
6269 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006270 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06006271 goto err;
6272 }
6273
6274 bc_parse_free(&prs);
6275 }
6276
6277 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006278 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006279 ip.func = fidx;
6280
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006281 bc_vec_pop(&G.prog.results);
6282 bc_vec_push(&G.prog.stack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006283
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006284 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006285 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006286 bc_parse_free(&prs);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006287 f = bc_program_func(fidx);
Denys Vlasenko7d628012018-12-04 21:46:47 +01006288 bc_vec_pop_all(&f->code);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006289 exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006290 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006291 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006292}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006293#define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006294#endif // ENABLE_DC
6295
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006296static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006297{
Gavin Howard01055ba2018-11-03 11:00:21 -06006298 BcResult res;
6299 unsigned long val;
6300
6301 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6302 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006303 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006304 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006305 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006306 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006307 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006308
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006309 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006310 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006311 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006312}
6313
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006314static void bc_program_addFunc(char *name, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06006315{
Gavin Howard01055ba2018-11-03 11:00:21 -06006316 BcId entry, *entry_ptr;
6317 BcFunc f;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006318 int inserted;
Gavin Howard01055ba2018-11-03 11:00:21 -06006319
6320 entry.name = name;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006321 entry.idx = G.prog.fns.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006322
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006323 inserted = bc_map_insert(&G.prog.fn_map, &entry, idx);
6324 if (!inserted) free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06006325
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006326 entry_ptr = bc_vec_item(&G.prog.fn_map, *idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006327 *idx = entry_ptr->idx;
6328
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01006329 if (!inserted) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006330 BcFunc *func = bc_program_func(entry_ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006331
6332 // We need to reset these, so the function can be repopulated.
6333 func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01006334 bc_vec_pop_all(&func->autos);
6335 bc_vec_pop_all(&func->code);
6336 bc_vec_pop_all(&func->labels);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006337 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06006338 bc_func_init(&f);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006339 bc_vec_push(&G.prog.fns, &f);
Gavin Howard01055ba2018-11-03 11:00:21 -06006340 }
6341}
6342
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006343static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006344{
Gavin Howard01055ba2018-11-03 11:00:21 -06006345 BcResult r, *ptr;
6346 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006347 BcInstPtr *ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006348 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006349 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006350
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006351 while (ip->idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006352 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06006353 char inst = code[(ip->idx)++];
6354
Denys Vlasenko99b37622018-12-15 20:06:59 +01006355 dbg_exec("inst:%d", inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006356 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006357#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006358 case BC_INST_JUMP_ZERO: {
6359 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006360 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006361 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006362 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006363 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006364 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006365 if (!zero) {
6366 bc_program_index(code, &ip->idx);
6367 break;
6368 }
6369 // else: fall through
6370 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006371 case BC_INST_JUMP: {
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006372 size_t idx = bc_program_index(code, &ip->idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006373 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006374 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006375 ip->idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006376 break;
6377 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006378 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006379 dbg_exec("BC_INST_CALL:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006380 s = zbc_program_call(code, &ip->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006381 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006382 case BC_INST_INC_PRE:
6383 case BC_INST_DEC_PRE:
6384 case BC_INST_INC_POST:
6385 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006386 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006387 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006388 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006389 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006390 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006391 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006392 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006393 case BC_INST_RET:
6394 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006395 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006396 s = zbc_program_return(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006397 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006398 case BC_INST_BOOL_OR:
6399 case BC_INST_BOOL_AND:
6400#endif // ENABLE_BC
6401 case BC_INST_REL_EQ:
6402 case BC_INST_REL_LE:
6403 case BC_INST_REL_GE:
6404 case BC_INST_REL_NE:
6405 case BC_INST_REL_LT:
6406 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006407 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006408 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006409 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006410 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006411 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006412 s = zbc_program_read();
Gavin Howard01055ba2018-11-03 11:00:21 -06006413 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006414 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006415 dbg_exec("BC_INST_VAR:");
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006416 s = zbc_program_pushVar(code, &ip->idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006417 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006418 case BC_INST_ARRAY_ELEM:
6419 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006420 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006421 s = zbc_program_pushArray(code, &ip->idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006422 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006423 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006424 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006425 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006426 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006427 case BC_INST_IBASE:
6428 case BC_INST_SCALE:
6429 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006430 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006431 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006432 case BC_INST_SCALE_FUNC:
6433 case BC_INST_LENGTH:
6434 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006435 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006436 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006437 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006438 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006439 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006440 r.t = BC_RESULT_CONSTANT;
6441 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006442 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006443 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006444 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006445 dbg_exec("BC_INST_POP:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006446 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006447 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006448 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006449 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006450 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006451 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006452 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006453 bc_vec_pop(&G.prog.stack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006454 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006455 case BC_INST_PRINT:
6456 case BC_INST_PRINT_POP:
6457 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006458 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006459 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006460 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006461 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006462 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006463 r.t = BC_RESULT_STR;
6464 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006465 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006466 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006467 case BC_INST_POWER:
6468 case BC_INST_MULTIPLY:
6469 case BC_INST_DIVIDE:
6470 case BC_INST_MODULUS:
6471 case BC_INST_PLUS:
6472 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006473 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006474 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006475 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006476 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006477 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006478 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006479 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006480 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006481 if (!bc_num_cmp(num, &G.prog.zero))
6482 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006483 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006484 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006485 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006486 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006487 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006488 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006489 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006490#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006491 case BC_INST_ASSIGN_POWER:
6492 case BC_INST_ASSIGN_MULTIPLY:
6493 case BC_INST_ASSIGN_DIVIDE:
6494 case BC_INST_ASSIGN_MODULUS:
6495 case BC_INST_ASSIGN_PLUS:
6496 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006497#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006498 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006499 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006500 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006501 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006502#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006503 case BC_INST_MODEXP:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006504 s = zbc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006505 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006506 case BC_INST_DIVMOD:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006507 s = zbc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006508 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006509 case BC_INST_EXECUTE:
6510 case BC_INST_EXEC_COND:
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006511 s = zbc_program_execStr(code, &ip->idx, inst == BC_INST_EXEC_COND);
Gavin Howard01055ba2018-11-03 11:00:21 -06006512 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006513 case BC_INST_PRINT_STACK: {
6514 size_t idx;
6515 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006516 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006517 if (s) break;
6518 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006519 break;
6520 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006521 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006522 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006523 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006524 case BC_INST_STACK_LEN:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006525 bc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006526 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006527 case BC_INST_DUPLICATE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006528 if (!BC_PROG_STACK(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006529 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006530 ptr = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006531 bc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006532 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006533 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006534 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006535 BcResult *ptr2;
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006536 if (!BC_PROG_STACK(&G.prog.results, 2))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006537 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006538 ptr = bc_vec_item_rev(&G.prog.results, 0);
6539 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006540 memcpy(&r, ptr, sizeof(BcResult));
6541 memcpy(ptr, ptr2, sizeof(BcResult));
6542 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006543 break;
6544 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006545 case BC_INST_ASCIIFY:
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006546 s = zbc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006547 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006548 case BC_INST_PRINT_STREAM:
Denys Vlasenko29301232018-12-11 15:29:32 +01006549 s = zbc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006550 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006551 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006552 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006553 bool copy = inst == BC_INST_LOAD;
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006554 s = zbc_program_pushVar(code, &ip->idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006555 break;
6556 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006557 case BC_INST_PUSH_TO_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006558 char *name = bc_program_name(code, &ip->idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006559 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006560 free(name);
6561 break;
6562 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006563 case BC_INST_QUIT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006564 dbg_exec("BC_INST_NEG:");
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006565 if (G.prog.stack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006566 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01006567 bc_vec_npop(&G.prog.stack, 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006568 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006569 case BC_INST_NQUIT:
Denys Vlasenko29301232018-12-11 15:29:32 +01006570 s = zbc_program_nquit();
Gavin Howard01055ba2018-11-03 11:00:21 -06006571 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006572#endif // ENABLE_DC
6573 }
6574
Denys Vlasenkod38af482018-12-04 19:11:02 +01006575 if (s || G_interrupt) {
6576 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006577 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006578 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006579
Denys Vlasenkoc5774a32018-12-17 01:22:53 +01006580 fflush_and_check();
6581
Gavin Howard01055ba2018-11-03 11:00:21 -06006582 // If the stack has changed, pointers may be invalid.
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006583 ip = bc_vec_top(&G.prog.stack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006584 func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006585 code = func->code.v;
6586 }
6587
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006588 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006589}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006590#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006591
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006592static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006593{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006594 char *lenv;
6595 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006596
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006597 lenv = getenv(var);
6598 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006599 if (!lenv) return len;
6600
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006601 len = bb_strtou(lenv, NULL, 10) - 1;
6602 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006603 len = BC_NUM_PRINT_WIDTH;
6604
6605 return len;
6606}
6607
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006608static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006609{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006610 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006611
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006612 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6613 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006614 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006615
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006616 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006617 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoec603182018-12-17 10:34:02 +01006618 s = zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006619 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006620 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006621 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006622 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006623 break;
6624 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006625 }
6626
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006627 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006628 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006629}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006630#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006631
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006632static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
Gavin Howard01055ba2018-11-03 11:00:21 -06006633{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006634 // So far bc/dc have no way to include a file from another file,
6635 // therefore we know G.prog.file == NULL on entry
6636 //const char *sv_file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006637 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006638
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006639 G.prog.file = filename;
6640 G.input_fp = fp;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006641 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06006642
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006643 do {
6644 s = zbc_vm_process("");
6645 // We do not stop looping on errors here if reading stdin.
6646 // Example: start interactive bc and enter "return".
6647 // It should say "'return' not in a function"
6648 // but should not exit.
6649 } while (G.input_fp == stdin);
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006650 G.prog.file = NULL;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006651 RETURN_STATUS(s);
6652}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006653#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006654
6655static BC_STATUS zbc_vm_file(const char *file)
6656{
6657 BcStatus s;
6658 FILE *fp;
6659
6660 fp = xfopen_for_read(file);
6661 s = zbc_vm_execute_FILE(fp, file);
6662 fclose(fp);
6663
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006664 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006665}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006666#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006667
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006668#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01006669static void bc_vm_info(void)
6670{
6671 printf("%s "BB_VER"\n"
6672 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
6673 , applet_name);
6674}
6675
6676static void bc_args(char **argv)
6677{
6678 unsigned opts;
6679 int i;
6680
6681 GETOPT_RESET();
6682#if ENABLE_FEATURE_BC_LONG_OPTIONS
6683 opts = option_mask32 |= getopt32long(argv, "wvsqli",
6684 "warn\0" No_argument "w"
6685 "version\0" No_argument "v"
6686 "standard\0" No_argument "s"
6687 "quiet\0" No_argument "q"
6688 "mathlib\0" No_argument "l"
6689 "interactive\0" No_argument "i"
6690 );
6691#else
6692 opts = option_mask32 |= getopt32(argv, "wvsqli");
6693#endif
6694 if (getenv("POSIXLY_CORRECT"))
6695 option_mask32 |= BC_FLAG_S;
6696
6697 if (opts & BC_FLAG_V) {
6698 bc_vm_info();
6699 exit(0);
6700 }
6701
6702 for (i = optind; argv[i]; ++i)
6703 bc_vec_push(&G.files, argv + i);
6704}
6705
6706static void bc_vm_envArgs(void)
6707{
6708 BcVec v;
6709 char *buf;
6710 char *env_args = getenv("BC_ENV_ARGS");
6711
6712 if (!env_args) return;
6713
6714 G.env_args = xstrdup(env_args);
6715 buf = G.env_args;
6716
6717 bc_vec_init(&v, sizeof(char *), NULL);
6718
6719 while (*(buf = skip_whitespace(buf)) != '\0') {
6720 bc_vec_push(&v, &buf);
6721 buf = skip_non_whitespace(buf);
6722 if (!*buf)
6723 break;
6724 *buf++ = '\0';
6725 }
6726
6727 // NULL terminate, and pass argv[] so that first arg is argv[1]
6728 if (sizeof(int) == sizeof(char*)) {
6729 bc_vec_push(&v, &const_int_0);
6730 } else {
6731 static char *const nullptr = NULL;
6732 bc_vec_push(&v, &nullptr);
6733 }
6734 bc_args(((char **)v.v) - 1);
6735
6736 bc_vec_free(&v);
6737}
6738
6739static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006740 "scale=20"
6741"\n" "define e(x){"
6742"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006743////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
6744//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
6745//e(-.998896): GNU:.36828580434569428695
6746// above code:.36828580434569428696
6747// actual value:.3682858043456942869594...
6748// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006749"\n" "b=ibase"
6750"\n" "ibase=A"
6751"\n" "if(x<0){"
6752"\n" "n=1"
6753"\n" "x=-x"
6754"\n" "}"
6755"\n" "s=scale"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006756"\n" "r=6+s+.44*x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006757"\n" "scale=scale(x)+1"
6758"\n" "while(x>1){"
6759"\n" "d+=1"
6760"\n" "x/=2"
6761"\n" "scale+=1"
6762"\n" "}"
6763"\n" "scale=r"
6764"\n" "r=x+1"
6765"\n" "p=x"
6766"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006767"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006768"\n" "p*=x"
6769"\n" "f*=i"
6770"\n" "v=p/f"
6771"\n" "r+=v"
6772"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006773"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006774"\n" "scale=s"
6775"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006776"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006777"\n" "return(r/1)"
6778"\n" "}"
6779"\n" "define l(x){"
6780"\n" "auto b,s,r,p,a,q,i,v"
6781"\n" "b=ibase"
6782"\n" "ibase=A"
6783"\n" "if(x<=0){"
6784"\n" "r=(1-10^scale)/1"
6785"\n" "ibase=b"
6786"\n" "return(r)"
6787"\n" "}"
6788"\n" "s=scale"
6789"\n" "scale+=6"
6790"\n" "p=2"
6791"\n" "while(x>=2){"
6792"\n" "p*=2"
6793"\n" "x=sqrt(x)"
6794"\n" "}"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006795"\n" "while(x<=.5){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006796"\n" "p*=2"
6797"\n" "x=sqrt(x)"
6798"\n" "}"
6799"\n" "r=a=(x-1)/(x+1)"
6800"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006801"\n" "v=1"
6802"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006803"\n" "a*=q"
6804"\n" "v=a/i"
6805"\n" "r+=v"
6806"\n" "}"
6807"\n" "r*=p"
6808"\n" "scale=s"
6809"\n" "ibase=b"
6810"\n" "return(r/1)"
6811"\n" "}"
6812"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01006813"\n" "auto b,s,r,a,q,i"
6814"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006815"\n" "b=ibase"
6816"\n" "ibase=A"
6817"\n" "s=scale"
6818"\n" "scale=1.1*s+2"
6819"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006820"\n" "scale=0"
6821"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006822"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006823"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006824"\n" "scale=s+2"
6825"\n" "r=a=x"
6826"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006827"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006828"\n" "a*=q/(i*(i-1))"
6829"\n" "r+=a"
6830"\n" "}"
6831"\n" "scale=s"
6832"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006833"\n" "return(r/1)"
6834"\n" "}"
6835"\n" "define c(x){"
6836"\n" "auto b,s"
6837"\n" "b=ibase"
6838"\n" "ibase=A"
6839"\n" "s=scale"
6840"\n" "scale*=1.2"
6841"\n" "x=s(2*a(1)+x)"
6842"\n" "scale=s"
6843"\n" "ibase=b"
6844"\n" "return(x/1)"
6845"\n" "}"
6846"\n" "define a(x){"
6847"\n" "auto b,s,r,n,a,m,t,f,i,u"
6848"\n" "b=ibase"
6849"\n" "ibase=A"
6850"\n" "n=1"
6851"\n" "if(x<0){"
6852"\n" "n=-1"
6853"\n" "x=-x"
6854"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006855"\n" "if(scale<65){"
6856"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
6857"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006858"\n" "}"
6859"\n" "s=scale"
6860"\n" "if(x>.2){"
6861"\n" "scale+=5"
6862"\n" "a=a(.2)"
6863"\n" "}"
6864"\n" "scale=s+3"
6865"\n" "while(x>.2){"
6866"\n" "m+=1"
6867"\n" "x=(x-.2)/(1+.2*x)"
6868"\n" "}"
6869"\n" "r=u=x"
6870"\n" "f=-x*x"
6871"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006872"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006873"\n" "u*=f"
6874"\n" "t=u/i"
6875"\n" "r+=t"
6876"\n" "}"
6877"\n" "scale=s"
6878"\n" "ibase=b"
6879"\n" "return((m*a+r)/n)"
6880"\n" "}"
6881"\n" "define j(n,x){"
6882"\n" "auto b,s,o,a,i,v,f"
6883"\n" "b=ibase"
6884"\n" "ibase=A"
6885"\n" "s=scale"
6886"\n" "scale=0"
6887"\n" "n/=1"
6888"\n" "if(n<0){"
6889"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006890"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006891"\n" "}"
6892"\n" "a=1"
6893"\n" "for(i=2;i<=n;++i)a*=i"
6894"\n" "scale=1.5*s"
6895"\n" "a=(x^n)/2^n/a"
6896"\n" "r=v=1"
6897"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01006898"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006899"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006900"\n" "v=v*f/i/(n+i)"
6901"\n" "r+=v"
6902"\n" "}"
6903"\n" "scale=s"
6904"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006905"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006906"\n" "return(a*r/1)"
6907"\n" "}"
6908};
6909#endif // ENABLE_BC
6910
Denys Vlasenko19f11072018-12-12 22:48:19 +01006911static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006912{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006913 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006914 size_t i;
6915
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006916#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01006917 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006918 // We know that internal library is not buggy,
6919 // thus error checking is normally disabled.
6920# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006921 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006922 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01006923 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006924 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006925#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006926
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006927 s = BC_STATUS_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006928 for (i = 0; !s && i < G.files.len; ++i)
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006929 s = zbc_vm_file(*((char **) bc_vec_item(&G.files, i)));
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006930 if (ENABLE_FEATURE_CLEAN_UP && s && !G_ttyin) {
6931 // Debug config, non-interactive mode:
6932 // return all the way back to main.
6933 // Non-debug builds do not come here, they exit.
Denys Vlasenko19f11072018-12-12 22:48:19 +01006934 RETURN_STATUS(s);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01006935 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006936
Denys Vlasenko91cde952018-12-10 20:56:08 +01006937 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006938 s = zbc_vm_execute_FILE(stdin, /*filename:*/ NULL);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006939
Denys Vlasenko19f11072018-12-12 22:48:19 +01006940 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006941}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006942#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006943
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006944#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006945static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006946{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006947 bc_vec_free(&G.prog.fns);
6948 bc_vec_free(&G.prog.fn_map);
6949 bc_vec_free(&G.prog.vars);
6950 bc_vec_free(&G.prog.var_map);
6951 bc_vec_free(&G.prog.arrs);
6952 bc_vec_free(&G.prog.arr_map);
6953 bc_vec_free(&G.prog.strs);
6954 bc_vec_free(&G.prog.consts);
6955 bc_vec_free(&G.prog.results);
6956 bc_vec_free(&G.prog.stack);
6957 bc_num_free(&G.prog.last);
6958 bc_num_free(&G.prog.zero);
6959 bc_num_free(&G.prog.one);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006960 bc_vec_free(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006961}
6962
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006963static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006964{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006965 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006966 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006967 bc_parse_free(&G.prs);
6968 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06006969}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006970#endif
6971
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006972static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006973{
6974 size_t idx;
6975 BcInstPtr ip;
6976
Denys Vlasenko82269122018-12-14 16:30:56 +01006977 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006978 memset(&ip, 0, sizeof(BcInstPtr));
6979
Denys Vlasenko82269122018-12-14 16:30:56 +01006980 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006981 G.prog.ib_t = 10;
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006982 G.prog.ob_t = 10;
6983
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006984 bc_num_init_DEF_SIZE(&G.prog.last);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006985 //bc_num_zero(&G.prog.last); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006986
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006987 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006988 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006989
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006990 bc_num_init_DEF_SIZE(&G.prog.one);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006991 bc_num_one(&G.prog.one);
6992
6993 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01006994 bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006995
Denys Vlasenko1f67e932018-12-03 00:08:59 +01006996 bc_program_addFunc(xstrdup("(main)"), &idx);
6997 bc_program_addFunc(xstrdup("(read)"), &idx);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006998
6999 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007000 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007001
7002 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007003 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007004
7005 bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);
7006 bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);
7007 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
7008 bc_vec_init(&G.prog.stack, sizeof(BcInstPtr), NULL);
7009 bc_vec_push(&G.prog.stack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007010
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007011 bc_char_vec_init(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007012}
Gavin Howard01055ba2018-11-03 11:00:21 -06007013
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007014static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007015{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007016#if ENABLE_FEATURE_EDITING
7017 G.line_input_state = new_line_input_t(DO_HISTORY);
7018#endif
7019 G.prog.len = bc_vm_envLen(env_len);
7020
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007021 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007022 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007023 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007024 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007025
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007026//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7027//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007028 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007029#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007030 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007031 // With SA_RESTART, most system calls will restart
7032 // (IOW: they won't fail with EINTR).
7033 // In particular, this means ^C won't cause
7034 // stdout to get into "error state" if SIGINT hits
7035 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007036 //
7037 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007038 // will only be handled after [Enter] since read()
7039 // from stdin is not interrupted by ^C either,
7040 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007041 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007042 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7043
7044 // Without SA_RESTART, this exhibits a bug:
7045 // "while (1) print 1" and try ^C-ing it.
7046 // Intermittently, instead of returning to input line,
7047 // you'll get "output error: Interrupted system call"
7048 // and exit.
7049 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007050#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007051 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007052 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007053 return 0; // "not a tty"
7054}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007055
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007056static BcStatus bc_vm_run(void)
7057{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007058 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007059#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007060 if (G_exiting) // it was actually "halt" or "quit"
7061 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007062 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007063# if ENABLE_FEATURE_EDITING
7064 free_line_input_t(G.line_input_state);
7065# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007066 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007067#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007068 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007069 return st;
7070}
7071
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007072#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007073int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007074int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007075{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007076 int is_tty;
7077
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007078 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007079
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007080 is_tty = bc_vm_init("BC_LINE_LENGTH");
7081
7082 bc_args(argv);
7083
7084 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7085 bc_vm_info();
7086
7087 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007088}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007089#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007090
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007091#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007092int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007093int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007094{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007095 int noscript;
7096
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007097 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007098
7099 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7100 // 1 char wider than bc from the same package.
7101 // Both default width, and xC_LINE_LENGTH=N are wider:
7102 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007103 // |1234\ |
7104 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007105 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007106 // |123\ |
7107 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007108 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007109 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007110
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007111 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7112 noscript = BC_FLAG_I;
7113 for (;;) {
7114 int n = getopt(argc, argv, "e:f:x");
7115 if (n <= 0)
7116 break;
7117 switch (n) {
7118 case 'e':
7119 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007120 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007121 if (n) return n;
7122 break;
7123 case 'f':
7124 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007125 n = zbc_vm_file(optarg);
7126 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007127 break;
7128 case 'x':
7129 option_mask32 |= DC_FLAG_X;
7130 break;
7131 default:
7132 bb_show_usage();
7133 }
7134 }
7135 argv += optind;
7136
7137 while (*argv) {
7138 noscript = 0;
7139 bc_vec_push(&G.files, argv++);
7140 }
7141
7142 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7143
7144 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007145}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007146#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007147
7148#endif // not DC_SMALL