summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2012-08-14NaN boxingYukihiro Matsumoto
2012-08-13setjmp in mrb_funcall_with_block if mrb->jmp is emptyYukihiro Matsumoto
2012-08-13iv table may be emptyYukihiro Matsumoto
2012-08-13use TRUE/FALSE instead of 1/0Yukihiro Matsumoto
2012-08-13Modify exception handling.Masamitsu MURASE
2012-08-12now segmented list can be used as instance variable tables by -DMRB_USE_IV_SE...Yukihiro Matsumoto
2012-08-12add const qualifier to stop warningYukihiro Matsumoto
2012-08-12call mrb_gc_free_gc from mrb_closeYukihiro Matsumoto
2012-08-11add check for instance variable namesYukihiro Matsumoto
2012-08-09Merge pull request #419 from beoran/masterYukihiro "Matz" Matsumoto
2012-08-10optimize assignment just before OP_RETURNYukihiro Matsumoto
2012-08-09Struct.new crashed if no arguments are given. Fixed.Beoran
2012-08-09add GC.disable and GC.enableYukihiro Matsumoto
2012-08-08store :initialize in mrb structureYukihiro Matsumoto
2012-08-07Fixed memory leak when calling stack_extend in m->body.funcYuichiro MASUI
2012-08-05class variable resolution should be same as const resolutionYukihiro Matsumoto
2012-08-05Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-08-05remove OP_MOVE just before OP_RETURNYukihiro Matsumoto
2012-08-04load_exec(): Fix message lenghtes in mrb_exc_new().Masaki Muranaka
2012-08-04super look-up scheme fixed; close #415Yukihiro Matsumoto
2012-08-03define_method to copy block bodyYukihiro Matsumoto
2012-08-03mrb_singleton_class should raise TypeError for immediate objectsYukihiro Matsumoto
2012-08-03mrb_define_method_vm should update target_classYukihiro Matsumoto
2012-08-03Fix a memory leak in mrb_realloc().Masaki Muranaka
2012-08-03update regs after cfunc call [2]Yukihiro Matsumoto
2012-08-03update regs after cfunc callYukihiro Matsumoto
2012-08-02struct.c refactoringYukihiro Matsumoto
2012-08-02use mrb_obj_equal to check poolYukihiro Matsumoto
2012-08-02mrb_get_args("&") gave wrong valueYukihiro Matsumoto
2012-08-02Time.new may not take any argumentYukihiro Matsumoto
2012-08-02small return optimization: use R0 to set return value if possibleYukihiro Matsumoto
2012-08-02wrong return value from empty block/lambdaYukihiro Matsumoto
2012-08-02keep minimal stack space (recv and blk)Yukihiro Matsumoto
2012-08-02stack pos should be adjusted for CFUNC OP_EXECYukihiro Matsumoto
2012-08-02mrb_check_convert_type should always return nil on errorYukihiro Matsumoto
2012-08-02reduce invoking mrb_intern from convert_typeYukihiro Matsumoto
2012-08-02reduce invoking const_missingYukihiro Matsumoto
2012-08-02protect return value from mrb_funcallYukihiro Matsumoto
2012-08-02remove OP_LOADNIL from NODE_OP_ASGNYukihiro Matsumoto
2012-08-02move OP_LOADNIL just before OP_SEND to improve performance on some platformsYukihiro Matsumoto
2012-08-01make mrb_funcall_argv and mrb_funcall_with_block to take mrb_sym as a method ...Yukihiro Matsumoto
2012-08-01restore arena index after funcallYukihiro Matsumoto
2012-08-01no OP_LOADNIL for operators (OP_ADD, etc)Yukihiro Matsumoto
2012-08-01add cast to pacify optimizerYukihiro Matsumoto
2012-08-01some test requires double precisionYukihiro Matsumoto
2012-08-01add Math::TOLERANCEYukihiro Matsumoto
2012-08-01too much peephole optimizationYukihiro Matsumoto
2012-08-01remove stupid debug printYukihiro Matsumoto
2012-08-01float do not have enough precision to round if MRB_USE_FLOAT is setYukihiro Matsumoto
2012-08-01float do not have enough precision to represent Fixnum if MRB_USE_FLOAT is setYukihiro Matsumoto