aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* bc: code shrinkDenys Vlasenko2018-12-181-4/+6
* bc: shrink bc_program_pushVar()Denys Vlasenko2018-12-181-20/+14
* bc: get rid of G.prog.ob, G.prog.strmbDenys Vlasenko2018-12-181-29/+20
* bc: do not show -i in --help, it's a NOP (for now)Denys Vlasenko2018-12-181-1/+1
* bc: style edit, no code changesDenys Vlasenko2018-12-181-179/+57
* bc: shrink bc_program_index()Denys Vlasenko2018-12-181-4/+11
* bc: fix "echo -n '#foo' | bc" not eating last 'o'Denys Vlasenko2018-12-181-3/+7
* bc: shrink zdc_parse_expr()Denys Vlasenko2018-12-181-7/+12
* bc: optimize zbc_lex_string()Denys Vlasenko2018-12-181-7/+12
* bc: shrink zdc_lex_string()Denys Vlasenko2018-12-181-13/+19
* bc: another for() loop simplifiedDenys Vlasenko2018-12-181-3/+9
* bc: simplify another for() loopDenys Vlasenko2018-12-181-6/+6
* bc: rewrite more for() loopsDenys Vlasenko2018-12-181-12/+16
* bc: rewrite another for() loopDenys Vlasenko2018-12-181-3/+7
* bc: replace signed division / 10 by unsignedDenys Vlasenko2018-12-181-61/+32
* bc: rewrite bc_num_compare() to be readableDenys Vlasenko2018-12-181-4/+14
* bc: fold zbc_num_stream() into its single callerDenys Vlasenko2018-12-181-11/+3
* bc: get rid of BcNum BcProgram::ib,hexbDenys Vlasenko2018-12-181-36/+24
* bc: fixes to bugs found while testing 64-bit buildDenys Vlasenko2018-12-181-8/+13
* bc: fixed from 64-bit compileDenys Vlasenko2018-12-181-10/+11
* bc: remove "error after expression parsing" checkDenys Vlasenko2018-12-171-151/+131
* bc: tighten up input NUL handlingDenys Vlasenko2018-12-171-49/+64
* bc: simplify zdc_parse_string()Denys Vlasenko2018-12-171-5/+3
* bc: use common stringsDenys Vlasenko2018-12-171-4/+8
* bc: tidy up "z-function" macro machineryDenys Vlasenko2018-12-171-318/+131
* bc: parse file arguments piecemeal (do not read entire file)Denys Vlasenko2018-12-171-105/+78
* bc: move fflush to the _actual_ execution loopDenys Vlasenko2018-12-171-1/+2
* bc: fix typo: defone -> defineDenys Vlasenko2018-12-171-1/+1
* bc: factor out common codeDenys Vlasenko2018-12-171-57/+51
* bc: remove use of "BcInstPtr ip" object from loop parsingDenys Vlasenko2018-12-161-19/+9
* bc: store only index in p->exits, it's the only thing used thereDenys Vlasenko2018-12-161-8/+5
* bc: p->exits.func is never zero, do not check for thatDenys Vlasenko2018-12-161-19/+7
* bc: remove redundant JUMP generation when parsing 'while'Denys Vlasenko2018-12-161-11/+5
* bc: simplify use of "ip" in loop parsing functionsDenys Vlasenko2018-12-161-6/+2
* bc: shring bc_lib[]Denys Vlasenko2018-12-161-2/+2