aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* bc: BC_RESULT_ONE is bc-specificDenys Vlasenko2018-12-241-84/+84
* bc: partially deinline BC_PARSE_LEAF() macroDenys Vlasenko2018-12-241-17/+27
* bc: rename lexer variables, use smallints where appropriateDenys Vlasenko2018-12-241-157/+155
* bc: fix "bc -s" only warning on "define f()<newline>", not exitingDenys Vlasenko2018-12-241-1/+3
* bc: POSIX error/warn functions can be 'z' functions tooDenys Vlasenko2018-12-241-36/+42
* bc: remove unnecessary NULL initializersDenys Vlasenko2018-12-241-16/+20
* bc: move relational LEXs before math LEXs - shorten dc_LEX_to_INST[]Denys Vlasenko2018-12-241-42/+39
* bc: offset dc_LEX_to_INST[] startDenys Vlasenko2018-12-241-37/+42
* bc: rename BC_LEX_NLINE/WHITESPACE/STR/NAME/NUMBER to XC_LEX_Denys Vlasenko2018-12-241-45/+45
* bc: separate many bc and dc LEX constantsDenys Vlasenko2018-12-241-49/+69
* bc: rename several BC_LEX_OPs to XC_LEX_OPs.Denys Vlasenko2018-12-241-71/+72
* bc: move BC_LEX_OP_INC/DEC to the end of operation LEX constantsDenys Vlasenko2018-12-241-93/+95
* bc: rename BC_LEXs to XC_LEXs for common constants, and to DC_LEXs for dc-spe...Denys Vlasenko2018-12-241-84/+84
* bc: move functions/macros around, no code changesDenys Vlasenko2018-12-241-384/+392
* bc: rename common INST constants to XC_, dc-specific ones to DC_Denys Vlasenko2018-12-241-243/+242
* dc: without -x, do not parse extended regs: 's p' means: store to ' ' reg, printDenys Vlasenko2018-12-241-11/+10
* bc: fix incorrect bit in BC_PARSE_EXPRS_BITS: 'limits' is not allowedDenys Vlasenko2018-12-241-45/+45
* bc: for "dc only" remove handling of LAST, move OBASE enums up to IBASEDenys Vlasenko2018-12-241-75/+82
* bc: fix empty lines in dc generating "bad token" messageDenys Vlasenko2018-12-231-8/+10
* bc: shrink modular exponentiation codeDenys Vlasenko2018-12-221-3/+5
* bc: do not yet allow 2^2.1Denys Vlasenko2018-12-221-3/+5
* bc: avoid having to twiddle b->neg in zbc_num_p()Denys Vlasenko2018-12-221-7/+11
* bc: do not disallow powers to N.0000 degree - it's even shorter codeDenys Vlasenko2018-12-221-3/+4
* bc: shrink zbc_num_ulong()Denys Vlasenko2018-12-221-10/+11
* bc: make long-running dc drop data it does not need (when it can)Denys Vlasenko2018-12-221-15/+34
* bc: unbreak "z function" macro machineryDenys Vlasenko2018-12-221-0/+6
* dc: unbreak interactive mode - was trying to get next tokens instead of execu...Denys Vlasenko2018-12-221-30/+66
* bc: move zbc_lex_next() out of zdc_parse_string() and zdc_parse_mem()Denys Vlasenko2018-12-221-13/+10
* bc: shorten sanity-check codeDenys Vlasenko2018-12-221-3/+3
* bc: fold single-callsite functions into callers, commonalize codeDenys Vlasenko2018-12-221-65/+33
* bc: zcommon_parse_expr() has only one user, fold it inDenys Vlasenko2018-12-221-12/+9
* bc: zcommon_parse_expr() lost its flags argumentDenys Vlasenko2018-12-221-11/+5
* bc: stop using BC_PARSE_NOCALL in dc codeDenys Vlasenko2018-12-221-18/+18
* bc: unbreak read(), remove checks for nested read()Denys Vlasenko2018-12-221-38/+26
* bc: code shrinkDenys Vlasenko2018-12-211-11/+20
* bc: rename BcInstPtr::idx and ::lenDenys Vlasenko2018-12-211-29/+28
* bc: remove unnecessary initializationsDenys Vlasenko2018-12-211-5/+1
* bc: use non-allocated BcNum's where appropriateDenys Vlasenko2018-12-211-15/+18
* bc: optimize bc_vec_push() usageDenys Vlasenko2018-12-211-32/+26
* bc: fix for() to not leave data on stackDenys Vlasenko2018-12-211-25/+23
* bc: fix infinite state growth for "yes 1 | bc" caseDenys Vlasenko2018-12-211-28/+109
* bc: fix commentDenys Vlasenko2018-12-211-1/+1
* bc: for(;;) fix from upstreamDenys Vlasenko2018-12-211-1/+7
* bc: shrink bc_program_add_fn()Denys Vlasenko2018-12-211-7/+8
* bc: "dc only" config does not need G.prog.fn_mapDenys Vlasenko2018-12-201-36/+56
* bc: fix keyword matching to not think "ifz" is the "if" keywordDenys Vlasenko2018-12-201-0/+2
* bc: shrink "dc only" code by dropping unused structure membersDenys Vlasenko2018-12-201-41/+46
* bc: shorten bc_program_addFunc()Denys Vlasenko2018-12-191-6/+4
* bc: fix "dc only" and "bc only" configsDenys Vlasenko2018-12-191-44/+48
* bc: rename dc-specific functions, simplify zdc_program_execStr() a bitDenys Vlasenko2018-12-191-48/+47