An error occurred fetching the project authors.
  1. 04 Apr, 2019 1 commit
  2. 24 Mar, 2019 1 commit
  3. 02 Nov, 2018 1 commit
  4. 30 Jul, 2018 1 commit
  5. 20 Dec, 2017 1 commit
  6. 20 Nov, 2017 1 commit
    • Yukihiro "Matz" Matsumoto's avatar
      Add `MRB_METHOD_TABLE_INLINE` option. · 8f2c6240
      Yukihiro "Matz" Matsumoto authored
      Now the method tables (in classes/modules and caches) keeps C function
      pointers without wrapping in `struct RProc` objects. For the sake of
      portability, `mrb_method_t` is represented by the struct and union, but
      if the most significant bit of the pointer is not used by the platform,
      `mrb_method_t` should be packed in `uintptr_t` to reduce memory usage.
      
      `MRB_METHOD_TABLE_INLINE` is turned on by default for linux.
      8f2c6240
  7. 27 Oct, 2017 1 commit
    • Yukihiro "Matz" Matsumoto's avatar
      Heavily refactored how lexical scope links are implemented; fix #3821 · 93f5f225
      Yukihiro "Matz" Matsumoto authored
      Instead of `irep` links, we added a `upper` link to `struct RProc`.
      To make a space for the `upper` link, we moved `target_class` reference.
      If a `Proc` does not have `env`, `target_class` is saved in an `union`
      shared with `env` (if a `Proc` has env, you can tell it by `MRB_PROC_ENV_P()).
      Otherwise `target_class` is referenced from `env->c`. We removed links
      in `env` as well.
      
      This change removes 2 members from `mrb_irep` struct, thus saving 2
      words per method/proc/block. This also fixes potential memory leaks
      due to the circular references caused by a link from `mrb_irep`.
      93f5f225
  8. 27 Sep, 2017 1 commit
  9. 31 Aug, 2017 1 commit
  10. 30 Aug, 2017 1 commit
  11. 01 Aug, 2017 1 commit
  12. 22 Apr, 2017 1 commit
  13. 13 Apr, 2017 1 commit
  14. 03 Apr, 2017 1 commit
  15. 22 Dec, 2016 1 commit
  16. 21 Dec, 2016 1 commit
  17. 02 Dec, 2016 1 commit
  18. 24 Nov, 2016 1 commit
  19. 25 Sep, 2016 1 commit
    • Kouhei Sutou's avatar
      Remove needless MRB_API · 91bd3ebd
      Kouhei Sutou authored
      ref #3215
      
      If a function (such as mrb_read_irep_file()) is declared without MRB_API
      in header file (such as include/mruby/dump.h), implementation of the
      function in source file (such as src/load.c) should also defined without
      MRB_API.
      
      If MRB_API is mismatch, Visual C++ reports link error with C2375 error
      code: https://msdn.microsoft.com/en-us/library/5k6kw95a.aspx
      91bd3ebd
  20. 27 Nov, 2015 1 commit
  21. 29 Jun, 2015 1 commit
    • Kouhei Sutou's avatar
      Fix a crash bug when GC is ran while creating a proc with env · 52db92de
      Kouhei Sutou authored
      mrb_proc_new_cfunc_with_env() allocates RProc with RProc::env as NULL
      then allocates REnv and sets it to RProc::env of the allocated RProc. If
      incremental GC is ran before "allocates REnv and sets it to RProc::env
      of the allocated RProc", the allocated RProc's GC status is
      "marked" (Black) and the allocated REnv's GC status is
      "unmarked" (White). The next incremental GC sweeps the allocated REnv
      without re-marking the allocated RProc. Because the RProc is Black and
      the REnv is White.
      
      We need to implement write barrier for the case.
      
      We can force to cause the above situation by the following patch:
      
          diff --git a/src/proc.c b/src/proc.c
          index f98998f..4f4e25c 100644
          --- a/src/proc.c
          +++ b/src/proc.c
          @@ -92,6 +92,7 @@ mrb_proc_new_cfunc_with_env(mrb_state *mrb, mrb_func_t func, mrb_int argc, const
             struct REnv *e;
             int i;
      
          +  mrb_incremental_gc(mrb);
             p->env = e = env_new(mrb, argc);
             MRB_ENV_UNSHARE_STACK(e);
             e->stack = (mrb_value*)mrb_malloc(mrb, sizeof(mrb_value) * argc);
      
      With this patch, "rake test" causes segmentation fault.
      52db92de
  22. 23 Jun, 2015 1 commit
  23. 22 Jun, 2015 1 commit
    • cremno's avatar
      fix arity of lambdas with optional arguments · f0eaf9ea
      cremno authored
      From the CRuby 2.2.2 Proc#arity documentation:
      
      If the block has optional arguments, returns -n-1, where n is the number
      of mandatory arguments, with the exception for blocks that are not
      lambdas and have only a finite number of optional arguments; in this
      latter case, returns n.
      f0eaf9ea
  24. 22 May, 2015 1 commit
  25. 02 Oct, 2014 2 commits
  26. 02 Sep, 2014 1 commit
  27. 28 Aug, 2014 3 commits
  28. 13 Aug, 2014 1 commit
  29. 03 Aug, 2014 1 commit
  30. 12 Jul, 2014 1 commit
  31. 24 Jun, 2014 1 commit
  32. 15 Jun, 2014 2 commits
  33. 16 May, 2014 1 commit
  34. 14 May, 2014 1 commit
  35. 30 Apr, 2014 1 commit
  36. 29 Apr, 2014 1 commit