| Commit message (Expand) | Author | Age | Files | Lines |
* | * include/ruby/intern.h: declare rb_hash_tbl. | akr | 2007-08-29 | 1 | -2/+2 |
* | * string.c, include/ruby/intern.h: export rb_str_length(). | ko1 | 2007-08-25 | 1 | -4/+4 |
* | * encoding.c: provide basic features for M17N. | matz | 2007-08-25 | 1 | -1/+1 |
* | * compile.c, insns.def, parse.y: fix massign order. This change | ko1 | 2007-08-23 | 1 | -45/+5 |
* | * insns.def (throw): insert a RUBY_VM_CHECK_INTS(). [ruby-dev:31361] | ko1 | 2007-08-16 | 1 | -0/+1 |
* | * vm_dump.c (debug_print_pre): fix to show control frame count. | ko1 | 2007-08-12 | 1 | -5/+3 |
* | * insnhelper.ci, insns.def: move some statements to functions. | ko1 | 2007-08-06 | 1 | -294/+16 |
* | * insns.def (getspecial): lfp_svar_get() requires int for special | nobu | 2007-07-15 | 1 | -0/+1 |
* | * insns.def (opt_div): FIX2NUM may not work for corner cases. | matz | 2007-07-13 | 1 | -1/+1 |
* | * insns.def (opt_succ): use cast to shut a warning up. | matz | 2007-07-13 | 1 | -1/+1 |
* | * insns.def (opt_succ): use LONG_MAX as maximum Fixnum VALUE. | usa | 2007-07-12 | 1 | -2/+1 |
* | * range.c (range_max): use FIX2LONG instead of FIX2INT to avoid | akr | 2007-07-12 | 1 | -5/+6 |
* | * blockinlining.c: remove "yarv" prefix. | ko1 | 2007-07-12 | 1 | -1/+1 |
* | * insns.def (opt_succ): fixed typo. [ruby-dev:31189] | nobu | 2007-07-12 | 1 | -2/+2 |
* | * vm.c, insnhelper.ci: fix svar interface. | ko1 | 2007-07-10 | 1 | -8/+7 |
* | * insnhelper.ci (vm_yield_setup_args), vm.c, insns.def: | ko1 | 2007-07-07 | 1 | -1/+1 |
* | * insns.def: remove unused code. | ko1 | 2007-07-05 | 1 | -30/+14 |
* | * insns.def: fix to invoke nil.to_splat on NODE_ARGSCAT. | ko1 | 2007-07-05 | 1 | -16/+10 |
* | * yarvcore.h: rename rb_control_frame_t#magic to flag. | ko1 | 2007-07-05 | 1 | -2/+2 |
* | * compile.c (iseq_compile_each): add break catch point. | ko1 | 2007-07-05 | 1 | -14/+78 |
* | * compile.c: rename iseq_translate_direct_threaded_code() | ko1 | 2007-07-02 | 1 | -2/+4 |
* | * insns.def (defineclass): suppress a warning. | nobu | 2007-07-02 | 1 | -20/+20 |
* | * yarvcore.h, compile.c, insnhelper.ci, iseq.c, vm.c: | ko1 | 2007-07-01 | 1 | -1/+1 |
* | * vm.h: rename insn_func_type to rb_insn_func_type. | ko1 | 2007-06-30 | 1 | -11/+11 |
* | * vm_evalbody.ci: support OPT_CALL_THREADED_CODE. | ko1 | 2007-06-27 | 1 | -4/+8 |
* | * compile.c (compile_massign), insns.def (expandarray): support | ko1 | 2007-06-26 | 1 | -46/+51 |
* | * include/ruby/ruby.h: IL32LLP64 support. | usa | 2007-06-26 | 1 | -4/+21 |
* | * cont.c (rb_fiber_s_new): revert initializing VM stack. | ko1 | 2007-06-26 | 1 | -14/+0 |
* | * insnhelper.ci, vm.c: complete block parameter support. | ko1 | 2007-06-25 | 1 | -6/+9 |
* | * gc.h: add RUBY_ prefix to debug macros. | ko1 | 2007-06-25 | 1 | -3/+3 |
* | * insnhelper.ci (caller_setup_args): add need_block_check option. | ko1 | 2007-06-24 | 1 | -4/+4 |
* | * insns.def (invokesuper): fix error message. | ko1 | 2007-06-24 | 1 | -1/+1 |
* | * vm.c: some refactoring. | ko1 | 2007-06-24 | 1 | -27/+27 |
* | * insn_send.ci: removed. | ko1 | 2007-06-24 | 1 | -115/+121 |
* | * vm_macro.def: removed. | ko1 | 2007-06-24 | 1 | -129/+1 |
* | * insns.def, vm.c: add/fix stack overflow check. | ko1 | 2007-06-24 | 1 | -0/+2 |
* | * insnhelper.h: change CHECK_STACK_OVERFLOW() to throw exception. | ko1 | 2007-06-24 | 1 | -23/+4 |
* | * insns.def(setconstant, toregexp): fix to mark object correctly. | ko1 | 2007-06-15 | 1 | -2/+5 |
* | * insns.def (invokeblock): fix of splat argument. | ko1 | 2007-06-06 | 1 | -1/+3 |
* | * insns.def: fixed indentation. | usa | 2007-06-06 | 1 | -1/+1 |
* | * insnhelper.h, insns.def (DEC_SP): shoudn't use unary minus operator | usa | 2007-06-05 | 1 | -2/+2 |
* | * insns.def (invokeblock): check block is created by lambda | ko1 | 2007-06-05 | 1 | -2/+3 |
* | * insnhelper.h (INC_SP): shouldn't cast ``x'' to unsigned type because | usa | 2007-06-01 | 1 | -3/+3 |
* | * compile.c, vm_macro.def: support tail call optimization | ko1 | 2007-05-21 | 1 | -0/+70 |
* | * vm_evalbody.ci, insns.def, vm.c, tool/insns2vm.rb (rb_num_t): | nobu | 2007-05-03 | 1 | -26/+26 |
* | * vm.c, yarvcore.h, yarvcore.c, insns.def: fix to mark VM stack | ko1 | 2007-05-02 | 1 | -1/+1 |
* | * compile.c: use Qtrue instead of 2. | ko1 | 2007-05-02 | 1 | -1/+2 |
* | * yarvcore.h, compile.c (set_arguments): support post arguments. | ko1 | 2007-05-01 | 1 | -3/+5 |
* | * eval.c, node.h, thread.c, yarvcore.[ch], eval_intern.h: | ko1 | 2007-04-19 | 1 | -7/+3 |
* | * insns.def (throw), thread.c, yarvcore.h (throwed_errinfo): fixed | nobu | 2007-04-02 | 1 | -1/+1 |