Age | Commit message (Expand) | Author |
2023-12-12 | Fix op asgn calls with keywords | Jeremy Evans |
2023-12-09 | Ensure super(**kw, &block) calls kw.to_hash before block.to_proc | Jeremy Evans |
2023-12-09 | Ensure f(**kw, &block) calls kw.to_hash before block.to_proc | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(1, *a, &arg), f(*a, **kw, &arg), and f(*a, k... | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(*a, kw: 1, &lvar) and f(*a, kw: 1, &@iv) | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(*a, kw: 1) | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(*a, **lvar, &lvar) and f(*a, **@iv, &@iv) | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(*a, **lvar) and f(*a, **@iv) | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(1, *a, &lvar) and f(1, *a, &@iv) | Jeremy Evans |
2023-12-07 | Eliminate array allocation for f(1, *a) | Jeremy Evans |
2023-12-02 | Pin instruction storage | Peter Zhu |
2023-12-02 | [Bug #20033] Dynamic regexp should not assign captures | Nobuyoshi Nakada |
2023-11-29 | GC guard catch_table_ary in iseq_set_exception_table | Peter Zhu |
2023-11-26 | Fix portability of bignum in ISeq Binary Format | Nobuyoshi Nakada |
2023-11-21 | Embed ibf_dump objects | Jean Boussier |
2023-11-21 | Get rid of useless dsize functions | Jean Boussier |
2023-11-20 | compile.c: make pinned_list embedable | Jean Boussier |
2023-11-11 | Stabilize outer variable list | Nobuyoshi Nakada |
2023-11-09 | Finer granularity IBF dependendency | Nobuyoshi Nakada |
2023-11-09 | Use `uint32_t` instead of `unsigned int` for the exact size | Nobuyoshi Nakada |
2023-11-07 | [PRISM] CompileEnsureNode | Matt Valentine-House |
2023-11-06 | [PRISM] Implement compilation for MultiWriteNodes, fix MultiTargetNodes | Jemma Issroff |
2023-10-30 | Move constant indexing into rb_translate_prism | Matt Valentine-House |
2023-10-30 | [Prism] Compile ForNode | Matt Valentine-House |
2023-10-30 | Embed `rb_args_info` in `rb_node_args_t` | Nobuyoshi Nakada |
2023-10-25 | [PRISM] ScopeNode doesn't need void * anymore | Jemma Issroff |
2023-10-25 | [PRISM] Move scope_node itself to CRuby, create prism_compile.h | Jemma Issroff |
2023-10-20 | Expand OP_ASGN1 nd_args to nd_index and nd_rvalue | yui-knk |
2023-10-19 | Extract a local variable | Nobuyoshi Nakada |
2023-10-18 | Address PR comments | Jemma Issroff |
2023-10-18 | Remove pm_compile_context_t, move the context onto ScopeNode | Jemma Issroff |
2023-10-18 | YJIT: Add a live ISeq counter | Alan Wu |
2023-10-18 | Remove unnecessary and misleading casts | Nobuyoshi Nakada |
2023-10-11 | Adjust indent [ci skip] | Nobuyoshi Nakada |
2023-10-11 | Extract NODE_FL_NEWLINE access to macro | yui-knk |
2023-10-09 | Fix cast node type | yui-knk |
2023-10-07 | Correctly casting node for accessing nd_value and nd_vid in compile.c | yui-knk |
2023-10-06 | Remove not used fields from MATCH3 | yui-knk |
2023-10-06 | Remove `NODE_VALUES` | Nobuyoshi Nakada |
2023-10-05 | Correctly casting node for accessing COLON node nd_mid in compile.c | yui-knk |
2023-10-02 | Check the result of get_nd_recv before node type check for safety | Yuichiro Kaneko |
2023-10-02 | Correctly casting node for accessing nd_recv, nd_mid and nd_args in compile.c | yui-knk |
2023-10-01 | Use reference counting to avoid memory leak in kwargs | HParker |
2023-10-01 | Use rb_node_args_t and rb_node_args_aux_t instead of NODE | yui-knk |
2023-10-01 | Use rb_node_opt_arg_t and rb_node_kw_arg_t instead of NODE | yui-knk |
2023-09-30 | Expand pattern_info struct into ARYPTN Node and FNDPTN Node | yui-knk |
2023-09-30 | Remove not used fields from argument nodes | yui-knk |
2023-09-29 | Merge RNode_OP_ASGN2 and RNode_OP_ASGN22 | yui-knk |
2023-09-28 | Move CRuby-specific prism files to top level | Kevin Newton |
2023-09-28 | Change RNode structure from union to struct | yui-knk |