aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/bc.c449
1 files changed, 131 insertions, 318 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index 2570e8313..ccc7cb4d1 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -551,12 +551,6 @@ enum {
551#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK) 551#define bc_lex_kws_POSIX(i) ((1 << (i)) & POSIX_KWORD_MASK)
552#endif 552#endif
553 553
554#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
555# define BC_STATUS BcStatus
556#else
557# define BC_STATUS void
558#endif
559
560typedef struct BcLex { 554typedef struct BcLex {
561 const char *buf; 555 const char *buf;
562 size_t i; 556 size_t i;
@@ -890,15 +884,17 @@ dc_parse_insts[] = {
890#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP 884#if ENABLE_FEATURE_BC_SIGNALS || ENABLE_FEATURE_CLEAN_UP
891# define ERRORS_ARE_FATAL 0 885# define ERRORS_ARE_FATAL 0
892# define ERRORFUNC /*nothing*/ 886# define ERRORFUNC /*nothing*/
893# define ERROR_RETURN(a) a 887# define IF_ERROR_RETURN_POSSIBLE(a) a
894//moved up: # define BC_STATUS BcStatus 888# define BC_STATUS BcStatus
895# define RETURN_STATUS(v) return (v) 889# define RETURN_STATUS(v) return (v)
890# define COMMA_SUCCESS /*nothing*/
896#else 891#else
897# define ERRORS_ARE_FATAL 1 892# define ERRORS_ARE_FATAL 1
898# define ERRORFUNC NORETURN 893# define ERRORFUNC NORETURN
899# define ERROR_RETURN(a) /*nothing*/ 894# define IF_ERROR_RETURN_POSSIBLE(a) /*nothing*/
900//moved up: # define BC_STATUS void 895# define BC_STATUS void
901# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0) 896# define RETURN_STATUS(v) do { ((void)(v)); return; } while (0)
897# define COMMA_SUCCESS ,BC_STATUS_SUCCESS
902#endif 898#endif
903 899
904#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg)) 900#define BC_NUM_NEG(n, neg) ((((ssize_t)(n)) ^ -((ssize_t)(neg))) + (neg))
@@ -968,14 +964,12 @@ static FAST_FUNC BC_STATUS zbc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scal
968static const BcNumBinaryOp zbc_program_ops[] = { 964static const BcNumBinaryOp zbc_program_ops[] = {
969 zbc_num_pow, zbc_num_mul, zbc_num_div, zbc_num_mod, zbc_num_add, zbc_num_sub, 965 zbc_num_pow, zbc_num_mul, zbc_num_div, zbc_num_mod, zbc_num_add, zbc_num_sub,
970}; 966};
971#if ERRORS_ARE_FATAL 967#define zbc_num_add(...) (zbc_num_add(__VA_ARGS__) COMMA_SUCCESS)
972# define zbc_num_add(...) (zbc_num_add(__VA_ARGS__), BC_STATUS_SUCCESS) 968#define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__) COMMA_SUCCESS)
973# define zbc_num_sub(...) (zbc_num_sub(__VA_ARGS__), BC_STATUS_SUCCESS) 969#define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__) COMMA_SUCCESS)
974# define zbc_num_mul(...) (zbc_num_mul(__VA_ARGS__), BC_STATUS_SUCCESS) 970#define zbc_num_div(...) (zbc_num_div(__VA_ARGS__) COMMA_SUCCESS)
975# define zbc_num_div(...) (zbc_num_div(__VA_ARGS__), BC_STATUS_SUCCESS) 971#define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__) COMMA_SUCCESS)
976# define zbc_num_mod(...) (zbc_num_mod(__VA_ARGS__), BC_STATUS_SUCCESS) 972#define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__) COMMA_SUCCESS)
977# define zbc_num_pow(...) (zbc_num_pow(__VA_ARGS__), BC_STATUS_SUCCESS)
978#endif
979 973
980static void fflush_and_check(void) 974static void fflush_and_check(void)
981{ 975{
@@ -1027,9 +1021,9 @@ static NOINLINE ERRORFUNC int bc_error_fmt(const char *fmt, ...)
1027 bc_verror_msg(fmt, p); 1021 bc_verror_msg(fmt, p);
1028 va_end(p); 1022 va_end(p);
1029 1023
1030 if (!ENABLE_FEATURE_CLEAN_UP && !G_ttyin) 1024 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
1031 exit(1); 1025 IF_ERROR_RETURN_POSSIBLE(return BC_STATUS_FAILURE);
1032 ERROR_RETURN(return BC_STATUS_FAILURE;) 1026 exit(1);
1033} 1027}
1034 1028
1035#if ENABLE_BC 1029#if ENABLE_BC
@@ -1048,9 +1042,9 @@ static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
1048 // Do we treat non-POSIX constructs as errors? 1042 // Do we treat non-POSIX constructs as errors?
1049 if (!(option_mask32 & BC_FLAG_S)) 1043 if (!(option_mask32 & BC_FLAG_S))
1050 return BC_STATUS_SUCCESS; // no, it's a warning 1044 return BC_STATUS_SUCCESS; // no, it's a warning
1051 if (!ENABLE_FEATURE_CLEAN_UP && !G_ttyin) 1045 if (ENABLE_FEATURE_CLEAN_UP || G_ttyin)
1052 exit(1); 1046 return BC_STATUS_FAILURE;
1053 return BC_STATUS_FAILURE; 1047 exit(1);
1054} 1048}
1055#endif 1049#endif
1056 1050
@@ -1061,31 +1055,31 @@ static NOINLINE int bc_posix_error_fmt(const char *fmt, ...)
1061// Thus, use these shims for the cases when we have no vararg PARAMS: 1055// Thus, use these shims for the cases when we have no vararg PARAMS:
1062static ERRORFUNC int bc_error(const char *msg) 1056static ERRORFUNC int bc_error(const char *msg)
1063{ 1057{
1064 ERROR_RETURN(return) bc_error_fmt("%s", msg); 1058 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("%s", msg);
1065} 1059}
1066static ERRORFUNC int bc_error_bad_character(char c) 1060static ERRORFUNC int bc_error_bad_character(char c)
1067{ 1061{
1068 ERROR_RETURN(return) bc_error_fmt("bad character '%c'", c); 1062 IF_ERROR_RETURN_POSSIBLE(return) bc_error_fmt("bad character '%c'", c);
1069} 1063}
1070static ERRORFUNC int bc_error_bad_expression(void) 1064static ERRORFUNC int bc_error_bad_expression(void)
1071{ 1065{
1072 ERROR_RETURN(return) bc_error("bad expression"); 1066 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad expression");
1073} 1067}
1074static ERRORFUNC int bc_error_bad_token(void) 1068static ERRORFUNC int bc_error_bad_token(void)
1075{ 1069{
1076 ERROR_RETURN(return) bc_error("bad token"); 1070 IF_ERROR_RETURN_POSSIBLE(return) bc_error("bad token");
1077} 1071}
1078static ERRORFUNC int bc_error_stack_has_too_few_elements(void) 1072static ERRORFUNC int bc_error_stack_has_too_few_elements(void)
1079{ 1073{
1080 ERROR_RETURN(return) bc_error("stack has too few elements"); 1074 IF_ERROR_RETURN_POSSIBLE(return) bc_error("stack has too few elements");
1081} 1075}
1082static ERRORFUNC int bc_error_variable_is_wrong_type(void) 1076static ERRORFUNC int bc_error_variable_is_wrong_type(void)
1083{ 1077{
1084 ERROR_RETURN(return) bc_error("variable is wrong type"); 1078 IF_ERROR_RETURN_POSSIBLE(return) bc_error("variable is wrong type");
1085} 1079}
1086static ERRORFUNC int bc_error_nested_read_call(void) 1080static ERRORFUNC int bc_error_nested_read_call(void)
1087{ 1081{
1088 ERROR_RETURN(return) bc_error("read() call inside of a read() call"); 1082 IF_ERROR_RETURN_POSSIBLE(return) bc_error("read() call inside of a read() call");
1089} 1083}
1090#if ENABLE_BC 1084#if ENABLE_BC
1091static int bc_POSIX_requires(const char *msg) 1085static int bc_POSIX_requires(const char *msg)
@@ -1494,9 +1488,7 @@ static BC_STATUS zbc_num_ulong(BcNum *n, unsigned long *result_p)
1494 1488
1495 RETURN_STATUS(BC_STATUS_SUCCESS); 1489 RETURN_STATUS(BC_STATUS_SUCCESS);
1496} 1490}
1497#if ERRORS_ARE_FATAL 1491#define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__) COMMA_SUCCESS)
1498# define zbc_num_ulong(...) (zbc_num_ulong(__VA_ARGS__), BC_STATUS_SUCCESS)
1499#endif
1500 1492
1501static void bc_num_ulong2num(BcNum *n, unsigned long val) 1493static void bc_num_ulong2num(BcNum *n, unsigned long val)
1502{ 1494{
@@ -1678,9 +1670,7 @@ static BC_STATUS zbc_num_shift(BcNum *n, size_t places)
1678 1670
1679 RETURN_STATUS(BC_STATUS_SUCCESS); 1671 RETURN_STATUS(BC_STATUS_SUCCESS);
1680} 1672}
1681#if ERRORS_ARE_FATAL 1673#define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__) COMMA_SUCCESS)
1682# define zbc_num_shift(...) (zbc_num_shift(__VA_ARGS__), BC_STATUS_SUCCESS)
1683#endif
1684 1674
1685static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale) 1675static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
1686{ 1676{
@@ -1693,9 +1683,7 @@ static BC_STATUS zbc_num_inv(BcNum *a, BcNum *b, size_t scale)
1693 1683
1694 RETURN_STATUS(zbc_num_div(&one, a, b, scale)); 1684 RETURN_STATUS(zbc_num_div(&one, a, b, scale));
1695} 1685}
1696#if ERRORS_ARE_FATAL 1686#define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__) COMMA_SUCCESS)
1697# define zbc_num_inv(...) (zbc_num_inv(__VA_ARGS__), BC_STATUS_SUCCESS)
1698#endif
1699 1687
1700static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub) 1688static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub)
1701{ 1689{
@@ -1832,9 +1820,7 @@ static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size
1832 1820
1833static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b, 1821static FAST_FUNC BC_STATUS zbc_num_k(BcNum *restrict a, BcNum *restrict b,
1834 BcNum *restrict c) 1822 BcNum *restrict c)
1835#if ERRORS_ARE_FATAL 1823#define zbc_num_k(...) (zbc_num_k(__VA_ARGS__) COMMA_SUCCESS)
1836# define zbc_num_k(...) (zbc_num_k(__VA_ARGS__), BC_STATUS_SUCCESS)
1837#endif
1838{ 1824{
1839 BcStatus s; 1825 BcStatus s;
1840 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2; 1826 size_t max = BC_MAX(a->len, b->len), max2 = (max + 1) / 2;
@@ -1982,9 +1968,7 @@ err:
1982 bc_num_free(&cpa); 1968 bc_num_free(&cpa);
1983 RETURN_STATUS(s); 1969 RETURN_STATUS(s);
1984} 1970}
1985#if ERRORS_ARE_FATAL 1971#define zbc_num_m(...) (zbc_num_m(__VA_ARGS__) COMMA_SUCCESS)
1986# define zbc_num_m(...) (zbc_num_m(__VA_ARGS__), BC_STATUS_SUCCESS)
1987#endif
1988 1972
1989static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) 1973static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
1990{ 1974{
@@ -2059,9 +2043,7 @@ static FAST_FUNC BC_STATUS zbc_num_d(BcNum *a, BcNum *b, BcNum *restrict c, size
2059 2043
2060 RETURN_STATUS(s); 2044 RETURN_STATUS(s);
2061} 2045}
2062#if ERRORS_ARE_FATAL 2046#define zbc_num_d(...) (zbc_num_d(__VA_ARGS__) COMMA_SUCCESS)
2063# define zbc_num_d(...) (zbc_num_d(__VA_ARGS__), BC_STATUS_SUCCESS)
2064#endif
2065 2047
2066static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c, 2048static FAST_FUNC BC_STATUS zbc_num_r(BcNum *a, BcNum *b, BcNum *restrict c,
2067 BcNum *restrict d, size_t scale, size_t ts) 2049 BcNum *restrict d, size_t scale, size_t ts)
@@ -2099,9 +2081,7 @@ err:
2099 bc_num_free(&temp); 2081 bc_num_free(&temp);
2100 RETURN_STATUS(s); 2082 RETURN_STATUS(s);
2101} 2083}
2102#if ERRORS_ARE_FATAL 2084#define zbc_num_r(...) (zbc_num_r(__VA_ARGS__) COMMA_SUCCESS)
2103# define zbc_num_r(...) (zbc_num_r(__VA_ARGS__), BC_STATUS_SUCCESS)
2104#endif
2105 2085
2106static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) 2086static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
2107{ 2087{
@@ -2115,9 +2095,7 @@ static FAST_FUNC BC_STATUS zbc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, si
2115 2095
2116 RETURN_STATUS(s); 2096 RETURN_STATUS(s);
2117} 2097}
2118#if ERRORS_ARE_FATAL 2098#define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__) COMMA_SUCCESS)
2119# define zbc_num_rem(...) (zbc_num_rem(__VA_ARGS__), BC_STATUS_SUCCESS)
2120#endif
2121 2099
2122static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) 2100static FAST_FUNC BC_STATUS zbc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale)
2123{ 2101{
@@ -2209,9 +2187,7 @@ err:
2209 bc_num_free(&copy); 2187 bc_num_free(&copy);
2210 RETURN_STATUS(s); 2188 RETURN_STATUS(s);
2211} 2189}
2212#if ERRORS_ARE_FATAL 2190#define zbc_num_p(...) (zbc_num_p(__VA_ARGS__) COMMA_SUCCESS)
2213# define zbc_num_p(...) (zbc_num_p(__VA_ARGS__), BC_STATUS_SUCCESS)
2214#endif
2215 2191
2216static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale, 2192static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
2217 BcNumBinaryOp op, size_t req) 2193 BcNumBinaryOp op, size_t req)
@@ -2244,15 +2220,13 @@ static BC_STATUS zbc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale,
2244 bc_num_expand(c, req); 2220 bc_num_expand(c, req);
2245 2221
2246 s = BC_STATUS_SUCCESS; 2222 s = BC_STATUS_SUCCESS;
2247 ERROR_RETURN(s =) op(ptr_a, ptr_b, c, scale); 2223 IF_ERROR_RETURN_POSSIBLE(s =) op(ptr_a, ptr_b, c, scale);
2248 2224
2249 if (init) bc_num_free(&num2); 2225 if (init) bc_num_free(&num2);
2250 2226
2251 RETURN_STATUS(s); 2227 RETURN_STATUS(s);
2252} 2228}
2253#if ERRORS_ARE_FATAL 2229#define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__) COMMA_SUCCESS)
2254# define zbc_num_binary(...) (zbc_num_binary(__VA_ARGS__), BC_STATUS_SUCCESS)
2255#endif
2256 2230
2257static bool bc_num_strValid(const char *val, size_t base) 2231static bool bc_num_strValid(const char *val, size_t base)
2258{ 2232{
@@ -2400,9 +2374,7 @@ static BC_STATUS zbc_num_parse(BcNum *n, const char *val, BcNum *base,
2400 2374
2401 RETURN_STATUS(BC_STATUS_SUCCESS); 2375 RETURN_STATUS(BC_STATUS_SUCCESS);
2402} 2376}
2403#if ERRORS_ARE_FATAL 2377#define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__) COMMA_SUCCESS)
2404# define zbc_num_parse(...) (zbc_num_parse(__VA_ARGS__), BC_STATUS_SUCCESS)
2405#endif
2406 2378
2407static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale) 2379static BC_STATUS zbc_num_sqrt(BcNum *a, BcNum *restrict b, size_t scale)
2408{ 2380{
@@ -2505,9 +2477,7 @@ err:
2505 bc_num_free(&num1); 2477 bc_num_free(&num1);
2506 RETURN_STATUS(s); 2478 RETURN_STATUS(s);
2507} 2479}
2508#if ERRORS_ARE_FATAL 2480#define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__) COMMA_SUCCESS)
2509# define zbc_num_sqrt(...) (zbc_num_sqrt(__VA_ARGS__), BC_STATUS_SUCCESS)
2510#endif
2511 2481
2512static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d, 2482static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
2513 size_t scale) 2483 size_t scale)
@@ -2534,9 +2504,7 @@ static BC_STATUS zbc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d,
2534 2504
2535 RETURN_STATUS(s); 2505 RETURN_STATUS(s);
2536} 2506}
2537#if ERRORS_ARE_FATAL 2507#define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__) COMMA_SUCCESS)
2538# define zbc_num_divmod(...) (zbc_num_divmod(__VA_ARGS__), BC_STATUS_SUCCESS)
2539#endif
2540 2508
2541#if ENABLE_DC 2509#if ENABLE_DC
2542static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d) 2510static BC_STATUS zbc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d)
@@ -2590,9 +2558,7 @@ err:
2590 bc_num_free(&base); 2558 bc_num_free(&base);
2591 RETURN_STATUS(s); 2559 RETURN_STATUS(s);
2592} 2560}
2593#if ERRORS_ARE_FATAL 2561#define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__) COMMA_SUCCESS)
2594# define zbc_num_modexp(...) (zbc_num_modexp(__VA_ARGS__), BC_STATUS_SUCCESS)
2595#endif
2596#endif // ENABLE_DC 2562#endif // ENABLE_DC
2597 2563
2598#if ENABLE_BC 2564#if ENABLE_BC
@@ -2613,9 +2579,7 @@ static BC_STATUS zbc_func_insert(BcFunc *f, char *name, bool var)
2613 2579
2614 RETURN_STATUS(BC_STATUS_SUCCESS); 2580 RETURN_STATUS(BC_STATUS_SUCCESS);
2615} 2581}
2616#if ERRORS_ARE_FATAL 2582#define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__) COMMA_SUCCESS)
2617# define zbc_func_insert(...) (zbc_func_insert(__VA_ARGS__), BC_STATUS_SUCCESS)
2618#endif
2619#endif 2583#endif
2620 2584
2621static void bc_func_init(BcFunc *f) 2585static void bc_func_init(BcFunc *f)
@@ -2835,9 +2799,7 @@ static BC_STATUS zbc_lex_number(BcLex *l, char start)
2835 2799
2836 RETURN_STATUS(BC_STATUS_SUCCESS); 2800 RETURN_STATUS(BC_STATUS_SUCCESS);
2837} 2801}
2838#if ERRORS_ARE_FATAL 2802#define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__) COMMA_SUCCESS)
2839# define zbc_lex_number(...) (zbc_lex_number(__VA_ARGS__), BC_STATUS_SUCCESS)
2840#endif
2841 2803
2842static void bc_lex_name(BcLex *l) 2804static void bc_lex_name(BcLex *l)
2843{ 2805{
@@ -2895,6 +2857,7 @@ static BC_STATUS zcommon_lex_token(BcLex *l)
2895 } 2857 }
2896 IF_DC(RETURN_STATUS(zdc_lex_token(l));) 2858 IF_DC(RETURN_STATUS(zdc_lex_token(l));)
2897} 2859}
2860#define zcommon_lex_token(...) (zcommon_lex_token(__VA_ARGS__) COMMA_SUCCESS)
2898 2861
2899static bool bc_lex_more_input(BcLex *l) 2862static bool bc_lex_more_input(BcLex *l)
2900{ 2863{
@@ -2997,15 +2960,13 @@ static BC_STATUS zbc_lex_next(BcLex *l)
2997 dbg_lex("next string to parse:'%.*s'", 2960 dbg_lex("next string to parse:'%.*s'",
2998 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)), 2961 (int)(strchrnul(l->buf + l->i, '\n') - (l->buf + l->i)),
2999 l->buf + l->i); 2962 l->buf + l->i);
3000 ERROR_RETURN(s =) zcommon_lex_token(l); 2963 s = zcommon_lex_token(l);
3001 } while (!s && l->t.t == BC_LEX_WHITESPACE); 2964 } while (!s && l->t.t == BC_LEX_WHITESPACE);
3002 dbg_lex("l->t.t from string:%d", l->t.t); 2965 dbg_lex("l->t.t from string:%d", l->t.t);
3003 2966
3004 RETURN_STATUS(s); 2967 RETURN_STATUS(s);
3005} 2968}
3006#if ERRORS_ARE_FATAL 2969#define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__) COMMA_SUCCESS)
3007# define zbc_lex_next(...) (zbc_lex_next(__VA_ARGS__), BC_STATUS_SUCCESS)
3008#endif
3009 2970
3010static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l) 2971static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
3011{ 2972{
@@ -3013,9 +2974,7 @@ static BC_STATUS zbc_lex_skip_if_at_NLINE(BcLex *l)
3013 RETURN_STATUS(zbc_lex_next(l)); 2974 RETURN_STATUS(zbc_lex_next(l));
3014 RETURN_STATUS(BC_STATUS_SUCCESS); 2975 RETURN_STATUS(BC_STATUS_SUCCESS);
3015} 2976}
3016#if ERRORS_ARE_FATAL 2977#define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__) COMMA_SUCCESS)
3017# define zbc_lex_skip_if_at_NLINE(...) (zbc_lex_skip_if_at_NLINE(__VA_ARGS__), BC_STATUS_SUCCESS)
3018#endif
3019 2978
3020static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l) 2979static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
3021{ 2980{
@@ -3026,9 +2985,7 @@ static BC_STATUS zbc_lex_next_and_skip_NLINE(BcLex *l)
3026 s = zbc_lex_skip_if_at_NLINE(l); 2985 s = zbc_lex_skip_if_at_NLINE(l);
3027 RETURN_STATUS(s); 2986 RETURN_STATUS(s);
3028} 2987}
3029#if ERRORS_ARE_FATAL 2988#define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__) COMMA_SUCCESS)
3030# define zbc_lex_next_and_skip_NLINE(...) (zbc_lex_next_and_skip_NLINE(__VA_ARGS__), BC_STATUS_SUCCESS)
3031#endif
3032 2989
3033static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text) 2990static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
3034{ 2991{
@@ -3038,9 +2995,7 @@ static BC_STATUS zbc_lex_text_init(BcLex *l, const char *text)
3038 l->t.t = l->t.last = BC_LEX_INVALID; 2995 l->t.t = l->t.last = BC_LEX_INVALID;
3039 RETURN_STATUS(zbc_lex_next(l)); 2996 RETURN_STATUS(zbc_lex_next(l));
3040} 2997}
3041#if ERRORS_ARE_FATAL 2998#define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__) COMMA_SUCCESS)
3042# define zbc_lex_text_init(...) (zbc_lex_text_init(__VA_ARGS__), BC_STATUS_SUCCESS)
3043#endif
3044 2999
3045#if ENABLE_BC 3000#if ENABLE_BC
3046static BC_STATUS zbc_lex_identifier(BcLex *l) 3001static BC_STATUS zbc_lex_identifier(BcLex *l)
@@ -3063,7 +3018,7 @@ static BC_STATUS zbc_lex_identifier(BcLex *l)
3063 l->t.t = BC_LEX_KEY_1st_keyword + i; 3018 l->t.t = BC_LEX_KEY_1st_keyword + i;
3064 if (!bc_lex_kws_POSIX(i)) { 3019 if (!bc_lex_kws_POSIX(i)) {
3065 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8); 3020 s = bc_posix_error_fmt("%sthe '%.8s' keyword", "POSIX does not allow ", bc_lex_kws[i].name8);
3066 ERROR_RETURN(if (s) RETURN_STATUS(s);) 3021 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
3067 } 3022 }
3068 3023
3069 // We minus 1 because the index has already been incremented. 3024 // We minus 1 because the index has already been incremented.
@@ -3084,9 +3039,7 @@ static BC_STATUS zbc_lex_identifier(BcLex *l)
3084 3039
3085 RETURN_STATUS(s); 3040 RETURN_STATUS(s);
3086} 3041}
3087#if ERRORS_ARE_FATAL 3042#define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__) COMMA_SUCCESS)
3088# define zbc_lex_identifier(...) (zbc_lex_identifier(__VA_ARGS__), BC_STATUS_SUCCESS)
3089#endif
3090 3043
3091static BC_STATUS zbc_lex_string(BcLex *l) 3044static BC_STATUS zbc_lex_string(BcLex *l)
3092{ 3045{
@@ -3117,9 +3070,7 @@ static BC_STATUS zbc_lex_string(BcLex *l)
3117 3070
3118 RETURN_STATUS(BC_STATUS_SUCCESS); 3071 RETURN_STATUS(BC_STATUS_SUCCESS);
3119} 3072}
3120#if ERRORS_ARE_FATAL 3073#define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
3121# define zbc_lex_string(...) (zbc_lex_string(__VA_ARGS__), BC_STATUS_SUCCESS)
3122#endif
3123 3074
3124static void bc_lex_assign(BcLex *l, unsigned with_and_without) 3075static void bc_lex_assign(BcLex *l, unsigned with_and_without)
3125{ 3076{
@@ -3161,9 +3112,7 @@ static BC_STATUS zbc_lex_comment(BcLex *l)
3161 3112
3162 RETURN_STATUS(BC_STATUS_SUCCESS); 3113 RETURN_STATUS(BC_STATUS_SUCCESS);
3163} 3114}
3164#if ERRORS_ARE_FATAL 3115#define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__) COMMA_SUCCESS)
3165# define zbc_lex_comment(...) (zbc_lex_comment(__VA_ARGS__), BC_STATUS_SUCCESS)
3166#endif
3167 3116
3168static BC_STATUS zbc_lex_token(BcLex *l) 3117static BC_STATUS zbc_lex_token(BcLex *l)
3169{ 3118{
@@ -3192,7 +3141,7 @@ static BC_STATUS zbc_lex_token(BcLex *l)
3192 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT); 3141 bc_lex_assign(l, BC_LEX_OP_REL_NE, BC_LEX_OP_BOOL_NOT);
3193 if (l->t.t == BC_LEX_OP_BOOL_NOT) { 3142 if (l->t.t == BC_LEX_OP_BOOL_NOT) {
3194 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!"); 3143 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("!");
3195 ERROR_RETURN(if (s) RETURN_STATUS(s);) 3144 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
3196 } 3145 }
3197 break; 3146 break;
3198 case '"': 3147 case '"':
@@ -3200,7 +3149,7 @@ static BC_STATUS zbc_lex_token(BcLex *l)
3200 break; 3149 break;
3201 case '#': 3150 case '#':
3202 s = bc_POSIX_does_not_allow("'#' script comments"); 3151 s = bc_POSIX_does_not_allow("'#' script comments");
3203 ERROR_RETURN(if (s) RETURN_STATUS(s);) 3152 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
3204 bc_lex_lineComment(l); 3153 bc_lex_lineComment(l);
3205 break; 3154 break;
3206 case '%': 3155 case '%':
@@ -3210,7 +3159,7 @@ static BC_STATUS zbc_lex_token(BcLex *l)
3210 c2 = l->buf[l->i]; 3159 c2 = l->buf[l->i];
3211 if (c2 == '&') { 3160 if (c2 == '&') {
3212 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&"); 3161 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("&&");
3213 ERROR_RETURN(if (s) RETURN_STATUS(s);) 3162 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
3214 ++l->i; 3163 ++l->i;
3215 l->t.t = BC_LEX_OP_BOOL_AND; 3164 l->t.t = BC_LEX_OP_BOOL_AND;
3216 } else { 3165 } else {
@@ -3339,7 +3288,7 @@ static BC_STATUS zbc_lex_token(BcLex *l)
3339 c2 = l->buf[l->i]; 3288 c2 = l->buf[l->i];
3340 if (c2 == '|') { 3289 if (c2 == '|') {
3341 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||"); 3290 s = bc_POSIX_does_not_allow_bool_ops_this_is_bad("||");
3342 ERROR_RETURN(if (s) RETURN_STATUS(s);) 3291 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
3343 ++l->i; 3292 ++l->i;
3344 l->t.t = BC_LEX_OP_BOOL_OR; 3293 l->t.t = BC_LEX_OP_BOOL_OR;
3345 } else { 3294 } else {
@@ -3376,9 +3325,7 @@ static BC_STATUS zdc_lex_register(BcLex *l)
3376 3325
3377 RETURN_STATUS(BC_STATUS_SUCCESS); 3326 RETURN_STATUS(BC_STATUS_SUCCESS);
3378} 3327}
3379#if ERRORS_ARE_FATAL 3328#define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__) COMMA_SUCCESS)
3380# define zdc_lex_register(...) (zdc_lex_register(__VA_ARGS__), BC_STATUS_SUCCESS)
3381#endif
3382 3329
3383static BC_STATUS zdc_lex_string(BcLex *l) 3330static BC_STATUS zdc_lex_string(BcLex *l)
3384{ 3331{
@@ -3415,9 +3362,7 @@ static BC_STATUS zdc_lex_string(BcLex *l)
3415 3362
3416 RETURN_STATUS(BC_STATUS_SUCCESS); 3363 RETURN_STATUS(BC_STATUS_SUCCESS);
3417} 3364}
3418#if ERRORS_ARE_FATAL 3365#define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__) COMMA_SUCCESS)
3419# define zdc_lex_string(...) (zdc_lex_string(__VA_ARGS__), BC_STATUS_SUCCESS)
3420#endif
3421 3366
3422static BC_STATUS zdc_lex_token(BcLex *l) 3367static BC_STATUS zdc_lex_token(BcLex *l)
3423{ 3368{
@@ -3578,6 +3523,7 @@ static BC_STATUS zcommon_parse(BcParse *p)
3578 } 3523 }
3579 IF_DC(RETURN_STATUS(zdc_parse_parse(p));) 3524 IF_DC(RETURN_STATUS(zdc_parse_parse(p));)
3580} 3525}
3526#define zcommon_parse(...) (zcommon_parse(__VA_ARGS__) COMMA_SUCCESS)
3581 3527
3582static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text) 3528static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
3583{ 3529{
@@ -3585,9 +3531,7 @@ static BC_STATUS zbc_parse_text_init(BcParse *p, const char *text)
3585 3531
3586 RETURN_STATUS(zbc_lex_text_init(&p->l, text)); 3532 RETURN_STATUS(zbc_lex_text_init(&p->l, text));
3587} 3533}
3588#if ERRORS_ARE_FATAL 3534#define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__) COMMA_SUCCESS)
3589# define zbc_parse_text_init(...) (zbc_parse_text_init(__VA_ARGS__), BC_STATUS_SUCCESS)
3590#endif
3591 3535
3592// Called when parsing or execution detects a failure, 3536// Called when parsing or execution detects a failure,
3593// resets execution structures. 3537// resets execution structures.
@@ -3665,18 +3609,14 @@ static void bc_parse_create(BcParse *p, size_t func)
3665static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed); 3609static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed);
3666static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next); 3610static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next);
3667static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next); 3611static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next);
3668#if ERRORS_ARE_FATAL 3612#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
3669# define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS) 3613#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
3670# define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__), BC_STATUS_SUCCESS)
3671#endif
3672 3614
3673static BC_STATUS zbc_parse_stmt(BcParse *p) 3615static BC_STATUS zbc_parse_stmt(BcParse *p)
3674{ 3616{
3675 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false)); 3617 RETURN_STATUS(zbc_parse_stmt_possibly_auto(p, false));
3676} 3618}
3677#if ERRORS_ARE_FATAL 3619#define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__) COMMA_SUCCESS)
3678# define zbc_parse_stmt(...) (zbc_parse_stmt(__VA_ARGS__), BC_STATUS_SUCCESS)
3679#endif
3680 3620
3681static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X) 3621static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after_X)
3682{ 3622{
@@ -3689,9 +3629,7 @@ static BC_STATUS zbc_parse_stmt_allow_NLINE_before(BcParse *p, const char *after
3689 3629
3690 RETURN_STATUS(zbc_parse_stmt(p)); 3630 RETURN_STATUS(zbc_parse_stmt(p));
3691} 3631}
3692#if ERRORS_ARE_FATAL 3632#define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__) COMMA_SUCCESS)
3693# define zbc_parse_stmt_allow_NLINE_before(...) (zbc_parse_stmt_allow_NLINE_before(__VA_ARGS__), BC_STATUS_SUCCESS)
3694#endif
3695 3633
3696static void bc_parse_operator(BcParse *p, BcLexType type, size_t start, 3634static void bc_parse_operator(BcParse *p, BcLexType type, size_t start,
3697 size_t *nexprs) 3635 size_t *nexprs)
@@ -3737,9 +3675,7 @@ static BC_STATUS zbc_parse_rightParen(BcParse *p, size_t ops_bgn, size_t *nexs)
3737 3675
3738 RETURN_STATUS(zbc_lex_next(&p->l)); 3676 RETURN_STATUS(zbc_lex_next(&p->l));
3739} 3677}
3740#if ERRORS_ARE_FATAL 3678#define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__) COMMA_SUCCESS)
3741# define zbc_parse_rightParen(...) (zbc_parse_rightParen(__VA_ARGS__), BC_STATUS_SUCCESS)
3742#endif
3743 3679
3744static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags) 3680static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
3745{ 3681{
@@ -3769,9 +3705,7 @@ static BC_STATUS zbc_parse_params(BcParse *p, uint8_t flags)
3769 3705
3770 RETURN_STATUS(BC_STATUS_SUCCESS); 3706 RETURN_STATUS(BC_STATUS_SUCCESS);
3771} 3707}
3772#if ERRORS_ARE_FATAL 3708#define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__) COMMA_SUCCESS)
3773# define zbc_parse_params(...) (zbc_parse_params(__VA_ARGS__), BC_STATUS_SUCCESS)
3774#endif
3775 3709
3776static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags) 3710static BC_STATUS zbc_parse_call(BcParse *p, char *name, uint8_t flags)
3777{ 3711{
@@ -3808,9 +3742,7 @@ err:
3808 free(name); 3742 free(name);
3809 RETURN_STATUS(s); 3743 RETURN_STATUS(s);
3810} 3744}
3811#if ERRORS_ARE_FATAL 3745#define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__) COMMA_SUCCESS)
3812# define zbc_parse_call(...) (zbc_parse_call(__VA_ARGS__), BC_STATUS_SUCCESS)
3813#endif
3814 3746
3815static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags) 3747static BC_STATUS zbc_parse_name(BcParse *p, BcInst *type, uint8_t flags)
3816{ 3748{
@@ -3863,9 +3795,7 @@ err:
3863 free(name); 3795 free(name);
3864 RETURN_STATUS(s); 3796 RETURN_STATUS(s);
3865} 3797}
3866#if ERRORS_ARE_FATAL 3798#define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__) COMMA_SUCCESS)
3867# define zbc_parse_name(...) (zbc_parse_name(__VA_ARGS__), BC_STATUS_SUCCESS)
3868#endif
3869 3799
3870static BC_STATUS zbc_parse_read(BcParse *p) 3800static BC_STATUS zbc_parse_read(BcParse *p)
3871{ 3801{
@@ -3883,9 +3813,7 @@ static BC_STATUS zbc_parse_read(BcParse *p)
3883 3813
3884 RETURN_STATUS(zbc_lex_next(&p->l)); 3814 RETURN_STATUS(zbc_lex_next(&p->l));
3885} 3815}
3886#if ERRORS_ARE_FATAL 3816#define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__) COMMA_SUCCESS)
3887# define zbc_parse_read(...) (zbc_parse_read(__VA_ARGS__), BC_STATUS_SUCCESS)
3888#endif
3889 3817
3890static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags, 3818static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
3891 BcInst *prev) 3819 BcInst *prev)
@@ -3911,9 +3839,7 @@ static BC_STATUS zbc_parse_builtin(BcParse *p, BcLexType type, uint8_t flags,
3911 3839
3912 RETURN_STATUS(zbc_lex_next(&p->l)); 3840 RETURN_STATUS(zbc_lex_next(&p->l));
3913} 3841}
3914#if ERRORS_ARE_FATAL 3842#define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__) COMMA_SUCCESS)
3915# define zbc_parse_builtin(...) (zbc_parse_builtin(__VA_ARGS__), BC_STATUS_SUCCESS)
3916#endif
3917 3843
3918static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags) 3844static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
3919{ 3845{
@@ -3942,9 +3868,7 @@ static BC_STATUS zbc_parse_scale(BcParse *p, BcInst *type, uint8_t flags)
3942 3868
3943 RETURN_STATUS(zbc_lex_next(&p->l)); 3869 RETURN_STATUS(zbc_lex_next(&p->l));
3944} 3870}
3945#if ERRORS_ARE_FATAL 3871#define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__) COMMA_SUCCESS)
3946# define zbc_parse_scale(...) (zbc_parse_scale(__VA_ARGS__), BC_STATUS_SUCCESS)
3947#endif
3948 3872
3949static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr, 3873static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
3950 size_t *nexprs, uint8_t flags) 3874 size_t *nexprs, uint8_t flags)
@@ -4002,9 +3926,7 @@ static BC_STATUS zbc_parse_incdec(BcParse *p, BcInst *prev, bool *paren_expr,
4002 3926
4003 RETURN_STATUS(s); 3927 RETURN_STATUS(s);
4004} 3928}
4005#if ERRORS_ARE_FATAL 3929#define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__) COMMA_SUCCESS)
4006# define zbc_parse_incdec(...) (zbc_parse_incdec(__VA_ARGS__), BC_STATUS_SUCCESS)
4007#endif
4008 3930
4009static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn, 3931static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
4010 bool rparen, size_t *nexprs) 3932 bool rparen, size_t *nexprs)
@@ -4031,9 +3953,7 @@ static BC_STATUS zbc_parse_minus(BcParse *p, BcInst *prev, size_t ops_bgn,
4031 3953
4032 RETURN_STATUS(s); 3954 RETURN_STATUS(s);
4033} 3955}
4034#if ERRORS_ARE_FATAL 3956#define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__) COMMA_SUCCESS)
4035# define zbc_parse_minus(...) (zbc_parse_minus(__VA_ARGS__), BC_STATUS_SUCCESS)
4036#endif
4037 3957
4038static BC_STATUS zbc_parse_string(BcParse *p, char inst) 3958static BC_STATUS zbc_parse_string(BcParse *p, char inst)
4039{ 3959{
@@ -4046,9 +3966,7 @@ static BC_STATUS zbc_parse_string(BcParse *p, char inst)
4046 3966
4047 RETURN_STATUS(zbc_lex_next(&p->l)); 3967 RETURN_STATUS(zbc_lex_next(&p->l));
4048} 3968}
4049#if ERRORS_ARE_FATAL 3969#define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
4050# define zbc_parse_string(...) (zbc_parse_string(__VA_ARGS__), BC_STATUS_SUCCESS)
4051#endif
4052 3970
4053static BC_STATUS zbc_parse_print(BcParse *p) 3971static BC_STATUS zbc_parse_print(BcParse *p)
4054{ 3972{
@@ -4072,9 +3990,7 @@ static BC_STATUS zbc_parse_print(BcParse *p)
4072 3990
4073 RETURN_STATUS(s); 3991 RETURN_STATUS(s);
4074} 3992}
4075#if ERRORS_ARE_FATAL 3993#define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__) COMMA_SUCCESS)
4076# define zbc_parse_print(...) (zbc_parse_print(__VA_ARGS__), BC_STATUS_SUCCESS)
4077#endif
4078 3994
4079static BC_STATUS zbc_parse_return(BcParse *p) 3995static BC_STATUS zbc_parse_return(BcParse *p)
4080{ 3996{
@@ -4099,7 +4015,7 @@ static BC_STATUS zbc_parse_return(BcParse *p)
4099 4015
4100 if (!paren || p->l.t.last != BC_LEX_RPAREN) { 4016 if (!paren || p->l.t.last != BC_LEX_RPAREN) {
4101 s = bc_POSIX_requires("parentheses around return expressions"); 4017 s = bc_POSIX_requires("parentheses around return expressions");
4102 ERROR_RETURN(if (s) RETURN_STATUS(s);) 4018 IF_ERROR_RETURN_POSSIBLE(if (s) RETURN_STATUS(s));
4103 } 4019 }
4104 4020
4105 bc_parse_push(p, BC_INST_RET); 4021 bc_parse_push(p, BC_INST_RET);
@@ -4108,9 +4024,7 @@ static BC_STATUS zbc_parse_return(BcParse *p)
4108 dbg_lex_done("%s:%d done", __func__, __LINE__); 4024 dbg_lex_done("%s:%d done", __func__, __LINE__);
4109 RETURN_STATUS(s); 4025 RETURN_STATUS(s);
4110} 4026}
4111#if ERRORS_ARE_FATAL 4027#define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__) COMMA_SUCCESS)
4112# define zbc_parse_return(...) (zbc_parse_return(__VA_ARGS__), BC_STATUS_SUCCESS)
4113#endif
4114 4028
4115static void rewrite_label_to_current(BcParse *p, size_t idx) 4029static void rewrite_label_to_current(BcParse *p, size_t idx)
4116{ 4030{
@@ -4167,9 +4081,7 @@ static BC_STATUS zbc_parse_if(BcParse *p)
4167 dbg_lex_done("%s:%d done", __func__, __LINE__); 4081 dbg_lex_done("%s:%d done", __func__, __LINE__);
4168 RETURN_STATUS(s); 4082 RETURN_STATUS(s);
4169} 4083}
4170#if ERRORS_ARE_FATAL 4084#define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__) COMMA_SUCCESS)
4171# define zbc_parse_if(...) (zbc_parse_if(__VA_ARGS__), BC_STATUS_SUCCESS)
4172#endif
4173 4085
4174static BC_STATUS zbc_parse_while(BcParse *p) 4086static BC_STATUS zbc_parse_while(BcParse *p)
4175{ 4087{
@@ -4212,9 +4124,7 @@ static BC_STATUS zbc_parse_while(BcParse *p)
4212 4124
4213 RETURN_STATUS(s); 4125 RETURN_STATUS(s);
4214} 4126}
4215#if ERRORS_ARE_FATAL 4127#define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__) COMMA_SUCCESS)
4216# define zbc_parse_while(...) (zbc_parse_while(__VA_ARGS__), BC_STATUS_SUCCESS)
4217#endif
4218 4128
4219static BC_STATUS zbc_parse_for(BcParse *p) 4129static BC_STATUS zbc_parse_for(BcParse *p)
4220{ 4130{
@@ -4290,9 +4200,7 @@ static BC_STATUS zbc_parse_for(BcParse *p)
4290 4200
4291 RETURN_STATUS(BC_STATUS_SUCCESS); 4201 RETURN_STATUS(BC_STATUS_SUCCESS);
4292} 4202}
4293#if ERRORS_ARE_FATAL 4203#define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__) COMMA_SUCCESS)
4294# define zbc_parse_for(...) (zbc_parse_for(__VA_ARGS__), BC_STATUS_SUCCESS)
4295#endif
4296 4204
4297static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type) 4205static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
4298{ 4206{
@@ -4317,9 +4225,7 @@ static BC_STATUS zbc_parse_break_or_continue(BcParse *p, BcLexType type)
4317 4225
4318 RETURN_STATUS(zbc_lex_next(&p->l)); 4226 RETURN_STATUS(zbc_lex_next(&p->l));
4319} 4227}
4320#if ERRORS_ARE_FATAL 4228#define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__) COMMA_SUCCESS)
4321# define zbc_parse_break_or_continue(...) (zbc_parse_break_or_continue(__VA_ARGS__), BC_STATUS_SUCCESS)
4322#endif
4323 4229
4324static BC_STATUS zbc_parse_funcdef(BcParse *p) 4230static BC_STATUS zbc_parse_funcdef(BcParse *p)
4325{ 4231{
@@ -4406,9 +4312,7 @@ err:
4406 free(name); 4312 free(name);
4407 RETURN_STATUS(s); 4313 RETURN_STATUS(s);
4408} 4314}
4409#if ERRORS_ARE_FATAL 4315#define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__) COMMA_SUCCESS)
4410# define zbc_parse_funcdef(...) (zbc_parse_funcdef(__VA_ARGS__), BC_STATUS_SUCCESS)
4411#endif
4412 4316
4413static BC_STATUS zbc_parse_auto(BcParse *p) 4317static BC_STATUS zbc_parse_auto(BcParse *p)
4414{ 4318{
@@ -4466,9 +4370,7 @@ err:
4466 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__); 4370 dbg_lex_done("%s:%d done (ERROR)", __func__, __LINE__);
4467 RETURN_STATUS(s); 4371 RETURN_STATUS(s);
4468} 4372}
4469#if ERRORS_ARE_FATAL 4373#define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__) COMMA_SUCCESS)
4470# define zbc_parse_auto(...) (zbc_parse_auto(__VA_ARGS__), BC_STATUS_SUCCESS)
4471#endif
4472 4374
4473#undef zbc_parse_stmt_possibly_auto 4375#undef zbc_parse_stmt_possibly_auto
4474static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed) 4376static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
@@ -4586,9 +4488,7 @@ static BC_STATUS zbc_parse_stmt_possibly_auto(BcParse *p, bool auto_allowed)
4586 dbg_lex_done("%s:%d done", __func__, __LINE__); 4488 dbg_lex_done("%s:%d done", __func__, __LINE__);
4587 RETURN_STATUS(s); 4489 RETURN_STATUS(s);
4588} 4490}
4589#if ERRORS_ARE_FATAL 4491#define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__) COMMA_SUCCESS)
4590# define zbc_parse_stmt_possibly_auto(...) (zbc_parse_stmt_possibly_auto(__VA_ARGS__), BC_STATUS_SUCCESS)
4591#endif
4592 4492
4593static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p) 4493static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
4594{ 4494{
@@ -4608,9 +4508,7 @@ static BC_STATUS zbc_parse_stmt_or_funcdef(BcParse *p)
4608 dbg_lex_done("%s:%d done", __func__, __LINE__); 4508 dbg_lex_done("%s:%d done", __func__, __LINE__);
4609 RETURN_STATUS(s); 4509 RETURN_STATUS(s);
4610} 4510}
4611#if ERRORS_ARE_FATAL 4511#define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__) COMMA_SUCCESS)
4612# define zbc_parse_stmt_or_funcdef(...) (zbc_parse_stmt_or_funcdef(__VA_ARGS__), BC_STATUS_SUCCESS)
4613#endif
4614 4512
4615// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP 4513// This is not a "z" function: can also return BC_STATUS_PARSE_EMPTY_EXP
4616static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next) 4514static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext next)
@@ -4864,11 +4762,11 @@ static BcStatus bc_parse_expr_empty_ok(BcParse *p, uint8_t flags, BcParseNext ne
4864 4762
4865 if (!(flags & BC_PARSE_REL) && nrelops) { 4763 if (!(flags & BC_PARSE_REL) && nrelops) {
4866 s = bc_POSIX_does_not_allow("comparison operators outside if or loops"); 4764 s = bc_POSIX_does_not_allow("comparison operators outside if or loops");
4867 ERROR_RETURN(if (s) return s;) 4765 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
4868 } 4766 }
4869 else if ((flags & BC_PARSE_REL) && nrelops > 1) { 4767 else if ((flags & BC_PARSE_REL) && nrelops > 1) {
4870 s = bc_POSIX_requires("exactly one comparison operator per condition"); 4768 s = bc_POSIX_requires("exactly one comparison operator per condition");
4871 ERROR_RETURN(if (s) return s;) 4769 IF_ERROR_RETURN_POSSIBLE(if (s) return s);
4872 } 4770 }
4873 4771
4874 if (flags & BC_PARSE_PRINT) { 4772 if (flags & BC_PARSE_PRINT) {
@@ -4890,9 +4788,7 @@ static BC_STATUS zbc_parse_expr(BcParse *p, uint8_t flags, BcParseNext next)
4890 RETURN_STATUS(bc_error("empty expression")); 4788 RETURN_STATUS(bc_error("empty expression"));
4891 RETURN_STATUS(s); 4789 RETURN_STATUS(s);
4892} 4790}
4893#if ERRORS_ARE_FATAL 4791#define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
4894# define zbc_parse_expr(...) (zbc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
4895#endif
4896 4792
4897#endif // ENABLE_BC 4793#endif // ENABLE_BC
4898 4794
@@ -4912,9 +4808,7 @@ static BC_STATUS zdc_parse_register(BcParse *p)
4912 4808
4913 RETURN_STATUS(s); 4809 RETURN_STATUS(s);
4914} 4810}
4915#if ERRORS_ARE_FATAL 4811#define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__) COMMA_SUCCESS)
4916# define zdc_parse_register(...) (zdc_parse_register(__VA_ARGS__), BC_STATUS_SUCCESS)
4917#endif
4918 4812
4919static BC_STATUS zdc_parse_string(BcParse *p) 4813static BC_STATUS zdc_parse_string(BcParse *p)
4920{ 4814{
@@ -4932,9 +4826,7 @@ static BC_STATUS zdc_parse_string(BcParse *p)
4932 4826
4933 RETURN_STATUS(zbc_lex_next(&p->l)); 4827 RETURN_STATUS(zbc_lex_next(&p->l));
4934} 4828}
4935#if ERRORS_ARE_FATAL 4829#define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__) COMMA_SUCCESS)
4936# define zdc_parse_string(...) (zdc_parse_string(__VA_ARGS__), BC_STATUS_SUCCESS)
4937#endif
4938 4830
4939static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store) 4831static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
4940{ 4832{
@@ -4954,9 +4846,7 @@ static BC_STATUS zdc_parse_mem(BcParse *p, uint8_t inst, bool name, bool store)
4954 4846
4955 RETURN_STATUS(zbc_lex_next(&p->l)); 4847 RETURN_STATUS(zbc_lex_next(&p->l));
4956} 4848}
4957#if ERRORS_ARE_FATAL 4849#define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__) COMMA_SUCCESS)
4958# define zdc_parse_mem(...) (zdc_parse_mem(__VA_ARGS__), BC_STATUS_SUCCESS)
4959#endif
4960 4850
4961static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst) 4851static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
4962{ 4852{
@@ -4981,9 +4871,7 @@ static BC_STATUS zdc_parse_cond(BcParse *p, uint8_t inst)
4981 4871
4982 RETURN_STATUS(s); 4872 RETURN_STATUS(s);
4983} 4873}
4984#if ERRORS_ARE_FATAL 4874#define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__) COMMA_SUCCESS)
4985# define zdc_parse_cond(...) (zdc_parse_cond(__VA_ARGS__), BC_STATUS_SUCCESS)
4986#endif
4987 4875
4988static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags) 4876static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
4989{ 4877{
@@ -5055,9 +4943,7 @@ static BC_STATUS zdc_parse_token(BcParse *p, BcLexType t, uint8_t flags)
5055 4943
5056 RETURN_STATUS(s); 4944 RETURN_STATUS(s);
5057} 4945}
5058#if ERRORS_ARE_FATAL 4946#define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__) COMMA_SUCCESS)
5059# define zdc_parse_token(...) (zdc_parse_token(__VA_ARGS__), BC_STATUS_SUCCESS)
5060#endif
5061 4947
5062static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags) 4948static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
5063{ 4949{
@@ -5080,9 +4966,7 @@ static BC_STATUS zdc_parse_expr(BcParse *p, uint8_t flags)
5080 4966
5081 RETURN_STATUS(s); 4967 RETURN_STATUS(s);
5082} 4968}
5083#if ERRORS_ARE_FATAL 4969#define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
5084# define zdc_parse_expr(...) (zdc_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
5085#endif
5086 4970
5087static BC_STATUS zdc_parse_parse(BcParse *p) 4971static BC_STATUS zdc_parse_parse(BcParse *p)
5088{ 4972{
@@ -5100,9 +4984,7 @@ static BC_STATUS zdc_parse_parse(BcParse *p)
5100 4984
5101 RETURN_STATUS(s); 4985 RETURN_STATUS(s);
5102} 4986}
5103#if ERRORS_ARE_FATAL 4987#define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__) COMMA_SUCCESS)
5104# define zdc_parse_parse(...) (zdc_parse_parse(__VA_ARGS__), BC_STATUS_SUCCESS)
5105#endif
5106 4988
5107#endif // ENABLE_DC 4989#endif // ENABLE_DC
5108 4990
@@ -5114,9 +4996,7 @@ static BC_STATUS zcommon_parse_expr(BcParse *p, uint8_t flags)
5114 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags))); 4996 IF_DC(RETURN_STATUS(zdc_parse_expr(p, flags)));
5115 } 4997 }
5116} 4998}
5117#if ERRORS_ARE_FATAL 4999#define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__) COMMA_SUCCESS)
5118# define zcommon_parse_expr(...) (zcommon_parse_expr(__VA_ARGS__), BC_STATUS_SUCCESS)
5119#endif
5120 5000
5121static BcVec* bc_program_search(char *id, bool var) 5001static BcVec* bc_program_search(char *id, bool var)
5122{ 5002{
@@ -5216,9 +5096,7 @@ static BC_STATUS zbc_program_num(BcResult *r, BcNum **num, bool hex)
5216 5096
5217 RETURN_STATUS(BC_STATUS_SUCCESS); 5097 RETURN_STATUS(BC_STATUS_SUCCESS);
5218} 5098}
5219#if ERRORS_ARE_FATAL 5099#define zbc_program_num(...) (zbc_program_num(__VA_ARGS__) COMMA_SUCCESS)
5220# define zbc_program_num(...) (zbc_program_num(__VA_ARGS__), BC_STATUS_SUCCESS)
5221#endif
5222 5100
5223static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln, 5101static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
5224 BcResult **r, BcNum **rn, bool assign) 5102 BcResult **r, BcNum **rn, bool assign)
@@ -5256,9 +5134,7 @@ static BC_STATUS zbc_program_binOpPrep(BcResult **l, BcNum **ln,
5256 5134
5257 RETURN_STATUS(s); 5135 RETURN_STATUS(s);
5258} 5136}
5259#if ERRORS_ARE_FATAL 5137#define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__) COMMA_SUCCESS)
5260# define zbc_program_binOpPrep(...) (zbc_program_binOpPrep(__VA_ARGS__), BC_STATUS_SUCCESS)
5261#endif
5262 5138
5263static void bc_program_binOpRetire(BcResult *r) 5139static void bc_program_binOpRetire(BcResult *r)
5264{ 5140{
@@ -5284,9 +5160,7 @@ static BC_STATUS zbc_program_prep(BcResult **r, BcNum **n)
5284 5160
5285 RETURN_STATUS(s); 5161 RETURN_STATUS(s);
5286} 5162}
5287#if ERRORS_ARE_FATAL 5163#define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__) COMMA_SUCCESS)
5288# define zbc_program_prep(...) (zbc_program_prep(__VA_ARGS__), BC_STATUS_SUCCESS)
5289#endif
5290 5164
5291static void bc_program_retire(BcResult *r, BcResultType t) 5165static void bc_program_retire(BcResult *r, BcResultType t)
5292{ 5166{
@@ -5306,7 +5180,7 @@ static BC_STATUS zbc_program_op(char inst)
5306 bc_num_init_DEF_SIZE(&res.d.n); 5180 bc_num_init_DEF_SIZE(&res.d.n);
5307 5181
5308 s = BC_STATUS_SUCCESS; 5182 s = BC_STATUS_SUCCESS;
5309 ERROR_RETURN(s =) zbc_program_ops[inst - BC_INST_POWER](n1, n2, &res.d.n, G.prog.scale); 5183 IF_ERROR_RETURN_POSSIBLE(s =) zbc_program_ops[inst - BC_INST_POWER](n1, n2, &res.d.n, G.prog.scale);
5310 if (s) goto err; 5184 if (s) goto err;
5311 bc_program_binOpRetire(&res); 5185 bc_program_binOpRetire(&res);
5312 5186
@@ -5316,9 +5190,7 @@ err:
5316 bc_num_free(&res.d.n); 5190 bc_num_free(&res.d.n);
5317 RETURN_STATUS(s); 5191 RETURN_STATUS(s);
5318} 5192}
5319#if ERRORS_ARE_FATAL 5193#define zbc_program_op(...) (zbc_program_op(__VA_ARGS__) COMMA_SUCCESS)
5320# define zbc_program_op(...) (zbc_program_op(__VA_ARGS__), BC_STATUS_SUCCESS)
5321#endif
5322 5194
5323static BC_STATUS zbc_program_read(void) 5195static BC_STATUS zbc_program_read(void)
5324{ 5196{
@@ -5367,15 +5239,12 @@ static BC_STATUS zbc_program_read(void)
5367 5239
5368exec_err: 5240exec_err:
5369 bc_parse_free(&parse); 5241 bc_parse_free(&parse);
5370//io_err:
5371 G.in_read = 0; 5242 G.in_read = 0;
5372 G.prog.file = sv_file; 5243 G.prog.file = sv_file;
5373 bc_vec_free(&buf); 5244 bc_vec_free(&buf);
5374 RETURN_STATUS(s); 5245 RETURN_STATUS(s);
5375} 5246}
5376#if ERRORS_ARE_FATAL 5247#define zbc_program_read(...) (zbc_program_read(__VA_ARGS__) COMMA_SUCCESS)
5377# define zbc_program_read(...) (zbc_program_read(__VA_ARGS__), BC_STATUS_SUCCESS)
5378#endif
5379 5248
5380static size_t bc_program_index(char *code, size_t *bgn) 5249static size_t bc_program_index(char *code, size_t *bgn)
5381{ 5250{
@@ -5584,9 +5453,7 @@ err:
5584 bc_vec_free(&stack); 5453 bc_vec_free(&stack);
5585 RETURN_STATUS(s); 5454 RETURN_STATUS(s);
5586} 5455}
5587#if ERRORS_ARE_FATAL 5456#define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__) COMMA_SUCCESS)
5588# define zbc_num_printNum(...) (zbc_num_printNum(__VA_ARGS__), BC_STATUS_SUCCESS)
5589#endif
5590 5457
5591static BC_STATUS zbc_num_printBase(BcNum *n) 5458static BC_STATUS zbc_num_printBase(BcNum *n)
5592{ 5459{
@@ -5617,18 +5484,14 @@ static BC_STATUS zbc_num_printBase(BcNum *n)
5617 5484
5618 RETURN_STATUS(s); 5485 RETURN_STATUS(s);
5619} 5486}
5620#if ERRORS_ARE_FATAL 5487#define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__) COMMA_SUCCESS)
5621# define zbc_num_printBase(...) (zbc_num_printBase(__VA_ARGS__), BC_STATUS_SUCCESS)
5622#endif
5623 5488
5624#if ENABLE_DC 5489#if ENABLE_DC
5625static BC_STATUS zbc_num_stream(BcNum *n, BcNum *base) 5490static BC_STATUS zbc_num_stream(BcNum *n, BcNum *base)
5626{ 5491{
5627 RETURN_STATUS(zbc_num_printNum(n, base, 1, bc_num_printChar)); 5492 RETURN_STATUS(zbc_num_printNum(n, base, 1, bc_num_printChar));
5628} 5493}
5629#if ERRORS_ARE_FATAL 5494#define zbc_num_stream(...) (zbc_num_stream(__VA_ARGS__) COMMA_SUCCESS)
5630# define zbc_num_stream(...) (zbc_num_stream(__VA_ARGS__), BC_STATUS_SUCCESS)
5631#endif
5632#endif 5495#endif
5633 5496
5634static BC_STATUS zbc_num_print(BcNum *n, bool newline) 5497static BC_STATUS zbc_num_print(BcNum *n, bool newline)
@@ -5653,9 +5516,7 @@ static BC_STATUS zbc_num_print(BcNum *n, bool newline)
5653 5516
5654 RETURN_STATUS(s); 5517 RETURN_STATUS(s);
5655} 5518}
5656#if ERRORS_ARE_FATAL 5519#define zbc_num_print(...) (zbc_num_print(__VA_ARGS__) COMMA_SUCCESS)
5657# define zbc_num_print(...) (zbc_num_print(__VA_ARGS__), BC_STATUS_SUCCESS)
5658#endif
5659 5520
5660static BC_STATUS zbc_program_print(char inst, size_t idx) 5521static BC_STATUS zbc_program_print(char inst, size_t idx)
5661{ 5522{
@@ -5701,9 +5562,7 @@ static BC_STATUS zbc_program_print(char inst, size_t idx)
5701 5562
5702 RETURN_STATUS(s); 5563 RETURN_STATUS(s);
5703} 5564}
5704#if ERRORS_ARE_FATAL 5565#define zbc_program_print(...) (zbc_program_print(__VA_ARGS__) COMMA_SUCCESS)
5705# define zbc_program_print(...) (zbc_program_print(__VA_ARGS__), BC_STATUS_SUCCESS)
5706#endif
5707 5566
5708static BC_STATUS zbc_program_negate(void) 5567static BC_STATUS zbc_program_negate(void)
5709{ 5568{
@@ -5722,9 +5581,7 @@ static BC_STATUS zbc_program_negate(void)
5722 5581
5723 RETURN_STATUS(s); 5582 RETURN_STATUS(s);
5724} 5583}
5725#if ERRORS_ARE_FATAL 5584#define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__) COMMA_SUCCESS)
5726# define zbc_program_negate(...) (zbc_program_negate(__VA_ARGS__), BC_STATUS_SUCCESS)
5727#endif
5728 5585
5729static BC_STATUS zbc_program_logical(char inst) 5586static BC_STATUS zbc_program_logical(char inst)
5730{ 5587{
@@ -5773,9 +5630,7 @@ static BC_STATUS zbc_program_logical(char inst)
5773 5630
5774 RETURN_STATUS(s); 5631 RETURN_STATUS(s);
5775} 5632}
5776#if ERRORS_ARE_FATAL 5633#define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__) COMMA_SUCCESS)
5777# define zbc_program_logical(...) (zbc_program_logical(__VA_ARGS__), BC_STATUS_SUCCESS)
5778#endif
5779 5634
5780#if ENABLE_DC 5635#if ENABLE_DC
5781static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v, 5636static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v,
@@ -5802,9 +5657,7 @@ static BC_STATUS zbc_program_assignStr(BcResult *r, BcVec *v,
5802 5657
5803 RETURN_STATUS(BC_STATUS_SUCCESS); 5658 RETURN_STATUS(BC_STATUS_SUCCESS);
5804} 5659}
5805#if ERRORS_ARE_FATAL 5660#define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__) COMMA_SUCCESS)
5806# define zbc_program_assignStr(...) (zbc_program_assignStr(__VA_ARGS__), BC_STATUS_SUCCESS)
5807#endif
5808#endif // ENABLE_DC 5661#endif // ENABLE_DC
5809 5662
5810static BC_STATUS zbc_program_copyToVar(char *name, bool var) 5663static BC_STATUS zbc_program_copyToVar(char *name, bool var)
@@ -5849,9 +5702,7 @@ static BC_STATUS zbc_program_copyToVar(char *name, bool var)
5849 5702
5850 RETURN_STATUS(s); 5703 RETURN_STATUS(s);
5851} 5704}
5852#if ERRORS_ARE_FATAL 5705#define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__) COMMA_SUCCESS)
5853# define zbc_program_copyToVar(...) (zbc_program_copyToVar(__VA_ARGS__), BC_STATUS_SUCCESS)
5854#endif
5855 5706
5856static BC_STATUS zbc_program_assign(char inst) 5707static BC_STATUS zbc_program_assign(char inst)
5857{ 5708{
@@ -5894,7 +5745,7 @@ static BC_STATUS zbc_program_assign(char inst)
5894 bc_num_copy(l, r); 5745 bc_num_copy(l, r);
5895 else { 5746 else {
5896 s = BC_STATUS_SUCCESS; 5747 s = BC_STATUS_SUCCESS;
5897 ERROR_RETURN(s =) zbc_program_ops[inst - BC_INST_ASSIGN_POWER](l, r, l, G.prog.scale); 5748 IF_ERROR_RETURN_POSSIBLE(s =) zbc_program_ops[inst - BC_INST_ASSIGN_POWER](l, r, l, G.prog.scale);
5898 } 5749 }
5899 if (s) RETURN_STATUS(s); 5750 if (s) RETURN_STATUS(s);
5900#else 5751#else
@@ -5942,9 +5793,7 @@ static BC_STATUS zbc_program_assign(char inst)
5942 5793
5943 RETURN_STATUS(s); 5794 RETURN_STATUS(s);
5944} 5795}
5945#if ERRORS_ARE_FATAL 5796#define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__) COMMA_SUCCESS)
5946# define zbc_program_assign(...) (zbc_program_assign(__VA_ARGS__), BC_STATUS_SUCCESS)
5947#endif
5948 5797
5949#if !ENABLE_DC 5798#if !ENABLE_DC
5950#define bc_program_pushVar(code, bgn, pop, copy) \ 5799#define bc_program_pushVar(code, bgn, pop, copy) \
@@ -5996,11 +5845,7 @@ static BC_STATUS bc_program_pushVar(char *code, size_t *bgn,
5996 5845
5997 RETURN_STATUS(BC_STATUS_SUCCESS); 5846 RETURN_STATUS(BC_STATUS_SUCCESS);
5998} 5847}
5999#if ERRORS_ARE_FATAL 5848#define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__) COMMA_SUCCESS)
6000# define zbc_program_pushVar(...) (bc_program_pushVar(__VA_ARGS__), BC_STATUS_SUCCESS)
6001#else
6002# define zbc_program_pushVar(...) bc_program_pushVar(__VA_ARGS__)
6003#endif
6004 5849
6005static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn, 5850static BC_STATUS zbc_program_pushArray(char *code, size_t *bgn,
6006 char inst) 5851 char inst)
@@ -6038,9 +5883,7 @@ err:
6038 if (s) free(r.d.id.name); 5883 if (s) free(r.d.id.name);
6039 RETURN_STATUS(s); 5884 RETURN_STATUS(s);
6040} 5885}
6041#if ERRORS_ARE_FATAL 5886#define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__) COMMA_SUCCESS)
6042# define zbc_program_pushArray(...) (zbc_program_pushArray(__VA_ARGS__), BC_STATUS_SUCCESS)
6043#endif
6044 5887
6045#if ENABLE_BC 5888#if ENABLE_BC
6046static BC_STATUS zbc_program_incdec(char inst) 5889static BC_STATUS zbc_program_incdec(char inst)
@@ -6075,9 +5918,7 @@ static BC_STATUS zbc_program_incdec(char inst)
6075 5918
6076 RETURN_STATUS(s); 5919 RETURN_STATUS(s);
6077} 5920}
6078#if ERRORS_ARE_FATAL 5921#define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__) COMMA_SUCCESS)
6079# define zbc_program_incdec(...) (zbc_program_incdec(__VA_ARGS__), BC_STATUS_SUCCESS)
6080#endif
6081 5922
6082static BC_STATUS zbc_program_call(char *code, size_t *idx) 5923static BC_STATUS zbc_program_call(char *code, size_t *idx)
6083{ 5924{
@@ -6133,9 +5974,7 @@ static BC_STATUS zbc_program_call(char *code, size_t *idx)
6133 5974
6134 RETURN_STATUS(BC_STATUS_SUCCESS); 5975 RETURN_STATUS(BC_STATUS_SUCCESS);
6135} 5976}
6136#if ERRORS_ARE_FATAL 5977#define zbc_program_call(...) (zbc_program_call(__VA_ARGS__) COMMA_SUCCESS)
6137# define zbc_program_call(...) (zbc_program_call(__VA_ARGS__), BC_STATUS_SUCCESS)
6138#endif
6139 5978
6140static BC_STATUS zbc_program_return(char inst) 5979static BC_STATUS zbc_program_return(char inst)
6141{ 5980{
@@ -6180,9 +6019,7 @@ static BC_STATUS zbc_program_return(char inst)
6180 6019
6181 RETURN_STATUS(BC_STATUS_SUCCESS); 6020 RETURN_STATUS(BC_STATUS_SUCCESS);
6182} 6021}
6183#if ERRORS_ARE_FATAL 6022#define zbc_program_return(...) (zbc_program_return(__VA_ARGS__) COMMA_SUCCESS)
6184# define zbc_program_return(...) (zbc_program_return(__VA_ARGS__), BC_STATUS_SUCCESS)
6185#endif
6186#endif // ENABLE_BC 6023#endif // ENABLE_BC
6187 6024
6188static unsigned long bc_program_scale(BcNum *n) 6025static unsigned long bc_program_scale(BcNum *n)
@@ -6248,9 +6085,7 @@ static BC_STATUS zbc_program_builtin(char inst)
6248 6085
6249 RETURN_STATUS(s); 6086 RETURN_STATUS(s);
6250} 6087}
6251#if ERRORS_ARE_FATAL 6088#define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__) COMMA_SUCCESS)
6252# define zbc_program_builtin(...) (zbc_program_builtin(__VA_ARGS__), BC_STATUS_SUCCESS)
6253#endif
6254 6089
6255#if ENABLE_DC 6090#if ENABLE_DC
6256static BC_STATUS zbc_program_divmod(void) 6091static BC_STATUS zbc_program_divmod(void)
@@ -6279,9 +6114,7 @@ err:
6279 bc_num_free(&res.d.n); 6114 bc_num_free(&res.d.n);
6280 RETURN_STATUS(s); 6115 RETURN_STATUS(s);
6281} 6116}
6282#if ERRORS_ARE_FATAL 6117#define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__) COMMA_SUCCESS)
6283# define zbc_program_divmod(...) (zbc_program_divmod(__VA_ARGS__), BC_STATUS_SUCCESS)
6284#endif
6285 6118
6286static BC_STATUS zbc_program_modexp(void) 6119static BC_STATUS zbc_program_modexp(void)
6287{ 6120{
@@ -6327,9 +6160,7 @@ err:
6327 bc_num_free(&res.d.n); 6160 bc_num_free(&res.d.n);
6328 RETURN_STATUS(s); 6161 RETURN_STATUS(s);
6329} 6162}
6330#if ERRORS_ARE_FATAL 6163#define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__) COMMA_SUCCESS)
6331# define zbc_program_modexp(...) (zbc_program_modexp(__VA_ARGS__), BC_STATUS_SUCCESS)
6332#endif
6333 6164
6334static void bc_program_stackLen(void) 6165static void bc_program_stackLen(void)
6335{ 6166{
@@ -6412,9 +6243,7 @@ num_err:
6412 bc_num_free(&n); 6243 bc_num_free(&n);
6413 RETURN_STATUS(s); 6244 RETURN_STATUS(s);
6414} 6245}
6415#if ERRORS_ARE_FATAL 6246#define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__) COMMA_SUCCESS)
6416# define zbc_program_asciify(...) (zbc_program_asciify(__VA_ARGS__), BC_STATUS_SUCCESS)
6417#endif
6418 6247
6419static BC_STATUS zbc_program_printStream(void) 6248static BC_STATUS zbc_program_printStream(void)
6420{ 6249{
@@ -6441,9 +6270,7 @@ static BC_STATUS zbc_program_printStream(void)
6441 6270
6442 RETURN_STATUS(s); 6271 RETURN_STATUS(s);
6443} 6272}
6444#if ERRORS_ARE_FATAL 6273#define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__) COMMA_SUCCESS)
6445# define zbc_program_printStream(...) (zbc_program_printStream(__VA_ARGS__), BC_STATUS_SUCCESS)
6446#endif
6447 6274
6448static BC_STATUS zbc_program_nquit(void) 6275static BC_STATUS zbc_program_nquit(void)
6449{ 6276{
@@ -6469,9 +6296,7 @@ static BC_STATUS zbc_program_nquit(void)
6469 6296
6470 RETURN_STATUS(s); 6297 RETURN_STATUS(s);
6471} 6298}
6472#if ERRORS_ARE_FATAL 6299#define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__) COMMA_SUCCESS)
6473# define zbc_program_nquit(...) (zbc_program_nquit(__VA_ARGS__), BC_STATUS_SUCCESS)
6474#endif
6475 6300
6476static BC_STATUS zbc_program_execStr(char *code, size_t *bgn, 6301static BC_STATUS zbc_program_execStr(char *code, size_t *bgn,
6477 bool cond) 6302 bool cond)
@@ -6573,9 +6398,7 @@ exit:
6573 bc_vec_pop(&G.prog.results); 6398 bc_vec_pop(&G.prog.results);
6574 RETURN_STATUS(s); 6399 RETURN_STATUS(s);
6575} 6400}
6576#if ERRORS_ARE_FATAL 6401#define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__) COMMA_SUCCESS)
6577# define zbc_program_execStr(...) (zbc_program_execStr(__VA_ARGS__), BC_STATUS_SUCCESS)
6578#endif
6579#endif // ENABLE_DC 6402#endif // ENABLE_DC
6580 6403
6581static void bc_program_pushGlobal(char inst) 6404static void bc_program_pushGlobal(char inst)
@@ -6874,9 +6697,7 @@ static BC_STATUS zbc_program_exec(void)
6874 6697
6875 RETURN_STATUS(BC_STATUS_SUCCESS); 6698 RETURN_STATUS(BC_STATUS_SUCCESS);
6876} 6699}
6877#if ERRORS_ARE_FATAL 6700#define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__) COMMA_SUCCESS)
6878# define zbc_program_exec(...) (zbc_program_exec(__VA_ARGS__), BC_STATUS_SUCCESS)
6879#endif
6880 6701
6881static unsigned bc_vm_envLen(const char *var) 6702static unsigned bc_vm_envLen(const char *var)
6882{ 6703{
@@ -6904,7 +6725,7 @@ static BC_STATUS zbc_vm_process(const char *text)
6904 6725
6905 while (G.prs.l.t.t != BC_LEX_EOF) { 6726 while (G.prs.l.t.t != BC_LEX_EOF) {
6906 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t); 6727 dbg_lex("%s:%d G.prs.l.t.t:%d", __func__, __LINE__, G.prs.l.t.t);
6907 ERROR_RETURN(s =) zcommon_parse(&G.prs); 6728 s = zcommon_parse(&G.prs);
6908 if (s) RETURN_STATUS(s); 6729 if (s) RETURN_STATUS(s);
6909 s = zbc_program_exec(); 6730 s = zbc_program_exec();
6910 if (s) { 6731 if (s) {
@@ -6916,9 +6737,7 @@ static BC_STATUS zbc_vm_process(const char *text)
6916 dbg_lex_done("%s:%d done", __func__, __LINE__); 6737 dbg_lex_done("%s:%d done", __func__, __LINE__);
6917 RETURN_STATUS(s); 6738 RETURN_STATUS(s);
6918} 6739}
6919#if ERRORS_ARE_FATAL 6740#define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__) COMMA_SUCCESS)
6920# define zbc_vm_process(...) (zbc_vm_process(__VA_ARGS__), BC_STATUS_SUCCESS)
6921#endif
6922 6741
6923static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename) 6742static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
6924{ 6743{
@@ -6941,9 +6760,7 @@ static BC_STATUS zbc_vm_execute_FILE(FILE *fp, const char *filename)
6941 G.prog.file = NULL; 6760 G.prog.file = NULL;
6942 RETURN_STATUS(s); 6761 RETURN_STATUS(s);
6943} 6762}
6944#if ERRORS_ARE_FATAL 6763#define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__) COMMA_SUCCESS)
6945# define zbc_vm_execute_FILE(...) (zbc_vm_execute_FILE(__VA_ARGS__), BC_STATUS_SUCCESS)
6946#endif
6947 6764
6948static BC_STATUS zbc_vm_file(const char *file) 6765static BC_STATUS zbc_vm_file(const char *file)
6949{ 6766{
@@ -6956,9 +6773,7 @@ static BC_STATUS zbc_vm_file(const char *file)
6956 6773
6957 RETURN_STATUS(s); 6774 RETURN_STATUS(s);
6958} 6775}
6959#if ERRORS_ARE_FATAL 6776#define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__) COMMA_SUCCESS)
6960# define zbc_vm_file(...) (zbc_vm_file(__VA_ARGS__), BC_STATUS_SUCCESS)
6961#endif
6962 6777
6963#if ENABLE_BC 6778#if ENABLE_BC
6964static void bc_vm_info(void) 6779static void bc_vm_info(void)
@@ -7234,9 +7049,7 @@ static BC_STATUS zbc_vm_exec(void)
7234 7049
7235 RETURN_STATUS(s); 7050 RETURN_STATUS(s);
7236} 7051}
7237#if ERRORS_ARE_FATAL 7052#define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__) COMMA_SUCCESS)
7238# define zbc_vm_exec(...) (zbc_vm_exec(__VA_ARGS__), BC_STATUS_SUCCESS)
7239#endif
7240 7053
7241#if ENABLE_FEATURE_CLEAN_UP 7054#if ENABLE_FEATURE_CLEAN_UP
7242static void bc_program_free(void) 7055static void bc_program_free(void)