1. c5774a3 bc: move fflush to the _actual_ execution loop by Denys Vlasenko · 6 years ago
  2. 51b22b1 bc: fix typo: defone -> define by Denys Vlasenko · 6 years ago
  3. 94f72a3 bc: factor out common code by Denys Vlasenko · 6 years ago
  4. 5ebd2a6 bc: remove use of "BcInstPtr ip" object from loop parsing by Denys Vlasenko · 6 years ago
  5. 266aa00 bc: store only index in p->exits, it's the only thing used there by Denys Vlasenko · 6 years ago
  6. 8e7686e bc: p->exits.func is never zero, do not check for that by Denys Vlasenko · 6 years ago
  7. de24e9d bc: remove redundant JUMP generation when parsing 'while' by Denys Vlasenko · 6 years ago
  8. 06ade77 bc: simplify use of "ip" in loop parsing functions by Denys Vlasenko · 6 years ago
  9. 146a79d bc: shring bc_lib[] by Denys Vlasenko · 6 years ago
  10. 1585083 bc: shrink zbc_parse_if() a bit more by Denys Vlasenko · 6 years ago
  11. 6b5b46f bc: stop using p->exits when parsing if() by Denys Vlasenko · 6 years ago
  12. 7415633 bc: preparation to stop using p->exits when parsing if() by Denys Vlasenko · 6 years ago
  13. 5d18f6b bc: fix "print 1,2,3" parsing by Denys Vlasenko · 6 years ago
  14. cb18b54 bc: disallow empty statement as function body by Denys Vlasenko · 6 years ago
  15. 2e8be02 bc: allow only one <newline> between if() and stmt by Denys Vlasenko · 6 years ago
  16. e6c40c4 bc: simplify bc_parse_pushName(), do not free name in it - avoids one strdup by Denys Vlasenko · 6 years ago
  17. 563d93c bc: simplify zbc_parse_break_or_continue(), logic is the same by Denys Vlasenko · 6 years ago
  18. a50576a bc: fold zbc_parse_else() into its only caller by Denys Vlasenko · 6 years ago
  19. 6d29879 bc: fold bc_parse_noElse() into its only caller by Denys Vlasenko · 6 years ago
  20. 9dc5d08 bc: delete unused (write-only) BcParse::nbraces member by Denys Vlasenko · 6 years ago
  21. 202dd19 bc: fixes for multi-line if/while/for by Denys Vlasenko · 6 years ago
  22. e9519e4 bc: fix handling of 'return' not in functions, and 'define f()<newline>{...}' by Denys Vlasenko · 6 years ago
  23. d1d29b4 bc: partially rewrite parser, tests pass, ^C might be broken now by Denys Vlasenko · 6 years ago
  24. 99b3762 bc: lexer debugging, added some failing test cases by Denys Vlasenko · 6 years ago
  25. fd51e0c bc: simplify BC_INST_JUMP[_ZERO] handling by Denys Vlasenko · 6 years ago
  26. 7db3843 bc: rewrite "block flag stack" using simple realloc'ed byte array by Denys Vlasenko · 6 years ago
  27. f10f17f bc: drop zbc_parse_endBody() bool parameter, move its code to caller which uses it by Denys Vlasenko · 6 years ago
  28. 0154d78 bc: shorten one message, make defines more readable by Denys Vlasenko · 6 years ago
  29. 7b1df3d bc: pull zbc_lex_next() call out of zbc_parse_operator() into one caller that uses it by Denys Vlasenko · 6 years ago
  30. 17df882 bx: add more debug scaffolding by Denys Vlasenko · 6 years ago
  31. 2ea53a4 bc: convert macro bc_parse_push() to function, add debug infrastructure by Denys Vlasenko · 6 years ago
  32. f86e960 bc: rename zbc_parse_text() to ..._init(), reuse existing code for library parsing by Denys Vlasenko · 6 years ago
  33. 0a23814 bc: compress two constant arguments of bc_lex_assign() to one by Denys Vlasenko · 6 years ago
  34. 8226912 bc: remove stale comment, empty lines, regularize comment style by Denys Vlasenko · 6 years ago
  35. 87b49be bc: tweak bc_num_parseDecimal() for readability, logic is not changed by Denys Vlasenko · 6 years ago
  36. 240d7ee bc: shrink s() in library again by Denys Vlasenko · 6 years ago
  37. fc9d269 bc: yet another library shrink by Denys Vlasenko · 6 years ago
  38. c06537d bc: shrink internal library yet more by Denys Vlasenko · 6 years ago
  39. 203210e bc: shrink internal library more by Denys Vlasenko · 6 years ago
  40. 3ac0c21 bc: shrink internal library by Denys Vlasenko · 6 years ago
  41. 57b6918 bc: group ENABLE_BC code a bit better, no logic changes by Denys Vlasenko · 6 years ago
  42. 5f263f4 bc: fix "dc only" bug by Denys Vlasenko · 6 years ago
  43. e755e30 bc: unbreak "only bc" and "only dc" configs by Denys Vlasenko · 6 years ago
  44. 89198a9 bc: simplify bc_lex_whitespace() by Denys Vlasenko · 6 years ago
  45. bbcecc4 bc: G.sbgn and G.send are unused, remove them by Denys Vlasenko · 6 years ago
  46. 0fe270e bc: simplify filename saving in zbc_vm_file() by Denys Vlasenko · 6 years ago
  47. 915c72b bc: do not append duplicate NUL, reduce indentation in bc_read_line() by Denys Vlasenko · 6 years ago
  48. 82ea67f bc: change bc_read_line() and zbc_vm_stdin() to avoid double buffers by Denys Vlasenko · 6 years ago
  49. b7e61e3 bc: further simplification in zbc_vm_stdin() by Denys Vlasenko · 6 years ago
  50. 818b602 bc: fix another thinko by Denys Vlasenko · 6 years ago
  51. 335b4ef bc: fix a thinko: dc uses [] string delimiters, bot bc! by Denys Vlasenko · 6 years ago
  52. 766f672 bc: fix comment handling by Denys Vlasenko · 6 years ago
  53. 7dc0a51 bc: further zbc_vm_stdin() optimizations by Denys Vlasenko · 6 years ago
  54. 40534bb bc: shrink zbc_vm_stdin() by Denys Vlasenko · 6 years ago
  55. 89e785a bc: trim config help text, add a few comments, no code changes by Denys Vlasenko · 6 years ago
  56. 9811ad0 bc: unbreak CONFIG_FEATURE_BC_SIGNALS=y config by Denys Vlasenko · 6 years ago
  57. c2265f5 bc: remove lexer function pointer by Denys Vlasenko · 6 years ago
  58. c0ef23c bc: remove parse function pointer by Denys Vlasenko · 6 years ago
  59. 19f1107 bc: convert two more functions to "z" logic by Denys Vlasenko · 6 years ago
  60. 8a89247 bc: remove BC_STATUS_EOF (again), the condition is detectable as len==0 by Denys Vlasenko · 6 years ago
  61. d8078a7 dc: fix EOF handling in case of last line being incomplete by Denys Vlasenko · 6 years ago
  62. d6ad366 bc: further conversions to "z" logic by Denys Vlasenko · 6 years ago
  63. c2da68e bc: optimize bc_parse_pushIndex() by Denys Vlasenko · 6 years ago
  64. 26819db bc: convert even more of lexer functions to "z" convention by Denys Vlasenko · 6 years ago
  65. ae0faf9 bc: convert even more of lexer functions to "z" convention by Denys Vlasenko · 6 years ago
  66. 8cd468f bc: convert more of lexer functions to "z" convention by Denys Vlasenko · 6 years ago
  67. 9a34e89 bc: partially convert lexer functions to "z" convention by Denys Vlasenko · 6 years ago
  68. 251fbb5 bc: code shrink in bc_num_cmp() by Denys Vlasenko · 6 years ago
  69. 16494f5 bc: simplify zbc_program_logical() by Denys Vlasenko · 6 years ago
  70. 69171dc bc: simplify nested read() check by Denys Vlasenko · 6 years ago
  71. 12b9eaf bc: in non-interactive config, POSIX error functions never return nonzero by Denys Vlasenko · 6 years ago
  72. f0f069b bc: use common_parse_init() in bc_vm_init() by Denys Vlasenko · 6 years ago
  73. 4dd3652 bc: fix EOF handling in bc_program_read() by Denys Vlasenko · 6 years ago
  74. 2c6f563 bc: tweak comment by Denys Vlasenko · 6 years ago
  75. c008a73 bc: convert bc_program_asciify to "z" function by Denys Vlasenko · 6 years ago
  76. 9f657e0 bc: shrink bc_program_printString by Denys Vlasenko · 6 years ago
  77. 259137d bc: convert zbc_program_op to "z" function, fix a thinko in prev commits by Denys Vlasenko · 6 years ago
  78. 728e7c9 bc: convert bc_program_logical to "z" function by Denys Vlasenko · 6 years ago
  79. 09d8df8 bc: do not use "(cond ? f1 : f2)(params)" idiom, it messes up static function optimizations by Denys Vlasenko · 6 years ago
  80. 7f4daa4 bc: convert arithmetic calc functions to "z" logic by Denys Vlasenko · 6 years ago
  81. 1aeacef bc: rename arithmetic calc functions to "z" functions, no code changes by Denys Vlasenko · 6 years ago
  82. c2d15df bc: move declarations around, no code changes by Denys Vlasenko · 6 years ago
  83. c355c4a bc: code shrink in zbc_lex_number() by Denys Vlasenko · 6 years ago
  84. b402ff8 bc: make bc_program_pushVar "z-function" by Denys Vlasenko · 6 years ago
  85. 2930123 bc: improve "noninteractive" macro machinery so that even "return zero" code is not generated by Denys Vlasenko · 6 years ago
  86. 91cde95 bc: it's not clear bc_vm_file() always exits on errors, remove ERRORS_ARE_FATAL by Denys Vlasenko · 6 years ago
  87. 628bf1b bc: more ERRORS_ARE_FATAL annotations by Denys Vlasenko · 6 years ago
  88. 88cfea6 bc: stop checking for name length in bc_lex_name() by Denys Vlasenko · 6 years ago
  89. fa35e59 bc: optimize non-interactive config: we know that many functions always succeed by Denys Vlasenko · 6 years ago
  90. 86e63cd bc: in non-interactive config, let compiler know that error funcs do not return by Denys Vlasenko · 6 years ago
  91. dafbc2c bc: simplify bc_num_parseDecimal() further by Denys Vlasenko · 6 years ago
  92. 5ba55f1 bc: make all function pointers FAST_FUNC, on i486 this saves ~400 bytes by Denys Vlasenko · 6 years ago
  93. c665c18 bc: 0xffffffffffffffff may be larger than unsigned long by Denys Vlasenko · 6 years ago
  94. 8b4cf0d bc: optimize bc_vec_concat() by Denys Vlasenko · 6 years ago
  95. a7f1a36 bc: simplify bc_program_len() by Denys Vlasenko · 6 years ago
  96. 44d79d8 bc: simplify bc_program_print() by Denys Vlasenko · 6 years ago
  97. b696d9e bc: simplify bc_num_ulong2num() by Denys Vlasenko · 6 years ago
  98. 9311e01 bc: move str-to-num conversion functions to their only caller, bc_num_parse() by Denys Vlasenko · 6 years ago
  99. 218ed1c bc: further simplify string-to-number conversion code by Denys Vlasenko · 6 years ago
  100. 4a024c7 bc: simplify string-tonumber conversion code by Denys Vlasenko · 6 years ago