blob: 8316933f6c7347a121487c0c713b7d98f870f697 [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 Vlasenkob80d7aa2018-12-19 12:35:27 +0100170#define DEBUG_LEXER 0
171#define DEBUG_COMPILE 0
172#define DEBUG_EXEC 0
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100173
174#if DEBUG_LEXER
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100175static uint8_t lex_indent;
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100176#define dbg_lex(...) \
177 do { \
178 fprintf(stderr, "%*s", lex_indent, ""); \
179 bb_error_msg(__VA_ARGS__); \
180 } while (0)
181#define dbg_lex_enter(...) \
182 do { \
183 dbg_lex(__VA_ARGS__); \
184 lex_indent++; \
185 } while (0)
186#define dbg_lex_done(...) \
187 do { \
188 lex_indent--; \
189 dbg_lex(__VA_ARGS__); \
190 } while (0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100191#else
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100192# define dbg_lex(...) ((void)0)
193# define dbg_lex_enter(...) ((void)0)
194# define dbg_lex_done(...) ((void)0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100195#endif
196
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +0100197#if DEBUG_COMPILE
198# define dbg_compile(...) bb_error_msg(__VA_ARGS__)
199#else
200# define dbg_compile(...) ((void)0)
201#endif
202
Denys Vlasenko99b37622018-12-15 20:06:59 +0100203#if DEBUG_EXEC
204# define dbg_exec(...) bb_error_msg(__VA_ARGS__)
205#else
206# define dbg_exec(...) ((void)0)
207#endif
208
Gavin Howard01055ba2018-11-03 11:00:21 -0600209typedef enum BcStatus {
Denys Vlasenko60cf7472018-12-04 20:05:28 +0100210 BC_STATUS_SUCCESS = 0,
211 BC_STATUS_FAILURE = 1,
Denys Vlasenkob402ff82018-12-11 15:45:15 +0100212 BC_STATUS_PARSE_EMPTY_EXP = 2, // bc_parse_expr_empty_ok() uses this
Gavin Howard01055ba2018-11-03 11:00:21 -0600213} BcStatus;
214
Gavin Howard01055ba2018-11-03 11:00:21 -0600215#define BC_VEC_INVALID_IDX ((size_t) -1)
216#define BC_VEC_START_CAP (1 << 5)
217
Denys Vlasenko5ba55f12018-12-10 15:37:14 +0100218typedef void (*BcVecFree)(void *) FAST_FUNC;
Gavin Howard01055ba2018-11-03 11:00:21 -0600219
220typedef struct BcVec {
221 char *v;
222 size_t len;
223 size_t cap;
224 size_t size;
225 BcVecFree dtor;
226} BcVec;
227
Gavin Howard01055ba2018-11-03 11:00:21 -0600228typedef signed char BcDig;
229
230typedef struct BcNum {
231 BcDig *restrict num;
232 size_t rdx;
233 size_t len;
234 size_t cap;
235 bool neg;
236} BcNum;
237
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100238#define BC_NUM_MAX_IBASE ((unsigned long) 16)
239// larger value might speed up BIGNUM calculations a bit:
240#define BC_NUM_DEF_SIZE (16)
241#define BC_NUM_PRINT_WIDTH (69)
Gavin Howard01055ba2018-11-03 11:00:21 -0600242
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100243#define BC_NUM_KARATSUBA_LEN (32)
Gavin Howard01055ba2018-11-03 11:00:21 -0600244
Gavin Howard01055ba2018-11-03 11:00:21 -0600245typedef enum BcInst {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100246#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600247 BC_INST_INC_PRE,
248 BC_INST_DEC_PRE,
249 BC_INST_INC_POST,
250 BC_INST_DEC_POST,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100251#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600252
253 BC_INST_NEG,
254
255 BC_INST_POWER,
256 BC_INST_MULTIPLY,
257 BC_INST_DIVIDE,
258 BC_INST_MODULUS,
259 BC_INST_PLUS,
260 BC_INST_MINUS,
261
262 BC_INST_REL_EQ,
263 BC_INST_REL_LE,
264 BC_INST_REL_GE,
265 BC_INST_REL_NE,
266 BC_INST_REL_LT,
267 BC_INST_REL_GT,
268
269 BC_INST_BOOL_NOT,
270 BC_INST_BOOL_OR,
271 BC_INST_BOOL_AND,
272
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100273#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600274 BC_INST_ASSIGN_POWER,
275 BC_INST_ASSIGN_MULTIPLY,
276 BC_INST_ASSIGN_DIVIDE,
277 BC_INST_ASSIGN_MODULUS,
278 BC_INST_ASSIGN_PLUS,
279 BC_INST_ASSIGN_MINUS,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100280#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600281 BC_INST_ASSIGN,
282
283 BC_INST_NUM,
284 BC_INST_VAR,
285 BC_INST_ARRAY_ELEM,
286 BC_INST_ARRAY,
287
288 BC_INST_SCALE_FUNC,
289 BC_INST_IBASE,
290 BC_INST_SCALE,
291 BC_INST_LAST,
292 BC_INST_LENGTH,
293 BC_INST_READ,
294 BC_INST_OBASE,
295 BC_INST_SQRT,
296
297 BC_INST_PRINT,
298 BC_INST_PRINT_POP,
299 BC_INST_STR,
300 BC_INST_PRINT_STR,
301
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100302#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600303 BC_INST_JUMP,
304 BC_INST_JUMP_ZERO,
305
306 BC_INST_CALL,
307
308 BC_INST_RET,
309 BC_INST_RET0,
310
311 BC_INST_HALT,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100312#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600313
314 BC_INST_POP,
315 BC_INST_POP_EXEC,
316
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100317#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600318 BC_INST_MODEXP,
319 BC_INST_DIVMOD,
320
321 BC_INST_EXECUTE,
322 BC_INST_EXEC_COND,
323
324 BC_INST_ASCIIFY,
325 BC_INST_PRINT_STREAM,
326
327 BC_INST_PRINT_STACK,
328 BC_INST_CLEAR_STACK,
329 BC_INST_STACK_LEN,
330 BC_INST_DUPLICATE,
331 BC_INST_SWAP,
332
333 BC_INST_LOAD,
334 BC_INST_PUSH_VAR,
335 BC_INST_PUSH_TO_VAR,
336
337 BC_INST_QUIT,
338 BC_INST_NQUIT,
339
340 BC_INST_INVALID = -1,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100341#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600342} BcInst;
343
344typedef struct BcId {
345 char *name;
346 size_t idx;
347} BcId;
348
349typedef struct BcFunc {
350 BcVec code;
351 BcVec labels;
352 size_t nparams;
353 BcVec autos;
354} BcFunc;
355
356typedef enum BcResultType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600357 BC_RESULT_TEMP,
358
359 BC_RESULT_VAR,
360 BC_RESULT_ARRAY_ELEM,
361 BC_RESULT_ARRAY,
362
363 BC_RESULT_STR,
364
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100365 //code uses "inst - BC_INST_IBASE + BC_RESULT_IBASE" construct,
366 BC_RESULT_IBASE, // relative order should match for: BC_INST_IBASE
367 BC_RESULT_SCALE, // relative order should match for: BC_INST_SCALE
368 BC_RESULT_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600369 BC_RESULT_CONSTANT,
370 BC_RESULT_ONE,
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100371 BC_RESULT_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600372} BcResultType;
373
374typedef union BcResultData {
375 BcNum n;
376 BcVec v;
377 BcId id;
378} BcResultData;
379
380typedef struct BcResult {
381 BcResultType t;
382 BcResultData d;
383} BcResult;
384
385typedef struct BcInstPtr {
386 size_t func;
387 size_t idx;
388 size_t len;
389} BcInstPtr;
390
Gavin Howard01055ba2018-11-03 11:00:21 -0600391// BC_LEX_NEG is not used in lexing; it is only for parsing.
392typedef enum BcLexType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600393 BC_LEX_EOF,
394 BC_LEX_INVALID,
395
396 BC_LEX_OP_INC,
397 BC_LEX_OP_DEC,
398
399 BC_LEX_NEG,
400
401 BC_LEX_OP_POWER,
402 BC_LEX_OP_MULTIPLY,
403 BC_LEX_OP_DIVIDE,
404 BC_LEX_OP_MODULUS,
405 BC_LEX_OP_PLUS,
406 BC_LEX_OP_MINUS,
407
408 BC_LEX_OP_REL_EQ,
409 BC_LEX_OP_REL_LE,
410 BC_LEX_OP_REL_GE,
411 BC_LEX_OP_REL_NE,
412 BC_LEX_OP_REL_LT,
413 BC_LEX_OP_REL_GT,
414
415 BC_LEX_OP_BOOL_NOT,
416 BC_LEX_OP_BOOL_OR,
417 BC_LEX_OP_BOOL_AND,
418
419 BC_LEX_OP_ASSIGN_POWER,
420 BC_LEX_OP_ASSIGN_MULTIPLY,
421 BC_LEX_OP_ASSIGN_DIVIDE,
422 BC_LEX_OP_ASSIGN_MODULUS,
423 BC_LEX_OP_ASSIGN_PLUS,
424 BC_LEX_OP_ASSIGN_MINUS,
425 BC_LEX_OP_ASSIGN,
426
427 BC_LEX_NLINE,
428 BC_LEX_WHITESPACE,
429
430 BC_LEX_LPAREN,
431 BC_LEX_RPAREN,
432
433 BC_LEX_LBRACKET,
434 BC_LEX_COMMA,
435 BC_LEX_RBRACKET,
436
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100437 BC_LEX_LBRACE, // '{' is 0x7B, '}' is 0x7D,
Gavin Howard01055ba2018-11-03 11:00:21 -0600438 BC_LEX_SCOLON,
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100439 BC_LEX_RBRACE, // should be LBRACE+2: code uses (c - '{' + BC_LEX_LBRACE)
Gavin Howard01055ba2018-11-03 11:00:21 -0600440
441 BC_LEX_STR,
442 BC_LEX_NAME,
443 BC_LEX_NUMBER,
444
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100445 BC_LEX_KEY_1st_keyword,
446 BC_LEX_KEY_AUTO = BC_LEX_KEY_1st_keyword,
Gavin Howard01055ba2018-11-03 11:00:21 -0600447 BC_LEX_KEY_BREAK,
448 BC_LEX_KEY_CONTINUE,
449 BC_LEX_KEY_DEFINE,
450 BC_LEX_KEY_ELSE,
451 BC_LEX_KEY_FOR,
452 BC_LEX_KEY_HALT,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100453 // code uses "type - BC_LEX_KEY_IBASE + BC_INST_IBASE" construct,
454 BC_LEX_KEY_IBASE, // relative order should match for: BC_INST_IBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600455 BC_LEX_KEY_IF,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100456 BC_LEX_KEY_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600457 BC_LEX_KEY_LENGTH,
458 BC_LEX_KEY_LIMITS,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100459 BC_LEX_KEY_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600460 BC_LEX_KEY_PRINT,
461 BC_LEX_KEY_QUIT,
462 BC_LEX_KEY_READ,
463 BC_LEX_KEY_RETURN,
464 BC_LEX_KEY_SCALE,
465 BC_LEX_KEY_SQRT,
466 BC_LEX_KEY_WHILE,
467
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100468#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600469 BC_LEX_EQ_NO_REG,
470 BC_LEX_OP_MODEXP,
471 BC_LEX_OP_DIVMOD,
472
473 BC_LEX_COLON,
474 BC_LEX_ELSE,
475 BC_LEX_EXECUTE,
476 BC_LEX_PRINT_STACK,
477 BC_LEX_CLEAR_STACK,
478 BC_LEX_STACK_LEVEL,
479 BC_LEX_DUPLICATE,
480 BC_LEX_SWAP,
481 BC_LEX_POP,
482
483 BC_LEX_ASCIIFY,
484 BC_LEX_PRINT_STREAM,
485
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100486 // code uses "t - BC_LEX_STORE_IBASE + BC_INST_IBASE" construct,
487 BC_LEX_STORE_IBASE, // relative order should match for: BC_INST_IBASE
488 BC_LEX_STORE_SCALE, // relative order should match for: BC_INST_SCALE
Gavin Howard01055ba2018-11-03 11:00:21 -0600489 BC_LEX_LOAD,
490 BC_LEX_LOAD_POP,
491 BC_LEX_STORE_PUSH,
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100492 BC_LEX_STORE_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600493 BC_LEX_PRINT_POP,
494 BC_LEX_NQUIT,
495 BC_LEX_SCALE_FACTOR,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100496#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600497} BcLexType;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100498// must match order of BC_LEX_KEY_foo etc above
499#if ENABLE_BC
500struct BcLexKeyword {
501 char name8[8];
502};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100503#define BC_LEX_KW_ENTRY(a, b) \
504 { .name8 = a /*, .posix = b */ }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100505static const struct BcLexKeyword bc_lex_kws[20] = {
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100506 BC_LEX_KW_ENTRY("auto" , 1), // 0
507 BC_LEX_KW_ENTRY("break" , 1), // 1
508 BC_LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
509 BC_LEX_KW_ENTRY("define" , 1), // 3
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100510 BC_LEX_KW_ENTRY("else" , 0), // 4
511 BC_LEX_KW_ENTRY("for" , 1), // 5
512 BC_LEX_KW_ENTRY("halt" , 0), // 6
513 BC_LEX_KW_ENTRY("ibase" , 1), // 7
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100514 BC_LEX_KW_ENTRY("if" , 1), // 8
515 BC_LEX_KW_ENTRY("last" , 0), // 9
516 BC_LEX_KW_ENTRY("length" , 1), // 10
517 BC_LEX_KW_ENTRY("limits" , 0), // 11
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100518 BC_LEX_KW_ENTRY("obase" , 1), // 12
519 BC_LEX_KW_ENTRY("print" , 0), // 13
520 BC_LEX_KW_ENTRY("quit" , 1), // 14
521 BC_LEX_KW_ENTRY("read" , 0), // 15
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100522 BC_LEX_KW_ENTRY("return" , 1), // 16
523 BC_LEX_KW_ENTRY("scale" , 1), // 17
524 BC_LEX_KW_ENTRY("sqrt" , 1), // 18
525 BC_LEX_KW_ENTRY("while" , 1), // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100526};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100527#undef BC_LEX_KW_ENTRY
Denys Vlasenko59d4ce92018-12-17 10:42:31 +0100528#define STRING_if (bc_lex_kws[8].name8)
529#define STRING_else (bc_lex_kws[4].name8)
530#define STRING_while (bc_lex_kws[19].name8)
531#define STRING_for (bc_lex_kws[5].name8)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100532enum {
533 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100534 | (1 << 0) // 0
535 | (1 << 1) // 1
536 | (0 << 2) // 2
537 | (1 << 3) // 3
538 | (0 << 4) // 4
539 | (1 << 5) // 5
540 | (0 << 6) // 6
541 | (1 << 7) // 7
542 | (1 << 8) // 8
543 | (0 << 9) // 9
544 | (1 << 10) // 10
545 | (0 << 11) // 11
546 | (1 << 12) // 12
547 | (0 << 13) // 13
548 | (1 << 14) // 14
549 | (0 << 15) // 15
550 | (1 << 16) // 16
551 | (1 << 17) // 17
552 | (1 << 18) // 18
553 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100554};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100555#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100556
557// This is a bit array that corresponds to token types. An entry is
558// true if the token is valid in an expression, false otherwise.
559// Used to figure out when expr parsing should stop *without error message*
560// - 0 element indicates this condition. 1 means "this token is to be eaten
561// as part of the expression", token can them still be determined to be invalid
562// by later processing.
563enum {
564#define EXBITS(a,b,c,d,e,f,g,h) \
565 ((uint64_t)((a << 0)+(b << 1)+(c << 2)+(d << 3)+(e << 4)+(f << 5)+(g << 6)+(h << 7)))
566 BC_PARSE_EXPRS_BITS = 0
567 + (EXBITS(0,0,1,1,1,1,1,1) << (0*8)) // 0: eof inval ++ -- - ^ * /
568 + (EXBITS(1,1,1,1,1,1,1,1) << (1*8)) // 8: % + - == <= >= != <
569 + (EXBITS(1,1,1,1,1,1,1,1) << (2*8)) // 16: > ! || && ^= *= /= %=
570 + (EXBITS(1,1,1,0,0,1,1,0) << (3*8)) // 24: += -= = NL WS ( ) [
571 + (EXBITS(0,0,0,0,0,0,1,1) << (4*8)) // 32: , ] { ; } STR NAME NUM
572 + (EXBITS(0,0,0,0,0,0,0,1) << (5*8)) // 40: auto break cont define else for halt ibase
573 + (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?
574 + (EXBITS(0,1,1,0,0,0,0,0) << (7*8)) // 56: return scale sqrt while
575#undef EXBITS
576};
577static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
578{
579#if ULONG_MAX > 0xffffffff
580 // 64-bit version (will not work correctly for 32-bit longs!)
581 return BC_PARSE_EXPRS_BITS & (1UL << i);
582#else
583 // 32-bit version
584 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
585 if (i >= 32) {
586 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
587 i &= 31;
588 }
589 return m & (1UL << i);
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100590#endif
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100591}
592
593// This is an array of data for operators that correspond to
594// [BC_LEX_OP_INC...BC_LEX_OP_ASSIGN] token types.
595static const uint8_t bc_parse_ops[] = {
596#define OP(p,l) ((int)(l) * 0x10 + (p))
597 OP(0, false), OP( 0, false ), // inc dec
598 OP(1, false), // neg
599 OP(2, false), // pow
600 OP(3, true ), OP( 3, true ), OP( 3, true ), // mul div mod
601 OP(4, true ), OP( 4, true ), // + -
602 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
603 OP(1, false), // not
604 OP(7, true ), OP( 7, true ), // or and
605 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
606 OP(5, false), OP( 5, false ), // -= =
607#undef OP
608};
609#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
610#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
611#endif // ENABLE_BC
612
613#if ENABLE_DC
614static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
615int8_t
616dc_parse_insts[] = {
617 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
618 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
619 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
620 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
621 BC_INST_INVALID, BC_INST_INVALID,
622 BC_INST_BOOL_NOT, 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,
625 BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GT, BC_INST_INVALID,
626 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
627 BC_INST_INVALID, BC_INST_INVALID,
628 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
629 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
630 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
631 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
632 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
633 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
634 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
635 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
636 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
637 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
638 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
639 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
640};
641#endif // ENABLE_DC
642
Gavin Howard01055ba2018-11-03 11:00:21 -0600643typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600644 const char *buf;
645 size_t i;
646 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600647 size_t len;
648 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600649 struct {
650 BcLexType t;
651 BcLexType last;
652 BcVec v;
653 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600654} BcLex;
655
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100656#define BC_PARSE_STREND (0xff)
Gavin Howard01055ba2018-11-03 11:00:21 -0600657
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100658#define BC_PARSE_REL (1 << 0)
659#define BC_PARSE_PRINT (1 << 1)
660#define BC_PARSE_NOCALL (1 << 2)
661#define BC_PARSE_NOREAD (1 << 3)
662#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600663
Gavin Howard01055ba2018-11-03 11:00:21 -0600664typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600665 BcLex l;
666
Gavin Howard01055ba2018-11-03 11:00:21 -0600667 BcVec exits;
668 BcVec conds;
669
670 BcVec ops;
671
Gavin Howard01055ba2018-11-03 11:00:21 -0600672 BcFunc *func;
673 size_t fidx;
674
Denys Vlasenkoe9519e42018-12-16 17:06:07 +0100675 size_t in_funcdef;
Gavin Howard01055ba2018-11-03 11:00:21 -0600676} BcParse;
677
Gavin Howard01055ba2018-11-03 11:00:21 -0600678typedef struct BcProgram {
Gavin Howard01055ba2018-11-03 11:00:21 -0600679 size_t len;
680 size_t scale;
681
Gavin Howard01055ba2018-11-03 11:00:21 -0600682 size_t ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600683 size_t ob_t;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +0100684 BcNum ob;
Gavin Howard01055ba2018-11-03 11:00:21 -0600685
Gavin Howard01055ba2018-11-03 11:00:21 -0600686 BcVec results;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +0100687 BcVec exestack;
Gavin Howard01055ba2018-11-03 11:00:21 -0600688
689 BcVec fns;
690 BcVec fn_map;
691
692 BcVec vars;
693 BcVec var_map;
694
695 BcVec arrs;
696 BcVec arr_map;
697
698 BcVec strs;
699 BcVec consts;
700
701 const char *file;
702
703 BcNum last;
704 BcNum zero;
705 BcNum one;
706
707 size_t nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -0600708} BcProgram;
709
Gavin Howard01055ba2018-11-03 11:00:21 -0600710#define BC_PROG_MAIN (0)
711#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100712#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600713#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100714#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600715
716#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
717#define BC_PROG_NUM(r, n) \
718 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
719
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100720#define BC_FLAG_W (1 << 0)
721#define BC_FLAG_V (1 << 1)
722#define BC_FLAG_S (1 << 2)
723#define BC_FLAG_Q (1 << 3)
724#define BC_FLAG_L (1 << 4)
725#define BC_FLAG_I (1 << 5)
726#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600727
728#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
729#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
730
Denys Vlasenko64074a12018-12-07 15:50:14 +0100731#define BC_MAX_OBASE ((unsigned) 999)
732#define BC_MAX_DIM ((unsigned) INT_MAX)
733#define BC_MAX_SCALE ((unsigned) UINT_MAX)
734#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
735#define BC_MAX_NUM BC_MAX_STRING
736// Unused apart from "limits" message. Just show a "biggish number" there.
737//#define BC_MAX_NAME BC_MAX_STRING
738//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
739//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
740#define BC_MAX_NAME_STR "999999999"
741#define BC_MAX_EXP_STR "999999999"
742#define BC_MAX_VARS_STR "999999999"
743
744#define BC_MAX_OBASE_STR "999"
745
746#if INT_MAX == 2147483647
747# define BC_MAX_DIM_STR "2147483647"
748#elif INT_MAX == 9223372036854775807
749# define BC_MAX_DIM_STR "9223372036854775807"
750#else
751# error Strange INT_MAX
752#endif
753
754#if UINT_MAX == 4294967295
755# define BC_MAX_SCALE_STR "4294967295"
756# define BC_MAX_STRING_STR "4294967294"
757#elif UINT_MAX == 18446744073709551615
758# define BC_MAX_SCALE_STR "18446744073709551615"
759# define BC_MAX_STRING_STR "18446744073709551614"
760#else
761# error Strange UINT_MAX
762#endif
763#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600764
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100765struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100766 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100767 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100768 smallint in_read;
Gavin Howard01055ba2018-11-03 11:00:21 -0600769
770 BcParse prs;
771 BcProgram prog;
772
Denys Vlasenko5318f812018-12-05 17:48:01 +0100773 // For error messages. Can be set to current parsed line,
774 // or [TODO] to current executing line (can be before last parsed one)
775 unsigned err_line;
776
Gavin Howard01055ba2018-11-03 11:00:21 -0600777 BcVec files;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +0100778 BcVec input_buffer;
779 FILE *input_fp;
Gavin Howard01055ba2018-11-03 11:00:21 -0600780
781 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100782
783#if ENABLE_FEATURE_EDITING
784 line_input_t *line_input_state;
785#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100786} FIX_ALIASING;
787#define G (*ptr_to_globals)
788#define INIT_G() do { \
789 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
790} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100791#define FREE_G() do { \
792 FREE_PTR_TO_GLOBALS(); \
793} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100794#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
795#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100796#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100797#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100798# define G_interrupt bb_got_signal
799# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100800#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100801# define G_interrupt 0
802# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100803#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100804#if ENABLE_FEATURE_CLEAN_UP
805# define G_exiting G.exiting
806#else
807# define G_exiting 0
808#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100809#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100810#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100811
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100812// In configurations where errors abort instead of propagating error
813// return code up the call chain, functions returning BC_STATUS
814// actually don't return anything, they always succeed and return "void".
815// A macro wrapper is provided, which makes this statement work:
816// s = zbc_func(...)
817// and makes it visible to the compiler that s is always zero,
818// allowing compiler to optimize dead code after the statement.
819//
820// To make code more readable, each such function has a "z"
821// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
822//
823#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100824# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100825# define ERRORFUNC /*nothing*/
Denys Vlasenkoec603182018-12-17 10:34:02 +0100826# define IF_ERROR_RETURN_POSSIBLE(a) a
827# define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100828# define RETURN_STATUS(v) return (v)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100829# define COMMA_SUCCESS /*nothing*/
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100830#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100831# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100832# define ERRORFUNC NORETURN
Denys Vlasenkoec603182018-12-17 10:34:02 +0100833# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
834# define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100835# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100836# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100837#endif
838
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +0100839#define STACK_HAS_MORE_THAN(s, n) ((s)->len > ((size_t)(n)))
840#define STACK_HAS_EQUAL_OR_MORE_THAN(s, n) ((s)->len >= ((size_t)(n)))
841
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100842#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
843#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
844#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
845//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
846static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
847{
848 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
849}
850//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
851static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
852{
853 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
854}
855
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100856typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
857
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100858typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100859
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100860static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
861 BcNumBinaryOp op, size_t req);
862static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
863static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
864static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
865static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
866static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
867static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
868
869static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
870{
871 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
872 (void) scale;
873 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
874}
875
876static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
877{
878 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
879 (void) scale;
880 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
881}
882
883static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
884{
885 size_t req = BC_NUM_MREQ(a, b, scale);
886 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
887}
888
889static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
890{
891 size_t req = BC_NUM_MREQ(a, b, scale);
892 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
893}
894
895static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
896{
897 size_t req = BC_NUM_MREQ(a, b, scale);
898 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
899}
900
901static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
902{
903 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
904}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100905
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100906static const BcNumBinaryOp zbc_program_ops[] = {
907 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 -0600908};
Denys Vlasenkoec603182018-12-17 10:34:02 +0100909#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
910#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
911#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
912#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
913#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
914#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -0600915
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100916static void fflush_and_check(void)
917{
918 fflush_all();
919 if (ferror(stdout) || ferror(stderr))
920 bb_perror_msg_and_die("output error");
921}
922
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100923#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100924#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100925do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100926 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100927 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100928 return BC_STATUS_FAILURE; \
929} while (0)
930#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100931#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100932#endif
933
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100934static void quit(void) NORETURN;
935static void quit(void)
936{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100937 if (ferror(stdin))
938 bb_perror_msg_and_die("input error");
939 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100940 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100941 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100942}
943
Denys Vlasenko5318f812018-12-05 17:48:01 +0100944static void bc_verror_msg(const char *fmt, va_list p)
945{
Denys Vlasenko82269122018-12-14 16:30:56 +0100946 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +0100947 if (G.prog.file) {
948 sv = applet_name;
949 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
950 }
951 bb_verror_msg(fmt, p, NULL);
952 if (G.prog.file) {
953 free((char*)applet_name);
954 applet_name = sv;
955 }
956}
957
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100958static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100959{
960 va_list p;
961
962 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100963 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100964 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +0100965
Denys Vlasenkoec603182018-12-17 10:34:02 +0100966 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
967 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
968 exit(1);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100969}
970
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100971#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100972static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100973{
974 va_list p;
975
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100976 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100977 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100978 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100979
980 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100981 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100982 va_end(p);
983
984 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100985 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100986 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenkoec603182018-12-17 10:34:02 +0100987 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
988 return BC_STATUS_FAILURE;
989 exit(1);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100990}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100991#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100992
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100993// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
994// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100995// function must not have caller-cleaned parameters on stack.
996// Unfortunately, vararg function API does exactly that on most arches.
997// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100998static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100999{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001000 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001001}
1002static ERRORFUNC int bc_error_bad_character(char c)
1003{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001004 if (!c)
1005 IF_ERROR_RETURN_POSSIBLE(return) bc_error("NUL character");
Denys Vlasenkoec603182018-12-17 10:34:02 +01001006 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001007}
1008static ERRORFUNC int bc_error_bad_expression(void)
1009{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001010 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001011}
1012static ERRORFUNC int bc_error_bad_token(void)
1013{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001014 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001015}
1016static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1017{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001018 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001019}
1020static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1021{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001022 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001023}
1024static ERRORFUNC int bc_error_nested_read_call(void)
1025{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001026 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001027}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001028#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001029static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001030{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001031 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001032}
Denys Vlasenko00646792018-12-05 18:12:27 +01001033static int bc_POSIX_does_not_allow(const char *msg)
1034{
1035 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1036}
1037static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1038{
1039 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1040}
1041static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1042{
1043 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1044}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001045#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001046
Gavin Howard01055ba2018-11-03 11:00:21 -06001047static void bc_vec_grow(BcVec *v, size_t n)
1048{
1049 size_t cap = v->cap * 2;
1050 while (cap < v->len + n) cap *= 2;
1051 v->v = xrealloc(v->v, v->size * cap);
1052 v->cap = cap;
1053}
1054
1055static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1056{
1057 v->size = esize;
1058 v->cap = BC_VEC_START_CAP;
1059 v->len = 0;
1060 v->dtor = dtor;
1061 v->v = xmalloc(esize * BC_VEC_START_CAP);
1062}
1063
Denys Vlasenko7d628012018-12-04 21:46:47 +01001064static void bc_char_vec_init(BcVec *v)
1065{
1066 bc_vec_init(v, sizeof(char), NULL);
1067}
1068
Gavin Howard01055ba2018-11-03 11:00:21 -06001069static void bc_vec_expand(BcVec *v, size_t req)
1070{
1071 if (v->cap < req) {
1072 v->v = xrealloc(v->v, v->size * req);
1073 v->cap = req;
1074 }
1075}
1076
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001077static void bc_vec_pop(BcVec *v)
1078{
1079 v->len--;
1080 if (v->dtor)
1081 v->dtor(v->v + (v->size * v->len));
1082}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001083
Gavin Howard01055ba2018-11-03 11:00:21 -06001084static void bc_vec_npop(BcVec *v, size_t n)
1085{
1086 if (!v->dtor)
1087 v->len -= n;
1088 else {
1089 size_t len = v->len - n;
1090 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1091 }
1092}
1093
Denys Vlasenko7d628012018-12-04 21:46:47 +01001094static void bc_vec_pop_all(BcVec *v)
1095{
1096 bc_vec_npop(v, v->len);
1097}
1098
Gavin Howard01055ba2018-11-03 11:00:21 -06001099static void bc_vec_push(BcVec *v, const void *data)
1100{
1101 if (v->len + 1 > v->cap) bc_vec_grow(v, 1);
1102 memmove(v->v + (v->size * v->len), data, v->size);
1103 v->len += 1;
1104}
1105
1106static void bc_vec_pushByte(BcVec *v, char data)
1107{
1108 bc_vec_push(v, &data);
1109}
1110
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001111static void bc_vec_pushZeroByte(BcVec *v)
1112{
1113 //bc_vec_pushByte(v, '\0');
1114 // better:
1115 bc_vec_push(v, &const_int_0);
1116}
1117
Gavin Howard01055ba2018-11-03 11:00:21 -06001118static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1119{
1120 if (idx == v->len)
1121 bc_vec_push(v, data);
1122 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001123 char *ptr;
1124
1125 if (v->len == v->cap) bc_vec_grow(v, 1);
1126
1127 ptr = v->v + v->size * idx;
1128
1129 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1130 memmove(ptr, data, v->size);
1131 }
1132}
1133
1134static void bc_vec_string(BcVec *v, size_t len, const char *str)
1135{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001136 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001137 bc_vec_expand(v, len + 1);
1138 memcpy(v->v, str, len);
1139 v->len = len;
1140
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001141 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001142}
1143
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001144#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001145static void bc_vec_concat(BcVec *v, const char *str)
1146{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001147 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001148
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001149 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001150
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001151 slen = strlen(str);
1152 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001153
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001154 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001155 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001156
1157 v->len = len;
1158}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001159#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001160
1161static void *bc_vec_item(const BcVec *v, size_t idx)
1162{
1163 return v->v + v->size * idx;
1164}
1165
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001166static char** bc_program_str(size_t idx)
1167{
1168 return bc_vec_item(&G.prog.strs, idx);
1169}
1170
1171static BcFunc* bc_program_func(size_t idx)
1172{
1173 return bc_vec_item(&G.prog.fns, idx);
1174}
Denys Vlasenko65e10462018-12-19 15:13:14 +01001175// BC_PROG_MAIN is zeroth element, so:
1176#define bc_program_func_BC_PROG_MAIN() ((BcFunc*)(G.prog.fns.v))
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01001177
Gavin Howard01055ba2018-11-03 11:00:21 -06001178static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1179{
1180 return v->v + v->size * (v->len - idx - 1);
1181}
1182
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001183static void *bc_vec_top(const BcVec *v)
1184{
1185 return v->v + v->size * (v->len - 1);
1186}
1187
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001188static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001189{
1190 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001191 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001192 free(v->v);
1193}
1194
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001195static int bc_id_cmp(const void *e1, const void *e2)
1196{
1197 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1198}
1199
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001200static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001201{
1202 free(((BcId *) id)->name);
1203}
1204
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001205static size_t bc_map_find_ge(const BcVec *v, const void *ptr)
Gavin Howard01055ba2018-11-03 11:00:21 -06001206{
1207 size_t low = 0, high = v->len;
1208
1209 while (low < high) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001210 size_t mid = (low + high) / 2;
1211 BcId *id = bc_vec_item(v, mid);
1212 int result = bc_id_cmp(ptr, id);
1213
1214 if (result == 0)
1215 return mid;
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01001216 if (result < 0)
Gavin Howard01055ba2018-11-03 11:00:21 -06001217 high = mid;
1218 else
1219 low = mid + 1;
1220 }
1221
1222 return low;
1223}
1224
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001225static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001226{
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001227 size_t n = *i = bc_map_find_ge(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001228
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001229 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001230 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001231 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1232 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001233 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001234 bc_vec_pushAt(v, ptr, n);
1235 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001236}
1237
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001238#if ENABLE_BC
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001239static size_t bc_map_find_exact(const BcVec *v, const void *ptr)
Gavin Howard01055ba2018-11-03 11:00:21 -06001240{
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001241 size_t i = bc_map_find_ge(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001242 if (i >= v->len) return BC_VEC_INVALID_IDX;
1243 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1244}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001245#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001246
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001247static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001248{
1249 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1250 || c > 0x7e
1251 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001252 bc_error_fmt("illegal character 0x%02x", c);
1253 return 1;
1254 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001255 return 0;
1256}
1257
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001258// Note: it _appends_ data from fp to vec.
1259static void bc_read_line(BcVec *vec, FILE *fp)
Gavin Howard01055ba2018-11-03 11:00:21 -06001260{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001261 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001262 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001263
Gavin Howard01055ba2018-11-03 11:00:21 -06001264#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001265 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001266 intr:
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001267 if (fp != stdin) {
1268 // ^C while running a script (bc SCRIPT): die.
1269 // We do not return to interactive prompt:
1270 // user might be running us from a shell,
1271 // and SCRIPT might be intended to terminate
1272 // (e.g. contain a "halt" stmt).
1273 // ^C dropping user into a bc prompt instead of
1274 // the shell would be unexpected.
1275 xfunc_die();
1276 }
1277 // ^C while interactive input
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001278 G_interrupt = 0;
1279 // GNU bc says "interrupted execution."
1280 // GNU dc says "Interrupt!"
1281 fputs("\ninterrupted execution\n", stderr);
1282 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001283
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001284# if ENABLE_FEATURE_EDITING
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001285 if (G_ttyin && fp == stdin) {
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001286 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001287# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001288 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1289 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1290 if (n == 0) // ^C
1291 goto intr;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001292 bc_vec_pushZeroByte(vec); // ^D or EOF (or error)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001293 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001294 }
1295 i = 0;
1296 for (;;) {
1297 char c = line_buf[i++];
1298 if (!c) break;
1299 if (bad_input_byte(c)) goto again;
1300 }
1301 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001302# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001303 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001304# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001305#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001306 {
1307 int c;
1308 bool bad_chars = 0;
1309 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001310
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001311 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001312#if ENABLE_FEATURE_BC_SIGNALS
1313 if (G_interrupt) {
1314 // ^C was pressed: ignore entire line, get another one
1315 vec->len = len;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001316 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001317 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001318#endif
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001319 do c = fgetc(fp); while (c == '\0');
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001320 if (c == EOF) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001321 if (ferror(fp))
1322 bb_perror_msg_and_die("input error");
1323 // Note: EOF does not append '\n'
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001324 break;
1325 }
1326 bad_chars |= bad_input_byte(c);
1327 bc_vec_pushByte(vec, (char)c);
1328 } while (c != '\n');
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001329
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001330 if (bad_chars) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001331 // Bad chars on this line
1332 if (!G.prog.file) { // stdin
1333 // ignore entire line, get another one
1334 vec->len = len;
1335 goto again;
1336 }
1337 bb_perror_msg_and_die("file '%s' is not text", G.prog.file);
Denys Vlasenkoed849352018-12-06 10:26:13 +01001338 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001339 bc_vec_pushZeroByte(vec);
1340 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001341}
1342
Gavin Howard01055ba2018-11-03 11:00:21 -06001343static void bc_num_setToZero(BcNum *n, size_t scale)
1344{
1345 n->len = 0;
1346 n->neg = false;
1347 n->rdx = scale;
1348}
1349
1350static void bc_num_zero(BcNum *n)
1351{
1352 bc_num_setToZero(n, 0);
1353}
1354
1355static void bc_num_one(BcNum *n)
1356{
1357 bc_num_setToZero(n, 0);
1358 n->len = 1;
1359 n->num[0] = 1;
1360}
1361
Denys Vlasenko3129f702018-12-09 12:04:44 +01001362// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001363static void bc_num_init(BcNum *n, size_t req)
1364{
1365 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001366 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001367 n->num = xmalloc(req);
1368 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001369 n->rdx = 0;
1370 n->len = 0;
1371 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001372}
1373
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001374static void bc_num_init_DEF_SIZE(BcNum *n)
1375{
1376 bc_num_init(n, BC_NUM_DEF_SIZE);
1377}
1378
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001379static void bc_num_expand(BcNum *n, size_t req)
1380{
1381 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1382 if (req > n->cap) {
1383 n->num = xrealloc(n->num, req);
1384 n->cap = req;
1385 }
1386}
1387
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001388static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001389{
1390 free(((BcNum *) num)->num);
1391}
1392
1393static void bc_num_copy(BcNum *d, BcNum *s)
1394{
1395 if (d != s) {
1396 bc_num_expand(d, s->cap);
1397 d->len = s->len;
1398 d->neg = s->neg;
1399 d->rdx = s->rdx;
1400 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1401 }
1402}
1403
Denys Vlasenko29301232018-12-11 15:29:32 +01001404static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001405{
1406 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001407 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001408
Denys Vlasenko29301232018-12-11 15:29:32 +01001409 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001410
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001411 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001412 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001413
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001414 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001415 pow *= 10;
1416
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001417 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001418 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001419 prev = result;
1420 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001421 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001422 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001423
Denys Vlasenko29301232018-12-11 15:29:32 +01001424 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001425}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001426#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001427
1428static void bc_num_ulong2num(BcNum *n, unsigned long val)
1429{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001430 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001431
1432 bc_num_zero(n);
1433
1434 if (val == 0) return;
1435
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001436 if (ULONG_MAX == 0xffffffffUL)
1437 bc_num_expand(n, 10); // 10 digits: 4294967295
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001438 if (ULONG_MAX == 0xffffffffffffffffULL)
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001439 bc_num_expand(n, 20); // 20 digits: 18446744073709551615
Denys Vlasenkoc665c182018-12-10 15:15:42 +01001440 BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001441
1442 ptr = n->num;
1443 for (;;) {
1444 n->len++;
1445 *ptr++ = val % 10;
1446 val /= 10;
1447 if (val == 0) break;
1448 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001449}
1450
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001451static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b, size_t len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001452{
1453 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001454 for (i = 0; i < len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001455 a[i] -= b[i];
1456 for (j = i; a[j] < 0;) {
1457 a[j++] += 10;
1458 a[j] -= 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06001459 }
1460 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001461}
1462
1463static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1464{
Denys Vlasenko4113e1f2018-12-18 00:39:24 +01001465 size_t i = len;
1466 for (;;) {
1467 int c;
1468 if (i == 0)
1469 return 0;
1470 i--;
1471 c = a[i] - b[i];
1472 if (c != 0) {
1473 i++;
1474 if (c < 0)
1475 return -i;
1476 return i;
1477 }
1478 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001479}
1480
1481static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1482{
1483 size_t i, min, a_int, b_int, diff;
1484 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001485 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001486 ssize_t cmp;
1487
1488 if (a == b) return 0;
1489 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1490 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001491
1492 if (a->neg != b->neg) // signs of a and b differ
1493 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1494 return (int)b->neg - (int)a->neg;
1495 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001496
1497 a_int = BC_NUM_INT(a);
1498 b_int = BC_NUM_INT(b);
1499 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001500
1501 if (a_int != 0) return (ssize_t) a_int;
1502
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001503 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001504 if (a_max) {
1505 min = b->rdx;
1506 diff = a->rdx - b->rdx;
1507 max_num = a->num + diff;
1508 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001509 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1510 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001511 min = a->rdx;
1512 diff = b->rdx - a->rdx;
1513 max_num = b->num + diff;
1514 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001515 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001516 }
1517
1518 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001519 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001520
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001521 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001522 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001523 }
1524
1525 return 0;
1526}
1527
1528static void bc_num_truncate(BcNum *n, size_t places)
1529{
1530 if (places == 0) return;
1531
1532 n->rdx -= places;
1533
1534 if (n->len != 0) {
1535 n->len -= places;
1536 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1537 }
1538}
1539
1540static void bc_num_extend(BcNum *n, size_t places)
1541{
1542 size_t len = n->len + places;
1543
1544 if (places != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001545 if (n->cap < len) bc_num_expand(n, len);
1546
1547 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1548 memset(n->num, 0, sizeof(BcDig) * places);
1549
1550 n->len += places;
1551 n->rdx += places;
1552 }
1553}
1554
1555static void bc_num_clean(BcNum *n)
1556{
1557 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1558 if (n->len == 0)
1559 n->neg = false;
1560 else if (n->len < n->rdx)
1561 n->len = n->rdx;
1562}
1563
1564static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1565{
1566 if (n->rdx < scale)
1567 bc_num_extend(n, scale - n->rdx);
1568 else
1569 bc_num_truncate(n, n->rdx - scale);
1570
1571 bc_num_clean(n);
1572 if (n->len != 0) n->neg = !neg1 != !neg2;
1573}
1574
1575static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1576 BcNum *restrict b)
1577{
1578 if (idx < n->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001579 b->len = n->len - idx;
1580 a->len = idx;
1581 a->rdx = b->rdx = 0;
1582
1583 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1584 memcpy(a->num, n->num, idx * sizeof(BcDig));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001585 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001586 bc_num_zero(b);
1587 bc_num_copy(a, n);
1588 }
1589
1590 bc_num_clean(a);
1591 bc_num_clean(b);
1592}
1593
Denys Vlasenko29301232018-12-11 15:29:32 +01001594static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001595{
Denys Vlasenko29301232018-12-11 15:29:32 +01001596 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001597
1598 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1599 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1600 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001601 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001602 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001603
1604 if (n->rdx >= places)
1605 n->rdx -= places;
1606 else {
1607 bc_num_extend(n, places - n->rdx);
1608 n->rdx = 0;
1609 }
1610
1611 bc_num_clean(n);
1612
Denys Vlasenko29301232018-12-11 15:29:32 +01001613 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001614}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001615#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001616
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001617static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001618{
1619 BcNum one;
1620 BcDig num[2];
1621
1622 one.cap = 2;
1623 one.num = num;
1624 bc_num_one(&one);
1625
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001626 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001627}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001628#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001629
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001630static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001631{
1632 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1633 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001634 unsigned carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001635
1636 // Because this function doesn't need to use scale (per the bc spec),
1637 // I am hijacking it to say whether it's doing an add or a subtract.
1638
1639 if (a->len == 0) {
1640 bc_num_copy(c, b);
1641 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001642 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001643 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001644 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001645 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001646 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001647 }
1648
1649 c->neg = a->neg;
1650 c->rdx = BC_MAX(a->rdx, b->rdx);
1651 min_rdx = BC_MIN(a->rdx, b->rdx);
1652 c->len = 0;
1653
1654 if (a->rdx > b->rdx) {
1655 diff = a->rdx - b->rdx;
1656 ptr = a->num;
1657 ptr_a = a->num + diff;
1658 ptr_b = b->num;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001659 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001660 diff = b->rdx - a->rdx;
1661 ptr = b->num;
1662 ptr_a = a->num;
1663 ptr_b = b->num + diff;
1664 }
1665
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001666 ptr_c = c->num;
1667 for (i = 0; i < diff; ++i, ++c->len)
1668 ptr_c[i] = ptr[i];
Gavin Howard01055ba2018-11-03 11:00:21 -06001669
1670 ptr_c += diff;
1671 a_int = BC_NUM_INT(a);
1672 b_int = BC_NUM_INT(b);
1673
1674 if (a_int > b_int) {
1675 min_int = b_int;
1676 max = a_int;
1677 ptr = ptr_a;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001678 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001679 min_int = a_int;
1680 max = b_int;
1681 ptr = ptr_b;
1682 }
1683
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001684 carry = 0;
1685 for (i = 0; i < min_rdx + min_int; ++i) {
1686 unsigned in = (unsigned)ptr_a[i] + (unsigned)ptr_b[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001687 carry = in / 10;
1688 ptr_c[i] = (BcDig)(in % 10);
1689 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001690 for (; i < max + min_rdx; ++i) {
1691 unsigned in = (unsigned)ptr[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001692 carry = in / 10;
1693 ptr_c[i] = (BcDig)(in % 10);
1694 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001695 c->len += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06001696
1697 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1698
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001699 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001700}
1701
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001702static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001703{
Gavin Howard01055ba2018-11-03 11:00:21 -06001704 ssize_t cmp;
1705 BcNum *minuend, *subtrahend;
1706 size_t start;
1707 bool aneg, bneg, neg;
1708
1709 // Because this function doesn't need to use scale (per the bc spec),
1710 // I am hijacking it to say whether it's doing an add or a subtract.
1711
1712 if (a->len == 0) {
1713 bc_num_copy(c, b);
1714 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001715 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001716 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001717 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001718 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001719 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001720 }
1721
1722 aneg = a->neg;
1723 bneg = b->neg;
1724 a->neg = b->neg = false;
1725
1726 cmp = bc_num_cmp(a, b);
1727
1728 a->neg = aneg;
1729 b->neg = bneg;
1730
1731 if (cmp == 0) {
1732 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001733 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001734 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001735 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001736 neg = a->neg;
1737 minuend = a;
1738 subtrahend = b;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001739 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001740 neg = b->neg;
1741 if (sub) neg = !neg;
1742 minuend = b;
1743 subtrahend = a;
1744 }
1745
1746 bc_num_copy(c, minuend);
1747 c->neg = neg;
1748
1749 if (c->rdx < subtrahend->rdx) {
1750 bc_num_extend(c, subtrahend->rdx - c->rdx);
1751 start = 0;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001752 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06001753 start = c->rdx - subtrahend->rdx;
1754
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001755 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001756
1757 bc_num_clean(c);
1758
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001759 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001760}
1761
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001762static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001763 BcNum *restrict c)
Denys Vlasenkoec603182018-12-17 10:34:02 +01001764#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001765{
1766 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001767 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001768 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001769 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001770
Gavin Howard01055ba2018-11-03 11:00:21 -06001771 if (a->len == 0 || b->len == 0) {
1772 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001773 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001774 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001775 aone = BC_NUM_ONE(a);
1776 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001777 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001778 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001779 }
1780
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001781 if (a->len + b->len < BC_NUM_KARATSUBA_LEN
1782 || a->len < BC_NUM_KARATSUBA_LEN
1783 || b->len < BC_NUM_KARATSUBA_LEN
1784 ) {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001785 size_t i, j, len;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001786
Gavin Howard01055ba2018-11-03 11:00:21 -06001787 bc_num_expand(c, a->len + b->len + 1);
1788
1789 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001790 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001791
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001792 for (i = 0; i < b->len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001793 unsigned carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001794 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001795 unsigned in = c->num[i + j];
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001796 in += (unsigned)a->num[j] * (unsigned)b->num[i] + carry;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001797 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001798 carry = in / 10;
1799 c->num[i + j] = (BcDig)(in % 10);
1800 }
1801
1802 c->num[i + j] += (BcDig) carry;
1803 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001804
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001805#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001806 // a=2^1000000
1807 // a*a <- without check below, this will not be interruptible
1808 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001809#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001810 }
1811
1812 c->len = len;
1813
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001814 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001815 }
1816
1817 bc_num_init(&l1, max);
1818 bc_num_init(&h1, max);
1819 bc_num_init(&l2, max);
1820 bc_num_init(&h2, max);
1821 bc_num_init(&m1, max);
1822 bc_num_init(&m2, max);
1823 bc_num_init(&z0, max);
1824 bc_num_init(&z1, max);
1825 bc_num_init(&z2, max);
1826 bc_num_init(&temp, max + max);
1827
1828 bc_num_split(a, max2, &l1, &h1);
1829 bc_num_split(b, max2, &l2, &h2);
1830
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001831 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001832 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001833 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001834 if (s) goto err;
1835
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001836 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001837 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001838 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001839 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001840 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001841 if (s) goto err;
1842
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001843 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001844 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001845 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001846 if (s) goto err;
1847
Denys Vlasenko29301232018-12-11 15:29:32 +01001848 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001849 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001850 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001851 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001852 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001853 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001854 s = zbc_num_add(&temp, &z2, c, 0);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001855 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06001856 bc_num_free(&temp);
1857 bc_num_free(&z2);
1858 bc_num_free(&z1);
1859 bc_num_free(&z0);
1860 bc_num_free(&m2);
1861 bc_num_free(&m1);
1862 bc_num_free(&h2);
1863 bc_num_free(&l2);
1864 bc_num_free(&h1);
1865 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001866 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001867}
1868
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001869static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001870{
1871 BcStatus s;
1872 BcNum cpa, cpb;
1873 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1874
1875 scale = BC_MAX(scale, a->rdx);
1876 scale = BC_MAX(scale, b->rdx);
1877 scale = BC_MIN(a->rdx + b->rdx, scale);
1878 maxrdx = BC_MAX(maxrdx, scale);
1879
1880 bc_num_init(&cpa, a->len);
1881 bc_num_init(&cpb, b->len);
1882
1883 bc_num_copy(&cpa, a);
1884 bc_num_copy(&cpb, b);
1885 cpa.neg = cpb.neg = false;
1886
Denys Vlasenko29301232018-12-11 15:29:32 +01001887 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001888 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001889 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001890 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001891 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001892 if (s) goto err;
1893
1894 maxrdx += scale;
1895 bc_num_expand(c, c->len + maxrdx);
1896
1897 if (c->len < maxrdx) {
1898 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1899 c->len += maxrdx;
1900 }
1901
1902 c->rdx = maxrdx;
1903 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001904 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06001905 bc_num_free(&cpb);
1906 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001907 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001908}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001909#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001910
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001911static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001912{
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001913 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06001914 size_t len, end, i;
1915 BcNum cp;
Gavin Howard01055ba2018-11-03 11:00:21 -06001916
1917 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001918 RETURN_STATUS(bc_error("divide by zero"));
1919 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001920 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001921 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001922 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001923 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001924 bc_num_copy(c, a);
1925 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001926 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001927 }
1928
1929 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
1930 bc_num_copy(&cp, a);
1931 len = b->len;
1932
1933 if (len > cp.len) {
1934 bc_num_expand(&cp, len + 2);
1935 bc_num_extend(&cp, len - cp.len);
1936 }
1937
1938 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
1939 cp.rdx -= b->rdx;
1940 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
1941
1942 if (b->rdx == b->len) {
Denys Vlasenko71c82d12018-12-18 12:43:21 +01001943 for (;;) {
1944 if (len == 0) break;
1945 len--;
1946 if (b->num[len] != 0)
1947 break;
1948 }
1949 len++;
Gavin Howard01055ba2018-11-03 11:00:21 -06001950 }
1951
1952 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
1953
1954 // We want an extra zero in front to make things simpler.
1955 cp.num[cp.len++] = 0;
1956 end = cp.len - len;
1957
1958 bc_num_expand(c, cp.len);
1959
1960 bc_num_zero(c);
1961 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
1962 c->rdx = cp.rdx;
1963 c->len = cp.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06001964
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001965 s = BC_STATUS_SUCCESS;
1966 for (i = end - 1; i < end; --i) {
1967 BcDig *n, q;
Gavin Howard01055ba2018-11-03 11:00:21 -06001968 n = cp.num + i;
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001969 for (q = 0; n[len] != 0 || bc_num_compare(n, b->num, len) >= 0; ++q)
1970 bc_num_subArrays(n, b->num, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001971 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001972#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01001973 // a=2^100000
1974 // scale=40000
1975 // 1/a <- without check below, this will not be interruptible
1976 if (G_interrupt) {
1977 s = BC_STATUS_FAILURE;
1978 break;
1979 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001980#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001981 }
1982
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001983 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001984 bc_num_free(&cp);
1985
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001986 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001987}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001988#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001989
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001990static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06001991 BcNum *restrict d, size_t scale, size_t ts)
1992{
1993 BcStatus s;
1994 BcNum temp;
1995 bool neg;
1996
Denys Vlasenko60cf7472018-12-04 20:05:28 +01001997 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001998 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06001999
2000 if (a->len == 0) {
2001 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002002 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002003 }
2004
2005 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002006 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002007 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002008
2009 if (scale != 0) scale = ts;
2010
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002011 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002012 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002013 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002014 if (s) goto err;
2015
2016 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2017
2018 neg = d->neg;
2019 bc_num_retireMul(d, ts, a->neg, b->neg);
2020 d->neg = neg;
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002021 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002022 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002023 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002024}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002025#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002026
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002027static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002028{
2029 BcStatus s;
2030 BcNum c1;
2031 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2032
2033 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002034 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002035 bc_num_free(&c1);
2036
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002037 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002038}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002039#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002040
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002041static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002042{
2043 BcStatus s = BC_STATUS_SUCCESS;
2044 BcNum copy;
2045 unsigned long pow;
2046 size_t i, powrdx, resrdx;
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002047 bool neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06002048
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002049 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002050
2051 if (b->len == 0) {
2052 bc_num_one(c);
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 (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002056 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002057 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002058 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002059 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002060 if (!b->neg)
2061 bc_num_copy(c, a);
2062 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002063 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002064 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002065 }
2066
2067 neg = b->neg;
2068 b->neg = false;
2069
Denys Vlasenko29301232018-12-11 15:29:32 +01002070 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002071 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002072
2073 bc_num_init(&copy, a->len);
2074 bc_num_copy(&copy, a);
2075
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002076 if (!neg) {
2077 if (a->rdx > scale)
2078 scale = a->rdx;
2079 if (a->rdx * pow < scale)
2080 scale = a->rdx * pow;
2081 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002082
2083 b->neg = neg;
2084
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002085 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002086 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002087 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002088 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002089 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002090 //if (G_interrupt) {
2091 // s = BC_STATUS_FAILURE;
2092 // goto err;
2093 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002094 }
2095
Gavin Howard01055ba2018-11-03 11:00:21 -06002096 bc_num_copy(c, &copy);
2097
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002098 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002099 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002100 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002101 if (s) goto err;
2102
2103 if (pow & 1) {
2104 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002105 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002106 if (s) goto err;
2107 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002108 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002109 //if (G_interrupt) {
2110 // s = BC_STATUS_FAILURE;
2111 // goto err;
2112 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002113 }
2114
2115 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002116 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002117 if (s) goto err;
2118 }
2119
Gavin Howard01055ba2018-11-03 11:00:21 -06002120 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2121
2122 // We can't use bc_num_clean() here.
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002123 for (i = 0; i < c->len; ++i)
2124 if (c->num[i] != 0)
2125 goto skip;
2126 bc_num_setToZero(c, scale);
2127 skip:
Gavin Howard01055ba2018-11-03 11:00:21 -06002128
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002129 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002130 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002131 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002132}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002133#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002134
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002135static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002136 BcNumBinaryOp op, size_t req)
2137{
2138 BcStatus s;
2139 BcNum num2, *ptr_a, *ptr_b;
2140 bool init = false;
2141
2142 if (c == a) {
2143 ptr_a = &num2;
2144 memcpy(ptr_a, c, sizeof(BcNum));
2145 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002146 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002147 ptr_a = a;
2148
2149 if (c == b) {
2150 ptr_b = &num2;
2151 if (c != a) {
2152 memcpy(ptr_b, c, sizeof(BcNum));
2153 init = true;
2154 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002155 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002156 ptr_b = b;
2157
2158 if (init)
2159 bc_num_init(c, req);
2160 else
2161 bc_num_expand(c, req);
2162
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002163 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01002164 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002165
2166 if (init) bc_num_free(&num2);
2167
Denys Vlasenko29301232018-12-11 15:29:32 +01002168 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002169}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002170#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002171
Denys Vlasenko9311e012018-12-10 11:54:18 +01002172static bool bc_num_strValid(const char *val, size_t base)
2173{
2174 BcDig b;
2175 bool radix;
2176
2177 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2178 radix = false;
2179 for (;;) {
2180 BcDig c = *val++;
2181 if (c == '\0')
2182 break;
2183 if (c == '.') {
2184 if (radix) return false;
2185 radix = true;
2186 continue;
2187 }
2188 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2189 return false;
2190 }
2191 return true;
2192}
2193
2194// Note: n is already "bc_num_zero()"ed,
2195// leading zeroes in "val" are removed
2196static void bc_num_parseDecimal(BcNum *n, const char *val)
2197{
2198 size_t len, i;
2199 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002200
2201 len = strlen(val);
2202 if (len == 0)
2203 return;
2204
Denys Vlasenko9311e012018-12-10 11:54:18 +01002205 bc_num_expand(n, len);
2206
2207 ptr = strchr(val, '.');
2208
2209 n->rdx = 0;
2210 if (ptr != NULL)
2211 n->rdx = (size_t)((val + len) - (ptr + 1));
2212
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002213 for (i = 0; val[i]; ++i) {
2214 if (val[i] != '0' && val[i] != '.') {
2215 // Not entirely zero value - convert it, and exit
2216 i = len - 1;
2217 for (;;) {
2218 n->num[n->len] = val[i] - '0';
2219 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002220 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002221 if (i == 0) break;
2222 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002223 }
2224 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002225 }
2226 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002227 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002228}
2229
2230// Note: n is already "bc_num_zero()"ed,
2231// leading zeroes in "val" are removed
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002232static void bc_num_parseBase(BcNum *n, const char *val, unsigned base_t)
Denys Vlasenko9311e012018-12-10 11:54:18 +01002233{
2234 BcStatus s;
2235 BcNum temp, mult, result;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002236 BcNum base;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002237 BcDig c = '\0';
2238 unsigned long v;
2239 size_t i, digits;
2240
2241 for (i = 0; ; ++i) {
2242 if (val[i] == '\0')
2243 return;
2244 if (val[i] != '.' && val[i] != '0')
2245 break;
2246 }
2247
2248 bc_num_init_DEF_SIZE(&temp);
2249 bc_num_init_DEF_SIZE(&mult);
Denys Vlasenkod3401432018-12-18 17:00:35 +01002250//TODO: have BcNumSmall type, with static buffer
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002251 bc_num_init_DEF_SIZE(&base);
2252 bc_num_ulong2num(&base, base_t);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002253
2254 for (;;) {
2255 c = *val++;
2256 if (c == '\0') goto int_err;
2257 if (c == '.') break;
2258
2259 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2260
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002261 s = zbc_num_mul(n, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002262 if (s) goto int_err;
2263 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002264 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002265 if (s) goto int_err;
2266 }
2267
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002268 bc_num_init(&result, base.len);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002269 //bc_num_zero(&result); - already is
2270 bc_num_one(&mult);
2271
2272 digits = 0;
2273 for (;;) {
2274 c = *val++;
2275 if (c == '\0') break;
2276 digits++;
2277
2278 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2279
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002280 s = zbc_num_mul(&result, &base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002281 if (s) goto err;
2282 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002283 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002284 if (s) goto err;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002285 s = zbc_num_mul(&mult, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002286 if (s) goto err;
2287 }
2288
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002289 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002290 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002291 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002292 if (s) goto err;
2293
2294 if (n->len != 0) {
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002295 if (n->rdx < digits)
2296 bc_num_extend(n, digits - n->rdx);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002297 } else
2298 bc_num_zero(n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002299 err:
Denys Vlasenko9311e012018-12-10 11:54:18 +01002300 bc_num_free(&result);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002301 int_err:
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002302 bc_num_free(&base);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002303 bc_num_free(&mult);
2304 bc_num_free(&temp);
2305}
2306
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002307static BC_STATUS zbc_num_parse(BcNum *n, const char *val, unsigned base_t)
Gavin Howard01055ba2018-11-03 11:00:21 -06002308{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002309 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002310 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002311
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002312 bc_num_zero(n);
2313 while (*val == '0') val++;
2314
Gavin Howard01055ba2018-11-03 11:00:21 -06002315 if (base_t == 10)
2316 bc_num_parseDecimal(n, val);
2317 else
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002318 bc_num_parseBase(n, val, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002319
Denys Vlasenko29301232018-12-11 15:29:32 +01002320 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002321}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002322#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002323
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002324static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002325{
2326 BcStatus s;
2327 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2328 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2329 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2330
2331 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2332 bc_num_expand(b, req);
2333
2334 if (a->len == 0) {
2335 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002336 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002337 }
2338 if (a->neg) {
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002339 RETURN_STATUS(bc_error("negative number"));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002340 }
2341 if (BC_NUM_ONE(a)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002342 bc_num_one(b);
2343 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002344 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002345 }
2346
2347 scale = BC_MAX(scale, a->rdx) + 1;
2348 len = a->len + scale;
2349
2350 bc_num_init(&num1, len);
2351 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002352 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002353
2354 bc_num_one(&half);
2355 half.num[0] = 5;
2356 half.rdx = 1;
2357
2358 bc_num_init(&f, len);
2359 bc_num_init(&fprime, len);
2360
2361 x0 = &num1;
2362 x1 = &num2;
2363
2364 bc_num_one(x0);
2365 pow = BC_NUM_INT(a);
2366
2367 if (pow) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002368 if (pow & 1)
2369 x0->num[0] = 2;
2370 else
2371 x0->num[0] = 6;
2372
2373 pow -= 2 - (pow & 1);
2374
2375 bc_num_extend(x0, pow);
2376
2377 // Make sure to move the radix back.
2378 x0->rdx -= pow;
2379 }
2380
2381 x0->rdx = digs = digs1 = 0;
2382 resrdx = scale + 2;
2383 len = BC_NUM_INT(x0) + resrdx - 1;
2384
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002385 while (cmp != 0 || digs < len) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002386 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002387 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002388 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002389 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002390 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002391 if (s) goto err;
2392
2393 cmp = bc_num_cmp(x1, x0);
2394 digs = x1->len - (unsigned long long) llabs(cmp);
2395
2396 if (cmp == cmp2 && digs == digs1)
2397 times += 1;
2398 else
2399 times = 0;
2400
2401 resrdx += times > 4;
2402
2403 cmp2 = cmp1;
2404 cmp1 = cmp;
2405 digs1 = digs;
2406
2407 temp = x0;
2408 x0 = x1;
2409 x1 = temp;
2410 }
2411
Gavin Howard01055ba2018-11-03 11:00:21 -06002412 bc_num_copy(b, x0);
2413 scale -= 1;
2414 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002415 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002416 bc_num_free(&fprime);
2417 bc_num_free(&f);
2418 bc_num_free(&half);
2419 bc_num_free(&num2);
2420 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002421 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002422}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002423#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002424
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002425static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002426 size_t scale)
2427{
2428 BcStatus s;
2429 BcNum num2, *ptr_a;
2430 bool init = false;
2431 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2432
2433 if (c == a) {
2434 memcpy(&num2, c, sizeof(BcNum));
2435 ptr_a = &num2;
2436 bc_num_init(c, len);
2437 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002438 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06002439 ptr_a = a;
2440 bc_num_expand(c, len);
2441 }
2442
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002443 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002444
2445 if (init) bc_num_free(&num2);
2446
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002447 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002448}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002449#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002450
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002451#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002452static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002453{
2454 BcStatus s;
2455 BcNum base, exp, two, temp;
2456
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002457 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002458 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002459 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002460 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002461 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002462 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002463
2464 bc_num_expand(d, c->len);
2465 bc_num_init(&base, c->len);
2466 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002467 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002468 bc_num_init(&temp, b->len);
2469
2470 bc_num_one(&two);
2471 two.num[0] = 2;
2472 bc_num_one(d);
2473
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002474 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002475 if (s) goto err;
2476 bc_num_copy(&exp, b);
2477
2478 while (exp.len != 0) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002479 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002480 if (s) goto err;
2481
2482 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002483 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002484 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002485 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002486 if (s) goto err;
2487 }
2488
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002489 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002490 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002491 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002492 if (s) goto err;
2493 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002494 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002495 bc_num_free(&temp);
2496 bc_num_free(&two);
2497 bc_num_free(&exp);
2498 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002499 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002500}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002501#define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002502#endif // ENABLE_DC
2503
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002504#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002505static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002506{
Denys Vlasenko87888ce2018-12-19 17:55:23 +01002507 BcId *autoid;
Gavin Howard01055ba2018-11-03 11:00:21 -06002508 BcId a;
2509 size_t i;
2510
Denys Vlasenko87888ce2018-12-19 17:55:23 +01002511 autoid = (void*)f->autos.v;
2512 for (i = 0; i < f->autos.len; i++, autoid++) {
2513 if (strcmp(name, autoid->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002514 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002515 }
2516
2517 a.idx = var;
2518 a.name = name;
2519
2520 bc_vec_push(&f->autos, &a);
2521
Denys Vlasenko29301232018-12-11 15:29:32 +01002522 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002523}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002524#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002525#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002526
2527static void bc_func_init(BcFunc *f)
2528{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002529 bc_char_vec_init(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06002530 bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);
2531 bc_vec_init(&f->labels, sizeof(size_t), NULL);
2532 f->nparams = 0;
2533}
2534
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002535static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002536{
2537 BcFunc *f = (BcFunc *) func;
2538 bc_vec_free(&f->code);
2539 bc_vec_free(&f->autos);
2540 bc_vec_free(&f->labels);
2541}
2542
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002543static void bc_array_expand(BcVec *a, size_t len);
2544
Gavin Howard01055ba2018-11-03 11:00:21 -06002545static void bc_array_init(BcVec *a, bool nums)
2546{
2547 if (nums)
2548 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2549 else
2550 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2551 bc_array_expand(a, 1);
2552}
2553
Gavin Howard01055ba2018-11-03 11:00:21 -06002554static void bc_array_expand(BcVec *a, size_t len)
2555{
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002556 if (a->dtor == bc_num_free
2557 // && a->size == sizeof(BcNum) - always true
2558 ) {
2559 BcNum n;
Gavin Howard01055ba2018-11-03 11:00:21 -06002560 while (len > a->len) {
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002561 bc_num_init_DEF_SIZE(&n);
2562 bc_vec_push(a, &n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002563 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002564 } else {
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002565 BcVec v;
Gavin Howard01055ba2018-11-03 11:00:21 -06002566 while (len > a->len) {
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002567 bc_array_init(&v, true);
2568 bc_vec_push(a, &v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002569 }
2570 }
2571}
2572
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002573static void bc_array_copy(BcVec *d, const BcVec *s)
2574{
2575 size_t i;
2576
2577 bc_vec_pop_all(d);
2578 bc_vec_expand(d, s->cap);
2579 d->len = s->len;
2580
2581 for (i = 0; i < s->len; ++i) {
2582 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i);
2583 bc_num_init(dnum, snum->len);
2584 bc_num_copy(dnum, snum);
2585 }
2586}
2587
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002588static FAST_FUNC void bc_string_free(void *string)
Gavin Howard01055ba2018-11-03 11:00:21 -06002589{
2590 free(*((char **) string));
2591}
2592
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002593#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06002594static void bc_result_copy(BcResult *d, BcResult *src)
2595{
2596 d->t = src->t;
2597
2598 switch (d->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002599 case BC_RESULT_TEMP:
2600 case BC_RESULT_IBASE:
2601 case BC_RESULT_SCALE:
2602 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002603 bc_num_init(&d->d.n, src->d.n.len);
2604 bc_num_copy(&d->d.n, &src->d.n);
2605 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002606 case BC_RESULT_VAR:
2607 case BC_RESULT_ARRAY:
2608 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002609 d->d.id.name = xstrdup(src->d.id.name);
2610 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002611 case BC_RESULT_CONSTANT:
2612 case BC_RESULT_LAST:
2613 case BC_RESULT_ONE:
2614 case BC_RESULT_STR:
Gavin Howard01055ba2018-11-03 11:00:21 -06002615 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2616 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002617 }
2618}
2619#endif // ENABLE_DC
2620
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002621static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002622{
2623 BcResult *r = (BcResult *) result;
2624
2625 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002626 case BC_RESULT_TEMP:
2627 case BC_RESULT_IBASE:
2628 case BC_RESULT_SCALE:
2629 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002630 bc_num_free(&r->d.n);
2631 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002632 case BC_RESULT_VAR:
2633 case BC_RESULT_ARRAY:
2634 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002635 free(r->d.id.name);
2636 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002637 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06002638 // Do nothing.
2639 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002640 }
2641}
2642
2643static void bc_lex_lineComment(BcLex *l)
2644{
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002645 // Try: echo -n '#foo' | bc
2646 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002647 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002648 i = l->i;
2649 while (i < l->len && l->buf[i] != '\n')
2650 i++;
2651 l->i = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002652}
2653
2654static void bc_lex_whitespace(BcLex *l)
2655{
Gavin Howard01055ba2018-11-03 11:00:21 -06002656 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002657 for (;;) {
2658 char c = l->buf[l->i];
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002659 if (c == '\n') // this is BC_LEX_NLINE, not BC_LEX_WHITESPACE
2660 break;
2661 if (!isspace(c))
Denys Vlasenko89198a92018-12-13 21:31:29 +01002662 break;
2663 l->i++;
2664 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002665}
2666
Denys Vlasenko29301232018-12-11 15:29:32 +01002667static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002668{
2669 const char *buf = l->buf + l->i;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002670 size_t len, i, ccnt;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002671 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002672
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002673 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002674 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002675 ccnt = i = 0;
2676 for (;;) {
2677 char c = buf[i];
2678 if (c == '\0')
2679 break;
2680 if (c == '\\' && buf[i + 1] == '\n') {
2681 i += 2;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002682 //number_of_backslashes++ - see comment below
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002683 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002684 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002685 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2686 if (c != '.') break;
2687 // if '.' was already seen, stop on second one:
2688 if (pt) break;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002689 pt = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06002690 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002691 // buf[i] is one of "0-9A-F."
2692 i++;
2693 if (c != '.')
2694 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002695 }
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002696 //ccnt is the number of chars in the number string, excluding possible
2697 //trailing "[\<newline>].[\<newline>]" (with any number of \<NL> repetitions).
2698 //i is buf[i] index of the first not-yet-parsed char after that.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002699 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002700
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002701 // This might overestimate the size, if there are "\<NL>"'s
2702 // in the number. Subtracting number_of_backslashes*2 correctly
2703 // is not that easy: consider that in the case of "NNN.\<NL>"
2704 // loop above will count "\<NL>" before it realizes it is not
2705 // in fact *inside* the number:
2706 len = ccnt + 1; // +1 byte for NUL termination
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002707
Denys Vlasenko64074a12018-12-07 15:50:14 +01002708 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2709 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2710 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002711 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002712 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002713
Denys Vlasenko7d628012018-12-04 21:46:47 +01002714 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002715 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002716 bc_vec_push(&l->t.v, &start);
2717
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002718 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002719 // If we have hit a backslash, skip it. We don't have
2720 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002721 if (*buf == '\\') {
2722 buf += 2;
2723 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002724 continue;
2725 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002726 bc_vec_push(&l->t.v, buf);
2727 buf++;
2728 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002729 }
2730
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002731 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002732
Denys Vlasenko29301232018-12-11 15:29:32 +01002733 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002734}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002735#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002736
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002737static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002738{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002739 size_t i;
2740 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002741
2742 l->t.t = BC_LEX_NAME;
2743
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002744 i = 0;
2745 buf = l->buf + l->i - 1;
2746 for (;;) {
2747 char c = buf[i];
2748 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2749 i++;
2750 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002751
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002752#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002753 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2754 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2755 if (i > BC_MAX_STRING)
2756 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2757 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002758#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002759 bc_vec_string(&l->t.v, i, buf);
2760
2761 // Increment the index. We minus 1 because it has already been incremented.
2762 l->i += i - 1;
2763
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002764 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002765}
2766
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002767static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002768{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002769 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002770}
2771
2772static void bc_lex_free(BcLex *l)
2773{
2774 bc_vec_free(&l->t.v);
2775}
2776
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002777static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002778{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002779 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002780 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002781}
2782
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002783IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2784IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002785
2786static BC_STATUS zcommon_lex_token(BcLex *l)
2787{
2788 if (IS_BC) {
2789 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2790 }
2791 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2792}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002793#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002794
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002795static bool bc_lex_more_input(BcLex *l)
2796{
2797 size_t str;
2798 bool comment;
2799
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002800 bc_vec_pop_all(&G.input_buffer);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002801
2802 // This loop is complex because the vm tries not to send any lines that end
2803 // with a backslash to the parser. The reason for that is because the parser
2804 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2805 // case, and for strings and comments, the parser will expect more stuff.
2806 comment = false;
2807 str = 0;
2808 for (;;) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002809 size_t prevlen = G.input_buffer.len;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002810 char *string;
2811
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002812 bc_read_line(&G.input_buffer, G.input_fp);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002813 // No more input means EOF
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002814 if (G.input_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002815 break;
2816
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002817 string = G.input_buffer.v + prevlen;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002818 while (*string) {
2819 char c = *string;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002820 if (string == G.input_buffer.v || string[-1] != '\\') {
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002821 if (IS_BC)
2822 str ^= (c == '"');
2823 else {
2824 if (c == ']')
2825 str -= 1;
2826 else if (c == '[')
2827 str += 1;
2828 }
2829 }
2830 string++;
2831 if (c == '/' && *string == '*') {
2832 comment = true;
2833 string++;
2834 continue;
2835 }
2836 if (c == '*' && *string == '/') {
2837 comment = false;
2838 string++;
2839 }
2840 }
2841 if (str != 0 || comment) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002842 G.input_buffer.len--; // backstep over the trailing NUL byte
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002843 continue;
2844 }
2845
2846 // Check for backslash+newline.
2847 // we do not check that last char is '\n' -
2848 // if it is not, then it's EOF, and looping back
2849 // to bc_read_line() will detect it:
2850 string -= 2;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002851 if (string >= G.input_buffer.v && *string == '\\') {
2852 G.input_buffer.len--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002853 continue;
2854 }
2855
2856 break;
2857 }
2858
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002859 l->buf = G.input_buffer.v;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002860 l->i = 0;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002861// bb_error_msg("G.input_buffer.len:%d '%s'", G.input_buffer.len, G.input_buffer.v);
2862 l->len = G.input_buffer.len - 1; // do not include NUL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002863
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002864 return l->len != 0;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002865}
2866
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002867static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002868{
2869 BcStatus s;
2870
2871 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002872 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002873
2874 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002875 G.err_line = l->line;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002876 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002877
2878 // Loop until failure or we don't have whitespace. This
2879 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002880 // Comments are also BC_LEX_WHITESPACE tokens and eaten here.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002881 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002882 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002883 if (l->i == l->len) {
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002884 l->t.t = BC_LEX_EOF;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002885 if (!G.input_fp)
2886 RETURN_STATUS(BC_STATUS_SUCCESS);
2887 if (!bc_lex_more_input(l)) {
2888 G.input_fp = NULL;
2889 RETURN_STATUS(BC_STATUS_SUCCESS);
2890 }
2891 // here it's guaranteed that l->i is below l->len
2892 }
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002893 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01002894 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2895 l->buf + l->i);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002896 s = zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002897 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01002898 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002899
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002900 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002901}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002902#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002903
Denys Vlasenko202dd192018-12-16 17:30:35 +01002904static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
2905{
2906 if (l->t.t == BC_LEX_NLINE)
2907 RETURN_STATUS(zbc_lex_next(l));
2908 RETURN_STATUS(BC_STATUS_SUCCESS);
2909}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002910#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002911
2912static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
2913{
2914 BcStatus s;
2915 s = zbc_lex_next(l);
2916 if (s) RETURN_STATUS(s);
2917 // if(cond)<newline>stmt is accepted too (but not 2+ newlines)
2918 s = zbc_lex_skip_if_at_NLINE(l);
2919 RETURN_STATUS(s);
2920}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002921#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002922
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002923static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06002924{
2925 l->buf = text;
2926 l->i = 0;
2927 l->len = strlen(text);
2928 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002929 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06002930}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002931#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002932
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002933#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002934static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002935{
2936 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002937 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002938 const char *buf = l->buf + l->i - 1;
2939
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002940 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
2941 const char *keyword8 = bc_lex_kws[i].name8;
2942 unsigned j = 0;
2943 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
2944 j++;
2945 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06002946 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002947 if (keyword8[j] != '\0')
2948 continue;
2949 match:
2950 // buf starts with keyword bc_lex_kws[i]
2951 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01002952 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002953 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002954 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002955 }
2956
2957 // We minus 1 because the index has already been incremented.
2958 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002959 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002960 }
2961
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002962 bc_lex_name(l);
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002963 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002964
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01002965 if (l->t.v.len > 2) {
2966 // Prevent this:
2967 // >>> qwe=1
2968 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
2969 // '
2970 unsigned len = strchrnul(buf, '\n') - buf;
2971 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
2972 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002973
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002974 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002975}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002976#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002977
Denys Vlasenko26819db2018-12-12 16:08:46 +01002978static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002979{
Denys Vlasenko07597cd2018-12-18 14:03:20 +01002980 size_t len, nls, i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002981
2982 l->t.t = BC_LEX_STR;
2983
Denys Vlasenko07597cd2018-12-18 14:03:20 +01002984 nls = 0;
2985 i = l->i;
2986 for (;;) {
2987 char c = l->buf[i];
2988 if (c == '\0') {
2989 l->i = i;
2990 RETURN_STATUS(bc_error("string end could not be found"));
2991 }
2992 if (c == '"')
2993 break;
Denys Vlasenko26819db2018-12-12 16:08:46 +01002994 nls += (c == '\n');
Denys Vlasenko07597cd2018-12-18 14:03:20 +01002995 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06002996 }
2997
2998 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01002999 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3000 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3001 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01003002 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003003 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003004 bc_vec_string(&l->t.v, len, l->buf + l->i);
3005
3006 l->i = i + 1;
3007 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003008 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003009
Denys Vlasenko26819db2018-12-12 16:08:46 +01003010 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003011}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003012#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003013
Denys Vlasenko0a238142018-12-14 16:48:34 +01003014static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003015{
3016 if (l->buf[l->i] == '=') {
3017 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003018 with_and_without >>= 8; // store "with" value
3019 } // else store "without" value
3020 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003021}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003022#define bc_lex_assign(l, with, without) \
3023 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003024
Denys Vlasenko29301232018-12-11 15:29:32 +01003025static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003026{
3027 size_t i, nls = 0;
3028 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003029
3030 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003031 i = l->i; /* here buf[l->i] is the '*' of opening comment delimiter */
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003032 for (;;) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003033 char c = buf[++i];
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003034 check_star:
3035 if (c == '*') {
3036 c = buf[++i];
3037 if (c == '/')
3038 break;
3039 goto check_star;
3040 }
3041 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003042 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003043 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003044 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003045 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003046 }
3047
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003048 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003049 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003050 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003051
Denys Vlasenko29301232018-12-11 15:29:32 +01003052 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003053}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003054#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003055
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003056static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003057{
3058 BcStatus s = BC_STATUS_SUCCESS;
3059 char c = l->buf[l->i++], c2;
3060
3061 // This is the workhorse of the lexer.
3062 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003063// case '\0': // probably never reached
3064// l->i--;
3065// l->t.t = BC_LEX_EOF;
3066// l->newline = true;
3067// break;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003068 case '\n':
3069 l->t.t = BC_LEX_NLINE;
3070 l->newline = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06003071 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003072 case '\t':
3073 case '\v':
3074 case '\f':
3075 case '\r':
3076 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003077 bc_lex_whitespace(l);
3078 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003079 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003080 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003081 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003082 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
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 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003085 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003086 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003087 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003088 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003089 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003090 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003091 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003092 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003093 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003094 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003095 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3096 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003097 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003098 c2 = l->buf[l->i];
3099 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003100 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003101 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003102 ++l->i;
3103 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003104 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003105 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003106 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003107 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003108 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003109 case '(':
3110 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003111 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
3112 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003113 case '*':
Gavin Howard01055ba2018-11-03 11:00:21 -06003114 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
3115 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003116 case '+':
Gavin Howard01055ba2018-11-03 11:00:21 -06003117 c2 = l->buf[l->i];
3118 if (c2 == '+') {
3119 ++l->i;
3120 l->t.t = BC_LEX_OP_INC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003121 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003122 bc_lex_assign(l, BC_LEX_OP_ASSIGN_PLUS, BC_LEX_OP_PLUS);
3123 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003124 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003125 l->t.t = BC_LEX_COMMA;
3126 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003127 case '-':
Gavin Howard01055ba2018-11-03 11:00:21 -06003128 c2 = l->buf[l->i];
3129 if (c2 == '-') {
3130 ++l->i;
3131 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003132 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003133 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3134 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003135 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003136 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003137 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003138 else {
3139 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003140 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003141 }
3142 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003143 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003144 c2 = l->buf[l->i];
3145 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003146 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003147 else
3148 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3149 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003150 case '0':
3151 case '1':
3152 case '2':
3153 case '3':
3154 case '4':
3155 case '5':
3156 case '6':
3157 case '7':
3158 case '8':
3159 case '9':
3160 case 'A':
3161 case 'B':
3162 case 'C':
3163 case 'D':
3164 case 'E':
3165 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003166 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003167 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003168 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003169 l->t.t = BC_LEX_SCOLON;
3170 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003171 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003172 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3173 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003174 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003175 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3176 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003177 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003178 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3179 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003180 case '[':
3181 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003182 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3183 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003184 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003185 if (l->buf[l->i] == '\n') {
3186 l->t.t = BC_LEX_WHITESPACE;
3187 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003188 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003189 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003190 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003191 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003192 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3193 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003194 case 'a':
3195 case 'b':
3196 case 'c':
3197 case 'd':
3198 case 'e':
3199 case 'f':
3200 case 'g':
3201 case 'h':
3202 case 'i':
3203 case 'j':
3204 case 'k':
3205 case 'l':
3206 case 'm':
3207 case 'n':
3208 case 'o':
3209 case 'p':
3210 case 'q':
3211 case 'r':
3212 case 's':
3213 case 't':
3214 case 'u':
3215 case 'v':
3216 case 'w':
3217 case 'x':
3218 case 'y':
3219 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003220 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003221 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003222 case '{':
3223 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003224 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3225 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003226 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003227 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003228 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003229 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003230 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003231 ++l->i;
3232 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003233 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003234 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003235 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003236 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003237 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003238 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003239 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003240 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003241 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003242 }
3243
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003244 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003245}
3246#endif // ENABLE_BC
3247
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003248#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003249static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003250{
Gavin Howard01055ba2018-11-03 11:00:21 -06003251 if (isspace(l->buf[l->i - 1])) {
3252 bc_lex_whitespace(l);
3253 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003254 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003255 RETURN_STATUS(bc_error("extended register"));
3256 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003257 }
3258 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003259 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003260 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003261 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003262 l->t.t = BC_LEX_NAME;
3263 }
3264
Denys Vlasenko29301232018-12-11 15:29:32 +01003265 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003266}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003267#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003268
Denys Vlasenko29301232018-12-11 15:29:32 +01003269static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003270{
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003271 size_t depth, nls, i;
Gavin Howard01055ba2018-11-03 11:00:21 -06003272
3273 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003274 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003275
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003276 nls = 0;
3277 depth = 1;
3278 i = l->i;
3279 for (;;) {
3280 char c = l->buf[i];
3281 if (c == '\0') {
3282 l->i = i;
3283 RETURN_STATUS(bc_error("string end could not be found"));
3284 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003285 nls += (c == '\n');
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003286 if (i == l->i || l->buf[i - 1] != '\\') {
3287 if (c == '[') depth++;
3288 if (c == ']')
3289 if (--depth == 0)
3290 break;
3291 }
3292 bc_vec_push(&l->t.v, &l->buf[i]);
3293 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003294 }
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003295 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003296
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003297 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003298 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3299 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3300 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003301 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003302 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003303
3304 l->i = i;
3305 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003306 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003307
Denys Vlasenko29301232018-12-11 15:29:32 +01003308 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003309}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003310#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003311
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003312static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003313{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003314 static const //BcLexType - should be this type, but narrower type saves size:
3315 uint8_t
3316 dc_lex_regs[] = {
3317 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
3318 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
3319 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
3320 BC_LEX_STORE_PUSH,
3321 };
3322 static const //BcLexType - should be this type
3323 uint8_t
3324 dc_lex_tokens[] = {
3325 /* %&'( */
3326 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
3327 /* )*+, */
3328 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
3329 /* -./ */
3330 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
3331 /* 0123456789 */
3332 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3333 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3334 BC_LEX_INVALID, BC_LEX_INVALID,
3335 /* :;<=>?@ */
3336 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
3337 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
3338 /* ABCDEFGH */
3339 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3340 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
3341 /* IJKLMNOP */
3342 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
3343 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
3344 /* QRSTUVWXY */
3345 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
3346 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
3347 /* Z[\] */
3348 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3349 /* ^_` */
3350 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
3351 /* abcdefgh */
3352 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
3353 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
3354 /* ijklmnop */
3355 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
3356 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
3357 /* qrstuvwx */
3358 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
3359 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
3360 /* yz */
3361 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
3362 /* {|}~ */
3363 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
3364 };
3365
Gavin Howard01055ba2018-11-03 11:00:21 -06003366 BcStatus s = BC_STATUS_SUCCESS;
3367 char c = l->buf[l->i++], c2;
3368 size_t i;
3369
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003370 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3371 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003372 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003373 }
3374
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003375 if (c >= '%' && c <= '~'
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003376 && (l->t.t = dc_lex_tokens[c - '%']) != BC_LEX_INVALID
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003377 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003378 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003379 }
3380
3381 // This is the workhorse of the lexer.
3382 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003383// case '\0': // probably never reached
3384// l->t.t = BC_LEX_EOF;
3385// break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003386 case '\n':
3387 case '\t':
3388 case '\v':
3389 case '\f':
3390 case '\r':
3391 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003392 l->newline = (c == '\n');
3393 bc_lex_whitespace(l);
3394 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003395 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003396 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003397 if (c2 == '=')
3398 l->t.t = BC_LEX_OP_REL_NE;
3399 else if (c2 == '<')
3400 l->t.t = BC_LEX_OP_REL_LE;
3401 else if (c2 == '>')
3402 l->t.t = BC_LEX_OP_REL_GE;
3403 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003404 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003405 ++l->i;
3406 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003407 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003408 bc_lex_lineComment(l);
3409 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003410 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003411 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003412 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003413 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003414 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003415 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003416 case '0':
3417 case '1':
3418 case '2':
3419 case '3':
3420 case '4':
3421 case '5':
3422 case '6':
3423 case '7':
3424 case '8':
3425 case '9':
3426 case 'A':
3427 case 'B':
3428 case 'C':
3429 case 'D':
3430 case 'E':
3431 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003432 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003433 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003434 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003435 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003436 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003437 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003438 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003439 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003440 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003441 }
3442
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003443 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003444}
3445#endif // ENABLE_DC
3446
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003447static void bc_parse_push(BcParse *p, char i)
3448{
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01003449 dbg_compile("%s:%d pushing bytecode %zd:%d", __func__, __LINE__, p->func->code.len, i);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003450 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 Vlasenkoe3d3d202018-12-19 13:19:44 +01003494static void bc_parse_pushNUM(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
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01003538 bc_vec_npop(&G.prog.exestack, G.prog.exestack.len - 1);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003539 bc_vec_pop_all(&G.prog.results);
3540
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003541 f = bc_program_func(0);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01003542 ip = bc_vec_top(&G.prog.exestack);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003543 ip->idx = f->code.len;
3544}
3545
Denys Vlasenko26819db2018-12-12 16:08:46 +01003546// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003547// resets parsing structures.
3548static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003549{
3550 if (p->fidx != BC_PROG_MAIN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003551 p->func->nparams = 0;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003552 bc_vec_pop_all(&p->func->code);
3553 bc_vec_pop_all(&p->func->autos);
3554 bc_vec_pop_all(&p->func->labels);
Gavin Howard01055ba2018-11-03 11:00:21 -06003555
Denys Vlasenko65e10462018-12-19 15:13:14 +01003556 p->fidx = BC_PROG_MAIN;
3557 p->func = bc_program_func_BC_PROG_MAIN();
Gavin Howard01055ba2018-11-03 11:00:21 -06003558 }
3559
3560 p->l.i = p->l.len;
3561 p->l.t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003562
Denys Vlasenko7d628012018-12-04 21:46:47 +01003563 bc_vec_pop_all(&p->exits);
3564 bc_vec_pop_all(&p->conds);
3565 bc_vec_pop_all(&p->ops);
Gavin Howard01055ba2018-11-03 11:00:21 -06003566
Denys Vlasenkod38af482018-12-04 19:11:02 +01003567 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003568}
3569
3570static void bc_parse_free(BcParse *p)
3571{
Gavin Howard01055ba2018-11-03 11:00:21 -06003572 bc_vec_free(&p->exits);
3573 bc_vec_free(&p->conds);
3574 bc_vec_free(&p->ops);
3575 bc_lex_free(&p->l);
3576}
3577
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003578static void bc_parse_create(BcParse *p, size_t func)
Gavin Howard01055ba2018-11-03 11:00:21 -06003579{
3580 memset(p, 0, sizeof(BcParse));
3581
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003582 bc_lex_init(&p->l);
Denys Vlasenko266aa002018-12-16 23:24:25 +01003583 bc_vec_init(&p->exits, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003584 bc_vec_init(&p->conds, sizeof(size_t), NULL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003585 bc_vec_init(&p->ops, sizeof(BcLexType), NULL);
3586
Denys Vlasenko65e10462018-12-19 15:13:14 +01003587 p->fidx = func;
3588 p->func = bc_program_func(func);
Gavin Howard01055ba2018-11-03 11:00:21 -06003589}
3590
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003591#if ENABLE_BC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003592
3593#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3594#define BC_PARSE_LEAF(p, rparen) \
3595 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3596 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3597
3598// We can calculate the conversion between tokens and exprs by subtracting the
3599// position of the first operator in the lex enum and adding the position of the
3600// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003601#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003602
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003603static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags);
3604
3605static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags)
3606{
3607 BcStatus s;
3608
3609 s = bc_parse_expr_empty_ok(p, flags);
3610 if (s == BC_STATUS_PARSE_EMPTY_EXP)
3611 RETURN_STATUS(bc_error("empty expression"));
3612 RETURN_STATUS(s);
3613}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003614#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003615
3616static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003617#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003618
3619static BC_STATUS zbc_parse_stmt(BcParse *p)
3620{
3621 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3622}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003623#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003624
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003625static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003626{
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003627 // "if(cond)<newline>stmt" is accepted too, but not 2+ newlines.
3628 // Same for "else", "while()", "for()".
3629 BcStatus s = zbc_lex_next_and_skip_NLINE(&p->l);
3630 if (s) RETURN_STATUS(s);
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003631 if (p->l.t.t == BC_LEX_NLINE)
3632 RETURN_STATUS(bc_error_fmt("no statement after '%s'", after_X));
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003633
3634 RETURN_STATUS(zbc_parse_stmt(p));
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003635}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003636#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003637
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003638static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3639 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003640{
Denys Vlasenko65437582018-12-05 19:37:19 +01003641 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3642 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003643
3644 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003645 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003646 if (t == BC_LEX_LPAREN) break;
3647
Denys Vlasenko65437582018-12-05 19:37:19 +01003648 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003649 if (l >= r && (l != r || !left)) break;
3650
Denys Vlasenko0154d782018-12-14 23:32:51 +01003651 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003652 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003653 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003654 }
3655
3656 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003657}
3658
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003659static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003660{
3661 BcLexType top;
3662
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003663 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003664 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003665 top = BC_PARSE_TOP_OP(p);
3666
3667 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003668 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003669
3670 bc_vec_pop(&p->ops);
3671 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3672
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003673 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003674 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003675 top = BC_PARSE_TOP_OP(p);
3676 }
3677
3678 bc_vec_pop(&p->ops);
3679
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003680 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003681}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003682#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003683
Denys Vlasenko26819db2018-12-12 16:08:46 +01003684static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003685{
3686 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06003687 size_t nparams;
3688
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003689 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003690 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3691
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003692 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003693 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003694
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003695 nparams = 0;
3696 if (p->l.t.t != BC_LEX_RPAREN) {
3697 for (;;) {
3698 s = zbc_parse_expr(p, flags);
3699 if (s) RETURN_STATUS(s);
3700 nparams++;
3701 if (p->l.t.t != BC_LEX_COMMA) {
3702 if (p->l.t.t == BC_LEX_RPAREN)
3703 break;
3704 RETURN_STATUS(bc_error_bad_token());
3705 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003706 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003707 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003708 }
3709 }
3710
Gavin Howard01055ba2018-11-03 11:00:21 -06003711 bc_parse_push(p, BC_INST_CALL);
3712 bc_parse_pushIndex(p, nparams);
3713
Denys Vlasenko26819db2018-12-12 16:08:46 +01003714 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003715}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003716#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003717
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01003718// Note: takes ownership of 'name' (must be malloced)
Denys Vlasenko684d4412018-12-19 14:57:23 +01003719static size_t bc_program_addFunc(char *name)
3720{
3721 size_t idx;
3722 BcId entry, *entry_ptr;
3723 BcFunc f;
3724 int inserted;
3725
3726 entry.name = name;
3727 entry.idx = G.prog.fns.len;
3728
3729 inserted = bc_map_insert(&G.prog.fn_map, &entry, &idx);
3730 if (!inserted) free(name);
3731
3732 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
3733 idx = entry_ptr->idx;
3734
3735 if (!inserted) {
3736 BcFunc *func = bc_program_func(entry_ptr->idx);
3737
3738 // We need to reset these, so the function can be repopulated.
3739 func->nparams = 0;
3740 bc_vec_pop_all(&func->autos);
3741 bc_vec_pop_all(&func->code);
3742 bc_vec_pop_all(&func->labels);
3743 } else {
3744 bc_func_init(&f);
3745 bc_vec_push(&G.prog.fns, &f);
3746 }
3747
3748 return idx;
3749}
3750
3751// Note: takes ownership of 'name' (must be malloced)
Denys Vlasenko26819db2018-12-12 16:08:46 +01003752static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003753{
3754 BcStatus s;
3755 BcId entry, *entry_ptr;
3756 size_t idx;
3757
3758 entry.name = name;
3759
Denys Vlasenko26819db2018-12-12 16:08:46 +01003760 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003761 if (s) goto err;
3762
3763 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003764 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003765 goto err;
3766 }
3767
Denys Vlasenko5aa54832018-12-19 13:55:53 +01003768 idx = bc_map_find_exact(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003769
3770 if (idx == BC_VEC_INVALID_IDX) {
Denys Vlasenko5aa54832018-12-19 13:55:53 +01003771 // No such function exists, create an empty one
Denys Vlasenko684d4412018-12-19 14:57:23 +01003772 bc_program_addFunc(name);
Denys Vlasenko5aa54832018-12-19 13:55:53 +01003773 idx = bc_map_find_exact(&G.prog.fn_map, &entry);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003774 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003775 free(name);
3776
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003777 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003778 bc_parse_pushIndex(p, entry_ptr->idx);
3779
Denys Vlasenko26819db2018-12-12 16:08:46 +01003780 RETURN_STATUS(zbc_lex_next(&p->l));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003781 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06003782 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003783 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003784}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003785#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003786
Denys Vlasenko26819db2018-12-12 16:08:46 +01003787static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003788{
3789 BcStatus s;
3790 char *name;
3791
3792 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003793 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003794 if (s) goto err;
3795
3796 if (p->l.t.t == BC_LEX_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003797 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003798 if (s) goto err;
3799
3800 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003801 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003802 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003803 goto err;
3804 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003805 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003806 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003807 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003808 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003809 s = zbc_parse_expr(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003810 if (s) goto err;
3811 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003812 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003813 if (s) goto err;
3814 bc_parse_push(p, *type);
3815 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003816 free(name);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003817 } else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003818 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003819 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003820 goto err;
3821 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003822 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003823 s = zbc_parse_call(p, name, flags);
3824 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003825 *type = BC_INST_VAR;
3826 bc_parse_push(p, BC_INST_VAR);
3827 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003828 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003829 }
3830
Denys Vlasenko26819db2018-12-12 16:08:46 +01003831 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003832 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06003833 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003834 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003835}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003836#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003837
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003838static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003839{
3840 BcStatus s;
3841
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003842 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003843 if (s) RETURN_STATUS(s);
3844 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003845
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003846 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003847 if (s) RETURN_STATUS(s);
3848 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003849
3850 bc_parse_push(p, BC_INST_READ);
3851
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003852 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003853}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003854#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003855
Denys Vlasenko26819db2018-12-12 16:08:46 +01003856static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003857 BcInst *prev)
3858{
3859 BcStatus s;
3860
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003861 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003862 if (s) RETURN_STATUS(s);
3863 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003864
3865 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3866
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003867 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003868 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003869
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003870 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003871 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003872
Denys Vlasenko26819db2018-12-12 16:08:46 +01003873 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003874
3875 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3876 bc_parse_push(p, *prev);
3877
Denys Vlasenko26819db2018-12-12 16:08:46 +01003878 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003879}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003880#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003881
Denys Vlasenko26819db2018-12-12 16:08:46 +01003882static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003883{
3884 BcStatus s;
3885
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003886 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003887 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003888
3889 if (p->l.t.t != BC_LEX_LPAREN) {
3890 *type = BC_INST_SCALE;
3891 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003892 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003893 }
3894
3895 *type = BC_INST_SCALE_FUNC;
3896 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
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
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003901 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003902 if (s) RETURN_STATUS(s);
3903 if (p->l.t.t != BC_LEX_RPAREN)
3904 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003905 bc_parse_push(p, BC_INST_SCALE_FUNC);
3906
Denys Vlasenko26819db2018-12-12 16:08:46 +01003907 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003908}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003909#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003910
Denys Vlasenko26819db2018-12-12 16:08:46 +01003911static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003912 size_t *nexprs, uint8_t flags)
3913{
3914 BcStatus s;
3915 BcLexType type;
3916 char inst;
3917 BcInst etype = *prev;
3918
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003919 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM
3920 || etype == BC_INST_SCALE || etype == BC_INST_LAST
3921 || etype == BC_INST_IBASE || etype == BC_INST_OBASE
3922 ) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003923 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
3924 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003925 s = zbc_lex_next(&p->l);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003926 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003927 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
3928 *paren_expr = true;
3929
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003930 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003931 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003932 type = p->l.t.t;
3933
3934 // Because we parse the next part of the expression
3935 // right here, we need to increment this.
3936 *nexprs = *nexprs + 1;
3937
3938 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003939 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01003940 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06003941 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003942 case BC_LEX_KEY_IBASE:
3943 case BC_LEX_KEY_LAST:
3944 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06003945 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003946 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003947 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003948 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003949 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003950 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003951 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003952 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003953 else
3954 bc_parse_push(p, BC_INST_SCALE);
3955 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003956 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003957 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003958 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003959 }
3960
3961 if (!s) bc_parse_push(p, inst);
3962 }
3963
Denys Vlasenko26819db2018-12-12 16:08:46 +01003964 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003965}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003966#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003967
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003968static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06003969 bool rparen, size_t *nexprs)
3970{
3971 BcStatus s;
3972 BcLexType type;
3973 BcInst etype = *prev;
3974
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003975 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003976 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003977
3978 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
3979 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
3980 BC_LEX_OP_MINUS :
3981 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01003982 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003983
3984 // We can just push onto the op stack because this is the largest
3985 // precedence operator that gets pushed. Inc/dec does not.
3986 if (type != BC_LEX_OP_MINUS)
3987 bc_vec_push(&p->ops, &type);
3988 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003989 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06003990
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003991 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003992}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003993#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003994
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003995static BC_STATUS zbc_parse_string(BcParse *p, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06003996{
3997 char *str = xstrdup(p->l.t.v.v);
3998
3999 bc_parse_push(p, BC_INST_STR);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004000 bc_parse_pushIndex(p, G.prog.strs.len);
4001 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06004002 bc_parse_push(p, inst);
4003
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004004 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004005}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004006#define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004007
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004008static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004009{
4010 BcStatus s;
4011 BcLexType type;
Gavin Howard01055ba2018-11-03 11:00:21 -06004012
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004013 for (;;) {
4014 s = zbc_lex_next(&p->l);
4015 if (s) RETURN_STATUS(s);
4016 type = p->l.t.t;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004017 if (type == BC_LEX_STR) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004018 s = zbc_parse_string(p, BC_INST_PRINT_POP);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004019 } else {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004020 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004021 bc_parse_push(p, BC_INST_PRINT_POP);
4022 }
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004023 if (s) RETURN_STATUS(s);
4024 if (p->l.t.t != BC_LEX_COMMA)
4025 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004026 }
4027
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004028 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004029}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004030#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004031
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004032static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004033{
4034 BcStatus s;
4035 BcLexType t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004036
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004037 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004038 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004039 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004040
4041 t = p->l.t.t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004042 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4043 bc_parse_push(p, BC_INST_RET0);
4044 else {
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004045 bool paren = (t == BC_LEX_LPAREN);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004046 s = bc_parse_expr_empty_ok(p, 0);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004047 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004048 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004049 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004050 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004051 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004052
4053 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004054 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004055 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06004056 }
4057
4058 bc_parse_push(p, BC_INST_RET);
4059 }
4060
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004061 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004062 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004063}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004064#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004065
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004066static void rewrite_label_to_current(BcParse *p, size_t idx)
4067{
4068 size_t *label = bc_vec_item(&p->func->labels, idx);
4069 *label = p->func->code.len;
4070}
4071
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004072static BC_STATUS zbc_parse_if(BcParse *p)
4073{
4074 BcStatus s;
Denys Vlasenko15850832018-12-16 21:40:54 +01004075 size_t ip_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004076
4077 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4078 s = zbc_lex_next(&p->l);
4079 if (s) RETURN_STATUS(s);
4080 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4081
4082 s = zbc_lex_next(&p->l);
4083 if (s) RETURN_STATUS(s);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004084 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004085 if (s) RETURN_STATUS(s);
4086
4087 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004088
Denys Vlasenko15850832018-12-16 21:40:54 +01004089 ip_idx = p->func->labels.len;
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004090 bc_parse_pushJUMP_ZERO(p, ip_idx);
Denys Vlasenko15850832018-12-16 21:40:54 +01004091 bc_vec_push(&p->func->labels, &ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004092
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004093 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004094 if (s) RETURN_STATUS(s);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004095
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004096 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4097 if (p->l.t.t == BC_LEX_KEY_ELSE) {
Denys Vlasenko15850832018-12-16 21:40:54 +01004098 size_t ip2_idx;
Denys Vlasenko74156332018-12-16 21:21:27 +01004099
Denys Vlasenko15850832018-12-16 21:40:54 +01004100 ip2_idx = p->func->labels.len;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004101
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004102 dbg_lex("%s:%d after if() body: BC_INST_JUMP to %zd", __func__, __LINE__, ip2_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004103 bc_parse_pushJUMP(p, ip2_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004104
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004105 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 +01004106 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004107
Denys Vlasenko15850832018-12-16 21:40:54 +01004108 bc_vec_push(&p->func->labels, &ip2_idx);
4109 ip_idx = ip2_idx;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004110
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004111 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004112 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004113 }
4114
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004115 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 +01004116 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004117
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004118 dbg_lex_done("%s:%d done", __func__, __LINE__);
4119 RETURN_STATUS(s);
4120}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004121#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004122
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004123static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004124{
4125 BcStatus s;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004126 size_t cond_idx;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004127 size_t ip_idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06004128
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004129 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004130 if (s) RETURN_STATUS(s);
4131 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004132 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004133 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004134
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004135 cond_idx = p->func->labels.len;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004136 ip_idx = cond_idx + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06004137
4138 bc_vec_push(&p->func->labels, &p->func->code.len);
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004139 bc_vec_push(&p->conds, &cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004140
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004141 bc_vec_push(&p->exits, &ip_idx);
4142 bc_vec_push(&p->func->labels, &ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004143
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004144 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004145 if (s) RETURN_STATUS(s);
4146 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko202dd192018-12-16 17:30:35 +01004147
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004148 bc_parse_pushJUMP_ZERO(p, ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004149
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004150 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004151 if (s) RETURN_STATUS(s);
4152
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004153 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, cond_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004154 bc_parse_pushJUMP(p, cond_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004155
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004156 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004157 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004158
4159 bc_vec_pop(&p->exits);
4160 bc_vec_pop(&p->conds);
4161
4162 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004163}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004164#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004165
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004166static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004167{
4168 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004169 size_t cond_idx, exit_idx, body_idx, update_idx;
4170
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004171 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004172 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004173 if (s) RETURN_STATUS(s);
4174 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004175 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004176 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004177
4178 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004179 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004180 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004181 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Gavin Howard01055ba2018-11-03 11:00:21 -06004182
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004183 if (s) RETURN_STATUS(s);
4184 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004185 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004186 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004187
4188 cond_idx = p->func->labels.len;
4189 update_idx = cond_idx + 1;
4190 body_idx = update_idx + 1;
4191 exit_idx = body_idx + 1;
4192
4193 bc_vec_push(&p->func->labels, &p->func->code.len);
4194
4195 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004196 s = zbc_parse_expr(p, BC_PARSE_REL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004197 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004198 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004199
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004200 if (s) RETURN_STATUS(s);
4201 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004202
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004203 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004204 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004205
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004206 bc_parse_pushJUMP_ZERO(p, exit_idx);
4207 bc_parse_pushJUMP(p, body_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004208
Gavin Howard01055ba2018-11-03 11:00:21 -06004209 bc_vec_push(&p->conds, &update_idx);
4210 bc_vec_push(&p->func->labels, &p->func->code.len);
4211
4212 if (p->l.t.t != BC_LEX_RPAREN)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004213 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004214 else
Denys Vlasenko00646792018-12-05 18:12:27 +01004215 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Gavin Howard01055ba2018-11-03 11:00:21 -06004216
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004217 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004218
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004219 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004220 bc_parse_pushJUMP(p, cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004221 bc_vec_push(&p->func->labels, &p->func->code.len);
4222
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004223 bc_vec_push(&p->exits, &exit_idx);
4224 bc_vec_push(&p->func->labels, &exit_idx);
Denys Vlasenko202dd192018-12-16 17:30:35 +01004225
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004226 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004227 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004228
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004229 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, update_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004230 bc_parse_pushJUMP(p, update_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004231
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004232 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004233 rewrite_label_to_current(p, exit_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004234
4235 bc_vec_pop(&p->exits);
4236 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004237
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004238 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004239}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004240#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004241
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004242static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004243{
4244 BcStatus s;
4245 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06004246
Gavin Howard01055ba2018-11-03 11:00:21 -06004247 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004248 if (p->exits.len == 0) // none of the enclosing blocks is a loop
4249 RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko266aa002018-12-16 23:24:25 +01004250 i = *(size_t*)bc_vec_top(&p->exits);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004251 } else {
Denys Vlasenko266aa002018-12-16 23:24:25 +01004252 i = *(size_t*)bc_vec_top(&p->conds);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004253 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004254
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004255 bc_parse_pushJUMP(p, i);
Gavin Howard01055ba2018-11-03 11:00:21 -06004256
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004257 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004258 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004259
4260 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004261 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004262
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004263 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004264}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004265#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004266
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004267static BC_STATUS zbc_parse_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004268{
4269 BcStatus s;
4270 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004271 char *name;
4272
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004273 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004274 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004275 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004276 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004277 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004278
4279 name = xstrdup(p->l.t.v.v);
Denys Vlasenko684d4412018-12-19 14:57:23 +01004280 p->fidx = bc_program_addFunc(name);
4281 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004282
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004283 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004284 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004285 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004286 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004287 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004288 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004289
4290 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004291 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004292 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004293
4294 ++p->func->nparams;
4295
4296 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004297 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004298 if (s) goto err;
4299
4300 var = p->l.t.t != BC_LEX_LBRACKET;
4301
4302 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004303 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004304 if (s) goto err;
4305
4306 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004307 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004308 goto err;
4309 }
4310
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004311 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004312 if (s) goto err;
4313 }
4314
4315 comma = p->l.t.t == BC_LEX_COMMA;
4316 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004317 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004318 if (s) goto err;
4319 }
4320
Denys Vlasenko29301232018-12-11 15:29:32 +01004321 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004322 if (s) goto err;
4323 }
4324
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004325 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004326
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004327 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004328 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004329
4330 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004331 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004332
Denys Vlasenko202dd192018-12-16 17:30:35 +01004333 // Prevent "define z()<newline>" from being interpreted as function with empty stmt as body
4334 s = zbc_lex_skip_if_at_NLINE(&p->l);
4335 if (s) RETURN_STATUS(s);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004336 //GNU bc requires a {} block even if function body has single stmt, enforce this?
4337 if (p->l.t.t != BC_LEX_LBRACE)
4338 RETURN_STATUS(bc_error("function { body } expected"));
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004339
4340 p->in_funcdef++; // to determine whether "return" stmt is allowed, and such
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004341 s = zbc_parse_stmt_possibly_auto(p, true);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004342 p->in_funcdef--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004343 if (s) RETURN_STATUS(s);
4344
4345 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko65e10462018-12-19 15:13:14 +01004346
4347 // Subsequent code generation is into main program
4348 p->fidx = BC_PROG_MAIN;
4349 p->func = bc_program_func_BC_PROG_MAIN();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004350
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004351 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004352 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004353 err:
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004354 dbg_lex_done("%s:%d done (error)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004355 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004356 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004357}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004358#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004359
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004360static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004361{
4362 BcStatus s;
4363 bool comma, var, one;
4364 char *name;
4365
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004366 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004367 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004368 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004369
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004370 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004371 one = p->l.t.t == BC_LEX_NAME;
4372
4373 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004374 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004375 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004376 if (s) goto err;
4377
4378 var = p->l.t.t != BC_LEX_LBRACKET;
4379 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004380 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004381 if (s) goto err;
4382
4383 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004384 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004385 goto err;
4386 }
4387
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004388 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004389 if (s) goto err;
4390 }
4391
4392 comma = p->l.t.t == BC_LEX_COMMA;
4393 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004394 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004395 if (s) goto err;
4396 }
4397
Denys Vlasenko29301232018-12-11 15:29:32 +01004398 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004399 if (s) goto err;
4400 }
4401
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004402 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4403 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004404
4405 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004406 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004407
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004408 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004409 RETURN_STATUS(zbc_lex_next(&p->l));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004410 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06004411 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004412 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004413 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004414}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004415#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004416
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004417#undef zbc_parse_stmt_possibly_auto
4418static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004419{
4420 BcStatus s = BC_STATUS_SUCCESS;
4421
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004422 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004423
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004424 if (p->l.t.t == BC_LEX_NLINE) {
4425 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4426 RETURN_STATUS(zbc_lex_next(&p->l));
4427 }
4428 if (p->l.t.t == BC_LEX_SCOLON) {
4429 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4430 RETURN_STATUS(zbc_lex_next(&p->l));
4431 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004432
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004433 if (p->l.t.t == BC_LEX_LBRACE) {
4434 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4435 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004436 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004437 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004438 } while (p->l.t.t == BC_LEX_NLINE);
4439 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4440 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4441 s = zbc_parse_auto(p);
4442 if (s) RETURN_STATUS(s);
4443 }
4444 while (p->l.t.t != BC_LEX_RBRACE) {
4445 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4446 s = zbc_parse_stmt(p);
4447 if (s) RETURN_STATUS(s);
4448 }
4449 s = zbc_lex_next(&p->l);
4450 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4451 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004452 }
4453
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004454 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004455 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004456 case BC_LEX_OP_INC:
4457 case BC_LEX_OP_DEC:
4458 case BC_LEX_OP_MINUS:
4459 case BC_LEX_OP_BOOL_NOT:
4460 case BC_LEX_LPAREN:
4461 case BC_LEX_NAME:
4462 case BC_LEX_NUMBER:
4463 case BC_LEX_KEY_IBASE:
4464 case BC_LEX_KEY_LAST:
4465 case BC_LEX_KEY_LENGTH:
4466 case BC_LEX_KEY_OBASE:
4467 case BC_LEX_KEY_READ:
4468 case BC_LEX_KEY_SCALE:
4469 case BC_LEX_KEY_SQRT:
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004470 s = zbc_parse_expr(p, BC_PARSE_PRINT);
Gavin Howard01055ba2018-11-03 11:00:21 -06004471 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004472 case BC_LEX_STR:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004473 s = zbc_parse_string(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004474 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004475 case BC_LEX_KEY_BREAK:
4476 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004477 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004478 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004479 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004480 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004481 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004482 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004483 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004484 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004485 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004486 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004487 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004488 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004489 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004490 // "limits" is a compile-time command,
4491 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004492 printf(
4493 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4494 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4495 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4496 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4497 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4498 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4499 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4500 "Number of vars = "BC_MAX_VARS_STR "\n"
4501 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004502 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004503 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004504 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004505 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004506 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004507 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004508 // "quit" is a compile-time command. For example,
4509 // "if (0 == 1) quit" terminates when parsing the statement,
4510 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004511 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004512 case BC_LEX_KEY_RETURN:
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004513 if (!p->in_funcdef)
4514 RETURN_STATUS(bc_error("'return' not in a function"));
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004515 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004516 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004517 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004518 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004519 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004520 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004521 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004522 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004523 }
4524
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004525 if (s || G_interrupt) {
4526 bc_parse_reset(p);
4527 s = BC_STATUS_FAILURE;
4528 }
4529
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004530 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004531 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004532}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004533#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004534
Denys Vlasenko99b37622018-12-15 20:06:59 +01004535static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004536{
4537 BcStatus s;
4538
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004539 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004540 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004541 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004542 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004543 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004544 s = zbc_parse_funcdef(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004545 } else {
4546 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 +01004547 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004548 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004549
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004550 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004551 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004552}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004553#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004554
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004555// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004556static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004557{
4558 BcStatus s = BC_STATUS_SUCCESS;
4559 BcInst prev = BC_INST_PRINT;
4560 BcLexType top, t = p->l.t.t;
4561 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004562 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004563 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4564
Denys Vlasenko17df8822018-12-14 23:00:24 +01004565 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004566 paren_first = p->l.t.t == BC_LEX_LPAREN;
4567 nparens = nrelops = 0;
4568 paren_expr = rprn = done = get_token = assign = false;
4569 bin_last = true;
4570
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004571 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004572 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004573 case BC_LEX_OP_INC:
4574 case BC_LEX_OP_DEC:
Denys Vlasenko26819db2018-12-12 16:08:46 +01004575 s = zbc_parse_incdec(p, &prev, &paren_expr, &nexprs, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004576 rprn = get_token = bin_last = false;
4577 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004578 case BC_LEX_OP_MINUS:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004579 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004580 rprn = get_token = false;
4581 bin_last = prev == BC_INST_MINUS;
4582 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004583 case BC_LEX_OP_ASSIGN_POWER:
4584 case BC_LEX_OP_ASSIGN_MULTIPLY:
4585 case BC_LEX_OP_ASSIGN_DIVIDE:
4586 case BC_LEX_OP_ASSIGN_MODULUS:
4587 case BC_LEX_OP_ASSIGN_PLUS:
4588 case BC_LEX_OP_ASSIGN_MINUS:
4589 case BC_LEX_OP_ASSIGN:
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004590 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM
4591 && prev != BC_INST_SCALE && prev != BC_INST_IBASE
4592 && prev != BC_INST_OBASE && prev != BC_INST_LAST
4593 ) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004594 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004595 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004596 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004597 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004598 break;
4599 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004600 // Fallthrough.
4601 case BC_LEX_OP_POWER:
4602 case BC_LEX_OP_MULTIPLY:
4603 case BC_LEX_OP_DIVIDE:
4604 case BC_LEX_OP_MODULUS:
4605 case BC_LEX_OP_PLUS:
4606 case BC_LEX_OP_REL_EQ:
4607 case BC_LEX_OP_REL_LE:
4608 case BC_LEX_OP_REL_GE:
4609 case BC_LEX_OP_REL_NE:
4610 case BC_LEX_OP_REL_LT:
4611 case BC_LEX_OP_REL_GT:
4612 case BC_LEX_OP_BOOL_NOT:
4613 case BC_LEX_OP_BOOL_OR:
4614 case BC_LEX_OP_BOOL_AND:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004615 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4616 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4617 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004618 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004619 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004620 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004621 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004622 bc_parse_operator(p, t, ops_bgn, &nexprs);
4623 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004624 rprn = get_token = false;
4625 bin_last = t != BC_LEX_OP_BOOL_NOT;
Gavin Howard01055ba2018-11-03 11:00:21 -06004626 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004627 case BC_LEX_LPAREN:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004628 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004629 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004630 ++nparens;
4631 paren_expr = rprn = bin_last = false;
4632 get_token = true;
4633 bc_vec_push(&p->ops, &t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004634 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004635 case BC_LEX_RPAREN:
Gavin Howard01055ba2018-11-03 11:00:21 -06004636 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004637 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004638 if (nparens == 0) {
4639 s = BC_STATUS_SUCCESS;
4640 done = true;
4641 get_token = false;
4642 break;
4643 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004644 if (!paren_expr) {
Denys Vlasenko17df8822018-12-14 23:00:24 +01004645 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004646 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004647 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004648 --nparens;
4649 paren_expr = rprn = true;
4650 get_token = bin_last = false;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004651 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004652 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004653 case BC_LEX_NAME:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004654 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004655 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004656 paren_expr = true;
4657 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004658 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004659 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004660 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004661 case BC_LEX_NUMBER:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004662 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004663 return bc_error_bad_expression();
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01004664 bc_parse_pushNUM(p);
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004665 nexprs++;
4666 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004667 paren_expr = get_token = true;
4668 rprn = bin_last = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004669 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004670 case BC_LEX_KEY_IBASE:
4671 case BC_LEX_KEY_LAST:
4672 case BC_LEX_KEY_OBASE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004673 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004674 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004675 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4676 bc_parse_push(p, (char) prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004677 paren_expr = get_token = true;
4678 rprn = bin_last = false;
4679 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004680 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004681 case BC_LEX_KEY_LENGTH:
4682 case BC_LEX_KEY_SQRT:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004683 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004684 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004685 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004686 paren_expr = true;
4687 rprn = get_token = bin_last = false;
4688 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004689 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004690 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004691 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004692 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004693 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004694 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004695 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004696 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004697 paren_expr = true;
4698 rprn = get_token = bin_last = false;
4699 ++nexprs;
4700 prev = BC_INST_READ;
Gavin Howard01055ba2018-11-03 11:00:21 -06004701 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004702 case BC_LEX_KEY_SCALE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004703 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004704 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004705 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004706 paren_expr = true;
4707 rprn = get_token = bin_last = false;
4708 ++nexprs;
4709 prev = BC_INST_SCALE;
Gavin Howard01055ba2018-11-03 11:00:21 -06004710 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004711 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004712 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004713 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004714 }
4715
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004716 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004717 }
4718
4719 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004720 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004721
4722 while (p->ops.len > ops_bgn) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004723 top = BC_PARSE_TOP_OP(p);
4724 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4725
4726 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004727 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004728
Denys Vlasenko0154d782018-12-14 23:32:51 +01004729 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004730
4731 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4732 bc_vec_pop(&p->ops);
4733 }
4734
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004735 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004736 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004737
Gavin Howard01055ba2018-11-03 11:00:21 -06004738 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004739 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004740 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004741 } else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004742 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004743 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004744 }
4745
4746 if (flags & BC_PARSE_PRINT) {
4747 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4748 bc_parse_push(p, BC_INST_POP);
4749 }
4750
Denys Vlasenko17df8822018-12-14 23:00:24 +01004751 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004752 return s;
4753}
4754
Gavin Howard01055ba2018-11-03 11:00:21 -06004755#endif // ENABLE_BC
4756
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004757#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004758
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004759static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004760{
4761 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004762
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004763 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004764 if (s) RETURN_STATUS(s);
4765 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004766
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01004767 bc_parse_pushName(p, p->l.t.v.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004768
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004769 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004770}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004771#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004772
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004773static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004774{
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004775 char *str, *name;
Denys Vlasenko684d4412018-12-19 14:57:23 +01004776 size_t len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004777
Denys Vlasenkoe42cc192018-12-17 11:02:26 +01004778//why pad to 32 zeros??
4779 name = xasprintf("%032lu", (unsigned long)len);
Gavin Howard01055ba2018-11-03 11:00:21 -06004780
4781 str = xstrdup(p->l.t.v.v);
4782 bc_parse_push(p, BC_INST_STR);
4783 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004784 bc_vec_push(&G.prog.strs, &str);
Denys Vlasenko684d4412018-12-19 14:57:23 +01004785 bc_program_addFunc(name);
4786 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004787
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004788 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004789}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004790#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004791
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004792static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004793{
4794 BcStatus s;
4795
4796 bc_parse_push(p, inst);
4797 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004798 s = zdc_parse_register(p);
4799 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004800 }
4801
4802 if (store) {
4803 bc_parse_push(p, BC_INST_SWAP);
4804 bc_parse_push(p, BC_INST_ASSIGN);
4805 bc_parse_push(p, BC_INST_POP);
4806 }
4807
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004808 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004809}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004810#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004811
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004812static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004813{
4814 BcStatus s;
4815
4816 bc_parse_push(p, inst);
4817 bc_parse_push(p, BC_INST_EXEC_COND);
4818
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004819 s = zdc_parse_register(p);
4820 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004821
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004822 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004823 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004824
4825 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004826 s = zdc_parse_register(p);
4827 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004828 s = zbc_lex_next(&p->l);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004829 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06004830 bc_parse_push(p, BC_PARSE_STREND);
4831
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004832 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004833}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004834#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004835
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004836static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004837{
4838 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06004839 uint8_t inst;
4840 bool assign, get_token = false;
4841
4842 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004843 case BC_LEX_OP_REL_EQ:
4844 case BC_LEX_OP_REL_LE:
4845 case BC_LEX_OP_REL_GE:
4846 case BC_LEX_OP_REL_NE:
4847 case BC_LEX_OP_REL_LT:
4848 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004849 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06004850 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004851 case BC_LEX_SCOLON:
4852 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004853 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06004854 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004855 case BC_LEX_STR:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004856 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004857 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004858 case BC_LEX_NEG:
4859 case BC_LEX_NUMBER:
Gavin Howard01055ba2018-11-03 11:00:21 -06004860 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004861 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004862 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004863 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004864 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004865 }
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01004866 bc_parse_pushNUM(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004867 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
4868 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06004869 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004870 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004871 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004872 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004873 else
4874 bc_parse_push(p, BC_INST_READ);
4875 get_token = true;
4876 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004877 case BC_LEX_OP_ASSIGN:
4878 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06004879 assign = t == BC_LEX_OP_ASSIGN;
4880 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004881 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06004882 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004883 case BC_LEX_LOAD:
4884 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06004885 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004886 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06004887 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004888 case BC_LEX_STORE_IBASE:
4889 case BC_LEX_STORE_SCALE:
4890 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004891 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004892 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06004893 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004894 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004895 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004896 get_token = true;
4897 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004898 }
4899
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004900 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004901
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004902 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004903}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004904#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004905
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004906static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004907{
Gavin Howard01055ba2018-11-03 11:00:21 -06004908 BcLexType t;
4909
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004910 for (;;) {
4911 BcInst inst;
4912 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004913
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004914 t = p->l.t.t;
4915 if (t == BC_LEX_EOF) break;
4916
4917 inst = dc_parse_insts[t];
Gavin Howard01055ba2018-11-03 11:00:21 -06004918 if (inst != BC_INST_INVALID) {
4919 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004920 s = zbc_lex_next(&p->l);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004921 } else {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004922 s = zdc_parse_token(p, t, flags);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004923 }
4924 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004925 }
4926
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004927 if (flags & BC_PARSE_NOCALL)
Gavin Howard01055ba2018-11-03 11:00:21 -06004928 bc_parse_push(p, BC_INST_POP_EXEC);
4929
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004930 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004931}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004932#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004933
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01004934static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004935{
4936 BcStatus s;
4937
4938 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004939 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004940 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004941 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004942
Denys Vlasenkod38af482018-12-04 19:11:02 +01004943 if (s || G_interrupt) {
4944 bc_parse_reset(p);
4945 s = BC_STATUS_FAILURE;
4946 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004947
Denys Vlasenko26819db2018-12-12 16:08:46 +01004948 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004949}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004950#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004951
Gavin Howard01055ba2018-11-03 11:00:21 -06004952#endif // ENABLE_DC
4953
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004954static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004955{
4956 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004957 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004958 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01004959 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004960 }
4961}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004962#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01004963
Denys Vlasenkodf515392018-12-02 19:27:48 +01004964static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06004965{
Gavin Howard01055ba2018-11-03 11:00:21 -06004966 BcId e, *ptr;
4967 BcVec *v, *map;
4968 size_t i;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01004969 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06004970
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004971 v = var ? &G.prog.vars : &G.prog.arrs;
4972 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06004973
4974 e.name = id;
4975 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01004976 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06004977
4978 if (new) {
Denys Vlasenkof36a0ad2018-12-19 17:15:04 +01004979 BcVec v2;
4980 bc_array_init(&v2, var);
4981 bc_vec_push(v, &v2);
Gavin Howard01055ba2018-11-03 11:00:21 -06004982 }
4983
4984 ptr = bc_vec_item(map, i);
4985 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01004986 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004987}
4988
Denys Vlasenko29301232018-12-11 15:29:32 +01004989static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06004990{
Gavin Howard01055ba2018-11-03 11:00:21 -06004991 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004992 case BC_RESULT_STR:
4993 case BC_RESULT_TEMP:
4994 case BC_RESULT_IBASE:
4995 case BC_RESULT_SCALE:
4996 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004997 *num = &r->d.n;
4998 break;
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004999 case BC_RESULT_CONSTANT: {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005000 BcStatus s;
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01005001 char *str = *(char**)bc_vec_item(&G.prog.consts, r->d.id.idx);
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005002 unsigned base_t;
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01005003 size_t len = strlen(str);
Gavin Howard01055ba2018-11-03 11:00:21 -06005004
5005 bc_num_init(&r->d.n, len);
5006
5007 hex = hex && len == 1;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005008 base_t = hex ? 16 : G.prog.ib_t;
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01005009 s = zbc_num_parse(&r->d.n, str, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005010
5011 if (s) {
5012 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01005013 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005014 }
5015
5016 *num = &r->d.n;
5017 r->t = BC_RESULT_TEMP;
Gavin Howard01055ba2018-11-03 11:00:21 -06005018 break;
5019 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005020 case BC_RESULT_VAR:
5021 case BC_RESULT_ARRAY:
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005022 case BC_RESULT_ARRAY_ELEM: {
Gavin Howard01055ba2018-11-03 11:00:21 -06005023 BcVec *v;
5024
Denys Vlasenkodf515392018-12-02 19:27:48 +01005025 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06005026
5027 if (r->t == BC_RESULT_ARRAY_ELEM) {
5028 v = bc_vec_top(v);
5029 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
5030 *num = bc_vec_item(v, r->d.id.idx);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005031 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06005032 *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005033 break;
5034 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005035 case BC_RESULT_LAST:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005036 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005037 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005038 case BC_RESULT_ONE:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005039 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005040 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005041 }
5042
Denys Vlasenko29301232018-12-11 15:29:32 +01005043 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005044}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005045#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005046
Denys Vlasenko29301232018-12-11 15:29:32 +01005047static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005048 BcResult **r, BcNum **rn, bool assign)
5049{
5050 BcStatus s;
5051 bool hex;
5052 BcResultType lt, rt;
5053
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005054 if (!STACK_HAS_MORE_THAN(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005055 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005056
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005057 *r = bc_vec_item_rev(&G.prog.results, 0);
5058 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005059
5060 lt = (*l)->t;
5061 rt = (*r)->t;
5062 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5063
Denys Vlasenko29301232018-12-11 15:29:32 +01005064 s = zbc_program_num(*l, ln, false);
5065 if (s) RETURN_STATUS(s);
5066 s = zbc_program_num(*r, rn, hex);
5067 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005068
5069 // We run this again under these conditions in case any vector has been
5070 // reallocated out from under the BcNums or arrays we had.
5071 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005072 s = zbc_program_num(*l, ln, false);
5073 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005074 }
5075
5076 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005077 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005078 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005079 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005080
Denys Vlasenko29301232018-12-11 15:29:32 +01005081 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005082}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005083#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005084
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005085static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005086{
5087 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005088 bc_vec_pop(&G.prog.results);
5089 bc_vec_pop(&G.prog.results);
5090 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005091}
5092
Denys Vlasenko29301232018-12-11 15:29:32 +01005093static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005094{
5095 BcStatus s;
5096
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005097 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko29301232018-12-11 15:29:32 +01005098 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005099 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005100
Denys Vlasenko29301232018-12-11 15:29:32 +01005101 s = zbc_program_num(*r, n, false);
5102 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005103
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005104 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005105 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005106
Denys Vlasenko29301232018-12-11 15:29:32 +01005107 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005108}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005109#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005110
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005111static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005112{
5113 r->t = t;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005114 bc_vec_pop(&G.prog.results);
5115 bc_vec_push(&G.prog.results, r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005116}
5117
Denys Vlasenko259137d2018-12-11 19:42:05 +01005118static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005119{
5120 BcStatus s;
5121 BcResult *opd1, *opd2, res;
5122 BcNum *n1, *n2 = NULL;
5123
Denys Vlasenko29301232018-12-11 15:29:32 +01005124 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005125 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005126 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005127
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005128 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005129 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 -06005130 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005131 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005132
Denys Vlasenko259137d2018-12-11 19:42:05 +01005133 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005134 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005135 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005136 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005137}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005138#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005139
Denys Vlasenko26819db2018-12-12 16:08:46 +01005140static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005141{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005142 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005143 BcStatus s;
5144 BcParse parse;
5145 BcVec buf;
5146 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005147 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005148
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005149 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005150 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005151
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005152 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005153 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005154
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005155 sv_file = G.prog.file;
5156 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005157 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005158
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005159 bc_char_vec_init(&buf);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01005160 bc_read_line(&buf, stdin);
Gavin Howard01055ba2018-11-03 11:00:21 -06005161
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005162 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005163 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005164
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005165 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005166 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005167 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005168 if (s) goto exec_err;
5169
5170 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005171 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005172 goto exec_err;
5173 }
5174
5175 ip.func = BC_PROG_READ;
5176 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005177 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005178
5179 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005180 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005181
5182 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005183 bc_vec_push(&G.prog.exestack, &ip);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005184 exec_err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005185 bc_parse_free(&parse);
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005186 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005187 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005188 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005189 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005190}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005191#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005192
5193static size_t bc_program_index(char *code, size_t *bgn)
5194{
Denys Vlasenko3f940c92018-12-18 15:49:42 +01005195 unsigned char *bytes = (void*)(code + *bgn);
5196 unsigned amt;
5197 unsigned i;
5198 size_t res;
Gavin Howard01055ba2018-11-03 11:00:21 -06005199
Denys Vlasenko3f940c92018-12-18 15:49:42 +01005200 amt = *bytes++;
5201 *bgn += amt + 1;
5202
5203 amt *= 8;
5204 res = 0;
5205 for (i = 0; i < amt; i += 8)
5206 res |= (size_t)(*bytes++) << i;
Gavin Howard01055ba2018-11-03 11:00:21 -06005207
5208 return res;
5209}
5210
5211static char *bc_program_name(char *code, size_t *bgn)
5212{
5213 size_t i;
Denys Vlasenko694d2982018-12-18 19:17:11 +01005214 char *s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005215
Denys Vlasenko694d2982018-12-18 19:17:11 +01005216 code += *bgn;
5217 s = xmalloc(strchr(code, BC_PARSE_STREND) - code + 1);
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01005218 i = 0;
5219 for (;;) {
Denys Vlasenko694d2982018-12-18 19:17:11 +01005220 char c = *code++;
5221 if (c == BC_PARSE_STREND)
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01005222 break;
5223 s[i++] = c;
5224 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005225 s[i] = '\0';
Denys Vlasenko694d2982018-12-18 19:17:11 +01005226 *bgn += i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06005227
5228 return s;
5229}
5230
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005231static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005232{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005233#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005234 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005235 // Example: echo '[]ap' | dc
5236 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005237 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005238 return;
5239 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005240#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005241 while (*str) {
5242 int c = *str++;
5243 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005244 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005245 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005246 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005247 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005248 case 'a':
5249 bb_putchar('\a');
5250 break;
5251 case 'b':
5252 bb_putchar('\b');
5253 break;
5254 case '\\':
5255 case 'e':
5256 bb_putchar('\\');
5257 break;
5258 case 'f':
5259 bb_putchar('\f');
5260 break;
5261 case 'n':
5262 bb_putchar('\n');
5263 G.prog.nchars = SIZE_MAX;
5264 break;
5265 case 'r':
5266 bb_putchar('\r');
5267 break;
5268 case 'q':
5269 bb_putchar('"');
5270 break;
5271 case 't':
5272 bb_putchar('\t');
5273 break;
5274 default:
5275 // Just print the backslash and following character.
5276 bb_putchar('\\');
5277 ++G.prog.nchars;
5278 bb_putchar(c);
5279 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005280 }
5281 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005282 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005283 }
5284}
5285
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005286static void bc_num_printNewline(void)
5287{
5288 if (G.prog.nchars == G.prog.len - 1) {
5289 bb_putchar('\\');
5290 bb_putchar('\n');
5291 G.prog.nchars = 0;
5292 }
5293}
5294
5295#if ENABLE_DC
5296static FAST_FUNC void bc_num_printChar(size_t num, size_t width, bool radix)
5297{
5298 (void) radix;
5299 bb_putchar((char) num);
5300 G.prog.nchars += width;
5301}
5302#endif
5303
5304static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5305{
5306 size_t exp, pow;
5307
5308 bc_num_printNewline();
5309 bb_putchar(radix ? '.' : ' ');
5310 ++G.prog.nchars;
5311
5312 bc_num_printNewline();
5313 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5314 continue;
5315
5316 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5317 size_t dig;
5318 bc_num_printNewline();
5319 dig = num / pow;
5320 num -= dig * pow;
5321 bb_putchar(((char) dig) + '0');
5322 }
5323}
5324
5325static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5326{
5327 if (radix) {
5328 bc_num_printNewline();
5329 bb_putchar('.');
Denys Vlasenko30a8e0c2018-12-18 19:20:04 +01005330 G.prog.nchars++;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005331 }
5332
5333 bc_num_printNewline();
5334 bb_putchar(bb_hexdigits_upcase[num]);
5335 G.prog.nchars += width;
5336}
5337
5338static void bc_num_printDecimal(BcNum *n)
5339{
5340 size_t i, rdx = n->rdx - 1;
5341
Denys Vlasenko30a8e0c2018-12-18 19:20:04 +01005342 if (n->neg) {
5343 bb_putchar('-');
5344 G.prog.nchars++;
5345 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005346
5347 for (i = n->len - 1; i < n->len; --i)
5348 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5349}
5350
Denys Vlasenkod3401432018-12-18 17:00:35 +01005351static BC_STATUS zbc_num_printNum(BcNum *n, unsigned base_t, size_t width, BcNumDigitOp print)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005352{
5353 BcStatus s;
5354 BcVec stack;
Denys Vlasenkod3401432018-12-18 17:00:35 +01005355 BcNum base;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005356 BcNum intp, fracp, digit, frac_len;
5357 unsigned long dig, *ptr;
5358 size_t i;
5359 bool radix;
5360
5361 if (n->len == 0) {
5362 print(0, width, false);
5363 RETURN_STATUS(BC_STATUS_SUCCESS);
5364 }
5365
5366 bc_vec_init(&stack, sizeof(long), NULL);
5367 bc_num_init(&intp, n->len);
5368 bc_num_init(&fracp, n->rdx);
5369 bc_num_init(&digit, width);
5370 bc_num_init(&frac_len, BC_NUM_INT(n));
5371 bc_num_copy(&intp, n);
5372 bc_num_one(&frac_len);
Denys Vlasenkod3401432018-12-18 17:00:35 +01005373//TODO: have BcNumSmall type, with static buffer
5374 bc_num_init_DEF_SIZE(&base);
5375 bc_num_ulong2num(&base, base_t);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005376
5377 bc_num_truncate(&intp, intp.rdx);
5378 s = zbc_num_sub(n, &intp, &fracp, 0);
5379 if (s) goto err;
5380
5381 while (intp.len != 0) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01005382 s = zbc_num_divmod(&intp, &base, &intp, &digit, 0);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005383 if (s) goto err;
5384 s = zbc_num_ulong(&digit, &dig);
5385 if (s) goto err;
5386 bc_vec_push(&stack, &dig);
5387 }
5388
5389 for (i = 0; i < stack.len; ++i) {
5390 ptr = bc_vec_item_rev(&stack, i);
5391 print(*ptr, width, false);
5392 }
5393
5394 if (!n->rdx) goto err;
5395
5396 for (radix = true; frac_len.len <= n->rdx; radix = false) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01005397 s = zbc_num_mul(&fracp, &base, &fracp, n->rdx);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005398 if (s) goto err;
5399 s = zbc_num_ulong(&fracp, &dig);
5400 if (s) goto err;
5401 bc_num_ulong2num(&intp, dig);
5402 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5403 if (s) goto err;
5404 print(dig, width, radix);
Denys Vlasenkod3401432018-12-18 17:00:35 +01005405 s = zbc_num_mul(&frac_len, &base, &frac_len, 0);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005406 if (s) goto err;
5407 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005408 err:
Denys Vlasenkod3401432018-12-18 17:00:35 +01005409 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005410 bc_num_free(&frac_len);
5411 bc_num_free(&digit);
5412 bc_num_free(&fracp);
5413 bc_num_free(&intp);
5414 bc_vec_free(&stack);
5415 RETURN_STATUS(s);
5416}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005417#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005418
5419static BC_STATUS zbc_num_printBase(BcNum *n)
5420{
5421 BcStatus s;
Denys Vlasenkod4258dd2018-12-18 13:22:23 +01005422 size_t width;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005423 BcNumDigitOp print;
5424 bool neg = n->neg;
5425
5426 if (neg) {
5427 bb_putchar('-');
5428 G.prog.nchars++;
5429 }
5430
5431 n->neg = false;
5432
5433 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5434 width = 1;
5435 print = bc_num_printHex;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005436 } else {
Denys Vlasenkod4258dd2018-12-18 13:22:23 +01005437 unsigned i = G.prog.ob_t - 1;
5438 width = 0;
5439 for (;;) {
5440 width++;
5441 i /= 10;
5442 if (i == 0)
5443 break;
5444 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005445 print = bc_num_printDigits;
5446 }
5447
Denys Vlasenkod3401432018-12-18 17:00:35 +01005448 s = zbc_num_printNum(n, G.prog.ob_t, width, print);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005449 n->neg = neg;
5450
5451 RETURN_STATUS(s);
5452}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005453#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005454
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005455static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5456{
5457 BcStatus s = BC_STATUS_SUCCESS;
5458
5459 bc_num_printNewline();
5460
5461 if (n->len == 0) {
5462 bb_putchar('0');
5463 ++G.prog.nchars;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005464 } else if (G.prog.ob_t == 10)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005465 bc_num_printDecimal(n);
5466 else
5467 s = zbc_num_printBase(n);
5468
5469 if (newline) {
5470 bb_putchar('\n');
5471 G.prog.nchars = 0;
5472 }
5473
5474 RETURN_STATUS(s);
5475}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005476#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005477
Denys Vlasenko29301232018-12-11 15:29:32 +01005478static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005479{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005480 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005481 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005482 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005483 bool pop = inst != BC_INST_PRINT;
5484
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005485 if (!STACK_HAS_MORE_THAN(&G.prog.results, idx))
Denys Vlasenko29301232018-12-11 15:29:32 +01005486 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005487
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005488 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005489 num = NULL; // is this NULL necessary?
Denys Vlasenko29301232018-12-11 15:29:32 +01005490 s = zbc_program_num(r, &num, false);
5491 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005492
5493 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005494 s = zbc_num_print(num, !pop);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005495 if (!s) bc_num_copy(&G.prog.last, num);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005496 } else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005497 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005498
5499 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005500 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005501
5502 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005503 for (;;) {
5504 char c = *str++;
5505 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005506 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005507 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005508 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005509 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005510 } else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005511 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005512 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005513 }
5514 }
5515
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005516 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005517
Denys Vlasenko29301232018-12-11 15:29:32 +01005518 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005519}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005520#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005521
Denys Vlasenko29301232018-12-11 15:29:32 +01005522static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005523{
5524 BcStatus s;
5525 BcResult res, *ptr;
5526 BcNum *num = NULL;
5527
Denys Vlasenko29301232018-12-11 15:29:32 +01005528 s = zbc_program_prep(&ptr, &num);
5529 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005530
5531 bc_num_init(&res.d.n, num->len);
5532 bc_num_copy(&res.d.n, num);
5533 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5534
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005535 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005536
Denys Vlasenko29301232018-12-11 15:29:32 +01005537 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005538}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005539#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005540
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005541static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005542{
5543 BcStatus s;
5544 BcResult *opd1, *opd2, res;
5545 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005546 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005547
Denys Vlasenko29301232018-12-11 15:29:32 +01005548 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005549 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005550
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005551 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005552
5553 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005554 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005555 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005556 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005557 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005558 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005559 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005560 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005561 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005562 break;
5563 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005564 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005565 break;
5566 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005567 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005568 break;
5569 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005570 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005571 break;
5572 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005573 cond = (cond > 0);
5574 break;
5575 default: // = case BC_INST_REL_NE:
5576 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005577 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005578 }
5579 }
5580
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005581 if (cond) bc_num_one(&res.d.n);
5582 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005583
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005584 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005585
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005586 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005587}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005588#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005589
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005590#if ENABLE_DC
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005591static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v, bool push)
Gavin Howard01055ba2018-11-03 11:00:21 -06005592{
5593 BcNum n2;
5594 BcResult res;
5595
5596 memset(&n2, 0, sizeof(BcNum));
5597 n2.rdx = res.d.id.idx = r->d.id.idx;
5598 res.t = BC_RESULT_STR;
5599
5600 if (!push) {
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005601 if (!STACK_HAS_MORE_THAN(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005602 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005603 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005604 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005605 }
5606
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005607 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005608
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005609 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005610 bc_vec_push(v, &n2);
5611
Denys Vlasenko29301232018-12-11 15:29:32 +01005612 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005613}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005614#define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005615#endif // ENABLE_DC
5616
Denys Vlasenko29301232018-12-11 15:29:32 +01005617static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005618{
5619 BcStatus s;
5620 BcResult *ptr, r;
5621 BcVec *v;
5622 BcNum *n;
5623
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005624 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko29301232018-12-11 15:29:32 +01005625 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005626
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005627 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005628 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005629 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005630 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005631
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005632#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005633 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005634 RETURN_STATUS(bc_error_variable_is_wrong_type());
5635 if (ptr->t == BC_RESULT_STR)
5636 RETURN_STATUS(zbc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005637#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005638
Denys Vlasenko29301232018-12-11 15:29:32 +01005639 s = zbc_program_num(ptr, &n, false);
5640 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005641
5642 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005643 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005644
5645 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005646 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005647 bc_num_copy(&r.d.n, n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005648 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005649 bc_array_init(&r.d.v, true);
5650 bc_array_copy(&r.d.v, (BcVec *) n);
5651 }
5652
5653 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005654 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005655
Denys Vlasenko29301232018-12-11 15:29:32 +01005656 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005657}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005658#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005659
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005660static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005661{
5662 BcStatus s;
5663 BcResult *left, *right, res;
5664 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005665 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5666
Denys Vlasenko29301232018-12-11 15:29:32 +01005667 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005668 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005669
5670 ib = left->t == BC_RESULT_IBASE;
5671 sc = left->t == BC_RESULT_SCALE;
5672
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005673#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005674 if (right->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005675 BcVec *v;
5676
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005677 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005678 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005679 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005680
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005681 RETURN_STATUS(zbc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005682 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005683#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005684
5685 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005686 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005687 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005688 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005689 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005690
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005691#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005692 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005693 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005694
5695 if (assign)
5696 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005697 else {
5698 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005699 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 +01005700 }
5701 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005702#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005703 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005704#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005705
5706 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005707 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005708 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5709 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5710 NULL, //can't happen //BC_RESULT_LAST
5711 NULL, //can't happen //BC_RESULT_CONSTANT
5712 NULL, //can't happen //BC_RESULT_ONE
5713 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005714 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005715 size_t *ptr;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005716 size_t max;
5717 unsigned long val;
Gavin Howard01055ba2018-11-03 11:00:21 -06005718
Denys Vlasenko29301232018-12-11 15:29:32 +01005719 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005720 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005721 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005722 if (sc) {
5723 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005724 ptr = &G.prog.scale;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005725 } else {
5726 if (val < 2)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005727 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005728 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005729 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005730 }
5731
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005732 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005733 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005734
5735 *ptr = (size_t) val;
5736 s = BC_STATUS_SUCCESS;
5737 }
5738
5739 bc_num_init(&res.d.n, l->len);
5740 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005741 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005742
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005743 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005744}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005745#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005746
Denys Vlasenko416ce762018-12-02 20:57:17 +01005747#if !ENABLE_DC
5748#define bc_program_pushVar(code, bgn, pop, copy) \
5749 bc_program_pushVar(code, bgn)
5750// for bc, 'pop' and 'copy' are always false
5751#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005752static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005753 bool pop, bool copy)
5754{
Gavin Howard01055ba2018-11-03 11:00:21 -06005755 BcResult r;
5756 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06005757
5758 r.t = BC_RESULT_VAR;
5759 r.d.id.name = name;
5760
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005761#if ENABLE_DC
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005762 if (pop || copy) {
Denys Vlasenko416ce762018-12-02 20:57:17 +01005763 BcVec *v = bc_program_search(name, true);
5764 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005765
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005766 free(name);
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005767 if (!STACK_HAS_MORE_THAN(v, 1 - copy)) {
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005768 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005769 }
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005770
5771 if (!BC_PROG_STR(num)) {
5772 r.t = BC_RESULT_TEMP;
5773 bc_num_init_DEF_SIZE(&r.d.n);
5774 bc_num_copy(&r.d.n, num);
5775 } else {
5776 r.t = BC_RESULT_STR;
5777 r.d.id.idx = num->rdx;
5778 }
5779
5780 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005781 }
5782#endif // ENABLE_DC
5783
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005784 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005785
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005786 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005787}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005788#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005789
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005790static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005791{
5792 BcStatus s = BC_STATUS_SUCCESS;
5793 BcResult r;
5794 BcNum *num;
5795
5796 r.d.id.name = bc_program_name(code, bgn);
5797
5798 if (inst == BC_INST_ARRAY) {
5799 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005800 bc_vec_push(&G.prog.results, &r);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005801 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005802 BcResult *operand;
5803 unsigned long temp;
5804
Denys Vlasenko29301232018-12-11 15:29:32 +01005805 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005806 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01005807 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06005808 if (s) goto err;
5809
5810 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005811 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06005812 goto err;
5813 }
5814
5815 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005816 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06005817 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005818 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005819 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01005820 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005821}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005822#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005823
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005824#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01005825static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005826{
5827 BcStatus s;
5828 BcResult *ptr, res, copy;
5829 BcNum *num = NULL;
5830 char inst2 = inst;
5831
Denys Vlasenko29301232018-12-11 15:29:32 +01005832 s = zbc_program_prep(&ptr, &num);
5833 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005834
5835 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
5836 copy.t = BC_RESULT_TEMP;
5837 bc_num_init(&copy.d.n, num->len);
5838 bc_num_copy(&copy.d.n, num);
5839 }
5840
5841 res.t = BC_RESULT_ONE;
5842 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
5843 BC_INST_ASSIGN_PLUS :
5844 BC_INST_ASSIGN_MINUS;
5845
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005846 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005847 s = zbc_program_assign(inst);
5848 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005849
5850 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005851 bc_vec_pop(&G.prog.results);
5852 bc_vec_push(&G.prog.results, &copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06005853 }
5854
Denys Vlasenko29301232018-12-11 15:29:32 +01005855 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005856}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005857#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005858
Denys Vlasenko29301232018-12-11 15:29:32 +01005859static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005860{
Gavin Howard01055ba2018-11-03 11:00:21 -06005861 BcInstPtr ip;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005862 size_t i, nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005863 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06005864 BcId *a;
Gavin Howard01055ba2018-11-03 11:00:21 -06005865 BcResult *arg;
5866
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005867 nparams = bc_program_index(code, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005868 ip.idx = 0;
5869 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005870 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005871
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005872 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005873 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005874 }
5875 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005876 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005877 }
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005878 ip.len = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005879
5880 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005881 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005882
5883 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005884 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005885
5886 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01005887 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005888
Denys Vlasenko29301232018-12-11 15:29:32 +01005889 s = zbc_program_copyToVar(a->name, a->idx);
5890 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005891 }
5892
Denys Vlasenko87888ce2018-12-19 17:55:23 +01005893 a = bc_vec_item(&func->autos, i);
5894 for (; i < func->autos.len; i++, a++) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01005895 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06005896
Denys Vlasenkodf515392018-12-02 19:27:48 +01005897 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005898 if (a->idx) {
Denys Vlasenkof36a0ad2018-12-19 17:15:04 +01005899 BcNum n2;
5900 bc_num_init_DEF_SIZE(&n2);
5901 bc_vec_push(v, &n2);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005902 } else {
Denys Vlasenkof36a0ad2018-12-19 17:15:04 +01005903 BcVec v2;
5904 bc_array_init(&v2, true);
5905 bc_vec_push(v, &v2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005906 }
5907 }
5908
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005909 bc_vec_push(&G.prog.exestack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06005910
Denys Vlasenko29301232018-12-11 15:29:32 +01005911 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005912}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005913#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005914
Denys Vlasenko29301232018-12-11 15:29:32 +01005915static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005916{
Gavin Howard01055ba2018-11-03 11:00:21 -06005917 BcResult res;
5918 BcFunc *f;
Denys Vlasenko87888ce2018-12-19 17:55:23 +01005919 BcId *a;
Gavin Howard01055ba2018-11-03 11:00:21 -06005920 size_t i;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005921 BcInstPtr *ip = bc_vec_top(&G.prog.exestack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005922
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005923 if (!STACK_HAS_EQUAL_OR_MORE_THAN(&G.prog.results, ip->len + (inst == BC_INST_RET)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005924 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005925
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005926 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005927 res.t = BC_RESULT_TEMP;
5928
5929 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005930 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005931 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005932 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005933
Denys Vlasenko29301232018-12-11 15:29:32 +01005934 s = zbc_program_num(operand, &num, false);
5935 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005936 bc_num_init(&res.d.n, num->len);
5937 bc_num_copy(&res.d.n, num);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005938 } else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005939 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01005940 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005941 }
5942
5943 // We need to pop arguments as well, so this takes that into account.
Denys Vlasenko87888ce2018-12-19 17:55:23 +01005944 a = (void*)f->autos.v;
5945 for (i = 0; i < f->autos.len; i++, a++) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005946 BcVec *v;
Denys Vlasenkodf515392018-12-02 19:27:48 +01005947 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005948 bc_vec_pop(v);
5949 }
5950
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005951 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->len);
5952 bc_vec_push(&G.prog.results, &res);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005953 bc_vec_pop(&G.prog.exestack);
Gavin Howard01055ba2018-11-03 11:00:21 -06005954
Denys Vlasenko29301232018-12-11 15:29:32 +01005955 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005956}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005957#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005958#endif // ENABLE_BC
5959
5960static unsigned long bc_program_scale(BcNum *n)
5961{
5962 return (unsigned long) n->rdx;
5963}
5964
5965static unsigned long bc_program_len(BcNum *n)
5966{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01005967 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06005968
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01005969 if (n->rdx != len) return len;
5970 for (;;) {
5971 if (len == 0) break;
5972 len--;
5973 if (n->num[len] != 0) break;
5974 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005975 return len;
5976}
5977
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005978static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005979{
5980 BcStatus s;
5981 BcResult *opnd;
5982 BcNum *num = NULL;
5983 BcResult res;
5984 bool len = inst == BC_INST_LENGTH;
5985
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005986 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005987 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005988 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005989
Denys Vlasenko29301232018-12-11 15:29:32 +01005990 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005991 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005992
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005993#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005994 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005995 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005996#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005997
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005998 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005999
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006000 if (inst == BC_INST_SQRT)
6001 s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006002#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006003 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006004 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006005 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006006#endif
6007#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006008 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006009 char **str;
6010 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
6011
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006012 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006013 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06006014 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006015#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006016 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01006017 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06006018 }
6019
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006020 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006021
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006022 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006023}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006024#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006025
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006026#if ENABLE_DC
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006027static BC_STATUS zbc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006028{
6029 BcStatus s;
6030 BcResult *opd1, *opd2, res, res2;
6031 BcNum *n1, *n2 = NULL;
6032
Denys Vlasenko29301232018-12-11 15:29:32 +01006033 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006034 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006035
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006036 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006037 bc_num_init(&res2.d.n, n2->len);
6038
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006039 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006040 if (s) goto err;
6041
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006042 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006043 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006044 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006045
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006046 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006047 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006048 bc_num_free(&res2.d.n);
6049 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006050 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006051}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006052#define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006053
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006054static BC_STATUS zbc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006055{
6056 BcStatus s;
6057 BcResult *r1, *r2, *r3, res;
6058 BcNum *n1, *n2, *n3;
6059
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006060 if (!STACK_HAS_MORE_THAN(&G.prog.results, 2))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006061 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006062 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006063 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006064
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006065 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006066 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006067 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006068 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006069 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006070
6071 // Make sure that the values have their pointers updated, if necessary.
6072 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006073 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006074 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006075 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006076 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006077 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006078 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006079 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006080 }
6081 }
6082
6083 bc_num_init(&res.d.n, n3->len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006084 s = zbc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006085 if (s) goto err;
6086
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006087 bc_vec_pop(&G.prog.results);
6088 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006089
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006090 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006091 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006092 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006093 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006094}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006095#define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006096
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006097static void bc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006098{
Gavin Howard01055ba2018-11-03 11:00:21 -06006099 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006100 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006101
6102 res.t = BC_RESULT_TEMP;
6103
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006104 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006105 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006106 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006107}
6108
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006109static BC_STATUS zbc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006110{
6111 BcStatus s;
6112 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006113 BcNum *num, n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006114 char *str, *str2, c;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006115 size_t len = G.prog.strs.len, idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006116 unsigned long val;
6117
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006118 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006119 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006120 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006121
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006122 num = NULL; // TODO: is this NULL needed?
Denys Vlasenko29301232018-12-11 15:29:32 +01006123 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006124 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006125
6126 if (BC_PROG_NUM(r, num)) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01006127 BcNum strmb;
6128
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006129 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006130 bc_num_copy(&n, num);
6131 bc_num_truncate(&n, n.rdx);
6132
Denys Vlasenkod3401432018-12-18 17:00:35 +01006133//TODO: have BcNumSmall type, with static buffer
6134 bc_num_init_DEF_SIZE(&strmb);
6135 bc_num_ulong2num(&strmb, 0x100);
6136 s = zbc_num_mod(&n, &strmb, &n, 0);
6137 bc_num_free(&strmb);
6138
Gavin Howard01055ba2018-11-03 11:00:21 -06006139 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006140 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006141 if (s) goto num_err;
6142
6143 c = (char) val;
6144
6145 bc_num_free(&n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006146 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06006147 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006148 str2 = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006149 c = str2[0];
6150 }
6151
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006152 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006153 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006154 //str[1] = '\0'; - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006155
6156 str2 = xstrdup(str);
Denys Vlasenko684d4412018-12-19 14:57:23 +01006157 idx = bc_program_addFunc(str2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006158
6159 if (idx != len + BC_PROG_REQ_FUNCS) {
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006160 for (idx = 0; idx < G.prog.strs.len; ++idx) {
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006161 if (strcmp(*bc_program_str(idx), str) == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006162 len = idx;
6163 break;
6164 }
6165 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006166 free(str);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006167 } else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006168 bc_vec_push(&G.prog.strs, &str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006169
6170 res.t = BC_RESULT_STR;
6171 res.d.id.idx = len;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006172 bc_vec_pop(&G.prog.results);
6173 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006174
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006175 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006176 num_err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006177 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006178 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006179}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006180#define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006181
Denys Vlasenko29301232018-12-11 15:29:32 +01006182static BC_STATUS zbc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006183{
6184 BcStatus s;
6185 BcResult *r;
6186 BcNum *n = NULL;
6187 size_t idx;
6188 char *str;
6189
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006190 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko29301232018-12-11 15:29:32 +01006191 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006192 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006193
Denys Vlasenko29301232018-12-11 15:29:32 +01006194 s = zbc_program_num(r, &n, false);
6195 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006196
Denys Vlasenko57734c92018-12-17 21:14:05 +01006197 if (BC_PROG_NUM(r, n)) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01006198 s = zbc_num_printNum(n, 0x100, 1, bc_num_printChar);
Denys Vlasenko57734c92018-12-17 21:14:05 +01006199 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06006200 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006201 str = *bc_program_str(idx);
Denys Vlasenko00d77792018-11-30 23:13:42 +01006202 printf("%s", str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006203 }
6204
Denys Vlasenko29301232018-12-11 15:29:32 +01006205 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006206}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006207#define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006208
Denys Vlasenko29301232018-12-11 15:29:32 +01006209static BC_STATUS zbc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006210{
6211 BcStatus s;
6212 BcResult *opnd;
6213 BcNum *num = NULL;
6214 unsigned long val;
6215
Denys Vlasenko29301232018-12-11 15:29:32 +01006216 s = zbc_program_prep(&opnd, &num);
6217 if (s) RETURN_STATUS(s);
6218 s = zbc_num_ulong(num, &val);
6219 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006220
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006221 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006222
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006223 if (G.prog.exestack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006224 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006225 if (G.prog.exestack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006226 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006227 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006228
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006229 bc_vec_npop(&G.prog.exestack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006230
Denys Vlasenko29301232018-12-11 15:29:32 +01006231 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006232}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006233#define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006234
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006235static BC_STATUS zbc_program_execStr(char *code, size_t *bgn, bool cond)
Gavin Howard01055ba2018-11-03 11:00:21 -06006236{
6237 BcStatus s = BC_STATUS_SUCCESS;
6238 BcResult *r;
6239 char **str;
6240 BcFunc *f;
6241 BcParse prs;
6242 BcInstPtr ip;
6243 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006244
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006245 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006246 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006247
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006248 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006249
6250 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006251 BcNum *n = n; // for compiler
6252 bool exec;
6253 char *name;
6254 char *then_name = bc_program_name(code, bgn);
6255 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006256
6257 if (code[*bgn] == BC_PARSE_STREND)
6258 (*bgn) += 1;
6259 else
6260 else_name = bc_program_name(code, bgn);
6261
6262 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006263 name = then_name;
6264 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006265 exec = true;
6266 name = else_name;
6267 }
6268
6269 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006270 BcVec *v;
6271 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006272 n = bc_vec_top(v);
6273 }
6274
6275 free(then_name);
6276 free(else_name);
6277
6278 if (!exec) goto exit;
6279 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006280 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006281 goto exit;
6282 }
6283
6284 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006285 } else {
6286 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006287 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006288 } else if (r->t == BC_RESULT_VAR) {
6289 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006290 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006291 if (s || !BC_PROG_STR(n)) goto exit;
6292 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006293 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006294 goto exit;
6295 }
6296
6297 fidx = sidx + BC_PROG_REQ_FUNCS;
6298
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006299 str = bc_program_str(sidx);
6300 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006301
6302 if (f->code.len == 0) {
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006303 bc_parse_create(&prs, fidx);
Denys Vlasenkof86e9602018-12-14 17:01:56 +01006304 s = zbc_parse_text_init(&prs, *str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006305 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006306 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006307 if (s) goto err;
6308
6309 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006310 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06006311 goto err;
6312 }
6313
6314 bc_parse_free(&prs);
6315 }
6316
6317 ip.idx = 0;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006318 ip.len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006319 ip.func = fidx;
6320
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006321 bc_vec_pop(&G.prog.results);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006322 bc_vec_push(&G.prog.exestack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006323
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006324 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006325 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006326 bc_parse_free(&prs);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006327 f = bc_program_func(fidx);
Denys Vlasenko7d628012018-12-04 21:46:47 +01006328 bc_vec_pop_all(&f->code);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006329 exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006330 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006331 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006332}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006333#define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006334#endif // ENABLE_DC
6335
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006336static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006337{
Gavin Howard01055ba2018-11-03 11:00:21 -06006338 BcResult res;
6339 unsigned long val;
6340
6341 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6342 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006343 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006344 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006345 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006346 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006347 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006348
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006349 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006350 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006351 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006352}
6353
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006354static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006355{
Gavin Howard01055ba2018-11-03 11:00:21 -06006356 BcResult r, *ptr;
6357 BcNum *num;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006358 BcInstPtr *ip = bc_vec_top(&G.prog.exestack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006359 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006360 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006361
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006362 dbg_exec("func:%zd bytes:%zd ip:%zd", ip->func, func->code.len, ip->idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006363 while (ip->idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006364 BcStatus s = BC_STATUS_SUCCESS;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006365 char inst = code[ip->idx++];
Gavin Howard01055ba2018-11-03 11:00:21 -06006366
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006367 dbg_exec("inst at %zd:%d", ip->idx - 1, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006368 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006369#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006370 case BC_INST_JUMP_ZERO: {
6371 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006372 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006373 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006374 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006375 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006376 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006377 if (!zero) {
6378 bc_program_index(code, &ip->idx);
6379 break;
6380 }
6381 // else: fall through
6382 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006383 case BC_INST_JUMP: {
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006384 size_t idx = bc_program_index(code, &ip->idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006385 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006386 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006387 ip->idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006388 break;
6389 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006390 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006391 dbg_exec("BC_INST_CALL:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006392 s = zbc_program_call(code, &ip->idx);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006393 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006394 case BC_INST_INC_PRE:
6395 case BC_INST_DEC_PRE:
6396 case BC_INST_INC_POST:
6397 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006398 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006399 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006400 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006401 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006402 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006403 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006404 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006405 case BC_INST_RET:
6406 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006407 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006408 s = zbc_program_return(inst);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006409 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006410 case BC_INST_BOOL_OR:
6411 case BC_INST_BOOL_AND:
6412#endif // ENABLE_BC
6413 case BC_INST_REL_EQ:
6414 case BC_INST_REL_LE:
6415 case BC_INST_REL_GE:
6416 case BC_INST_REL_NE:
6417 case BC_INST_REL_LT:
6418 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006419 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006420 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006421 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006422 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006423 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006424 s = zbc_program_read();
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006425 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006426 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006427 dbg_exec("BC_INST_VAR:");
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006428 s = zbc_program_pushVar(code, &ip->idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006429 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006430 case BC_INST_ARRAY_ELEM:
6431 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006432 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006433 s = zbc_program_pushArray(code, &ip->idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006434 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006435 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006436 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006437 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006438 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006439 case BC_INST_IBASE:
6440 case BC_INST_SCALE:
6441 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006442 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006443 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006444 case BC_INST_SCALE_FUNC:
6445 case BC_INST_LENGTH:
6446 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006447 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006448 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006449 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006450 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006451 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006452 r.t = BC_RESULT_CONSTANT;
6453 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006454 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006455 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006456 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006457 dbg_exec("BC_INST_POP:");
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006458 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006459 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006460 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006461 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006462 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006463 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006464 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006465 bc_vec_pop(&G.prog.exestack);
Denys Vlasenko085b4202018-12-19 14:02:59 +01006466 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006467 case BC_INST_PRINT:
6468 case BC_INST_PRINT_POP:
6469 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006470 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006471 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006472 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006473 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006474 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006475 r.t = BC_RESULT_STR;
6476 r.d.id.idx = bc_program_index(code, &ip->idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006477 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006478 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006479 case BC_INST_POWER:
6480 case BC_INST_MULTIPLY:
6481 case BC_INST_DIVIDE:
6482 case BC_INST_MODULUS:
6483 case BC_INST_PLUS:
6484 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006485 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006486 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006487 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006488 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006489 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006490 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006491 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006492 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006493 if (!bc_num_cmp(num, &G.prog.zero))
6494 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006495 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006496 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006497 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006498 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006499 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006500 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006501 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006502#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006503 case BC_INST_ASSIGN_POWER:
6504 case BC_INST_ASSIGN_MULTIPLY:
6505 case BC_INST_ASSIGN_DIVIDE:
6506 case BC_INST_ASSIGN_MODULUS:
6507 case BC_INST_ASSIGN_PLUS:
6508 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006509#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006510 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006511 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006512 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006513 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006514#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006515 case BC_INST_MODEXP:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006516 s = zbc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006517 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006518 case BC_INST_DIVMOD:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006519 s = zbc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006520 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006521 case BC_INST_EXECUTE:
6522 case BC_INST_EXEC_COND:
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006523 s = zbc_program_execStr(code, &ip->idx, inst == BC_INST_EXEC_COND);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006524 goto read_updated_ip;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006525 case BC_INST_PRINT_STACK: {
6526 size_t idx;
6527 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006528 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006529 if (s) break;
6530 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006531 break;
6532 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006533 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006534 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006535 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006536 case BC_INST_STACK_LEN:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006537 bc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006538 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006539 case BC_INST_DUPLICATE:
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006540 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006541 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006542 ptr = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006543 bc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006544 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006545 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006546 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006547 BcResult *ptr2;
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006548 if (!STACK_HAS_MORE_THAN(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006549 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006550 ptr = bc_vec_item_rev(&G.prog.results, 0);
6551 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006552 memcpy(&r, ptr, sizeof(BcResult));
6553 memcpy(ptr, ptr2, sizeof(BcResult));
6554 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006555 break;
6556 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006557 case BC_INST_ASCIIFY:
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006558 s = zbc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006559 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006560 case BC_INST_PRINT_STREAM:
Denys Vlasenko29301232018-12-11 15:29:32 +01006561 s = zbc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006562 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006563 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006564 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006565 bool copy = inst == BC_INST_LOAD;
Denys Vlasenkob402ff82018-12-11 15:45:15 +01006566 s = zbc_program_pushVar(code, &ip->idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006567 break;
6568 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006569 case BC_INST_PUSH_TO_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006570 char *name = bc_program_name(code, &ip->idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006571 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006572 free(name);
6573 break;
6574 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006575 case BC_INST_QUIT:
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006576 dbg_exec("BC_INST_QUIT:");
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006577 if (G.prog.exestack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006578 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006579 bc_vec_npop(&G.prog.exestack, 2);
Denys Vlasenko085b4202018-12-19 14:02:59 +01006580 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006581 case BC_INST_NQUIT:
Denys Vlasenko29301232018-12-11 15:29:32 +01006582 s = zbc_program_nquit();
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006583 //goto read_updated_ip; - just fall through to it
Gavin Howard01055ba2018-11-03 11:00:21 -06006584#endif // ENABLE_DC
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006585 read_updated_ip:
6586 // Instruction stack has changed, read new pointers
6587 ip = bc_vec_top(&G.prog.exestack);
6588 func = bc_program_func(ip->func);
6589 code = func->code.v;
6590 dbg_exec("func:%zd bytes:%zd ip:%zd", ip->func, func->code.len, ip->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006591 }
6592
Denys Vlasenkod38af482018-12-04 19:11:02 +01006593 if (s || G_interrupt) {
6594 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006595 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006596 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006597
Denys Vlasenkoc5774a32018-12-17 01:22:53 +01006598 fflush_and_check();
6599
Gavin Howard01055ba2018-11-03 11:00:21 -06006600 }
6601
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006602 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006603}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006604#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006605
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006606static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006607{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006608 char *lenv;
6609 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006610
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006611 lenv = getenv(var);
6612 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006613 if (!lenv) return len;
6614
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006615 len = bb_strtou(lenv, NULL, 10) - 1;
6616 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006617 len = BC_NUM_PRINT_WIDTH;
6618
6619 return len;
6620}
6621
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006622static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006623{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006624 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006625
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006626 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6627 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006628 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006629
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006630 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006631 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoec603182018-12-17 10:34:02 +01006632 s = zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006633 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006634 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006635 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006636 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006637 break;
6638 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006639 }
6640
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006641 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006642 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006643}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006644#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006645
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006646static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
Gavin Howard01055ba2018-11-03 11:00:21 -06006647{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006648 // So far bc/dc have no way to include a file from another file,
6649 // therefore we know G.prog.file == NULL on entry
6650 //const char *sv_file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006651 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006652
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006653 G.prog.file = filename;
6654 G.input_fp = fp;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006655 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06006656
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006657 do {
6658 s = zbc_vm_process("");
6659 // We do not stop looping on errors here if reading stdin.
6660 // Example: start interactive bc and enter "return".
6661 // It should say "'return' not in a function"
6662 // but should not exit.
6663 } while (G.input_fp == stdin);
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006664 G.prog.file = NULL;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006665 RETURN_STATUS(s);
6666}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006667#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006668
6669static BC_STATUS zbc_vm_file(const char *file)
6670{
6671 BcStatus s;
6672 FILE *fp;
6673
6674 fp = xfopen_for_read(file);
6675 s = zbc_vm_execute_FILE(fp, file);
6676 fclose(fp);
6677
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006678 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006679}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006680#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006681
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006682#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01006683static void bc_vm_info(void)
6684{
6685 printf("%s "BB_VER"\n"
6686 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
6687 , applet_name);
6688}
6689
6690static void bc_args(char **argv)
6691{
6692 unsigned opts;
6693 int i;
6694
6695 GETOPT_RESET();
6696#if ENABLE_FEATURE_BC_LONG_OPTIONS
6697 opts = option_mask32 |= getopt32long(argv, "wvsqli",
6698 "warn\0" No_argument "w"
6699 "version\0" No_argument "v"
6700 "standard\0" No_argument "s"
6701 "quiet\0" No_argument "q"
6702 "mathlib\0" No_argument "l"
6703 "interactive\0" No_argument "i"
6704 );
6705#else
6706 opts = option_mask32 |= getopt32(argv, "wvsqli");
6707#endif
6708 if (getenv("POSIXLY_CORRECT"))
6709 option_mask32 |= BC_FLAG_S;
6710
6711 if (opts & BC_FLAG_V) {
6712 bc_vm_info();
6713 exit(0);
6714 }
6715
6716 for (i = optind; argv[i]; ++i)
6717 bc_vec_push(&G.files, argv + i);
6718}
6719
6720static void bc_vm_envArgs(void)
6721{
6722 BcVec v;
6723 char *buf;
6724 char *env_args = getenv("BC_ENV_ARGS");
6725
6726 if (!env_args) return;
6727
6728 G.env_args = xstrdup(env_args);
6729 buf = G.env_args;
6730
6731 bc_vec_init(&v, sizeof(char *), NULL);
6732
6733 while (*(buf = skip_whitespace(buf)) != '\0') {
6734 bc_vec_push(&v, &buf);
6735 buf = skip_non_whitespace(buf);
6736 if (!*buf)
6737 break;
6738 *buf++ = '\0';
6739 }
6740
6741 // NULL terminate, and pass argv[] so that first arg is argv[1]
6742 if (sizeof(int) == sizeof(char*)) {
6743 bc_vec_push(&v, &const_int_0);
6744 } else {
6745 static char *const nullptr = NULL;
6746 bc_vec_push(&v, &nullptr);
6747 }
6748 bc_args(((char **)v.v) - 1);
6749
6750 bc_vec_free(&v);
6751}
6752
6753static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006754 "scale=20"
6755"\n" "define e(x){"
6756"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006757////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
6758//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
6759//e(-.998896): GNU:.36828580434569428695
6760// above code:.36828580434569428696
6761// actual value:.3682858043456942869594...
6762// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006763"\n" "b=ibase"
6764"\n" "ibase=A"
6765"\n" "if(x<0){"
6766"\n" "n=1"
6767"\n" "x=-x"
6768"\n" "}"
6769"\n" "s=scale"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006770"\n" "r=6+s+.44*x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006771"\n" "scale=scale(x)+1"
6772"\n" "while(x>1){"
6773"\n" "d+=1"
6774"\n" "x/=2"
6775"\n" "scale+=1"
6776"\n" "}"
6777"\n" "scale=r"
6778"\n" "r=x+1"
6779"\n" "p=x"
6780"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006781"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006782"\n" "p*=x"
6783"\n" "f*=i"
6784"\n" "v=p/f"
6785"\n" "r+=v"
6786"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006787"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006788"\n" "scale=s"
6789"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006790"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006791"\n" "return(r/1)"
6792"\n" "}"
6793"\n" "define l(x){"
6794"\n" "auto b,s,r,p,a,q,i,v"
6795"\n" "b=ibase"
6796"\n" "ibase=A"
6797"\n" "if(x<=0){"
6798"\n" "r=(1-10^scale)/1"
6799"\n" "ibase=b"
6800"\n" "return(r)"
6801"\n" "}"
6802"\n" "s=scale"
6803"\n" "scale+=6"
6804"\n" "p=2"
6805"\n" "while(x>=2){"
6806"\n" "p*=2"
6807"\n" "x=sqrt(x)"
6808"\n" "}"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006809"\n" "while(x<=.5){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006810"\n" "p*=2"
6811"\n" "x=sqrt(x)"
6812"\n" "}"
6813"\n" "r=a=(x-1)/(x+1)"
6814"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006815"\n" "v=1"
6816"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006817"\n" "a*=q"
6818"\n" "v=a/i"
6819"\n" "r+=v"
6820"\n" "}"
6821"\n" "r*=p"
6822"\n" "scale=s"
6823"\n" "ibase=b"
6824"\n" "return(r/1)"
6825"\n" "}"
6826"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01006827"\n" "auto b,s,r,a,q,i"
6828"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006829"\n" "b=ibase"
6830"\n" "ibase=A"
6831"\n" "s=scale"
6832"\n" "scale=1.1*s+2"
6833"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006834"\n" "scale=0"
6835"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006836"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006837"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006838"\n" "scale=s+2"
6839"\n" "r=a=x"
6840"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006841"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006842"\n" "a*=q/(i*(i-1))"
6843"\n" "r+=a"
6844"\n" "}"
6845"\n" "scale=s"
6846"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006847"\n" "return(r/1)"
6848"\n" "}"
6849"\n" "define c(x){"
6850"\n" "auto b,s"
6851"\n" "b=ibase"
6852"\n" "ibase=A"
6853"\n" "s=scale"
6854"\n" "scale*=1.2"
6855"\n" "x=s(2*a(1)+x)"
6856"\n" "scale=s"
6857"\n" "ibase=b"
6858"\n" "return(x/1)"
6859"\n" "}"
6860"\n" "define a(x){"
6861"\n" "auto b,s,r,n,a,m,t,f,i,u"
6862"\n" "b=ibase"
6863"\n" "ibase=A"
6864"\n" "n=1"
6865"\n" "if(x<0){"
6866"\n" "n=-1"
6867"\n" "x=-x"
6868"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006869"\n" "if(scale<65){"
6870"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
6871"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006872"\n" "}"
6873"\n" "s=scale"
6874"\n" "if(x>.2){"
6875"\n" "scale+=5"
6876"\n" "a=a(.2)"
6877"\n" "}"
6878"\n" "scale=s+3"
6879"\n" "while(x>.2){"
6880"\n" "m+=1"
6881"\n" "x=(x-.2)/(1+.2*x)"
6882"\n" "}"
6883"\n" "r=u=x"
6884"\n" "f=-x*x"
6885"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006886"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006887"\n" "u*=f"
6888"\n" "t=u/i"
6889"\n" "r+=t"
6890"\n" "}"
6891"\n" "scale=s"
6892"\n" "ibase=b"
6893"\n" "return((m*a+r)/n)"
6894"\n" "}"
6895"\n" "define j(n,x){"
6896"\n" "auto b,s,o,a,i,v,f"
6897"\n" "b=ibase"
6898"\n" "ibase=A"
6899"\n" "s=scale"
6900"\n" "scale=0"
6901"\n" "n/=1"
6902"\n" "if(n<0){"
6903"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006904"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006905"\n" "}"
6906"\n" "a=1"
6907"\n" "for(i=2;i<=n;++i)a*=i"
6908"\n" "scale=1.5*s"
6909"\n" "a=(x^n)/2^n/a"
6910"\n" "r=v=1"
6911"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01006912"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006913"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006914"\n" "v=v*f/i/(n+i)"
6915"\n" "r+=v"
6916"\n" "}"
6917"\n" "scale=s"
6918"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006919"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006920"\n" "return(a*r/1)"
6921"\n" "}"
6922};
6923#endif // ENABLE_BC
6924
Denys Vlasenko19f11072018-12-12 22:48:19 +01006925static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006926{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006927 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006928 size_t i;
6929
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006930#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01006931 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006932 // We know that internal library is not buggy,
6933 // thus error checking is normally disabled.
6934# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006935 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006936 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01006937 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006938 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006939#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006940
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006941 s = BC_STATUS_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006942 for (i = 0; !s && i < G.files.len; ++i)
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006943 s = zbc_vm_file(*((char **) bc_vec_item(&G.files, i)));
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006944 if (ENABLE_FEATURE_CLEAN_UP && s && !G_ttyin) {
6945 // Debug config, non-interactive mode:
6946 // return all the way back to main.
6947 // Non-debug builds do not come here, they exit.
Denys Vlasenko19f11072018-12-12 22:48:19 +01006948 RETURN_STATUS(s);
Denys Vlasenko9b70f192018-12-04 20:51:40 +01006949 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006950
Denys Vlasenko91cde952018-12-10 20:56:08 +01006951 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006952 s = zbc_vm_execute_FILE(stdin, /*filename:*/ NULL);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01006953
Denys Vlasenko19f11072018-12-12 22:48:19 +01006954 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006955}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006956#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006957
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006958#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006959static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006960{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006961 bc_vec_free(&G.prog.fns);
6962 bc_vec_free(&G.prog.fn_map);
6963 bc_vec_free(&G.prog.vars);
6964 bc_vec_free(&G.prog.var_map);
6965 bc_vec_free(&G.prog.arrs);
6966 bc_vec_free(&G.prog.arr_map);
6967 bc_vec_free(&G.prog.strs);
6968 bc_vec_free(&G.prog.consts);
6969 bc_vec_free(&G.prog.results);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006970 bc_vec_free(&G.prog.exestack);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006971 bc_num_free(&G.prog.last);
6972 bc_num_free(&G.prog.zero);
6973 bc_num_free(&G.prog.one);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006974 bc_vec_free(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006975}
6976
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006977static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006978{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006979 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006980 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006981 bc_parse_free(&G.prs);
6982 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06006983}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006984#endif
6985
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006986static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006987{
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006988 BcInstPtr ip;
6989
Denys Vlasenko82269122018-12-14 16:30:56 +01006990 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006991 memset(&ip, 0, sizeof(BcInstPtr));
6992
Denys Vlasenko82269122018-12-14 16:30:56 +01006993 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006994 G.prog.ib_t = 10;
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006995 G.prog.ob_t = 10;
6996
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006997 bc_num_init_DEF_SIZE(&G.prog.last);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006998 //bc_num_zero(&G.prog.last); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01006999
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007000 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007001 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007002
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007003 bc_num_init_DEF_SIZE(&G.prog.one);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007004 bc_num_one(&G.prog.one);
7005
7006 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007007 bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007008
Denys Vlasenko684d4412018-12-19 14:57:23 +01007009//TODO: with "", dc_strings.dc enters infinite loop, ??!
7010 bc_program_addFunc(xstrdup("(m)")); // func #0: main
7011 bc_program_addFunc(xstrdup("(r)")); // func #1: for read()
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007012
7013 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007014 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007015
7016 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007017 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007018
7019 bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);
7020 bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);
7021 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01007022 bc_vec_init(&G.prog.exestack, sizeof(BcInstPtr), NULL);
7023 bc_vec_push(&G.prog.exestack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007024
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007025 bc_char_vec_init(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007026}
Gavin Howard01055ba2018-11-03 11:00:21 -06007027
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007028static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007029{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007030#if ENABLE_FEATURE_EDITING
7031 G.line_input_state = new_line_input_t(DO_HISTORY);
7032#endif
7033 G.prog.len = bc_vm_envLen(env_len);
7034
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007035 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007036 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007037 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007038 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007039
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007040//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7041//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007042 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007043#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007044 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007045 // With SA_RESTART, most system calls will restart
7046 // (IOW: they won't fail with EINTR).
7047 // In particular, this means ^C won't cause
7048 // stdout to get into "error state" if SIGINT hits
7049 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007050 //
7051 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007052 // will only be handled after [Enter] since read()
7053 // from stdin is not interrupted by ^C either,
7054 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007055 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007056 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7057
7058 // Without SA_RESTART, this exhibits a bug:
7059 // "while (1) print 1" and try ^C-ing it.
7060 // Intermittently, instead of returning to input line,
7061 // you'll get "output error: Interrupted system call"
7062 // and exit.
7063 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007064#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007065 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007066 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007067 return 0; // "not a tty"
7068}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007069
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007070static BcStatus bc_vm_run(void)
7071{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007072 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007073#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007074 if (G_exiting) // it was actually "halt" or "quit"
7075 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007076 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007077# if ENABLE_FEATURE_EDITING
7078 free_line_input_t(G.line_input_state);
7079# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007080 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007081#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007082 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007083 return st;
7084}
7085
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007086#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007087int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007088int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007089{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007090 int is_tty;
7091
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007092 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007093
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007094 is_tty = bc_vm_init("BC_LINE_LENGTH");
7095
7096 bc_args(argv);
7097
7098 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7099 bc_vm_info();
7100
7101 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007102}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007103#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007104
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007105#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007106int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007107int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007108{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007109 int noscript;
7110
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007111 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007112
7113 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7114 // 1 char wider than bc from the same package.
7115 // Both default width, and xC_LINE_LENGTH=N are wider:
7116 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007117 // |1234\ |
7118 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007119 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007120 // |123\ |
7121 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007122 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007123 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007124
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007125 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7126 noscript = BC_FLAG_I;
7127 for (;;) {
7128 int n = getopt(argc, argv, "e:f:x");
7129 if (n <= 0)
7130 break;
7131 switch (n) {
7132 case 'e':
7133 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007134 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007135 if (n) return n;
7136 break;
7137 case 'f':
7138 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007139 n = zbc_vm_file(optarg);
7140 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007141 break;
7142 case 'x':
7143 option_mask32 |= DC_FLAG_X;
7144 break;
7145 default:
7146 bb_show_usage();
7147 }
7148 }
7149 argv += optind;
7150
7151 while (*argv) {
7152 noscript = 0;
7153 bc_vec_push(&G.files, argv++);
7154 }
7155
7156 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7157
7158 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007159}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007160#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007161
7162#endif // not DC_SMALL