| Commit message (Expand) | Author | Age | Files | Lines |
* | * bignum.c (MSB): Removed. | akr | 2013-06-25 | 1 | -1/+1 |
* | * include/ruby/ruby.h: support write barrier protection for T_STRUCT. | ko1 | 2013-06-21 | 1 | -1/+1 |
* | * safe.c (rb_set_safe_level, safe_setter): raise an ArgumentError | shugo | 2013-06-12 | 1 | -2/+2 |
* | * internal.h (INTEGER_PACK_NEGATIVE): Defined. | akr | 2013-06-11 | 1 | -2/+2 |
* | * marshal.c (r_object0): Use rb_integer_unpack. | akr | 2013-06-08 | 1 | -33/+4 |
* | * marshal.c (r_object0): Generalize a round up expression. | akr | 2013-06-04 | 1 | -2/+2 |
* | fill rdocs | nobu | 2013-06-02 | 1 | -0/+2 |
* | * hash.c, include/ruby/ruby.h: support WB protected hash. | ko1 | 2013-05-26 | 1 | -1/+1 |
* | * gc.c: support RGENGC. [ruby-trunk - Feature #8339] | ko1 | 2013-05-13 | 1 | -1/+1 |
* | * include/ruby/ruby.h: constify RBasic::klass and add | ko1 | 2013-05-13 | 1 | -1/+1 |
* | * *.c, parse.y, insns.def: use RARRAY_AREF/ASET macro | ko1 | 2013-05-13 | 1 | -5/+5 |
* | marshal.c: no overwriting ivars | nobu | 2013-05-02 | 1 | -1/+5 |
* | marshal.c: fix marshal_load ivar | nobu | 2013-04-22 | 1 | -12/+33 |
* | marshal.c: use ivars of marshal_dump data | nobu | 2013-04-20 | 1 | -5/+7 |
* | marshal.c: no duplicated encoding | nobu | 2013-04-19 | 1 | -2/+3 |
* | * marshal.c (marshal_dump, marshal_load): workaround for segv on | ngoto | 2013-03-21 | 1 | -2/+2 |
* | marshal.c: check for prepended | nobu | 2013-03-09 | 1 | -2/+7 |
* | marshal.c: prepended objects | nobu | 2013-03-08 | 1 | -13/+33 |
* | * marshal.c: add security considerations to marshal overview, refer to | charliesome | 2013-02-01 | 1 | -4/+17 |
* | marshal.c: prohibit_ivar | nobu | 2013-02-01 | 1 | -0/+10 |
* | marshal.c: warn against using Marshal.load on untrusted data | charliesome | 2013-01-31 | 1 | -0/+5 |
* | marshal.c: marshal_dump instance varialbes | nobu | 2013-01-26 | 1 | -2/+2 |
* | marshal.c: get back to the old behavior | nobu | 2013-01-20 | 1 | -67/+23 |
* | marshal.c: rb_check_funcall_with_hook | nobu | 2012-12-23 | 1 | -18/+62 |
* | marshal.c: use RB_TYPE_P | nobu | 2012-12-23 | 1 | -1/+1 |
* | * marshal.c (marshal_dump, marshal_load): fix SEGV during make rdoc | ngoto | 2012-12-19 | 1 | -2/+2 |
* | * marshal.c (r_entry0): don't taint classes and modules because | shugo | 2012-12-13 | 1 | -1/+2 |
* | marshal.c: PRIsVALUE | nobu | 2012-12-04 | 1 | -4/+2 |
* | marshal.c: rb_check_funcall | nobu | 2012-12-04 | 1 | -13/+9 |
* | marshal.c: GC guard | nobu | 2012-12-04 | 1 | -9/+13 |
* | marshal.c: private methods | nobu | 2012-12-01 | 1 | -12/+15 |
* | * marshal.c: add marshal readahead. marshalized Array, Hash and Struct | glass | 2012-11-20 | 1 | -16/+132 |
* | * marshal.c (w_object): add flonum to arg->data to keep reference index | nagachika | 2012-11-16 | 1 | -0/+1 |
* | * include/ruby/ruby.h: add C APIs. | nari | 2012-10-20 | 1 | -2/+1 |
* | * include/ruby/ruby.h: introduce flonum technique for | ko1 | 2012-08-23 | 1 | -0/+4 |
* | marshal.c: io_needed | nobu | 2012-06-22 | 1 | -5/+11 |
* | compatible loader | nobu | 2012-06-04 | 1 | -11/+30 |
* | adjust indent | nobu | 2012-06-03 | 1 | -18/+18 |
* | remove old warning | nobu | 2012-06-03 | 1 | -12/+2 |
* | * marshal.c: experimental test aborted. | tadf | 2012-06-03 | 1 | -14/+0 |
* | * marshal.c: calls directly rb_{Complex,Rational}_marshal_load(). | tadf | 2012-06-03 | 1 | -0/+14 |
* | use rb_marshal_{dump,load} | nobu | 2012-06-03 | 1 | -2/+2 |
* | now marshal_{load|dump} are external. | tadf | 2012-06-03 | 1 | -2/+2 |
* | use RB_TYPE_P() instead of comparison of TYPE() | nobu | 2012-05-23 | 1 | -2/+2 |
* | * reduce UNREACHABLE. | nobu | 2012-04-15 | 1 | -10/+5 |
* | * encoding.c (rb_enc_codepoint_len): Use UNREACHABLE to avoid "control | drbrain | 2012-04-13 | 1 | -0/+4 |
* | * hash.c, marshal.c, object.c, variable.c: fix callback argument types | nobu | 2012-03-30 | 1 | -1/+5 |
* | * marshal.c (r_symreal): default to ASCII-8BIT for non-ascii symbols, | nobu | 2012-03-28 | 1 | -2/+1 |
* | * marshal.c (r_symreal): no longer need volatile modifier, as using | nobu | 2012-03-28 | 1 | -1/+1 |
* | * use RB_TYPE_P which is optimized for constant types, instead of | nobu | 2011-09-29 | 1 | -9/+9 |