kumi 0.0.18 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -1
- data/.ruby-version +1 -0
- data/CHANGELOG.md +27 -0
- data/CLAUDE.md +26 -139
- data/README.md +143 -372
- data/data/functions/agg/boolean.yaml +14 -0
- data/data/functions/agg/numeric.yaml +80 -0
- data/data/functions/agg/string.yaml +8 -0
- data/data/functions/core/arithmetic.yaml +50 -0
- data/data/functions/core/boolean.yaml +18 -0
- data/data/functions/core/comparison.yaml +42 -0
- data/data/functions/core/constructor.yaml +32 -0
- data/data/functions/core/select.yaml +7 -0
- data/data/functions/core/stencil.yaml +21 -0
- data/data/functions/core/string.yaml +19 -0
- data/data/kernels/javascript/agg/boolean.yaml +12 -0
- data/data/kernels/javascript/agg/numeric.yaml +27 -0
- data/data/kernels/javascript/agg/string.yaml +5 -0
- data/data/kernels/javascript/core/arithmetic.yaml +32 -0
- data/data/kernels/javascript/core/boolean.yaml +12 -0
- data/data/kernels/javascript/core/comparison.yaml +24 -0
- data/data/kernels/javascript/core/constructor.yaml +15 -0
- data/data/kernels/javascript/core/select.yaml +7 -0
- data/data/kernels/javascript/core/string.yaml +12 -0
- data/data/kernels/ruby/agg/boolean.yaml +18 -0
- data/data/kernels/ruby/agg/numeric.yaml +29 -0
- data/data/kernels/ruby/agg/string.yaml +5 -0
- data/data/kernels/ruby/core/arithmetic.yaml +38 -0
- data/data/kernels/ruby/core/boolean.yaml +15 -0
- data/data/kernels/ruby/core/comparison.yaml +30 -0
- data/data/kernels/ruby/core/constructor.yaml +17 -0
- data/data/kernels/ruby/core/select.yaml +4 -0
- data/data/kernels/ruby/core/string.yaml +15 -0
- data/debug_ordering.rb +52 -0
- data/docs/FORM_SCHEMA.md +85 -0
- data/docs/OUTPUT_SCHEMA.md +69 -0
- data/docs/SYNTAX.md +626 -373
- data/golden/array_element/expected/ast.txt +21 -0
- data/golden/array_element/expected/input_plan.txt +5 -0
- data/golden/array_element/expected/lir_00_unoptimized.txt +13 -0
- data/golden/array_element/expected/lir_01_hoist_scalar_references.txt +13 -0
- data/golden/array_element/expected/lir_02_inlined.txt +13 -0
- data/golden/array_element/expected/lir_03_cse.txt +13 -0
- data/golden/array_element/expected/lir_04_1_loop_fusion.txt +13 -0
- data/golden/array_element/expected/lir_04_loop_invcm.txt +13 -0
- data/golden/array_element/expected/lir_06_const_prop.txt +13 -0
- data/golden/array_element/expected/nast.txt +7 -0
- data/golden/array_element/expected/schema_javascript.mjs +13 -0
- data/golden/array_element/expected/schema_ruby.rb +41 -0
- data/golden/array_element/expected/snast.txt +7 -0
- data/golden/array_element/expected.json +5 -0
- data/golden/array_element/input.json +9 -0
- data/golden/array_element/schema.kumi +11 -0
- data/golden/array_index/expected/ast.txt +59 -0
- data/golden/array_index/expected/input_plan.txt +5 -0
- data/golden/array_index/expected/lir_00_unoptimized.txt +41 -0
- data/golden/array_index/expected/lir_01_hoist_scalar_references.txt +41 -0
- data/golden/array_index/expected/lir_02_inlined.txt +42 -0
- data/golden/array_index/expected/lir_03_cse.txt +40 -0
- data/golden/array_index/expected/lir_04_1_loop_fusion.txt +40 -0
- data/golden/array_index/expected/lir_04_loop_invcm.txt +40 -0
- data/golden/array_index/expected/lir_06_const_prop.txt +40 -0
- data/golden/array_index/expected/nast.txt +33 -0
- data/golden/array_index/expected/schema_javascript.mjs +46 -0
- data/golden/array_index/expected/schema_ruby.rb +75 -0
- data/golden/array_index/expected/snast.txt +33 -0
- data/golden/array_index/expected.json +5 -0
- data/golden/array_index/input.json +1 -0
- data/golden/array_index/schema.kumi +19 -0
- data/golden/array_operations/expected/ast.txt +50 -0
- data/golden/array_operations/expected/input_plan.txt +10 -0
- data/golden/array_operations/expected/lir_00_unoptimized.txt +47 -0
- data/golden/array_operations/expected/lir_01_hoist_scalar_references.txt +47 -0
- data/golden/array_operations/expected/lir_02_inlined.txt +47 -0
- data/golden/array_operations/expected/lir_03_cse.txt +47 -0
- data/golden/array_operations/expected/lir_04_1_loop_fusion.txt +47 -0
- data/golden/array_operations/expected/lir_04_loop_invcm.txt +47 -0
- data/golden/array_operations/expected/lir_06_const_prop.txt +47 -0
- data/golden/array_operations/expected/nast.txt +32 -0
- data/golden/array_operations/expected/schema_javascript.mjs +60 -0
- data/golden/array_operations/expected/schema_ruby.rb +91 -0
- data/golden/array_operations/expected/snast.txt +32 -0
- data/golden/array_operations/expected.json +27 -0
- data/golden/array_operations/input.json +8 -0
- data/golden/array_operations/schema.kumi +12 -10
- data/golden/cascade_logic/expected/ast.txt +37 -0
- data/golden/cascade_logic/expected/input_plan.txt +2 -0
- data/golden/cascade_logic/expected/lir_00_unoptimized.txt +29 -0
- data/golden/cascade_logic/expected/lir_01_hoist_scalar_references.txt +29 -0
- data/golden/cascade_logic/expected/lir_02_inlined.txt +37 -0
- data/golden/cascade_logic/expected/lir_03_cse.txt +30 -0
- data/golden/cascade_logic/expected/lir_04_1_loop_fusion.txt +30 -0
- data/golden/cascade_logic/expected/lir_04_loop_invcm.txt +30 -0
- data/golden/cascade_logic/expected/lir_06_const_prop.txt +30 -0
- data/golden/cascade_logic/expected/nast.txt +32 -0
- data/golden/cascade_logic/expected/schema_javascript.mjs +31 -0
- data/golden/cascade_logic/expected/schema_ruby.rb +57 -0
- data/golden/cascade_logic/expected/snast.txt +32 -0
- data/golden/cascade_logic/expected.json +5 -0
- data/golden/cascade_logic/input.json +4 -0
- data/golden/cascade_logic/schema.kumi +1 -3
- data/golden/chained_fusion/expected/ast.txt +57 -0
- data/golden/chained_fusion/expected/input_plan.txt +13 -0
- data/golden/chained_fusion/expected/lir_00_unoptimized.txt +76 -0
- data/golden/chained_fusion/expected/lir_01_hoist_scalar_references.txt +76 -0
- data/golden/chained_fusion/expected/lir_02_inlined.txt +114 -0
- data/golden/chained_fusion/expected/lir_03_cse.txt +97 -0
- data/golden/chained_fusion/expected/lir_04_1_loop_fusion.txt +99 -0
- data/golden/chained_fusion/expected/lir_04_loop_invcm.txt +97 -0
- data/golden/chained_fusion/expected/lir_06_const_prop.txt +97 -0
- data/golden/chained_fusion/expected/nast.txt +55 -0
- data/golden/chained_fusion/expected/schema_javascript.mjs +116 -0
- data/golden/chained_fusion/expected/schema_ruby.rb +149 -0
- data/golden/chained_fusion/expected/snast.txt +55 -0
- data/golden/chained_fusion/expected.json +45 -0
- data/golden/chained_fusion/input.json +51 -0
- data/golden/chained_fusion/schema.kumi +52 -0
- data/golden/element_arrays/expected/ast.txt +55 -0
- data/golden/element_arrays/expected/input_plan.txt +7 -0
- data/golden/element_arrays/expected/lir_00_unoptimized.txt +81 -0
- data/golden/element_arrays/expected/lir_01_hoist_scalar_references.txt +81 -0
- data/golden/element_arrays/expected/lir_02_inlined.txt +85 -0
- data/golden/element_arrays/expected/lir_03_cse.txt +83 -0
- data/golden/element_arrays/expected/lir_04_1_loop_fusion.txt +83 -0
- data/golden/element_arrays/expected/lir_04_loop_invcm.txt +83 -0
- data/golden/element_arrays/expected/lir_06_const_prop.txt +83 -0
- data/golden/element_arrays/expected/nast.txt +42 -0
- data/golden/element_arrays/expected/schema_javascript.mjs +106 -0
- data/golden/element_arrays/expected/schema_ruby.rb +141 -0
- data/golden/element_arrays/expected/snast.txt +42 -0
- data/golden/element_arrays/expected.json +55 -0
- data/golden/element_arrays/input.json +12 -0
- data/golden/element_arrays/schema.kumi +21 -0
- data/golden/empty_and_null_inputs/expected/ast.txt +42 -0
- data/golden/empty_and_null_inputs/expected/input_plan.txt +12 -0
- data/golden/empty_and_null_inputs/expected/lir_00_unoptimized.txt +31 -0
- data/golden/empty_and_null_inputs/expected/lir_01_hoist_scalar_references.txt +31 -0
- data/golden/empty_and_null_inputs/expected/lir_02_inlined.txt +51 -0
- data/golden/empty_and_null_inputs/expected/lir_03_cse.txt +49 -0
- data/golden/empty_and_null_inputs/expected/lir_04_1_loop_fusion.txt +49 -0
- data/golden/empty_and_null_inputs/expected/lir_04_loop_invcm.txt +49 -0
- data/golden/empty_and_null_inputs/expected/lir_06_const_prop.txt +49 -0
- data/golden/empty_and_null_inputs/expected/nast.txt +18 -0
- data/golden/empty_and_null_inputs/expected/schema_javascript.mjs +47 -0
- data/golden/empty_and_null_inputs/expected/schema_ruby.rb +79 -0
- data/golden/empty_and_null_inputs/expected/snast.txt +18 -0
- data/golden/empty_and_null_inputs/expected.json +8 -0
- data/golden/empty_and_null_inputs/input.json +16 -0
- data/golden/empty_and_null_inputs/schema.kumi +30 -0
- data/golden/game_of_life/expected/ast.txt +118 -0
- data/golden/game_of_life/expected/input_plan.txt +5 -0
- data/golden/game_of_life/expected/lir_00_unoptimized.txt +343 -0
- data/golden/game_of_life/expected/lir_01_hoist_scalar_references.txt +343 -0
- data/golden/game_of_life/expected/lir_02_inlined.txt +1918 -0
- data/golden/game_of_life/expected/lir_03_cse.txt +766 -0
- data/golden/game_of_life/expected/lir_04_1_loop_fusion.txt +766 -0
- data/golden/game_of_life/expected/lir_04_loop_invcm.txt +766 -0
- data/golden/game_of_life/expected/lir_06_const_prop.txt +766 -0
- data/golden/game_of_life/expected/nast.txt +104 -0
- data/golden/game_of_life/expected/schema_javascript.mjs +98 -0
- data/golden/game_of_life/expected/schema_ruby.rb +125 -0
- data/golden/game_of_life/expected/snast.txt +104 -0
- data/golden/game_of_life/expected.json +3 -0
- data/golden/game_of_life/input.json +8 -0
- data/golden/game_of_life/schema.kumi +33 -0
- data/golden/hash_keys/expected/ast.txt +29 -0
- data/golden/hash_keys/expected/input_plan.txt +2 -0
- data/golden/hash_keys/expected/lir_00_unoptimized.txt +18 -0
- data/golden/hash_keys/expected/lir_01_hoist_scalar_references.txt +18 -0
- data/golden/hash_keys/expected/lir_02_inlined.txt +18 -0
- data/golden/hash_keys/expected/lir_03_cse.txt +18 -0
- data/golden/hash_keys/expected/lir_04_1_loop_fusion.txt +18 -0
- data/golden/hash_keys/expected/lir_04_loop_invcm.txt +18 -0
- data/golden/hash_keys/expected/lir_06_const_prop.txt +18 -0
- data/golden/hash_keys/expected/nast.txt +46 -0
- data/golden/hash_keys/expected/schema_javascript.mjs +34 -0
- data/golden/hash_keys/expected/schema_ruby.rb +61 -0
- data/golden/hash_keys/expected/snast.txt +46 -0
- data/golden/hash_keys/expected.json +20 -0
- data/golden/hash_keys/input.json +4 -0
- data/golden/hash_keys/schema.kumi +14 -0
- data/golden/hash_value/expected/ast.txt +37 -0
- data/golden/hash_value/expected/input_plan.txt +7 -0
- data/golden/hash_value/expected/lir_00_unoptimized.txt +30 -0
- data/golden/hash_value/expected/lir_01_hoist_scalar_references.txt +30 -0
- data/golden/hash_value/expected/lir_02_inlined.txt +36 -0
- data/golden/hash_value/expected/lir_03_cse.txt +33 -0
- data/golden/hash_value/expected/lir_04_1_loop_fusion.txt +33 -0
- data/golden/hash_value/expected/lir_04_loop_invcm.txt +33 -0
- data/golden/hash_value/expected/lir_06_const_prop.txt +33 -0
- data/golden/hash_value/expected/nast.txt +25 -0
- data/golden/hash_value/expected/schema_javascript.mjs +46 -0
- data/golden/hash_value/expected/schema_ruby.rb +75 -0
- data/golden/hash_value/expected/snast.txt +25 -0
- data/golden/hash_value/expected.json +19 -0
- data/golden/hash_value/input.json +12 -0
- data/golden/hash_value/schema.kumi +19 -0
- data/golden/hierarchical_complex/expected/ast.txt +85 -0
- data/golden/hierarchical_complex/expected/input_plan.txt +23 -0
- data/golden/hierarchical_complex/expected/lir_00_unoptimized.txt +87 -0
- data/golden/hierarchical_complex/expected/lir_01_hoist_scalar_references.txt +87 -0
- data/golden/hierarchical_complex/expected/lir_02_inlined.txt +115 -0
- data/golden/hierarchical_complex/expected/lir_03_cse.txt +89 -0
- data/golden/hierarchical_complex/expected/lir_04_1_loop_fusion.txt +89 -0
- data/golden/hierarchical_complex/expected/lir_04_loop_invcm.txt +89 -0
- data/golden/hierarchical_complex/expected/lir_06_const_prop.txt +89 -0
- data/golden/hierarchical_complex/expected/nast.txt +49 -0
- data/golden/hierarchical_complex/expected/schema_javascript.mjs +121 -0
- data/golden/hierarchical_complex/expected/schema_ruby.rb +151 -0
- data/golden/hierarchical_complex/expected/snast.txt +49 -0
- data/golden/hierarchical_complex/expected.json +34 -0
- data/golden/hierarchical_complex/input.json +26 -0
- data/golden/hierarchical_complex/schema.kumi +38 -0
- data/golden/input_reference/expected/ast.txt +46 -0
- data/golden/input_reference/expected/input_plan.txt +15 -0
- data/golden/input_reference/expected/lir_00_unoptimized.txt +39 -0
- data/golden/input_reference/expected/lir_01_hoist_scalar_references.txt +39 -0
- data/golden/input_reference/expected/lir_02_inlined.txt +39 -0
- data/golden/input_reference/expected/lir_03_cse.txt +39 -0
- data/golden/input_reference/expected/lir_04_1_loop_fusion.txt +39 -0
- data/golden/input_reference/expected/lir_04_loop_invcm.txt +39 -0
- data/golden/input_reference/expected/lir_06_const_prop.txt +39 -0
- data/golden/input_reference/expected/nast.txt +21 -0
- data/golden/input_reference/expected/schema_javascript.mjs +45 -0
- data/golden/input_reference/expected/schema_ruby.rb +74 -0
- data/golden/input_reference/expected/snast.txt +21 -0
- data/golden/input_reference/expected.json +7 -0
- data/golden/input_reference/input.json +11 -0
- data/golden/input_reference/schema.kumi +22 -0
- data/golden/interleaved_fusion/expected/ast.txt +51 -0
- data/golden/interleaved_fusion/expected/input_plan.txt +13 -0
- data/golden/interleaved_fusion/expected/lir_00_unoptimized.txt +53 -0
- data/golden/interleaved_fusion/expected/lir_01_hoist_scalar_references.txt +53 -0
- data/golden/interleaved_fusion/expected/lir_02_inlined.txt +89 -0
- data/golden/interleaved_fusion/expected/lir_03_cse.txt +77 -0
- data/golden/interleaved_fusion/expected/lir_04_1_loop_fusion.txt +77 -0
- data/golden/interleaved_fusion/expected/lir_04_loop_invcm.txt +77 -0
- data/golden/interleaved_fusion/expected/lir_06_const_prop.txt +77 -0
- data/golden/interleaved_fusion/expected/nast.txt +41 -0
- data/golden/interleaved_fusion/expected/schema_javascript.mjs +86 -0
- data/golden/interleaved_fusion/expected/schema_ruby.rb +122 -0
- data/golden/interleaved_fusion/expected/snast.txt +41 -0
- data/golden/interleaved_fusion/expected.json +37 -0
- data/golden/interleaved_fusion/input.json +26 -0
- data/golden/interleaved_fusion/schema.kumi +57 -0
- data/golden/let_inline/expected/ast.txt +33 -0
- data/golden/let_inline/expected/input_plan.txt +2 -0
- data/golden/let_inline/expected/lir_00_unoptimized.txt +26 -0
- data/golden/let_inline/expected/lir_01_hoist_scalar_references.txt +26 -0
- data/golden/let_inline/expected/lir_02_inlined.txt +36 -0
- data/golden/let_inline/expected/lir_03_cse.txt +30 -0
- data/golden/let_inline/expected/lir_04_1_loop_fusion.txt +30 -0
- data/golden/let_inline/expected/lir_04_loop_invcm.txt +30 -0
- data/golden/let_inline/expected/lir_06_const_prop.txt +30 -0
- data/golden/let_inline/expected/nast.txt +26 -0
- data/golden/let_inline/expected/schema_javascript.mjs +11 -0
- data/golden/let_inline/expected/schema_ruby.rb +37 -0
- data/golden/let_inline/expected/snast.txt +26 -0
- data/golden/let_inline/expected.json +1 -0
- data/golden/let_inline/input.json +1 -0
- data/golden/let_inline/schema.kumi +11 -0
- data/golden/loop_fusion/expected/ast.txt +44 -0
- data/golden/loop_fusion/expected/input_plan.txt +13 -0
- data/golden/loop_fusion/expected/lir_00_unoptimized.txt +43 -0
- data/golden/loop_fusion/expected/lir_01_hoist_scalar_references.txt +43 -0
- data/golden/loop_fusion/expected/lir_02_inlined.txt +62 -0
- data/golden/loop_fusion/expected/lir_03_cse.txt +57 -0
- data/golden/loop_fusion/expected/lir_04_1_loop_fusion.txt +57 -0
- data/golden/loop_fusion/expected/lir_04_loop_invcm.txt +57 -0
- data/golden/loop_fusion/expected/lir_06_const_prop.txt +57 -0
- data/golden/loop_fusion/expected/nast.txt +32 -0
- data/golden/loop_fusion/expected/schema_javascript.mjs +64 -0
- data/golden/loop_fusion/expected/schema_ruby.rb +97 -0
- data/golden/loop_fusion/expected/snast.txt +32 -0
- data/golden/loop_fusion/expected.json +30 -0
- data/golden/loop_fusion/input.json +28 -0
- data/golden/loop_fusion/schema.kumi +32 -0
- data/golden/min_reduce_scope/expected/ast.txt +49 -0
- data/golden/min_reduce_scope/expected/input_plan.txt +9 -0
- data/golden/min_reduce_scope/expected/lir_00_unoptimized.txt +59 -0
- data/golden/min_reduce_scope/expected/lir_01_hoist_scalar_references.txt +59 -0
- data/golden/min_reduce_scope/expected/lir_02_inlined.txt +63 -0
- data/golden/min_reduce_scope/expected/lir_03_cse.txt +60 -0
- data/golden/min_reduce_scope/expected/lir_04_1_loop_fusion.txt +60 -0
- data/golden/min_reduce_scope/expected/lir_04_loop_invcm.txt +60 -0
- data/golden/min_reduce_scope/expected/lir_06_const_prop.txt +60 -0
- data/golden/min_reduce_scope/expected/nast.txt +29 -0
- data/golden/min_reduce_scope/expected/schema_javascript.mjs +66 -0
- data/golden/min_reduce_scope/expected/schema_ruby.rb +99 -0
- data/golden/min_reduce_scope/expected/snast.txt +29 -0
- data/golden/min_reduce_scope/expected.json +9 -0
- data/golden/min_reduce_scope/input.json +18 -0
- data/golden/min_reduce_scope/schema.kumi +25 -0
- data/golden/mixed_dimensions/expected/ast.txt +54 -0
- data/golden/mixed_dimensions/expected/input_plan.txt +15 -0
- data/golden/mixed_dimensions/expected/lir_00_unoptimized.txt +42 -0
- data/golden/mixed_dimensions/expected/lir_01_hoist_scalar_references.txt +42 -0
- data/golden/mixed_dimensions/expected/lir_02_inlined.txt +48 -0
- data/golden/mixed_dimensions/expected/lir_03_cse.txt +48 -0
- data/golden/mixed_dimensions/expected/lir_04_1_loop_fusion.txt +48 -0
- data/golden/mixed_dimensions/expected/lir_04_loop_invcm.txt +48 -0
- data/golden/mixed_dimensions/expected/lir_06_const_prop.txt +48 -0
- data/golden/mixed_dimensions/expected/nast.txt +22 -0
- data/golden/mixed_dimensions/expected/schema_javascript.mjs +53 -0
- data/golden/mixed_dimensions/expected/schema_ruby.rb +84 -0
- data/golden/mixed_dimensions/expected/snast.txt +22 -0
- data/golden/mixed_dimensions/expected.json +6 -0
- data/golden/mixed_dimensions/input.json +22 -0
- data/golden/mixed_dimensions/schema.kumi +35 -0
- data/golden/multirank_hoisting/expected/ast.txt +72 -0
- data/golden/multirank_hoisting/expected/input_plan.txt +18 -0
- data/golden/multirank_hoisting/expected/lir_00_unoptimized.txt +75 -0
- data/golden/multirank_hoisting/expected/lir_01_hoist_scalar_references.txt +75 -0
- data/golden/multirank_hoisting/expected/lir_02_inlined.txt +126 -0
- data/golden/multirank_hoisting/expected/lir_03_cse.txt +109 -0
- data/golden/multirank_hoisting/expected/lir_04_1_loop_fusion.txt +109 -0
- data/golden/multirank_hoisting/expected/lir_04_loop_invcm.txt +109 -0
- data/golden/multirank_hoisting/expected/lir_06_const_prop.txt +109 -0
- data/golden/multirank_hoisting/expected/nast.txt +39 -0
- data/golden/multirank_hoisting/expected/schema_javascript.mjs +128 -0
- data/golden/multirank_hoisting/expected/schema_ruby.rb +162 -0
- data/golden/multirank_hoisting/expected/snast.txt +39 -0
- data/golden/multirank_hoisting/expected.json +15 -0
- data/golden/multirank_hoisting/input.json +19 -0
- data/golden/multirank_hoisting/schema.kumi +38 -0
- data/golden/nested_hash/expected/ast.txt +22 -0
- data/golden/nested_hash/expected/input_plan.txt +5 -0
- data/golden/nested_hash/expected/lir_00_unoptimized.txt +10 -0
- data/golden/nested_hash/expected/lir_01_hoist_scalar_references.txt +10 -0
- data/golden/nested_hash/expected/lir_02_inlined.txt +10 -0
- data/golden/nested_hash/expected/lir_03_cse.txt +10 -0
- data/golden/nested_hash/expected/lir_04_1_loop_fusion.txt +10 -0
- data/golden/nested_hash/expected/lir_04_loop_invcm.txt +10 -0
- data/golden/nested_hash/expected/lir_06_const_prop.txt +10 -0
- data/golden/nested_hash/expected/nast.txt +8 -0
- data/golden/nested_hash/expected/schema_javascript.mjs +9 -0
- data/golden/nested_hash/expected/schema_ruby.rb +35 -0
- data/golden/nested_hash/expected/snast.txt +8 -0
- data/golden/nested_hash/expected.json +3 -0
- data/golden/nested_hash/input.json +7 -0
- data/golden/nested_hash/schema.kumi +11 -0
- data/golden/reduction_broadcast/expected/ast.txt +49 -0
- data/golden/reduction_broadcast/expected/input_plan.txt +13 -0
- data/golden/reduction_broadcast/expected/lir_00_unoptimized.txt +49 -0
- data/golden/reduction_broadcast/expected/lir_01_hoist_scalar_references.txt +49 -0
- data/golden/reduction_broadcast/expected/lir_02_inlined.txt +80 -0
- data/golden/reduction_broadcast/expected/lir_03_cse.txt +68 -0
- data/golden/reduction_broadcast/expected/lir_04_1_loop_fusion.txt +68 -0
- data/golden/reduction_broadcast/expected/lir_04_loop_invcm.txt +68 -0
- data/golden/reduction_broadcast/expected/lir_06_const_prop.txt +68 -0
- data/golden/reduction_broadcast/expected/nast.txt +24 -0
- data/golden/reduction_broadcast/expected/schema_javascript.mjs +74 -0
- data/golden/reduction_broadcast/expected/schema_ruby.rb +110 -0
- data/golden/reduction_broadcast/expected/snast.txt +24 -0
- data/golden/reduction_broadcast/expected.json +25 -0
- data/golden/reduction_broadcast/input.json +19 -0
- data/golden/reduction_broadcast/schema.kumi +34 -0
- data/golden/roll/expected/ast.txt +36 -0
- data/golden/roll/expected/input_plan.txt +3 -0
- data/golden/roll/expected/lir_00_unoptimized.txt +56 -0
- data/golden/roll/expected/lir_01_hoist_scalar_references.txt +56 -0
- data/golden/roll/expected/lir_02_inlined.txt +56 -0
- data/golden/roll/expected/lir_03_cse.txt +55 -0
- data/golden/roll/expected/lir_04_1_loop_fusion.txt +55 -0
- data/golden/roll/expected/lir_04_loop_invcm.txt +55 -0
- data/golden/roll/expected/lir_06_const_prop.txt +55 -0
- data/golden/roll/expected/nast.txt +26 -0
- data/golden/roll/expected/schema_javascript.mjs +65 -0
- data/golden/roll/expected/schema_ruby.rb +95 -0
- data/golden/roll/expected/snast.txt +26 -0
- data/golden/roll/expected.json +6 -0
- data/golden/roll/input.json +1 -0
- data/golden/roll/schema.kumi +13 -0
- data/golden/shift/expected/ast.txt +48 -0
- data/golden/shift/expected/input_plan.txt +3 -0
- data/golden/shift/expected/lir_00_unoptimized.txt +96 -0
- data/golden/shift/expected/lir_01_hoist_scalar_references.txt +96 -0
- data/golden/shift/expected/lir_02_inlined.txt +96 -0
- data/golden/shift/expected/lir_03_cse.txt +90 -0
- data/golden/shift/expected/lir_04_1_loop_fusion.txt +90 -0
- data/golden/shift/expected/lir_04_loop_invcm.txt +90 -0
- data/golden/shift/expected/lir_06_const_prop.txt +90 -0
- data/golden/shift/expected/nast.txt +38 -0
- data/golden/shift/expected/schema_javascript.mjs +106 -0
- data/golden/shift/expected/schema_ruby.rb +138 -0
- data/golden/shift/expected/snast.txt +38 -0
- data/golden/shift/expected.json +8 -0
- data/golden/shift/input.json +1 -0
- data/golden/shift/schema.kumi +15 -0
- data/golden/shift_2d/expected/ast.txt +88 -0
- data/golden/shift_2d/expected/input_plan.txt +5 -0
- data/golden/shift_2d/expected/lir_00_unoptimized.txt +274 -0
- data/golden/shift_2d/expected/lir_01_hoist_scalar_references.txt +274 -0
- data/golden/shift_2d/expected/lir_02_inlined.txt +274 -0
- data/golden/shift_2d/expected/lir_03_cse.txt +262 -0
- data/golden/shift_2d/expected/lir_04_1_loop_fusion.txt +262 -0
- data/golden/shift_2d/expected/lir_04_loop_invcm.txt +262 -0
- data/golden/shift_2d/expected/lir_06_const_prop.txt +262 -0
- data/golden/shift_2d/expected/nast.txt +74 -0
- data/golden/shift_2d/expected/schema_javascript.mjs +320 -0
- data/golden/shift_2d/expected/schema_ruby.rb +358 -0
- data/golden/shift_2d/expected/snast.txt +74 -0
- data/golden/shift_2d/expected.json +15 -0
- data/golden/shift_2d/input.json +14 -0
- data/golden/shift_2d/schema.kumi +25 -0
- data/golden/simple_math/expected/ast.txt +40 -0
- data/golden/simple_math/expected/input_plan.txt +2 -0
- data/golden/simple_math/expected/lir_00_unoptimized.txt +31 -0
- data/golden/simple_math/expected/lir_01_hoist_scalar_references.txt +31 -0
- data/golden/simple_math/expected/lir_02_inlined.txt +31 -0
- data/golden/simple_math/expected/lir_03_cse.txt +31 -0
- data/golden/simple_math/expected/lir_04_1_loop_fusion.txt +31 -0
- data/golden/simple_math/expected/lir_04_loop_invcm.txt +31 -0
- data/golden/simple_math/expected/lir_06_const_prop.txt +31 -0
- data/golden/simple_math/expected/nast.txt +33 -0
- data/golden/simple_math/expected/schema_javascript.mjs +33 -0
- data/golden/simple_math/expected/schema_ruby.rb +59 -0
- data/golden/simple_math/expected/snast.txt +33 -0
- data/golden/simple_math/expected.json +1 -0
- data/golden/simple_math/input.json +4 -0
- data/golden/simple_math/schema.kumi +2 -1
- data/golden/streaming_basics/expected/ast.txt +64 -0
- data/golden/streaming_basics/expected/input_plan.txt +8 -0
- data/golden/streaming_basics/expected/lir_00_unoptimized.txt +73 -0
- data/golden/streaming_basics/expected/lir_01_hoist_scalar_references.txt +73 -0
- data/golden/streaming_basics/expected/lir_02_inlined.txt +100 -0
- data/golden/streaming_basics/expected/lir_03_cse.txt +84 -0
- data/golden/streaming_basics/expected/lir_04_1_loop_fusion.txt +84 -0
- data/golden/streaming_basics/expected/lir_04_loop_invcm.txt +84 -0
- data/golden/streaming_basics/expected/lir_06_const_prop.txt +84 -0
- data/golden/streaming_basics/expected/nast.txt +48 -0
- data/golden/streaming_basics/expected/schema_javascript.mjs +94 -0
- data/golden/streaming_basics/expected/schema_ruby.rb +127 -0
- data/golden/streaming_basics/expected/snast.txt +48 -0
- data/golden/streaming_basics/expected.json +10 -0
- data/golden/streaming_basics/input.json +8 -0
- data/golden/streaming_basics/schema.kumi +24 -0
- data/golden/tuples/expected/ast.txt +48 -0
- data/golden/tuples/expected/input_plan.txt +1 -0
- data/golden/tuples/expected/lir_00_unoptimized.txt +40 -0
- data/golden/tuples/expected/lir_01_hoist_scalar_references.txt +40 -0
- data/golden/tuples/expected/lir_02_inlined.txt +48 -0
- data/golden/tuples/expected/lir_03_cse.txt +48 -0
- data/golden/tuples/expected/lir_04_1_loop_fusion.txt +48 -0
- data/golden/tuples/expected/lir_04_loop_invcm.txt +48 -0
- data/golden/tuples/expected/lir_06_const_prop.txt +48 -0
- data/golden/tuples/expected/nast.txt +42 -0
- data/golden/tuples/expected/schema_javascript.mjs +51 -0
- data/golden/tuples/expected/schema_ruby.rb +77 -0
- data/golden/tuples/expected/snast.txt +42 -0
- data/golden/tuples/expected.json +7 -0
- data/golden/tuples/input.json +3 -0
- data/golden/tuples/schema.kumi +11 -0
- data/golden/tuples_and_arrays/expected/ast.txt +44 -0
- data/golden/tuples_and_arrays/expected/input_plan.txt +7 -0
- data/golden/tuples_and_arrays/expected/lir_00_unoptimized.txt +41 -0
- data/golden/tuples_and_arrays/expected/lir_01_hoist_scalar_references.txt +41 -0
- data/golden/tuples_and_arrays/expected/lir_02_inlined.txt +62 -0
- data/golden/tuples_and_arrays/expected/lir_03_cse.txt +51 -0
- data/golden/tuples_and_arrays/expected/lir_04_1_loop_fusion.txt +51 -0
- data/golden/tuples_and_arrays/expected/lir_04_loop_invcm.txt +51 -0
- data/golden/tuples_and_arrays/expected/lir_06_const_prop.txt +51 -0
- data/golden/tuples_and_arrays/expected/nast.txt +28 -0
- data/golden/tuples_and_arrays/expected/schema_javascript.mjs +58 -0
- data/golden/tuples_and_arrays/expected/schema_ruby.rb +88 -0
- data/golden/tuples_and_arrays/expected/snast.txt +28 -0
- data/golden/tuples_and_arrays/expected.json +18 -0
- data/golden/tuples_and_arrays/input.json +7 -0
- data/golden/tuples_and_arrays/schema.kumi +38 -0
- data/golden/with_constants/expected/ast.txt +28 -0
- data/golden/with_constants/expected/input_plan.txt +2 -0
- data/golden/with_constants/expected/lir_00_unoptimized.txt +17 -0
- data/golden/with_constants/expected/lir_01_hoist_scalar_references.txt +17 -0
- data/golden/with_constants/expected/lir_02_inlined.txt +17 -0
- data/golden/with_constants/expected/lir_03_cse.txt +17 -0
- data/golden/with_constants/expected/lir_04_1_loop_fusion.txt +17 -0
- data/golden/with_constants/expected/lir_04_loop_invcm.txt +17 -0
- data/golden/with_constants/expected/lir_06_const_prop.txt +17 -0
- data/golden/with_constants/expected/nast.txt +21 -0
- data/golden/with_constants/expected/schema_javascript.mjs +18 -0
- data/golden/with_constants/expected/schema_ruby.rb +44 -0
- data/golden/with_constants/expected/snast.txt +15 -0
- data/golden/with_constants/schema.kumi +10 -0
- data/lib/kumi/analyzer.rb +76 -24
- data/lib/kumi/configuration.rb +60 -0
- data/lib/kumi/core/analyzer/binder.rb +121 -0
- data/lib/kumi/core/analyzer/checkpoint.rb +15 -9
- data/lib/kumi/core/analyzer/constant_evaluator.rb +32 -37
- data/lib/kumi/core/analyzer/constant_folding_helpers.rb +55 -0
- data/lib/kumi/core/analyzer/debug.rb +14 -16
- data/lib/kumi/core/analyzer/fn_aliases.rb +46 -0
- data/lib/kumi/core/analyzer/folder.rb +94 -0
- data/lib/kumi/core/analyzer/macro_expander.rb +69 -0
- data/lib/kumi/core/analyzer/passes/assemble_irv2_pass.rb +130 -0
- data/lib/kumi/core/analyzer/passes/attach_anchors_pass.rb +71 -0
- data/lib/kumi/core/analyzer/passes/attach_terminal_info_pass.rb +181 -0
- data/lib/kumi/core/analyzer/passes/codegen/js/declaration_emitter.rb +317 -0
- data/lib/kumi/core/analyzer/passes/codegen/js/emitter.rb +75 -0
- data/lib/kumi/core/analyzer/passes/codegen/js/output_buffer.rb +103 -0
- data/lib/kumi/core/analyzer/passes/codegen/js_pass.rb +27 -0
- data/lib/kumi/core/analyzer/passes/codegen/ruby/declaration_emitter.rb +321 -0
- data/lib/kumi/core/analyzer/passes/codegen/ruby/emitter.rb +85 -0
- data/lib/kumi/core/analyzer/passes/codegen/ruby/output_buffer.rb +111 -0
- data/lib/kumi/core/analyzer/passes/codegen/ruby_pass.rb +32 -0
- data/lib/kumi/core/analyzer/passes/constant_folding_pass.rb +33 -0
- data/lib/kumi/core/analyzer/passes/contract_checker_pass.rb +220 -0
- data/lib/kumi/core/analyzer/passes/dependency_resolver.rb +5 -6
- data/lib/kumi/core/analyzer/passes/input_access_planner_pass.rb +7 -3
- data/lib/kumi/core/analyzer/passes/input_collector.rb +74 -122
- data/lib/kumi/core/analyzer/passes/input_form_schema_pass.rb +43 -0
- data/lib/kumi/core/analyzer/passes/ir_dependency_pass.rb +1 -1
- data/lib/kumi/core/analyzer/passes/ir_execution_schedule_pass.rb +1 -1
- data/lib/kumi/core/analyzer/passes/join_reduce_planning_pass.rb +21 -23
- data/lib/kumi/core/analyzer/passes/lir/constant_propagation_pass.rb +84 -0
- data/lib/kumi/core/analyzer/passes/lir/dead_code_elimination_pass.rb +93 -0
- data/lib/kumi/core/analyzer/passes/lir/hoist_scalar_references_pass.rb +115 -0
- data/lib/kumi/core/analyzer/passes/lir/inline_declarations_pass.rb +274 -0
- data/lib/kumi/core/analyzer/passes/lir/instruction_scheduling_pass.rb +198 -0
- data/lib/kumi/core/analyzer/passes/lir/kernel_binding_pass.rb +30 -0
- data/lib/kumi/core/analyzer/passes/lir/local_cse_pass.rb +121 -0
- data/lib/kumi/core/analyzer/passes/lir/loop_fusion_pass.rb +156 -0
- data/lib/kumi/core/analyzer/passes/lir/loop_invariant_code_motion_pass.rb +148 -0
- data/lib/kumi/core/analyzer/passes/lir/lower_pass.rb +407 -0
- data/lib/kumi/core/analyzer/passes/lir/stencil_emitter.rb +243 -0
- data/lib/kumi/core/analyzer/passes/lir/validation_pass.rb +83 -0
- data/lib/kumi/core/analyzer/passes/load_input_cse.rb +17 -16
- data/lib/kumi/core/analyzer/passes/lower_to_ir_pass.rb +4 -2
- data/lib/kumi/core/analyzer/passes/lower_to_irv2_pass.rb +197 -0
- data/lib/kumi/core/analyzer/passes/name_indexer.rb +4 -1
- data/lib/kumi/core/analyzer/passes/nast_dimensional_analyzer_pass.rb +237 -0
- data/lib/kumi/core/analyzer/passes/normalize_to_nast_pass.rb +156 -0
- data/lib/kumi/core/analyzer/passes/output_schema_pass.rb +38 -0
- data/lib/kumi/core/analyzer/passes/pass_base.rb +30 -4
- data/lib/kumi/core/analyzer/passes/precompute_access_paths_pass.rb +93 -0
- data/lib/kumi/core/analyzer/passes/scope_resolution_pass.rb +33 -30
- data/lib/kumi/core/analyzer/passes/semantic_constraint_validator.rb +5 -26
- data/lib/kumi/core/analyzer/passes/snast_pass.rb +229 -0
- data/lib/kumi/core/analyzer/passes/toposorter.rb +1 -0
- data/lib/kumi/core/analyzer/passes/type_checker.rb +13 -0
- data/lib/kumi/core/analyzer/passes/type_inferencer_pass.rb +14 -16
- data/lib/kumi/core/analyzer/passes/unsat_detector.rb +2 -1
- data/lib/kumi/core/analyzer/plans.rb +12 -0
- data/lib/kumi/core/analyzer/state_serde.rb +4 -4
- data/lib/kumi/core/analyzer/structs/access_plan.rb +2 -2
- data/lib/kumi/core/analyzer/unsat_constant_evaluator.rb +59 -0
- data/lib/kumi/core/compiler/access_codegen.rb +1 -1
- data/lib/kumi/core/compiler/access_emit/base.rb +9 -5
- data/lib/kumi/core/compiler/access_emit/each_indexed.rb +10 -3
- data/lib/kumi/core/compiler/access_emit/materialize.rb +12 -5
- data/lib/kumi/core/compiler/access_emit/ravel.rb +10 -3
- data/lib/kumi/core/compiler/access_emit/read.rb +4 -1
- data/lib/kumi/core/compiler/access_planner.rb +42 -4
- data/lib/kumi/core/compiler/access_planner_v2.rb +164 -0
- data/lib/kumi/core/explain.rb +18 -11
- data/lib/kumi/core/functions/loader.rb +47 -0
- data/lib/kumi/core/functions/model.rb +10 -0
- data/lib/kumi/core/functions/type_rules.rb +108 -0
- data/lib/kumi/core/ir/execution_engine/interpreter.rb +1 -1
- data/lib/kumi/core/ir/execution_engine/profiler.rb +107 -97
- data/lib/kumi/core/ir.rb +6 -2
- data/lib/kumi/core/irv2/builder.rb +48 -0
- data/lib/kumi/core/irv2/declaration.rb +28 -0
- data/lib/kumi/core/irv2/module.rb +108 -0
- data/lib/kumi/core/irv2/value.rb +28 -0
- data/lib/kumi/core/lir/analyze.rb +64 -0
- data/lib/kumi/core/lir/build.rb +363 -0
- data/lib/kumi/core/lir/emit.rb +62 -0
- data/lib/kumi/core/lir/structs/instruction.rb +44 -0
- data/lib/kumi/core/lir/structs/literal.rb +14 -0
- data/lib/kumi/core/lir/structs/stamp.rb +13 -0
- data/lib/kumi/core/lir/support/error.rb +9 -0
- data/lib/kumi/core/lir/support/ids.rb +34 -0
- data/lib/kumi/core/lir/validate.rb +74 -0
- data/lib/kumi/core/lir.rb +34 -0
- data/lib/kumi/core/nast.rb +216 -0
- data/lib/kumi/core/ruby_parser/dsl.rb +2 -2
- data/lib/kumi/core/ruby_parser/dsl_cascade_builder.rb +1 -1
- data/lib/kumi/core/ruby_parser/expression_converter.rb +10 -0
- data/lib/kumi/core/ruby_parser/input_builder.rb +16 -17
- data/lib/kumi/core/ruby_parser/schema_builder.rb +36 -10
- data/lib/kumi/core/ruby_parser/sugar.rb +64 -0
- data/lib/kumi/core/types/builder.rb +2 -2
- data/lib/kumi/core/types/normalizer.rb +2 -0
- data/lib/kumi/core/types/validator.rb +10 -3
- data/lib/kumi/core/types.rb +7 -0
- data/lib/kumi/dev/codegen.rb +194 -0
- data/lib/kumi/dev/golden/generator.rb +105 -0
- data/lib/kumi/dev/golden/reporter.rb +160 -0
- data/lib/kumi/dev/golden/representation.rb +45 -0
- data/lib/kumi/dev/golden/result.rb +98 -0
- data/lib/kumi/dev/golden/runtime_test.rb +93 -0
- data/lib/kumi/dev/golden/suite.rb +131 -0
- data/lib/kumi/dev/golden/verifier.rb +76 -0
- data/lib/kumi/dev/golden.rb +75 -0
- data/lib/kumi/dev/ir.rb +4 -4
- data/lib/kumi/dev/parse.rb +1 -1
- data/lib/kumi/dev/pretty_printer.rb +229 -0
- data/lib/kumi/dev/printer/irv2_formatter.rb +163 -0
- data/lib/kumi/dev/printer/width_aware_json.rb +44 -0
- data/lib/kumi/dev/profile_aggregator.rb +36 -38
- data/lib/kumi/dev/profile_runner.rb +19 -23
- data/lib/kumi/dev/runner.rb +12 -22
- data/lib/kumi/dev/support/kumi_runner.mjs +39 -0
- data/lib/kumi/dev.rb +3 -3
- data/lib/kumi/frontends/ruby.rb +12 -12
- data/lib/kumi/frontends/text.rb +26 -21
- data/lib/kumi/frontends.rb +6 -8
- data/lib/kumi/kernel_registry.rb +59 -0
- data/lib/kumi/pack/builder.rb +229 -0
- data/lib/kumi/pack.rb +15 -0
- data/lib/kumi/registry_v2/loader.rb +81 -0
- data/lib/kumi/registry_v2.rb +118 -0
- data/lib/kumi/schema.rb +83 -43
- data/lib/kumi/support/diff.rb +3 -2
- data/lib/kumi/support/ir_render.rb +1 -1
- data/lib/kumi/support/lir_printer.rb +143 -0
- data/lib/kumi/support/nast_printer.rb +93 -0
- data/lib/kumi/support/s_expression_printer.rb +5 -4
- data/lib/kumi/support/snast_printer.rb +111 -0
- data/lib/kumi/syntax/call_expression.rb +1 -1
- data/lib/kumi/syntax/input_declaration.rb +2 -2
- data/lib/kumi/syntax/node.rb +4 -12
- data/lib/kumi/syntax/root.rb +10 -0
- data/lib/kumi/syntax/trait_declaration.rb +1 -0
- data/lib/kumi/syntax/value_declaration.rb +1 -0
- data/lib/kumi/version.rb +1 -1
- data/lib/kumi.rb +46 -4
- metadata +571 -54
- data/docs/AST.md +0 -133
- data/docs/DSL.md +0 -154
- data/docs/FUNCTIONS.md +0 -176
- data/docs/VECTOR_SEMANTICS.md +0 -286
- data/docs/compiler_design_principles.md +0 -86
- data/docs/dev/analyzer-debug.md +0 -52
- data/docs/dev/parse-command.md +0 -64
- data/docs/dev/vm-profiling.md +0 -95
- data/docs/development/README.md +0 -120
- data/docs/development/error-reporting.md +0 -361
- data/docs/features/README.md +0 -58
- data/docs/features/analysis-type-inference.md +0 -42
- data/docs/features/analysis-unsat-detection.md +0 -71
- data/docs/features/hierarchical-broadcasting.md +0 -415
- data/docs/features/input-declaration-system.md +0 -58
- data/docs/features/performance.md +0 -14
- data/docs/features/s-expression-printer.md +0 -77
- data/docs/schema_metadata/broadcasts.md +0 -53
- data/docs/schema_metadata/cascades.md +0 -45
- data/docs/schema_metadata/declarations.md +0 -54
- data/docs/schema_metadata/dependencies.md +0 -57
- data/docs/schema_metadata/evaluation_order.md +0 -29
- data/docs/schema_metadata/examples.md +0 -95
- data/docs/schema_metadata/inferred_types.md +0 -46
- data/docs/schema_metadata/inputs.md +0 -86
- data/docs/schema_metadata.md +0 -108
- data/golden/mixed_nesting/schema.kumi +0 -42
- data/lib/kumi/core/function_registry/collection_functions.rb +0 -298
- data/lib/kumi/core/function_registry/comparison_functions.rb +0 -33
- data/lib/kumi/core/function_registry/conditional_functions.rb +0 -48
- data/lib/kumi/core/function_registry/function_builder.rb +0 -184
- data/lib/kumi/core/function_registry/logical_functions.rb +0 -214
- data/lib/kumi/core/function_registry/math_functions.rb +0 -74
- data/lib/kumi/core/function_registry/stat_functions.rb +0 -156
- data/lib/kumi/core/function_registry/string_functions.rb +0 -57
- data/lib/kumi/core/function_registry/type_functions.rb +0 -53
- data/lib/kumi/core/function_registry.rb +0 -176
- data/lib/kumi/registry.rb +0 -32
- data/lib/kumi/runtime/executable.rb +0 -135
- data/lib/kumi/runtime/run.rb +0 -105
- data/performance_results.txt +0 -63
- data/scripts/analyze_broadcast_methods.rb +0 -68
- data/scripts/analyze_cascade_methods.rb +0 -74
- data/scripts/check_broadcasting_coverage.rb +0 -51
- data/scripts/find_dead_code.rb +0 -114
- data/scripts/generate_function_docs.rb +0 -71
- data/scripts/test_mixed_nesting_performance.rb +0 -206
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kumi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Muta
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: zeitwerk
|
@@ -24,7 +23,20 @@ dependencies:
|
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: 2.6.0
|
27
|
-
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: mutex_m
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 0.3.0
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: 0.3.0
|
28
40
|
email:
|
29
41
|
- andremuta@gmail.com
|
30
42
|
executables: []
|
@@ -33,69 +45,555 @@ extra_rdoc_files: []
|
|
33
45
|
files:
|
34
46
|
- ".rspec"
|
35
47
|
- ".rubocop.yml"
|
48
|
+
- ".ruby-version"
|
36
49
|
- CHANGELOG.md
|
37
50
|
- CLAUDE.md
|
38
51
|
- LICENSE.txt
|
39
52
|
- README.md
|
40
53
|
- Rakefile
|
41
|
-
-
|
42
|
-
-
|
43
|
-
-
|
54
|
+
- data/functions/agg/boolean.yaml
|
55
|
+
- data/functions/agg/numeric.yaml
|
56
|
+
- data/functions/agg/string.yaml
|
57
|
+
- data/functions/core/arithmetic.yaml
|
58
|
+
- data/functions/core/boolean.yaml
|
59
|
+
- data/functions/core/comparison.yaml
|
60
|
+
- data/functions/core/constructor.yaml
|
61
|
+
- data/functions/core/select.yaml
|
62
|
+
- data/functions/core/stencil.yaml
|
63
|
+
- data/functions/core/string.yaml
|
64
|
+
- data/kernels/javascript/agg/boolean.yaml
|
65
|
+
- data/kernels/javascript/agg/numeric.yaml
|
66
|
+
- data/kernels/javascript/agg/string.yaml
|
67
|
+
- data/kernels/javascript/core/arithmetic.yaml
|
68
|
+
- data/kernels/javascript/core/boolean.yaml
|
69
|
+
- data/kernels/javascript/core/comparison.yaml
|
70
|
+
- data/kernels/javascript/core/constructor.yaml
|
71
|
+
- data/kernels/javascript/core/select.yaml
|
72
|
+
- data/kernels/javascript/core/string.yaml
|
73
|
+
- data/kernels/ruby/agg/boolean.yaml
|
74
|
+
- data/kernels/ruby/agg/numeric.yaml
|
75
|
+
- data/kernels/ruby/agg/string.yaml
|
76
|
+
- data/kernels/ruby/core/arithmetic.yaml
|
77
|
+
- data/kernels/ruby/core/boolean.yaml
|
78
|
+
- data/kernels/ruby/core/comparison.yaml
|
79
|
+
- data/kernels/ruby/core/constructor.yaml
|
80
|
+
- data/kernels/ruby/core/select.yaml
|
81
|
+
- data/kernels/ruby/core/string.yaml
|
82
|
+
- debug_ordering.rb
|
83
|
+
- docs/FORM_SCHEMA.md
|
84
|
+
- docs/OUTPUT_SCHEMA.md
|
44
85
|
- docs/SYNTAX.md
|
45
|
-
- docs/VECTOR_SEMANTICS.md
|
46
|
-
- docs/compiler_design_principles.md
|
47
|
-
- docs/dev/analyzer-debug.md
|
48
|
-
- docs/dev/parse-command.md
|
49
|
-
- docs/dev/vm-profiling.md
|
50
|
-
- docs/development/README.md
|
51
|
-
- docs/development/error-reporting.md
|
52
|
-
- docs/features/README.md
|
53
|
-
- docs/features/analysis-type-inference.md
|
54
|
-
- docs/features/analysis-unsat-detection.md
|
55
|
-
- docs/features/hierarchical-broadcasting.md
|
56
|
-
- docs/features/input-declaration-system.md
|
57
|
-
- docs/features/performance.md
|
58
|
-
- docs/features/s-expression-printer.md
|
59
|
-
- docs/schema_metadata.md
|
60
|
-
- docs/schema_metadata/broadcasts.md
|
61
|
-
- docs/schema_metadata/cascades.md
|
62
|
-
- docs/schema_metadata/declarations.md
|
63
|
-
- docs/schema_metadata/dependencies.md
|
64
|
-
- docs/schema_metadata/evaluation_order.md
|
65
|
-
- docs/schema_metadata/examples.md
|
66
|
-
- docs/schema_metadata/inferred_types.md
|
67
|
-
- docs/schema_metadata/inputs.md
|
68
86
|
- examples/deep_schema_compilation_and_evaluation_benchmark.rb
|
69
87
|
- examples/federal_tax_calculator_2024.rb
|
70
88
|
- examples/game_of_life.rb
|
71
89
|
- examples/simple_rpg_game.rb
|
72
90
|
- examples/static_analysis_errors.rb
|
73
91
|
- examples/wide_schema_compilation_and_evaluation_benchmark.rb
|
92
|
+
- golden/array_element/expected.json
|
93
|
+
- golden/array_element/expected/ast.txt
|
94
|
+
- golden/array_element/expected/input_plan.txt
|
95
|
+
- golden/array_element/expected/lir_00_unoptimized.txt
|
96
|
+
- golden/array_element/expected/lir_01_hoist_scalar_references.txt
|
97
|
+
- golden/array_element/expected/lir_02_inlined.txt
|
98
|
+
- golden/array_element/expected/lir_03_cse.txt
|
99
|
+
- golden/array_element/expected/lir_04_1_loop_fusion.txt
|
100
|
+
- golden/array_element/expected/lir_04_loop_invcm.txt
|
101
|
+
- golden/array_element/expected/lir_06_const_prop.txt
|
102
|
+
- golden/array_element/expected/nast.txt
|
103
|
+
- golden/array_element/expected/schema_javascript.mjs
|
104
|
+
- golden/array_element/expected/schema_ruby.rb
|
105
|
+
- golden/array_element/expected/snast.txt
|
106
|
+
- golden/array_element/input.json
|
107
|
+
- golden/array_element/schema.kumi
|
108
|
+
- golden/array_index/expected.json
|
109
|
+
- golden/array_index/expected/ast.txt
|
110
|
+
- golden/array_index/expected/input_plan.txt
|
111
|
+
- golden/array_index/expected/lir_00_unoptimized.txt
|
112
|
+
- golden/array_index/expected/lir_01_hoist_scalar_references.txt
|
113
|
+
- golden/array_index/expected/lir_02_inlined.txt
|
114
|
+
- golden/array_index/expected/lir_03_cse.txt
|
115
|
+
- golden/array_index/expected/lir_04_1_loop_fusion.txt
|
116
|
+
- golden/array_index/expected/lir_04_loop_invcm.txt
|
117
|
+
- golden/array_index/expected/lir_06_const_prop.txt
|
118
|
+
- golden/array_index/expected/nast.txt
|
119
|
+
- golden/array_index/expected/schema_javascript.mjs
|
120
|
+
- golden/array_index/expected/schema_ruby.rb
|
121
|
+
- golden/array_index/expected/snast.txt
|
122
|
+
- golden/array_index/input.json
|
123
|
+
- golden/array_index/schema.kumi
|
124
|
+
- golden/array_operations/expected.json
|
125
|
+
- golden/array_operations/expected/ast.txt
|
126
|
+
- golden/array_operations/expected/input_plan.txt
|
127
|
+
- golden/array_operations/expected/lir_00_unoptimized.txt
|
128
|
+
- golden/array_operations/expected/lir_01_hoist_scalar_references.txt
|
129
|
+
- golden/array_operations/expected/lir_02_inlined.txt
|
130
|
+
- golden/array_operations/expected/lir_03_cse.txt
|
131
|
+
- golden/array_operations/expected/lir_04_1_loop_fusion.txt
|
132
|
+
- golden/array_operations/expected/lir_04_loop_invcm.txt
|
133
|
+
- golden/array_operations/expected/lir_06_const_prop.txt
|
134
|
+
- golden/array_operations/expected/nast.txt
|
135
|
+
- golden/array_operations/expected/schema_javascript.mjs
|
136
|
+
- golden/array_operations/expected/schema_ruby.rb
|
137
|
+
- golden/array_operations/expected/snast.txt
|
138
|
+
- golden/array_operations/input.json
|
74
139
|
- golden/array_operations/schema.kumi
|
140
|
+
- golden/cascade_logic/expected.json
|
141
|
+
- golden/cascade_logic/expected/ast.txt
|
142
|
+
- golden/cascade_logic/expected/input_plan.txt
|
143
|
+
- golden/cascade_logic/expected/lir_00_unoptimized.txt
|
144
|
+
- golden/cascade_logic/expected/lir_01_hoist_scalar_references.txt
|
145
|
+
- golden/cascade_logic/expected/lir_02_inlined.txt
|
146
|
+
- golden/cascade_logic/expected/lir_03_cse.txt
|
147
|
+
- golden/cascade_logic/expected/lir_04_1_loop_fusion.txt
|
148
|
+
- golden/cascade_logic/expected/lir_04_loop_invcm.txt
|
149
|
+
- golden/cascade_logic/expected/lir_06_const_prop.txt
|
150
|
+
- golden/cascade_logic/expected/nast.txt
|
151
|
+
- golden/cascade_logic/expected/schema_javascript.mjs
|
152
|
+
- golden/cascade_logic/expected/schema_ruby.rb
|
153
|
+
- golden/cascade_logic/expected/snast.txt
|
154
|
+
- golden/cascade_logic/input.json
|
75
155
|
- golden/cascade_logic/schema.kumi
|
76
|
-
- golden/
|
156
|
+
- golden/chained_fusion/expected.json
|
157
|
+
- golden/chained_fusion/expected/ast.txt
|
158
|
+
- golden/chained_fusion/expected/input_plan.txt
|
159
|
+
- golden/chained_fusion/expected/lir_00_unoptimized.txt
|
160
|
+
- golden/chained_fusion/expected/lir_01_hoist_scalar_references.txt
|
161
|
+
- golden/chained_fusion/expected/lir_02_inlined.txt
|
162
|
+
- golden/chained_fusion/expected/lir_03_cse.txt
|
163
|
+
- golden/chained_fusion/expected/lir_04_1_loop_fusion.txt
|
164
|
+
- golden/chained_fusion/expected/lir_04_loop_invcm.txt
|
165
|
+
- golden/chained_fusion/expected/lir_06_const_prop.txt
|
166
|
+
- golden/chained_fusion/expected/nast.txt
|
167
|
+
- golden/chained_fusion/expected/schema_javascript.mjs
|
168
|
+
- golden/chained_fusion/expected/schema_ruby.rb
|
169
|
+
- golden/chained_fusion/expected/snast.txt
|
170
|
+
- golden/chained_fusion/input.json
|
171
|
+
- golden/chained_fusion/schema.kumi
|
172
|
+
- golden/element_arrays/expected.json
|
173
|
+
- golden/element_arrays/expected/ast.txt
|
174
|
+
- golden/element_arrays/expected/input_plan.txt
|
175
|
+
- golden/element_arrays/expected/lir_00_unoptimized.txt
|
176
|
+
- golden/element_arrays/expected/lir_01_hoist_scalar_references.txt
|
177
|
+
- golden/element_arrays/expected/lir_02_inlined.txt
|
178
|
+
- golden/element_arrays/expected/lir_03_cse.txt
|
179
|
+
- golden/element_arrays/expected/lir_04_1_loop_fusion.txt
|
180
|
+
- golden/element_arrays/expected/lir_04_loop_invcm.txt
|
181
|
+
- golden/element_arrays/expected/lir_06_const_prop.txt
|
182
|
+
- golden/element_arrays/expected/nast.txt
|
183
|
+
- golden/element_arrays/expected/schema_javascript.mjs
|
184
|
+
- golden/element_arrays/expected/schema_ruby.rb
|
185
|
+
- golden/element_arrays/expected/snast.txt
|
186
|
+
- golden/element_arrays/input.json
|
187
|
+
- golden/element_arrays/schema.kumi
|
188
|
+
- golden/empty_and_null_inputs/expected.json
|
189
|
+
- golden/empty_and_null_inputs/expected/ast.txt
|
190
|
+
- golden/empty_and_null_inputs/expected/input_plan.txt
|
191
|
+
- golden/empty_and_null_inputs/expected/lir_00_unoptimized.txt
|
192
|
+
- golden/empty_and_null_inputs/expected/lir_01_hoist_scalar_references.txt
|
193
|
+
- golden/empty_and_null_inputs/expected/lir_02_inlined.txt
|
194
|
+
- golden/empty_and_null_inputs/expected/lir_03_cse.txt
|
195
|
+
- golden/empty_and_null_inputs/expected/lir_04_1_loop_fusion.txt
|
196
|
+
- golden/empty_and_null_inputs/expected/lir_04_loop_invcm.txt
|
197
|
+
- golden/empty_and_null_inputs/expected/lir_06_const_prop.txt
|
198
|
+
- golden/empty_and_null_inputs/expected/nast.txt
|
199
|
+
- golden/empty_and_null_inputs/expected/schema_javascript.mjs
|
200
|
+
- golden/empty_and_null_inputs/expected/schema_ruby.rb
|
201
|
+
- golden/empty_and_null_inputs/expected/snast.txt
|
202
|
+
- golden/empty_and_null_inputs/input.json
|
203
|
+
- golden/empty_and_null_inputs/schema.kumi
|
204
|
+
- golden/game_of_life/expected.json
|
205
|
+
- golden/game_of_life/expected/ast.txt
|
206
|
+
- golden/game_of_life/expected/input_plan.txt
|
207
|
+
- golden/game_of_life/expected/lir_00_unoptimized.txt
|
208
|
+
- golden/game_of_life/expected/lir_01_hoist_scalar_references.txt
|
209
|
+
- golden/game_of_life/expected/lir_02_inlined.txt
|
210
|
+
- golden/game_of_life/expected/lir_03_cse.txt
|
211
|
+
- golden/game_of_life/expected/lir_04_1_loop_fusion.txt
|
212
|
+
- golden/game_of_life/expected/lir_04_loop_invcm.txt
|
213
|
+
- golden/game_of_life/expected/lir_06_const_prop.txt
|
214
|
+
- golden/game_of_life/expected/nast.txt
|
215
|
+
- golden/game_of_life/expected/schema_javascript.mjs
|
216
|
+
- golden/game_of_life/expected/schema_ruby.rb
|
217
|
+
- golden/game_of_life/expected/snast.txt
|
218
|
+
- golden/game_of_life/input.json
|
219
|
+
- golden/game_of_life/schema.kumi
|
220
|
+
- golden/hash_keys/expected.json
|
221
|
+
- golden/hash_keys/expected/ast.txt
|
222
|
+
- golden/hash_keys/expected/input_plan.txt
|
223
|
+
- golden/hash_keys/expected/lir_00_unoptimized.txt
|
224
|
+
- golden/hash_keys/expected/lir_01_hoist_scalar_references.txt
|
225
|
+
- golden/hash_keys/expected/lir_02_inlined.txt
|
226
|
+
- golden/hash_keys/expected/lir_03_cse.txt
|
227
|
+
- golden/hash_keys/expected/lir_04_1_loop_fusion.txt
|
228
|
+
- golden/hash_keys/expected/lir_04_loop_invcm.txt
|
229
|
+
- golden/hash_keys/expected/lir_06_const_prop.txt
|
230
|
+
- golden/hash_keys/expected/nast.txt
|
231
|
+
- golden/hash_keys/expected/schema_javascript.mjs
|
232
|
+
- golden/hash_keys/expected/schema_ruby.rb
|
233
|
+
- golden/hash_keys/expected/snast.txt
|
234
|
+
- golden/hash_keys/input.json
|
235
|
+
- golden/hash_keys/schema.kumi
|
236
|
+
- golden/hash_value/expected.json
|
237
|
+
- golden/hash_value/expected/ast.txt
|
238
|
+
- golden/hash_value/expected/input_plan.txt
|
239
|
+
- golden/hash_value/expected/lir_00_unoptimized.txt
|
240
|
+
- golden/hash_value/expected/lir_01_hoist_scalar_references.txt
|
241
|
+
- golden/hash_value/expected/lir_02_inlined.txt
|
242
|
+
- golden/hash_value/expected/lir_03_cse.txt
|
243
|
+
- golden/hash_value/expected/lir_04_1_loop_fusion.txt
|
244
|
+
- golden/hash_value/expected/lir_04_loop_invcm.txt
|
245
|
+
- golden/hash_value/expected/lir_06_const_prop.txt
|
246
|
+
- golden/hash_value/expected/nast.txt
|
247
|
+
- golden/hash_value/expected/schema_javascript.mjs
|
248
|
+
- golden/hash_value/expected/schema_ruby.rb
|
249
|
+
- golden/hash_value/expected/snast.txt
|
250
|
+
- golden/hash_value/input.json
|
251
|
+
- golden/hash_value/schema.kumi
|
252
|
+
- golden/hierarchical_complex/expected.json
|
253
|
+
- golden/hierarchical_complex/expected/ast.txt
|
254
|
+
- golden/hierarchical_complex/expected/input_plan.txt
|
255
|
+
- golden/hierarchical_complex/expected/lir_00_unoptimized.txt
|
256
|
+
- golden/hierarchical_complex/expected/lir_01_hoist_scalar_references.txt
|
257
|
+
- golden/hierarchical_complex/expected/lir_02_inlined.txt
|
258
|
+
- golden/hierarchical_complex/expected/lir_03_cse.txt
|
259
|
+
- golden/hierarchical_complex/expected/lir_04_1_loop_fusion.txt
|
260
|
+
- golden/hierarchical_complex/expected/lir_04_loop_invcm.txt
|
261
|
+
- golden/hierarchical_complex/expected/lir_06_const_prop.txt
|
262
|
+
- golden/hierarchical_complex/expected/nast.txt
|
263
|
+
- golden/hierarchical_complex/expected/schema_javascript.mjs
|
264
|
+
- golden/hierarchical_complex/expected/schema_ruby.rb
|
265
|
+
- golden/hierarchical_complex/expected/snast.txt
|
266
|
+
- golden/hierarchical_complex/input.json
|
267
|
+
- golden/hierarchical_complex/schema.kumi
|
268
|
+
- golden/input_reference/expected.json
|
269
|
+
- golden/input_reference/expected/ast.txt
|
270
|
+
- golden/input_reference/expected/input_plan.txt
|
271
|
+
- golden/input_reference/expected/lir_00_unoptimized.txt
|
272
|
+
- golden/input_reference/expected/lir_01_hoist_scalar_references.txt
|
273
|
+
- golden/input_reference/expected/lir_02_inlined.txt
|
274
|
+
- golden/input_reference/expected/lir_03_cse.txt
|
275
|
+
- golden/input_reference/expected/lir_04_1_loop_fusion.txt
|
276
|
+
- golden/input_reference/expected/lir_04_loop_invcm.txt
|
277
|
+
- golden/input_reference/expected/lir_06_const_prop.txt
|
278
|
+
- golden/input_reference/expected/nast.txt
|
279
|
+
- golden/input_reference/expected/schema_javascript.mjs
|
280
|
+
- golden/input_reference/expected/schema_ruby.rb
|
281
|
+
- golden/input_reference/expected/snast.txt
|
282
|
+
- golden/input_reference/input.json
|
283
|
+
- golden/input_reference/schema.kumi
|
284
|
+
- golden/interleaved_fusion/expected.json
|
285
|
+
- golden/interleaved_fusion/expected/ast.txt
|
286
|
+
- golden/interleaved_fusion/expected/input_plan.txt
|
287
|
+
- golden/interleaved_fusion/expected/lir_00_unoptimized.txt
|
288
|
+
- golden/interleaved_fusion/expected/lir_01_hoist_scalar_references.txt
|
289
|
+
- golden/interleaved_fusion/expected/lir_02_inlined.txt
|
290
|
+
- golden/interleaved_fusion/expected/lir_03_cse.txt
|
291
|
+
- golden/interleaved_fusion/expected/lir_04_1_loop_fusion.txt
|
292
|
+
- golden/interleaved_fusion/expected/lir_04_loop_invcm.txt
|
293
|
+
- golden/interleaved_fusion/expected/lir_06_const_prop.txt
|
294
|
+
- golden/interleaved_fusion/expected/nast.txt
|
295
|
+
- golden/interleaved_fusion/expected/schema_javascript.mjs
|
296
|
+
- golden/interleaved_fusion/expected/schema_ruby.rb
|
297
|
+
- golden/interleaved_fusion/expected/snast.txt
|
298
|
+
- golden/interleaved_fusion/input.json
|
299
|
+
- golden/interleaved_fusion/schema.kumi
|
300
|
+
- golden/let_inline/expected.json
|
301
|
+
- golden/let_inline/expected/ast.txt
|
302
|
+
- golden/let_inline/expected/input_plan.txt
|
303
|
+
- golden/let_inline/expected/lir_00_unoptimized.txt
|
304
|
+
- golden/let_inline/expected/lir_01_hoist_scalar_references.txt
|
305
|
+
- golden/let_inline/expected/lir_02_inlined.txt
|
306
|
+
- golden/let_inline/expected/lir_03_cse.txt
|
307
|
+
- golden/let_inline/expected/lir_04_1_loop_fusion.txt
|
308
|
+
- golden/let_inline/expected/lir_04_loop_invcm.txt
|
309
|
+
- golden/let_inline/expected/lir_06_const_prop.txt
|
310
|
+
- golden/let_inline/expected/nast.txt
|
311
|
+
- golden/let_inline/expected/schema_javascript.mjs
|
312
|
+
- golden/let_inline/expected/schema_ruby.rb
|
313
|
+
- golden/let_inline/expected/snast.txt
|
314
|
+
- golden/let_inline/input.json
|
315
|
+
- golden/let_inline/schema.kumi
|
316
|
+
- golden/loop_fusion/expected.json
|
317
|
+
- golden/loop_fusion/expected/ast.txt
|
318
|
+
- golden/loop_fusion/expected/input_plan.txt
|
319
|
+
- golden/loop_fusion/expected/lir_00_unoptimized.txt
|
320
|
+
- golden/loop_fusion/expected/lir_01_hoist_scalar_references.txt
|
321
|
+
- golden/loop_fusion/expected/lir_02_inlined.txt
|
322
|
+
- golden/loop_fusion/expected/lir_03_cse.txt
|
323
|
+
- golden/loop_fusion/expected/lir_04_1_loop_fusion.txt
|
324
|
+
- golden/loop_fusion/expected/lir_04_loop_invcm.txt
|
325
|
+
- golden/loop_fusion/expected/lir_06_const_prop.txt
|
326
|
+
- golden/loop_fusion/expected/nast.txt
|
327
|
+
- golden/loop_fusion/expected/schema_javascript.mjs
|
328
|
+
- golden/loop_fusion/expected/schema_ruby.rb
|
329
|
+
- golden/loop_fusion/expected/snast.txt
|
330
|
+
- golden/loop_fusion/input.json
|
331
|
+
- golden/loop_fusion/schema.kumi
|
332
|
+
- golden/min_reduce_scope/expected.json
|
333
|
+
- golden/min_reduce_scope/expected/ast.txt
|
334
|
+
- golden/min_reduce_scope/expected/input_plan.txt
|
335
|
+
- golden/min_reduce_scope/expected/lir_00_unoptimized.txt
|
336
|
+
- golden/min_reduce_scope/expected/lir_01_hoist_scalar_references.txt
|
337
|
+
- golden/min_reduce_scope/expected/lir_02_inlined.txt
|
338
|
+
- golden/min_reduce_scope/expected/lir_03_cse.txt
|
339
|
+
- golden/min_reduce_scope/expected/lir_04_1_loop_fusion.txt
|
340
|
+
- golden/min_reduce_scope/expected/lir_04_loop_invcm.txt
|
341
|
+
- golden/min_reduce_scope/expected/lir_06_const_prop.txt
|
342
|
+
- golden/min_reduce_scope/expected/nast.txt
|
343
|
+
- golden/min_reduce_scope/expected/schema_javascript.mjs
|
344
|
+
- golden/min_reduce_scope/expected/schema_ruby.rb
|
345
|
+
- golden/min_reduce_scope/expected/snast.txt
|
346
|
+
- golden/min_reduce_scope/input.json
|
347
|
+
- golden/min_reduce_scope/schema.kumi
|
348
|
+
- golden/mixed_dimensions/expected.json
|
349
|
+
- golden/mixed_dimensions/expected/ast.txt
|
350
|
+
- golden/mixed_dimensions/expected/input_plan.txt
|
351
|
+
- golden/mixed_dimensions/expected/lir_00_unoptimized.txt
|
352
|
+
- golden/mixed_dimensions/expected/lir_01_hoist_scalar_references.txt
|
353
|
+
- golden/mixed_dimensions/expected/lir_02_inlined.txt
|
354
|
+
- golden/mixed_dimensions/expected/lir_03_cse.txt
|
355
|
+
- golden/mixed_dimensions/expected/lir_04_1_loop_fusion.txt
|
356
|
+
- golden/mixed_dimensions/expected/lir_04_loop_invcm.txt
|
357
|
+
- golden/mixed_dimensions/expected/lir_06_const_prop.txt
|
358
|
+
- golden/mixed_dimensions/expected/nast.txt
|
359
|
+
- golden/mixed_dimensions/expected/schema_javascript.mjs
|
360
|
+
- golden/mixed_dimensions/expected/schema_ruby.rb
|
361
|
+
- golden/mixed_dimensions/expected/snast.txt
|
362
|
+
- golden/mixed_dimensions/input.json
|
363
|
+
- golden/mixed_dimensions/schema.kumi
|
364
|
+
- golden/multirank_hoisting/expected.json
|
365
|
+
- golden/multirank_hoisting/expected/ast.txt
|
366
|
+
- golden/multirank_hoisting/expected/input_plan.txt
|
367
|
+
- golden/multirank_hoisting/expected/lir_00_unoptimized.txt
|
368
|
+
- golden/multirank_hoisting/expected/lir_01_hoist_scalar_references.txt
|
369
|
+
- golden/multirank_hoisting/expected/lir_02_inlined.txt
|
370
|
+
- golden/multirank_hoisting/expected/lir_03_cse.txt
|
371
|
+
- golden/multirank_hoisting/expected/lir_04_1_loop_fusion.txt
|
372
|
+
- golden/multirank_hoisting/expected/lir_04_loop_invcm.txt
|
373
|
+
- golden/multirank_hoisting/expected/lir_06_const_prop.txt
|
374
|
+
- golden/multirank_hoisting/expected/nast.txt
|
375
|
+
- golden/multirank_hoisting/expected/schema_javascript.mjs
|
376
|
+
- golden/multirank_hoisting/expected/schema_ruby.rb
|
377
|
+
- golden/multirank_hoisting/expected/snast.txt
|
378
|
+
- golden/multirank_hoisting/input.json
|
379
|
+
- golden/multirank_hoisting/schema.kumi
|
380
|
+
- golden/nested_hash/expected.json
|
381
|
+
- golden/nested_hash/expected/ast.txt
|
382
|
+
- golden/nested_hash/expected/input_plan.txt
|
383
|
+
- golden/nested_hash/expected/lir_00_unoptimized.txt
|
384
|
+
- golden/nested_hash/expected/lir_01_hoist_scalar_references.txt
|
385
|
+
- golden/nested_hash/expected/lir_02_inlined.txt
|
386
|
+
- golden/nested_hash/expected/lir_03_cse.txt
|
387
|
+
- golden/nested_hash/expected/lir_04_1_loop_fusion.txt
|
388
|
+
- golden/nested_hash/expected/lir_04_loop_invcm.txt
|
389
|
+
- golden/nested_hash/expected/lir_06_const_prop.txt
|
390
|
+
- golden/nested_hash/expected/nast.txt
|
391
|
+
- golden/nested_hash/expected/schema_javascript.mjs
|
392
|
+
- golden/nested_hash/expected/schema_ruby.rb
|
393
|
+
- golden/nested_hash/expected/snast.txt
|
394
|
+
- golden/nested_hash/input.json
|
395
|
+
- golden/nested_hash/schema.kumi
|
396
|
+
- golden/reduction_broadcast/expected.json
|
397
|
+
- golden/reduction_broadcast/expected/ast.txt
|
398
|
+
- golden/reduction_broadcast/expected/input_plan.txt
|
399
|
+
- golden/reduction_broadcast/expected/lir_00_unoptimized.txt
|
400
|
+
- golden/reduction_broadcast/expected/lir_01_hoist_scalar_references.txt
|
401
|
+
- golden/reduction_broadcast/expected/lir_02_inlined.txt
|
402
|
+
- golden/reduction_broadcast/expected/lir_03_cse.txt
|
403
|
+
- golden/reduction_broadcast/expected/lir_04_1_loop_fusion.txt
|
404
|
+
- golden/reduction_broadcast/expected/lir_04_loop_invcm.txt
|
405
|
+
- golden/reduction_broadcast/expected/lir_06_const_prop.txt
|
406
|
+
- golden/reduction_broadcast/expected/nast.txt
|
407
|
+
- golden/reduction_broadcast/expected/schema_javascript.mjs
|
408
|
+
- golden/reduction_broadcast/expected/schema_ruby.rb
|
409
|
+
- golden/reduction_broadcast/expected/snast.txt
|
410
|
+
- golden/reduction_broadcast/input.json
|
411
|
+
- golden/reduction_broadcast/schema.kumi
|
412
|
+
- golden/roll/expected.json
|
413
|
+
- golden/roll/expected/ast.txt
|
414
|
+
- golden/roll/expected/input_plan.txt
|
415
|
+
- golden/roll/expected/lir_00_unoptimized.txt
|
416
|
+
- golden/roll/expected/lir_01_hoist_scalar_references.txt
|
417
|
+
- golden/roll/expected/lir_02_inlined.txt
|
418
|
+
- golden/roll/expected/lir_03_cse.txt
|
419
|
+
- golden/roll/expected/lir_04_1_loop_fusion.txt
|
420
|
+
- golden/roll/expected/lir_04_loop_invcm.txt
|
421
|
+
- golden/roll/expected/lir_06_const_prop.txt
|
422
|
+
- golden/roll/expected/nast.txt
|
423
|
+
- golden/roll/expected/schema_javascript.mjs
|
424
|
+
- golden/roll/expected/schema_ruby.rb
|
425
|
+
- golden/roll/expected/snast.txt
|
426
|
+
- golden/roll/input.json
|
427
|
+
- golden/roll/schema.kumi
|
428
|
+
- golden/shift/expected.json
|
429
|
+
- golden/shift/expected/ast.txt
|
430
|
+
- golden/shift/expected/input_plan.txt
|
431
|
+
- golden/shift/expected/lir_00_unoptimized.txt
|
432
|
+
- golden/shift/expected/lir_01_hoist_scalar_references.txt
|
433
|
+
- golden/shift/expected/lir_02_inlined.txt
|
434
|
+
- golden/shift/expected/lir_03_cse.txt
|
435
|
+
- golden/shift/expected/lir_04_1_loop_fusion.txt
|
436
|
+
- golden/shift/expected/lir_04_loop_invcm.txt
|
437
|
+
- golden/shift/expected/lir_06_const_prop.txt
|
438
|
+
- golden/shift/expected/nast.txt
|
439
|
+
- golden/shift/expected/schema_javascript.mjs
|
440
|
+
- golden/shift/expected/schema_ruby.rb
|
441
|
+
- golden/shift/expected/snast.txt
|
442
|
+
- golden/shift/input.json
|
443
|
+
- golden/shift/schema.kumi
|
444
|
+
- golden/shift_2d/expected.json
|
445
|
+
- golden/shift_2d/expected/ast.txt
|
446
|
+
- golden/shift_2d/expected/input_plan.txt
|
447
|
+
- golden/shift_2d/expected/lir_00_unoptimized.txt
|
448
|
+
- golden/shift_2d/expected/lir_01_hoist_scalar_references.txt
|
449
|
+
- golden/shift_2d/expected/lir_02_inlined.txt
|
450
|
+
- golden/shift_2d/expected/lir_03_cse.txt
|
451
|
+
- golden/shift_2d/expected/lir_04_1_loop_fusion.txt
|
452
|
+
- golden/shift_2d/expected/lir_04_loop_invcm.txt
|
453
|
+
- golden/shift_2d/expected/lir_06_const_prop.txt
|
454
|
+
- golden/shift_2d/expected/nast.txt
|
455
|
+
- golden/shift_2d/expected/schema_javascript.mjs
|
456
|
+
- golden/shift_2d/expected/schema_ruby.rb
|
457
|
+
- golden/shift_2d/expected/snast.txt
|
458
|
+
- golden/shift_2d/input.json
|
459
|
+
- golden/shift_2d/schema.kumi
|
460
|
+
- golden/simple_math/expected.json
|
461
|
+
- golden/simple_math/expected/ast.txt
|
462
|
+
- golden/simple_math/expected/input_plan.txt
|
463
|
+
- golden/simple_math/expected/lir_00_unoptimized.txt
|
464
|
+
- golden/simple_math/expected/lir_01_hoist_scalar_references.txt
|
465
|
+
- golden/simple_math/expected/lir_02_inlined.txt
|
466
|
+
- golden/simple_math/expected/lir_03_cse.txt
|
467
|
+
- golden/simple_math/expected/lir_04_1_loop_fusion.txt
|
468
|
+
- golden/simple_math/expected/lir_04_loop_invcm.txt
|
469
|
+
- golden/simple_math/expected/lir_06_const_prop.txt
|
470
|
+
- golden/simple_math/expected/nast.txt
|
471
|
+
- golden/simple_math/expected/schema_javascript.mjs
|
472
|
+
- golden/simple_math/expected/schema_ruby.rb
|
473
|
+
- golden/simple_math/expected/snast.txt
|
474
|
+
- golden/simple_math/input.json
|
77
475
|
- golden/simple_math/schema.kumi
|
476
|
+
- golden/streaming_basics/expected.json
|
477
|
+
- golden/streaming_basics/expected/ast.txt
|
478
|
+
- golden/streaming_basics/expected/input_plan.txt
|
479
|
+
- golden/streaming_basics/expected/lir_00_unoptimized.txt
|
480
|
+
- golden/streaming_basics/expected/lir_01_hoist_scalar_references.txt
|
481
|
+
- golden/streaming_basics/expected/lir_02_inlined.txt
|
482
|
+
- golden/streaming_basics/expected/lir_03_cse.txt
|
483
|
+
- golden/streaming_basics/expected/lir_04_1_loop_fusion.txt
|
484
|
+
- golden/streaming_basics/expected/lir_04_loop_invcm.txt
|
485
|
+
- golden/streaming_basics/expected/lir_06_const_prop.txt
|
486
|
+
- golden/streaming_basics/expected/nast.txt
|
487
|
+
- golden/streaming_basics/expected/schema_javascript.mjs
|
488
|
+
- golden/streaming_basics/expected/schema_ruby.rb
|
489
|
+
- golden/streaming_basics/expected/snast.txt
|
490
|
+
- golden/streaming_basics/input.json
|
491
|
+
- golden/streaming_basics/schema.kumi
|
492
|
+
- golden/tuples/expected.json
|
493
|
+
- golden/tuples/expected/ast.txt
|
494
|
+
- golden/tuples/expected/input_plan.txt
|
495
|
+
- golden/tuples/expected/lir_00_unoptimized.txt
|
496
|
+
- golden/tuples/expected/lir_01_hoist_scalar_references.txt
|
497
|
+
- golden/tuples/expected/lir_02_inlined.txt
|
498
|
+
- golden/tuples/expected/lir_03_cse.txt
|
499
|
+
- golden/tuples/expected/lir_04_1_loop_fusion.txt
|
500
|
+
- golden/tuples/expected/lir_04_loop_invcm.txt
|
501
|
+
- golden/tuples/expected/lir_06_const_prop.txt
|
502
|
+
- golden/tuples/expected/nast.txt
|
503
|
+
- golden/tuples/expected/schema_javascript.mjs
|
504
|
+
- golden/tuples/expected/schema_ruby.rb
|
505
|
+
- golden/tuples/expected/snast.txt
|
506
|
+
- golden/tuples/input.json
|
507
|
+
- golden/tuples/schema.kumi
|
508
|
+
- golden/tuples_and_arrays/expected.json
|
509
|
+
- golden/tuples_and_arrays/expected/ast.txt
|
510
|
+
- golden/tuples_and_arrays/expected/input_plan.txt
|
511
|
+
- golden/tuples_and_arrays/expected/lir_00_unoptimized.txt
|
512
|
+
- golden/tuples_and_arrays/expected/lir_01_hoist_scalar_references.txt
|
513
|
+
- golden/tuples_and_arrays/expected/lir_02_inlined.txt
|
514
|
+
- golden/tuples_and_arrays/expected/lir_03_cse.txt
|
515
|
+
- golden/tuples_and_arrays/expected/lir_04_1_loop_fusion.txt
|
516
|
+
- golden/tuples_and_arrays/expected/lir_04_loop_invcm.txt
|
517
|
+
- golden/tuples_and_arrays/expected/lir_06_const_prop.txt
|
518
|
+
- golden/tuples_and_arrays/expected/nast.txt
|
519
|
+
- golden/tuples_and_arrays/expected/schema_javascript.mjs
|
520
|
+
- golden/tuples_and_arrays/expected/schema_ruby.rb
|
521
|
+
- golden/tuples_and_arrays/expected/snast.txt
|
522
|
+
- golden/tuples_and_arrays/input.json
|
523
|
+
- golden/tuples_and_arrays/schema.kumi
|
524
|
+
- golden/with_constants/expected/ast.txt
|
525
|
+
- golden/with_constants/expected/input_plan.txt
|
526
|
+
- golden/with_constants/expected/lir_00_unoptimized.txt
|
527
|
+
- golden/with_constants/expected/lir_01_hoist_scalar_references.txt
|
528
|
+
- golden/with_constants/expected/lir_02_inlined.txt
|
529
|
+
- golden/with_constants/expected/lir_03_cse.txt
|
530
|
+
- golden/with_constants/expected/lir_04_1_loop_fusion.txt
|
531
|
+
- golden/with_constants/expected/lir_04_loop_invcm.txt
|
532
|
+
- golden/with_constants/expected/lir_06_const_prop.txt
|
533
|
+
- golden/with_constants/expected/nast.txt
|
534
|
+
- golden/with_constants/expected/schema_javascript.mjs
|
535
|
+
- golden/with_constants/expected/schema_ruby.rb
|
536
|
+
- golden/with_constants/expected/snast.txt
|
537
|
+
- golden/with_constants/schema.kumi
|
78
538
|
- lib/kumi.rb
|
79
539
|
- lib/kumi/analyzer.rb
|
80
540
|
- lib/kumi/compiler.rb
|
541
|
+
- lib/kumi/configuration.rb
|
81
542
|
- lib/kumi/core/analyzer/analysis_state.rb
|
543
|
+
- lib/kumi/core/analyzer/binder.rb
|
82
544
|
- lib/kumi/core/analyzer/checkpoint.rb
|
83
545
|
- lib/kumi/core/analyzer/constant_evaluator.rb
|
546
|
+
- lib/kumi/core/analyzer/constant_folding_helpers.rb
|
84
547
|
- lib/kumi/core/analyzer/debug.rb
|
548
|
+
- lib/kumi/core/analyzer/fn_aliases.rb
|
549
|
+
- lib/kumi/core/analyzer/folder.rb
|
550
|
+
- lib/kumi/core/analyzer/macro_expander.rb
|
551
|
+
- lib/kumi/core/analyzer/passes/assemble_irv2_pass.rb
|
552
|
+
- lib/kumi/core/analyzer/passes/attach_anchors_pass.rb
|
553
|
+
- lib/kumi/core/analyzer/passes/attach_terminal_info_pass.rb
|
85
554
|
- lib/kumi/core/analyzer/passes/broadcast_detector.rb
|
555
|
+
- lib/kumi/core/analyzer/passes/codegen/js/declaration_emitter.rb
|
556
|
+
- lib/kumi/core/analyzer/passes/codegen/js/emitter.rb
|
557
|
+
- lib/kumi/core/analyzer/passes/codegen/js/output_buffer.rb
|
558
|
+
- lib/kumi/core/analyzer/passes/codegen/js_pass.rb
|
559
|
+
- lib/kumi/core/analyzer/passes/codegen/ruby/declaration_emitter.rb
|
560
|
+
- lib/kumi/core/analyzer/passes/codegen/ruby/emitter.rb
|
561
|
+
- lib/kumi/core/analyzer/passes/codegen/ruby/output_buffer.rb
|
562
|
+
- lib/kumi/core/analyzer/passes/codegen/ruby_pass.rb
|
563
|
+
- lib/kumi/core/analyzer/passes/constant_folding_pass.rb
|
564
|
+
- lib/kumi/core/analyzer/passes/contract_checker_pass.rb
|
86
565
|
- lib/kumi/core/analyzer/passes/declaration_validator.rb
|
87
566
|
- lib/kumi/core/analyzer/passes/dependency_resolver.rb
|
88
567
|
- lib/kumi/core/analyzer/passes/input_access_planner_pass.rb
|
89
568
|
- lib/kumi/core/analyzer/passes/input_collector.rb
|
569
|
+
- lib/kumi/core/analyzer/passes/input_form_schema_pass.rb
|
90
570
|
- lib/kumi/core/analyzer/passes/ir_dependency_pass.rb
|
91
571
|
- lib/kumi/core/analyzer/passes/ir_execution_schedule_pass.rb
|
92
572
|
- lib/kumi/core/analyzer/passes/join_reduce_planning_pass.rb
|
573
|
+
- lib/kumi/core/analyzer/passes/lir/constant_propagation_pass.rb
|
574
|
+
- lib/kumi/core/analyzer/passes/lir/dead_code_elimination_pass.rb
|
575
|
+
- lib/kumi/core/analyzer/passes/lir/hoist_scalar_references_pass.rb
|
576
|
+
- lib/kumi/core/analyzer/passes/lir/inline_declarations_pass.rb
|
577
|
+
- lib/kumi/core/analyzer/passes/lir/instruction_scheduling_pass.rb
|
578
|
+
- lib/kumi/core/analyzer/passes/lir/kernel_binding_pass.rb
|
579
|
+
- lib/kumi/core/analyzer/passes/lir/local_cse_pass.rb
|
580
|
+
- lib/kumi/core/analyzer/passes/lir/loop_fusion_pass.rb
|
581
|
+
- lib/kumi/core/analyzer/passes/lir/loop_invariant_code_motion_pass.rb
|
582
|
+
- lib/kumi/core/analyzer/passes/lir/lower_pass.rb
|
583
|
+
- lib/kumi/core/analyzer/passes/lir/stencil_emitter.rb
|
584
|
+
- lib/kumi/core/analyzer/passes/lir/validation_pass.rb
|
93
585
|
- lib/kumi/core/analyzer/passes/load_input_cse.rb
|
94
586
|
- lib/kumi/core/analyzer/passes/lower_to_ir_pass.rb
|
587
|
+
- lib/kumi/core/analyzer/passes/lower_to_irv2_pass.rb
|
95
588
|
- lib/kumi/core/analyzer/passes/name_indexer.rb
|
589
|
+
- lib/kumi/core/analyzer/passes/nast_dimensional_analyzer_pass.rb
|
590
|
+
- lib/kumi/core/analyzer/passes/normalize_to_nast_pass.rb
|
591
|
+
- lib/kumi/core/analyzer/passes/output_schema_pass.rb
|
96
592
|
- lib/kumi/core/analyzer/passes/pass_base.rb
|
593
|
+
- lib/kumi/core/analyzer/passes/precompute_access_paths_pass.rb
|
97
594
|
- lib/kumi/core/analyzer/passes/scope_resolution_pass.rb
|
98
595
|
- lib/kumi/core/analyzer/passes/semantic_constraint_validator.rb
|
596
|
+
- lib/kumi/core/analyzer/passes/snast_pass.rb
|
99
597
|
- lib/kumi/core/analyzer/passes/toposorter.rb
|
100
598
|
- lib/kumi/core/analyzer/passes/type_checker.rb
|
101
599
|
- lib/kumi/core/analyzer/passes/type_inferencer_pass.rb
|
@@ -105,6 +603,7 @@ files:
|
|
105
603
|
- lib/kumi/core/analyzer/state_serde.rb
|
106
604
|
- lib/kumi/core/analyzer/structs/access_plan.rb
|
107
605
|
- lib/kumi/core/analyzer/structs/input_meta.rb
|
606
|
+
- lib/kumi/core/analyzer/unsat_constant_evaluator.rb
|
108
607
|
- lib/kumi/core/atom_unsat_solver.rb
|
109
608
|
- lib/kumi/core/compiler/access_builder.rb
|
110
609
|
- lib/kumi/core/compiler/access_codegen.rb
|
@@ -114,6 +613,7 @@ files:
|
|
114
613
|
- lib/kumi/core/compiler/access_emit/ravel.rb
|
115
614
|
- lib/kumi/core/compiler/access_emit/read.rb
|
116
615
|
- lib/kumi/core/compiler/access_planner.rb
|
616
|
+
- lib/kumi/core/compiler/access_planner_v2.rb
|
117
617
|
- lib/kumi/core/compiler/accessors/base.rb
|
118
618
|
- lib/kumi/core/compiler/accessors/each_indexed_accessor.rb
|
119
619
|
- lib/kumi/core/compiler/accessors/materialize_accessor.rb
|
@@ -136,16 +636,9 @@ files:
|
|
136
636
|
- lib/kumi/core/export/node_registry.rb
|
137
637
|
- lib/kumi/core/export/node_serializers.rb
|
138
638
|
- lib/kumi/core/export/serializer.rb
|
139
|
-
- lib/kumi/core/
|
140
|
-
- lib/kumi/core/
|
141
|
-
- lib/kumi/core/
|
142
|
-
- lib/kumi/core/function_registry/conditional_functions.rb
|
143
|
-
- lib/kumi/core/function_registry/function_builder.rb
|
144
|
-
- lib/kumi/core/function_registry/logical_functions.rb
|
145
|
-
- lib/kumi/core/function_registry/math_functions.rb
|
146
|
-
- lib/kumi/core/function_registry/stat_functions.rb
|
147
|
-
- lib/kumi/core/function_registry/string_functions.rb
|
148
|
-
- lib/kumi/core/function_registry/type_functions.rb
|
639
|
+
- lib/kumi/core/functions/loader.rb
|
640
|
+
- lib/kumi/core/functions/model.rb
|
641
|
+
- lib/kumi/core/functions/type_rules.rb
|
149
642
|
- lib/kumi/core/input/type_matcher.rb
|
150
643
|
- lib/kumi/core/input/validator.rb
|
151
644
|
- lib/kumi/core/input/violation_creator.rb
|
@@ -155,9 +648,24 @@ files:
|
|
155
648
|
- lib/kumi/core/ir/execution_engine/interpreter.rb
|
156
649
|
- lib/kumi/core/ir/execution_engine/profiler.rb
|
157
650
|
- lib/kumi/core/ir/execution_engine/values.rb
|
651
|
+
- lib/kumi/core/irv2/builder.rb
|
652
|
+
- lib/kumi/core/irv2/declaration.rb
|
653
|
+
- lib/kumi/core/irv2/module.rb
|
654
|
+
- lib/kumi/core/irv2/value.rb
|
158
655
|
- lib/kumi/core/json_schema.rb
|
159
656
|
- lib/kumi/core/json_schema/generator.rb
|
160
657
|
- lib/kumi/core/json_schema/validator.rb
|
658
|
+
- lib/kumi/core/lir.rb
|
659
|
+
- lib/kumi/core/lir/analyze.rb
|
660
|
+
- lib/kumi/core/lir/build.rb
|
661
|
+
- lib/kumi/core/lir/emit.rb
|
662
|
+
- lib/kumi/core/lir/structs/instruction.rb
|
663
|
+
- lib/kumi/core/lir/structs/literal.rb
|
664
|
+
- lib/kumi/core/lir/structs/stamp.rb
|
665
|
+
- lib/kumi/core/lir/support/error.rb
|
666
|
+
- lib/kumi/core/lir/support/ids.rb
|
667
|
+
- lib/kumi/core/lir/validate.rb
|
668
|
+
- lib/kumi/core/nast.rb
|
161
669
|
- lib/kumi/core/ruby_parser.rb
|
162
670
|
- lib/kumi/core/ruby_parser/build_context.rb
|
163
671
|
- lib/kumi/core/ruby_parser/declaration_reference_proxy.rb
|
@@ -180,23 +688,41 @@ files:
|
|
180
688
|
- lib/kumi/core/types/normalizer.rb
|
181
689
|
- lib/kumi/core/types/validator.rb
|
182
690
|
- lib/kumi/dev.rb
|
691
|
+
- lib/kumi/dev/codegen.rb
|
692
|
+
- lib/kumi/dev/golden.rb
|
693
|
+
- lib/kumi/dev/golden/generator.rb
|
694
|
+
- lib/kumi/dev/golden/reporter.rb
|
695
|
+
- lib/kumi/dev/golden/representation.rb
|
696
|
+
- lib/kumi/dev/golden/result.rb
|
697
|
+
- lib/kumi/dev/golden/runtime_test.rb
|
698
|
+
- lib/kumi/dev/golden/suite.rb
|
699
|
+
- lib/kumi/dev/golden/verifier.rb
|
183
700
|
- lib/kumi/dev/ir.rb
|
184
701
|
- lib/kumi/dev/parse.rb
|
702
|
+
- lib/kumi/dev/pretty_printer.rb
|
703
|
+
- lib/kumi/dev/printer/irv2_formatter.rb
|
704
|
+
- lib/kumi/dev/printer/width_aware_json.rb
|
185
705
|
- lib/kumi/dev/profile_aggregator.rb
|
186
706
|
- lib/kumi/dev/profile_runner.rb
|
187
707
|
- lib/kumi/dev/runner.rb
|
708
|
+
- lib/kumi/dev/support/kumi_runner.mjs
|
188
709
|
- lib/kumi/errors.rb
|
189
710
|
- lib/kumi/frontends.rb
|
190
711
|
- lib/kumi/frontends/ruby.rb
|
191
712
|
- lib/kumi/frontends/text.rb
|
192
|
-
- lib/kumi/
|
193
|
-
- lib/kumi/
|
194
|
-
- lib/kumi/
|
713
|
+
- lib/kumi/kernel_registry.rb
|
714
|
+
- lib/kumi/pack.rb
|
715
|
+
- lib/kumi/pack/builder.rb
|
716
|
+
- lib/kumi/registry_v2.rb
|
717
|
+
- lib/kumi/registry_v2/loader.rb
|
195
718
|
- lib/kumi/schema.rb
|
196
719
|
- lib/kumi/schema_metadata.rb
|
197
720
|
- lib/kumi/support/diff.rb
|
198
721
|
- lib/kumi/support/ir_render.rb
|
722
|
+
- lib/kumi/support/lir_printer.rb
|
723
|
+
- lib/kumi/support/nast_printer.rb
|
199
724
|
- lib/kumi/support/s_expression_printer.rb
|
725
|
+
- lib/kumi/support/snast_printer.rb
|
200
726
|
- lib/kumi/syntax/array_expression.rb
|
201
727
|
- lib/kumi/syntax/call_expression.rb
|
202
728
|
- lib/kumi/syntax/cascade_expression.rb
|
@@ -213,13 +739,6 @@ files:
|
|
213
739
|
- lib/kumi/syntax/trait_declaration.rb
|
214
740
|
- lib/kumi/syntax/value_declaration.rb
|
215
741
|
- lib/kumi/version.rb
|
216
|
-
- performance_results.txt
|
217
|
-
- scripts/analyze_broadcast_methods.rb
|
218
|
-
- scripts/analyze_cascade_methods.rb
|
219
|
-
- scripts/check_broadcasting_coverage.rb
|
220
|
-
- scripts/find_dead_code.rb
|
221
|
-
- scripts/generate_function_docs.rb
|
222
|
-
- scripts/test_mixed_nesting_performance.rb
|
223
742
|
homepage: https://github.com/amuta/kumi
|
224
743
|
licenses:
|
225
744
|
- MIT
|
@@ -229,7 +748,6 @@ metadata:
|
|
229
748
|
source_code_uri: https://github.com/amuta/kumi
|
230
749
|
changelog_uri: https://github.com/amuta/kumi/blob/main/CHANGELOG.md
|
231
750
|
rubygems_mfa_required: 'true'
|
232
|
-
post_install_message:
|
233
751
|
rdoc_options: []
|
234
752
|
require_paths:
|
235
753
|
- lib
|
@@ -244,8 +762,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
762
|
- !ruby/object:Gem::Version
|
245
763
|
version: '0'
|
246
764
|
requirements: []
|
247
|
-
rubygems_version: 3.
|
248
|
-
signing_key:
|
765
|
+
rubygems_version: 3.6.9
|
249
766
|
specification_version: 4
|
250
767
|
summary: Kumi is a declarative rules-and-calculation DSL for Ruby that compiles your
|
251
768
|
business logic into a typed, analyzable dependency graph with
|