summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2014-02-05Fiber.new{break} caused SEGVYukihiro "Matz" Matsumoto
2014-02-04better codedump formatYukihiro "Matz" Matsumoto
2014-02-03add Float#nan?Tomoyuki Sahara
2014-02-01fix NODE_SPLAT codegenh2so5
2014-01-31rework mruby-objectspace and gc.[ch]cremno
- functions should have C linkage (for C++ code) - add prefix to each_object_callback - use more appropriate variable types / initialization - ObjectSpace::count_objects has 1 opt. arg. - prefer mrb_intern_lit to mrb_intern_cstr for str. lit. - mruby/value.h is included by mruby.h - adjust coding style
2014-01-31remove conflictYukihiro "Matz" Matsumoto
2014-01-31Merge pull request #1671 from cremno/extern-cleanupYukihiro "Matz" Matsumoto
clean up external symbols
2014-01-31Merge pull request #1669 from cremno/copyright-2014Yukihiro "Matz" Matsumoto
update copyright year
2014-01-31reindent parse.yh2so5
2014-01-31clean up external symbolscremno
remove unused and unneeded: - sysexit_status - type (a global variable) add mrb_ prefix to: - codedump_all - class_instance_method_list - parser_dump make various functions static, incl.: - yyparse - make_exception
2014-01-30Happy new year! (update copyright year)cremno
Let's not wait until May this time (f0a9b95af3d542ac1db7fcb4a3d77990a284c185)!
2014-01-30etc.c: small cleanup (delete unused functions)cremno
mrb_data_object_alloc: unnecessary cast mrb_lastline_get: mruby doesn't support $_, weird and unused code mrb_exec_recursive: see 4e46abb86914b36e70b5f3ad0826d0b648e9b4ef mrb_block_proc: unused, doesn't really do anything (or needs to be rewritten) mrb_obj_to_sym: actually use id (and MSVC detected unreachable code)
2014-01-31refactor parser lineno adjustment; ref #1667Yukihiro "Matz" Matsumoto
2014-01-30add semicolon after the statementsYukihiro "Matz" Matsumoto
2014-01-30Merge pull request #1667 from h2so5/backtrace-linenoYukihiro "Matz" Matsumoto
more accurate backtrace lineno
2014-01-30Array#[]= is now range awareYukihiro "Matz" Matsumoto
2014-01-30more accurate backtrace linenoh2so5
2014-01-29move range aware aget to array.c from mruby-array-ext gemYukihiro "Matz" Matsumoto
2014-01-25clone Class/Module rightlyh2so5
2014-01-23add callback invocation from OP_DEBUGYukihiro "Matz" Matsumoto
2014-01-21escape non-ascii characters correctly in String#inspecth2so5
2014-01-21describe call stack overwritten problem of mrb_get_backtrace; close #1661Yukihiro "Matz" Matsumoto
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