summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2014-01-08Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-01-08adjust lineno after continuing script files using mrb_partial_hook; close #1652Yukihiro "Matz" Matsumoto
2014-01-07Merge pull request #1650 from cremno/remove-str_mod_checkYukihiro "Matz" Matsumoto
string.c: remove str_mod_check
2014-01-07string.c: remove str_mod_checkcremno
Clang 3.4 emits '-Wunused-function' - and it's really unused! But according to the description this seems to be a bug: >Warn whenever a static function is declared but not defined or >a non-inline static function is unused. This warning is enabled by -Wall. Source: <http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html>
2014-01-07remove superfluous includescremno
- reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style)
2014-01-08skip "trace:" header if no backtrace line existsYukihiro "Matz" Matsumoto
2014-01-08dump.c: wrong filename table dump for multiple script files; close #1648Yukihiro "Matz" Matsumoto
2014-01-06small refactoring (dedup mrb_vm_cv_set)Yukihiro "Matz" Matsumoto
2014-01-06small cosmetic variable renamingYukihiro "Matz" Matsumoto
2014-01-06adjust proc->target_class according to surrounding proc->target_class; based ↵Yukihiro "Matz" Matsumoto
on a patch from @Fleurer; close #1627
2014-01-05need not to initialize ci->err at toplevelYukihiro "Matz" Matsumoto
2014-01-05avoid decrimenting eidx out of ecall()Yukihiro "Matz" Matsumoto
2014-01-05execute ensure clause correctly without OP_EPOPh2so5
2014-01-04should splat and iterate elements when "*ary" speficied in the case-when ↵Yukihiro "Matz" Matsumoto
clause; close #1627
2014-01-04pop ensure stack before execution; close #1638Yukihiro "Matz" Matsumoto
2014-01-04always clear ci->errYukihiro "Matz" Matsumoto
2014-01-04quicker release of arena after ensure callsYukihiro "Matz" Matsumoto
2014-01-04Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-01-03mrb_ary_splat() to call #to_aYukihiro "Matz" Matsumoto
2014-01-03use macros for assignments to ci->errh2so5
2014-01-02Merge pull request #1634 from cremno/use-mrb_fixnum_pYukihiro "Matz" Matsumoto
tiny word boxing optimization
2014-01-02Merge pull request #1632 from cremno/superfluous-returnYukihiro "Matz" Matsumoto
remove superfluous return in codedump_all
2014-01-02Merge pull request #1637 from h2so5/extended-arena-sizeYukihiro "Matz" Matsumoto
Fix extended arena check in gc_protect
2014-01-02Merge pull request #1636 from cremno/mrb_get_args-z-errmsgYukihiro "Matz" Matsumoto
use the same error msg as mrb_str_to_cstr/CRuby
2014-01-02Fix extended arena check in gc_protecth2so5
2014-01-02use the same error msg as mrb_str_to_cstr/CRubycremno
It's better to have one message for the same error than two different (although similar worded) ones.
2014-01-02remove various preprocessor conditionalscremno
- HAVE_IEEEFP_H is nowhere defined or needed at all - FreeBSD < 4 is unsupported since years - MSVC workaround (around what exactly?)
2014-01-02tiny word boxing optimizationcremno
2014-01-02codegen.c: remove superfluous returncremno
2013-12-27return-value of mrb_run is invalid in top-level-scopecubicdaiya
The return-value of mrb_run in top-level-scope should be the evaluated value at last.
2013-12-26adjust register position for return value; fix #1620Yukihiro "Matz" Matsumoto
2013-12-26revert fix in #1620Yukihiro "Matz" Matsumoto
2013-12-26Merge branch 'singletonfix' of https://github.com/carsonmcdonald/mruby into ↵Yukihiro "Matz" Matsumoto
carsonmcdonald-singletonfix
2013-12-25Fix return when value expectedCarson McDonald
2013-12-25use static symbols for debug filename infoYukihiro "Matz" Matsumoto
2013-12-25wrong operator precedence fixedYukihiro "Matz" Matsumoto
2013-12-25avoid copying when the original string comes with MRB_STR_NOFREEYukihiro "Matz" Matsumoto
2013-12-25clear STR_NOFREE flag on modifyYukihiro "Matz" Matsumoto
2013-12-25Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-12-25zero copy str_new from static allocate irepYukihiro "Matz" Matsumoto
2013-12-25zero copy intern from static allocate irepYukihiro "Matz" Matsumoto
2013-12-25rename mrb_intern_litral -> mrb_intern_staticYukihiro "Matz" Matsumoto
2013-12-24fix #1617h2so5
2013-12-24class/module body to honor whether value is required or not; reduce a few ↵Yukihiro "Matz" Matsumoto
instructions for normal cases
2013-12-24zero copy C literal strings in symbol tableYukihiro "Matz" Matsumoto
2013-12-24remove MRB_IREP_ARRAY_INIT_SIZE which is no longer usedYukihiro "Matz" Matsumoto
2013-12-23Merge pull request #1615 from crimsonwoods/remove_strong_coupling_by_khashYukihiro "Matz" Matsumoto
Remove 'mrb_state' field from 'kh_xxx_t' structure.
2013-12-23Remove 'mrb_state' field from 'kh_xxx_t' structure.crimsonwoods
'kh_xxx_t' requires 'mrb_state' to allocate, free, and compute hash value. But 'mrb_state' should not be held by 'kh_xxx_t' and 'mrb_state' should be supplied from outside.
2013-12-23change behavior of mrb_sym2strh2so5
2013-12-19Merge pull request #1612 from h2so5/node-caseYukihiro "Matz" Matsumoto
fix codegen bug in NODE_CASE