summaryrefslogtreecommitdiff
path: root/compile.c
AgeCommit message (Expand)Author
2023-12-15Introduce --parser runtime flagHParker
2023-12-14Fix op asgn method calls passing mutable keyword splatsJeremy Evans
2023-12-12Fix op asgn calls with keywordsJeremy Evans
2023-12-09Ensure super(**kw, &block) calls kw.to_hash before block.to_procJeremy Evans
2023-12-09Ensure f(**kw, &block) calls kw.to_hash before block.to_procJeremy Evans
2023-12-07Eliminate array allocation for f(1, *a, &arg), f(*a, **kw, &arg), and f(*a, k...Jeremy Evans
2023-12-07Eliminate array allocation for f(*a, kw: 1, &lvar) and f(*a, kw: 1, &@iv)Jeremy Evans
2023-12-07Eliminate array allocation for f(*a, kw: 1)Jeremy Evans
2023-12-07Eliminate array allocation for f(*a, **lvar, &lvar) and f(*a, **@iv, &@iv)Jeremy Evans
2023-12-07Eliminate array allocation for f(*a, **lvar) and f(*a, **@iv)Jeremy Evans
2023-12-07Eliminate array allocation for f(1, *a, &lvar) and f(1, *a, &@iv)Jeremy Evans
2023-12-07Eliminate array allocation for f(1, *a)Jeremy Evans
2023-12-02Pin instruction storagePeter Zhu
2023-12-02[Bug #20033] Dynamic regexp should not assign capturesNobuyoshi Nakada
2023-11-29GC guard catch_table_ary in iseq_set_exception_tablePeter Zhu
2023-11-26Fix portability of bignum in ISeq Binary FormatNobuyoshi Nakada
2023-11-21Embed ibf_dump objectsJean Boussier
2023-11-21Get rid of useless dsize functionsJean Boussier
2023-11-20compile.c: make pinned_list embedableJean Boussier
2023-11-11Stabilize outer variable listNobuyoshi Nakada
2023-11-09Finer granularity IBF dependendencyNobuyoshi Nakada
2023-11-09Use `uint32_t` instead of `unsigned int` for the exact sizeNobuyoshi Nakada
2023-11-07[PRISM] CompileEnsureNodeMatt Valentine-House
2023-11-06[PRISM] Implement compilation for MultiWriteNodes, fix MultiTargetNodesJemma Issroff
2023-10-30Move constant indexing into rb_translate_prismMatt Valentine-House
2023-10-30[Prism] Compile ForNodeMatt Valentine-House
2023-10-30Embed `rb_args_info` in `rb_node_args_t`Nobuyoshi Nakada
2023-10-25[PRISM] ScopeNode doesn't need void * anymoreJemma Issroff
2023-10-25[PRISM] Move scope_node itself to CRuby, create prism_compile.hJemma Issroff
2023-10-20Expand OP_ASGN1 nd_args to nd_index and nd_rvalueyui-knk
2023-10-19Extract a local variableNobuyoshi Nakada
2023-10-18Address PR commentsJemma Issroff
2023-10-18Remove pm_compile_context_t, move the context onto ScopeNodeJemma Issroff
2023-10-18YJIT: Add a live ISeq counter Alan Wu
2023-10-18Remove unnecessary and misleading castsNobuyoshi Nakada
2023-10-11Adjust indent [ci skip]Nobuyoshi Nakada
2023-10-11Extract NODE_FL_NEWLINE access to macroyui-knk
2023-10-09Fix cast node typeyui-knk
2023-10-07Correctly casting node for accessing nd_value and nd_vid in compile.cyui-knk
2023-10-06Remove not used fields from MATCH3yui-knk
2023-10-06Remove `NODE_VALUES`Nobuyoshi Nakada
2023-10-05Correctly casting node for accessing COLON node nd_mid in compile.cyui-knk
2023-10-02Check the result of get_nd_recv before node type check for safetyYuichiro Kaneko
2023-10-02Correctly casting node for accessing nd_recv, nd_mid and nd_args in compile.cyui-knk
2023-10-01Use reference counting to avoid memory leak in kwargsHParker
2023-10-01Use rb_node_args_t and rb_node_args_aux_t instead of NODEyui-knk
2023-10-01Use rb_node_opt_arg_t and rb_node_kw_arg_t instead of NODEyui-knk
2023-09-30Expand pattern_info struct into ARYPTN Node and FNDPTN Nodeyui-knk
2023-09-30Remove not used fields from argument nodesyui-knk
2023-09-29Merge RNode_OP_ASGN2 and RNode_OP_ASGN22yui-knk