| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-07 | fix #1442 | fleuria | |
| in the marking root phase, we only marked the root context, but leaving the current context unmarked. when we execute a fiber, the current context would be changed and trigger this issue. | |||
| 2013-08-02 | End loop if nextc is -1 | Carson McDonald | |
| 2013-08-01 | Merge pull request #1426 from Fleurer/clear-all-old | Yukihiro "Matz" Matsumoto | |
| add comments for clear_all_old() | |||
| 2013-08-01 | revise the comment in mrb_full_gc() | fleuria | |
| the old comment "clean all the black object as old" looks confusing, it looks like "transform black object to old object", but indeed black is old, | |||
| 2013-08-01 | add comment for clear_all_old() | fleuria | |
| 2013-08-01 | remove unused inspect_range | Yukihiro "Matz" Matsumoto | |
| 2013-08-01 | ci->target_class should be updated as well; #1418 | Yukihiro "Matz" Matsumoto | |
| 2013-07-31 | move mrb_gc_arena_restore() after cipop(); a bug found by Kilo Kawai | Yukihiro "Matz" Matsumoto | |
| 2013-07-31 | stop storing target_class info for C defined methods | Yukihiro "Matz" Matsumoto | |
| 2013-07-31 | remove unused mrb_proc_new_with_target() | Yukihiro "Matz" Matsumoto | |
| 2013-07-30 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-07-30 | forget to re-initialize target_class for top-level eval; close #1418 | Yukihiro "Matz" Matsumoto | |
| 2013-07-29 | Merge pull request #1421 from carsonmcdonald/fixfor1419 | Yukihiro "Matz" Matsumoto | |
| Remove pop that was done when not a return val | |||
| 2013-07-28 | Remove pop that was done when not a return val | Carson McDonald | |
| 2013-07-27 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-07-25 | refactor out longjmp() to a function | Yukihiro "Matz" Matsumoto | |
| 2013-07-25 | replace assert with mrb_assert | fleuria | |
| 2013-07-25 | replace gc_assert with mrb_assert | fleuria | |
| 2013-07-24 | remove an unused local variable | Yukihiro "Matz" Matsumoto | |
| 2013-07-24 | revise gc_mark_gray_list() not to cause SEGV on Ubuntu 32bit | Yukihiro "Matz" Matsumoto | |
| 2013-07-24 | restore once removed mrb_garbage_collect() | Yukihiro "Matz" Matsumoto | |
| 2013-07-24 | Merge pull request #1409 from suzukaze/fix-typos-in-variable.c | Yukihiro "Matz" Matsumoto | |
| I fix typos in variable.c. | |||
| 2013-07-24 | Merge pull request #1408 from Fleurer/fix-warning-get-valid-iv-sym | Yukihiro "Matz" Matsumoto | |
| suppress the warnings from get_valid_iv_sym() | |||
| 2013-07-24 | Merge pull request #1407 from Fleurer/gc-introduce-incremental-gc-step | Yukihiro "Matz" Matsumoto | |
| separate out `incremental_gc_step()` from `mrb_incremental_gc()`, and misc minor rename | |||
| 2013-07-24 | I fix typos in variable.c. | Jun Hiroe | |
| 2013-07-24 | suppress the warnings from get_valid_iv_sym() | fleuria | |
| The parameter iv_name SHOULD be string or symbol, but there is no garantee on it. | |||
| 2013-07-24 | fix warning | fleuria | |
| 2013-07-24 | rename variable_gray_list to atomic_gray_list | fleuria | |
| 2013-07-24 | introduce gc_mark_gray_list(), and cleanup redaunt code with it | fleuria | |
| 2013-07-24 | gc: replace comment "a round of GC" to "a GC cycle" | fleuria | |
| 2013-07-24 | rename mrb_garbage_collect() to mrb_full_gc() | fleuria | |
| 2013-07-24 | introduce incremental_gc_step() | fleuria | |
| 2013-07-23 | Merge pull request #1403 from Fleurer/comments-generational-gc | Yukihiro "Matz" Matsumoto | |
| add comments for Generational Mode in gc.c | |||
| 2013-07-23 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-07-23 | String `=~` and `match` to work with pluggable Regexp; close #1398 | Yukihiro "Matz" Matsumoto | |
| 2013-07-23 | gc: add comments for Generational Mode | fleuria | |
| 2013-07-22 | revise the Two White Parts comments in gc.c | fleuria | |
| 2013-07-21 | Merge pull request #1392 from Fleurer/gc-rename-advance-phase | Yukihiro "Matz" Matsumoto | |
| rename advance_phace() to incremental_gc_until(), and cleanup some redundant codes with it. | |||
| 2013-07-22 | change else formatting | Yukihiro "Matz" Matsumoto | |
| 2013-07-21 | Merge branch 'master' into attr-perf-fix | Ryan Scott | |
| 2013-07-21 | Slight cleanup of code | Ryan Scott | |
| 2013-07-19 | cleanup redundant codes with incremental_gc_until() | fleuria | |
| 2013-07-19 | rename advance_phase to incremental_gc_until | fleuria | |
| in fact advance_phace() is not really a "phase", but can be used as an utility function. | |||
| 2013-07-18 | Changed use of MRB_INT_MAX to MRB_INT_MAX-1 | Carson McDonald | |
| 2013-07-18 | First round of trying to improve the performance of attr_reader and ↵ | Ryan Scott | |
| attr_writer. From ~24sec to ~15sec | |||
| 2013-07-15 | Repalace int with mrb_bool because a return value is boolean. | Jun Hiroe | |
| 2013-07-14 | Merge pull request #1380 from suzukaze/refactor-pool.c | Yukihiro "Matz" Matsumoto | |
| Replace 0 with NULL because struct pointer is set NULL in. | |||
| 2013-07-14 | Replace int with mrb_bool because a return value is boolean. | Jun Hiroe | |
| 2013-07-14 | Replace 0 with NULL because struct pointer is set NULL in. | Jun Hiroe | |
| 2013-07-14 | Merge pull request #1379 from suzukaze/refactor-gc.c | Yukihiro "Matz" Matsumoto | |
| Replace 0 with NULL because set NULL in sturct pointer. | |||
