aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* bc: rename zbc_parse_string->bc_parse_pushSTR, do not emit next opcode in itDenys Vlasenko2018-12-191-16/+16
* bc: avoid bc_vec_item() calls in bc_vm_run()Denys Vlasenko2018-12-191-7/+11
* bc: avoid bc_vec_item() calls in bc_array_copy()Denys Vlasenko2018-12-191-2/+4
* bc: avoid successive bc_vec_item(&func->autos, i)Denys Vlasenko2018-12-191-8/+9
* bc: remove unnecessary union useDenys Vlasenko2018-12-191-8/+9
* bc: "unsigned_n > 0" is shorter code than "unsigned_n >= 1"Denys Vlasenko2018-12-191-18/+19
* bc: open-code bc_parse_updateFunc() macroDenys Vlasenko2018-12-191-6/+10
* bc: make bc_program_addFunc() return new idx, untangle &p->fidx interactionDenys Vlasenko2018-12-191-47/+43
* bc: "reload stack only after insts" change missed a few placesDenys Vlasenko2018-12-191-2/+2
* bc: rename a few functionsDenys Vlasenko2018-12-191-7/+7
* bc: remove redundant strdup+free in zbc_parse_call()Denys Vlasenko2018-12-191-9/+11
* bc: delete G.prog.strmb for realDenys Vlasenko2018-12-191-21/+15
* bc: in execution loop, reload stack only after insts which can change itDenys Vlasenko2018-12-191-33/+44
* bc: simplify bc_array_expand()Denys Vlasenko2018-12-181-7/+9
* bc: code shrinkDenys Vlasenko2018-12-181-3/+5