blob: cac3cb734136671909cb3a843b02223c10c40b96 [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 Vlasenko19eee8e2018-12-21 20:29:34 +0100173// This can be left enabled for production as well:
174#define SANITY_CHECKS 1
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100175
176#if DEBUG_LEXER
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100177static uint8_t lex_indent;
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100178#define dbg_lex(...) \
179 do { \
180 fprintf(stderr, "%*s", lex_indent, ""); \
181 bb_error_msg(__VA_ARGS__); \
182 } while (0)
183#define dbg_lex_enter(...) \
184 do { \
185 dbg_lex(__VA_ARGS__); \
186 lex_indent++; \
187 } while (0)
188#define dbg_lex_done(...) \
189 do { \
190 lex_indent--; \
191 dbg_lex(__VA_ARGS__); \
192 } while (0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100193#else
Denys Vlasenko2ea53a42018-12-14 17:51:17 +0100194# define dbg_lex(...) ((void)0)
195# define dbg_lex_enter(...) ((void)0)
196# define dbg_lex_done(...) ((void)0)
Denys Vlasenko0a238142018-12-14 16:48:34 +0100197#endif
198
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +0100199#if DEBUG_COMPILE
200# define dbg_compile(...) bb_error_msg(__VA_ARGS__)
201#else
202# define dbg_compile(...) ((void)0)
203#endif
204
Denys Vlasenko99b37622018-12-15 20:06:59 +0100205#if DEBUG_EXEC
206# define dbg_exec(...) bb_error_msg(__VA_ARGS__)
207#else
208# define dbg_exec(...) ((void)0)
209#endif
210
Gavin Howard01055ba2018-11-03 11:00:21 -0600211typedef enum BcStatus {
Denys Vlasenko60cf7472018-12-04 20:05:28 +0100212 BC_STATUS_SUCCESS = 0,
213 BC_STATUS_FAILURE = 1,
Denys Vlasenkob402ff82018-12-11 15:45:15 +0100214 BC_STATUS_PARSE_EMPTY_EXP = 2, // bc_parse_expr_empty_ok() uses this
Gavin Howard01055ba2018-11-03 11:00:21 -0600215} BcStatus;
216
Gavin Howard01055ba2018-11-03 11:00:21 -0600217#define BC_VEC_INVALID_IDX ((size_t) -1)
218#define BC_VEC_START_CAP (1 << 5)
219
Denys Vlasenko5ba55f12018-12-10 15:37:14 +0100220typedef void (*BcVecFree)(void *) FAST_FUNC;
Gavin Howard01055ba2018-11-03 11:00:21 -0600221
222typedef struct BcVec {
223 char *v;
224 size_t len;
225 size_t cap;
226 size_t size;
227 BcVecFree dtor;
228} BcVec;
229
Gavin Howard01055ba2018-11-03 11:00:21 -0600230typedef signed char BcDig;
231
232typedef struct BcNum {
233 BcDig *restrict num;
234 size_t rdx;
235 size_t len;
236 size_t cap;
237 bool neg;
238} BcNum;
239
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100240#define BC_NUM_MAX_IBASE ((unsigned long) 16)
241// larger value might speed up BIGNUM calculations a bit:
242#define BC_NUM_DEF_SIZE (16)
243#define BC_NUM_PRINT_WIDTH (69)
Gavin Howard01055ba2018-11-03 11:00:21 -0600244
Denys Vlasenko2fa11b62018-12-06 12:34:39 +0100245#define BC_NUM_KARATSUBA_LEN (32)
Gavin Howard01055ba2018-11-03 11:00:21 -0600246
Gavin Howard01055ba2018-11-03 11:00:21 -0600247typedef enum BcInst {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100248#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600249 BC_INST_INC_PRE,
250 BC_INST_DEC_PRE,
251 BC_INST_INC_POST,
252 BC_INST_DEC_POST,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100253#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600254
255 BC_INST_NEG,
256
257 BC_INST_POWER,
258 BC_INST_MULTIPLY,
259 BC_INST_DIVIDE,
260 BC_INST_MODULUS,
261 BC_INST_PLUS,
262 BC_INST_MINUS,
263
264 BC_INST_REL_EQ,
265 BC_INST_REL_LE,
266 BC_INST_REL_GE,
267 BC_INST_REL_NE,
268 BC_INST_REL_LT,
269 BC_INST_REL_GT,
270
271 BC_INST_BOOL_NOT,
272 BC_INST_BOOL_OR,
273 BC_INST_BOOL_AND,
274
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100275#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600276 BC_INST_ASSIGN_POWER,
277 BC_INST_ASSIGN_MULTIPLY,
278 BC_INST_ASSIGN_DIVIDE,
279 BC_INST_ASSIGN_MODULUS,
280 BC_INST_ASSIGN_PLUS,
281 BC_INST_ASSIGN_MINUS,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100282#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600283 BC_INST_ASSIGN,
284
285 BC_INST_NUM,
286 BC_INST_VAR,
287 BC_INST_ARRAY_ELEM,
288 BC_INST_ARRAY,
289
290 BC_INST_SCALE_FUNC,
291 BC_INST_IBASE,
292 BC_INST_SCALE,
293 BC_INST_LAST,
294 BC_INST_LENGTH,
295 BC_INST_READ,
296 BC_INST_OBASE,
297 BC_INST_SQRT,
298
299 BC_INST_PRINT,
300 BC_INST_PRINT_POP,
301 BC_INST_STR,
302 BC_INST_PRINT_STR,
303
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100304#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -0600305 BC_INST_JUMP,
306 BC_INST_JUMP_ZERO,
307
308 BC_INST_CALL,
309
310 BC_INST_RET,
311 BC_INST_RET0,
312
313 BC_INST_HALT,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100314#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600315
316 BC_INST_POP,
317 BC_INST_POP_EXEC,
318
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100319#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600320 BC_INST_MODEXP,
321 BC_INST_DIVMOD,
322
323 BC_INST_EXECUTE,
324 BC_INST_EXEC_COND,
325
326 BC_INST_ASCIIFY,
327 BC_INST_PRINT_STREAM,
328
329 BC_INST_PRINT_STACK,
330 BC_INST_CLEAR_STACK,
331 BC_INST_STACK_LEN,
332 BC_INST_DUPLICATE,
333 BC_INST_SWAP,
334
335 BC_INST_LOAD,
336 BC_INST_PUSH_VAR,
337 BC_INST_PUSH_TO_VAR,
338
339 BC_INST_QUIT,
340 BC_INST_NQUIT,
341
342 BC_INST_INVALID = -1,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100343#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600344} BcInst;
345
346typedef struct BcId {
347 char *name;
348 size_t idx;
349} BcId;
350
351typedef struct BcFunc {
352 BcVec code;
Denys Vlasenko503faf92018-12-20 16:24:18 +0100353 IF_BC(BcVec labels;)
354 IF_BC(BcVec autos;)
Denys Vlasenko5d57bc42018-12-21 16:22:26 +0100355 IF_BC(BcVec strs;)
356 IF_BC(BcVec consts;)
Denys Vlasenko503faf92018-12-20 16:24:18 +0100357 IF_BC(size_t nparams;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600358} BcFunc;
359
360typedef enum BcResultType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600361 BC_RESULT_TEMP,
362
363 BC_RESULT_VAR,
364 BC_RESULT_ARRAY_ELEM,
365 BC_RESULT_ARRAY,
366
367 BC_RESULT_STR,
368
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100369 //code uses "inst - BC_INST_IBASE + BC_RESULT_IBASE" construct,
370 BC_RESULT_IBASE, // relative order should match for: BC_INST_IBASE
371 BC_RESULT_SCALE, // relative order should match for: BC_INST_SCALE
372 BC_RESULT_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600373 BC_RESULT_CONSTANT,
374 BC_RESULT_ONE,
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100375 BC_RESULT_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600376} BcResultType;
377
378typedef union BcResultData {
379 BcNum n;
380 BcVec v;
381 BcId id;
382} BcResultData;
383
384typedef struct BcResult {
385 BcResultType t;
386 BcResultData d;
387} BcResult;
388
389typedef struct BcInstPtr {
390 size_t func;
Denys Vlasenko24e41942018-12-21 23:01:26 +0100391 size_t inst_idx;
392 IF_BC(size_t results_len_before_call;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600393} BcInstPtr;
394
Gavin Howard01055ba2018-11-03 11:00:21 -0600395// BC_LEX_NEG is not used in lexing; it is only for parsing.
396typedef enum BcLexType {
Gavin Howard01055ba2018-11-03 11:00:21 -0600397 BC_LEX_EOF,
398 BC_LEX_INVALID,
399
400 BC_LEX_OP_INC,
401 BC_LEX_OP_DEC,
402
403 BC_LEX_NEG,
404
405 BC_LEX_OP_POWER,
406 BC_LEX_OP_MULTIPLY,
407 BC_LEX_OP_DIVIDE,
408 BC_LEX_OP_MODULUS,
409 BC_LEX_OP_PLUS,
410 BC_LEX_OP_MINUS,
411
412 BC_LEX_OP_REL_EQ,
413 BC_LEX_OP_REL_LE,
414 BC_LEX_OP_REL_GE,
415 BC_LEX_OP_REL_NE,
416 BC_LEX_OP_REL_LT,
417 BC_LEX_OP_REL_GT,
418
419 BC_LEX_OP_BOOL_NOT,
420 BC_LEX_OP_BOOL_OR,
421 BC_LEX_OP_BOOL_AND,
422
423 BC_LEX_OP_ASSIGN_POWER,
424 BC_LEX_OP_ASSIGN_MULTIPLY,
425 BC_LEX_OP_ASSIGN_DIVIDE,
426 BC_LEX_OP_ASSIGN_MODULUS,
427 BC_LEX_OP_ASSIGN_PLUS,
428 BC_LEX_OP_ASSIGN_MINUS,
429 BC_LEX_OP_ASSIGN,
430
431 BC_LEX_NLINE,
432 BC_LEX_WHITESPACE,
433
434 BC_LEX_LPAREN,
435 BC_LEX_RPAREN,
436
437 BC_LEX_LBRACKET,
438 BC_LEX_COMMA,
439 BC_LEX_RBRACKET,
440
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100441 BC_LEX_LBRACE, // '{' is 0x7B, '}' is 0x7D,
Gavin Howard01055ba2018-11-03 11:00:21 -0600442 BC_LEX_SCOLON,
Denys Vlasenko9dc5d082018-12-16 18:43:51 +0100443 BC_LEX_RBRACE, // should be LBRACE+2: code uses (c - '{' + BC_LEX_LBRACE)
Gavin Howard01055ba2018-11-03 11:00:21 -0600444
445 BC_LEX_STR,
446 BC_LEX_NAME,
447 BC_LEX_NUMBER,
448
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100449 BC_LEX_KEY_1st_keyword,
450 BC_LEX_KEY_AUTO = BC_LEX_KEY_1st_keyword,
Gavin Howard01055ba2018-11-03 11:00:21 -0600451 BC_LEX_KEY_BREAK,
452 BC_LEX_KEY_CONTINUE,
453 BC_LEX_KEY_DEFINE,
454 BC_LEX_KEY_ELSE,
455 BC_LEX_KEY_FOR,
456 BC_LEX_KEY_HALT,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100457 // code uses "type - BC_LEX_KEY_IBASE + BC_INST_IBASE" construct,
458 BC_LEX_KEY_IBASE, // relative order should match for: BC_INST_IBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600459 BC_LEX_KEY_IF,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100460 BC_LEX_KEY_LAST, // relative order should match for: BC_INST_LAST
Gavin Howard01055ba2018-11-03 11:00:21 -0600461 BC_LEX_KEY_LENGTH,
462 BC_LEX_KEY_LIMITS,
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100463 BC_LEX_KEY_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600464 BC_LEX_KEY_PRINT,
465 BC_LEX_KEY_QUIT,
466 BC_LEX_KEY_READ,
467 BC_LEX_KEY_RETURN,
468 BC_LEX_KEY_SCALE,
469 BC_LEX_KEY_SQRT,
470 BC_LEX_KEY_WHILE,
471
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100472#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600473 BC_LEX_EQ_NO_REG,
474 BC_LEX_OP_MODEXP,
475 BC_LEX_OP_DIVMOD,
476
477 BC_LEX_COLON,
478 BC_LEX_ELSE,
479 BC_LEX_EXECUTE,
480 BC_LEX_PRINT_STACK,
481 BC_LEX_CLEAR_STACK,
482 BC_LEX_STACK_LEVEL,
483 BC_LEX_DUPLICATE,
484 BC_LEX_SWAP,
485 BC_LEX_POP,
486
487 BC_LEX_ASCIIFY,
488 BC_LEX_PRINT_STREAM,
489
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100490 // code uses "t - BC_LEX_STORE_IBASE + BC_INST_IBASE" construct,
491 BC_LEX_STORE_IBASE, // relative order should match for: BC_INST_IBASE
492 BC_LEX_STORE_SCALE, // relative order should match for: BC_INST_SCALE
Gavin Howard01055ba2018-11-03 11:00:21 -0600493 BC_LEX_LOAD,
494 BC_LEX_LOAD_POP,
495 BC_LEX_STORE_PUSH,
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100496 BC_LEX_STORE_OBASE, // relative order should match for: BC_INST_OBASE
Gavin Howard01055ba2018-11-03 11:00:21 -0600497 BC_LEX_PRINT_POP,
498 BC_LEX_NQUIT,
499 BC_LEX_SCALE_FACTOR,
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100500#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600501} BcLexType;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100502// must match order of BC_LEX_KEY_foo etc above
503#if ENABLE_BC
504struct BcLexKeyword {
505 char name8[8];
506};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100507#define BC_LEX_KW_ENTRY(a, b) \
508 { .name8 = a /*, .posix = b */ }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100509static const struct BcLexKeyword bc_lex_kws[20] = {
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100510 BC_LEX_KW_ENTRY("auto" , 1), // 0
511 BC_LEX_KW_ENTRY("break" , 1), // 1
512 BC_LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
513 BC_LEX_KW_ENTRY("define" , 1), // 3
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100514 BC_LEX_KW_ENTRY("else" , 0), // 4
515 BC_LEX_KW_ENTRY("for" , 1), // 5
516 BC_LEX_KW_ENTRY("halt" , 0), // 6
517 BC_LEX_KW_ENTRY("ibase" , 1), // 7
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100518 BC_LEX_KW_ENTRY("if" , 1), // 8
519 BC_LEX_KW_ENTRY("last" , 0), // 9
520 BC_LEX_KW_ENTRY("length" , 1), // 10
521 BC_LEX_KW_ENTRY("limits" , 0), // 11
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100522 BC_LEX_KW_ENTRY("obase" , 1), // 12
523 BC_LEX_KW_ENTRY("print" , 0), // 13
524 BC_LEX_KW_ENTRY("quit" , 1), // 14
525 BC_LEX_KW_ENTRY("read" , 0), // 15
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100526 BC_LEX_KW_ENTRY("return" , 1), // 16
527 BC_LEX_KW_ENTRY("scale" , 1), // 17
528 BC_LEX_KW_ENTRY("sqrt" , 1), // 18
529 BC_LEX_KW_ENTRY("while" , 1), // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100530};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100531#undef BC_LEX_KW_ENTRY
Denys Vlasenko59d4ce92018-12-17 10:42:31 +0100532#define STRING_if (bc_lex_kws[8].name8)
533#define STRING_else (bc_lex_kws[4].name8)
534#define STRING_while (bc_lex_kws[19].name8)
535#define STRING_for (bc_lex_kws[5].name8)
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100536enum {
537 POSIX_KWORD_MASK = 0
Denys Vlasenko82269122018-12-14 16:30:56 +0100538 | (1 << 0) // 0
539 | (1 << 1) // 1
540 | (0 << 2) // 2
541 | (1 << 3) // 3
542 | (0 << 4) // 4
543 | (1 << 5) // 5
544 | (0 << 6) // 6
545 | (1 << 7) // 7
546 | (1 << 8) // 8
547 | (0 << 9) // 9
548 | (1 << 10) // 10
549 | (0 << 11) // 11
550 | (1 << 12) // 12
551 | (0 << 13) // 13
552 | (1 << 14) // 14
553 | (0 << 15) // 15
554 | (1 << 16) // 16
555 | (1 << 17) // 17
556 | (1 << 18) // 18
557 | (1 << 19) // 19
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100558};
Denys Vlasenkod00d2f92018-12-06 12:59:40 +0100559#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100560
561// This is a bit array that corresponds to token types. An entry is
562// true if the token is valid in an expression, false otherwise.
563// Used to figure out when expr parsing should stop *without error message*
564// - 0 element indicates this condition. 1 means "this token is to be eaten
565// as part of the expression", token can them still be determined to be invalid
566// by later processing.
567enum {
568#define EXBITS(a,b,c,d,e,f,g,h) \
569 ((uint64_t)((a << 0)+(b << 1)+(c << 2)+(d << 3)+(e << 4)+(f << 5)+(g << 6)+(h << 7)))
570 BC_PARSE_EXPRS_BITS = 0
571 + (EXBITS(0,0,1,1,1,1,1,1) << (0*8)) // 0: eof inval ++ -- - ^ * /
572 + (EXBITS(1,1,1,1,1,1,1,1) << (1*8)) // 8: % + - == <= >= != <
573 + (EXBITS(1,1,1,1,1,1,1,1) << (2*8)) // 16: > ! || && ^= *= /= %=
574 + (EXBITS(1,1,1,0,0,1,1,0) << (3*8)) // 24: += -= = NL WS ( ) [
575 + (EXBITS(0,0,0,0,0,0,1,1) << (4*8)) // 32: , ] { ; } STR NAME NUM
576 + (EXBITS(0,0,0,0,0,0,0,1) << (5*8)) // 40: auto break cont define else for halt ibase
577 + (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?
578 + (EXBITS(0,1,1,0,0,0,0,0) << (7*8)) // 56: return scale sqrt while
579#undef EXBITS
580};
581static ALWAYS_INLINE long bc_parse_exprs(unsigned i)
582{
583#if ULONG_MAX > 0xffffffff
584 // 64-bit version (will not work correctly for 32-bit longs!)
585 return BC_PARSE_EXPRS_BITS & (1UL << i);
586#else
587 // 32-bit version
588 unsigned long m = (uint32_t)BC_PARSE_EXPRS_BITS;
589 if (i >= 32) {
590 m = (uint32_t)(BC_PARSE_EXPRS_BITS >> 32);
591 i &= 31;
592 }
593 return m & (1UL << i);
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +0100594#endif
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +0100595}
596
597// This is an array of data for operators that correspond to
598// [BC_LEX_OP_INC...BC_LEX_OP_ASSIGN] token types.
599static const uint8_t bc_parse_ops[] = {
600#define OP(p,l) ((int)(l) * 0x10 + (p))
601 OP(0, false), OP( 0, false ), // inc dec
602 OP(1, false), // neg
603 OP(2, false), // pow
604 OP(3, true ), OP( 3, true ), OP( 3, true ), // mul div mod
605 OP(4, true ), OP( 4, true ), // + -
606 OP(6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), OP( 6, true ), // == <= >= != < >
607 OP(1, false), // not
608 OP(7, true ), OP( 7, true ), // or and
609 OP(5, false), OP( 5, false ), OP( 5, false ), OP( 5, false ), OP( 5, false ), // ^= *= /= %= +=
610 OP(5, false), OP( 5, false ), // -= =
611#undef OP
612};
613#define bc_parse_op_PREC(i) (bc_parse_ops[i] & 0x0f)
614#define bc_parse_op_LEFT(i) (bc_parse_ops[i] & 0x10)
615#endif // ENABLE_BC
616
617#if ENABLE_DC
618static const //BcInst - should be this type. Using signed narrow type since BC_INST_INVALID is -1
619int8_t
620dc_parse_insts[] = {
621 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
622 BC_INST_INVALID, BC_INST_POWER, BC_INST_MULTIPLY, BC_INST_DIVIDE,
623 BC_INST_MODULUS, BC_INST_PLUS, BC_INST_MINUS,
624 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
625 BC_INST_INVALID, BC_INST_INVALID,
626 BC_INST_BOOL_NOT, BC_INST_INVALID, BC_INST_INVALID,
627 BC_INST_INVALID, BC_INST_INVALID, 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_REL_GT, BC_INST_INVALID,
630 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_REL_GE,
631 BC_INST_INVALID, BC_INST_INVALID,
632 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
633 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
634 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_IBASE,
635 BC_INST_INVALID, BC_INST_INVALID, BC_INST_LENGTH, BC_INST_INVALID,
636 BC_INST_OBASE, BC_INST_PRINT, BC_INST_QUIT, BC_INST_INVALID,
637 BC_INST_INVALID, BC_INST_SCALE, BC_INST_SQRT, BC_INST_INVALID,
638 BC_INST_REL_EQ, BC_INST_MODEXP, BC_INST_DIVMOD, BC_INST_INVALID,
639 BC_INST_INVALID, BC_INST_EXECUTE, BC_INST_PRINT_STACK, BC_INST_CLEAR_STACK,
640 BC_INST_STACK_LEN, BC_INST_DUPLICATE, BC_INST_SWAP, BC_INST_POP,
641 BC_INST_ASCIIFY, BC_INST_PRINT_STREAM, BC_INST_INVALID, BC_INST_INVALID,
642 BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID, BC_INST_INVALID,
643 BC_INST_PRINT, BC_INST_NQUIT, BC_INST_SCALE_FUNC,
644};
645#endif // ENABLE_DC
646
Gavin Howard01055ba2018-11-03 11:00:21 -0600647typedef struct BcLex {
Gavin Howard01055ba2018-11-03 11:00:21 -0600648 const char *buf;
649 size_t i;
650 size_t line;
Gavin Howard01055ba2018-11-03 11:00:21 -0600651 size_t len;
652 bool newline;
Gavin Howard01055ba2018-11-03 11:00:21 -0600653 struct {
654 BcLexType t;
655 BcLexType last;
656 BcVec v;
657 } t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600658} BcLex;
659
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100660#define BC_PARSE_STREND (0xff)
Gavin Howard01055ba2018-11-03 11:00:21 -0600661
Denys Vlasenko4796a1d2018-12-19 12:47:45 +0100662#define BC_PARSE_REL (1 << 0)
663#define BC_PARSE_PRINT (1 << 1)
664#define BC_PARSE_NOCALL (1 << 2)
665#define BC_PARSE_NOREAD (1 << 3)
666#define BC_PARSE_ARRAY (1 << 4)
Gavin Howard01055ba2018-11-03 11:00:21 -0600667
Gavin Howard01055ba2018-11-03 11:00:21 -0600668typedef struct BcParse {
Gavin Howard01055ba2018-11-03 11:00:21 -0600669 BcLex l;
670
Denys Vlasenko503faf92018-12-20 16:24:18 +0100671 IF_BC(BcVec exits;)
672 IF_BC(BcVec conds;)
673 IF_BC(BcVec ops;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600674
Gavin Howard01055ba2018-11-03 11:00:21 -0600675 BcFunc *func;
676 size_t fidx;
677
Denys Vlasenko503faf92018-12-20 16:24:18 +0100678 IF_BC(size_t in_funcdef;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600679} BcParse;
680
Gavin Howard01055ba2018-11-03 11:00:21 -0600681typedef struct BcProgram {
Gavin Howard01055ba2018-11-03 11:00:21 -0600682 size_t len;
Denys Vlasenko503faf92018-12-20 16:24:18 +0100683 size_t nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -0600684
Denys Vlasenko503faf92018-12-20 16:24:18 +0100685 size_t scale;
Gavin Howard01055ba2018-11-03 11:00:21 -0600686 size_t ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600687 size_t ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -0600688
Gavin Howard01055ba2018-11-03 11:00:21 -0600689 BcVec results;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +0100690 BcVec exestack;
Gavin Howard01055ba2018-11-03 11:00:21 -0600691
692 BcVec fns;
Denys Vlasenko44a99ca2018-12-20 20:34:09 +0100693 IF_BC(BcVec fn_map;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600694
695 BcVec vars;
696 BcVec var_map;
697
698 BcVec arrs;
699 BcVec arr_map;
700
Denys Vlasenko5d57bc42018-12-21 16:22:26 +0100701 IF_DC(BcVec strs;)
702 IF_DC(BcVec consts;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600703
704 const char *file;
705
Gavin Howard01055ba2018-11-03 11:00:21 -0600706 BcNum zero;
Denys Vlasenko503faf92018-12-20 16:24:18 +0100707 IF_BC(BcNum one;)
708 IF_BC(BcNum last;)
Gavin Howard01055ba2018-11-03 11:00:21 -0600709} BcProgram;
710
Gavin Howard01055ba2018-11-03 11:00:21 -0600711#define BC_PROG_MAIN (0)
712#define BC_PROG_READ (1)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100713#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -0600714#define BC_PROG_REQ_FUNCS (2)
Denys Vlasenkoef869ec2018-12-02 18:49:16 +0100715#endif
Gavin Howard01055ba2018-11-03 11:00:21 -0600716
717#define BC_PROG_STR(n) (!(n)->num && !(n)->cap)
718#define BC_PROG_NUM(r, n) \
719 ((r)->t != BC_RESULT_ARRAY && (r)->t != BC_RESULT_STR && !BC_PROG_STR(n))
720
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100721#define BC_FLAG_W (1 << 0)
722#define BC_FLAG_V (1 << 1)
723#define BC_FLAG_S (1 << 2)
724#define BC_FLAG_Q (1 << 3)
725#define BC_FLAG_L (1 << 4)
726#define BC_FLAG_I (1 << 5)
727#define DC_FLAG_X (1 << 6)
Gavin Howard01055ba2018-11-03 11:00:21 -0600728
729#define BC_MAX(a, b) ((a) > (b) ? (a) : (b))
730#define BC_MIN(a, b) ((a) < (b) ? (a) : (b))
731
Denys Vlasenko64074a12018-12-07 15:50:14 +0100732#define BC_MAX_OBASE ((unsigned) 999)
733#define BC_MAX_DIM ((unsigned) INT_MAX)
734#define BC_MAX_SCALE ((unsigned) UINT_MAX)
735#define BC_MAX_STRING ((unsigned) UINT_MAX - 1)
736#define BC_MAX_NUM BC_MAX_STRING
737// Unused apart from "limits" message. Just show a "biggish number" there.
738//#define BC_MAX_NAME BC_MAX_STRING
739//#define BC_MAX_EXP ((unsigned long) LONG_MAX)
740//#define BC_MAX_VARS ((unsigned long) SIZE_MAX - 1)
741#define BC_MAX_NAME_STR "999999999"
742#define BC_MAX_EXP_STR "999999999"
743#define BC_MAX_VARS_STR "999999999"
744
745#define BC_MAX_OBASE_STR "999"
746
747#if INT_MAX == 2147483647
748# define BC_MAX_DIM_STR "2147483647"
749#elif INT_MAX == 9223372036854775807
750# define BC_MAX_DIM_STR "9223372036854775807"
751#else
752# error Strange INT_MAX
753#endif
754
755#if UINT_MAX == 4294967295
756# define BC_MAX_SCALE_STR "4294967295"
757# define BC_MAX_STRING_STR "4294967294"
758#elif UINT_MAX == 18446744073709551615
759# define BC_MAX_SCALE_STR "18446744073709551615"
760# define BC_MAX_STRING_STR "18446744073709551614"
761#else
762# error Strange UINT_MAX
763#endif
764#define BC_MAX_NUM_STR BC_MAX_STRING_STR
Gavin Howard01055ba2018-11-03 11:00:21 -0600765
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100766struct globals {
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100767 IF_FEATURE_BC_SIGNALS(smallint ttyin;)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100768 IF_FEATURE_CLEAN_UP(smallint exiting;)
Denys Vlasenko69171dc2018-12-12 00:29:24 +0100769 smallint in_read;
Gavin Howard01055ba2018-11-03 11:00:21 -0600770
771 BcParse prs;
772 BcProgram prog;
773
Denys Vlasenko5318f812018-12-05 17:48:01 +0100774 // For error messages. Can be set to current parsed line,
775 // or [TODO] to current executing line (can be before last parsed one)
776 unsigned err_line;
777
Gavin Howard01055ba2018-11-03 11:00:21 -0600778 BcVec files;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +0100779 BcVec input_buffer;
780 FILE *input_fp;
Gavin Howard01055ba2018-11-03 11:00:21 -0600781
782 char *env_args;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100783
784#if ENABLE_FEATURE_EDITING
785 line_input_t *line_input_state;
786#endif
Denys Vlasenko6d9146a2018-12-02 15:48:37 +0100787} FIX_ALIASING;
788#define G (*ptr_to_globals)
789#define INIT_G() do { \
790 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
791} while (0)
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100792#define FREE_G() do { \
793 FREE_PTR_TO_GLOBALS(); \
794} while (0)
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100795#define G_posix (ENABLE_BC && (option_mask32 & BC_FLAG_S))
796#define G_warn (ENABLE_BC && (option_mask32 & BC_FLAG_W))
Denys Vlasenko6d0be102018-12-06 18:41:59 +0100797#define G_exreg (ENABLE_DC && (option_mask32 & DC_FLAG_X))
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100798#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100799# define G_interrupt bb_got_signal
800# define G_ttyin G.ttyin
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100801#else
Denys Vlasenkob9c321d2018-12-07 12:41:42 +0100802# define G_interrupt 0
803# define G_ttyin 0
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100804#endif
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100805#if ENABLE_FEATURE_CLEAN_UP
806# define G_exiting G.exiting
807#else
808# define G_exiting 0
809#endif
Denys Vlasenko00d77792018-11-30 23:13:42 +0100810#define IS_BC (ENABLE_BC && (!ENABLE_DC || applet_name[0] == 'b'))
Denys Vlasenko40534bb2018-12-13 16:59:24 +0100811#define IS_DC (ENABLE_DC && (!ENABLE_BC || applet_name[0] != 'b'))
Denys Vlasenko00d77792018-11-30 23:13:42 +0100812
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100813// In configurations where errors abort instead of propagating error
814// return code up the call chain, functions returning BC_STATUS
815// actually don't return anything, they always succeed and return "void".
816// A macro wrapper is provided, which makes this statement work:
817// s = zbc_func(...)
818// and makes it visible to the compiler that s is always zero,
819// allowing compiler to optimize dead code after the statement.
820//
821// To make code more readable, each such function has a "z"
822// ("always returning zero") prefix, i.e. zbc_foo or zdc_foo.
823//
824#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100825# define ERRORS_ARE_FATAL 0
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100826# define ERRORFUNC /*nothing*/
Denys Vlasenkoec603182018-12-17 10:34:02 +0100827# define IF_ERROR_RETURN_POSSIBLE(a) a
828# define BC_STATUS BcStatus
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100829# define RETURN_STATUS(v) return (v)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100830# define COMMA_SUCCESS /*nothing*/
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100831#else
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100832# define ERRORS_ARE_FATAL 1
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100833# define ERRORFUNC NORETURN
Denys Vlasenkoec603182018-12-17 10:34:02 +0100834# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
835# define BC_STATUS void
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100836# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
Denys Vlasenkoec603182018-12-17 10:34:02 +0100837# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100838#endif
839
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +0100840#define STACK_HAS_MORE_THAN(s, n) ((s)->len > ((size_t)(n)))
841#define STACK_HAS_EQUAL_OR_MORE_THAN(s, n) ((s)->len >= ((size_t)(n)))
842
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100843#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
844#define BC_NUM_ONE(n) ((n)->len == 1 && (n)->rdx == 0 && (n)->num[0] == 1)
845#define BC_NUM_INT(n) ((n)->len - (n)->rdx)
846//#define BC_NUM_AREQ(a, b) (BC_MAX((a)->rdx, (b)->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1)
847static /*ALWAYS_INLINE*/ size_t BC_NUM_AREQ(BcNum *a, BcNum *b)
848{
849 return BC_MAX(a->rdx, b->rdx) + BC_MAX(BC_NUM_INT(a), BC_NUM_INT(b)) + 1;
850}
851//#define BC_NUM_MREQ(a, b, scale) (BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX((scale), (a)->rdx + (b)->rdx) + 1)
852static /*ALWAYS_INLINE*/ size_t BC_NUM_MREQ(BcNum *a, BcNum *b, size_t scale)
853{
854 return BC_NUM_INT(a) + BC_NUM_INT(b) + BC_MAX(scale, a->rdx + b->rdx) + 1;
855}
856
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100857typedef void (*BcNumDigitOp)(size_t, size_t, bool) FAST_FUNC;
858
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100859typedef BC_STATUS (*BcNumBinaryOp)(BcNum *, BcNum *, BcNum *, size_t) FAST_FUNC;
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100860
Denys Vlasenko7f4daa42018-12-11 19:04:44 +0100861static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
862 BcNumBinaryOp op, size_t req);
863static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
864static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
865static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
866static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
867static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
868static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale);
869
870static FAST_FUNC BC_STATUS zbc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale)
871{
872 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_a : zbc_num_s;
873 (void) scale;
874 RETURN_STATUS(zbc_num_binary(a, b, c, false, op, BC_NUM_AREQ(a, b)));
875}
876
877static FAST_FUNC BC_STATUS zbc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale)
878{
879 BcNumBinaryOp op = (!a->neg == !b->neg) ? zbc_num_s : zbc_num_a;
880 (void) scale;
881 RETURN_STATUS(zbc_num_binary(a, b, c, true, op, BC_NUM_AREQ(a, b)));
882}
883
884static FAST_FUNC BC_STATUS zbc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale)
885{
886 size_t req = BC_NUM_MREQ(a, b, scale);
887 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_m, req));
888}
889
890static FAST_FUNC BC_STATUS zbc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale)
891{
892 size_t req = BC_NUM_MREQ(a, b, scale);
893 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_d, req));
894}
895
896static FAST_FUNC BC_STATUS zbc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale)
897{
898 size_t req = BC_NUM_MREQ(a, b, scale);
899 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_rem, req));
900}
901
902static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale)
903{
904 RETURN_STATUS(zbc_num_binary(a, b, c, scale, zbc_num_p, a->len * b->len + 1));
905}
Denys Vlasenkoc2d15df2018-12-11 17:56:09 +0100906
Denys Vlasenko1aeacef2018-12-11 19:12:13 +0100907static const BcNumBinaryOp zbc_program_ops[] = {
908 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 -0600909};
Denys Vlasenkoec603182018-12-17 10:34:02 +0100910#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
911#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
912#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
913#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
914#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
915#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -0600916
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100917static void fflush_and_check(void)
918{
919 fflush_all();
920 if (ferror(stdout) || ferror(stderr))
921 bb_perror_msg_and_die("output error");
922}
923
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100924#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100925#define QUIT_OR_RETURN_TO_MAIN \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100926do { \
Denys Vlasenko1a6a4822018-12-06 09:20:32 +0100927 IF_FEATURE_BC_SIGNALS(G_ttyin = 0;) /* do not loop in main loop anymore */ \
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100928 G_exiting = 1; \
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100929 return BC_STATUS_FAILURE; \
930} while (0)
931#else
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +0100932#define QUIT_OR_RETURN_TO_MAIN quit()
Denys Vlasenkoe873ff92018-12-06 00:29:22 +0100933#endif
934
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100935static void quit(void) NORETURN;
936static void quit(void)
937{
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100938 if (ferror(stdin))
939 bb_perror_msg_and_die("input error");
940 fflush_and_check();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +0100941 dbg_exec("quit(): exiting with exitcode SUCCESS");
Denys Vlasenkod4744ad2018-12-03 14:28:51 +0100942 exit(0);
Denys Vlasenkocfdc1332018-12-03 14:02:35 +0100943}
944
Denys Vlasenko5318f812018-12-05 17:48:01 +0100945static void bc_verror_msg(const char *fmt, va_list p)
946{
Denys Vlasenko82269122018-12-14 16:30:56 +0100947 const char *sv = sv; // for compiler
Denys Vlasenko5318f812018-12-05 17:48:01 +0100948 if (G.prog.file) {
949 sv = applet_name;
950 applet_name = xasprintf("%s: %s:%u", applet_name, G.prog.file, G.err_line);
951 }
952 bb_verror_msg(fmt, p, NULL);
953 if (G.prog.file) {
954 free((char*)applet_name);
955 applet_name = sv;
956 }
957}
958
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100959static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100960{
961 va_list p;
962
963 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100964 bc_verror_msg(fmt, p);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100965 va_end(p);
Denys Vlasenko0409ad32018-12-05 16:39:22 +0100966
Denys Vlasenkoec603182018-12-17 10:34:02 +0100967 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
968 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
969 exit(1);
Denys Vlasenkoc1c24702018-12-03 16:06:02 +0100970}
971
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100972#if ENABLE_BC
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100973static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100974{
975 va_list p;
976
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100977 // Are non-POSIX constructs totally ok?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100978 if (!(option_mask32 & (BC_FLAG_S|BC_FLAG_W)))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100979 return BC_STATUS_SUCCESS; // yes
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100980
981 va_start(p, fmt);
Denys Vlasenko5318f812018-12-05 17:48:01 +0100982 bc_verror_msg(fmt, p);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100983 va_end(p);
984
985 // Do we treat non-POSIX constructs as errors?
Denys Vlasenkod70d4a02018-12-04 20:58:40 +0100986 if (!(option_mask32 & BC_FLAG_S))
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100987 return BC_STATUS_SUCCESS; // no, it's a warning
Denys Vlasenkoec603182018-12-17 10:34:02 +0100988 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
989 return BC_STATUS_FAILURE;
990 exit(1);
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100991}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +0100992#endif
Denys Vlasenko9b70f192018-12-04 20:51:40 +0100993
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +0100994// We use error functions with "return bc_error(FMT[, PARAMS])" idiom.
995// This idiom begs for tail-call optimization, but for it to work,
Denys Vlasenko95f93bd2018-12-06 10:29:12 +0100996// function must not have caller-cleaned parameters on stack.
997// Unfortunately, vararg function API does exactly that on most arches.
998// Thus, use these shims for the cases when we have no vararg PARAMS:
Denys Vlasenko86e63cd2018-12-10 19:46:53 +0100999static ERRORFUNC int bc_error(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001000{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001001 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001002}
1003static ERRORFUNC int bc_error_bad_character(char c)
1004{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001005 if (!c)
1006 IF_ERROR_RETURN_POSSIBLE(return) bc_error("NUL character");
Denys Vlasenkoec603182018-12-17 10:34:02 +01001007 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001008}
1009static ERRORFUNC int bc_error_bad_expression(void)
1010{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001011 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001012}
1013static ERRORFUNC int bc_error_bad_token(void)
1014{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001015 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001016}
1017static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1018{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001019 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001020}
1021static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1022{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001023 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
Denys Vlasenko86e63cd2018-12-10 19:46:53 +01001024}
1025static ERRORFUNC int bc_error_nested_read_call(void)
1026{
Denys Vlasenkoec603182018-12-17 10:34:02 +01001027 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001028}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001029#if ENABLE_BC
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001030static int bc_POSIX_requires(const char *msg)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001031{
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01001032 return bc_posix_error_fmt("POSIX requires %s", msg);
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001033}
Denys Vlasenko00646792018-12-05 18:12:27 +01001034static int bc_POSIX_does_not_allow(const char *msg)
1035{
1036 return bc_posix_error_fmt("%s%s", "POSIX does not allow ", msg);
1037}
1038static int bc_POSIX_does_not_allow_bool_ops_this_is_bad(const char *msg)
1039{
1040 return bc_posix_error_fmt("%s%s %s", "POSIX does not allow ", "boolean operators; the following is bad:", msg);
1041}
1042static int bc_POSIX_does_not_allow_empty_X_expression_in_for(const char *msg)
1043{
1044 return bc_posix_error_fmt("%san empty %s expression in a for loop", "POSIX does not allow ", msg);
1045}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001046#endif
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01001047
Gavin Howard01055ba2018-11-03 11:00:21 -06001048static void bc_vec_grow(BcVec *v, size_t n)
1049{
1050 size_t cap = v->cap * 2;
1051 while (cap < v->len + n) cap *= 2;
1052 v->v = xrealloc(v->v, v->size * cap);
1053 v->cap = cap;
1054}
1055
1056static void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor)
1057{
1058 v->size = esize;
1059 v->cap = BC_VEC_START_CAP;
1060 v->len = 0;
1061 v->dtor = dtor;
1062 v->v = xmalloc(esize * BC_VEC_START_CAP);
1063}
1064
Denys Vlasenko7d628012018-12-04 21:46:47 +01001065static void bc_char_vec_init(BcVec *v)
1066{
1067 bc_vec_init(v, sizeof(char), NULL);
1068}
1069
Gavin Howard01055ba2018-11-03 11:00:21 -06001070static void bc_vec_expand(BcVec *v, size_t req)
1071{
1072 if (v->cap < req) {
1073 v->v = xrealloc(v->v, v->size * req);
1074 v->cap = req;
1075 }
1076}
1077
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001078static void bc_vec_pop(BcVec *v)
1079{
1080 v->len--;
1081 if (v->dtor)
1082 v->dtor(v->v + (v->size * v->len));
1083}
Denys Vlasenko2fa11b62018-12-06 12:34:39 +01001084
Gavin Howard01055ba2018-11-03 11:00:21 -06001085static void bc_vec_npop(BcVec *v, size_t n)
1086{
1087 if (!v->dtor)
1088 v->len -= n;
1089 else {
1090 size_t len = v->len - n;
1091 while (v->len > len) v->dtor(v->v + (v->size * --v->len));
1092 }
1093}
1094
Denys Vlasenko7d628012018-12-04 21:46:47 +01001095static void bc_vec_pop_all(BcVec *v)
1096{
1097 bc_vec_npop(v, v->len);
1098}
1099
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001100static size_t bc_vec_push(BcVec *v, const void *data)
Gavin Howard01055ba2018-11-03 11:00:21 -06001101{
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001102 size_t len = v->len;
1103 if (len >= v->cap) bc_vec_grow(v, 1);
1104 memmove(v->v + (v->size * len), data, v->size);
1105 v->len++;
1106 return len;
Gavin Howard01055ba2018-11-03 11:00:21 -06001107}
1108
Denys Vlasenko1dc4de92018-12-21 23:13:48 +01001109// G.prog.results often needs "pop old operand, push result" idiom.
1110// Can do this without a few extra ops
1111static size_t bc_result_pop_and_push(const void *data)
1112{
1113 BcVec *v = &G.prog.results;
1114 char *last;
1115 size_t len = v->len - 1;
1116
1117 last = v->v + (v->size * len);
1118 if (v->dtor)
1119 v->dtor(last);
1120 memmove(last, data, v->size);
1121 return len;
1122}
1123
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001124static size_t bc_vec_pushByte(BcVec *v, char data)
Gavin Howard01055ba2018-11-03 11:00:21 -06001125{
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001126 return bc_vec_push(v, &data);
Gavin Howard01055ba2018-11-03 11:00:21 -06001127}
1128
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001129static size_t bc_vec_pushZeroByte(BcVec *v)
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001130{
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001131 //return bc_vec_pushByte(v, '\0');
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001132 // better:
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01001133 return bc_vec_push(v, &const_int_0);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001134}
1135
Gavin Howard01055ba2018-11-03 11:00:21 -06001136static void bc_vec_pushAt(BcVec *v, const void *data, size_t idx)
1137{
1138 if (idx == v->len)
1139 bc_vec_push(v, data);
1140 else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001141 char *ptr;
1142
1143 if (v->len == v->cap) bc_vec_grow(v, 1);
1144
1145 ptr = v->v + v->size * idx;
1146
1147 memmove(ptr + v->size, ptr, v->size * (v->len++ - idx));
1148 memmove(ptr, data, v->size);
1149 }
1150}
1151
1152static void bc_vec_string(BcVec *v, size_t len, const char *str)
1153{
Denys Vlasenko7d628012018-12-04 21:46:47 +01001154 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001155 bc_vec_expand(v, len + 1);
1156 memcpy(v->v, str, len);
1157 v->len = len;
1158
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001159 bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001160}
1161
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001162#if ENABLE_FEATURE_BC_SIGNALS && ENABLE_FEATURE_EDITING
Gavin Howard01055ba2018-11-03 11:00:21 -06001163static void bc_vec_concat(BcVec *v, const char *str)
1164{
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001165 size_t len, slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001166
Denys Vlasenko08c033c2018-12-05 16:55:08 +01001167 if (v->len == 0) bc_vec_pushZeroByte(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001168
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001169 slen = strlen(str);
1170 len = v->len + slen;
Gavin Howard01055ba2018-11-03 11:00:21 -06001171
Denys Vlasenko8b4cf0d2018-12-10 15:12:58 +01001172 if (v->cap < len) bc_vec_grow(v, slen);
Denys Vlasenko1ff88622018-12-06 12:06:16 +01001173 strcpy(v->v + v->len - 1, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06001174
1175 v->len = len;
1176}
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001177#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001178
1179static void *bc_vec_item(const BcVec *v, size_t idx)
1180{
1181 return v->v + v->size * idx;
1182}
1183
1184static void *bc_vec_item_rev(const BcVec *v, size_t idx)
1185{
1186 return v->v + v->size * (v->len - idx - 1);
1187}
1188
Denys Vlasenkob23ac512018-12-06 13:10:56 +01001189static void *bc_vec_top(const BcVec *v)
1190{
1191 return v->v + v->size * (v->len - 1);
1192}
1193
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001194static FAST_FUNC void bc_vec_free(void *vec)
Gavin Howard01055ba2018-11-03 11:00:21 -06001195{
1196 BcVec *v = (BcVec *) vec;
Denys Vlasenko7d628012018-12-04 21:46:47 +01001197 bc_vec_pop_all(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06001198 free(v->v);
1199}
1200
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01001201static BcFunc* bc_program_func(size_t idx)
1202{
1203 return bc_vec_item(&G.prog.fns, idx);
1204}
1205// BC_PROG_MAIN is zeroth element, so:
1206#define bc_program_func_BC_PROG_MAIN() ((BcFunc*)(G.prog.fns.v))
1207
1208#if ENABLE_BC
1209static BcFunc* bc_program_current_func(void)
1210{
1211 BcInstPtr *ip = bc_vec_top(&G.prog.exestack);
1212 BcFunc *func = bc_program_func(ip->func);
1213 return func;
1214}
1215#endif
1216
1217static char** bc_program_str(size_t idx)
1218{
1219#if ENABLE_BC
1220 if (IS_BC) {
1221 BcFunc *func = bc_program_current_func();
1222 return bc_vec_item(&func->strs, idx);
1223 }
1224#endif
1225 IF_DC(return bc_vec_item(&G.prog.strs, idx);)
1226}
1227
1228static char** bc_program_const(size_t idx)
1229{
1230#if ENABLE_BC
1231 if (IS_BC) {
1232 BcFunc *func = bc_program_current_func();
1233 return bc_vec_item(&func->consts, idx);
1234 }
1235#endif
1236 IF_DC(return bc_vec_item(&G.prog.consts, idx);)
1237}
1238
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001239static int bc_id_cmp(const void *e1, const void *e2)
1240{
1241 return strcmp(((const BcId *) e1)->name, ((const BcId *) e2)->name);
1242}
1243
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001244static FAST_FUNC void bc_id_free(void *id)
Denys Vlasenkocca79a02018-12-05 21:15:46 +01001245{
1246 free(((BcId *) id)->name);
1247}
1248
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001249static size_t bc_map_find_ge(const BcVec *v, const void *ptr)
Gavin Howard01055ba2018-11-03 11:00:21 -06001250{
1251 size_t low = 0, high = v->len;
1252
1253 while (low < high) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001254 size_t mid = (low + high) / 2;
1255 BcId *id = bc_vec_item(v, mid);
1256 int result = bc_id_cmp(ptr, id);
1257
1258 if (result == 0)
1259 return mid;
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01001260 if (result < 0)
Gavin Howard01055ba2018-11-03 11:00:21 -06001261 high = mid;
1262 else
1263 low = mid + 1;
1264 }
1265
1266 return low;
1267}
1268
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001269static int bc_map_insert(BcVec *v, const void *ptr, size_t *i)
Gavin Howard01055ba2018-11-03 11:00:21 -06001270{
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001271 size_t n = *i = bc_map_find_ge(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001272
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001273 if (n == v->len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001274 bc_vec_push(v, ptr);
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001275 else if (!bc_id_cmp(ptr, bc_vec_item(v, n)))
1276 return 0; // "was not inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001277 else
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01001278 bc_vec_pushAt(v, ptr, n);
1279 return 1; // "was inserted"
Gavin Howard01055ba2018-11-03 11:00:21 -06001280}
1281
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001282#if ENABLE_BC
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001283static size_t bc_map_find_exact(const BcVec *v, const void *ptr)
Gavin Howard01055ba2018-11-03 11:00:21 -06001284{
Denys Vlasenko5aa54832018-12-19 13:55:53 +01001285 size_t i = bc_map_find_ge(v, ptr);
Gavin Howard01055ba2018-11-03 11:00:21 -06001286 if (i >= v->len) return BC_VEC_INVALID_IDX;
1287 return bc_id_cmp(ptr, bc_vec_item(v, i)) ? BC_VEC_INVALID_IDX : i;
1288}
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01001289#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001290
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001291static int bad_input_byte(char c)
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001292{
1293 if ((c < ' ' && c != '\t' && c != '\r' && c != '\n') // also allow '\v' '\f'?
1294 || c > 0x7e
1295 ) {
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001296 bc_error_fmt("illegal character 0x%02x", c);
1297 return 1;
1298 }
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001299 return 0;
1300}
1301
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001302// Note: it _appends_ data from fp to vec.
1303static void bc_read_line(BcVec *vec, FILE *fp)
Gavin Howard01055ba2018-11-03 11:00:21 -06001304{
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001305 again:
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001306 fflush_and_check();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001307
Gavin Howard01055ba2018-11-03 11:00:21 -06001308#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001309 if (G_interrupt) { // ^C was pressed
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001310 intr:
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001311 if (fp != stdin) {
1312 // ^C while running a script (bc SCRIPT): die.
1313 // We do not return to interactive prompt:
1314 // user might be running us from a shell,
1315 // and SCRIPT might be intended to terminate
1316 // (e.g. contain a "halt" stmt).
1317 // ^C dropping user into a bc prompt instead of
1318 // the shell would be unexpected.
1319 xfunc_die();
1320 }
1321 // ^C while interactive input
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001322 G_interrupt = 0;
1323 // GNU bc says "interrupted execution."
1324 // GNU dc says "Interrupt!"
1325 fputs("\ninterrupted execution\n", stderr);
1326 }
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001327
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001328# if ENABLE_FEATURE_EDITING
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001329 if (G_ttyin && fp == stdin) {
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001330 int n, i;
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001331# define line_buf bb_common_bufsiz1
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001332 n = read_line_input(G.line_input_state, "", line_buf, COMMON_BUFSIZE);
1333 if (n <= 0) { // read errors or EOF, or ^D, or ^C
1334 if (n == 0) // ^C
1335 goto intr;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001336 bc_vec_pushZeroByte(vec); // ^D or EOF (or error)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01001337 return;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001338 }
1339 i = 0;
1340 for (;;) {
1341 char c = line_buf[i++];
1342 if (!c) break;
1343 if (bad_input_byte(c)) goto again;
1344 }
1345 bc_vec_concat(vec, line_buf);
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001346# undef line_buf
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001347 } else
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01001348# endif
Denys Vlasenkoc1c24702018-12-03 16:06:02 +01001349#endif
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001350 {
1351 int c;
1352 bool bad_chars = 0;
1353 size_t len = vec->len;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001354
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001355 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001356#if ENABLE_FEATURE_BC_SIGNALS
1357 if (G_interrupt) {
1358 // ^C was pressed: ignore entire line, get another one
1359 vec->len = len;
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001360 goto intr;
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01001361 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001362#endif
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01001363 do c = fgetc(fp); while (c == '\0');
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001364 if (c == EOF) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001365 if (ferror(fp))
1366 bb_perror_msg_and_die("input error");
1367 // Note: EOF does not append '\n'
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001368 break;
1369 }
1370 bad_chars |= bad_input_byte(c);
1371 bc_vec_pushByte(vec, (char)c);
1372 } while (c != '\n');
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001373
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001374 if (bad_chars) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01001375 // Bad chars on this line
1376 if (!G.prog.file) { // stdin
1377 // ignore entire line, get another one
1378 vec->len = len;
1379 goto again;
1380 }
1381 bb_perror_msg_and_die("file '%s' is not text", G.prog.file);
Denys Vlasenkoed849352018-12-06 10:26:13 +01001382 }
Denys Vlasenko915c72b2018-12-13 19:28:41 +01001383 bc_vec_pushZeroByte(vec);
1384 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001385}
1386
Gavin Howard01055ba2018-11-03 11:00:21 -06001387static void bc_num_setToZero(BcNum *n, size_t scale)
1388{
1389 n->len = 0;
1390 n->neg = false;
1391 n->rdx = scale;
1392}
1393
1394static void bc_num_zero(BcNum *n)
1395{
1396 bc_num_setToZero(n, 0);
1397}
1398
1399static void bc_num_one(BcNum *n)
1400{
1401 bc_num_setToZero(n, 0);
1402 n->len = 1;
1403 n->num[0] = 1;
1404}
1405
Denys Vlasenko3129f702018-12-09 12:04:44 +01001406// Note: this also sets BcNum to zero
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001407static void bc_num_init(BcNum *n, size_t req)
1408{
1409 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001410 //memset(n, 0, sizeof(BcNum)); - cleared by assignments below
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001411 n->num = xmalloc(req);
1412 n->cap = req;
Denys Vlasenko3129f702018-12-09 12:04:44 +01001413 n->rdx = 0;
1414 n->len = 0;
1415 n->neg = false;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001416}
1417
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01001418static void bc_num_init_DEF_SIZE(BcNum *n)
1419{
1420 bc_num_init(n, BC_NUM_DEF_SIZE);
1421}
1422
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001423static void bc_num_expand(BcNum *n, size_t req)
1424{
1425 req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE;
1426 if (req > n->cap) {
1427 n->num = xrealloc(n->num, req);
1428 n->cap = req;
1429 }
1430}
1431
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01001432static FAST_FUNC void bc_num_free(void *num)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001433{
1434 free(((BcNum *) num)->num);
1435}
1436
1437static void bc_num_copy(BcNum *d, BcNum *s)
1438{
1439 if (d != s) {
1440 bc_num_expand(d, s->cap);
1441 d->len = s->len;
1442 d->neg = s->neg;
1443 d->rdx = s->rdx;
1444 memcpy(d->num, s->num, sizeof(BcDig) * d->len);
1445 }
1446}
1447
Denys Vlasenko29301232018-12-11 15:29:32 +01001448static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001449{
1450 size_t i;
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001451 unsigned long pow, result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001452
Denys Vlasenko29301232018-12-11 15:29:32 +01001453 if (n->neg) RETURN_STATUS(bc_error("negative number"));
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001454
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001455 for (result = 0, pow = 1, i = n->rdx; i < n->len; ++i) {
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001456 unsigned long prev = result, powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001457
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001458 result += ((unsigned long) n->num[i]) * pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001459 pow *= 10;
1460
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001461 if (result < prev || pow < powprev)
Denys Vlasenko29301232018-12-11 15:29:32 +01001462 RETURN_STATUS(bc_error("overflow"));
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001463 prev = result;
1464 powprev = pow;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001465 }
Denys Vlasenkoffdcebd2018-12-07 15:10:05 +01001466 *result_p = result;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001467
Denys Vlasenko29301232018-12-11 15:29:32 +01001468 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001469}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001470#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001471
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01001472#if ULONG_MAX == 0xffffffffUL // 10 digits: 4294967295
1473# define ULONG_NUM_BUFSIZE (10 > BC_NUM_DEF_SIZE ? 10 : BC_NUM_DEF_SIZE)
1474#elif ULONG_MAX == 0xffffffffffffffffULL // 20 digits: 18446744073709551615
1475# define ULONG_NUM_BUFSIZE (20 > BC_NUM_DEF_SIZE ? 20 : BC_NUM_DEF_SIZE)
1476#endif
1477// minimum BC_NUM_DEF_SIZE, so that bc_num_expand() in bc_num_ulong2num()
1478// would not hit realloc() code path - not good if num[] is not malloced
1479
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001480static void bc_num_ulong2num(BcNum *n, unsigned long val)
1481{
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001482 BcDig *ptr;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001483
1484 bc_num_zero(n);
1485
1486 if (val == 0) return;
1487
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01001488 bc_num_expand(n, ULONG_NUM_BUFSIZE);
Denys Vlasenkob696d9e2018-12-10 12:22:15 +01001489
1490 ptr = n->num;
1491 for (;;) {
1492 n->len++;
1493 *ptr++ = val % 10;
1494 val /= 10;
1495 if (val == 0) break;
1496 }
Denys Vlasenkob0e37612018-12-05 21:03:16 +01001497}
1498
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001499static void bc_num_subArrays(BcDig *restrict a, BcDig *restrict b, size_t len)
Gavin Howard01055ba2018-11-03 11:00:21 -06001500{
1501 size_t i, j;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001502 for (i = 0; i < len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001503 a[i] -= b[i];
1504 for (j = i; a[j] < 0;) {
1505 a[j++] += 10;
1506 a[j] -= 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06001507 }
1508 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001509}
1510
1511static ssize_t bc_num_compare(BcDig *restrict a, BcDig *restrict b, size_t len)
1512{
Denys Vlasenko4113e1f2018-12-18 00:39:24 +01001513 size_t i = len;
1514 for (;;) {
1515 int c;
1516 if (i == 0)
1517 return 0;
1518 i--;
1519 c = a[i] - b[i];
1520 if (c != 0) {
1521 i++;
1522 if (c < 0)
1523 return -i;
1524 return i;
1525 }
1526 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001527}
1528
1529static ssize_t bc_num_cmp(BcNum *a, BcNum *b)
1530{
1531 size_t i, min, a_int, b_int, diff;
1532 BcDig *max_num, *min_num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001533 bool a_max, neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06001534 ssize_t cmp;
1535
1536 if (a == b) return 0;
1537 if (a->len == 0) return BC_NUM_NEG(!!b->len, !b->neg);
1538 if (b->len == 0) return BC_NUM_NEG(1, a->neg);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001539
1540 if (a->neg != b->neg) // signs of a and b differ
1541 // +a,-b = a>b = 1 or -a,+b = a<b = -1
1542 return (int)b->neg - (int)a->neg;
1543 neg = a->neg; // 1 if both negative, 0 if both positive
Gavin Howard01055ba2018-11-03 11:00:21 -06001544
1545 a_int = BC_NUM_INT(a);
1546 b_int = BC_NUM_INT(b);
1547 a_int -= b_int;
Gavin Howard01055ba2018-11-03 11:00:21 -06001548
1549 if (a_int != 0) return (ssize_t) a_int;
1550
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001551 a_max = (a->rdx > b->rdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001552 if (a_max) {
1553 min = b->rdx;
1554 diff = a->rdx - b->rdx;
1555 max_num = a->num + diff;
1556 min_num = b->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001557 // neg = (a_max == neg); - NOP (maps 1->1 and 0->0)
1558 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001559 min = a->rdx;
1560 diff = b->rdx - a->rdx;
1561 max_num = b->num + diff;
1562 min_num = a->num;
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001563 neg = !neg; // same as "neg = (a_max == neg)"
Gavin Howard01055ba2018-11-03 11:00:21 -06001564 }
1565
1566 cmp = bc_num_compare(max_num, min_num, b_int + min);
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001567 if (cmp != 0) return BC_NUM_NEG(cmp, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001568
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001569 for (max_num -= diff, i = diff - 1; i < diff; --i) {
Denys Vlasenko251fbb52018-12-12 11:51:32 +01001570 if (max_num[i]) return BC_NUM_NEG(1, neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06001571 }
1572
1573 return 0;
1574}
1575
1576static void bc_num_truncate(BcNum *n, size_t places)
1577{
1578 if (places == 0) return;
1579
1580 n->rdx -= places;
1581
1582 if (n->len != 0) {
1583 n->len -= places;
1584 memmove(n->num, n->num + places, n->len * sizeof(BcDig));
1585 }
1586}
1587
1588static void bc_num_extend(BcNum *n, size_t places)
1589{
1590 size_t len = n->len + places;
1591
1592 if (places != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001593 if (n->cap < len) bc_num_expand(n, len);
1594
1595 memmove(n->num + places, n->num, sizeof(BcDig) * n->len);
1596 memset(n->num, 0, sizeof(BcDig) * places);
1597
1598 n->len += places;
1599 n->rdx += places;
1600 }
1601}
1602
1603static void bc_num_clean(BcNum *n)
1604{
1605 while (n->len > 0 && n->num[n->len - 1] == 0) --n->len;
1606 if (n->len == 0)
1607 n->neg = false;
1608 else if (n->len < n->rdx)
1609 n->len = n->rdx;
1610}
1611
1612static void bc_num_retireMul(BcNum *n, size_t scale, bool neg1, bool neg2)
1613{
1614 if (n->rdx < scale)
1615 bc_num_extend(n, scale - n->rdx);
1616 else
1617 bc_num_truncate(n, n->rdx - scale);
1618
1619 bc_num_clean(n);
1620 if (n->len != 0) n->neg = !neg1 != !neg2;
1621}
1622
1623static void bc_num_split(BcNum *restrict n, size_t idx, BcNum *restrict a,
1624 BcNum *restrict b)
1625{
1626 if (idx < n->len) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001627 b->len = n->len - idx;
1628 a->len = idx;
1629 a->rdx = b->rdx = 0;
1630
1631 memcpy(b->num, n->num + idx, b->len * sizeof(BcDig));
1632 memcpy(a->num, n->num, idx * sizeof(BcDig));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001633 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001634 bc_num_zero(b);
1635 bc_num_copy(a, n);
1636 }
1637
1638 bc_num_clean(a);
1639 bc_num_clean(b);
1640}
1641
Denys Vlasenko29301232018-12-11 15:29:32 +01001642static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
Gavin Howard01055ba2018-11-03 11:00:21 -06001643{
Denys Vlasenko29301232018-12-11 15:29:32 +01001644 if (places == 0 || n->len == 0) RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko64074a12018-12-07 15:50:14 +01001645
1646 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
1647 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
1648 if (places + n->len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01001649 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01001650 }
Gavin Howard01055ba2018-11-03 11:00:21 -06001651
1652 if (n->rdx >= places)
1653 n->rdx -= places;
1654 else {
1655 bc_num_extend(n, places - n->rdx);
1656 n->rdx = 0;
1657 }
1658
1659 bc_num_clean(n);
1660
Denys Vlasenko29301232018-12-11 15:29:32 +01001661 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001662}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001663#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001664
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001665static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001666{
1667 BcNum one;
1668 BcDig num[2];
1669
1670 one.cap = 2;
1671 one.num = num;
1672 bc_num_one(&one);
1673
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001674 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
Gavin Howard01055ba2018-11-03 11:00:21 -06001675}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001676#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001677
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001678static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001679{
1680 BcDig *ptr, *ptr_a, *ptr_b, *ptr_c;
1681 size_t i, max, min_rdx, min_int, diff, a_int, b_int;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001682 unsigned carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001683
1684 // Because this function doesn't need to use scale (per the bc spec),
1685 // I am hijacking it to say whether it's doing an add or a subtract.
1686
1687 if (a->len == 0) {
1688 bc_num_copy(c, b);
1689 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001690 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001691 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001692 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001693 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001694 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001695 }
1696
1697 c->neg = a->neg;
1698 c->rdx = BC_MAX(a->rdx, b->rdx);
1699 min_rdx = BC_MIN(a->rdx, b->rdx);
1700 c->len = 0;
1701
1702 if (a->rdx > b->rdx) {
1703 diff = a->rdx - b->rdx;
1704 ptr = a->num;
1705 ptr_a = a->num + diff;
1706 ptr_b = b->num;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001707 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001708 diff = b->rdx - a->rdx;
1709 ptr = b->num;
1710 ptr_a = a->num;
1711 ptr_b = b->num + diff;
1712 }
1713
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001714 ptr_c = c->num;
1715 for (i = 0; i < diff; ++i, ++c->len)
1716 ptr_c[i] = ptr[i];
Gavin Howard01055ba2018-11-03 11:00:21 -06001717
1718 ptr_c += diff;
1719 a_int = BC_NUM_INT(a);
1720 b_int = BC_NUM_INT(b);
1721
1722 if (a_int > b_int) {
1723 min_int = b_int;
1724 max = a_int;
1725 ptr = ptr_a;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001726 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001727 min_int = a_int;
1728 max = b_int;
1729 ptr = ptr_b;
1730 }
1731
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001732 carry = 0;
1733 for (i = 0; i < min_rdx + min_int; ++i) {
1734 unsigned in = (unsigned)ptr_a[i] + (unsigned)ptr_b[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001735 carry = in / 10;
1736 ptr_c[i] = (BcDig)(in % 10);
1737 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001738 for (; i < max + min_rdx; ++i) {
1739 unsigned in = (unsigned)ptr[i] + carry;
Gavin Howard01055ba2018-11-03 11:00:21 -06001740 carry = in / 10;
1741 ptr_c[i] = (BcDig)(in % 10);
1742 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001743 c->len += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06001744
1745 if (carry != 0) c->num[c->len++] = (BcDig) carry;
1746
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001747 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001748}
1749
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001750static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
Gavin Howard01055ba2018-11-03 11:00:21 -06001751{
Gavin Howard01055ba2018-11-03 11:00:21 -06001752 ssize_t cmp;
1753 BcNum *minuend, *subtrahend;
1754 size_t start;
1755 bool aneg, bneg, neg;
1756
1757 // Because this function doesn't need to use scale (per the bc spec),
1758 // I am hijacking it to say whether it's doing an add or a subtract.
1759
1760 if (a->len == 0) {
1761 bc_num_copy(c, b);
1762 if (sub && c->len) c->neg = !c->neg;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001763 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001764 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001765 if (b->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001766 bc_num_copy(c, a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001767 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001768 }
1769
1770 aneg = a->neg;
1771 bneg = b->neg;
1772 a->neg = b->neg = false;
1773
1774 cmp = bc_num_cmp(a, b);
1775
1776 a->neg = aneg;
1777 b->neg = bneg;
1778
1779 if (cmp == 0) {
1780 bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx));
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001781 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001782 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001783 if (cmp > 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001784 neg = a->neg;
1785 minuend = a;
1786 subtrahend = b;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001787 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06001788 neg = b->neg;
1789 if (sub) neg = !neg;
1790 minuend = b;
1791 subtrahend = a;
1792 }
1793
1794 bc_num_copy(c, minuend);
1795 c->neg = neg;
1796
1797 if (c->rdx < subtrahend->rdx) {
1798 bc_num_extend(c, subtrahend->rdx - c->rdx);
1799 start = 0;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001800 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06001801 start = c->rdx - subtrahend->rdx;
1802
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001803 bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06001804
1805 bc_num_clean(c);
1806
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001807 RETURN_STATUS(BC_STATUS_SUCCESS); // can't make void, see zbc_num_binary()
Gavin Howard01055ba2018-11-03 11:00:21 -06001808}
1809
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001810static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
Gavin Howard01055ba2018-11-03 11:00:21 -06001811 BcNum *restrict c)
Denys Vlasenkoec603182018-12-17 10:34:02 +01001812#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001813{
1814 BcStatus s;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001815 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06001816 BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001817 bool aone;
Gavin Howard01055ba2018-11-03 11:00:21 -06001818
Gavin Howard01055ba2018-11-03 11:00:21 -06001819 if (a->len == 0 || b->len == 0) {
1820 bc_num_zero(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001821 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001822 }
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001823 aone = BC_NUM_ONE(a);
1824 if (aone || BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001825 bc_num_copy(c, aone ? b : a);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001826 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001827 }
1828
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001829 if (a->len + b->len < BC_NUM_KARATSUBA_LEN
1830 || a->len < BC_NUM_KARATSUBA_LEN
1831 || b->len < BC_NUM_KARATSUBA_LEN
1832 ) {
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001833 size_t i, j, len;
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001834
Gavin Howard01055ba2018-11-03 11:00:21 -06001835 bc_num_expand(c, a->len + b->len + 1);
1836
1837 memset(c->num, 0, sizeof(BcDig) * c->cap);
Denys Vlasenkob692c2f2018-12-05 18:56:14 +01001838 c->len = len = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06001839
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001840 for (i = 0; i < b->len; ++i) {
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001841 unsigned carry = 0;
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01001842 for (j = 0; j < a->len; ++j) {
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001843 unsigned in = c->num[i + j];
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01001844 in += (unsigned)a->num[j] * (unsigned)b->num[i] + carry;
Denys Vlasenkob3cb9012018-12-05 19:05:32 +01001845 // note: compilers prefer _unsigned_ div/const
Gavin Howard01055ba2018-11-03 11:00:21 -06001846 carry = in / 10;
1847 c->num[i + j] = (BcDig)(in % 10);
1848 }
1849
1850 c->num[i + j] += (BcDig) carry;
1851 len = BC_MAX(len, i + j + !!carry);
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001852
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001853#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01001854 // a=2^1000000
1855 // a*a <- without check below, this will not be interruptible
1856 if (G_interrupt) return BC_STATUS_FAILURE;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001857#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06001858 }
1859
1860 c->len = len;
1861
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001862 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001863 }
1864
1865 bc_num_init(&l1, max);
1866 bc_num_init(&h1, max);
1867 bc_num_init(&l2, max);
1868 bc_num_init(&h2, max);
1869 bc_num_init(&m1, max);
1870 bc_num_init(&m2, max);
1871 bc_num_init(&z0, max);
1872 bc_num_init(&z1, max);
1873 bc_num_init(&z2, max);
1874 bc_num_init(&temp, max + max);
1875
1876 bc_num_split(a, max2, &l1, &h1);
1877 bc_num_split(b, max2, &l2, &h2);
1878
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001879 s = zbc_num_add(&h1, &l1, &m1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001880 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001881 s = zbc_num_add(&h2, &l2, &m2, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001882 if (s) goto err;
1883
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001884 s = zbc_num_k(&h1, &h2, &z0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001885 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001886 s = zbc_num_k(&m1, &m2, &z1);
Gavin Howard01055ba2018-11-03 11:00:21 -06001887 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001888 s = zbc_num_k(&l1, &l2, &z2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001889 if (s) goto err;
1890
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001891 s = zbc_num_sub(&z1, &z0, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001892 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001893 s = zbc_num_sub(&temp, &z2, &z1, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001894 if (s) goto err;
1895
Denys Vlasenko29301232018-12-11 15:29:32 +01001896 s = zbc_num_shift(&z0, max2 * 2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001897 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001898 s = zbc_num_shift(&z1, max2);
Gavin Howard01055ba2018-11-03 11:00:21 -06001899 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001900 s = zbc_num_add(&z0, &z1, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06001901 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001902 s = zbc_num_add(&temp, &z2, c, 0);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001903 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06001904 bc_num_free(&temp);
1905 bc_num_free(&z2);
1906 bc_num_free(&z1);
1907 bc_num_free(&z0);
1908 bc_num_free(&m2);
1909 bc_num_free(&m1);
1910 bc_num_free(&h2);
1911 bc_num_free(&l2);
1912 bc_num_free(&h1);
1913 bc_num_free(&l1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001914 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001915}
1916
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001917static FAST_FUNC BC_STATUS zbc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001918{
1919 BcStatus s;
1920 BcNum cpa, cpb;
1921 size_t maxrdx = BC_MAX(a->rdx, b->rdx);
1922
1923 scale = BC_MAX(scale, a->rdx);
1924 scale = BC_MAX(scale, b->rdx);
1925 scale = BC_MIN(a->rdx + b->rdx, scale);
1926 maxrdx = BC_MAX(maxrdx, scale);
1927
1928 bc_num_init(&cpa, a->len);
1929 bc_num_init(&cpb, b->len);
1930
1931 bc_num_copy(&cpa, a);
1932 bc_num_copy(&cpb, b);
1933 cpa.neg = cpb.neg = false;
1934
Denys Vlasenko29301232018-12-11 15:29:32 +01001935 s = zbc_num_shift(&cpa, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001936 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01001937 s = zbc_num_shift(&cpb, maxrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06001938 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01001939 s = zbc_num_k(&cpa, &cpb, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06001940 if (s) goto err;
1941
1942 maxrdx += scale;
1943 bc_num_expand(c, c->len + maxrdx);
1944
1945 if (c->len < maxrdx) {
1946 memset(c->num + c->len, 0, (c->cap - c->len) * sizeof(BcDig));
1947 c->len += maxrdx;
1948 }
1949
1950 c->rdx = maxrdx;
1951 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01001952 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06001953 bc_num_free(&cpb);
1954 bc_num_free(&cpa);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001955 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06001956}
Denys Vlasenkoec603182018-12-17 10:34:02 +01001957#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06001958
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001959static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06001960{
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01001961 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06001962 size_t len, end, i;
1963 BcNum cp;
Gavin Howard01055ba2018-11-03 11:00:21 -06001964
1965 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001966 RETURN_STATUS(bc_error("divide by zero"));
1967 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001968 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001969 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001970 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001971 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06001972 bc_num_copy(c, a);
1973 bc_num_retireMul(c, scale, a->neg, b->neg);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01001974 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06001975 }
1976
1977 bc_num_init(&cp, BC_NUM_MREQ(a, b, scale));
1978 bc_num_copy(&cp, a);
1979 len = b->len;
1980
1981 if (len > cp.len) {
1982 bc_num_expand(&cp, len + 2);
1983 bc_num_extend(&cp, len - cp.len);
1984 }
1985
1986 if (b->rdx > cp.rdx) bc_num_extend(&cp, b->rdx - cp.rdx);
1987 cp.rdx -= b->rdx;
1988 if (scale > cp.rdx) bc_num_extend(&cp, scale - cp.rdx);
1989
1990 if (b->rdx == b->len) {
Denys Vlasenko71c82d12018-12-18 12:43:21 +01001991 for (;;) {
1992 if (len == 0) break;
1993 len--;
1994 if (b->num[len] != 0)
1995 break;
1996 }
1997 len++;
Gavin Howard01055ba2018-11-03 11:00:21 -06001998 }
1999
2000 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1);
2001
2002 // We want an extra zero in front to make things simpler.
2003 cp.num[cp.len++] = 0;
2004 end = cp.len - len;
2005
2006 bc_num_expand(c, cp.len);
2007
2008 bc_num_zero(c);
2009 memset(c->num + end, 0, (c->cap - end) * sizeof(BcDig));
2010 c->rdx = cp.rdx;
2011 c->len = cp.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06002012
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01002013 s = BC_STATUS_SUCCESS;
2014 for (i = end - 1; i < end; --i) {
2015 BcDig *n, q;
Gavin Howard01055ba2018-11-03 11:00:21 -06002016 n = cp.num + i;
Denys Vlasenko5c0c5ab2018-12-18 13:15:55 +01002017 for (q = 0; n[len] != 0 || bc_num_compare(n, b->num, len) >= 0; ++q)
2018 bc_num_subArrays(n, b->num, len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002019 c->num[i] = q;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002020#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenkof381a882018-12-05 19:21:34 +01002021 // a=2^100000
2022 // scale=40000
2023 // 1/a <- without check below, this will not be interruptible
2024 if (G_interrupt) {
2025 s = BC_STATUS_FAILURE;
2026 break;
2027 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002028#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002029 }
2030
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002031 bc_num_retireMul(c, scale, a->neg, b->neg);
Gavin Howard01055ba2018-11-03 11:00:21 -06002032 bc_num_free(&cp);
2033
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002034 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002035}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002036#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002037
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002038static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
Gavin Howard01055ba2018-11-03 11:00:21 -06002039 BcNum *restrict d, size_t scale, size_t ts)
2040{
2041 BcStatus s;
2042 BcNum temp;
2043 bool neg;
2044
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002045 if (b->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002046 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002047
2048 if (a->len == 0) {
2049 bc_num_setToZero(d, ts);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002050 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002051 }
2052
2053 bc_num_init(&temp, d->cap);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002054 s = zbc_num_d(a, b, c, scale);
Denys Vlasenkof381a882018-12-05 19:21:34 +01002055 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06002056
2057 if (scale != 0) scale = ts;
2058
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002059 s = zbc_num_m(c, b, &temp, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002060 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002061 s = zbc_num_sub(a, &temp, d, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002062 if (s) goto err;
2063
2064 if (ts > d->rdx && d->len) bc_num_extend(d, ts - d->rdx);
2065
2066 neg = d->neg;
2067 bc_num_retireMul(d, ts, a->neg, b->neg);
2068 d->neg = neg;
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002069 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002070 bc_num_free(&temp);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002071 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002072}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002073#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002074
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002075static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002076{
2077 BcStatus s;
2078 BcNum c1;
2079 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2080
2081 bc_num_init(&c1, len);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002082 s = zbc_num_r(a, b, &c1, c, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002083 bc_num_free(&c1);
2084
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002085 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002086}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002087#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002088
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002089static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002090{
2091 BcStatus s = BC_STATUS_SUCCESS;
2092 BcNum copy;
2093 unsigned long pow;
2094 size_t i, powrdx, resrdx;
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002095 bool neg;
Gavin Howard01055ba2018-11-03 11:00:21 -06002096
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002097 if (b->rdx) RETURN_STATUS(bc_error("non integer number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002098
2099 if (b->len == 0) {
2100 bc_num_one(c);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002101 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002102 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002103 if (a->len == 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002104 bc_num_setToZero(c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002105 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002106 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002107 if (BC_NUM_ONE(b)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002108 if (!b->neg)
2109 bc_num_copy(c, a);
2110 else
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002111 s = zbc_num_inv(a, c, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002112 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002113 }
2114
2115 neg = b->neg;
2116 b->neg = false;
2117
Denys Vlasenko29301232018-12-11 15:29:32 +01002118 s = zbc_num_ulong(b, &pow);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002119 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002120
2121 bc_num_init(&copy, a->len);
2122 bc_num_copy(&copy, a);
2123
Denys Vlasenko2d615fe2018-12-07 16:22:45 +01002124 if (!neg) {
2125 if (a->rdx > scale)
2126 scale = a->rdx;
2127 if (a->rdx * pow < scale)
2128 scale = a->rdx * pow;
2129 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002130
2131 b->neg = neg;
2132
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002133 for (powrdx = a->rdx; !(pow & 1); pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002134 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002135 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002136 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002137 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002138 //if (G_interrupt) {
2139 // s = BC_STATUS_FAILURE;
2140 // goto err;
2141 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002142 }
2143
Gavin Howard01055ba2018-11-03 11:00:21 -06002144 bc_num_copy(c, &copy);
2145
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002146 for (resrdx = powrdx, pow >>= 1; pow != 0; pow >>= 1) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002147 powrdx <<= 1;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002148 s = zbc_num_mul(&copy, &copy, &copy, powrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002149 if (s) goto err;
2150
2151 if (pow & 1) {
2152 resrdx += powrdx;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002153 s = zbc_num_mul(c, &copy, c, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002154 if (s) goto err;
2155 }
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002156 // Not needed: zbc_num_mul() has a check for ^C:
Denys Vlasenko06fa65b2018-12-05 19:00:58 +01002157 //if (G_interrupt) {
2158 // s = BC_STATUS_FAILURE;
2159 // goto err;
2160 //}
Gavin Howard01055ba2018-11-03 11:00:21 -06002161 }
2162
2163 if (neg) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002164 s = zbc_num_inv(c, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002165 if (s) goto err;
2166 }
2167
Gavin Howard01055ba2018-11-03 11:00:21 -06002168 if (c->rdx > scale) bc_num_truncate(c, c->rdx - scale);
2169
2170 // We can't use bc_num_clean() here.
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002171 for (i = 0; i < c->len; ++i)
2172 if (c->num[i] != 0)
2173 goto skip;
2174 bc_num_setToZero(c, scale);
2175 skip:
Gavin Howard01055ba2018-11-03 11:00:21 -06002176
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01002177 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002178 bc_num_free(&copy);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002179 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002180}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002181#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002182
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002183static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
Gavin Howard01055ba2018-11-03 11:00:21 -06002184 BcNumBinaryOp op, size_t req)
2185{
2186 BcStatus s;
2187 BcNum num2, *ptr_a, *ptr_b;
2188 bool init = false;
2189
2190 if (c == a) {
2191 ptr_a = &num2;
2192 memcpy(ptr_a, c, sizeof(BcNum));
2193 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002194 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002195 ptr_a = a;
2196
2197 if (c == b) {
2198 ptr_b = &num2;
2199 if (c != a) {
2200 memcpy(ptr_b, c, sizeof(BcNum));
2201 init = true;
2202 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002203 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06002204 ptr_b = b;
2205
2206 if (init)
2207 bc_num_init(c, req);
2208 else
2209 bc_num_expand(c, req);
2210
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002211 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01002212 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06002213
2214 if (init) bc_num_free(&num2);
2215
Denys Vlasenko29301232018-12-11 15:29:32 +01002216 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002217}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002218#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002219
Denys Vlasenko9311e012018-12-10 11:54:18 +01002220static bool bc_num_strValid(const char *val, size_t base)
2221{
2222 BcDig b;
2223 bool radix;
2224
2225 b = (BcDig)(base <= 10 ? base + '0' : base - 10 + 'A');
2226 radix = false;
2227 for (;;) {
2228 BcDig c = *val++;
2229 if (c == '\0')
2230 break;
2231 if (c == '.') {
2232 if (radix) return false;
2233 radix = true;
2234 continue;
2235 }
2236 if (c < '0' || c >= b || (c > '9' && c < 'A'))
2237 return false;
2238 }
2239 return true;
2240}
2241
2242// Note: n is already "bc_num_zero()"ed,
2243// leading zeroes in "val" are removed
2244static void bc_num_parseDecimal(BcNum *n, const char *val)
2245{
2246 size_t len, i;
2247 const char *ptr;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002248
2249 len = strlen(val);
2250 if (len == 0)
2251 return;
2252
Denys Vlasenko9311e012018-12-10 11:54:18 +01002253 bc_num_expand(n, len);
2254
2255 ptr = strchr(val, '.');
2256
2257 n->rdx = 0;
2258 if (ptr != NULL)
2259 n->rdx = (size_t)((val + len) - (ptr + 1));
2260
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002261 for (i = 0; val[i]; ++i) {
2262 if (val[i] != '0' && val[i] != '.') {
2263 // Not entirely zero value - convert it, and exit
2264 i = len - 1;
2265 for (;;) {
2266 n->num[n->len] = val[i] - '0';
2267 ++n->len;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002268 skip_dot:
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002269 if (i == 0) break;
2270 if (val[--i] == '.') goto skip_dot;
Denys Vlasenkodafbc2c2018-12-10 15:38:52 +01002271 }
2272 break;
Denys Vlasenko9311e012018-12-10 11:54:18 +01002273 }
2274 }
Denys Vlasenko87b49be2018-12-14 16:24:01 +01002275 // if for() exits without hitting if(), the value is entirely zero
Denys Vlasenko9311e012018-12-10 11:54:18 +01002276}
2277
2278// Note: n is already "bc_num_zero()"ed,
2279// leading zeroes in "val" are removed
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002280static void bc_num_parseBase(BcNum *n, const char *val, unsigned base_t)
Denys Vlasenko9311e012018-12-10 11:54:18 +01002281{
2282 BcStatus s;
2283 BcNum temp, mult, result;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002284 BcNum base;
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01002285 BcDig base_digs[ULONG_NUM_BUFSIZE];
Denys Vlasenko9311e012018-12-10 11:54:18 +01002286 BcDig c = '\0';
2287 unsigned long v;
2288 size_t i, digits;
2289
2290 for (i = 0; ; ++i) {
2291 if (val[i] == '\0')
2292 return;
2293 if (val[i] != '.' && val[i] != '0')
2294 break;
2295 }
2296
2297 bc_num_init_DEF_SIZE(&temp);
2298 bc_num_init_DEF_SIZE(&mult);
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01002299 base.cap = ARRAY_SIZE(base_digs);
2300 base.num = base_digs;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002301 bc_num_ulong2num(&base, base_t);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002302
2303 for (;;) {
2304 c = *val++;
2305 if (c == '\0') goto int_err;
2306 if (c == '.') break;
2307
2308 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2309
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002310 s = zbc_num_mul(n, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002311 if (s) goto int_err;
2312 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002313 s = zbc_num_add(&mult, &temp, n, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002314 if (s) goto int_err;
2315 }
2316
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002317 bc_num_init(&result, base.len);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002318 //bc_num_zero(&result); - already is
2319 bc_num_one(&mult);
2320
2321 digits = 0;
2322 for (;;) {
2323 c = *val++;
2324 if (c == '\0') break;
2325 digits++;
2326
2327 v = (unsigned long) (c <= '9' ? c - '0' : c - 'A' + 10);
2328
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002329 s = zbc_num_mul(&result, &base, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002330 if (s) goto err;
2331 bc_num_ulong2num(&temp, v);
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002332 s = zbc_num_add(&result, &temp, &result, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002333 if (s) goto err;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002334 s = zbc_num_mul(&mult, &base, &mult, 0);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002335 if (s) goto err;
2336 }
2337
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002338 s = zbc_num_div(&result, &mult, &result, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002339 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002340 s = zbc_num_add(n, &result, n, digits);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002341 if (s) goto err;
2342
2343 if (n->len != 0) {
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002344 if (n->rdx < digits)
2345 bc_num_extend(n, digits - n->rdx);
Denys Vlasenko9311e012018-12-10 11:54:18 +01002346 } else
2347 bc_num_zero(n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002348 err:
Denys Vlasenko9311e012018-12-10 11:54:18 +01002349 bc_num_free(&result);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002350 int_err:
Denys Vlasenko9311e012018-12-10 11:54:18 +01002351 bc_num_free(&mult);
2352 bc_num_free(&temp);
2353}
2354
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002355static BC_STATUS zbc_num_parse(BcNum *n, const char *val, unsigned base_t)
Gavin Howard01055ba2018-11-03 11:00:21 -06002356{
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002357 if (!bc_num_strValid(val, base_t))
Denys Vlasenko29301232018-12-11 15:29:32 +01002358 RETURN_STATUS(bc_error("bad number string"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002359
Denys Vlasenko4a024c72018-12-09 13:21:54 +01002360 bc_num_zero(n);
2361 while (*val == '0') val++;
2362
Gavin Howard01055ba2018-11-03 11:00:21 -06002363 if (base_t == 10)
2364 bc_num_parseDecimal(n, val);
2365 else
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01002366 bc_num_parseBase(n, val, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002367
Denys Vlasenko29301232018-12-11 15:29:32 +01002368 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002369}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002370#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002371
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002372static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
Gavin Howard01055ba2018-11-03 11:00:21 -06002373{
2374 BcStatus s;
2375 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp;
2376 size_t pow, len, digs, digs1, resrdx, req, times = 0;
2377 ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX;
2378
2379 req = BC_MAX(scale, a->rdx) + ((BC_NUM_INT(a) + 1) >> 1) + 1;
2380 bc_num_expand(b, req);
2381
2382 if (a->len == 0) {
2383 bc_num_setToZero(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002384 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002385 }
2386 if (a->neg) {
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002387 RETURN_STATUS(bc_error("negative number"));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01002388 }
2389 if (BC_NUM_ONE(a)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002390 bc_num_one(b);
2391 bc_num_extend(b, scale);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002392 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002393 }
2394
2395 scale = BC_MAX(scale, a->rdx) + 1;
2396 len = a->len + scale;
2397
2398 bc_num_init(&num1, len);
2399 bc_num_init(&num2, len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002400 bc_num_init_DEF_SIZE(&half);
Gavin Howard01055ba2018-11-03 11:00:21 -06002401
2402 bc_num_one(&half);
2403 half.num[0] = 5;
2404 half.rdx = 1;
2405
2406 bc_num_init(&f, len);
2407 bc_num_init(&fprime, len);
2408
2409 x0 = &num1;
2410 x1 = &num2;
2411
2412 bc_num_one(x0);
2413 pow = BC_NUM_INT(a);
2414
2415 if (pow) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002416 if (pow & 1)
2417 x0->num[0] = 2;
2418 else
2419 x0->num[0] = 6;
2420
2421 pow -= 2 - (pow & 1);
2422
2423 bc_num_extend(x0, pow);
2424
2425 // Make sure to move the radix back.
2426 x0->rdx -= pow;
2427 }
2428
2429 x0->rdx = digs = digs1 = 0;
2430 resrdx = scale + 2;
2431 len = BC_NUM_INT(x0) + resrdx - 1;
2432
Denys Vlasenko71e1fc62018-12-02 19:43:34 +01002433 while (cmp != 0 || digs < len) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002434 s = zbc_num_div(a, x0, &f, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002435 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002436 s = zbc_num_add(x0, &f, &fprime, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002437 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002438 s = zbc_num_mul(&fprime, &half, x1, resrdx);
Gavin Howard01055ba2018-11-03 11:00:21 -06002439 if (s) goto err;
2440
2441 cmp = bc_num_cmp(x1, x0);
2442 digs = x1->len - (unsigned long long) llabs(cmp);
2443
2444 if (cmp == cmp2 && digs == digs1)
2445 times += 1;
2446 else
2447 times = 0;
2448
2449 resrdx += times > 4;
2450
2451 cmp2 = cmp1;
2452 cmp1 = cmp;
2453 digs1 = digs;
2454
2455 temp = x0;
2456 x0 = x1;
2457 x1 = temp;
2458 }
2459
Gavin Howard01055ba2018-11-03 11:00:21 -06002460 bc_num_copy(b, x0);
2461 scale -= 1;
2462 if (b->rdx > scale) bc_num_truncate(b, b->rdx - scale);
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002463 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002464 bc_num_free(&fprime);
2465 bc_num_free(&f);
2466 bc_num_free(&half);
2467 bc_num_free(&num2);
2468 bc_num_free(&num1);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002469 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002470}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002471#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002472
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002473static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
Gavin Howard01055ba2018-11-03 11:00:21 -06002474 size_t scale)
2475{
2476 BcStatus s;
2477 BcNum num2, *ptr_a;
2478 bool init = false;
2479 size_t ts = BC_MAX(scale + b->rdx, a->rdx), len = BC_NUM_MREQ(a, b, ts);
2480
2481 if (c == a) {
2482 memcpy(&num2, c, sizeof(BcNum));
2483 ptr_a = &num2;
2484 bc_num_init(c, len);
2485 init = true;
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002486 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06002487 ptr_a = a;
2488 bc_num_expand(c, len);
2489 }
2490
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002491 s = zbc_num_r(ptr_a, b, c, d, scale, ts);
Gavin Howard01055ba2018-11-03 11:00:21 -06002492
2493 if (init) bc_num_free(&num2);
2494
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002495 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002496}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002497#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002498
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002499#if ENABLE_DC
Denys Vlasenkofa210792018-12-19 19:35:40 +01002500static BC_STATUS zdc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
Gavin Howard01055ba2018-11-03 11:00:21 -06002501{
2502 BcStatus s;
2503 BcNum base, exp, two, temp;
2504
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002505 if (c->len == 0)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002506 RETURN_STATUS(bc_error("divide by zero"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002507 if (a->rdx || b->rdx || c->rdx)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002508 RETURN_STATUS(bc_error("non integer number"));
Denys Vlasenko60cf7472018-12-04 20:05:28 +01002509 if (b->neg)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002510 RETURN_STATUS(bc_error("negative number"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002511
2512 bc_num_expand(d, c->len);
2513 bc_num_init(&base, c->len);
2514 bc_num_init(&exp, b->len);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01002515 bc_num_init_DEF_SIZE(&two);
Gavin Howard01055ba2018-11-03 11:00:21 -06002516 bc_num_init(&temp, b->len);
2517
2518 bc_num_one(&two);
2519 two.num[0] = 2;
2520 bc_num_one(d);
2521
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002522 s = zbc_num_rem(a, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002523 if (s) goto err;
2524 bc_num_copy(&exp, b);
2525
2526 while (exp.len != 0) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002527 s = zbc_num_divmod(&exp, &two, &exp, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002528 if (s) goto err;
2529
2530 if (BC_NUM_ONE(&temp)) {
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002531 s = zbc_num_mul(d, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002532 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002533 s = zbc_num_rem(&temp, c, d, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002534 if (s) goto err;
2535 }
2536
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002537 s = zbc_num_mul(&base, &base, &temp, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002538 if (s) goto err;
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01002539 s = zbc_num_rem(&temp, c, &base, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06002540 if (s) goto err;
2541 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002542 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06002543 bc_num_free(&temp);
2544 bc_num_free(&two);
2545 bc_num_free(&exp);
2546 bc_num_free(&base);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01002547 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002548}
Denys Vlasenkofa210792018-12-19 19:35:40 +01002549#define zdc_num_modexp(...) (zdc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002550#endif // ENABLE_DC
2551
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002552#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01002553static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06002554{
Denys Vlasenko87888ce2018-12-19 17:55:23 +01002555 BcId *autoid;
Gavin Howard01055ba2018-11-03 11:00:21 -06002556 BcId a;
2557 size_t i;
2558
Denys Vlasenko87888ce2018-12-19 17:55:23 +01002559 autoid = (void*)f->autos.v;
2560 for (i = 0; i < f->autos.len; i++, autoid++) {
2561 if (strcmp(name, autoid->name) == 0)
Denys Vlasenko29301232018-12-11 15:29:32 +01002562 RETURN_STATUS(bc_error("function parameter or auto var has the same name as another"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002563 }
2564
2565 a.idx = var;
2566 a.name = name;
2567
2568 bc_vec_push(&f->autos, &a);
2569
Denys Vlasenko29301232018-12-11 15:29:32 +01002570 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002571}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002572#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko23c2e9f2018-12-06 11:43:17 +01002573#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002574
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01002575static FAST_FUNC void bc_string_free(void *string)
2576{
2577 free(*(char**)string);
2578}
2579
Gavin Howard01055ba2018-11-03 11:00:21 -06002580static void bc_func_init(BcFunc *f)
2581{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002582 bc_char_vec_init(&f->code);
Denys Vlasenko503faf92018-12-20 16:24:18 +01002583 IF_BC(bc_vec_init(&f->labels, sizeof(size_t), NULL);)
2584 IF_BC(bc_vec_init(&f->autos, sizeof(BcId), bc_id_free);)
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01002585 IF_BC(bc_vec_init(&f->strs, sizeof(char *), bc_string_free);)
2586 IF_BC(bc_vec_init(&f->consts, sizeof(char *), bc_string_free);)
Denys Vlasenko503faf92018-12-20 16:24:18 +01002587 IF_BC(f->nparams = 0;)
Gavin Howard01055ba2018-11-03 11:00:21 -06002588}
2589
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002590static FAST_FUNC void bc_func_free(void *func)
Gavin Howard01055ba2018-11-03 11:00:21 -06002591{
2592 BcFunc *f = (BcFunc *) func;
2593 bc_vec_free(&f->code);
Denys Vlasenko503faf92018-12-20 16:24:18 +01002594 IF_BC(bc_vec_free(&f->labels);)
2595 IF_BC(bc_vec_free(&f->autos);)
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01002596 IF_BC(bc_vec_free(&f->strs);)
2597 IF_BC(bc_vec_free(&f->consts);)
Gavin Howard01055ba2018-11-03 11:00:21 -06002598}
2599
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002600static void bc_array_expand(BcVec *a, size_t len);
2601
Gavin Howard01055ba2018-11-03 11:00:21 -06002602static void bc_array_init(BcVec *a, bool nums)
2603{
2604 if (nums)
2605 bc_vec_init(a, sizeof(BcNum), bc_num_free);
2606 else
2607 bc_vec_init(a, sizeof(BcVec), bc_vec_free);
2608 bc_array_expand(a, 1);
2609}
2610
Gavin Howard01055ba2018-11-03 11:00:21 -06002611static void bc_array_expand(BcVec *a, size_t len)
2612{
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002613 if (a->dtor == bc_num_free
2614 // && a->size == sizeof(BcNum) - always true
2615 ) {
2616 BcNum n;
Gavin Howard01055ba2018-11-03 11:00:21 -06002617 while (len > a->len) {
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002618 bc_num_init_DEF_SIZE(&n);
2619 bc_vec_push(a, &n);
Gavin Howard01055ba2018-11-03 11:00:21 -06002620 }
Denys Vlasenkoe2e6ffd2018-12-18 12:23:16 +01002621 } else {
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002622 BcVec v;
Gavin Howard01055ba2018-11-03 11:00:21 -06002623 while (len > a->len) {
Denys Vlasenkod6e24bd2018-12-18 20:10:48 +01002624 bc_array_init(&v, true);
2625 bc_vec_push(a, &v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002626 }
2627 }
2628}
2629
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002630static void bc_array_copy(BcVec *d, const BcVec *s)
2631{
Denys Vlasenkoeac0de52018-12-19 17:59:30 +01002632 BcNum *dnum, *snum;
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002633 size_t i;
2634
2635 bc_vec_pop_all(d);
2636 bc_vec_expand(d, s->cap);
2637 d->len = s->len;
2638
Denys Vlasenkoeac0de52018-12-19 17:59:30 +01002639 dnum = (void*)d->v;
2640 snum = (void*)s->v;
2641 for (i = 0; i < s->len; i++, dnum++, snum++) {
Denys Vlasenkob0e37612018-12-05 21:03:16 +01002642 bc_num_init(dnum, snum->len);
2643 bc_num_copy(dnum, snum);
2644 }
2645}
2646
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002647#if ENABLE_DC
Denys Vlasenkofa210792018-12-19 19:35:40 +01002648static void dc_result_copy(BcResult *d, BcResult *src)
Gavin Howard01055ba2018-11-03 11:00:21 -06002649{
2650 d->t = src->t;
2651
2652 switch (d->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002653 case BC_RESULT_TEMP:
2654 case BC_RESULT_IBASE:
2655 case BC_RESULT_SCALE:
2656 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002657 bc_num_init(&d->d.n, src->d.n.len);
2658 bc_num_copy(&d->d.n, &src->d.n);
2659 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002660 case BC_RESULT_VAR:
2661 case BC_RESULT_ARRAY:
2662 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002663 d->d.id.name = xstrdup(src->d.id.name);
2664 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002665 case BC_RESULT_CONSTANT:
2666 case BC_RESULT_LAST:
2667 case BC_RESULT_ONE:
2668 case BC_RESULT_STR:
Gavin Howard01055ba2018-11-03 11:00:21 -06002669 memcpy(&d->d.n, &src->d.n, sizeof(BcNum));
2670 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002671 }
2672}
2673#endif // ENABLE_DC
2674
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01002675static FAST_FUNC void bc_result_free(void *result)
Gavin Howard01055ba2018-11-03 11:00:21 -06002676{
2677 BcResult *r = (BcResult *) result;
2678
2679 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002680 case BC_RESULT_TEMP:
2681 case BC_RESULT_IBASE:
2682 case BC_RESULT_SCALE:
2683 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06002684 bc_num_free(&r->d.n);
2685 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002686 case BC_RESULT_VAR:
2687 case BC_RESULT_ARRAY:
2688 case BC_RESULT_ARRAY_ELEM:
Gavin Howard01055ba2018-11-03 11:00:21 -06002689 free(r->d.id.name);
2690 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002691 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06002692 // Do nothing.
2693 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06002694 }
2695}
2696
2697static void bc_lex_lineComment(BcLex *l)
2698{
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002699 // Try: echo -n '#foo' | bc
2700 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002701 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002702 i = l->i;
2703 while (i < l->len && l->buf[i] != '\n')
2704 i++;
2705 l->i = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002706}
2707
2708static void bc_lex_whitespace(BcLex *l)
2709{
Gavin Howard01055ba2018-11-03 11:00:21 -06002710 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko89198a92018-12-13 21:31:29 +01002711 for (;;) {
2712 char c = l->buf[l->i];
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002713 if (c == '\n') // this is BC_LEX_NLINE, not BC_LEX_WHITESPACE
2714 break;
2715 if (!isspace(c))
Denys Vlasenko89198a92018-12-13 21:31:29 +01002716 break;
2717 l->i++;
2718 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002719}
2720
Denys Vlasenko29301232018-12-11 15:29:32 +01002721static BC_STATUS zbc_lex_number(BcLex *l, char start)
Gavin Howard01055ba2018-11-03 11:00:21 -06002722{
2723 const char *buf = l->buf + l->i;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002724 size_t len, i, ccnt;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002725 bool pt;
Gavin Howard01055ba2018-11-03 11:00:21 -06002726
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002727 pt = (start == '.');
Gavin Howard01055ba2018-11-03 11:00:21 -06002728 l->t.t = BC_LEX_NUMBER;
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002729 ccnt = i = 0;
2730 for (;;) {
2731 char c = buf[i];
2732 if (c == '\0')
2733 break;
2734 if (c == '\\' && buf[i + 1] == '\n') {
2735 i += 2;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002736 //number_of_backslashes++ - see comment below
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002737 continue;
Gavin Howard01055ba2018-11-03 11:00:21 -06002738 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002739 if (!isdigit(c) && (c < 'A' || c > 'F')) {
2740 if (c != '.') break;
2741 // if '.' was already seen, stop on second one:
2742 if (pt) break;
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002743 pt = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06002744 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002745 // buf[i] is one of "0-9A-F."
2746 i++;
2747 if (c != '.')
2748 ccnt = i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002749 }
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002750 //ccnt is the number of chars in the number string, excluding possible
2751 //trailing "[\<newline>].[\<newline>]" (with any number of \<NL> repetitions).
2752 //i is buf[i] index of the first not-yet-parsed char after that.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002753 l->i += i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002754
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01002755 // This might overestimate the size, if there are "\<NL>"'s
2756 // in the number. Subtracting number_of_backslashes*2 correctly
2757 // is not that easy: consider that in the case of "NNN.\<NL>"
2758 // loop above will count "\<NL>" before it realizes it is not
2759 // in fact *inside* the number:
2760 len = ccnt + 1; // +1 byte for NUL termination
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002761
Denys Vlasenko64074a12018-12-07 15:50:14 +01002762 // This check makes sense only if size_t is (much) larger than BC_MAX_NUM.
2763 if (SIZE_MAX > (BC_MAX_NUM | 0xff)) {
2764 if (len > BC_MAX_NUM)
Denys Vlasenko29301232018-12-11 15:29:32 +01002765 RETURN_STATUS(bc_error("number too long: must be [1,"BC_MAX_NUM_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01002766 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002767
Denys Vlasenko7d628012018-12-04 21:46:47 +01002768 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002769 bc_vec_expand(&l->t.v, 1 + len);
Gavin Howard01055ba2018-11-03 11:00:21 -06002770 bc_vec_push(&l->t.v, &start);
2771
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002772 while (ccnt != 0) {
Gavin Howard01055ba2018-11-03 11:00:21 -06002773 // If we have hit a backslash, skip it. We don't have
2774 // to check for a newline because it's guaranteed.
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002775 if (*buf == '\\') {
2776 buf += 2;
2777 ccnt -= 2;
Gavin Howard01055ba2018-11-03 11:00:21 -06002778 continue;
2779 }
Denys Vlasenkoc355c4a2018-12-11 17:36:21 +01002780 bc_vec_push(&l->t.v, buf);
2781 buf++;
2782 ccnt--;
Gavin Howard01055ba2018-11-03 11:00:21 -06002783 }
2784
Denys Vlasenko08c033c2018-12-05 16:55:08 +01002785 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002786
Denys Vlasenko29301232018-12-11 15:29:32 +01002787 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06002788}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002789#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002790
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002791static void bc_lex_name(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002792{
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002793 size_t i;
2794 const char *buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06002795
2796 l->t.t = BC_LEX_NAME;
2797
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002798 i = 0;
2799 buf = l->buf + l->i - 1;
2800 for (;;) {
2801 char c = buf[i];
2802 if ((c < 'a' || c > 'z') && !isdigit(c) && c != '_') break;
2803 i++;
2804 }
Gavin Howard01055ba2018-11-03 11:00:21 -06002805
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002806#if 0 // We do not protect against people with gigabyte-long names
Denys Vlasenko64074a12018-12-07 15:50:14 +01002807 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
2808 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
2809 if (i > BC_MAX_STRING)
2810 return bc_error("name too long: must be [1,"BC_MAX_STRING_STR"]");
2811 }
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002812#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06002813 bc_vec_string(&l->t.v, i, buf);
2814
2815 // Increment the index. We minus 1 because it has already been incremented.
2816 l->i += i - 1;
2817
Denys Vlasenko88cfea62018-12-10 20:26:04 +01002818 //return BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002819}
2820
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002821static void bc_lex_init(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002822{
Denys Vlasenko7d628012018-12-04 21:46:47 +01002823 bc_char_vec_init(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06002824}
2825
2826static void bc_lex_free(BcLex *l)
2827{
2828 bc_vec_free(&l->t.v);
2829}
2830
Denys Vlasenko0409ad32018-12-05 16:39:22 +01002831static void bc_lex_file(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002832{
Denys Vlasenko5318f812018-12-05 17:48:01 +01002833 G.err_line = l->line = 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06002834 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002835}
2836
Denys Vlasenkoe755e302018-12-13 22:25:28 +01002837IF_BC(static BC_STATUS zbc_lex_token(BcLex *l);)
2838IF_DC(static BC_STATUS zdc_lex_token(BcLex *l);)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002839
2840static BC_STATUS zcommon_lex_token(BcLex *l)
2841{
2842 if (IS_BC) {
2843 IF_BC(RETURN_STATUS(zbc_lex_token(l));)
2844 }
2845 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2846}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002847#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01002848
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002849static bool bc_lex_more_input(BcLex *l)
2850{
2851 size_t str;
2852 bool comment;
2853
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002854 bc_vec_pop_all(&G.input_buffer);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002855
2856 // This loop is complex because the vm tries not to send any lines that end
2857 // with a backslash to the parser. The reason for that is because the parser
2858 // treats a backslash+newline combo as whitespace, per the bc spec. In that
2859 // case, and for strings and comments, the parser will expect more stuff.
2860 comment = false;
2861 str = 0;
2862 for (;;) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002863 size_t prevlen = G.input_buffer.len;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002864 char *string;
2865
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002866 bc_read_line(&G.input_buffer, G.input_fp);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002867 // No more input means EOF
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002868 if (G.input_buffer.len <= prevlen + 1) // (we expect +1 for NUL byte)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002869 break;
2870
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002871 string = G.input_buffer.v + prevlen;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002872 while (*string) {
2873 char c = *string;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002874 if (string == G.input_buffer.v || string[-1] != '\\') {
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002875 if (IS_BC)
2876 str ^= (c == '"');
2877 else {
2878 if (c == ']')
2879 str -= 1;
2880 else if (c == '[')
2881 str += 1;
2882 }
2883 }
2884 string++;
2885 if (c == '/' && *string == '*') {
2886 comment = true;
2887 string++;
2888 continue;
2889 }
2890 if (c == '*' && *string == '/') {
2891 comment = false;
2892 string++;
2893 }
2894 }
2895 if (str != 0 || comment) {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002896 G.input_buffer.len--; // backstep over the trailing NUL byte
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002897 continue;
2898 }
2899
2900 // Check for backslash+newline.
2901 // we do not check that last char is '\n' -
2902 // if it is not, then it's EOF, and looping back
2903 // to bc_read_line() will detect it:
2904 string -= 2;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002905 if (string >= G.input_buffer.v && *string == '\\') {
2906 G.input_buffer.len--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002907 continue;
2908 }
2909
2910 break;
2911 }
2912
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002913 l->buf = G.input_buffer.v;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002914 l->i = 0;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002915// bb_error_msg("G.input_buffer.len:%d '%s'", G.input_buffer.len, G.input_buffer.v);
2916 l->len = G.input_buffer.len - 1; // do not include NUL
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002917
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002918 return l->len != 0;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01002919}
2920
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002921static BC_STATUS zbc_lex_next(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002922{
2923 BcStatus s;
2924
2925 l->t.last = l->t.t;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002926 if (l->t.last == BC_LEX_EOF) RETURN_STATUS(bc_error("end of file"));
Gavin Howard01055ba2018-11-03 11:00:21 -06002927
2928 l->line += l->newline;
Denys Vlasenko5318f812018-12-05 17:48:01 +01002929 G.err_line = l->line;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002930 l->newline = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06002931
2932 // Loop until failure or we don't have whitespace. This
2933 // is so the parser doesn't get inundated with whitespace.
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01002934 // Comments are also BC_LEX_WHITESPACE tokens and eaten here.
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002935 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06002936 do {
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002937 if (l->i == l->len) {
Denys Vlasenko55f3cab2018-12-18 14:37:16 +01002938 l->t.t = BC_LEX_EOF;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01002939 if (!G.input_fp)
2940 RETURN_STATUS(BC_STATUS_SUCCESS);
2941 if (!bc_lex_more_input(l)) {
2942 G.input_fp = NULL;
2943 RETURN_STATUS(BC_STATUS_SUCCESS);
2944 }
2945 // here it's guaranteed that l->i is below l->len
2946 }
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002947 dbg_lex("next string to parse:'%.*s'",
Denys Vlasenko0a238142018-12-14 16:48:34 +01002948 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2949 l->buf + l->i);
Denys Vlasenkoec603182018-12-17 10:34:02 +01002950 s = zcommon_lex_token(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06002951 } while (!s && l->t.t == BC_LEX_WHITESPACE);
Denys Vlasenko17df8822018-12-14 23:00:24 +01002952 dbg_lex("l->t.t from string:%d", l->t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06002953
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002954 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06002955}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002956#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002957
Denys Vlasenko408b7d42018-12-19 19:43:03 +01002958#if ENABLE_BC
Denys Vlasenko202dd192018-12-16 17:30:35 +01002959static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
2960{
2961 if (l->t.t == BC_LEX_NLINE)
2962 RETURN_STATUS(zbc_lex_next(l));
2963 RETURN_STATUS(BC_STATUS_SUCCESS);
2964}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002965#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko202dd192018-12-16 17:30:35 +01002966
2967static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
2968{
2969 BcStatus s;
2970 s = zbc_lex_next(l);
2971 if (s) RETURN_STATUS(s);
2972 // if(cond)<newline>stmt is accepted too (but not 2+ newlines)
2973 s = zbc_lex_skip_if_at_NLINE(l);
2974 RETURN_STATUS(s);
2975}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002976#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko408b7d42018-12-19 19:43:03 +01002977#endif
Denys Vlasenko202dd192018-12-16 17:30:35 +01002978
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01002979static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06002980{
2981 l->buf = text;
2982 l->i = 0;
2983 l->len = strlen(text);
2984 l->t.t = l->t.last = BC_LEX_INVALID;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002985 RETURN_STATUS(zbc_lex_next(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06002986}
Denys Vlasenkoec603182018-12-17 10:34:02 +01002987#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06002988
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01002989#if ENABLE_BC
Denys Vlasenko9a34e892018-12-12 13:58:55 +01002990static BC_STATUS zbc_lex_identifier(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06002991{
2992 BcStatus s;
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002993 unsigned i;
Gavin Howard01055ba2018-11-03 11:00:21 -06002994 const char *buf = l->buf + l->i - 1;
2995
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01002996 for (i = 0; i < ARRAY_SIZE(bc_lex_kws); ++i) {
2997 const char *keyword8 = bc_lex_kws[i].name8;
2998 unsigned j = 0;
2999 while (buf[j] != '\0' && buf[j] == keyword8[j]) {
3000 j++;
3001 if (j == 8) goto match;
Gavin Howard01055ba2018-11-03 11:00:21 -06003002 }
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003003 if (keyword8[j] != '\0')
3004 continue;
3005 match:
3006 // buf starts with keyword bc_lex_kws[i]
Denys Vlasenko5acd14b2018-12-20 16:48:50 +01003007 if (isalnum(buf[j]) || buf[j]=='_')
3008 continue; // "ifz" does not match "if" keyword, "if." does
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003009 l->t.t = BC_LEX_KEY_1st_keyword + i;
Denys Vlasenkod00d2f92018-12-06 12:59:40 +01003010 if (!bc_lex_kws_POSIX(i)) {
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01003011 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003012 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003013 }
3014
3015 // We minus 1 because the index has already been incremented.
3016 l->i += j - 1;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003017 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003018 }
3019
Denys Vlasenko88cfea62018-12-10 20:26:04 +01003020 bc_lex_name(l);
Denys Vlasenko0f31a5c2018-12-18 03:16:48 +01003021 s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06003022
Denys Vlasenko0d7e46b2018-12-05 18:31:19 +01003023 if (l->t.v.len > 2) {
3024 // Prevent this:
3025 // >>> qwe=1
3026 // bc: POSIX only allows one character names; the following is bad: 'qwe=1
3027 // '
3028 unsigned len = strchrnul(buf, '\n') - buf;
3029 s = bc_posix_error_fmt("POSIX only allows one character names; the following is bad: '%.*s'", len, buf);
3030 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003031
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003032 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003033}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003034#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003035
Denys Vlasenko26819db2018-12-12 16:08:46 +01003036static BC_STATUS zbc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003037{
Denys Vlasenko07597cd2018-12-18 14:03:20 +01003038 size_t len, nls, i;
Gavin Howard01055ba2018-11-03 11:00:21 -06003039
3040 l->t.t = BC_LEX_STR;
3041
Denys Vlasenko07597cd2018-12-18 14:03:20 +01003042 nls = 0;
3043 i = l->i;
3044 for (;;) {
3045 char c = l->buf[i];
3046 if (c == '\0') {
3047 l->i = i;
3048 RETURN_STATUS(bc_error("string end could not be found"));
3049 }
3050 if (c == '"')
3051 break;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003052 nls += (c == '\n');
Denys Vlasenko07597cd2018-12-18 14:03:20 +01003053 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003054 }
3055
3056 len = i - l->i;
Denys Vlasenko64074a12018-12-07 15:50:14 +01003057 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3058 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3059 if (len > BC_MAX_STRING)
Denys Vlasenko9811ad02018-12-12 23:25:13 +01003060 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003061 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003062 bc_vec_string(&l->t.v, len, l->buf + l->i);
3063
3064 l->i = i + 1;
3065 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003066 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003067
Denys Vlasenko26819db2018-12-12 16:08:46 +01003068 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003069}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003070#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003071
Denys Vlasenko0a238142018-12-14 16:48:34 +01003072static void bc_lex_assign(BcLex *l, unsigned with_and_without)
Gavin Howard01055ba2018-11-03 11:00:21 -06003073{
3074 if (l->buf[l->i] == '=') {
3075 ++l->i;
Denys Vlasenko0a238142018-12-14 16:48:34 +01003076 with_and_without >>= 8; // store "with" value
3077 } // else store "without" value
3078 l->t.t = (with_and_without & 0xff);
Gavin Howard01055ba2018-11-03 11:00:21 -06003079}
Denys Vlasenko0a238142018-12-14 16:48:34 +01003080#define bc_lex_assign(l, with, without) \
3081 bc_lex_assign(l, ((with)<<8)|(without))
Gavin Howard01055ba2018-11-03 11:00:21 -06003082
Denys Vlasenko29301232018-12-11 15:29:32 +01003083static BC_STATUS zbc_lex_comment(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003084{
3085 size_t i, nls = 0;
3086 const char *buf = l->buf;
Gavin Howard01055ba2018-11-03 11:00:21 -06003087
3088 l->t.t = BC_LEX_WHITESPACE;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003089 i = l->i; /* here buf[l->i] is the '*' of opening comment delimiter */
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003090 for (;;) {
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003091 char c = buf[++i];
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003092 check_star:
3093 if (c == '*') {
3094 c = buf[++i];
3095 if (c == '/')
3096 break;
3097 goto check_star;
3098 }
3099 if (c == '\0') {
Gavin Howard01055ba2018-11-03 11:00:21 -06003100 l->i = i;
Denys Vlasenko29301232018-12-11 15:29:32 +01003101 RETURN_STATUS(bc_error("comment end could not be found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06003102 }
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003103 nls += (c == '\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06003104 }
3105
Denys Vlasenkobc5ce662018-12-03 19:12:29 +01003106 l->i = i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06003107 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003108 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003109
Denys Vlasenko29301232018-12-11 15:29:32 +01003110 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003111}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003112#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003113
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003114static BC_STATUS zbc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003115{
3116 BcStatus s = BC_STATUS_SUCCESS;
3117 char c = l->buf[l->i++], c2;
3118
3119 // This is the workhorse of the lexer.
3120 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003121// case '\0': // probably never reached
3122// l->i--;
3123// l->t.t = BC_LEX_EOF;
3124// l->newline = true;
3125// break;
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01003126 case '\n':
3127 l->t.t = BC_LEX_NLINE;
3128 l->newline = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06003129 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003130 case '\t':
3131 case '\v':
3132 case '\f':
3133 case '\r':
3134 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003135 bc_lex_whitespace(l);
3136 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003137 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003138 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
Gavin Howard01055ba2018-11-03 11:00:21 -06003139 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
Denys Vlasenko00646792018-12-05 18:12:27 +01003140 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003141 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003142 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003143 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003144 case '"':
Denys Vlasenko26819db2018-12-12 16:08:46 +01003145 s = zbc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003146 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003147 case '#':
Denys Vlasenko00646792018-12-05 18:12:27 +01003148 s = bc_POSIX_does_not_allow("'#' script comments");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003149 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003150 bc_lex_lineComment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003151 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003152 case '%':
Gavin Howard01055ba2018-11-03 11:00:21 -06003153 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MODULUS, BC_LEX_OP_MODULUS);
3154 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003155 case '&':
Gavin Howard01055ba2018-11-03 11:00:21 -06003156 c2 = l->buf[l->i];
3157 if (c2 == '&') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003158 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003159 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003160 ++l->i;
3161 l->t.t = BC_LEX_OP_BOOL_AND;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003162 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003163 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003164 s = bc_error_bad_character('&');
Gavin Howard01055ba2018-11-03 11:00:21 -06003165 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003166 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003167 case '(':
3168 case ')':
Gavin Howard01055ba2018-11-03 11:00:21 -06003169 l->t.t = (BcLexType)(c - '(' + BC_LEX_LPAREN);
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_ASSIGN_MULTIPLY, BC_LEX_OP_MULTIPLY);
3173 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003174 case '+':
Gavin Howard01055ba2018-11-03 11:00:21 -06003175 c2 = l->buf[l->i];
3176 if (c2 == '+') {
3177 ++l->i;
3178 l->t.t = BC_LEX_OP_INC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003179 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003180 bc_lex_assign(l, BC_LEX_OP_ASSIGN_PLUS, BC_LEX_OP_PLUS);
3181 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003182 case ',':
Gavin Howard01055ba2018-11-03 11:00:21 -06003183 l->t.t = BC_LEX_COMMA;
3184 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003185 case '-':
Gavin Howard01055ba2018-11-03 11:00:21 -06003186 c2 = l->buf[l->i];
3187 if (c2 == '-') {
3188 ++l->i;
3189 l->t.t = BC_LEX_OP_DEC;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003190 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003191 bc_lex_assign(l, BC_LEX_OP_ASSIGN_MINUS, BC_LEX_OP_MINUS);
3192 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003193 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003194 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003195 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003196 else {
3197 l->t.t = BC_LEX_KEY_LAST;
Denys Vlasenko00646792018-12-05 18:12:27 +01003198 s = bc_POSIX_does_not_allow("a period ('.') as a shortcut for the last result");
Gavin Howard01055ba2018-11-03 11:00:21 -06003199 }
3200 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003201 case '/':
Gavin Howard01055ba2018-11-03 11:00:21 -06003202 c2 = l->buf[l->i];
3203 if (c2 == '*')
Denys Vlasenko29301232018-12-11 15:29:32 +01003204 s = zbc_lex_comment(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003205 else
3206 bc_lex_assign(l, BC_LEX_OP_ASSIGN_DIVIDE, BC_LEX_OP_DIVIDE);
3207 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003208 case '0':
3209 case '1':
3210 case '2':
3211 case '3':
3212 case '4':
3213 case '5':
3214 case '6':
3215 case '7':
3216 case '8':
3217 case '9':
3218 case 'A':
3219 case 'B':
3220 case 'C':
3221 case 'D':
3222 case 'E':
3223 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003224 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003225 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003226 case ';':
Gavin Howard01055ba2018-11-03 11:00:21 -06003227 l->t.t = BC_LEX_SCOLON;
3228 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003229 case '<':
Gavin Howard01055ba2018-11-03 11:00:21 -06003230 bc_lex_assign(l, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_LT);
3231 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003232 case '=':
Gavin Howard01055ba2018-11-03 11:00:21 -06003233 bc_lex_assign(l, BC_LEX_OP_REL_EQ, BC_LEX_OP_ASSIGN);
3234 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003235 case '>':
Gavin Howard01055ba2018-11-03 11:00:21 -06003236 bc_lex_assign(l, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_GT);
3237 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003238 case '[':
3239 case ']':
Gavin Howard01055ba2018-11-03 11:00:21 -06003240 l->t.t = (BcLexType)(c - '[' + BC_LEX_LBRACKET);
3241 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003242 case '\\':
Gavin Howard01055ba2018-11-03 11:00:21 -06003243 if (l->buf[l->i] == '\n') {
3244 l->t.t = BC_LEX_WHITESPACE;
3245 ++l->i;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003246 } else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003247 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003248 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003249 case '^':
Gavin Howard01055ba2018-11-03 11:00:21 -06003250 bc_lex_assign(l, BC_LEX_OP_ASSIGN_POWER, BC_LEX_OP_POWER);
3251 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003252 case 'a':
3253 case 'b':
3254 case 'c':
3255 case 'd':
3256 case 'e':
3257 case 'f':
3258 case 'g':
3259 case 'h':
3260 case 'i':
3261 case 'j':
3262 case 'k':
3263 case 'l':
3264 case 'm':
3265 case 'n':
3266 case 'o':
3267 case 'p':
3268 case 'q':
3269 case 'r':
3270 case 's':
3271 case 't':
3272 case 'u':
3273 case 'v':
3274 case 'w':
3275 case 'x':
3276 case 'y':
3277 case 'z':
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003278 s = zbc_lex_identifier(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003279 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003280 case '{':
3281 case '}':
Gavin Howard01055ba2018-11-03 11:00:21 -06003282 l->t.t = (BcLexType)(c - '{' + BC_LEX_LBRACE);
3283 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003284 case '|':
Gavin Howard01055ba2018-11-03 11:00:21 -06003285 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003286 if (c2 == '|') {
Denys Vlasenko00646792018-12-05 18:12:27 +01003287 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
Denys Vlasenkoec603182018-12-17 10:34:02 +01003288 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06003289 ++l->i;
3290 l->t.t = BC_LEX_OP_BOOL_OR;
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003291 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003292 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003293 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003294 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003295 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003296 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003297 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003298 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003299 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003300 }
3301
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003302 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003303}
3304#endif // ENABLE_BC
3305
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01003306#if ENABLE_DC
Denys Vlasenko29301232018-12-11 15:29:32 +01003307static BC_STATUS zdc_lex_register(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003308{
Gavin Howard01055ba2018-11-03 11:00:21 -06003309 if (isspace(l->buf[l->i - 1])) {
3310 bc_lex_whitespace(l);
3311 ++l->i;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01003312 if (!G_exreg)
Denys Vlasenko29301232018-12-11 15:29:32 +01003313 RETURN_STATUS(bc_error("extended register"));
3314 bc_lex_name(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003315 }
3316 else {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003317 bc_vec_pop_all(&l->t.v);
Denys Vlasenkoe55a5722018-12-06 12:47:17 +01003318 bc_vec_push(&l->t.v, &l->buf[l->i - 1]);
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003319 bc_vec_pushZeroByte(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003320 l->t.t = BC_LEX_NAME;
3321 }
3322
Denys Vlasenko29301232018-12-11 15:29:32 +01003323 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003324}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003325#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003326
Denys Vlasenko29301232018-12-11 15:29:32 +01003327static BC_STATUS zdc_lex_string(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003328{
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003329 size_t depth, nls, i;
Gavin Howard01055ba2018-11-03 11:00:21 -06003330
3331 l->t.t = BC_LEX_STR;
Denys Vlasenko7d628012018-12-04 21:46:47 +01003332 bc_vec_pop_all(&l->t.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06003333
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003334 nls = 0;
3335 depth = 1;
3336 i = l->i;
3337 for (;;) {
3338 char c = l->buf[i];
3339 if (c == '\0') {
3340 l->i = i;
3341 RETURN_STATUS(bc_error("string end could not be found"));
3342 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003343 nls += (c == '\n');
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003344 if (i == l->i || l->buf[i - 1] != '\\') {
3345 if (c == '[') depth++;
3346 if (c == ']')
3347 if (--depth == 0)
3348 break;
3349 }
3350 bc_vec_push(&l->t.v, &l->buf[i]);
3351 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003352 }
Denys Vlasenkoef271da2018-12-18 13:48:37 +01003353 i++;
Gavin Howard01055ba2018-11-03 11:00:21 -06003354
Denys Vlasenko08c033c2018-12-05 16:55:08 +01003355 bc_vec_pushZeroByte(&l->t.v);
Denys Vlasenko64074a12018-12-07 15:50:14 +01003356 // This check makes sense only if size_t is (much) larger than BC_MAX_STRING.
3357 if (SIZE_MAX > (BC_MAX_STRING | 0xff)) {
3358 if (i - l->i > BC_MAX_STRING)
Denys Vlasenko29301232018-12-11 15:29:32 +01003359 RETURN_STATUS(bc_error("string too long: must be [1,"BC_MAX_STRING_STR"]"));
Denys Vlasenko64074a12018-12-07 15:50:14 +01003360 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003361
3362 l->i = i;
3363 l->line += nls;
Denys Vlasenko5318f812018-12-05 17:48:01 +01003364 G.err_line = l->line;
Gavin Howard01055ba2018-11-03 11:00:21 -06003365
Denys Vlasenko29301232018-12-11 15:29:32 +01003366 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003367}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003368#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003369
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003370static BC_STATUS zdc_lex_token(BcLex *l)
Gavin Howard01055ba2018-11-03 11:00:21 -06003371{
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003372 static const //BcLexType - should be this type, but narrower type saves size:
3373 uint8_t
3374 dc_lex_regs[] = {
3375 BC_LEX_OP_REL_EQ, BC_LEX_OP_REL_LE, BC_LEX_OP_REL_GE, BC_LEX_OP_REL_NE,
3376 BC_LEX_OP_REL_LT, BC_LEX_OP_REL_GT, BC_LEX_SCOLON, BC_LEX_COLON,
3377 BC_LEX_ELSE, BC_LEX_LOAD, BC_LEX_LOAD_POP, BC_LEX_OP_ASSIGN,
3378 BC_LEX_STORE_PUSH,
3379 };
3380 static const //BcLexType - should be this type
3381 uint8_t
3382 dc_lex_tokens[] = {
3383 /* %&'( */
3384 BC_LEX_OP_MODULUS, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_LPAREN,
3385 /* )*+, */
3386 BC_LEX_INVALID, BC_LEX_OP_MULTIPLY, BC_LEX_OP_PLUS, BC_LEX_INVALID,
3387 /* -./ */
3388 BC_LEX_OP_MINUS, BC_LEX_INVALID, BC_LEX_OP_DIVIDE,
3389 /* 0123456789 */
3390 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3391 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3392 BC_LEX_INVALID, BC_LEX_INVALID,
3393 /* :;<=>?@ */
3394 BC_LEX_COLON, BC_LEX_SCOLON, BC_LEX_OP_REL_GT, BC_LEX_OP_REL_EQ,
3395 BC_LEX_OP_REL_LT, BC_LEX_KEY_READ, BC_LEX_INVALID,
3396 /* ABCDEFGH */
3397 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3398 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_EQ_NO_REG, BC_LEX_INVALID,
3399 /* IJKLMNOP */
3400 BC_LEX_KEY_IBASE, BC_LEX_INVALID, BC_LEX_KEY_SCALE, BC_LEX_LOAD_POP,
3401 BC_LEX_INVALID, BC_LEX_OP_BOOL_NOT, BC_LEX_KEY_OBASE, BC_LEX_PRINT_STREAM,
3402 /* QRSTUVWXY */
3403 BC_LEX_NQUIT, BC_LEX_POP, BC_LEX_STORE_PUSH, BC_LEX_INVALID, BC_LEX_INVALID,
3404 BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_SCALE_FACTOR, BC_LEX_INVALID,
3405 /* Z[\] */
3406 BC_LEX_KEY_LENGTH, BC_LEX_INVALID, BC_LEX_INVALID, BC_LEX_INVALID,
3407 /* ^_` */
3408 BC_LEX_OP_POWER, BC_LEX_NEG, BC_LEX_INVALID,
3409 /* abcdefgh */
3410 BC_LEX_ASCIIFY, BC_LEX_INVALID, BC_LEX_CLEAR_STACK, BC_LEX_DUPLICATE,
3411 BC_LEX_ELSE, BC_LEX_PRINT_STACK, BC_LEX_INVALID, BC_LEX_INVALID,
3412 /* ijklmnop */
3413 BC_LEX_STORE_IBASE, BC_LEX_INVALID, BC_LEX_STORE_SCALE, BC_LEX_LOAD,
3414 BC_LEX_INVALID, BC_LEX_PRINT_POP, BC_LEX_STORE_OBASE, BC_LEX_KEY_PRINT,
3415 /* qrstuvwx */
3416 BC_LEX_KEY_QUIT, BC_LEX_SWAP, BC_LEX_OP_ASSIGN, BC_LEX_INVALID,
3417 BC_LEX_INVALID, BC_LEX_KEY_SQRT, BC_LEX_INVALID, BC_LEX_EXECUTE,
3418 /* yz */
3419 BC_LEX_INVALID, BC_LEX_STACK_LEVEL,
3420 /* {|}~ */
3421 BC_LEX_LBRACE, BC_LEX_OP_MODEXP, BC_LEX_INVALID, BC_LEX_OP_DIVMOD,
3422 };
3423
Gavin Howard01055ba2018-11-03 11:00:21 -06003424 BcStatus s = BC_STATUS_SUCCESS;
3425 char c = l->buf[l->i++], c2;
3426 size_t i;
3427
Denys Vlasenko51fb8aa2018-12-05 00:22:34 +01003428 for (i = 0; i < ARRAY_SIZE(dc_lex_regs); ++i) {
3429 if (l->t.last == dc_lex_regs[i])
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003430 RETURN_STATUS(zdc_lex_register(l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003431 }
3432
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003433 if (c >= '%' && c <= '~'
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003434 && (l->t.t = dc_lex_tokens[c - '%']) != BC_LEX_INVALID
Denys Vlasenko12b9eaf2018-12-11 23:50:14 +01003435 ) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003436 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003437 }
3438
3439 // This is the workhorse of the lexer.
3440 switch (c) {
Denys Vlasenkob44a7f12018-12-17 11:58:20 +01003441// case '\0': // probably never reached
3442// l->t.t = BC_LEX_EOF;
3443// break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003444 case '\n':
3445 case '\t':
3446 case '\v':
3447 case '\f':
3448 case '\r':
3449 case ' ':
Gavin Howard01055ba2018-11-03 11:00:21 -06003450 l->newline = (c == '\n');
3451 bc_lex_whitespace(l);
3452 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003453 case '!':
Gavin Howard01055ba2018-11-03 11:00:21 -06003454 c2 = l->buf[l->i];
Gavin Howard01055ba2018-11-03 11:00:21 -06003455 if (c2 == '=')
3456 l->t.t = BC_LEX_OP_REL_NE;
3457 else if (c2 == '<')
3458 l->t.t = BC_LEX_OP_REL_LE;
3459 else if (c2 == '>')
3460 l->t.t = BC_LEX_OP_REL_GE;
3461 else
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003462 RETURN_STATUS(bc_error_bad_character(c));
Gavin Howard01055ba2018-11-03 11:00:21 -06003463 ++l->i;
3464 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003465 case '#':
Gavin Howard01055ba2018-11-03 11:00:21 -06003466 bc_lex_lineComment(l);
3467 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003468 case '.':
Gavin Howard01055ba2018-11-03 11:00:21 -06003469 if (isdigit(l->buf[l->i]))
Denys Vlasenko29301232018-12-11 15:29:32 +01003470 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003471 else
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003472 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003473 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003474 case '0':
3475 case '1':
3476 case '2':
3477 case '3':
3478 case '4':
3479 case '5':
3480 case '6':
3481 case '7':
3482 case '8':
3483 case '9':
3484 case 'A':
3485 case 'B':
3486 case 'C':
3487 case 'D':
3488 case 'E':
3489 case 'F':
Denys Vlasenko29301232018-12-11 15:29:32 +01003490 s = zbc_lex_number(l, c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003491 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003492 case '[':
Denys Vlasenko29301232018-12-11 15:29:32 +01003493 s = zdc_lex_string(l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003494 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003495 default:
Gavin Howard01055ba2018-11-03 11:00:21 -06003496 l->t.t = BC_LEX_INVALID;
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003497 s = bc_error_bad_character(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06003498 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06003499 }
3500
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003501 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003502}
3503#endif // ENABLE_DC
3504
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003505static void bc_parse_push(BcParse *p, char i)
3506{
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01003507 dbg_compile("%s:%d pushing bytecode %zd:%d", __func__, __LINE__, p->func->code.len, i);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003508 bc_vec_pushByte(&p->func->code, i);
3509}
Denys Vlasenkob23ac512018-12-06 13:10:56 +01003510
Gavin Howard01055ba2018-11-03 11:00:21 -06003511static void bc_parse_pushName(BcParse *p, char *name)
3512{
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003513 while (*name)
3514 bc_parse_push(p, *name++);
Gavin Howard01055ba2018-11-03 11:00:21 -06003515 bc_parse_push(p, BC_PARSE_STREND);
Gavin Howard01055ba2018-11-03 11:00:21 -06003516}
3517
3518static void bc_parse_pushIndex(BcParse *p, size_t idx)
3519{
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003520 size_t mask;
3521 unsigned amt;
Gavin Howard01055ba2018-11-03 11:00:21 -06003522
Denys Vlasenkof4f10722018-12-18 02:23:53 +01003523 dbg_lex("%s:%d pushing index %zd", __func__, __LINE__, idx);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003524 mask = ((size_t)0xff) << (sizeof(idx) * 8 - 8);
3525 amt = sizeof(idx);
3526 do {
3527 if (idx & mask) break;
3528 mask >>= 8;
3529 amt--;
3530 } while (amt != 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06003531
3532 bc_parse_push(p, amt);
Denys Vlasenkoc2da68e2018-12-12 16:44:34 +01003533
3534 while (idx != 0) {
3535 bc_parse_push(p, (unsigned char)idx);
3536 idx >>= 8;
3537 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003538}
3539
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003540#if ENABLE_BC
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003541static void bc_parse_pushJUMP(BcParse *p, size_t idx)
3542{
3543 bc_parse_push(p, BC_INST_JUMP);
3544 bc_parse_pushIndex(p, idx);
3545}
3546
3547static void bc_parse_pushJUMP_ZERO(BcParse *p, size_t idx)
3548{
3549 bc_parse_push(p, BC_INST_JUMP_ZERO);
3550 bc_parse_pushIndex(p, idx);
3551}
3552
Denys Vlasenko44dbe672018-12-19 19:10:40 +01003553static BC_STATUS bc_parse_pushSTR(BcParse *p)
3554{
3555 char *str = xstrdup(p->l.t.v.v);
3556
3557 bc_parse_push(p, BC_INST_STR);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01003558 bc_parse_pushIndex(p, p->func->strs.len);
3559 bc_vec_push(&p->func->strs, &str);
Denys Vlasenko44dbe672018-12-19 19:10:40 +01003560
3561 RETURN_STATUS(zbc_lex_next(&p->l));
3562}
3563#define bc_parse_pushSTR(...) (bc_parse_pushSTR(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003564#endif
3565
3566static void bc_parse_pushNUM(BcParse *p)
3567{
3568 char *num = xstrdup(p->l.t.v.v);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01003569#if ENABLE_BC && ENABLE_DC
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01003570 size_t idx = bc_vec_push(IS_BC ? &p->func->consts : &G.prog.consts, &num);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01003571#elif ENABLE_BC
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01003572 size_t idx = bc_vec_push(&p->func->consts, &num);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01003573#else // DC
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01003574 size_t idx = bc_vec_push(&G.prog.consts, &num);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01003575#endif
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003576 bc_parse_push(p, BC_INST_NUM);
3577 bc_parse_pushIndex(p, idx);
3578}
Denys Vlasenko44dbe672018-12-19 19:10:40 +01003579
Denys Vlasenko99b37622018-12-15 20:06:59 +01003580IF_BC(static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p);)
Denys Vlasenkoe755e302018-12-13 22:25:28 +01003581IF_DC(static BC_STATUS zdc_parse_parse(BcParse *p);)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003582
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003583// "Parse" half of "parse,execute,repeat" main loop
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003584static BC_STATUS zcommon_parse(BcParse *p)
3585{
3586 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003587// FIXME: "eating" of stmt delemiters is coded inconsistently
3588// (sometimes zbc_parse_stmt() eats the delimiter, sometimes don't),
3589// which causes bugs such as "print 1 print 2" erroneously accepted,
3590// or "print 1 else 2" detecting parse error only after executing
3591// "print 1" part.
Denys Vlasenko99b37622018-12-15 20:06:59 +01003592 IF_BC(RETURN_STATUS(zbc_parse_stmt_or_funcdef(p));)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003593 }
3594 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3595}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003596#define zcommon_parse(...) (zcommon_parse(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01003597
Denys Vlasenkof86e9602018-12-14 17:01:56 +01003598static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06003599{
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01003600 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003601
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003602 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
Gavin Howard01055ba2018-11-03 11:00:21 -06003603}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003604#define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003605
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003606// Called when parsing or execution detects a failure,
3607// resets execution structures.
3608static void bc_program_reset(void)
3609{
3610 BcFunc *f;
3611 BcInstPtr *ip;
3612
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01003613 bc_vec_npop(&G.prog.exestack, G.prog.exestack.len - 1);
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003614 bc_vec_pop_all(&G.prog.results);
3615
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01003616 f = bc_program_func_BC_PROG_MAIN();
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01003617 ip = bc_vec_top(&G.prog.exestack);
Denys Vlasenko24e41942018-12-21 23:01:26 +01003618 ip->inst_idx = f->code.len;
Denys Vlasenkob6f60862018-12-06 12:54:26 +01003619}
3620
Denys Vlasenko26819db2018-12-12 16:08:46 +01003621// Called when zbc/zdc_parse_parse() detects a failure,
Denys Vlasenkod38af482018-12-04 19:11:02 +01003622// resets parsing structures.
3623static void bc_parse_reset(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003624{
3625 if (p->fidx != BC_PROG_MAIN) {
Denys Vlasenko7d628012018-12-04 21:46:47 +01003626 bc_vec_pop_all(&p->func->code);
Denys Vlasenko503faf92018-12-20 16:24:18 +01003627 IF_BC(bc_vec_pop_all(&p->func->labels);)
3628 IF_BC(bc_vec_pop_all(&p->func->autos);)
3629 IF_BC(p->func->nparams = 0;)
Gavin Howard01055ba2018-11-03 11:00:21 -06003630
Denys Vlasenko65e10462018-12-19 15:13:14 +01003631 p->fidx = BC_PROG_MAIN;
3632 p->func = bc_program_func_BC_PROG_MAIN();
Gavin Howard01055ba2018-11-03 11:00:21 -06003633 }
3634
3635 p->l.i = p->l.len;
3636 p->l.t.t = BC_LEX_EOF;
Gavin Howard01055ba2018-11-03 11:00:21 -06003637
Denys Vlasenko503faf92018-12-20 16:24:18 +01003638 IF_BC(bc_vec_pop_all(&p->exits);)
3639 IF_BC(bc_vec_pop_all(&p->conds);)
3640 IF_BC(bc_vec_pop_all(&p->ops);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003641
Denys Vlasenkod38af482018-12-04 19:11:02 +01003642 bc_program_reset();
Gavin Howard01055ba2018-11-03 11:00:21 -06003643}
3644
3645static void bc_parse_free(BcParse *p)
3646{
Denys Vlasenko503faf92018-12-20 16:24:18 +01003647 IF_BC(bc_vec_free(&p->exits);)
3648 IF_BC(bc_vec_free(&p->conds);)
3649 IF_BC(bc_vec_free(&p->ops);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003650 bc_lex_free(&p->l);
3651}
3652
Denys Vlasenkofa210792018-12-19 19:35:40 +01003653static void bc_parse_create(BcParse *p, size_t fidx)
Gavin Howard01055ba2018-11-03 11:00:21 -06003654{
3655 memset(p, 0, sizeof(BcParse));
3656
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01003657 bc_lex_init(&p->l);
Denys Vlasenko503faf92018-12-20 16:24:18 +01003658 IF_BC(bc_vec_init(&p->exits, sizeof(size_t), NULL);)
3659 IF_BC(bc_vec_init(&p->conds, sizeof(size_t), NULL);)
3660 IF_BC(bc_vec_init(&p->ops, sizeof(BcLexType), NULL);)
Gavin Howard01055ba2018-11-03 11:00:21 -06003661
Denys Vlasenkofa210792018-12-19 19:35:40 +01003662 p->fidx = fidx;
3663 p->func = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003664}
3665
Denys Vlasenko04715442018-12-21 00:10:26 +01003666static void bc_program_add_fn(void)
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01003667{
Denys Vlasenko04715442018-12-21 00:10:26 +01003668 //size_t idx;
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01003669 BcFunc f;
3670 bc_func_init(&f);
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01003671 //idx =
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01003672 bc_vec_push(&G.prog.fns, &f);
Denys Vlasenko04715442018-12-21 00:10:26 +01003673 //return idx;
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01003674}
3675
3676#if ENABLE_BC
3677
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003678// Note: takes ownership of 'name' (must be malloced)
3679static size_t bc_program_addFunc(char *name)
3680{
3681 size_t idx;
3682 BcId entry, *entry_ptr;
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003683 int inserted;
3684
3685 entry.name = name;
3686 entry.idx = G.prog.fns.len;
3687
3688 inserted = bc_map_insert(&G.prog.fn_map, &entry, &idx);
3689 if (!inserted) free(name);
3690
3691 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
3692 idx = entry_ptr->idx;
3693
3694 if (!inserted) {
Denys Vlasenkoeaa3b002018-12-19 20:05:50 +01003695 // There is already a function with this name.
3696 // It'll be redefined now, clear old definition.
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003697 BcFunc *func = bc_program_func(entry_ptr->idx);
Denys Vlasenkoeaa3b002018-12-19 20:05:50 +01003698 bc_func_free(func);
3699 bc_func_init(func);
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003700 } else {
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01003701 bc_program_add_fn();
Denys Vlasenko408b7d42018-12-19 19:43:03 +01003702 }
3703
3704 return idx;
3705}
3706
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003707#define BC_PARSE_TOP_OP(p) (*((BcLexType *) bc_vec_top(&(p)->ops)))
3708#define BC_PARSE_LEAF(p, rparen) \
3709 (((p) >= BC_INST_NUM && (p) <= BC_INST_SQRT) || (rparen) || \
3710 (p) == BC_INST_INC_POST || (p) == BC_INST_DEC_POST)
3711
3712// We can calculate the conversion between tokens and exprs by subtracting the
3713// position of the first operator in the lex enum and adding the position of the
3714// first in the expr enum. Note: This only works for binary operators.
Denys Vlasenko0154d782018-12-14 23:32:51 +01003715#define BC_TOKEN_2_INST(t) ((char) ((t) - BC_LEX_NEG + BC_INST_NEG))
Denys Vlasenkocca79a02018-12-05 21:15:46 +01003716
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003717static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags);
3718
3719static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags)
3720{
3721 BcStatus s;
3722
3723 s = bc_parse_expr_empty_ok(p, flags);
3724 if (s == BC_STATUS_PARSE_EMPTY_EXP)
3725 RETURN_STATUS(bc_error("empty expression"));
3726 RETURN_STATUS(s);
3727}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003728#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003729
3730static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
Denys Vlasenkoec603182018-12-17 10:34:02 +01003731#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01003732
3733static BC_STATUS zbc_parse_stmt(BcParse *p)
3734{
3735 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3736}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003737#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003738
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003739static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003740{
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003741 // "if(cond)<newline>stmt" is accepted too, but not 2+ newlines.
3742 // Same for "else", "while()", "for()".
3743 BcStatus s = zbc_lex_next_and_skip_NLINE(&p->l);
3744 if (s) RETURN_STATUS(s);
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003745 if (p->l.t.t == BC_LEX_NLINE)
3746 RETURN_STATUS(bc_error_fmt("no statement after '%s'", after_X));
Denys Vlasenko94f72a32018-12-17 00:07:48 +01003747
3748 RETURN_STATUS(zbc_parse_stmt(p));
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003749}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003750#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko2e8be022018-12-16 20:41:32 +01003751
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003752static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3753 size_t *nexprs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003754{
Denys Vlasenko65437582018-12-05 19:37:19 +01003755 char l, r = bc_parse_op_PREC(type - BC_LEX_OP_INC);
3756 bool left = bc_parse_op_LEFT(type - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003757
3758 while (p->ops.len > start) {
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003759 BcLexType t = BC_PARSE_TOP_OP(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06003760 if (t == BC_LEX_LPAREN) break;
3761
Denys Vlasenko65437582018-12-05 19:37:19 +01003762 l = bc_parse_op_PREC(t - BC_LEX_OP_INC);
Gavin Howard01055ba2018-11-03 11:00:21 -06003763 if (l >= r && (l != r || !left)) break;
3764
Denys Vlasenko0154d782018-12-14 23:32:51 +01003765 bc_parse_push(p, BC_TOKEN_2_INST(t));
Gavin Howard01055ba2018-11-03 11:00:21 -06003766 bc_vec_pop(&p->ops);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01003767 *nexprs -= (t != BC_LEX_OP_BOOL_NOT && t != BC_LEX_NEG);
Gavin Howard01055ba2018-11-03 11:00:21 -06003768 }
3769
3770 bc_vec_push(&p->ops, &type);
Gavin Howard01055ba2018-11-03 11:00:21 -06003771}
3772
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003773static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
Gavin Howard01055ba2018-11-03 11:00:21 -06003774{
3775 BcLexType top;
3776
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003777 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003778 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003779 top = BC_PARSE_TOP_OP(p);
3780
3781 while (top != BC_LEX_LPAREN) {
Denys Vlasenko0154d782018-12-14 23:32:51 +01003782 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06003783
3784 bc_vec_pop(&p->ops);
3785 *nexs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
3786
Denys Vlasenko60cf7472018-12-04 20:05:28 +01003787 if (p->ops.len <= ops_bgn)
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003788 RETURN_STATUS(bc_error_bad_expression());
Gavin Howard01055ba2018-11-03 11:00:21 -06003789 top = BC_PARSE_TOP_OP(p);
3790 }
3791
3792 bc_vec_pop(&p->ops);
3793
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003794 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003795}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003796#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003797
Denys Vlasenko26819db2018-12-12 16:08:46 +01003798static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003799{
3800 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06003801 size_t nparams;
3802
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01003803 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003804 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3805
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003806 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003807 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003808
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003809 nparams = 0;
3810 if (p->l.t.t != BC_LEX_RPAREN) {
3811 for (;;) {
3812 s = zbc_parse_expr(p, flags);
3813 if (s) RETURN_STATUS(s);
3814 nparams++;
3815 if (p->l.t.t != BC_LEX_COMMA) {
3816 if (p->l.t.t == BC_LEX_RPAREN)
3817 break;
3818 RETURN_STATUS(bc_error_bad_token());
3819 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003820 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003821 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003822 }
3823 }
3824
Gavin Howard01055ba2018-11-03 11:00:21 -06003825 bc_parse_push(p, BC_INST_CALL);
3826 bc_parse_pushIndex(p, nparams);
3827
Denys Vlasenko26819db2018-12-12 16:08:46 +01003828 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003829}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003830#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003831
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01003832// Note: takes ownership of 'name' (must be malloced)
Denys Vlasenko26819db2018-12-12 16:08:46 +01003833static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003834{
3835 BcStatus s;
3836 BcId entry, *entry_ptr;
3837 size_t idx;
3838
3839 entry.name = name;
3840
Denys Vlasenko26819db2018-12-12 16:08:46 +01003841 s = zbc_parse_params(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003842 if (s) goto err;
3843
3844 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003845 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003846 goto err;
3847 }
3848
Denys Vlasenko5aa54832018-12-19 13:55:53 +01003849 idx = bc_map_find_exact(&G.prog.fn_map, &entry);
Gavin Howard01055ba2018-11-03 11:00:21 -06003850
3851 if (idx == BC_VEC_INVALID_IDX) {
Denys Vlasenko5aa54832018-12-19 13:55:53 +01003852 // No such function exists, create an empty one
Denys Vlasenko684d4412018-12-19 14:57:23 +01003853 bc_program_addFunc(name);
Denys Vlasenko5aa54832018-12-19 13:55:53 +01003854 idx = bc_map_find_exact(&G.prog.fn_map, &entry);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003855 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06003856 free(name);
3857
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01003858 entry_ptr = bc_vec_item(&G.prog.fn_map, idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06003859 bc_parse_pushIndex(p, entry_ptr->idx);
3860
Denys Vlasenko26819db2018-12-12 16:08:46 +01003861 RETURN_STATUS(zbc_lex_next(&p->l));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003862 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06003863 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003864 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003865}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003866#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003867
Denys Vlasenko26819db2018-12-12 16:08:46 +01003868static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003869{
3870 BcStatus s;
3871 char *name;
3872
3873 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003874 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003875 if (s) goto err;
3876
3877 if (p->l.t.t == BC_LEX_LBRACKET) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003878 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003879 if (s) goto err;
3880
3881 if (p->l.t.t == BC_LEX_RBRACKET) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003882 if (!(flags & BC_PARSE_ARRAY)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003883 s = bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06003884 goto err;
3885 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003886 *type = BC_INST_ARRAY;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003887 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003888 *type = BC_INST_ARRAY_ELEM;
Gavin Howard01055ba2018-11-03 11:00:21 -06003889 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003890 s = zbc_parse_expr(p, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06003891 if (s) goto err;
3892 }
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003893 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06003894 if (s) goto err;
3895 bc_parse_push(p, *type);
3896 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003897 free(name);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003898 } else if (p->l.t.t == BC_LEX_LPAREN) {
Gavin Howard01055ba2018-11-03 11:00:21 -06003899 if (flags & BC_PARSE_NOCALL) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01003900 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06003901 goto err;
3902 }
Gavin Howard01055ba2018-11-03 11:00:21 -06003903 *type = BC_INST_CALL;
Denys Vlasenko26819db2018-12-12 16:08:46 +01003904 s = zbc_parse_call(p, name, flags);
3905 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06003906 *type = BC_INST_VAR;
3907 bc_parse_push(p, BC_INST_VAR);
3908 bc_parse_pushName(p, name);
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01003909 free(name);
Gavin Howard01055ba2018-11-03 11:00:21 -06003910 }
3911
Denys Vlasenko26819db2018-12-12 16:08:46 +01003912 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01003913 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06003914 free(name);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003915 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003916}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003917#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003918
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003919static BC_STATUS zbc_parse_read(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06003920{
3921 BcStatus s;
3922
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003923 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003924 if (s) RETURN_STATUS(s);
3925 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003926
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003927 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003928 if (s) RETURN_STATUS(s);
3929 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003930
3931 bc_parse_push(p, BC_INST_READ);
3932
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01003933 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003934}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003935#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003936
Denys Vlasenko26819db2018-12-12 16:08:46 +01003937static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
Gavin Howard01055ba2018-11-03 11:00:21 -06003938 BcInst *prev)
3939{
3940 BcStatus s;
3941
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003942 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003943 if (s) RETURN_STATUS(s);
3944 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003945
3946 flags = (flags & ~(BC_PARSE_PRINT | BC_PARSE_REL)) | BC_PARSE_ARRAY;
3947
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003948 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003949 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003950
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003951 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003952 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003953
Denys Vlasenko26819db2018-12-12 16:08:46 +01003954 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003955
3956 *prev = (type == BC_LEX_KEY_LENGTH) ? BC_INST_LENGTH : BC_INST_SQRT;
3957 bc_parse_push(p, *prev);
3958
Denys Vlasenko26819db2018-12-12 16:08:46 +01003959 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003960}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003961#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003962
Denys Vlasenko26819db2018-12-12 16:08:46 +01003963static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06003964{
3965 BcStatus s;
3966
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003967 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003968 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003969
3970 if (p->l.t.t != BC_LEX_LPAREN) {
3971 *type = BC_INST_SCALE;
3972 bc_parse_push(p, BC_INST_SCALE);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003973 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06003974 }
3975
3976 *type = BC_INST_SCALE_FUNC;
3977 flags &= ~(BC_PARSE_PRINT | BC_PARSE_REL);
3978
Denys Vlasenko9a34e892018-12-12 13:58:55 +01003979 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003980 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06003981
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01003982 s = zbc_parse_expr(p, flags);
Denys Vlasenko26819db2018-12-12 16:08:46 +01003983 if (s) RETURN_STATUS(s);
3984 if (p->l.t.t != BC_LEX_RPAREN)
3985 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06003986 bc_parse_push(p, BC_INST_SCALE_FUNC);
3987
Denys Vlasenko26819db2018-12-12 16:08:46 +01003988 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06003989}
Denys Vlasenkoec603182018-12-17 10:34:02 +01003990#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06003991
Denys Vlasenko26819db2018-12-12 16:08:46 +01003992static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
Gavin Howard01055ba2018-11-03 11:00:21 -06003993 size_t *nexprs, uint8_t flags)
3994{
3995 BcStatus s;
3996 BcLexType type;
3997 char inst;
3998 BcInst etype = *prev;
3999
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004000 if (etype == BC_INST_VAR || etype == BC_INST_ARRAY_ELEM
4001 || etype == BC_INST_SCALE || etype == BC_INST_LAST
4002 || etype == BC_INST_IBASE || etype == BC_INST_OBASE
4003 ) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004004 *prev = inst = BC_INST_INC_POST + (p->l.t.t != BC_LEX_OP_INC);
4005 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004006 s = zbc_lex_next(&p->l);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004007 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06004008 *prev = inst = BC_INST_INC_PRE + (p->l.t.t != BC_LEX_OP_INC);
4009 *paren_expr = true;
4010
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004011 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004012 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004013 type = p->l.t.t;
4014
4015 // Because we parse the next part of the expression
4016 // right here, we need to increment this.
4017 *nexprs = *nexprs + 1;
4018
4019 switch (type) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004020 case BC_LEX_NAME:
Denys Vlasenko26819db2018-12-12 16:08:46 +01004021 s = zbc_parse_name(p, prev, flags | BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004022 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004023 case BC_LEX_KEY_IBASE:
4024 case BC_LEX_KEY_LAST:
4025 case BC_LEX_KEY_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004026 bc_parse_push(p, type - BC_LEX_KEY_IBASE + BC_INST_IBASE);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004027 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004028 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004029 case BC_LEX_KEY_SCALE:
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004030 s = zbc_lex_next(&p->l);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004031 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004032 if (p->l.t.t == BC_LEX_LPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004033 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004034 else
4035 bc_parse_push(p, BC_INST_SCALE);
4036 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004037 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004038 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004039 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004040 }
4041
4042 if (!s) bc_parse_push(p, inst);
4043 }
4044
Denys Vlasenko26819db2018-12-12 16:08:46 +01004045 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004046}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004047#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004048
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004049static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06004050 bool rparen, size_t *nexprs)
4051{
4052 BcStatus s;
4053 BcLexType type;
4054 BcInst etype = *prev;
4055
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004056 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004057 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004058
4059 type = rparen || etype == BC_INST_INC_POST || etype == BC_INST_DEC_POST ||
4060 (etype >= BC_INST_NUM && etype <= BC_INST_SQRT) ?
4061 BC_LEX_OP_MINUS :
4062 BC_LEX_NEG;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004063 *prev = BC_TOKEN_2_INST(type);
Gavin Howard01055ba2018-11-03 11:00:21 -06004064
4065 // We can just push onto the op stack because this is the largest
4066 // precedence operator that gets pushed. Inc/dec does not.
4067 if (type != BC_LEX_OP_MINUS)
4068 bc_vec_push(&p->ops, &type);
4069 else
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004070 bc_parse_operator(p, type, ops_bgn, nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004071
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004072 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004073}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004074#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004075
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004076static BC_STATUS zbc_parse_print(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004077{
4078 BcStatus s;
4079 BcLexType type;
Gavin Howard01055ba2018-11-03 11:00:21 -06004080
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004081 for (;;) {
4082 s = zbc_lex_next(&p->l);
4083 if (s) RETURN_STATUS(s);
4084 type = p->l.t.t;
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004085 if (type == BC_LEX_STR) {
Denys Vlasenko44dbe672018-12-19 19:10:40 +01004086 s = bc_parse_pushSTR(p);
Denys Vlasenkoebc41c92018-12-08 23:36:28 +01004087 } else {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004088 s = zbc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06004089 }
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004090 if (s) RETURN_STATUS(s);
Denys Vlasenko44dbe672018-12-19 19:10:40 +01004091 bc_parse_push(p, BC_INST_PRINT_POP);
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004092 if (p->l.t.t != BC_LEX_COMMA)
4093 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004094 }
4095
Denys Vlasenko5d18f6b2018-12-16 21:08:30 +01004096 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004097}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004098#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004099
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004100static BC_STATUS zbc_parse_return(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004101{
4102 BcStatus s;
4103 BcLexType t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004104
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004105 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004106 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004107 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004108
4109 t = p->l.t.t;
Gavin Howard01055ba2018-11-03 11:00:21 -06004110 if (t == BC_LEX_NLINE || t == BC_LEX_SCOLON)
4111 bc_parse_push(p, BC_INST_RET0);
4112 else {
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004113 bool paren = (t == BC_LEX_LPAREN);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004114 s = bc_parse_expr_empty_ok(p, 0);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004115 if (s == BC_STATUS_PARSE_EMPTY_EXP) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004116 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004117 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004118 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004119 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004120
4121 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004122 s = bc_POSIX_requires("parentheses around return expressions");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004123 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
Gavin Howard01055ba2018-11-03 11:00:21 -06004124 }
4125
4126 bc_parse_push(p, BC_INST_RET);
4127 }
4128
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004129 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004130 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004131}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004132#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004133
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004134static void rewrite_label_to_current(BcParse *p, size_t idx)
4135{
4136 size_t *label = bc_vec_item(&p->func->labels, idx);
4137 *label = p->func->code.len;
4138}
4139
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004140static BC_STATUS zbc_parse_if(BcParse *p)
4141{
4142 BcStatus s;
Denys Vlasenko15850832018-12-16 21:40:54 +01004143 size_t ip_idx;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004144
4145 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
4146 s = zbc_lex_next(&p->l);
4147 if (s) RETURN_STATUS(s);
4148 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
4149
4150 s = zbc_lex_next(&p->l);
4151 if (s) RETURN_STATUS(s);
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004152 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004153 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004154 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004155
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01004156 // Encode "if zero, jump to ..."
4157 // Pushed value (destination of the jump) is uninitialized,
4158 // will be rewritten to be address of "end of if()" or of "else".
4159 ip_idx = bc_vec_push(&p->func->labels, &ip_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004160 bc_parse_pushJUMP_ZERO(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004161
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004162 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_if);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004163 if (s) RETURN_STATUS(s);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004164
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004165 dbg_lex("%s:%d in if after stmt: p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
4166 if (p->l.t.t == BC_LEX_KEY_ELSE) {
Denys Vlasenko15850832018-12-16 21:40:54 +01004167 size_t ip2_idx;
Denys Vlasenko74156332018-12-16 21:21:27 +01004168
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01004169 // Encode "after then_stmt, jump to end of if()"
4170 ip2_idx = bc_vec_push(&p->func->labels, &ip2_idx);
4171 dbg_lex("%s:%d after if() then_stmt: BC_INST_JUMP to %zd", __func__, __LINE__, ip2_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004172 bc_parse_pushJUMP(p, ip2_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004173
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004174 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 +01004175 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004176
Denys Vlasenko15850832018-12-16 21:40:54 +01004177 ip_idx = ip2_idx;
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004178
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004179 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_else);
Denys Vlasenkoa50576a2018-12-16 19:21:57 +01004180 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004181 }
4182
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004183 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 +01004184 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004185
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004186 dbg_lex_done("%s:%d done", __func__, __LINE__);
4187 RETURN_STATUS(s);
4188}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004189#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004190
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004191static BC_STATUS zbc_parse_while(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004192{
4193 BcStatus s;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004194 size_t cond_idx;
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004195 size_t ip_idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06004196
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004197 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004198 if (s) RETURN_STATUS(s);
4199 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004200 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004201 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004202
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01004203 cond_idx = bc_vec_push(&p->func->labels, &p->func->code.len);
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004204 ip_idx = cond_idx + 1;
Denys Vlasenkode24e9d2018-12-16 23:02:22 +01004205 bc_vec_push(&p->conds, &cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004206
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004207 bc_vec_push(&p->exits, &ip_idx);
4208 bc_vec_push(&p->func->labels, &ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004209
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004210 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004211 if (s) RETURN_STATUS(s);
4212 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko202dd192018-12-16 17:30:35 +01004213
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004214 bc_parse_pushJUMP_ZERO(p, ip_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004215
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004216 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_while);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004217 if (s) RETURN_STATUS(s);
4218
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004219 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, cond_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004220 bc_parse_pushJUMP(p, cond_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004221
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004222 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004223 rewrite_label_to_current(p, ip_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004224
4225 bc_vec_pop(&p->exits);
4226 bc_vec_pop(&p->conds);
4227
4228 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004229}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004230#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004231
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004232static BC_STATUS zbc_parse_for(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004233{
4234 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004235 size_t cond_idx, exit_idx, body_idx, update_idx;
4236
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004237 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004238 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004239 if (s) RETURN_STATUS(s);
4240 if (p->l.t.t != BC_LEX_LPAREN) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004241 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004242 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004243
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004244 if (p->l.t.t != BC_LEX_SCOLON) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004245 s = zbc_parse_expr(p, 0);
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004246 bc_parse_push(p, BC_INST_POP);
4247 if (s) RETURN_STATUS(s);
4248 } else {
Denys Vlasenko00646792018-12-05 18:12:27 +01004249 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("init");
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004250 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s);)
4251 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004252
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004253 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004254 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004255 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004256
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01004257 cond_idx = bc_vec_push(&p->func->labels, &p->func->code.len);
Gavin Howard01055ba2018-11-03 11:00:21 -06004258 update_idx = cond_idx + 1;
4259 body_idx = update_idx + 1;
4260 exit_idx = body_idx + 1;
4261
Gavin Howard01055ba2018-11-03 11:00:21 -06004262 if (p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004263 s = zbc_parse_expr(p, BC_PARSE_REL);
Denys Vlasenko52caa002018-12-21 00:35:22 +01004264 else {
Denys Vlasenko447dc022018-12-21 00:39:02 +01004265 // Set this for the next call to bc_parse_pushNUM().
Denys Vlasenko52caa002018-12-21 00:35:22 +01004266 // This is safe to set because the current token is a semicolon,
4267 // which has no string requirement.
4268 bc_vec_string(&p->l.t.v, 1, "1");
4269 bc_parse_pushNUM(p);
Denys Vlasenko00646792018-12-05 18:12:27 +01004270 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
Denys Vlasenko52caa002018-12-21 00:35:22 +01004271 }
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004272 if (s) RETURN_STATUS(s);
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004273
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004274 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004275
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004276 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004277 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004278
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004279 bc_parse_pushJUMP_ZERO(p, exit_idx);
4280 bc_parse_pushJUMP(p, body_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004281
Gavin Howard01055ba2018-11-03 11:00:21 -06004282 bc_vec_push(&p->conds, &update_idx);
4283 bc_vec_push(&p->func->labels, &p->func->code.len);
4284
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004285 if (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004286 s = zbc_parse_expr(p, 0);
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004287 if (s) RETURN_STATUS(s);
Denys Vlasenko6ed7fb02018-12-21 22:16:17 +01004288 if (p->l.t.t != BC_LEX_RPAREN) RETURN_STATUS(bc_error_bad_token());
4289 bc_parse_push(p, BC_INST_POP);
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004290 } else {
Denys Vlasenko00646792018-12-05 18:12:27 +01004291 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("update");
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01004292 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s);)
4293 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004294
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004295 bc_parse_pushJUMP(p, cond_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004296 bc_vec_push(&p->func->labels, &p->func->code.len);
4297
Denys Vlasenko5ebd2a62018-12-16 23:35:04 +01004298 bc_vec_push(&p->exits, &exit_idx);
4299 bc_vec_push(&p->func->labels, &exit_idx);
Denys Vlasenko202dd192018-12-16 17:30:35 +01004300
Denys Vlasenko59d4ce92018-12-17 10:42:31 +01004301 s = zbc_parse_stmt_allow_NLINE_before(p, STRING_for);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004302 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004303
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004304 dbg_lex("%s:%d BC_INST_JUMP to %zd", __func__, __LINE__, update_idx);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004305 bc_parse_pushJUMP(p, update_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004306
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004307 dbg_lex("%s:%d rewriting label-> %zd", __func__, __LINE__, p->func->code.len);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004308 rewrite_label_to_current(p, exit_idx);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004309
4310 bc_vec_pop(&p->exits);
4311 bc_vec_pop(&p->conds);
Gavin Howard01055ba2018-11-03 11:00:21 -06004312
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004313 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06004314}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004315#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004316
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004317static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
Gavin Howard01055ba2018-11-03 11:00:21 -06004318{
4319 BcStatus s;
4320 size_t i;
Gavin Howard01055ba2018-11-03 11:00:21 -06004321
Gavin Howard01055ba2018-11-03 11:00:21 -06004322 if (type == BC_LEX_KEY_BREAK) {
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004323 if (p->exits.len == 0) // none of the enclosing blocks is a loop
4324 RETURN_STATUS(bc_error_bad_token());
Denys Vlasenko266aa002018-12-16 23:24:25 +01004325 i = *(size_t*)bc_vec_top(&p->exits);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004326 } else {
Denys Vlasenko266aa002018-12-16 23:24:25 +01004327 i = *(size_t*)bc_vec_top(&p->conds);
Denys Vlasenko8e7686e2018-12-16 23:18:28 +01004328 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004329
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004330 bc_parse_pushJUMP(p, i);
Gavin Howard01055ba2018-11-03 11:00:21 -06004331
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004332 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004333 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004334
4335 if (p->l.t.t != BC_LEX_SCOLON && p->l.t.t != BC_LEX_NLINE)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004336 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004337
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004338 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004339}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004340#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004341
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004342static BC_STATUS zbc_parse_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004343{
4344 BcStatus s;
4345 bool var, comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004346 char *name;
4347
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004348 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004349 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004350 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004351 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004352 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004353
4354 name = xstrdup(p->l.t.v.v);
Denys Vlasenko684d4412018-12-19 14:57:23 +01004355 p->fidx = bc_program_addFunc(name);
4356 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004357
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004358 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004359 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004360 if (p->l.t.t != BC_LEX_LPAREN)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004361 RETURN_STATUS(bc_error("bad function definition"));
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004362 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004363 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004364
4365 while (p->l.t.t != BC_LEX_RPAREN) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004366 if (p->l.t.t != BC_LEX_NAME)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004367 RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004368
4369 ++p->func->nparams;
4370
4371 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004372 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004373 if (s) goto err;
4374
4375 var = p->l.t.t != BC_LEX_LBRACKET;
4376
4377 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004378 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004379 if (s) goto err;
4380
4381 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004382 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004383 goto err;
4384 }
4385
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004386 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004387 if (s) goto err;
4388 }
4389
4390 comma = p->l.t.t == BC_LEX_COMMA;
4391 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004392 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004393 if (s) goto err;
4394 }
4395
Denys Vlasenko29301232018-12-11 15:29:32 +01004396 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004397 if (s) goto err;
4398 }
4399
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004400 if (comma) RETURN_STATUS(bc_error("bad function definition"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004401
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004402 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004403 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004404
4405 if (p->l.t.t != BC_LEX_LBRACE)
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004406 s = bc_POSIX_requires("the left brace be on the same line as the function header");
Gavin Howard01055ba2018-11-03 11:00:21 -06004407
Denys Vlasenko202dd192018-12-16 17:30:35 +01004408 // Prevent "define z()<newline>" from being interpreted as function with empty stmt as body
4409 s = zbc_lex_skip_if_at_NLINE(&p->l);
4410 if (s) RETURN_STATUS(s);
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004411 //GNU bc requires a {} block even if function body has single stmt, enforce this?
4412 if (p->l.t.t != BC_LEX_LBRACE)
4413 RETURN_STATUS(bc_error("function { body } expected"));
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004414
4415 p->in_funcdef++; // to determine whether "return" stmt is allowed, and such
Denys Vlasenko94f72a32018-12-17 00:07:48 +01004416 s = zbc_parse_stmt_possibly_auto(p, true);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004417 p->in_funcdef--;
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004418 if (s) RETURN_STATUS(s);
4419
4420 bc_parse_push(p, BC_INST_RET0);
Denys Vlasenko65e10462018-12-19 15:13:14 +01004421
4422 // Subsequent code generation is into main program
4423 p->fidx = BC_PROG_MAIN;
4424 p->func = bc_program_func_BC_PROG_MAIN();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004425
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004426 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004427 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004428 err:
Denys Vlasenkof4f10722018-12-18 02:23:53 +01004429 dbg_lex_done("%s:%d done (error)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004430 free(name);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004431 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004432}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004433#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004434
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004435static BC_STATUS zbc_parse_auto(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004436{
4437 BcStatus s;
4438 bool comma, var, one;
4439 char *name;
4440
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004441 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004442 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004443 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004444
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004445 comma = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004446 one = p->l.t.t == BC_LEX_NAME;
4447
4448 while (p->l.t.t == BC_LEX_NAME) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004449 name = xstrdup(p->l.t.v.v);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004450 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004451 if (s) goto err;
4452
4453 var = p->l.t.t != BC_LEX_LBRACKET;
4454 if (!var) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004455 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004456 if (s) goto err;
4457
4458 if (p->l.t.t != BC_LEX_RBRACKET) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004459 s = bc_error("bad function definition");
Gavin Howard01055ba2018-11-03 11:00:21 -06004460 goto err;
4461 }
4462
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004463 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004464 if (s) goto err;
4465 }
4466
4467 comma = p->l.t.t == BC_LEX_COMMA;
4468 if (comma) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004469 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004470 if (s) goto err;
4471 }
4472
Denys Vlasenko29301232018-12-11 15:29:32 +01004473 s = zbc_func_insert(p->func, name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06004474 if (s) goto err;
4475 }
4476
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004477 if (comma) RETURN_STATUS(bc_error("bad function definition"));
4478 if (!one) RETURN_STATUS(bc_error("no auto variable found"));
Gavin Howard01055ba2018-11-03 11:00:21 -06004479
4480 if (p->l.t.t != BC_LEX_NLINE && p->l.t.t != BC_LEX_SCOLON)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004481 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004482
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004483 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004484 RETURN_STATUS(zbc_lex_next(&p->l));
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004485 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06004486 free(name);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004487 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004488 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004489}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004490#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004491
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004492#undef zbc_parse_stmt_possibly_auto
4493static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
Gavin Howard01055ba2018-11-03 11:00:21 -06004494{
4495 BcStatus s = BC_STATUS_SUCCESS;
4496
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004497 dbg_lex_enter("%s:%d entered, p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004498
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004499 if (p->l.t.t == BC_LEX_NLINE) {
4500 dbg_lex_done("%s:%d done (seen BC_LEX_NLINE)", __func__, __LINE__);
4501 RETURN_STATUS(zbc_lex_next(&p->l));
4502 }
4503 if (p->l.t.t == BC_LEX_SCOLON) {
4504 dbg_lex_done("%s:%d done (seen BC_LEX_SCOLON)", __func__, __LINE__);
4505 RETURN_STATUS(zbc_lex_next(&p->l));
4506 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004507
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004508 if (p->l.t.t == BC_LEX_LBRACE) {
4509 dbg_lex("%s:%d BC_LEX_LBRACE: (auto_allowed:%d)", __func__, __LINE__, auto_allowed);
4510 do {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004511 s = zbc_lex_next(&p->l);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004512 if (s) RETURN_STATUS(s);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004513 } while (p->l.t.t == BC_LEX_NLINE);
4514 if (auto_allowed && p->l.t.t == BC_LEX_KEY_AUTO) {
4515 dbg_lex("%s:%d calling zbc_parse_auto()", __func__, __LINE__);
4516 s = zbc_parse_auto(p);
4517 if (s) RETURN_STATUS(s);
4518 }
4519 while (p->l.t.t != BC_LEX_RBRACE) {
4520 dbg_lex("%s:%d block parsing loop", __func__, __LINE__);
4521 s = zbc_parse_stmt(p);
4522 if (s) RETURN_STATUS(s);
4523 }
4524 s = zbc_lex_next(&p->l);
4525 dbg_lex_done("%s:%d done (seen BC_LEX_RBRACE)", __func__, __LINE__);
4526 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004527 }
4528
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004529 dbg_lex("%s:%d p->l.t.t:%d", __func__, __LINE__, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004530 switch (p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004531 case BC_LEX_OP_INC:
4532 case BC_LEX_OP_DEC:
4533 case BC_LEX_OP_MINUS:
4534 case BC_LEX_OP_BOOL_NOT:
4535 case BC_LEX_LPAREN:
4536 case BC_LEX_NAME:
4537 case BC_LEX_NUMBER:
4538 case BC_LEX_KEY_IBASE:
4539 case BC_LEX_KEY_LAST:
4540 case BC_LEX_KEY_LENGTH:
4541 case BC_LEX_KEY_OBASE:
4542 case BC_LEX_KEY_READ:
4543 case BC_LEX_KEY_SCALE:
4544 case BC_LEX_KEY_SQRT:
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004545 s = zbc_parse_expr(p, BC_PARSE_PRINT);
Gavin Howard01055ba2018-11-03 11:00:21 -06004546 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004547 case BC_LEX_STR:
Denys Vlasenko44dbe672018-12-19 19:10:40 +01004548 s = bc_parse_pushSTR(p);
4549 bc_parse_push(p, BC_INST_PRINT_STR);
Gavin Howard01055ba2018-11-03 11:00:21 -06004550 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004551 case BC_LEX_KEY_BREAK:
4552 case BC_LEX_KEY_CONTINUE:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004553 s = zbc_parse_break_or_continue(p, p->l.t.t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004554 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004555 case BC_LEX_KEY_FOR:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004556 s = zbc_parse_for(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004557 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004558 case BC_LEX_KEY_HALT:
Gavin Howard01055ba2018-11-03 11:00:21 -06004559 bc_parse_push(p, BC_INST_HALT);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004560 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004561 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004562 case BC_LEX_KEY_IF:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004563 s = zbc_parse_if(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004564 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004565 case BC_LEX_KEY_LIMITS:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004566 // "limits" is a compile-time command,
4567 // the output is produced at _parse time_.
Denys Vlasenko64074a12018-12-07 15:50:14 +01004568 printf(
4569 "BC_BASE_MAX = "BC_MAX_OBASE_STR "\n"
4570 "BC_DIM_MAX = "BC_MAX_DIM_STR "\n"
4571 "BC_SCALE_MAX = "BC_MAX_SCALE_STR "\n"
4572 "BC_STRING_MAX = "BC_MAX_STRING_STR"\n"
4573 "BC_NAME_MAX = "BC_MAX_NAME_STR "\n"
4574 "BC_NUM_MAX = "BC_MAX_NUM_STR "\n"
4575 "MAX Exponent = "BC_MAX_EXP_STR "\n"
4576 "Number of vars = "BC_MAX_VARS_STR "\n"
4577 );
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004578 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004579 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004580 case BC_LEX_KEY_PRINT:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004581 s = zbc_parse_print(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004582 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004583 case BC_LEX_KEY_QUIT:
Denys Vlasenkocfdc1332018-12-03 14:02:35 +01004584 // "quit" is a compile-time command. For example,
4585 // "if (0 == 1) quit" terminates when parsing the statement,
4586 // not when it is executed
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01004587 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06004588 case BC_LEX_KEY_RETURN:
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004589 if (!p->in_funcdef)
4590 RETURN_STATUS(bc_error("'return' not in a function"));
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004591 s = zbc_parse_return(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004592 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004593 case BC_LEX_KEY_WHILE:
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004594 s = zbc_parse_while(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004595 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004596 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004597 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004598 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004599 }
4600
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004601 if (s || G_interrupt) {
4602 bc_parse_reset(p);
4603 s = BC_STATUS_FAILURE;
4604 }
4605
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004606 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01004607 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004608}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004609#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004610
Denys Vlasenko99b37622018-12-15 20:06:59 +01004611static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004612{
4613 BcStatus s;
4614
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004615 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004616 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01004617 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06004618 else if (p->l.t.t == BC_LEX_KEY_DEFINE) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004619 dbg_lex("%s:%d p->l.t.t:BC_LEX_KEY_DEFINE", __func__, __LINE__);
Denys Vlasenkoe9519e42018-12-16 17:06:07 +01004620 s = zbc_parse_funcdef(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004621 } else {
4622 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 +01004623 s = zbc_parse_stmt(p);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004624 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004625
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01004626 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko26819db2018-12-12 16:08:46 +01004627 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004628}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004629#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004630
Denys Vlasenkob402ff82018-12-11 15:45:15 +01004631// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01004632static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004633{
4634 BcStatus s = BC_STATUS_SUCCESS;
4635 BcInst prev = BC_INST_PRINT;
4636 BcLexType top, t = p->l.t.t;
4637 size_t nexprs = 0, ops_bgn = p->ops.len;
Denys Vlasenko18c6b542018-12-07 12:57:32 +01004638 unsigned nparens, nrelops;
Gavin Howard01055ba2018-11-03 11:00:21 -06004639 bool paren_first, paren_expr, rprn, done, get_token, assign, bin_last;
4640
Denys Vlasenko17df8822018-12-14 23:00:24 +01004641 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004642 paren_first = p->l.t.t == BC_LEX_LPAREN;
4643 nparens = nrelops = 0;
4644 paren_expr = rprn = done = get_token = assign = false;
4645 bin_last = true;
4646
Denys Vlasenkobcb62a72018-12-05 20:17:48 +01004647 for (; !G_interrupt && !s && !done && bc_parse_exprs(t); t = p->l.t.t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004648 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004649 case BC_LEX_OP_INC:
4650 case BC_LEX_OP_DEC:
Denys Vlasenko26819db2018-12-12 16:08:46 +01004651 s = zbc_parse_incdec(p, &prev, &paren_expr, &nexprs, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004652 rprn = get_token = bin_last = false;
4653 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004654 case BC_LEX_OP_MINUS:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004655 s = zbc_parse_minus(p, &prev, ops_bgn, rprn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004656 rprn = get_token = false;
4657 bin_last = prev == BC_INST_MINUS;
4658 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004659 case BC_LEX_OP_ASSIGN_POWER:
4660 case BC_LEX_OP_ASSIGN_MULTIPLY:
4661 case BC_LEX_OP_ASSIGN_DIVIDE:
4662 case BC_LEX_OP_ASSIGN_MODULUS:
4663 case BC_LEX_OP_ASSIGN_PLUS:
4664 case BC_LEX_OP_ASSIGN_MINUS:
4665 case BC_LEX_OP_ASSIGN:
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004666 if (prev != BC_INST_VAR && prev != BC_INST_ARRAY_ELEM
4667 && prev != BC_INST_SCALE && prev != BC_INST_IBASE
4668 && prev != BC_INST_OBASE && prev != BC_INST_LAST
4669 ) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004670 s = bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004671 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004672 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01004673 ); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06004674 break;
4675 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004676 // Fallthrough.
4677 case BC_LEX_OP_POWER:
4678 case BC_LEX_OP_MULTIPLY:
4679 case BC_LEX_OP_DIVIDE:
4680 case BC_LEX_OP_MODULUS:
4681 case BC_LEX_OP_PLUS:
4682 case BC_LEX_OP_REL_EQ:
4683 case BC_LEX_OP_REL_LE:
4684 case BC_LEX_OP_REL_GE:
4685 case BC_LEX_OP_REL_NE:
4686 case BC_LEX_OP_REL_LT:
4687 case BC_LEX_OP_REL_GT:
4688 case BC_LEX_OP_BOOL_NOT:
4689 case BC_LEX_OP_BOOL_OR:
4690 case BC_LEX_OP_BOOL_AND:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004691 if (((t == BC_LEX_OP_BOOL_NOT) != bin_last)
4692 || (t != BC_LEX_OP_BOOL_NOT && prev == BC_INST_BOOL_NOT)
4693 ) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004694 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004695 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004696 nrelops += t >= BC_LEX_OP_REL_EQ && t <= BC_LEX_OP_REL_GT;
Denys Vlasenko0154d782018-12-14 23:32:51 +01004697 prev = BC_TOKEN_2_INST(t);
Denys Vlasenko7b1df3d2018-12-14 23:12:48 +01004698 bc_parse_operator(p, t, ops_bgn, &nexprs);
4699 s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004700 rprn = get_token = false;
4701 bin_last = t != BC_LEX_OP_BOOL_NOT;
Gavin Howard01055ba2018-11-03 11:00:21 -06004702 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004703 case BC_LEX_LPAREN:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004704 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004705 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004706 ++nparens;
4707 paren_expr = rprn = bin_last = false;
4708 get_token = true;
4709 bc_vec_push(&p->ops, &t);
Gavin Howard01055ba2018-11-03 11:00:21 -06004710 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004711 case BC_LEX_RPAREN:
Gavin Howard01055ba2018-11-03 11:00:21 -06004712 if (bin_last || prev == BC_INST_BOOL_NOT)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004713 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004714 if (nparens == 0) {
4715 s = BC_STATUS_SUCCESS;
4716 done = true;
4717 get_token = false;
4718 break;
4719 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004720 if (!paren_expr) {
Denys Vlasenko17df8822018-12-14 23:00:24 +01004721 dbg_lex_done("%s:%d done (returning EMPTY_EXP)", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004722 return BC_STATUS_PARSE_EMPTY_EXP;
Denys Vlasenko17df8822018-12-14 23:00:24 +01004723 }
Gavin Howard01055ba2018-11-03 11:00:21 -06004724 --nparens;
4725 paren_expr = rprn = true;
4726 get_token = bin_last = false;
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004727 s = zbc_parse_rightParen(p, ops_bgn, &nexprs);
Gavin Howard01055ba2018-11-03 11:00:21 -06004728 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004729 case BC_LEX_NAME:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004730 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004731 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004732 paren_expr = true;
4733 rprn = get_token = bin_last = false;
Denys Vlasenko26819db2018-12-12 16:08:46 +01004734 s = zbc_parse_name(p, &prev, flags & ~BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06004735 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004736 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004737 case BC_LEX_NUMBER:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004738 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004739 return bc_error_bad_expression();
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01004740 bc_parse_pushNUM(p);
Denys Vlasenko9dc5d082018-12-16 18:43:51 +01004741 nexprs++;
4742 prev = BC_INST_NUM;
Gavin Howard01055ba2018-11-03 11:00:21 -06004743 paren_expr = get_token = true;
4744 rprn = bin_last = false;
Gavin Howard01055ba2018-11-03 11:00:21 -06004745 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004746 case BC_LEX_KEY_IBASE:
4747 case BC_LEX_KEY_LAST:
4748 case BC_LEX_KEY_OBASE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004749 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004750 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004751 prev = (char) (t - BC_LEX_KEY_IBASE + BC_INST_IBASE);
4752 bc_parse_push(p, (char) prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004753 paren_expr = get_token = true;
4754 rprn = bin_last = false;
4755 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004756 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004757 case BC_LEX_KEY_LENGTH:
4758 case BC_LEX_KEY_SQRT:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004759 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004760 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004761 s = zbc_parse_builtin(p, t, flags, &prev);
Gavin Howard01055ba2018-11-03 11:00:21 -06004762 paren_expr = true;
4763 rprn = get_token = bin_last = false;
4764 ++nexprs;
Gavin Howard01055ba2018-11-03 11:00:21 -06004765 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004766 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004767 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004768 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004769 else if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004770 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004771 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004772 s = zbc_parse_read(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004773 paren_expr = true;
4774 rprn = get_token = bin_last = false;
4775 ++nexprs;
4776 prev = BC_INST_READ;
Gavin Howard01055ba2018-11-03 11:00:21 -06004777 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004778 case BC_LEX_KEY_SCALE:
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004779 if (BC_PARSE_LEAF(prev, rprn))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004780 return bc_error_bad_expression();
Denys Vlasenko26819db2018-12-12 16:08:46 +01004781 s = zbc_parse_scale(p, &prev, flags);
Gavin Howard01055ba2018-11-03 11:00:21 -06004782 paren_expr = true;
4783 rprn = get_token = bin_last = false;
4784 ++nexprs;
4785 prev = BC_INST_SCALE;
Gavin Howard01055ba2018-11-03 11:00:21 -06004786 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004787 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004788 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004789 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004790 }
4791
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004792 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004793 }
4794
4795 if (s) return s;
Denys Vlasenkod38af482018-12-04 19:11:02 +01004796 if (G_interrupt) return BC_STATUS_FAILURE; // ^C: stop parsing
Gavin Howard01055ba2018-11-03 11:00:21 -06004797
4798 while (p->ops.len > ops_bgn) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004799 top = BC_PARSE_TOP_OP(p);
4800 assign = top >= BC_LEX_OP_ASSIGN_POWER && top <= BC_LEX_OP_ASSIGN;
4801
4802 if (top == BC_LEX_LPAREN || top == BC_LEX_RPAREN)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004803 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004804
Denys Vlasenko0154d782018-12-14 23:32:51 +01004805 bc_parse_push(p, BC_TOKEN_2_INST(top));
Gavin Howard01055ba2018-11-03 11:00:21 -06004806
4807 nexprs -= top != BC_LEX_OP_BOOL_NOT && top != BC_LEX_NEG;
4808 bc_vec_pop(&p->ops);
4809 }
4810
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004811 if (prev == BC_INST_BOOL_NOT || nexprs != 1)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004812 return bc_error_bad_expression();
Gavin Howard01055ba2018-11-03 11:00:21 -06004813
Gavin Howard01055ba2018-11-03 11:00:21 -06004814 if (!(flags & BC_PARSE_REL) && nrelops) {
Denys Vlasenko00646792018-12-05 18:12:27 +01004815 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004816 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004817 } else if ((flags & BC_PARSE_REL) && nrelops > 1) {
Denys Vlasenkoa6f84e12018-12-06 11:10:11 +01004818 s = bc_POSIX_requires("exactly one comparison operator per condition");
Denys Vlasenkoec603182018-12-17 10:34:02 +01004819 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004820 }
4821
4822 if (flags & BC_PARSE_PRINT) {
4823 if (paren_first || !assign) bc_parse_push(p, BC_INST_PRINT);
4824 bc_parse_push(p, BC_INST_POP);
4825 }
4826
Denys Vlasenko17df8822018-12-14 23:00:24 +01004827 dbg_lex_done("%s:%d done", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004828 return s;
4829}
4830
Gavin Howard01055ba2018-11-03 11:00:21 -06004831#endif // ENABLE_BC
4832
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01004833#if ENABLE_DC
Denys Vlasenkocca79a02018-12-05 21:15:46 +01004834
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004835static BC_STATUS zdc_parse_register(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004836{
4837 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004838
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004839 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004840 if (s) RETURN_STATUS(s);
4841 if (p->l.t.t != BC_LEX_NAME) RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004842
Denys Vlasenkoe6c40c42018-12-16 20:32:58 +01004843 bc_parse_pushName(p, p->l.t.v.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06004844
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004845 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004846}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004847#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004848
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004849static BC_STATUS zdc_parse_string(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06004850{
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004851 char *str;
Denys Vlasenko684d4412018-12-19 14:57:23 +01004852 size_t len = G.prog.strs.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06004853
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004854 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004855
4856 str = xstrdup(p->l.t.v.v);
4857 bc_parse_push(p, BC_INST_STR);
4858 bc_parse_pushIndex(p, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01004859 bc_vec_push(&G.prog.strs, &str);
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004860
4861 // Explanation needed here
4862 bc_program_add_fn();
Denys Vlasenko684d4412018-12-19 14:57:23 +01004863 p->func = bc_program_func(p->fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06004864
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004865 dbg_lex_done("%s:%d done", __func__, __LINE__);
4866
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004867 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004868}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004869#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004870
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004871static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
Gavin Howard01055ba2018-11-03 11:00:21 -06004872{
4873 BcStatus s;
4874
4875 bc_parse_push(p, inst);
4876 if (name) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004877 s = zdc_parse_register(p);
4878 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004879 }
4880
4881 if (store) {
4882 bc_parse_push(p, BC_INST_SWAP);
4883 bc_parse_push(p, BC_INST_ASSIGN);
4884 bc_parse_push(p, BC_INST_POP);
4885 }
4886
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004887 RETURN_STATUS(zbc_lex_next(&p->l));
Gavin Howard01055ba2018-11-03 11:00:21 -06004888}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004889#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004890
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004891static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06004892{
4893 BcStatus s;
4894
4895 bc_parse_push(p, inst);
4896 bc_parse_push(p, BC_INST_EXEC_COND);
4897
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004898 s = zdc_parse_register(p);
4899 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004900
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004901 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004902 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004903
4904 if (p->l.t.t == BC_LEX_ELSE) {
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004905 s = zdc_parse_register(p);
4906 if (s) RETURN_STATUS(s);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004907 s = zbc_lex_next(&p->l);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01004908 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06004909 bc_parse_push(p, BC_PARSE_STREND);
4910
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004911 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004912}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004913#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004914
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004915static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004916{
4917 BcStatus s = BC_STATUS_SUCCESS;
Gavin Howard01055ba2018-11-03 11:00:21 -06004918 uint8_t inst;
4919 bool assign, get_token = false;
4920
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004921 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004922 switch (t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06004923 case BC_LEX_OP_REL_EQ:
4924 case BC_LEX_OP_REL_LE:
4925 case BC_LEX_OP_REL_GE:
4926 case BC_LEX_OP_REL_NE:
4927 case BC_LEX_OP_REL_LT:
4928 case BC_LEX_OP_REL_GT:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004929 s = zdc_parse_cond(p, t - BC_LEX_OP_REL_EQ + BC_INST_REL_EQ);
Gavin Howard01055ba2018-11-03 11:00:21 -06004930 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004931 case BC_LEX_SCOLON:
4932 case BC_LEX_COLON:
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004933 s = zdc_parse_mem(p, BC_INST_ARRAY_ELEM, true, t == BC_LEX_COLON);
Gavin Howard01055ba2018-11-03 11:00:21 -06004934 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004935 case BC_LEX_STR:
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004936 dbg_lex("%s:%d LEX_STR", __func__, __LINE__);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004937 s = zdc_parse_string(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004938 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004939 case BC_LEX_NEG:
4940 case BC_LEX_NUMBER:
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004941 dbg_lex("%s:%d LEX_NEG/NUMBER", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06004942 if (t == BC_LEX_NEG) {
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004943 s = zbc_lex_next(&p->l);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004944 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01004945 if (p->l.t.t != BC_LEX_NUMBER)
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004946 RETURN_STATUS(bc_error_bad_token());
Gavin Howard01055ba2018-11-03 11:00:21 -06004947 }
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01004948 bc_parse_pushNUM(p);
Gavin Howard01055ba2018-11-03 11:00:21 -06004949 if (t == BC_LEX_NEG) bc_parse_push(p, BC_INST_NEG);
4950 get_token = true;
Gavin Howard01055ba2018-11-03 11:00:21 -06004951 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004952 case BC_LEX_KEY_READ:
Gavin Howard01055ba2018-11-03 11:00:21 -06004953 if (flags & BC_PARSE_NOREAD)
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004954 s = bc_error_nested_read_call();
Gavin Howard01055ba2018-11-03 11:00:21 -06004955 else
4956 bc_parse_push(p, BC_INST_READ);
4957 get_token = true;
4958 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004959 case BC_LEX_OP_ASSIGN:
4960 case BC_LEX_STORE_PUSH:
Gavin Howard01055ba2018-11-03 11:00:21 -06004961 assign = t == BC_LEX_OP_ASSIGN;
4962 inst = assign ? BC_INST_VAR : BC_INST_PUSH_TO_VAR;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004963 s = zdc_parse_mem(p, inst, true, assign);
Gavin Howard01055ba2018-11-03 11:00:21 -06004964 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004965 case BC_LEX_LOAD:
4966 case BC_LEX_LOAD_POP:
Gavin Howard01055ba2018-11-03 11:00:21 -06004967 inst = t == BC_LEX_LOAD_POP ? BC_INST_PUSH_VAR : BC_INST_LOAD;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004968 s = zdc_parse_mem(p, inst, true, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06004969 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004970 case BC_LEX_STORE_IBASE:
4971 case BC_LEX_STORE_SCALE:
4972 case BC_LEX_STORE_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06004973 inst = t - BC_LEX_STORE_IBASE + BC_INST_IBASE;
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004974 s = zdc_parse_mem(p, inst, false, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06004975 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004976 default:
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01004977 s = bc_error_bad_token();
Gavin Howard01055ba2018-11-03 11:00:21 -06004978 get_token = true;
4979 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06004980 }
4981
Denys Vlasenko9a34e892018-12-12 13:58:55 +01004982 if (!s && get_token) s = zbc_lex_next(&p->l);
Gavin Howard01055ba2018-11-03 11:00:21 -06004983
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004984 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004985 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06004986}
Denys Vlasenkoec603182018-12-17 10:34:02 +01004987#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06004988
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01004989static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
Gavin Howard01055ba2018-11-03 11:00:21 -06004990{
Gavin Howard01055ba2018-11-03 11:00:21 -06004991 BcLexType t;
4992
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01004993 dbg_lex_enter("%s:%d entered G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004994 for (;;) {
4995 BcInst inst;
4996 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06004997
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01004998 t = p->l.t.t;
4999 if (t == BC_LEX_EOF) break;
5000
5001 inst = dc_parse_insts[t];
Gavin Howard01055ba2018-11-03 11:00:21 -06005002 if (inst != BC_INST_INVALID) {
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01005003 dbg_lex("%s:%d", __func__, __LINE__);
Gavin Howard01055ba2018-11-03 11:00:21 -06005004 bc_parse_push(p, inst);
Denys Vlasenko9a34e892018-12-12 13:58:55 +01005005 s = zbc_lex_next(&p->l);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01005006 } else {
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01005007 dbg_lex("%s:%d", __func__, __LINE__);
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005008 s = zdc_parse_token(p, t, flags);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01005009 }
5010 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005011 }
5012
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01005013 if (flags & BC_PARSE_NOCALL)
Gavin Howard01055ba2018-11-03 11:00:21 -06005014 bc_parse_push(p, BC_INST_POP_EXEC);
5015
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01005016 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkoa199cc92018-12-18 14:11:35 +01005017 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005018}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005019#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005020
Denys Vlasenkoc0ef23c2018-12-12 23:03:10 +01005021static BC_STATUS zdc_parse_parse(BcParse *p)
Gavin Howard01055ba2018-11-03 11:00:21 -06005022{
5023 BcStatus s;
5024
5025 if (p->l.t.t == BC_LEX_EOF)
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005026 s = bc_error("end of file");
Gavin Howard01055ba2018-11-03 11:00:21 -06005027 else
Denys Vlasenko8cd468f2018-12-12 14:54:38 +01005028 s = zdc_parse_expr(p, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06005029
Denys Vlasenkod38af482018-12-04 19:11:02 +01005030 if (s || G_interrupt) {
5031 bc_parse_reset(p);
5032 s = BC_STATUS_FAILURE;
5033 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005034
Denys Vlasenko26819db2018-12-12 16:08:46 +01005035 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005036}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005037#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005038
Gavin Howard01055ba2018-11-03 11:00:21 -06005039#endif // ENABLE_DC
5040
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005041static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005042{
5043 if (IS_BC) {
Denys Vlasenko4b72aeb2018-12-17 16:54:37 +01005044 IF_BC(RETURN_STATUS(zbc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005045 } else {
Denys Vlasenko99b37622018-12-15 20:06:59 +01005046 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005047 }
5048}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005049#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkof6c1da52018-12-02 17:36:00 +01005050
Denys Vlasenkodf515392018-12-02 19:27:48 +01005051static BcVec* bc_program_search(char *id, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005052{
Gavin Howard01055ba2018-11-03 11:00:21 -06005053 BcId e, *ptr;
5054 BcVec *v, *map;
5055 size_t i;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005056 int new;
Gavin Howard01055ba2018-11-03 11:00:21 -06005057
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005058 v = var ? &G.prog.vars : &G.prog.arrs;
5059 map = var ? &G.prog.var_map : &G.prog.arr_map;
Gavin Howard01055ba2018-11-03 11:00:21 -06005060
5061 e.name = id;
5062 e.idx = v->len;
Denys Vlasenkoa02f8442018-12-03 20:35:16 +01005063 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful
Gavin Howard01055ba2018-11-03 11:00:21 -06005064
5065 if (new) {
Denys Vlasenkof36a0ad2018-12-19 17:15:04 +01005066 BcVec v2;
5067 bc_array_init(&v2, var);
5068 bc_vec_push(v, &v2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005069 }
5070
5071 ptr = bc_vec_item(map, i);
5072 if (new) ptr->name = xstrdup(e.name);
Denys Vlasenkodf515392018-12-02 19:27:48 +01005073 return bc_vec_item(v, ptr->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005074}
5075
Denys Vlasenko8287b1c2018-12-21 22:43:53 +01005076// 'num' need not be initialized on entry
Denys Vlasenko29301232018-12-11 15:29:32 +01005077static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
Gavin Howard01055ba2018-11-03 11:00:21 -06005078{
Gavin Howard01055ba2018-11-03 11:00:21 -06005079 switch (r->t) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005080 case BC_RESULT_STR:
5081 case BC_RESULT_TEMP:
5082 case BC_RESULT_IBASE:
5083 case BC_RESULT_SCALE:
5084 case BC_RESULT_OBASE:
Gavin Howard01055ba2018-11-03 11:00:21 -06005085 *num = &r->d.n;
5086 break;
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005087 case BC_RESULT_CONSTANT: {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005088 BcStatus s;
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01005089 char *str;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005090 unsigned base_t;
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01005091 size_t len;
5092
5093 str = *bc_program_const(r->d.id.idx);
5094 len = strlen(str);
Gavin Howard01055ba2018-11-03 11:00:21 -06005095
5096 bc_num_init(&r->d.n, len);
5097
5098 hex = hex && len == 1;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005099 base_t = hex ? 16 : G.prog.ib_t;
Denys Vlasenkoe3d3d202018-12-19 13:19:44 +01005100 s = zbc_num_parse(&r->d.n, str, base_t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005101 if (s) {
5102 bc_num_free(&r->d.n);
Denys Vlasenko29301232018-12-11 15:29:32 +01005103 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005104 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005105 *num = &r->d.n;
5106 r->t = BC_RESULT_TEMP;
Gavin Howard01055ba2018-11-03 11:00:21 -06005107 break;
5108 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005109 case BC_RESULT_VAR:
5110 case BC_RESULT_ARRAY:
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005111 case BC_RESULT_ARRAY_ELEM: {
Gavin Howard01055ba2018-11-03 11:00:21 -06005112 BcVec *v;
5113
Denys Vlasenkodf515392018-12-02 19:27:48 +01005114 v = bc_program_search(r->d.id.name, r->t == BC_RESULT_VAR);
Gavin Howard01055ba2018-11-03 11:00:21 -06005115
5116 if (r->t == BC_RESULT_ARRAY_ELEM) {
5117 v = bc_vec_top(v);
5118 if (v->len <= r->d.id.idx) bc_array_expand(v, r->d.id.idx + 1);
5119 *num = bc_vec_item(v, r->d.id.idx);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005120 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06005121 *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005122 break;
5123 }
Denys Vlasenko503faf92018-12-20 16:24:18 +01005124#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06005125 case BC_RESULT_LAST:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005126 *num = &G.prog.last;
Gavin Howard01055ba2018-11-03 11:00:21 -06005127 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005128 case BC_RESULT_ONE:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005129 *num = &G.prog.one;
Gavin Howard01055ba2018-11-03 11:00:21 -06005130 break;
Denys Vlasenko503faf92018-12-20 16:24:18 +01005131#endif
5132 default:
5133 // Testing the theory that dc does not reach LAST/ONE
5134 bb_error_msg_and_die("BUG:%d", r->t);
Gavin Howard01055ba2018-11-03 11:00:21 -06005135 }
5136
Denys Vlasenko29301232018-12-11 15:29:32 +01005137 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005138}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005139#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005140
Denys Vlasenko29301232018-12-11 15:29:32 +01005141static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
Gavin Howard01055ba2018-11-03 11:00:21 -06005142 BcResult **r, BcNum **rn, bool assign)
5143{
5144 BcStatus s;
5145 bool hex;
5146 BcResultType lt, rt;
5147
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005148 if (!STACK_HAS_MORE_THAN(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005149 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005150
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005151 *r = bc_vec_item_rev(&G.prog.results, 0);
5152 *l = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06005153
5154 lt = (*l)->t;
5155 rt = (*r)->t;
5156 hex = assign && (lt == BC_RESULT_IBASE || lt == BC_RESULT_OBASE);
5157
Denys Vlasenko29301232018-12-11 15:29:32 +01005158 s = zbc_program_num(*l, ln, false);
5159 if (s) RETURN_STATUS(s);
5160 s = zbc_program_num(*r, rn, hex);
5161 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005162
5163 // We run this again under these conditions in case any vector has been
5164 // reallocated out from under the BcNums or arrays we had.
5165 if (lt == rt && (lt == BC_RESULT_VAR || lt == BC_RESULT_ARRAY_ELEM)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005166 s = zbc_program_num(*l, ln, false);
5167 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005168 }
5169
5170 if (!BC_PROG_NUM((*l), (*ln)) && (!assign || (*l)->t != BC_RESULT_VAR))
Denys Vlasenko29301232018-12-11 15:29:32 +01005171 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005172 if (!assign && !BC_PROG_NUM((*r), (*ln)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005173 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005174
Denys Vlasenko29301232018-12-11 15:29:32 +01005175 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005176}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005177#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005178
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005179static void bc_program_binOpRetire(BcResult *r)
Gavin Howard01055ba2018-11-03 11:00:21 -06005180{
5181 r->t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005182 bc_vec_pop(&G.prog.results);
Denys Vlasenko1dc4de92018-12-21 23:13:48 +01005183 bc_result_pop_and_push(r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005184}
5185
Denys Vlasenko29301232018-12-11 15:29:32 +01005186static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
Gavin Howard01055ba2018-11-03 11:00:21 -06005187{
5188 BcStatus s;
5189
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005190 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko29301232018-12-11 15:29:32 +01005191 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005192 *r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005193
Denys Vlasenko29301232018-12-11 15:29:32 +01005194 s = zbc_program_num(*r, n, false);
5195 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005196
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005197 if (!BC_PROG_NUM((*r), (*n)))
Denys Vlasenko29301232018-12-11 15:29:32 +01005198 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005199
Denys Vlasenko29301232018-12-11 15:29:32 +01005200 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005201}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005202#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005203
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005204static void bc_program_retire(BcResult *r, BcResultType t)
Gavin Howard01055ba2018-11-03 11:00:21 -06005205{
5206 r->t = t;
Denys Vlasenko1dc4de92018-12-21 23:13:48 +01005207 bc_result_pop_and_push(r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005208}
5209
Denys Vlasenko259137d2018-12-11 19:42:05 +01005210static BC_STATUS zbc_program_op(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005211{
5212 BcStatus s;
5213 BcResult *opd1, *opd2, res;
5214 BcNum *n1, *n2 = NULL;
5215
Denys Vlasenko29301232018-12-11 15:29:32 +01005216 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005217 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005218 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005219
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005220 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005221 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 -06005222 if (s) goto err;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005223 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005224
Denys Vlasenko259137d2018-12-11 19:42:05 +01005225 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005226 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005227 bc_num_free(&res.d.n);
Denys Vlasenko259137d2018-12-11 19:42:05 +01005228 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005229}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005230#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005231
Denys Vlasenko26819db2018-12-12 16:08:46 +01005232static BC_STATUS zbc_program_read(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005233{
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005234 const char *sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005235 BcStatus s;
5236 BcParse parse;
5237 BcVec buf;
5238 BcInstPtr ip;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005239 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06005240
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005241 if (G.in_read)
Denys Vlasenko26819db2018-12-12 16:08:46 +01005242 RETURN_STATUS(bc_error_nested_read_call());
Gavin Howard01055ba2018-11-03 11:00:21 -06005243
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005244 f = bc_program_func(BC_PROG_READ);
Denys Vlasenko7d628012018-12-04 21:46:47 +01005245 bc_vec_pop_all(&f->code);
Gavin Howard01055ba2018-11-03 11:00:21 -06005246
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005247 sv_file = G.prog.file;
5248 G.prog.file = NULL;
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005249 G.in_read = 1;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005250
Denys Vlasenko82ea67f2018-12-13 19:23:45 +01005251 bc_char_vec_init(&buf);
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01005252 bc_read_line(&buf, stdin);
Gavin Howard01055ba2018-11-03 11:00:21 -06005253
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01005254 bc_parse_create(&parse, BC_PROG_READ);
Denys Vlasenko0409ad32018-12-05 16:39:22 +01005255 bc_lex_file(&parse.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06005256
Denys Vlasenkof86e9602018-12-14 17:01:56 +01005257 s = zbc_parse_text_init(&parse, buf.v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005258 if (s) goto exec_err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01005259 s = zcommon_parse_expr(&parse, BC_PARSE_NOREAD);
Gavin Howard01055ba2018-11-03 11:00:21 -06005260 if (s) goto exec_err;
5261
5262 if (parse.l.t.t != BC_LEX_NLINE && parse.l.t.t != BC_LEX_EOF) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005263 s = bc_error("bad read() expression");
Gavin Howard01055ba2018-11-03 11:00:21 -06005264 goto exec_err;
5265 }
5266
5267 ip.func = BC_PROG_READ;
Denys Vlasenko24e41942018-12-21 23:01:26 +01005268 ip.inst_idx = 0;
5269 IF_BC(ip.results_len_before_call = G.prog.results.len;)
Gavin Howard01055ba2018-11-03 11:00:21 -06005270
5271 // Update this pointer, just in case.
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005272 f = bc_program_func(BC_PROG_READ);
Gavin Howard01055ba2018-11-03 11:00:21 -06005273
5274 bc_vec_pushByte(&f->code, BC_INST_POP_EXEC);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005275 bc_vec_push(&G.prog.exestack, &ip);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005276 exec_err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005277 bc_parse_free(&parse);
Denys Vlasenko69171dc2018-12-12 00:29:24 +01005278 G.in_read = 0;
Denys Vlasenko4dd36522018-12-11 22:26:38 +01005279 G.prog.file = sv_file;
Gavin Howard01055ba2018-11-03 11:00:21 -06005280 bc_vec_free(&buf);
Denys Vlasenko26819db2018-12-12 16:08:46 +01005281 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005282}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005283#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005284
5285static size_t bc_program_index(char *code, size_t *bgn)
5286{
Denys Vlasenko3f940c92018-12-18 15:49:42 +01005287 unsigned char *bytes = (void*)(code + *bgn);
5288 unsigned amt;
5289 unsigned i;
5290 size_t res;
Gavin Howard01055ba2018-11-03 11:00:21 -06005291
Denys Vlasenko3f940c92018-12-18 15:49:42 +01005292 amt = *bytes++;
5293 *bgn += amt + 1;
5294
5295 amt *= 8;
5296 res = 0;
5297 for (i = 0; i < amt; i += 8)
5298 res |= (size_t)(*bytes++) << i;
Gavin Howard01055ba2018-11-03 11:00:21 -06005299
5300 return res;
5301}
5302
5303static char *bc_program_name(char *code, size_t *bgn)
5304{
5305 size_t i;
Denys Vlasenko694d2982018-12-18 19:17:11 +01005306 char *s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005307
Denys Vlasenko694d2982018-12-18 19:17:11 +01005308 code += *bgn;
5309 s = xmalloc(strchr(code, BC_PARSE_STREND) - code + 1);
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01005310 i = 0;
5311 for (;;) {
Denys Vlasenko694d2982018-12-18 19:17:11 +01005312 char c = *code++;
5313 if (c == BC_PARSE_STREND)
Denys Vlasenko6b0fbd12018-12-18 12:55:40 +01005314 break;
5315 s[i++] = c;
5316 }
Gavin Howard01055ba2018-11-03 11:00:21 -06005317 s[i] = '\0';
Denys Vlasenko694d2982018-12-18 19:17:11 +01005318 *bgn += i + 1;
Gavin Howard01055ba2018-11-03 11:00:21 -06005319
5320 return s;
5321}
5322
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005323static void bc_program_printString(const char *str)
Gavin Howard01055ba2018-11-03 11:00:21 -06005324{
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005325#if ENABLE_DC
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005326 if (!str[0]) {
Denys Vlasenko2c6f5632018-12-11 21:21:14 +01005327 // Example: echo '[]ap' | dc
5328 // should print two bytes: 0x00, 0x0A
Denys Vlasenko00d77792018-11-30 23:13:42 +01005329 bb_putchar('\0');
Gavin Howard01055ba2018-11-03 11:00:21 -06005330 return;
5331 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005332#endif
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005333 while (*str) {
5334 int c = *str++;
5335 if (c != '\\' || !*str)
Denys Vlasenko00d77792018-11-30 23:13:42 +01005336 bb_putchar(c);
Gavin Howard01055ba2018-11-03 11:00:21 -06005337 else {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005338 c = *str++;
Gavin Howard01055ba2018-11-03 11:00:21 -06005339 switch (c) {
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005340 case 'a':
5341 bb_putchar('\a');
5342 break;
5343 case 'b':
5344 bb_putchar('\b');
5345 break;
5346 case '\\':
5347 case 'e':
5348 bb_putchar('\\');
5349 break;
5350 case 'f':
5351 bb_putchar('\f');
5352 break;
5353 case 'n':
5354 bb_putchar('\n');
5355 G.prog.nchars = SIZE_MAX;
5356 break;
5357 case 'r':
5358 bb_putchar('\r');
5359 break;
5360 case 'q':
5361 bb_putchar('"');
5362 break;
5363 case 't':
5364 bb_putchar('\t');
5365 break;
5366 default:
5367 // Just print the backslash and following character.
5368 bb_putchar('\\');
5369 ++G.prog.nchars;
5370 bb_putchar(c);
5371 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005372 }
5373 }
Denys Vlasenko9f657e02018-12-11 19:52:25 +01005374 ++G.prog.nchars;
Gavin Howard01055ba2018-11-03 11:00:21 -06005375 }
5376}
5377
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005378static void bc_num_printNewline(void)
5379{
5380 if (G.prog.nchars == G.prog.len - 1) {
5381 bb_putchar('\\');
5382 bb_putchar('\n');
5383 G.prog.nchars = 0;
5384 }
5385}
5386
5387#if ENABLE_DC
Denys Vlasenkofa210792018-12-19 19:35:40 +01005388static FAST_FUNC void dc_num_printChar(size_t num, size_t width, bool radix)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005389{
5390 (void) radix;
5391 bb_putchar((char) num);
5392 G.prog.nchars += width;
5393}
5394#endif
5395
5396static FAST_FUNC void bc_num_printDigits(size_t num, size_t width, bool radix)
5397{
5398 size_t exp, pow;
5399
5400 bc_num_printNewline();
5401 bb_putchar(radix ? '.' : ' ');
5402 ++G.prog.nchars;
5403
5404 bc_num_printNewline();
5405 for (exp = 0, pow = 1; exp < width - 1; ++exp, pow *= 10)
5406 continue;
5407
5408 for (exp = 0; exp < width; pow /= 10, ++G.prog.nchars, ++exp) {
5409 size_t dig;
5410 bc_num_printNewline();
5411 dig = num / pow;
5412 num -= dig * pow;
5413 bb_putchar(((char) dig) + '0');
5414 }
5415}
5416
5417static FAST_FUNC void bc_num_printHex(size_t num, size_t width, bool radix)
5418{
5419 if (radix) {
5420 bc_num_printNewline();
5421 bb_putchar('.');
Denys Vlasenko30a8e0c2018-12-18 19:20:04 +01005422 G.prog.nchars++;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005423 }
5424
5425 bc_num_printNewline();
5426 bb_putchar(bb_hexdigits_upcase[num]);
5427 G.prog.nchars += width;
5428}
5429
5430static void bc_num_printDecimal(BcNum *n)
5431{
5432 size_t i, rdx = n->rdx - 1;
5433
Denys Vlasenko30a8e0c2018-12-18 19:20:04 +01005434 if (n->neg) {
5435 bb_putchar('-');
5436 G.prog.nchars++;
5437 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005438
5439 for (i = n->len - 1; i < n->len; --i)
5440 bc_num_printHex((size_t) n->num[i], 1, i == rdx);
5441}
5442
Denys Vlasenkod3401432018-12-18 17:00:35 +01005443static BC_STATUS zbc_num_printNum(BcNum *n, unsigned base_t, size_t width, BcNumDigitOp print)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005444{
5445 BcStatus s;
5446 BcVec stack;
Denys Vlasenkod3401432018-12-18 17:00:35 +01005447 BcNum base;
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01005448 BcDig base_digs[ULONG_NUM_BUFSIZE];
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005449 BcNum intp, fracp, digit, frac_len;
5450 unsigned long dig, *ptr;
5451 size_t i;
5452 bool radix;
5453
5454 if (n->len == 0) {
5455 print(0, width, false);
5456 RETURN_STATUS(BC_STATUS_SUCCESS);
5457 }
5458
5459 bc_vec_init(&stack, sizeof(long), NULL);
5460 bc_num_init(&intp, n->len);
5461 bc_num_init(&fracp, n->rdx);
5462 bc_num_init(&digit, width);
5463 bc_num_init(&frac_len, BC_NUM_INT(n));
5464 bc_num_copy(&intp, n);
5465 bc_num_one(&frac_len);
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01005466 base.cap = ARRAY_SIZE(base_digs);
5467 base.num = base_digs;
Denys Vlasenkod3401432018-12-18 17:00:35 +01005468 bc_num_ulong2num(&base, base_t);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005469
5470 bc_num_truncate(&intp, intp.rdx);
5471 s = zbc_num_sub(n, &intp, &fracp, 0);
5472 if (s) goto err;
5473
5474 while (intp.len != 0) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01005475 s = zbc_num_divmod(&intp, &base, &intp, &digit, 0);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005476 if (s) goto err;
5477 s = zbc_num_ulong(&digit, &dig);
5478 if (s) goto err;
5479 bc_vec_push(&stack, &dig);
5480 }
5481
5482 for (i = 0; i < stack.len; ++i) {
5483 ptr = bc_vec_item_rev(&stack, i);
5484 print(*ptr, width, false);
5485 }
5486
5487 if (!n->rdx) goto err;
5488
5489 for (radix = true; frac_len.len <= n->rdx; radix = false) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01005490 s = zbc_num_mul(&fracp, &base, &fracp, n->rdx);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005491 if (s) goto err;
5492 s = zbc_num_ulong(&fracp, &dig);
5493 if (s) goto err;
5494 bc_num_ulong2num(&intp, dig);
5495 s = zbc_num_sub(&fracp, &intp, &fracp, 0);
5496 if (s) goto err;
5497 print(dig, width, radix);
Denys Vlasenkod3401432018-12-18 17:00:35 +01005498 s = zbc_num_mul(&frac_len, &base, &frac_len, 0);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005499 if (s) goto err;
5500 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005501 err:
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005502 bc_num_free(&frac_len);
5503 bc_num_free(&digit);
5504 bc_num_free(&fracp);
5505 bc_num_free(&intp);
5506 bc_vec_free(&stack);
5507 RETURN_STATUS(s);
5508}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005509#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005510
5511static BC_STATUS zbc_num_printBase(BcNum *n)
5512{
5513 BcStatus s;
Denys Vlasenkod4258dd2018-12-18 13:22:23 +01005514 size_t width;
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005515 BcNumDigitOp print;
5516 bool neg = n->neg;
5517
5518 if (neg) {
5519 bb_putchar('-');
5520 G.prog.nchars++;
5521 }
5522
5523 n->neg = false;
5524
5525 if (G.prog.ob_t <= BC_NUM_MAX_IBASE) {
5526 width = 1;
5527 print = bc_num_printHex;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005528 } else {
Denys Vlasenkod4258dd2018-12-18 13:22:23 +01005529 unsigned i = G.prog.ob_t - 1;
5530 width = 0;
5531 for (;;) {
5532 width++;
5533 i /= 10;
5534 if (i == 0)
5535 break;
5536 }
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005537 print = bc_num_printDigits;
5538 }
5539
Denys Vlasenkod3401432018-12-18 17:00:35 +01005540 s = zbc_num_printNum(n, G.prog.ob_t, width, print);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005541 n->neg = neg;
5542
5543 RETURN_STATUS(s);
5544}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005545#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005546
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005547static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5548{
5549 BcStatus s = BC_STATUS_SUCCESS;
5550
5551 bc_num_printNewline();
5552
5553 if (n->len == 0) {
5554 bb_putchar('0');
5555 ++G.prog.nchars;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005556 } else if (G.prog.ob_t == 10)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005557 bc_num_printDecimal(n);
5558 else
5559 s = zbc_num_printBase(n);
5560
5561 if (newline) {
5562 bb_putchar('\n');
5563 G.prog.nchars = 0;
5564 }
5565
5566 RETURN_STATUS(s);
5567}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005568#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005569
Denys Vlasenko29301232018-12-11 15:29:32 +01005570static BC_STATUS zbc_program_print(char inst, size_t idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005571{
Denys Vlasenkofa35e592018-12-10 20:17:24 +01005572 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005573 BcResult *r;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005574 BcNum *num;
Gavin Howard01055ba2018-11-03 11:00:21 -06005575 bool pop = inst != BC_INST_PRINT;
5576
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005577 if (!STACK_HAS_MORE_THAN(&G.prog.results, idx))
Denys Vlasenko29301232018-12-11 15:29:32 +01005578 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005579
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005580 r = bc_vec_item_rev(&G.prog.results, idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01005581 s = zbc_program_num(r, &num, false);
5582 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005583
5584 if (BC_PROG_NUM(r, num)) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005585 s = zbc_num_print(num, !pop);
Denys Vlasenko503faf92018-12-20 16:24:18 +01005586#if ENABLE_BC
5587 if (!s && IS_BC) bc_num_copy(&G.prog.last, num);
5588#endif
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005589 } else {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005590 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06005591
5592 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005593 str = *bc_program_str(idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005594
5595 if (inst == BC_INST_PRINT_STR) {
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005596 for (;;) {
5597 char c = *str++;
5598 if (c == '\0') break;
Denys Vlasenko00d77792018-11-30 23:13:42 +01005599 bb_putchar(c);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005600 ++G.prog.nchars;
Denys Vlasenko44d79d82018-12-10 12:33:40 +01005601 if (c == '\n') G.prog.nchars = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005602 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005603 } else {
Denys Vlasenko5f1b90b2018-12-08 23:18:06 +01005604 bc_program_printString(str);
Denys Vlasenko00d77792018-11-30 23:13:42 +01005605 if (inst == BC_INST_PRINT) bb_putchar('\n');
Gavin Howard01055ba2018-11-03 11:00:21 -06005606 }
5607 }
5608
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005609 if (!s && pop) bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005610
Denys Vlasenko29301232018-12-11 15:29:32 +01005611 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005612}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005613#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005614
Denys Vlasenko29301232018-12-11 15:29:32 +01005615static BC_STATUS zbc_program_negate(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06005616{
5617 BcStatus s;
5618 BcResult res, *ptr;
5619 BcNum *num = NULL;
5620
Denys Vlasenko29301232018-12-11 15:29:32 +01005621 s = zbc_program_prep(&ptr, &num);
5622 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005623
5624 bc_num_init(&res.d.n, num->len);
5625 bc_num_copy(&res.d.n, num);
5626 if (res.d.n.len) res.d.n.neg = !res.d.n.neg;
5627
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005628 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06005629
Denys Vlasenko29301232018-12-11 15:29:32 +01005630 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005631}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005632#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005633
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005634static BC_STATUS zbc_program_logical(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005635{
5636 BcStatus s;
5637 BcResult *opd1, *opd2, res;
5638 BcNum *n1, *n2;
Denys Vlasenko16494f52018-12-12 00:50:23 +01005639 ssize_t cond;
Gavin Howard01055ba2018-11-03 11:00:21 -06005640
Denys Vlasenko29301232018-12-11 15:29:32 +01005641 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005642 if (s) RETURN_STATUS(s);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005643
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005644 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005645
5646 if (inst == BC_INST_BOOL_AND)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005647 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005648 else if (inst == BC_INST_BOOL_OR)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005649 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero);
Gavin Howard01055ba2018-11-03 11:00:21 -06005650 else {
Denys Vlasenko16494f52018-12-12 00:50:23 +01005651 cond = bc_num_cmp(n1, n2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005652 switch (inst) {
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005653 case BC_INST_REL_EQ:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005654 cond = (cond == 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005655 break;
5656 case BC_INST_REL_LE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005657 cond = (cond <= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005658 break;
5659 case BC_INST_REL_GE:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005660 cond = (cond >= 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005661 break;
5662 case BC_INST_REL_LT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005663 cond = (cond < 0);
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005664 break;
5665 case BC_INST_REL_GT:
Denys Vlasenko16494f52018-12-12 00:50:23 +01005666 cond = (cond > 0);
5667 break;
5668 default: // = case BC_INST_REL_NE:
5669 //cond = (cond != 0); - not needed
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005670 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06005671 }
5672 }
5673
Denys Vlasenko09d8df82018-12-11 19:29:35 +01005674 if (cond) bc_num_one(&res.d.n);
5675 //else bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06005676
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005677 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005678
Denys Vlasenko728e7c92018-12-11 19:37:00 +01005679 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005680}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005681#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005682
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005683#if ENABLE_DC
Denys Vlasenkofa210792018-12-19 19:35:40 +01005684static BC_STATUS zdc_program_assignStr(BcResult *r, BcVec *v, bool push)
Gavin Howard01055ba2018-11-03 11:00:21 -06005685{
5686 BcNum n2;
5687 BcResult res;
5688
5689 memset(&n2, 0, sizeof(BcNum));
5690 n2.rdx = res.d.id.idx = r->d.id.idx;
5691 res.t = BC_RESULT_STR;
5692
5693 if (!push) {
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005694 if (!STACK_HAS_MORE_THAN(&G.prog.results, 1))
Denys Vlasenko29301232018-12-11 15:29:32 +01005695 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005696 bc_vec_pop(v);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005697 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005698 }
5699
Denys Vlasenko1dc4de92018-12-21 23:13:48 +01005700 bc_result_pop_and_push(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005701 bc_vec_push(v, &n2);
5702
Denys Vlasenko29301232018-12-11 15:29:32 +01005703 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005704}
Denys Vlasenkofa210792018-12-19 19:35:40 +01005705#define zdc_program_assignStr(...) (zdc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005706#endif // ENABLE_DC
5707
Denys Vlasenko29301232018-12-11 15:29:32 +01005708static BC_STATUS zbc_program_copyToVar(char *name, bool var)
Gavin Howard01055ba2018-11-03 11:00:21 -06005709{
5710 BcStatus s;
5711 BcResult *ptr, r;
5712 BcVec *v;
5713 BcNum *n;
5714
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005715 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko29301232018-12-11 15:29:32 +01005716 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005717
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005718 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005719 if ((ptr->t == BC_RESULT_ARRAY) != !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005720 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005721 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005722
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005723#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005724 if (ptr->t == BC_RESULT_STR && !var)
Denys Vlasenko29301232018-12-11 15:29:32 +01005725 RETURN_STATUS(bc_error_variable_is_wrong_type());
5726 if (ptr->t == BC_RESULT_STR)
Denys Vlasenkofa210792018-12-19 19:35:40 +01005727 RETURN_STATUS(zdc_program_assignStr(ptr, v, true));
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005728#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005729
Denys Vlasenko29301232018-12-11 15:29:32 +01005730 s = zbc_program_num(ptr, &n, false);
5731 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005732
5733 // Do this once more to make sure that pointers were not invalidated.
Denys Vlasenkodf515392018-12-02 19:27:48 +01005734 v = bc_program_search(name, var);
Gavin Howard01055ba2018-11-03 11:00:21 -06005735
5736 if (var) {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01005737 bc_num_init_DEF_SIZE(&r.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06005738 bc_num_copy(&r.d.n, n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005739 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005740 bc_array_init(&r.d.v, true);
5741 bc_array_copy(&r.d.v, (BcVec *) n);
5742 }
5743
5744 bc_vec_push(v, &r.d);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005745 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005746
Denys Vlasenko29301232018-12-11 15:29:32 +01005747 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005748}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005749#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005750
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005751static BC_STATUS zbc_program_assign(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005752{
5753 BcStatus s;
5754 BcResult *left, *right, res;
5755 BcNum *l = NULL, *r = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06005756 bool assign = inst == BC_INST_ASSIGN, ib, sc;
5757
Denys Vlasenko29301232018-12-11 15:29:32 +01005758 s = zbc_program_binOpPrep(&left, &l, &right, &r, assign);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005759 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005760
5761 ib = left->t == BC_RESULT_IBASE;
5762 sc = left->t == BC_RESULT_SCALE;
5763
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005764#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06005765 if (right->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06005766 BcVec *v;
5767
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005768 if (left->t != BC_RESULT_VAR)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005769 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkodf515392018-12-02 19:27:48 +01005770 v = bc_program_search(left->d.id.name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06005771
Denys Vlasenkofa210792018-12-19 19:35:40 +01005772 RETURN_STATUS(zdc_program_assignStr(right, v, false));
Gavin Howard01055ba2018-11-03 11:00:21 -06005773 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005774#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005775
5776 if (left->t == BC_RESULT_CONSTANT || left->t == BC_RESULT_TEMP)
Denys Vlasenko259137d2018-12-11 19:42:05 +01005777 RETURN_STATUS(bc_error("bad assignment:"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005778 " left side must be variable"
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005779 " or array element"
Denys Vlasenko0154d782018-12-14 23:32:51 +01005780 )); // note: shared string
Gavin Howard01055ba2018-11-03 11:00:21 -06005781
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005782#if ENABLE_BC
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005783 if (inst == BC_INST_ASSIGN_DIVIDE && !bc_num_cmp(r, &G.prog.zero))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005784 RETURN_STATUS(bc_error("divide by zero"));
Gavin Howard01055ba2018-11-03 11:00:21 -06005785
5786 if (assign)
5787 bc_num_copy(l, r);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005788 else {
5789 s = BC_STATUS_SUCCESS;
Denys Vlasenkoec603182018-12-17 10:34:02 +01005790 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 +01005791 }
5792 if (s) RETURN_STATUS(s);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005793#else
Gavin Howard01055ba2018-11-03 11:00:21 -06005794 bc_num_copy(l, r);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005795#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06005796
5797 if (ib || sc || left->t == BC_RESULT_OBASE) {
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005798 static const char *const msg[] = {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005799 "bad ibase; must be [2,16]", //BC_RESULT_IBASE
5800 "bad scale; must be [0,"BC_MAX_SCALE_STR"]", //BC_RESULT_SCALE
5801 NULL, //can't happen //BC_RESULT_LAST
5802 NULL, //can't happen //BC_RESULT_CONSTANT
5803 NULL, //can't happen //BC_RESULT_ONE
5804 "bad obase; must be [2,"BC_MAX_OBASE_STR"]", //BC_RESULT_OBASE
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005805 };
Gavin Howard01055ba2018-11-03 11:00:21 -06005806 size_t *ptr;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005807 size_t max;
5808 unsigned long val;
Gavin Howard01055ba2018-11-03 11:00:21 -06005809
Denys Vlasenko29301232018-12-11 15:29:32 +01005810 s = zbc_num_ulong(l, &val);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005811 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005812 s = left->t - BC_RESULT_IBASE;
Gavin Howard01055ba2018-11-03 11:00:21 -06005813 if (sc) {
5814 max = BC_MAX_SCALE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005815 ptr = &G.prog.scale;
Denys Vlasenkof6e3f852018-12-17 21:05:09 +01005816 } else {
5817 if (val < 2)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005818 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005819 max = ib ? BC_NUM_MAX_IBASE : BC_MAX_OBASE;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005820 ptr = ib ? &G.prog.ib_t : &G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06005821 }
5822
Denys Vlasenko60cf7472018-12-04 20:05:28 +01005823 if (val > max)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005824 RETURN_STATUS(bc_error(msg[s]));
Gavin Howard01055ba2018-11-03 11:00:21 -06005825
5826 *ptr = (size_t) val;
5827 s = BC_STATUS_SUCCESS;
5828 }
5829
5830 bc_num_init(&res.d.n, l->len);
5831 bc_num_copy(&res.d.n, l);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005832 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06005833
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005834 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005835}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005836#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005837
Denys Vlasenko416ce762018-12-02 20:57:17 +01005838#if !ENABLE_DC
5839#define bc_program_pushVar(code, bgn, pop, copy) \
5840 bc_program_pushVar(code, bgn)
5841// for bc, 'pop' and 'copy' are always false
5842#endif
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005843static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
Gavin Howard01055ba2018-11-03 11:00:21 -06005844 bool pop, bool copy)
5845{
Gavin Howard01055ba2018-11-03 11:00:21 -06005846 BcResult r;
5847 char *name = bc_program_name(code, bgn);
Gavin Howard01055ba2018-11-03 11:00:21 -06005848
5849 r.t = BC_RESULT_VAR;
5850 r.d.id.name = name;
5851
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005852#if ENABLE_DC
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005853 if (pop || copy) {
Denys Vlasenko416ce762018-12-02 20:57:17 +01005854 BcVec *v = bc_program_search(name, true);
5855 BcNum *num = bc_vec_top(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005856
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005857 free(name);
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01005858 if (!STACK_HAS_MORE_THAN(v, 1 - copy)) {
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005859 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06005860 }
Denys Vlasenko7b30bc02018-12-18 17:14:34 +01005861
5862 if (!BC_PROG_STR(num)) {
5863 r.t = BC_RESULT_TEMP;
5864 bc_num_init_DEF_SIZE(&r.d.n);
5865 bc_num_copy(&r.d.n, num);
5866 } else {
5867 r.t = BC_RESULT_STR;
5868 r.d.id.idx = num->rdx;
5869 }
5870
5871 if (!copy) bc_vec_pop(v);
Gavin Howard01055ba2018-11-03 11:00:21 -06005872 }
5873#endif // ENABLE_DC
5874
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005875 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06005876
Denys Vlasenkob402ff82018-12-11 15:45:15 +01005877 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06005878}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005879#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005880
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005881static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn, char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005882{
5883 BcStatus s = BC_STATUS_SUCCESS;
5884 BcResult r;
5885 BcNum *num;
5886
5887 r.d.id.name = bc_program_name(code, bgn);
5888
5889 if (inst == BC_INST_ARRAY) {
5890 r.t = BC_RESULT_ARRAY;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005891 bc_vec_push(&G.prog.results, &r);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005892 } else {
Gavin Howard01055ba2018-11-03 11:00:21 -06005893 BcResult *operand;
5894 unsigned long temp;
5895
Denys Vlasenko29301232018-12-11 15:29:32 +01005896 s = zbc_program_prep(&operand, &num);
Gavin Howard01055ba2018-11-03 11:00:21 -06005897 if (s) goto err;
Denys Vlasenko29301232018-12-11 15:29:32 +01005898 s = zbc_num_ulong(num, &temp);
Gavin Howard01055ba2018-11-03 11:00:21 -06005899 if (s) goto err;
5900
5901 if (temp > BC_MAX_DIM) {
Denys Vlasenko64074a12018-12-07 15:50:14 +01005902 s = bc_error("array too long; must be [1,"BC_MAX_DIM_STR"]");
Gavin Howard01055ba2018-11-03 11:00:21 -06005903 goto err;
5904 }
5905
5906 r.d.id.idx = (size_t) temp;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005907 bc_program_retire(&r, BC_RESULT_ARRAY_ELEM);
Gavin Howard01055ba2018-11-03 11:00:21 -06005908 }
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005909 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06005910 if (s) free(r.d.id.name);
Denys Vlasenko29301232018-12-11 15:29:32 +01005911 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005912}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005913#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005914
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01005915#if ENABLE_BC
Denys Vlasenko29301232018-12-11 15:29:32 +01005916static BC_STATUS zbc_program_incdec(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06005917{
5918 BcStatus s;
5919 BcResult *ptr, res, copy;
5920 BcNum *num = NULL;
5921 char inst2 = inst;
5922
Denys Vlasenko29301232018-12-11 15:29:32 +01005923 s = zbc_program_prep(&ptr, &num);
5924 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005925
5926 if (inst == BC_INST_INC_POST || inst == BC_INST_DEC_POST) {
5927 copy.t = BC_RESULT_TEMP;
5928 bc_num_init(&copy.d.n, num->len);
5929 bc_num_copy(&copy.d.n, num);
5930 }
5931
5932 res.t = BC_RESULT_ONE;
5933 inst = inst == BC_INST_INC_PRE || inst == BC_INST_INC_POST ?
5934 BC_INST_ASSIGN_PLUS :
5935 BC_INST_ASSIGN_MINUS;
5936
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005937 bc_vec_push(&G.prog.results, &res);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01005938 s = zbc_program_assign(inst);
5939 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005940
5941 if (inst2 == BC_INST_INC_POST || inst2 == BC_INST_DEC_POST) {
Denys Vlasenko1dc4de92018-12-21 23:13:48 +01005942 bc_result_pop_and_push(&copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06005943 }
5944
Denys Vlasenko29301232018-12-11 15:29:32 +01005945 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005946}
Denys Vlasenkoec603182018-12-17 10:34:02 +01005947#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06005948
Denys Vlasenko29301232018-12-11 15:29:32 +01005949static BC_STATUS zbc_program_call(char *code, size_t *idx)
Gavin Howard01055ba2018-11-03 11:00:21 -06005950{
Gavin Howard01055ba2018-11-03 11:00:21 -06005951 BcInstPtr ip;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005952 size_t i, nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005953 BcFunc *func;
Gavin Howard01055ba2018-11-03 11:00:21 -06005954 BcId *a;
Gavin Howard01055ba2018-11-03 11:00:21 -06005955 BcResult *arg;
5956
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005957 nparams = bc_program_index(code, idx);
Denys Vlasenko24e41942018-12-21 23:01:26 +01005958 ip.inst_idx = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06005959 ip.func = bc_program_index(code, idx);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01005960 func = bc_program_func(ip.func);
Gavin Howard01055ba2018-11-03 11:00:21 -06005961
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005962 if (func->code.len == 0) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005963 RETURN_STATUS(bc_error("undefined function"));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005964 }
5965 if (nparams != func->nparams) {
Denys Vlasenko29301232018-12-11 15:29:32 +01005966 RETURN_STATUS(bc_error_fmt("function has %u parameters, but called with %u", func->nparams, nparams));
Denys Vlasenko04a1c762018-12-03 21:10:57 +01005967 }
Denys Vlasenko24e41942018-12-21 23:01:26 +01005968 ip.results_len_before_call = G.prog.results.len - nparams;
Gavin Howard01055ba2018-11-03 11:00:21 -06005969
5970 for (i = 0; i < nparams; ++i) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01005971 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06005972
5973 a = bc_vec_item(&func->autos, nparams - 1 - i);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01005974 arg = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06005975
5976 if ((!a->idx) != (arg->t == BC_RESULT_ARRAY) || arg->t == BC_RESULT_STR)
Denys Vlasenko29301232018-12-11 15:29:32 +01005977 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06005978
Denys Vlasenko29301232018-12-11 15:29:32 +01005979 s = zbc_program_copyToVar(a->name, a->idx);
5980 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06005981 }
5982
Denys Vlasenko87888ce2018-12-19 17:55:23 +01005983 a = bc_vec_item(&func->autos, i);
5984 for (; i < func->autos.len; i++, a++) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01005985 BcVec *v;
Gavin Howard01055ba2018-11-03 11:00:21 -06005986
Denys Vlasenkodf515392018-12-02 19:27:48 +01005987 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06005988 if (a->idx) {
Denys Vlasenkof36a0ad2018-12-19 17:15:04 +01005989 BcNum n2;
5990 bc_num_init_DEF_SIZE(&n2);
5991 bc_vec_push(v, &n2);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01005992 } else {
Denys Vlasenkof36a0ad2018-12-19 17:15:04 +01005993 BcVec v2;
5994 bc_array_init(&v2, true);
5995 bc_vec_push(v, &v2);
Gavin Howard01055ba2018-11-03 11:00:21 -06005996 }
5997 }
5998
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01005999 bc_vec_push(&G.prog.exestack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006000
Denys Vlasenko29301232018-12-11 15:29:32 +01006001 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006002}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006003#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006004
Denys Vlasenko29301232018-12-11 15:29:32 +01006005static BC_STATUS zbc_program_return(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006006{
Gavin Howard01055ba2018-11-03 11:00:21 -06006007 BcResult res;
6008 BcFunc *f;
Denys Vlasenko87888ce2018-12-19 17:55:23 +01006009 BcId *a;
Gavin Howard01055ba2018-11-03 11:00:21 -06006010 size_t i;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006011 BcInstPtr *ip = bc_vec_top(&G.prog.exestack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006012
Denys Vlasenko24e41942018-12-21 23:01:26 +01006013 if (!STACK_HAS_EQUAL_OR_MORE_THAN(&G.prog.results, ip->results_len_before_call + (inst == BC_INST_RET)))
Denys Vlasenko29301232018-12-11 15:29:32 +01006014 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006015
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006016 f = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006017 res.t = BC_RESULT_TEMP;
6018
6019 if (inst == BC_INST_RET) {
Denys Vlasenko628bf1b2018-12-10 20:41:05 +01006020 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006021 BcNum *num;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006022 BcResult *operand = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006023
Denys Vlasenko29301232018-12-11 15:29:32 +01006024 s = zbc_program_num(operand, &num, false);
6025 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006026 bc_num_init(&res.d.n, num->len);
6027 bc_num_copy(&res.d.n, num);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006028 } else {
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006029 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006030 //bc_num_zero(&res.d.n); - already is
Gavin Howard01055ba2018-11-03 11:00:21 -06006031 }
6032
6033 // We need to pop arguments as well, so this takes that into account.
Denys Vlasenko87888ce2018-12-19 17:55:23 +01006034 a = (void*)f->autos.v;
6035 for (i = 0; i < f->autos.len; i++, a++) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006036 BcVec *v;
Denys Vlasenkodf515392018-12-02 19:27:48 +01006037 v = bc_program_search(a->name, a->idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006038 bc_vec_pop(v);
6039 }
6040
Denys Vlasenko24e41942018-12-21 23:01:26 +01006041 bc_vec_npop(&G.prog.results, G.prog.results.len - ip->results_len_before_call);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006042 bc_vec_push(&G.prog.results, &res);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006043 bc_vec_pop(&G.prog.exestack);
Gavin Howard01055ba2018-11-03 11:00:21 -06006044
Denys Vlasenko29301232018-12-11 15:29:32 +01006045 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006046}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006047#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006048#endif // ENABLE_BC
6049
6050static unsigned long bc_program_scale(BcNum *n)
6051{
6052 return (unsigned long) n->rdx;
6053}
6054
6055static unsigned long bc_program_len(BcNum *n)
6056{
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006057 size_t len = n->len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006058
Denys Vlasenkoa7f1a362018-12-10 12:57:01 +01006059 if (n->rdx != len) return len;
6060 for (;;) {
6061 if (len == 0) break;
6062 len--;
6063 if (n->num[len] != 0) break;
6064 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006065 return len;
6066}
6067
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006068static BC_STATUS zbc_program_builtin(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006069{
6070 BcStatus s;
6071 BcResult *opnd;
6072 BcNum *num = NULL;
6073 BcResult res;
6074 bool len = inst == BC_INST_LENGTH;
6075
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006076 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006077 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006078 opnd = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006079
Denys Vlasenko29301232018-12-11 15:29:32 +01006080 s = zbc_program_num(opnd, &num, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006081 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006082
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006083#if ENABLE_DC
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006084 if (!BC_PROG_NUM(opnd, num) && !len)
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006085 RETURN_STATUS(bc_error_variable_is_wrong_type());
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006086#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006087
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006088 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006089
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006090 if (inst == BC_INST_SQRT)
6091 s = zbc_num_sqrt(num, &res.d.n, G.prog.scale);
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006092#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006093 else if (len != 0 && opnd->t == BC_RESULT_ARRAY) {
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006094 bc_num_ulong2num(&res.d.n, (unsigned long) ((BcVec *) num)->len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006095 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006096#endif
6097#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006098 else if (len != 0 && !BC_PROG_NUM(opnd, num)) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006099 char **str;
6100 size_t idx = opnd->t == BC_RESULT_STR ? opnd->d.id.idx : num->rdx;
6101
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006102 str = bc_program_str(idx);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006103 bc_num_ulong2num(&res.d.n, strlen(*str));
Gavin Howard01055ba2018-11-03 11:00:21 -06006104 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006105#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006106 else {
Denys Vlasenko5ba55f12018-12-10 15:37:14 +01006107 bc_num_ulong2num(&res.d.n, len ? bc_program_len(num) : bc_program_scale(num));
Gavin Howard01055ba2018-11-03 11:00:21 -06006108 }
6109
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006110 bc_program_retire(&res, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006111
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006112 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006113}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006114#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006115
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006116#if ENABLE_DC
Denys Vlasenkofa210792018-12-19 19:35:40 +01006117static BC_STATUS zdc_program_divmod(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006118{
6119 BcStatus s;
6120 BcResult *opd1, *opd2, res, res2;
6121 BcNum *n1, *n2 = NULL;
6122
Denys Vlasenko29301232018-12-11 15:29:32 +01006123 s = zbc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006124 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006125
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006126 bc_num_init_DEF_SIZE(&res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006127 bc_num_init(&res2.d.n, n2->len);
6128
Denys Vlasenko1aeacef2018-12-11 19:12:13 +01006129 s = zbc_num_divmod(n1, n2, &res2.d.n, &res.d.n, G.prog.scale);
Gavin Howard01055ba2018-11-03 11:00:21 -06006130 if (s) goto err;
6131
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006132 bc_program_binOpRetire(&res2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006133 res.t = BC_RESULT_TEMP;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006134 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006135
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006136 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006137 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006138 bc_num_free(&res2.d.n);
6139 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006140 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006141}
Denys Vlasenkofa210792018-12-19 19:35:40 +01006142#define zdc_program_divmod(...) (zdc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006143
Denys Vlasenkofa210792018-12-19 19:35:40 +01006144static BC_STATUS zdc_program_modexp(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006145{
6146 BcStatus s;
6147 BcResult *r1, *r2, *r3, res;
6148 BcNum *n1, *n2, *n3;
6149
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006150 if (!STACK_HAS_MORE_THAN(&G.prog.results, 2))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006151 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenko29301232018-12-11 15:29:32 +01006152 s = zbc_program_binOpPrep(&r2, &n2, &r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006153 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006154
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006155 r1 = bc_vec_item_rev(&G.prog.results, 2);
Denys Vlasenko29301232018-12-11 15:29:32 +01006156 s = zbc_program_num(r1, &n1, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006157 if (s) RETURN_STATUS(s);
Denys Vlasenko60cf7472018-12-04 20:05:28 +01006158 if (!BC_PROG_NUM(r1, n1))
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006159 RETURN_STATUS(bc_error_variable_is_wrong_type());
Gavin Howard01055ba2018-11-03 11:00:21 -06006160
6161 // Make sure that the values have their pointers updated, if necessary.
6162 if (r1->t == BC_RESULT_VAR || r1->t == BC_RESULT_ARRAY_ELEM) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006163 if (r1->t == r2->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006164 s = zbc_program_num(r2, &n2, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006165 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006166 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006167 if (r1->t == r3->t) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006168 s = zbc_program_num(r3, &n3, false);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006169 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006170 }
6171 }
6172
6173 bc_num_init(&res.d.n, n3->len);
Denys Vlasenkofa210792018-12-19 19:35:40 +01006174 s = zdc_num_modexp(n1, n2, n3, &res.d.n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006175 if (s) goto err;
6176
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006177 bc_vec_pop(&G.prog.results);
6178 bc_program_binOpRetire(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006179
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006180 RETURN_STATUS(s);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006181 err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006182 bc_num_free(&res.d.n);
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006183 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006184}
Denys Vlasenkofa210792018-12-19 19:35:40 +01006185#define zdc_program_modexp(...) (zdc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006186
Denys Vlasenkofa210792018-12-19 19:35:40 +01006187static void dc_program_stackLen(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006188{
Gavin Howard01055ba2018-11-03 11:00:21 -06006189 BcResult res;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006190 size_t len = G.prog.results.len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006191
6192 res.t = BC_RESULT_TEMP;
6193
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006194 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006195 bc_num_ulong2num(&res.d.n, len);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006196 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006197}
6198
Denys Vlasenkofa210792018-12-19 19:35:40 +01006199static BC_STATUS zdc_program_asciify(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006200{
6201 BcStatus s;
6202 BcResult *r, res;
Denys Vlasenko4a024c72018-12-09 13:21:54 +01006203 BcNum *num, n;
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01006204 char **strs;
6205 char *str;
6206 char c;
6207 size_t idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006208 unsigned long val;
6209
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006210 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006211 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006212 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006213
Denys Vlasenko29301232018-12-11 15:29:32 +01006214 s = zbc_program_num(r, &num, false);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006215 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006216
6217 if (BC_PROG_NUM(r, num)) {
Denys Vlasenkod3401432018-12-18 17:00:35 +01006218 BcNum strmb;
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01006219 BcDig strmb_digs[ULONG_NUM_BUFSIZE];
Denys Vlasenkod3401432018-12-18 17:00:35 +01006220
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006221 bc_num_init_DEF_SIZE(&n);
Gavin Howard01055ba2018-11-03 11:00:21 -06006222 bc_num_copy(&n, num);
6223 bc_num_truncate(&n, n.rdx);
6224
Denys Vlasenkoe8e7bda2018-12-21 22:36:04 +01006225 strmb.cap = ARRAY_SIZE(strmb_digs);
6226 strmb.num = strmb_digs;
Denys Vlasenkod3401432018-12-18 17:00:35 +01006227 bc_num_ulong2num(&strmb, 0x100);
6228 s = zbc_num_mod(&n, &strmb, &n, 0);
Denys Vlasenkod3401432018-12-18 17:00:35 +01006229
Gavin Howard01055ba2018-11-03 11:00:21 -06006230 if (s) goto num_err;
Denys Vlasenko29301232018-12-11 15:29:32 +01006231 s = zbc_num_ulong(&n, &val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006232 if (s) goto num_err;
6233
6234 c = (char) val;
6235
6236 bc_num_free(&n);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006237 } else {
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01006238 char *sp;
Gavin Howard01055ba2018-11-03 11:00:21 -06006239 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : num->rdx;
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01006240 sp = *bc_program_str(idx);
6241 c = sp[0];
Gavin Howard01055ba2018-11-03 11:00:21 -06006242 }
6243
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01006244 strs = (void*)G.prog.strs.v;
6245 for (idx = 0; idx < G.prog.strs.len; idx++) {
6246 if (strs[idx][0] == c && strs[idx][1] == '\0') {
6247 goto dup;
6248 }
6249 }
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006250 str = xzalloc(2);
Gavin Howard01055ba2018-11-03 11:00:21 -06006251 str[0] = c;
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006252 //str[1] = '\0'; - already is
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01006253 bc_vec_push(&G.prog.strs, &str);
6254 dup:
Gavin Howard01055ba2018-11-03 11:00:21 -06006255 res.t = BC_RESULT_STR;
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01006256 res.d.id.idx = idx;
Denys Vlasenko1dc4de92018-12-21 23:13:48 +01006257 bc_result_pop_and_push(&res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006258
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006259 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006260 num_err:
Gavin Howard01055ba2018-11-03 11:00:21 -06006261 bc_num_free(&n);
Denys Vlasenkoc008a732018-12-11 20:57:53 +01006262 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006263}
Denys Vlasenkofa210792018-12-19 19:35:40 +01006264#define zdc_program_asciify(...) (zdc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006265
Denys Vlasenkofa210792018-12-19 19:35:40 +01006266static BC_STATUS zdc_program_printStream(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006267{
6268 BcStatus s;
6269 BcResult *r;
Denys Vlasenkofa210792018-12-19 19:35:40 +01006270 BcNum *n;
Gavin Howard01055ba2018-11-03 11:00:21 -06006271 size_t idx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006272
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006273 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko29301232018-12-11 15:29:32 +01006274 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006275 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006276
Denys Vlasenko29301232018-12-11 15:29:32 +01006277 s = zbc_program_num(r, &n, false);
6278 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006279
Denys Vlasenko57734c92018-12-17 21:14:05 +01006280 if (BC_PROG_NUM(r, n)) {
Denys Vlasenkofa210792018-12-19 19:35:40 +01006281 s = zbc_num_printNum(n, 0x100, 1, dc_num_printChar);
Denys Vlasenko57734c92018-12-17 21:14:05 +01006282 } else {
Denys Vlasenkofa210792018-12-19 19:35:40 +01006283 char *str;
Gavin Howard01055ba2018-11-03 11:00:21 -06006284 idx = (r->t == BC_RESULT_STR) ? r->d.id.idx : n->rdx;
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006285 str = *bc_program_str(idx);
Denys Vlasenkofa210792018-12-19 19:35:40 +01006286 fputs(str, stdout);
Gavin Howard01055ba2018-11-03 11:00:21 -06006287 }
6288
Denys Vlasenko29301232018-12-11 15:29:32 +01006289 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006290}
Denys Vlasenkofa210792018-12-19 19:35:40 +01006291#define zdc_program_printStream(...) (zdc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006292
Denys Vlasenkofa210792018-12-19 19:35:40 +01006293static BC_STATUS zdc_program_nquit(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006294{
6295 BcStatus s;
6296 BcResult *opnd;
6297 BcNum *num = NULL;
6298 unsigned long val;
6299
Denys Vlasenko29301232018-12-11 15:29:32 +01006300 s = zbc_program_prep(&opnd, &num);
6301 if (s) RETURN_STATUS(s);
6302 s = zbc_num_ulong(num, &val);
6303 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006304
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006305 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006306
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006307 if (G.prog.exestack.len < val)
Denys Vlasenko29301232018-12-11 15:29:32 +01006308 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006309 if (G.prog.exestack.len == val) {
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006310 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01006311 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006312
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006313 bc_vec_npop(&G.prog.exestack, val);
Gavin Howard01055ba2018-11-03 11:00:21 -06006314
Denys Vlasenko29301232018-12-11 15:29:32 +01006315 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006316}
Denys Vlasenkofa210792018-12-19 19:35:40 +01006317#define zdc_program_nquit(...) (zdc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006318
Denys Vlasenkofa210792018-12-19 19:35:40 +01006319static BC_STATUS zdc_program_execStr(char *code, size_t *bgn, bool cond)
Gavin Howard01055ba2018-11-03 11:00:21 -06006320{
6321 BcStatus s = BC_STATUS_SUCCESS;
6322 BcResult *r;
Gavin Howard01055ba2018-11-03 11:00:21 -06006323 BcFunc *f;
Gavin Howard01055ba2018-11-03 11:00:21 -06006324 BcInstPtr ip;
6325 size_t fidx, sidx;
Gavin Howard01055ba2018-11-03 11:00:21 -06006326
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006327 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006328 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Gavin Howard01055ba2018-11-03 11:00:21 -06006329
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006330 r = bc_vec_top(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006331
6332 if (cond) {
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006333 BcNum *n = n; // for compiler
6334 bool exec;
6335 char *name;
6336 char *then_name = bc_program_name(code, bgn);
6337 char *else_name = NULL;
Gavin Howard01055ba2018-11-03 11:00:21 -06006338
6339 if (code[*bgn] == BC_PARSE_STREND)
6340 (*bgn) += 1;
6341 else
6342 else_name = bc_program_name(code, bgn);
6343
6344 exec = r->d.n.len != 0;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006345 name = then_name;
6346 if (!exec && else_name != NULL) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006347 exec = true;
6348 name = else_name;
6349 }
6350
6351 if (exec) {
Denys Vlasenkodf515392018-12-02 19:27:48 +01006352 BcVec *v;
6353 v = bc_program_search(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006354 n = bc_vec_top(v);
6355 }
6356
6357 free(then_name);
6358 free(else_name);
6359
6360 if (!exec) goto exit;
6361 if (!BC_PROG_STR(n)) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006362 s = bc_error_variable_is_wrong_type();
Gavin Howard01055ba2018-11-03 11:00:21 -06006363 goto exit;
6364 }
6365
6366 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006367 } else {
6368 if (r->t == BC_RESULT_STR) {
Gavin Howard01055ba2018-11-03 11:00:21 -06006369 sidx = r->d.id.idx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006370 } else if (r->t == BC_RESULT_VAR) {
6371 BcNum *n;
Denys Vlasenko29301232018-12-11 15:29:32 +01006372 s = zbc_program_num(r, &n, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006373 if (s || !BC_PROG_STR(n)) goto exit;
6374 sidx = n->rdx;
Denys Vlasenko5ec4b492018-12-09 02:54:06 +01006375 } else
Gavin Howard01055ba2018-11-03 11:00:21 -06006376 goto exit;
6377 }
6378
6379 fidx = sidx + BC_PROG_REQ_FUNCS;
6380
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006381 f = bc_program_func(fidx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006382
6383 if (f->code.len == 0) {
Denys Vlasenkofa210792018-12-19 19:35:40 +01006384 BcParse prs;
6385 char *str;
6386
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01006387 bc_parse_create(&prs, fidx);
Denys Vlasenkofa210792018-12-19 19:35:40 +01006388 str = *bc_program_str(sidx);
6389 s = zbc_parse_text_init(&prs, str);
Gavin Howard01055ba2018-11-03 11:00:21 -06006390 if (s) goto err;
Denys Vlasenkoae0faf92018-12-12 15:19:54 +01006391 s = zcommon_parse_expr(&prs, BC_PARSE_NOCALL);
Gavin Howard01055ba2018-11-03 11:00:21 -06006392 if (s) goto err;
Gavin Howard01055ba2018-11-03 11:00:21 -06006393 if (prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006394 s = bc_error_bad_expression();
Denys Vlasenkofa210792018-12-19 19:35:40 +01006395 err:
6396 bc_parse_free(&prs);
6397 bc_vec_pop_all(&f->code);
6398 goto exit;
Gavin Howard01055ba2018-11-03 11:00:21 -06006399 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006400 bc_parse_free(&prs);
6401 }
6402
Denys Vlasenko24e41942018-12-21 23:01:26 +01006403 ip.inst_idx = 0;
Gavin Howard01055ba2018-11-03 11:00:21 -06006404 ip.func = fidx;
6405
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006406 bc_vec_pop(&G.prog.results);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006407 bc_vec_push(&G.prog.exestack, &ip);
Gavin Howard01055ba2018-11-03 11:00:21 -06006408
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006409 RETURN_STATUS(BC_STATUS_SUCCESS);
Denys Vlasenko7f2d59c2018-12-18 16:24:07 +01006410 exit:
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006411 bc_vec_pop(&G.prog.results);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006412 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006413}
Denys Vlasenkofa210792018-12-19 19:35:40 +01006414#define zdc_program_execStr(...) (zdc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006415#endif // ENABLE_DC
6416
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006417static void bc_program_pushGlobal(char inst)
Gavin Howard01055ba2018-11-03 11:00:21 -06006418{
Gavin Howard01055ba2018-11-03 11:00:21 -06006419 BcResult res;
6420 unsigned long val;
6421
6422 res.t = inst - BC_INST_IBASE + BC_RESULT_IBASE;
6423 if (inst == BC_INST_IBASE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006424 val = (unsigned long) G.prog.ib_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006425 else if (inst == BC_INST_SCALE)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006426 val = (unsigned long) G.prog.scale;
Gavin Howard01055ba2018-11-03 11:00:21 -06006427 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006428 val = (unsigned long) G.prog.ob_t;
Gavin Howard01055ba2018-11-03 11:00:21 -06006429
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006430 bc_num_init_DEF_SIZE(&res.d.n);
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006431 bc_num_ulong2num(&res.d.n, val);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006432 bc_vec_push(&G.prog.results, &res);
Gavin Howard01055ba2018-11-03 11:00:21 -06006433}
6434
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006435static BC_STATUS zbc_program_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06006436{
Gavin Howard01055ba2018-11-03 11:00:21 -06006437 BcResult r, *ptr;
6438 BcNum *num;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006439 BcInstPtr *ip = bc_vec_top(&G.prog.exestack);
Denys Vlasenko8fa1e8e2018-12-09 00:03:57 +01006440 BcFunc *func = bc_program_func(ip->func);
Gavin Howard01055ba2018-11-03 11:00:21 -06006441 char *code = func->code.v;
Gavin Howard01055ba2018-11-03 11:00:21 -06006442
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01006443 dbg_exec("func:%zd bytes:%zd ip:%zd results.len:%d",
Denys Vlasenko24e41942018-12-21 23:01:26 +01006444 ip->func, func->code.len, ip->inst_idx, G.prog.results.len);
6445 while (ip->inst_idx < func->code.len) {
Denys Vlasenkofa35e592018-12-10 20:17:24 +01006446 BcStatus s = BC_STATUS_SUCCESS;
Denys Vlasenko24e41942018-12-21 23:01:26 +01006447 char inst = code[ip->inst_idx++];
Gavin Howard01055ba2018-11-03 11:00:21 -06006448
Denys Vlasenko24e41942018-12-21 23:01:26 +01006449 dbg_exec("inst at %zd:%d results.len:%d", ip->inst_idx - 1, inst, G.prog.results.len);
Gavin Howard01055ba2018-11-03 11:00:21 -06006450 switch (inst) {
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006451#if ENABLE_BC
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006452 case BC_INST_JUMP_ZERO: {
6453 bool zero;
Denys Vlasenko99b37622018-12-15 20:06:59 +01006454 dbg_exec("BC_INST_JUMP_ZERO:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006455 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006456 if (s) RETURN_STATUS(s);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006457 zero = (bc_num_cmp(num, &G.prog.zero) == 0);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006458 bc_vec_pop(&G.prog.results);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006459 if (!zero) {
Denys Vlasenko24e41942018-12-21 23:01:26 +01006460 bc_program_index(code, &ip->inst_idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006461 break;
6462 }
6463 // else: fall through
6464 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006465 case BC_INST_JUMP: {
Denys Vlasenko24e41942018-12-21 23:01:26 +01006466 size_t idx = bc_program_index(code, &ip->inst_idx);
Denys Vlasenkofd51e0c2018-12-15 15:07:14 +01006467 size_t *addr = bc_vec_item(&func->labels, idx);
Denys Vlasenko99b37622018-12-15 20:06:59 +01006468 dbg_exec("BC_INST_JUMP: to %ld", (long)*addr);
Denys Vlasenko24e41942018-12-21 23:01:26 +01006469 ip->inst_idx = *addr;
Gavin Howard01055ba2018-11-03 11:00:21 -06006470 break;
6471 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006472 case BC_INST_CALL:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006473 dbg_exec("BC_INST_CALL:");
Denys Vlasenko24e41942018-12-21 23:01:26 +01006474 s = zbc_program_call(code, &ip->inst_idx);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006475 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006476 case BC_INST_INC_PRE:
6477 case BC_INST_DEC_PRE:
6478 case BC_INST_INC_POST:
6479 case BC_INST_DEC_POST:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006480 dbg_exec("BC_INST_INCDEC:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006481 s = zbc_program_incdec(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006482 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006483 case BC_INST_HALT:
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006484 dbg_exec("BC_INST_HALT:");
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006485 QUIT_OR_RETURN_TO_MAIN;
Gavin Howard01055ba2018-11-03 11:00:21 -06006486 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006487 case BC_INST_RET:
6488 case BC_INST_RET0:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006489 dbg_exec("BC_INST_RET[0]:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006490 s = zbc_program_return(inst);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006491 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006492 case BC_INST_BOOL_OR:
6493 case BC_INST_BOOL_AND:
6494#endif // ENABLE_BC
6495 case BC_INST_REL_EQ:
6496 case BC_INST_REL_LE:
6497 case BC_INST_REL_GE:
6498 case BC_INST_REL_NE:
6499 case BC_INST_REL_LT:
6500 case BC_INST_REL_GT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006501 dbg_exec("BC_INST_BOOL:");
Denys Vlasenko728e7c92018-12-11 19:37:00 +01006502 s = zbc_program_logical(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006503 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006504 case BC_INST_READ:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006505 dbg_exec("BC_INST_READ:");
Denys Vlasenko26819db2018-12-12 16:08:46 +01006506 s = zbc_program_read();
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006507 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006508 case BC_INST_VAR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006509 dbg_exec("BC_INST_VAR:");
Denys Vlasenko24e41942018-12-21 23:01:26 +01006510 s = zbc_program_pushVar(code, &ip->inst_idx, false, false);
Gavin Howard01055ba2018-11-03 11:00:21 -06006511 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006512 case BC_INST_ARRAY_ELEM:
6513 case BC_INST_ARRAY:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006514 dbg_exec("BC_INST_ARRAY[_ELEM]:");
Denys Vlasenko24e41942018-12-21 23:01:26 +01006515 s = zbc_program_pushArray(code, &ip->inst_idx, inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006516 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006517 case BC_INST_LAST:
Gavin Howard01055ba2018-11-03 11:00:21 -06006518 r.t = BC_RESULT_LAST;
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006519 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006520 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006521 case BC_INST_IBASE:
6522 case BC_INST_SCALE:
6523 case BC_INST_OBASE:
Denys Vlasenkoe3b4f232018-12-02 18:44:40 +01006524 bc_program_pushGlobal(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006525 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006526 case BC_INST_SCALE_FUNC:
6527 case BC_INST_LENGTH:
6528 case BC_INST_SQRT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006529 dbg_exec("BC_INST_builtin:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006530 s = zbc_program_builtin(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006531 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006532 case BC_INST_NUM:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006533 dbg_exec("BC_INST_NUM:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006534 r.t = BC_RESULT_CONSTANT;
Denys Vlasenko24e41942018-12-21 23:01:26 +01006535 r.d.id.idx = bc_program_index(code, &ip->inst_idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006536 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006537 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006538 case BC_INST_POP:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006539 dbg_exec("BC_INST_POP:");
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006540 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenko24fb2cd2018-12-05 16:03:46 +01006541 s = bc_error_stack_has_too_few_elements();
Gavin Howard01055ba2018-11-03 11:00:21 -06006542 else
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006543 bc_vec_pop(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006544 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006545 case BC_INST_POP_EXEC:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006546 dbg_exec("BC_INST_POP_EXEC:");
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006547 bc_vec_pop(&G.prog.exestack);
Denys Vlasenko085b4202018-12-19 14:02:59 +01006548 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006549 case BC_INST_PRINT:
6550 case BC_INST_PRINT_POP:
6551 case BC_INST_PRINT_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006552 dbg_exec("BC_INST_PRINTxyz:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006553 s = zbc_program_print(inst, 0);
Gavin Howard01055ba2018-11-03 11:00:21 -06006554 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006555 case BC_INST_STR:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006556 dbg_exec("BC_INST_STR:");
Gavin Howard01055ba2018-11-03 11:00:21 -06006557 r.t = BC_RESULT_STR;
Denys Vlasenko24e41942018-12-21 23:01:26 +01006558 r.d.id.idx = bc_program_index(code, &ip->inst_idx);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006559 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006560 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006561 case BC_INST_POWER:
6562 case BC_INST_MULTIPLY:
6563 case BC_INST_DIVIDE:
6564 case BC_INST_MODULUS:
6565 case BC_INST_PLUS:
6566 case BC_INST_MINUS:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006567 dbg_exec("BC_INST_binaryop:");
Denys Vlasenko259137d2018-12-11 19:42:05 +01006568 s = zbc_program_op(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006569 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006570 case BC_INST_BOOL_NOT:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006571 dbg_exec("BC_INST_BOOL_NOT:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006572 s = zbc_program_prep(&ptr, &num);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006573 if (s) RETURN_STATUS(s);
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01006574 bc_num_init_DEF_SIZE(&r.d.n);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006575 if (!bc_num_cmp(num, &G.prog.zero))
6576 bc_num_one(&r.d.n);
Denys Vlasenko3129f702018-12-09 12:04:44 +01006577 //else bc_num_zero(&r.d.n); - already is
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006578 bc_program_retire(&r, BC_RESULT_TEMP);
Gavin Howard01055ba2018-11-03 11:00:21 -06006579 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006580 case BC_INST_NEG:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006581 dbg_exec("BC_INST_NEG:");
Denys Vlasenko29301232018-12-11 15:29:32 +01006582 s = zbc_program_negate();
Gavin Howard01055ba2018-11-03 11:00:21 -06006583 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006584#if ENABLE_BC
Gavin Howard01055ba2018-11-03 11:00:21 -06006585 case BC_INST_ASSIGN_POWER:
6586 case BC_INST_ASSIGN_MULTIPLY:
6587 case BC_INST_ASSIGN_DIVIDE:
6588 case BC_INST_ASSIGN_MODULUS:
6589 case BC_INST_ASSIGN_PLUS:
6590 case BC_INST_ASSIGN_MINUS:
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006591#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06006592 case BC_INST_ASSIGN:
Denys Vlasenko99b37622018-12-15 20:06:59 +01006593 dbg_exec("BC_INST_ASSIGNxyz:");
Denys Vlasenko7f4daa42018-12-11 19:04:44 +01006594 s = zbc_program_assign(inst);
Gavin Howard01055ba2018-11-03 11:00:21 -06006595 break;
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01006596#if ENABLE_DC
Gavin Howard01055ba2018-11-03 11:00:21 -06006597 case BC_INST_MODEXP:
Denys Vlasenkofa210792018-12-19 19:35:40 +01006598 s = zdc_program_modexp();
Gavin Howard01055ba2018-11-03 11:00:21 -06006599 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006600 case BC_INST_DIVMOD:
Denys Vlasenkofa210792018-12-19 19:35:40 +01006601 s = zdc_program_divmod();
Gavin Howard01055ba2018-11-03 11:00:21 -06006602 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006603 case BC_INST_EXECUTE:
6604 case BC_INST_EXEC_COND:
Denys Vlasenko24e41942018-12-21 23:01:26 +01006605 s = zdc_program_execStr(code, &ip->inst_idx, inst == BC_INST_EXEC_COND);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006606 goto read_updated_ip;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006607 case BC_INST_PRINT_STACK: {
6608 size_t idx;
6609 for (idx = 0; idx < G.prog.results.len; ++idx) {
Denys Vlasenko29301232018-12-11 15:29:32 +01006610 s = zbc_program_print(BC_INST_PRINT, idx);
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006611 if (s) break;
6612 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006613 break;
6614 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006615 case BC_INST_CLEAR_STACK:
Denys Vlasenko7d628012018-12-04 21:46:47 +01006616 bc_vec_pop_all(&G.prog.results);
Gavin Howard01055ba2018-11-03 11:00:21 -06006617 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006618 case BC_INST_STACK_LEN:
Denys Vlasenkofa210792018-12-19 19:35:40 +01006619 dc_program_stackLen();
Gavin Howard01055ba2018-11-03 11:00:21 -06006620 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006621 case BC_INST_DUPLICATE:
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006622 if (!STACK_HAS_MORE_THAN(&G.prog.results, 0))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006623 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006624 ptr = bc_vec_top(&G.prog.results);
Denys Vlasenkofa210792018-12-19 19:35:40 +01006625 dc_result_copy(&r, ptr);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006626 bc_vec_push(&G.prog.results, &r);
Gavin Howard01055ba2018-11-03 11:00:21 -06006627 break;
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006628 case BC_INST_SWAP: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006629 BcResult *ptr2;
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006630 if (!STACK_HAS_MORE_THAN(&G.prog.results, 1))
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006631 RETURN_STATUS(bc_error_stack_has_too_few_elements());
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01006632 ptr = bc_vec_item_rev(&G.prog.results, 0);
6633 ptr2 = bc_vec_item_rev(&G.prog.results, 1);
Gavin Howard01055ba2018-11-03 11:00:21 -06006634 memcpy(&r, ptr, sizeof(BcResult));
6635 memcpy(ptr, ptr2, sizeof(BcResult));
6636 memcpy(ptr2, &r, sizeof(BcResult));
Gavin Howard01055ba2018-11-03 11:00:21 -06006637 break;
6638 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006639 case BC_INST_ASCIIFY:
Denys Vlasenkofa210792018-12-19 19:35:40 +01006640 s = zdc_program_asciify();
Gavin Howard01055ba2018-11-03 11:00:21 -06006641 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006642 case BC_INST_PRINT_STREAM:
Denys Vlasenkofa210792018-12-19 19:35:40 +01006643 s = zdc_program_printStream();
Gavin Howard01055ba2018-11-03 11:00:21 -06006644 break;
Gavin Howard01055ba2018-11-03 11:00:21 -06006645 case BC_INST_LOAD:
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006646 case BC_INST_PUSH_VAR: {
Gavin Howard01055ba2018-11-03 11:00:21 -06006647 bool copy = inst == BC_INST_LOAD;
Denys Vlasenko24e41942018-12-21 23:01:26 +01006648 s = zbc_program_pushVar(code, &ip->inst_idx, true, copy);
Gavin Howard01055ba2018-11-03 11:00:21 -06006649 break;
6650 }
Denys Vlasenko927a7d62018-12-09 02:24:14 +01006651 case BC_INST_PUSH_TO_VAR: {
Denys Vlasenko24e41942018-12-21 23:01:26 +01006652 char *name = bc_program_name(code, &ip->inst_idx);
Denys Vlasenko29301232018-12-11 15:29:32 +01006653 s = zbc_program_copyToVar(name, true);
Gavin Howard01055ba2018-11-03 11:00:21 -06006654 free(name);
6655 break;
6656 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006657 case BC_INST_QUIT:
Denys Vlasenkodfe1dd22018-12-19 17:09:01 +01006658 dbg_exec("BC_INST_QUIT:");
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006659 if (G.prog.exestack.len <= 2)
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01006660 QUIT_OR_RETURN_TO_MAIN;
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006661 bc_vec_npop(&G.prog.exestack, 2);
Denys Vlasenko085b4202018-12-19 14:02:59 +01006662 goto read_updated_ip;
Gavin Howard01055ba2018-11-03 11:00:21 -06006663 case BC_INST_NQUIT:
Denys Vlasenkofa210792018-12-19 19:35:40 +01006664 s = zdc_program_nquit();
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006665 //goto read_updated_ip; - just fall through to it
Gavin Howard01055ba2018-11-03 11:00:21 -06006666#endif // ENABLE_DC
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01006667 read_updated_ip:
6668 // Instruction stack has changed, read new pointers
6669 ip = bc_vec_top(&G.prog.exestack);
6670 func = bc_program_func(ip->func);
6671 code = func->code.v;
Denys Vlasenko24e41942018-12-21 23:01:26 +01006672 dbg_exec("func:%zd bytes:%zd ip:%zd", ip->func, func->code.len, ip->inst_idx);
Gavin Howard01055ba2018-11-03 11:00:21 -06006673 }
6674
Denys Vlasenkod38af482018-12-04 19:11:02 +01006675 if (s || G_interrupt) {
6676 bc_program_reset();
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006677 RETURN_STATUS(s);
Denys Vlasenkod38af482018-12-04 19:11:02 +01006678 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006679
Denys Vlasenkoc5774a32018-12-17 01:22:53 +01006680 fflush_and_check();
Gavin Howard01055ba2018-11-03 11:00:21 -06006681 }
6682
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006683 RETURN_STATUS(BC_STATUS_SUCCESS);
Gavin Howard01055ba2018-11-03 11:00:21 -06006684}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006685#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006686
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006687static unsigned bc_vm_envLen(const char *var)
Gavin Howard01055ba2018-11-03 11:00:21 -06006688{
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006689 char *lenv;
6690 unsigned len;
Gavin Howard01055ba2018-11-03 11:00:21 -06006691
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006692 lenv = getenv(var);
6693 len = BC_NUM_PRINT_WIDTH;
Gavin Howard01055ba2018-11-03 11:00:21 -06006694 if (!lenv) return len;
6695
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01006696 len = bb_strtou(lenv, NULL, 10) - 1;
6697 if (errno || len < 2 || len >= INT_MAX)
Gavin Howard01055ba2018-11-03 11:00:21 -06006698 len = BC_NUM_PRINT_WIDTH;
6699
6700 return len;
6701}
6702
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006703static BC_STATUS zbc_vm_process(const char *text)
Gavin Howard01055ba2018-11-03 11:00:21 -06006704{
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006705 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006706
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006707 dbg_lex_enter("%s:%d entered", __func__, __LINE__);
6708 s = zbc_parse_text_init(&G.prs, text);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006709 if (s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006710
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01006711 while (G.prs.l.t.t != BC_LEX_EOF) {
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006712 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
Denys Vlasenkoec603182018-12-17 10:34:02 +01006713 s = zcommon_parse(&G.prs);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006714 if (s) RETURN_STATUS(s);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006715 s = zbc_program_exec();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006716 if (s) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01006717 bc_program_reset();
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01006718 break;
6719 }
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01006720 // bc discards strings, constants and code after each
6721 // top-level statement in the "main program".
6722 // This prevents "yes 1 | bc" from growing its memory
6723 // without bound. This can be done because data stack
6724 // is empty and thus can't hold any references to
6725 // strings or constants, there is no generated code
6726 // which can hold references (after we discard one
6727 // we just executed). Code of functions can have references,
6728 // but bc stores function strings/constants in per-function
6729 // storage.
6730 if (IS_BC) {
6731 BcFunc *f;
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01006732 BcInstPtr *ip = (void*)G.prog.exestack.v;
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01006733
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01006734#if SANITY_CHECKS
6735 if (G.prog.results.len != 0)
6736 bb_error_msg_and_die("data stack not empty: %d slots", G.prog.results.len);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01006737 if (G.prog.exestack.len != 1) // should be empty
6738 bb_error_msg_and_die("BUG:call stack");
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01006739 if (ip->func != BC_PROG_MAIN)
6740 bb_error_msg_and_die("BUG:not MAIN");
Denys Vlasenko19eee8e2018-12-21 20:29:34 +01006741#endif
Denys Vlasenko24e41942018-12-21 23:01:26 +01006742//bb_error_msg("ip->func:%d >idx:%d >len:%d", ip->func, ip->inst_idx, ip->len);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01006743 f = bc_program_func_BC_PROG_MAIN();
6744//bb_error_msg("MAIN->code.len:%d >strs.len:%d >consts.len:%d", f->code.len, f->strs.len, f->consts.len); // labels, autos, nparams
6745 bc_vec_pop_all(&f->code);
Denys Vlasenko24e41942018-12-21 23:01:26 +01006746 ip->inst_idx = 0;
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01006747 IF_BC(bc_vec_pop_all(&f->strs);)
6748 IF_BC(bc_vec_pop_all(&f->consts);)
6749 }
Gavin Howard01055ba2018-11-03 11:00:21 -06006750 }
6751
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01006752 dbg_lex_done("%s:%d done", __func__, __LINE__);
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006753 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006754}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006755#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006756
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006757static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
Gavin Howard01055ba2018-11-03 11:00:21 -06006758{
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006759 // So far bc/dc have no way to include a file from another file,
6760 // therefore we know G.prog.file == NULL on entry
6761 //const char *sv_file;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006762 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06006763
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006764 G.prog.file = filename;
6765 G.input_fp = fp;
Denys Vlasenko0409ad32018-12-05 16:39:22 +01006766 bc_lex_file(&G.prs.l);
Gavin Howard01055ba2018-11-03 11:00:21 -06006767
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006768 do {
6769 s = zbc_vm_process("");
6770 // We do not stop looping on errors here if reading stdin.
6771 // Example: start interactive bc and enter "return".
6772 // It should say "'return' not in a function"
6773 // but should not exit.
6774 } while (G.input_fp == stdin);
Denys Vlasenko0fe270e2018-12-13 19:58:58 +01006775 G.prog.file = NULL;
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006776 RETURN_STATUS(s);
6777}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006778#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01006779
6780static BC_STATUS zbc_vm_file(const char *file)
6781{
6782 BcStatus s;
6783 FILE *fp;
6784
6785 fp = xfopen_for_read(file);
6786 s = zbc_vm_execute_FILE(fp, file);
6787 fclose(fp);
6788
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01006789 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06006790}
Denys Vlasenkoec603182018-12-17 10:34:02 +01006791#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06006792
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006793#if ENABLE_BC
Denys Vlasenko57b69182018-12-14 00:12:13 +01006794static void bc_vm_info(void)
6795{
6796 printf("%s "BB_VER"\n"
6797 "Copyright (c) 2018 Gavin D. Howard and contributors\n"
6798 , applet_name);
6799}
6800
6801static void bc_args(char **argv)
6802{
6803 unsigned opts;
6804 int i;
6805
6806 GETOPT_RESET();
6807#if ENABLE_FEATURE_BC_LONG_OPTIONS
6808 opts = option_mask32 |= getopt32long(argv, "wvsqli",
6809 "warn\0" No_argument "w"
6810 "version\0" No_argument "v"
6811 "standard\0" No_argument "s"
6812 "quiet\0" No_argument "q"
6813 "mathlib\0" No_argument "l"
6814 "interactive\0" No_argument "i"
6815 );
6816#else
6817 opts = option_mask32 |= getopt32(argv, "wvsqli");
6818#endif
6819 if (getenv("POSIXLY_CORRECT"))
6820 option_mask32 |= BC_FLAG_S;
6821
6822 if (opts & BC_FLAG_V) {
6823 bc_vm_info();
6824 exit(0);
6825 }
6826
6827 for (i = optind; argv[i]; ++i)
6828 bc_vec_push(&G.files, argv + i);
6829}
6830
6831static void bc_vm_envArgs(void)
6832{
6833 BcVec v;
6834 char *buf;
6835 char *env_args = getenv("BC_ENV_ARGS");
6836
6837 if (!env_args) return;
6838
6839 G.env_args = xstrdup(env_args);
6840 buf = G.env_args;
6841
6842 bc_vec_init(&v, sizeof(char *), NULL);
6843
6844 while (*(buf = skip_whitespace(buf)) != '\0') {
6845 bc_vec_push(&v, &buf);
6846 buf = skip_non_whitespace(buf);
6847 if (!*buf)
6848 break;
6849 *buf++ = '\0';
6850 }
6851
6852 // NULL terminate, and pass argv[] so that first arg is argv[1]
6853 if (sizeof(int) == sizeof(char*)) {
6854 bc_vec_push(&v, &const_int_0);
6855 } else {
6856 static char *const nullptr = NULL;
6857 bc_vec_push(&v, &nullptr);
6858 }
6859 bc_args(((char **)v.v) - 1);
6860
6861 bc_vec_free(&v);
6862}
6863
6864static const char bc_lib[] ALIGN1 = {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006865 "scale=20"
6866"\n" "define e(x){"
6867"\n" "auto b,s,n,r,d,i,p,f,v"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006868////////////////"if(x<0)return(1/e(-x))" // and drop 'n' and x<0 logic below
6869//^^^^^^^^^^^^^^^^ this would work, and is even more precise than GNU bc:
6870//e(-.998896): GNU:.36828580434569428695
6871// above code:.36828580434569428696
6872// actual value:.3682858043456942869594...
6873// but for now let's be "GNU compatible"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006874"\n" "b=ibase"
6875"\n" "ibase=A"
6876"\n" "if(x<0){"
6877"\n" "n=1"
6878"\n" "x=-x"
6879"\n" "}"
6880"\n" "s=scale"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006881"\n" "r=6+s+.44*x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006882"\n" "scale=scale(x)+1"
6883"\n" "while(x>1){"
6884"\n" "d+=1"
6885"\n" "x/=2"
6886"\n" "scale+=1"
6887"\n" "}"
6888"\n" "scale=r"
6889"\n" "r=x+1"
6890"\n" "p=x"
6891"\n" "f=v=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006892"\n" "for(i=2;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006893"\n" "p*=x"
6894"\n" "f*=i"
6895"\n" "v=p/f"
6896"\n" "r+=v"
6897"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006898"\n" "while(d--)r*=r"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006899"\n" "scale=s"
6900"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006901"\n" "if(n)return(1/r)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006902"\n" "return(r/1)"
6903"\n" "}"
6904"\n" "define l(x){"
6905"\n" "auto b,s,r,p,a,q,i,v"
6906"\n" "b=ibase"
6907"\n" "ibase=A"
6908"\n" "if(x<=0){"
6909"\n" "r=(1-10^scale)/1"
6910"\n" "ibase=b"
6911"\n" "return(r)"
6912"\n" "}"
6913"\n" "s=scale"
6914"\n" "scale+=6"
6915"\n" "p=2"
6916"\n" "while(x>=2){"
6917"\n" "p*=2"
6918"\n" "x=sqrt(x)"
6919"\n" "}"
Denys Vlasenko146a79d2018-12-16 21:46:11 +01006920"\n" "while(x<=.5){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006921"\n" "p*=2"
6922"\n" "x=sqrt(x)"
6923"\n" "}"
6924"\n" "r=a=(x-1)/(x+1)"
6925"\n" "q=a*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006926"\n" "v=1"
6927"\n" "for(i=3;v;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006928"\n" "a*=q"
6929"\n" "v=a/i"
6930"\n" "r+=v"
6931"\n" "}"
6932"\n" "r*=p"
6933"\n" "scale=s"
6934"\n" "ibase=b"
6935"\n" "return(r/1)"
6936"\n" "}"
6937"\n" "define s(x){"
Denys Vlasenko240d7ee2018-12-14 11:27:09 +01006938"\n" "auto b,s,r,a,q,i"
6939"\n" "if(x<0)return(-s(-x))"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006940"\n" "b=ibase"
6941"\n" "ibase=A"
6942"\n" "s=scale"
6943"\n" "scale=1.1*s+2"
6944"\n" "a=a(1)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006945"\n" "scale=0"
6946"\n" "q=(x/a+2)/4"
Denys Vlasenko203210e2018-12-14 09:53:50 +01006947"\n" "x-=4*q*a"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006948"\n" "if(q%2)x=-x"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006949"\n" "scale=s+2"
6950"\n" "r=a=x"
6951"\n" "q=-x*x"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006952"\n" "for(i=3;a;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006953"\n" "a*=q/(i*(i-1))"
6954"\n" "r+=a"
6955"\n" "}"
6956"\n" "scale=s"
6957"\n" "ibase=b"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006958"\n" "return(r/1)"
6959"\n" "}"
6960"\n" "define c(x){"
6961"\n" "auto b,s"
6962"\n" "b=ibase"
6963"\n" "ibase=A"
6964"\n" "s=scale"
6965"\n" "scale*=1.2"
6966"\n" "x=s(2*a(1)+x)"
6967"\n" "scale=s"
6968"\n" "ibase=b"
6969"\n" "return(x/1)"
6970"\n" "}"
6971"\n" "define a(x){"
6972"\n" "auto b,s,r,n,a,m,t,f,i,u"
6973"\n" "b=ibase"
6974"\n" "ibase=A"
6975"\n" "n=1"
6976"\n" "if(x<0){"
6977"\n" "n=-1"
6978"\n" "x=-x"
6979"\n" "}"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006980"\n" "if(scale<65){"
6981"\n" "if(x==1)return(.7853981633974483096156608458198757210492923498437764552437361480/n)"
6982"\n" "if(x==.2)return(.1973955598498807583700497651947902934475851037878521015176889402/n)"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006983"\n" "}"
6984"\n" "s=scale"
6985"\n" "if(x>.2){"
6986"\n" "scale+=5"
6987"\n" "a=a(.2)"
6988"\n" "}"
6989"\n" "scale=s+3"
6990"\n" "while(x>.2){"
6991"\n" "m+=1"
6992"\n" "x=(x-.2)/(1+.2*x)"
6993"\n" "}"
6994"\n" "r=u=x"
6995"\n" "f=-x*x"
6996"\n" "t=1"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01006997"\n" "for(i=3;t;i+=2){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01006998"\n" "u*=f"
6999"\n" "t=u/i"
7000"\n" "r+=t"
7001"\n" "}"
7002"\n" "scale=s"
7003"\n" "ibase=b"
7004"\n" "return((m*a+r)/n)"
7005"\n" "}"
7006"\n" "define j(n,x){"
7007"\n" "auto b,s,o,a,i,v,f"
7008"\n" "b=ibase"
7009"\n" "ibase=A"
7010"\n" "s=scale"
7011"\n" "scale=0"
7012"\n" "n/=1"
7013"\n" "if(n<0){"
7014"\n" "n=-n"
Denys Vlasenko203210e2018-12-14 09:53:50 +01007015"\n" "o=n%2"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007016"\n" "}"
7017"\n" "a=1"
7018"\n" "for(i=2;i<=n;++i)a*=i"
7019"\n" "scale=1.5*s"
7020"\n" "a=(x^n)/2^n/a"
7021"\n" "r=v=1"
7022"\n" "f=-x*x/4"
Denys Vlasenkoc06537d2018-12-14 10:10:37 +01007023"\n" "scale+=length(a)-scale(a)"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007024"\n" "for(i=1;v;++i){"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007025"\n" "v=v*f/i/(n+i)"
7026"\n" "r+=v"
7027"\n" "}"
7028"\n" "scale=s"
7029"\n" "ibase=b"
Denys Vlasenko3ac0c212018-12-14 01:01:01 +01007030"\n" "if(o)a=-a"
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007031"\n" "return(a*r/1)"
7032"\n" "}"
7033};
7034#endif // ENABLE_BC
7035
Denys Vlasenko19f11072018-12-12 22:48:19 +01007036static BC_STATUS zbc_vm_exec(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007037{
Denys Vlasenkoea5cad22018-12-19 18:09:31 +01007038 char **fname;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007039 BcStatus s;
Gavin Howard01055ba2018-11-03 11:00:21 -06007040 size_t i;
7041
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007042#if ENABLE_BC
Denys Vlasenkod70d4a02018-12-04 20:58:40 +01007043 if (option_mask32 & BC_FLAG_L) {
Denys Vlasenko0ad36c42018-12-05 16:21:43 +01007044 // We know that internal library is not buggy,
7045 // thus error checking is normally disabled.
7046# define DEBUG_LIB 0
Denys Vlasenko0409ad32018-12-05 16:39:22 +01007047 bc_lex_file(&G.prs.l);
Denys Vlasenko2ea53a42018-12-14 17:51:17 +01007048 s = zbc_vm_process(bc_lib);
Denys Vlasenko19f11072018-12-12 22:48:19 +01007049 if (DEBUG_LIB && s) RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007050 }
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007051#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007052
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007053 s = BC_STATUS_SUCCESS;
Denys Vlasenkoea5cad22018-12-19 18:09:31 +01007054 fname = (void*)G.files.v;
7055 for (i = 0; i < G.files.len; i++) {
7056 s = zbc_vm_file(*fname++);
7057 if (ENABLE_FEATURE_CLEAN_UP && !G_ttyin && s) {
7058 // Debug config, non-interactive mode:
7059 // return all the way back to main.
7060 // Non-debug builds do not come here
7061 // in non-interactive mode, they exit.
7062 RETURN_STATUS(s);
7063 }
Denys Vlasenko9b70f192018-12-04 20:51:40 +01007064 }
Gavin Howard01055ba2018-11-03 11:00:21 -06007065
Denys Vlasenko91cde952018-12-10 20:56:08 +01007066 if (IS_BC || (option_mask32 & BC_FLAG_I))
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007067 s = zbc_vm_execute_FILE(stdin, /*filename:*/ NULL);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007068
Denys Vlasenko19f11072018-12-12 22:48:19 +01007069 RETURN_STATUS(s);
Gavin Howard01055ba2018-11-03 11:00:21 -06007070}
Denys Vlasenkoec603182018-12-17 10:34:02 +01007071#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
Gavin Howard01055ba2018-11-03 11:00:21 -06007072
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007073#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007074static void bc_program_free(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007075{
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007076 bc_vec_free(&G.prog.fns);
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01007077 IF_BC(bc_vec_free(&G.prog.fn_map);)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007078 bc_vec_free(&G.prog.vars);
7079 bc_vec_free(&G.prog.var_map);
7080 bc_vec_free(&G.prog.arrs);
7081 bc_vec_free(&G.prog.arr_map);
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01007082 IF_DC(bc_vec_free(&G.prog.strs);)
7083 IF_DC(bc_vec_free(&G.prog.consts);)
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007084 bc_vec_free(&G.prog.results);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01007085 bc_vec_free(&G.prog.exestack);
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01007086 IF_BC(bc_num_free(&G.prog.last);)
7087 IF_BC(bc_num_free(&G.prog.zero);)
Denys Vlasenko503faf92018-12-20 16:24:18 +01007088 IF_BC(bc_num_free(&G.prog.one);)
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007089 bc_vec_free(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007090}
7091
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007092static void bc_vm_free(void)
Gavin Howard01055ba2018-11-03 11:00:21 -06007093{
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007094 bc_vec_free(&G.files);
Denys Vlasenkoa1d3ca22018-12-02 18:26:38 +01007095 bc_program_free();
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007096 bc_parse_free(&G.prs);
7097 free(G.env_args);
Gavin Howard01055ba2018-11-03 11:00:21 -06007098}
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007099#endif
7100
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007101static void bc_program_init(void)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007102{
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007103 BcInstPtr ip;
7104
Denys Vlasenko82269122018-12-14 16:30:56 +01007105 // memset(&G.prog, 0, sizeof(G.prog)); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007106 memset(&ip, 0, sizeof(BcInstPtr));
7107
Denys Vlasenko82269122018-12-14 16:30:56 +01007108 // G.prog.nchars = G.prog.scale = 0; - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007109 G.prog.ib_t = 10;
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007110 G.prog.ob_t = 10;
7111
Denys Vlasenko503faf92018-12-20 16:24:18 +01007112 IF_BC(bc_num_init_DEF_SIZE(&G.prog.last);)
7113 //IF_BC(bc_num_zero(&G.prog.last);) - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007114
Denys Vlasenkoe20e00d2018-12-09 11:44:20 +01007115 bc_num_init_DEF_SIZE(&G.prog.zero);
Denys Vlasenko3129f702018-12-09 12:04:44 +01007116 //bc_num_zero(&G.prog.zero); - already is
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007117
Denys Vlasenko503faf92018-12-20 16:24:18 +01007118 IF_BC(bc_num_init_DEF_SIZE(&G.prog.one);)
7119 IF_BC(bc_num_one(&G.prog.one);)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007120
7121 bc_vec_init(&G.prog.fns, sizeof(BcFunc), bc_func_free);
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01007122 IF_BC(bc_vec_init(&G.prog.fn_map, sizeof(BcId), bc_id_free);)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007123
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01007124 if (IS_BC) {
Denys Vlasenko04715442018-12-21 00:10:26 +01007125 // Names are chosen simply to never match
7126 // a valid function name (and be short)
7127 IF_BC(bc_program_addFunc(xstrdup(""))); // func #0: main
7128 IF_BC(bc_program_addFunc(xstrdup(""))); // func #1: for read()
Denys Vlasenko44a99ca2018-12-20 20:34:09 +01007129 } else {
7130 bc_program_add_fn();
7131 bc_program_add_fn();
7132 }
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007133
7134 bc_vec_init(&G.prog.vars, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007135 bc_vec_init(&G.prog.var_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007136
7137 bc_vec_init(&G.prog.arrs, sizeof(BcVec), bc_vec_free);
Denys Vlasenkocb9a99f2018-12-04 21:54:33 +01007138 bc_vec_init(&G.prog.arr_map, sizeof(BcId), bc_id_free);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007139
Denys Vlasenko5d57bc42018-12-21 16:22:26 +01007140 IF_DC(bc_vec_init(&G.prog.strs, sizeof(char *), bc_string_free);)
7141 IF_DC(bc_vec_init(&G.prog.consts, sizeof(char *), bc_string_free);)
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007142 bc_vec_init(&G.prog.results, sizeof(BcResult), bc_result_free);
Denys Vlasenkob80d7aa2018-12-19 12:35:27 +01007143 bc_vec_init(&G.prog.exestack, sizeof(BcInstPtr), NULL);
7144 bc_vec_push(&G.prog.exestack, &ip);
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007145
Denys Vlasenkoe4ba4c42018-12-17 09:51:43 +01007146 bc_char_vec_init(&G.input_buffer);
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007147}
Gavin Howard01055ba2018-11-03 11:00:21 -06007148
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007149static int bc_vm_init(const char *env_len)
Gavin Howard01055ba2018-11-03 11:00:21 -06007150{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007151#if ENABLE_FEATURE_EDITING
7152 G.line_input_state = new_line_input_t(DO_HISTORY);
7153#endif
7154 G.prog.len = bc_vm_envLen(env_len);
7155
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007156 bc_vec_init(&G.files, sizeof(char *), NULL);
Denys Vlasenko5f263f42018-12-13 22:49:59 +01007157 IF_BC(if (IS_BC) bc_vm_envArgs();)
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007158 bc_program_init();
Denys Vlasenkoc2265f52018-12-12 23:10:08 +01007159 bc_parse_create(&G.prs, BC_PROG_MAIN);
Gavin Howard01055ba2018-11-03 11:00:21 -06007160
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007161//TODO: in GNU bc, the check is (isatty(0) && isatty(1)),
7162//-i option unconditionally enables this regardless of isatty():
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007163 if (isatty(0)) {
Denys Vlasenkod38af482018-12-04 19:11:02 +01007164#if ENABLE_FEATURE_BC_SIGNALS
Denys Vlasenko1a6a4822018-12-06 09:20:32 +01007165 G_ttyin = 1;
Denys Vlasenko17c54722018-12-04 21:21:32 +01007166 // With SA_RESTART, most system calls will restart
7167 // (IOW: they won't fail with EINTR).
7168 // In particular, this means ^C won't cause
7169 // stdout to get into "error state" if SIGINT hits
7170 // within write() syscall.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007171 //
7172 // The downside is that ^C while tty input is taken
Denys Vlasenko17c54722018-12-04 21:21:32 +01007173 // will only be handled after [Enter] since read()
7174 // from stdin is not interrupted by ^C either,
7175 // it restarts, thus fgetc() does not return on ^C.
Denys Vlasenko89e785a2018-12-13 16:35:52 +01007176 // (This problem manifests only if line editing is disabled)
Denys Vlasenko17c54722018-12-04 21:21:32 +01007177 signal_SA_RESTART_empty_mask(SIGINT, record_signo);
7178
7179 // Without SA_RESTART, this exhibits a bug:
7180 // "while (1) print 1" and try ^C-ing it.
7181 // Intermittently, instead of returning to input line,
7182 // you'll get "output error: Interrupted system call"
7183 // and exit.
7184 //signal_no_SA_RESTART_empty_mask(SIGINT, record_signo);
Denys Vlasenkod38af482018-12-04 19:11:02 +01007185#endif
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007186 return 1; // "tty"
Denys Vlasenkod38af482018-12-04 19:11:02 +01007187 }
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007188 return 0; // "not a tty"
7189}
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007190
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007191static BcStatus bc_vm_run(void)
7192{
Denys Vlasenko19f11072018-12-12 22:48:19 +01007193 BcStatus st = zbc_vm_exec();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007194#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenkoc7a7ce02018-12-06 23:06:57 +01007195 if (G_exiting) // it was actually "halt" or "quit"
7196 st = EXIT_SUCCESS;
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007197 bc_vm_free();
Denys Vlasenko95f93bd2018-12-06 10:29:12 +01007198# if ENABLE_FEATURE_EDITING
7199 free_line_input_t(G.line_input_state);
7200# endif
Denys Vlasenkoe873ff92018-12-06 00:29:22 +01007201 FREE_G();
Denys Vlasenko785e4b32018-12-02 17:18:52 +01007202#endif
Denys Vlasenkod1d29b42018-12-16 16:03:03 +01007203 dbg_exec("exiting with exitcode %d", st);
Gavin Howard01055ba2018-11-03 11:00:21 -06007204 return st;
7205}
7206
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007207#if ENABLE_BC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007208int bc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007209int bc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007210{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007211 int is_tty;
7212
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007213 INIT_G();
Gavin Howard01055ba2018-11-03 11:00:21 -06007214
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007215 is_tty = bc_vm_init("BC_LINE_LENGTH");
7216
7217 bc_args(argv);
7218
7219 if (is_tty && !(option_mask32 & BC_FLAG_Q))
7220 bc_vm_info();
7221
7222 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007223}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007224#endif
Gavin Howard01055ba2018-11-03 11:00:21 -06007225
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007226#if ENABLE_DC
Denys Vlasenko5a9fef52018-12-02 14:35:32 +01007227int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1ff1c702018-12-06 00:46:09 +01007228int dc_main(int argc UNUSED_PARAM, char **argv)
Gavin Howard01055ba2018-11-03 11:00:21 -06007229{
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007230 int noscript;
7231
Denys Vlasenko6d9146a2018-12-02 15:48:37 +01007232 INIT_G();
Denys Vlasenko82269122018-12-14 16:30:56 +01007233
7234 // TODO: dc (GNU bc 1.07.1) 1.4.1 seems to use width
7235 // 1 char wider than bc from the same package.
7236 // Both default width, and xC_LINE_LENGTH=N are wider:
7237 // "DC_LINE_LENGTH=5 dc -e'123456 p'" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007238 // |1234\ |
7239 // |56 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007240 // "echo '123456' | BC_LINE_LENGTH=5 bc" prints:
Denys Vlasenko0a238142018-12-14 16:48:34 +01007241 // |123\ |
7242 // |456 |
Denys Vlasenko82269122018-12-14 16:30:56 +01007243 // Do the same, or it's a bug?
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007244 bc_vm_init("DC_LINE_LENGTH");
Gavin Howard01055ba2018-11-03 11:00:21 -06007245
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007246 // Run -e'SCRIPT' and -fFILE in order of appearance, then handle FILEs
7247 noscript = BC_FLAG_I;
7248 for (;;) {
7249 int n = getopt(argc, argv, "e:f:x");
7250 if (n <= 0)
7251 break;
7252 switch (n) {
7253 case 'e':
7254 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007255 n = zbc_vm_process(optarg);
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007256 if (n) return n;
7257 break;
7258 case 'f':
7259 noscript = 0;
Denys Vlasenkod6ad3662018-12-12 21:39:10 +01007260 n = zbc_vm_file(optarg);
7261 if (n) return n;
Denys Vlasenko6d0be102018-12-06 18:41:59 +01007262 break;
7263 case 'x':
7264 option_mask32 |= DC_FLAG_X;
7265 break;
7266 default:
7267 bb_show_usage();
7268 }
7269 }
7270 argv += optind;
7271
7272 while (*argv) {
7273 noscript = 0;
7274 bc_vec_push(&G.files, argv++);
7275 }
7276
7277 option_mask32 |= noscript; // set BC_FLAG_I if we need to interpret stdin
7278
7279 return bc_vm_run();
Gavin Howard01055ba2018-11-03 11:00:21 -06007280}
Denys Vlasenkoef869ec2018-12-02 18:49:16 +01007281#endif
Denys Vlasenko9ca9ef22018-12-06 11:31:14 +01007282
7283#endif // not DC_SMALL