machine-dialect 0.1.0a1__py3-none-any.whl

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.
Files changed (268) hide show
  1. machine_dialect/__main__.py +667 -0
  2. machine_dialect/agent/__init__.py +5 -0
  3. machine_dialect/agent/agent.py +360 -0
  4. machine_dialect/ast/__init__.py +95 -0
  5. machine_dialect/ast/ast_node.py +35 -0
  6. machine_dialect/ast/call_expression.py +82 -0
  7. machine_dialect/ast/dict_extraction.py +60 -0
  8. machine_dialect/ast/expressions.py +439 -0
  9. machine_dialect/ast/literals.py +309 -0
  10. machine_dialect/ast/program.py +35 -0
  11. machine_dialect/ast/statements.py +1433 -0
  12. machine_dialect/ast/tests/test_ast_string_representation.py +62 -0
  13. machine_dialect/ast/tests/test_boolean_literal.py +29 -0
  14. machine_dialect/ast/tests/test_collection_hir.py +138 -0
  15. machine_dialect/ast/tests/test_define_statement.py +142 -0
  16. machine_dialect/ast/tests/test_desugar.py +541 -0
  17. machine_dialect/ast/tests/test_foreach_desugar.py +245 -0
  18. machine_dialect/cfg/__init__.py +6 -0
  19. machine_dialect/cfg/config.py +156 -0
  20. machine_dialect/cfg/examples.py +221 -0
  21. machine_dialect/cfg/generate_with_ai.py +187 -0
  22. machine_dialect/cfg/openai_generation.py +200 -0
  23. machine_dialect/cfg/parser.py +94 -0
  24. machine_dialect/cfg/tests/__init__.py +1 -0
  25. machine_dialect/cfg/tests/test_cfg_parser.py +252 -0
  26. machine_dialect/cfg/tests/test_config.py +188 -0
  27. machine_dialect/cfg/tests/test_examples.py +391 -0
  28. machine_dialect/cfg/tests/test_generate_with_ai.py +354 -0
  29. machine_dialect/cfg/tests/test_openai_generation.py +256 -0
  30. machine_dialect/codegen/__init__.py +5 -0
  31. machine_dialect/codegen/bytecode_module.py +89 -0
  32. machine_dialect/codegen/bytecode_serializer.py +300 -0
  33. machine_dialect/codegen/opcodes.py +101 -0
  34. machine_dialect/codegen/register_codegen.py +1996 -0
  35. machine_dialect/codegen/symtab.py +208 -0
  36. machine_dialect/codegen/tests/__init__.py +1 -0
  37. machine_dialect/codegen/tests/test_array_operations_codegen.py +295 -0
  38. machine_dialect/codegen/tests/test_bytecode_serializer.py +185 -0
  39. machine_dialect/codegen/tests/test_register_codegen_ssa.py +324 -0
  40. machine_dialect/codegen/tests/test_symtab.py +418 -0
  41. machine_dialect/codegen/vm_serializer.py +621 -0
  42. machine_dialect/compiler/__init__.py +18 -0
  43. machine_dialect/compiler/compiler.py +197 -0
  44. machine_dialect/compiler/config.py +149 -0
  45. machine_dialect/compiler/context.py +149 -0
  46. machine_dialect/compiler/phases/__init__.py +19 -0
  47. machine_dialect/compiler/phases/bytecode_optimization.py +90 -0
  48. machine_dialect/compiler/phases/codegen.py +40 -0
  49. machine_dialect/compiler/phases/hir_generation.py +39 -0
  50. machine_dialect/compiler/phases/mir_generation.py +86 -0
  51. machine_dialect/compiler/phases/optimization.py +110 -0
  52. machine_dialect/compiler/phases/parsing.py +39 -0
  53. machine_dialect/compiler/pipeline.py +143 -0
  54. machine_dialect/compiler/tests/__init__.py +1 -0
  55. machine_dialect/compiler/tests/test_compiler.py +568 -0
  56. machine_dialect/compiler/vm_runner.py +173 -0
  57. machine_dialect/errors/__init__.py +32 -0
  58. machine_dialect/errors/exceptions.py +369 -0
  59. machine_dialect/errors/messages.py +82 -0
  60. machine_dialect/errors/tests/__init__.py +0 -0
  61. machine_dialect/errors/tests/test_expected_token_errors.py +188 -0
  62. machine_dialect/errors/tests/test_name_errors.py +118 -0
  63. machine_dialect/helpers/__init__.py +0 -0
  64. machine_dialect/helpers/stopwords.py +225 -0
  65. machine_dialect/helpers/validators.py +30 -0
  66. machine_dialect/lexer/__init__.py +9 -0
  67. machine_dialect/lexer/constants.py +23 -0
  68. machine_dialect/lexer/lexer.py +907 -0
  69. machine_dialect/lexer/tests/__init__.py +0 -0
  70. machine_dialect/lexer/tests/helpers.py +86 -0
  71. machine_dialect/lexer/tests/test_apostrophe_identifiers.py +122 -0
  72. machine_dialect/lexer/tests/test_backtick_identifiers.py +140 -0
  73. machine_dialect/lexer/tests/test_boolean_literals.py +108 -0
  74. machine_dialect/lexer/tests/test_case_insensitive_keywords.py +188 -0
  75. machine_dialect/lexer/tests/test_comments.py +200 -0
  76. machine_dialect/lexer/tests/test_double_asterisk_keywords.py +127 -0
  77. machine_dialect/lexer/tests/test_lexer_position.py +113 -0
  78. machine_dialect/lexer/tests/test_list_tokens.py +282 -0
  79. machine_dialect/lexer/tests/test_stopwords.py +80 -0
  80. machine_dialect/lexer/tests/test_strict_equality.py +129 -0
  81. machine_dialect/lexer/tests/test_token.py +41 -0
  82. machine_dialect/lexer/tests/test_tokenization.py +294 -0
  83. machine_dialect/lexer/tests/test_underscore_literals.py +343 -0
  84. machine_dialect/lexer/tests/test_url_literals.py +169 -0
  85. machine_dialect/lexer/tokens.py +487 -0
  86. machine_dialect/linter/__init__.py +10 -0
  87. machine_dialect/linter/__main__.py +144 -0
  88. machine_dialect/linter/linter.py +154 -0
  89. machine_dialect/linter/rules/__init__.py +8 -0
  90. machine_dialect/linter/rules/base.py +112 -0
  91. machine_dialect/linter/rules/statement_termination.py +99 -0
  92. machine_dialect/linter/tests/__init__.py +1 -0
  93. machine_dialect/linter/tests/mdrules/__init__.py +0 -0
  94. machine_dialect/linter/tests/mdrules/test_md101_statement_termination.py +181 -0
  95. machine_dialect/linter/tests/test_linter.py +81 -0
  96. machine_dialect/linter/tests/test_rules.py +110 -0
  97. machine_dialect/linter/tests/test_violations.py +71 -0
  98. machine_dialect/linter/violations.py +51 -0
  99. machine_dialect/mir/__init__.py +69 -0
  100. machine_dialect/mir/analyses/__init__.py +20 -0
  101. machine_dialect/mir/analyses/alias_analysis.py +315 -0
  102. machine_dialect/mir/analyses/dominance_analysis.py +49 -0
  103. machine_dialect/mir/analyses/escape_analysis.py +286 -0
  104. machine_dialect/mir/analyses/loop_analysis.py +272 -0
  105. machine_dialect/mir/analyses/tests/test_type_analysis.py +736 -0
  106. machine_dialect/mir/analyses/type_analysis.py +448 -0
  107. machine_dialect/mir/analyses/use_def_chains.py +232 -0
  108. machine_dialect/mir/basic_block.py +385 -0
  109. machine_dialect/mir/dataflow.py +445 -0
  110. machine_dialect/mir/debug_info.py +208 -0
  111. machine_dialect/mir/hir_to_mir.py +1738 -0
  112. machine_dialect/mir/mir_dumper.py +366 -0
  113. machine_dialect/mir/mir_function.py +167 -0
  114. machine_dialect/mir/mir_instructions.py +1877 -0
  115. machine_dialect/mir/mir_interpreter.py +556 -0
  116. machine_dialect/mir/mir_module.py +225 -0
  117. machine_dialect/mir/mir_printer.py +480 -0
  118. machine_dialect/mir/mir_transformer.py +410 -0
  119. machine_dialect/mir/mir_types.py +367 -0
  120. machine_dialect/mir/mir_validation.py +455 -0
  121. machine_dialect/mir/mir_values.py +268 -0
  122. machine_dialect/mir/optimization_config.py +233 -0
  123. machine_dialect/mir/optimization_pass.py +251 -0
  124. machine_dialect/mir/optimization_pipeline.py +355 -0
  125. machine_dialect/mir/optimizations/__init__.py +84 -0
  126. machine_dialect/mir/optimizations/algebraic_simplification.py +733 -0
  127. machine_dialect/mir/optimizations/branch_prediction.py +372 -0
  128. machine_dialect/mir/optimizations/constant_propagation.py +634 -0
  129. machine_dialect/mir/optimizations/cse.py +398 -0
  130. machine_dialect/mir/optimizations/dce.py +288 -0
  131. machine_dialect/mir/optimizations/inlining.py +551 -0
  132. machine_dialect/mir/optimizations/jump_threading.py +487 -0
  133. machine_dialect/mir/optimizations/licm.py +405 -0
  134. machine_dialect/mir/optimizations/loop_unrolling.py +366 -0
  135. machine_dialect/mir/optimizations/strength_reduction.py +422 -0
  136. machine_dialect/mir/optimizations/tail_call.py +207 -0
  137. machine_dialect/mir/optimizations/tests/test_loop_unrolling.py +483 -0
  138. machine_dialect/mir/optimizations/type_narrowing.py +397 -0
  139. machine_dialect/mir/optimizations/type_specialization.py +447 -0
  140. machine_dialect/mir/optimizations/type_specific.py +906 -0
  141. machine_dialect/mir/optimize_mir.py +89 -0
  142. machine_dialect/mir/pass_manager.py +391 -0
  143. machine_dialect/mir/profiling/__init__.py +26 -0
  144. machine_dialect/mir/profiling/profile_collector.py +318 -0
  145. machine_dialect/mir/profiling/profile_data.py +372 -0
  146. machine_dialect/mir/profiling/profile_reader.py +272 -0
  147. machine_dialect/mir/profiling/profile_writer.py +226 -0
  148. machine_dialect/mir/register_allocation.py +302 -0
  149. machine_dialect/mir/reporting/__init__.py +17 -0
  150. machine_dialect/mir/reporting/optimization_reporter.py +314 -0
  151. machine_dialect/mir/reporting/report_formatter.py +289 -0
  152. machine_dialect/mir/ssa_construction.py +342 -0
  153. machine_dialect/mir/tests/__init__.py +1 -0
  154. machine_dialect/mir/tests/test_algebraic_associativity.py +204 -0
  155. machine_dialect/mir/tests/test_algebraic_complex_patterns.py +221 -0
  156. machine_dialect/mir/tests/test_algebraic_division.py +126 -0
  157. machine_dialect/mir/tests/test_algebraic_simplification.py +863 -0
  158. machine_dialect/mir/tests/test_basic_block.py +425 -0
  159. machine_dialect/mir/tests/test_branch_prediction.py +459 -0
  160. machine_dialect/mir/tests/test_call_lowering.py +168 -0
  161. machine_dialect/mir/tests/test_collection_lowering.py +604 -0
  162. machine_dialect/mir/tests/test_cross_block_constant_propagation.py +255 -0
  163. machine_dialect/mir/tests/test_custom_passes.py +166 -0
  164. machine_dialect/mir/tests/test_debug_info.py +285 -0
  165. machine_dialect/mir/tests/test_dict_extraction_lowering.py +192 -0
  166. machine_dialect/mir/tests/test_dictionary_lowering.py +299 -0
  167. machine_dialect/mir/tests/test_double_negation.py +231 -0
  168. machine_dialect/mir/tests/test_escape_analysis.py +233 -0
  169. machine_dialect/mir/tests/test_hir_to_mir.py +465 -0
  170. machine_dialect/mir/tests/test_hir_to_mir_complete.py +389 -0
  171. machine_dialect/mir/tests/test_hir_to_mir_simple.py +130 -0
  172. machine_dialect/mir/tests/test_inlining.py +435 -0
  173. machine_dialect/mir/tests/test_licm.py +472 -0
  174. machine_dialect/mir/tests/test_mir_dumper.py +313 -0
  175. machine_dialect/mir/tests/test_mir_instructions.py +445 -0
  176. machine_dialect/mir/tests/test_mir_module.py +860 -0
  177. machine_dialect/mir/tests/test_mir_printer.py +387 -0
  178. machine_dialect/mir/tests/test_mir_types.py +123 -0
  179. machine_dialect/mir/tests/test_mir_types_enhanced.py +132 -0
  180. machine_dialect/mir/tests/test_mir_validation.py +378 -0
  181. machine_dialect/mir/tests/test_mir_values.py +168 -0
  182. machine_dialect/mir/tests/test_one_based_indexing.py +202 -0
  183. machine_dialect/mir/tests/test_optimization_helpers.py +60 -0
  184. machine_dialect/mir/tests/test_optimization_pipeline.py +554 -0
  185. machine_dialect/mir/tests/test_optimization_reporter.py +318 -0
  186. machine_dialect/mir/tests/test_pass_manager.py +294 -0
  187. machine_dialect/mir/tests/test_pass_registration.py +64 -0
  188. machine_dialect/mir/tests/test_profiling.py +356 -0
  189. machine_dialect/mir/tests/test_register_allocation.py +307 -0
  190. machine_dialect/mir/tests/test_report_formatters.py +372 -0
  191. machine_dialect/mir/tests/test_ssa_construction.py +433 -0
  192. machine_dialect/mir/tests/test_tail_call.py +236 -0
  193. machine_dialect/mir/tests/test_type_annotated_instructions.py +192 -0
  194. machine_dialect/mir/tests/test_type_narrowing.py +277 -0
  195. machine_dialect/mir/tests/test_type_specialization.py +421 -0
  196. machine_dialect/mir/tests/test_type_specific_optimization.py +545 -0
  197. machine_dialect/mir/tests/test_type_specific_optimization_advanced.py +382 -0
  198. machine_dialect/mir/type_inference.py +368 -0
  199. machine_dialect/parser/__init__.py +12 -0
  200. machine_dialect/parser/enums.py +45 -0
  201. machine_dialect/parser/parser.py +3655 -0
  202. machine_dialect/parser/protocols.py +11 -0
  203. machine_dialect/parser/symbol_table.py +169 -0
  204. machine_dialect/parser/tests/__init__.py +0 -0
  205. machine_dialect/parser/tests/helper_functions.py +193 -0
  206. machine_dialect/parser/tests/test_action_statements.py +334 -0
  207. machine_dialect/parser/tests/test_boolean_literal_expressions.py +152 -0
  208. machine_dialect/parser/tests/test_call_statements.py +154 -0
  209. machine_dialect/parser/tests/test_call_statements_errors.py +187 -0
  210. machine_dialect/parser/tests/test_collection_mutations.py +264 -0
  211. machine_dialect/parser/tests/test_conditional_expressions.py +343 -0
  212. machine_dialect/parser/tests/test_define_integration.py +468 -0
  213. machine_dialect/parser/tests/test_define_statements.py +311 -0
  214. machine_dialect/parser/tests/test_dict_extraction.py +115 -0
  215. machine_dialect/parser/tests/test_empty_literal.py +155 -0
  216. machine_dialect/parser/tests/test_float_literal_expressions.py +163 -0
  217. machine_dialect/parser/tests/test_identifier_expressions.py +57 -0
  218. machine_dialect/parser/tests/test_if_empty_block.py +61 -0
  219. machine_dialect/parser/tests/test_if_statements.py +299 -0
  220. machine_dialect/parser/tests/test_illegal_tokens.py +86 -0
  221. machine_dialect/parser/tests/test_infix_expressions.py +680 -0
  222. machine_dialect/parser/tests/test_integer_literal_expressions.py +137 -0
  223. machine_dialect/parser/tests/test_interaction_statements.py +269 -0
  224. machine_dialect/parser/tests/test_list_literals.py +277 -0
  225. machine_dialect/parser/tests/test_no_none_in_ast.py +94 -0
  226. machine_dialect/parser/tests/test_panic_mode_recovery.py +171 -0
  227. machine_dialect/parser/tests/test_parse_errors.py +114 -0
  228. machine_dialect/parser/tests/test_possessive_syntax.py +182 -0
  229. machine_dialect/parser/tests/test_prefix_expressions.py +415 -0
  230. machine_dialect/parser/tests/test_program.py +13 -0
  231. machine_dialect/parser/tests/test_return_statements.py +89 -0
  232. machine_dialect/parser/tests/test_set_statements.py +152 -0
  233. machine_dialect/parser/tests/test_strict_equality.py +258 -0
  234. machine_dialect/parser/tests/test_symbol_table.py +217 -0
  235. machine_dialect/parser/tests/test_url_literal_expressions.py +209 -0
  236. machine_dialect/parser/tests/test_utility_statements.py +423 -0
  237. machine_dialect/parser/token_buffer.py +159 -0
  238. machine_dialect/repl/__init__.py +3 -0
  239. machine_dialect/repl/repl.py +426 -0
  240. machine_dialect/repl/tests/__init__.py +0 -0
  241. machine_dialect/repl/tests/test_repl.py +606 -0
  242. machine_dialect/semantic/__init__.py +12 -0
  243. machine_dialect/semantic/analyzer.py +906 -0
  244. machine_dialect/semantic/error_messages.py +189 -0
  245. machine_dialect/semantic/tests/__init__.py +1 -0
  246. machine_dialect/semantic/tests/test_analyzer.py +364 -0
  247. machine_dialect/semantic/tests/test_error_messages.py +104 -0
  248. machine_dialect/tests/edge_cases/__init__.py +10 -0
  249. machine_dialect/tests/edge_cases/test_boundary_access.py +256 -0
  250. machine_dialect/tests/edge_cases/test_empty_collections.py +166 -0
  251. machine_dialect/tests/edge_cases/test_invalid_operations.py +243 -0
  252. machine_dialect/tests/edge_cases/test_named_list_edge_cases.py +295 -0
  253. machine_dialect/tests/edge_cases/test_nested_structures.py +313 -0
  254. machine_dialect/tests/edge_cases/test_type_mixing.py +277 -0
  255. machine_dialect/tests/integration/test_array_operations_emulation.py +248 -0
  256. machine_dialect/tests/integration/test_list_compilation.py +395 -0
  257. machine_dialect/tests/integration/test_lists_and_dictionaries.py +322 -0
  258. machine_dialect/type_checking/__init__.py +21 -0
  259. machine_dialect/type_checking/tests/__init__.py +1 -0
  260. machine_dialect/type_checking/tests/test_type_system.py +230 -0
  261. machine_dialect/type_checking/type_system.py +270 -0
  262. machine_dialect-0.1.0a1.dist-info/METADATA +128 -0
  263. machine_dialect-0.1.0a1.dist-info/RECORD +268 -0
  264. machine_dialect-0.1.0a1.dist-info/WHEEL +5 -0
  265. machine_dialect-0.1.0a1.dist-info/entry_points.txt +3 -0
  266. machine_dialect-0.1.0a1.dist-info/licenses/LICENSE +201 -0
  267. machine_dialect-0.1.0a1.dist-info/top_level.txt +2 -0
  268. machine_dialect_vm/__init__.pyi +15 -0
@@ -0,0 +1,268 @@
1
+ machine_dialect/__main__.py,sha256=83sejOvmn0CQfXANI2QwPlyCp8I3CGiuoC0sDe6Dhdg,19977
2
+ machine_dialect/agent/__init__.py,sha256=t3DBpJPDFdUUjVQ4GdQvJ3V-RN0Gm7JI8J4c0eXmfco,115
3
+ machine_dialect/agent/agent.py,sha256=867Yec6fWki_cmcJLQUowNyAwbu1Fx9xs-_cgi57wSM,13001
4
+ machine_dialect/ast/__init__.py,sha256=1KLoMoidxgTwQKl_T8sTOwL9-iIxyKLVMU8ByVeLP-0,2080
5
+ machine_dialect/ast/ast_node.py,sha256=xbbJiY2EsoL1ovAljsUeRULQ7CskD7GAGO3shUhtOMM,1138
6
+ machine_dialect/ast/call_expression.py,sha256=5efM2Za4NuL3Rr96HwgWma8W2E65cO7xRGjVKbX0FzU,2497
7
+ machine_dialect/ast/dict_extraction.py,sha256=QBE5K-asO4-6pPZLSGFyiWohpg0W6HJs9Q3SOr1EsxQ,2047
8
+ machine_dialect/ast/expressions.py,sha256=PJhPtjDywF3128pfncWn8N7csxv1lHojJC9MefKk1rA,16161
9
+ machine_dialect/ast/literals.py,sha256=X0deQEOcWMbgjptHvOcV7CPug5zosTyA0S93w56aWEQ,9182
10
+ machine_dialect/ast/program.py,sha256=hXJ0AzB8ce9liAWyREARCBTO9H19yqTpcliTmgsXf0o,1148
11
+ machine_dialect/ast/statements.py,sha256=ySmM99at8YEJIeqNW2_tDQaR92aIhvGo-jqmzmd57G8,53159
12
+ machine_dialect/ast/tests/test_ast_string_representation.py,sha256=AN26Sl8ufYwkDUSuWuv30qUKSadzLry9kt1FrI97neU,2602
13
+ machine_dialect/ast/tests/test_boolean_literal.py,sha256=POWQzh12Fv4y_ovJFYoCv_4QWx97DqtJTt5Y0xyPpWk,1116
14
+ machine_dialect/ast/tests/test_collection_hir.py,sha256=7t2Fvh02CXnZfEz_ZYRm-HRbSNs5CD4oWkQDdF6K-Wo,5452
15
+ machine_dialect/ast/tests/test_define_statement.py,sha256=aLfWd5gXPmYBs9sjoAzK2l1m9DlFHv2o-wXun65lK7Q,5687
16
+ machine_dialect/ast/tests/test_desugar.py,sha256=246EwUZwQA75ziuW2J-2CTiNf2PYToOpFzV4hvCSEno,23105
17
+ machine_dialect/ast/tests/test_foreach_desugar.py,sha256=iVzh8fjXbAMZmwAU0x9aLzG0ZCx9rIImlrnHmj2wewY,10478
18
+ machine_dialect/cfg/__init__.py,sha256=UaMmEw4PitLd7z4TQn56Bj0v02zqkBO8yAs9fK6iTI4,269
19
+ machine_dialect/cfg/config.py,sha256=mdxtOWZpazmUr_SzbYtOYhncdxjpqmsZOep6bGtt89Y,4729
20
+ machine_dialect/cfg/examples.py,sha256=IVOCwzZe-ZjDneiVyxV7tqOpNtgVBn_WV_HX9CHA6us,6485
21
+ machine_dialect/cfg/generate_with_ai.py,sha256=sz0dl403x7l_62es24JnZVZSDIUPSdjEK0IVn-sFBVg,6021
22
+ machine_dialect/cfg/openai_generation.py,sha256=FmWXiip5dcAgav_-0Q2nAglYw7pdmWhEO_EHbqm43ho,8381
23
+ machine_dialect/cfg/parser.py,sha256=SDKsFFNP7o2AElVehLzRW8hg6ieMnIktDy-DNbAJ4bw,2966
24
+ machine_dialect/cfg/tests/__init__.py,sha256=aBC6i2-fdgFdR-A_CdzhNs3eRZegLxSs6LkjEnlJMx8,32
25
+ machine_dialect/cfg/tests/test_cfg_parser.py,sha256=cOWwUG9xPcbGp6fvqDt_aWafR-RokyOkJ_ixdh2mkHY,8836
26
+ machine_dialect/cfg/tests/test_config.py,sha256=2HGxzh8tVQmK7l5-A6jOQi6cYuoJnz0oxn4GmdAuCjo,7024
27
+ machine_dialect/cfg/tests/test_examples.py,sha256=B-RaM14rkhdbo3bLicB7bxGMW9MQ1xM9dNEL22qGzww,14869
28
+ machine_dialect/cfg/tests/test_generate_with_ai.py,sha256=1DZj0gmo94fAXhCxN12_GUXtkeqdbg1YaqdpWp7ORDs,13587
29
+ machine_dialect/cfg/tests/test_openai_generation.py,sha256=5KpkY16RvI7D9e8O-CgOYnbiX702G2JrFdQfLXGWQGY,10720
30
+ machine_dialect/codegen/__init__.py,sha256=Tyu0ACMgDZM9nYowRkqyJwiGa37lG7KilYQZgVe5ASY,129
31
+ machine_dialect/codegen/bytecode_module.py,sha256=ZeTOCr3CnNzh9uvSYVyw0i9Erxu5tDI2SRVgCyxrgy8,2129
32
+ machine_dialect/codegen/bytecode_serializer.py,sha256=H_JgaDDWRLrxaaMysxc9xviEVZFNjbtTk4xFgpfLsHs,10491
33
+ machine_dialect/codegen/opcodes.py,sha256=SUoK075fhq-qSqcLO3VhcaqmYp2DclY4AD6R0D3SRyc,3660
34
+ machine_dialect/codegen/register_codegen.py,sha256=clsWYeIuwje-HNd87bJ07oEHnePhbMUdB6_Ac2eR0do,75516
35
+ machine_dialect/codegen/symtab.py,sha256=GvYLQXYZbFhEHFZbQ0Q9ouJWuQLZ-x6XmeoZv0tvjJo,5751
36
+ machine_dialect/codegen/vm_serializer.py,sha256=pJ22JyN71tOYhE9AGIaOK3TWcchKeTwig8cFNeDNB14,23102
37
+ machine_dialect/codegen/tests/__init__.py,sha256=hhoNGdkH86NSTd95qWl4nOqjDjV1WmRPloAJocEw5h4,36
38
+ machine_dialect/codegen/tests/test_array_operations_codegen.py,sha256=SdazahR-wZqi1Ve72S0ZLEbaTEHG6mWYZhHjd3Nt9PU,11621
39
+ machine_dialect/codegen/tests/test_bytecode_serializer.py,sha256=bWLHBdSWabFVYbBirYM2C0a3id-_m1TD6pqoMGADAsc,5863
40
+ machine_dialect/codegen/tests/test_register_codegen_ssa.py,sha256=zT8pT1ORc3owWRjPmxME14RorEmQUEt0RusPb662eo8,12254
41
+ machine_dialect/codegen/tests/test_symtab.py,sha256=HZAG2jggABU36lySQU0lWdjwuQYIgz-hhOHTDXb1zqY,14599
42
+ machine_dialect/compiler/__init__.py,sha256=WdXqtOeFlsnZA-OczKMnjEMSnyhfprklMPYO4yQffSU,602
43
+ machine_dialect/compiler/compiler.py,sha256=y14LtS5U1BhPfP_JvcM750PyVjaMOuOg2uYRr4EO2sk,6588
44
+ machine_dialect/compiler/config.py,sha256=TvbLlPOFZOqja8Z-yDjOsnGYtjNweLURneqjAT1Go90,4896
45
+ machine_dialect/compiler/context.py,sha256=7SI5nKbelPLmuayt4JE7syh-3EpBQUvOD8vvW-mOv0w,4762
46
+ machine_dialect/compiler/pipeline.py,sha256=on2EqyNWGAgVt62xKpzxtz_gNAzJEm92NxxWQPRjjZE,5142
47
+ machine_dialect/compiler/vm_runner.py,sha256=XpHb4zToYTX5GJ38YqWud6Bd00sJYJBDNh3j0mlVKFc,5505
48
+ machine_dialect/compiler/phases/__init__.py,sha256=CeP4V1fPuYgxslJQ0RSdgrB5JHZMWJxAofurqfTenIM,652
49
+ machine_dialect/compiler/phases/bytecode_optimization.py,sha256=Rq-1PaflTj1yK-BipL7nYFGMGodWlE7n1VVX2NoBXDA,3282
50
+ machine_dialect/compiler/phases/codegen.py,sha256=HgZbm7Sq8AY8PrkSDnoMYShrg2LhveAsLxk6usKAj5Q,1373
51
+ machine_dialect/compiler/phases/hir_generation.py,sha256=LyA90N4_zjV8ezFRlnApfNhfIaPXei5705jzWn-z3N0,1213
52
+ machine_dialect/compiler/phases/mir_generation.py,sha256=E49NFai-3onPXd1_ZTJBfUsdJef6nKWPW6N_oC6zQS0,2968
53
+ machine_dialect/compiler/phases/optimization.py,sha256=Mth0da4LuJRDfvfoefhxPmFUrR934f0CBC0KHo7Bm_Q,4119
54
+ machine_dialect/compiler/phases/parsing.py,sha256=YSVCSFjfQtiuz7x3YGiiq2HSOgewcKb0viqc4-EWut0,1054
55
+ machine_dialect/compiler/tests/__init__.py,sha256=K59SFitlv3rJI4e58d6pq0TFLDg2xaAKERethMFeruo,56
56
+ machine_dialect/compiler/tests/test_compiler.py,sha256=kHs6D0AZA8aaJi1msYAcBkYV5VSAztCskI5uoRjWQWI,24284
57
+ machine_dialect/errors/__init__.py,sha256=odYZG_LngK60h8XM_xuPCIuz5qOPO2llgt6G_EYzyks,688
58
+ machine_dialect/errors/exceptions.py,sha256=MgygxhHWM7C_d-y7B7UYsoafys-HD1rg0WynpMQHz-Y,12952
59
+ machine_dialect/errors/messages.py,sha256=y-aOeWvuUVe7xyYafWgXh29Ma_GFkwRz9c_feLeXOCk,4626
60
+ machine_dialect/errors/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ machine_dialect/errors/tests/test_expected_token_errors.py,sha256=PdHPnqMLm78dqvQL21dHb52Hmjt43pOM-07i5FFc7I0,7523
62
+ machine_dialect/errors/tests/test_name_errors.py,sha256=Bnme6p7HWZXLVhfeSo_kdXsDjeZDC-7NJM2IaVCH3Mk,4729
63
+ machine_dialect/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ machine_dialect/helpers/stopwords.py,sha256=CXQOu8OkkE7lrq-cXAOQtWUqAd-LaG0wgSxljX1rPR4,3414
65
+ machine_dialect/helpers/validators.py,sha256=vqQsb0xP6wtcTIUQHcrfo7h_bsqw9dwM5D7cA4y10ZI,1100
66
+ machine_dialect/lexer/__init__.py,sha256=m7Wb22Vmg2aBQdGMWM9pUOViQbrLPwzNVNTyRoAfoSo,165
67
+ machine_dialect/lexer/constants.py,sha256=v2IS3t19-QldL_I2Hmr2CdZqqjwjKjcAZV7ddxUzf4A,686
68
+ machine_dialect/lexer/lexer.py,sha256=X7EVzyHsJERl1AgTVw5UfFeA9kg71Rv2Sr8YZcn79yE,38051
69
+ machine_dialect/lexer/tokens.py,sha256=mYUVe-XOxLT6OQDNmB-XXSOAGmw4-rnENnOUdHNL5ko,17150
70
+ machine_dialect/lexer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ machine_dialect/lexer/tests/helpers.py,sha256=NRa0CxciIllcGWINiiIBUSGllRA_ffuT4GY6BgadB0k,2967
72
+ machine_dialect/lexer/tests/test_apostrophe_identifiers.py,sha256=o0mFA5T7n4waCVEBq_F_5mkmVhxRBGSX5psAmijDRvo,4760
73
+ machine_dialect/lexer/tests/test_backtick_identifiers.py,sha256=FE7i6L-VDXzqcpkC8mRmBBmoSfABxHZjfpws7DLx_e4,5362
74
+ machine_dialect/lexer/tests/test_boolean_literals.py,sha256=KG-56sxKR5qghajeRbqhCQEwgma1llrT1c56Znh2BRA,3533
75
+ machine_dialect/lexer/tests/test_case_insensitive_keywords.py,sha256=uz9hG1ZfhnO3ufNSQIkrGv37fPBYU46YN5mFtve-mBY,8187
76
+ machine_dialect/lexer/tests/test_comments.py,sha256=6LjT75fNyeSSQbaL5D-wE1O9C4lnXo90yxHFywpED4E,7683
77
+ machine_dialect/lexer/tests/test_double_asterisk_keywords.py,sha256=Izbi1ySokCK-xuRd7ORAoPYfdv9XEl9BdG_7xABJrC8,5242
78
+ machine_dialect/lexer/tests/test_lexer_position.py,sha256=l7Wz5qW6cSqb1TIpQGDDze5oA24n3yc06BWzlh3zl_8,4264
79
+ machine_dialect/lexer/tests/test_list_tokens.py,sha256=zjh6pOiDJDwI4eEJmfeXQJY5qJbu6hMUiKNiXfXq3Ww,9878
80
+ machine_dialect/lexer/tests/test_stopwords.py,sha256=EFRVWGC0--MEPaNqkfG8bKmxIGmw1wljEyoXPA9fEd8,4455
81
+ machine_dialect/lexer/tests/test_strict_equality.py,sha256=djr0Xn3lWh7gZUddoWK390dX8_Tc2sO5uUteY0x_l5o,5485
82
+ machine_dialect/lexer/tests/test_token.py,sha256=yg18ZMdRe9wlsq35q5d1w-UdcZcPx7opAsH_g2qKJpg,1679
83
+ machine_dialect/lexer/tests/test_tokenization.py,sha256=VAKqLy1CURjRt2MmtdkOD8Jt2ZXUo8pZs4t1QsgbGI0,16616
84
+ machine_dialect/lexer/tests/test_underscore_literals.py,sha256=a4JNWaVU4SbP_jvu1ZvvlEsTmXTmUyvJNqjrj-MjHZE,11817
85
+ machine_dialect/lexer/tests/test_url_literals.py,sha256=8ALgx_q0EpqRdS3_o0pKGR4OAr8mUoKLC8QNOfe8viQ,6358
86
+ machine_dialect/linter/__init__.py,sha256=Lra0MIrZduriVcDQpwkFf53f9t8avmX5_T8yXBwuLk0,323
87
+ machine_dialect/linter/__main__.py,sha256=BtAkEpTZTW98L3svcNzb8FnT4-RcTW8hm4mgIIh5ZWo,4088
88
+ machine_dialect/linter/linter.py,sha256=mFGIZh3DOxku0Ld2mtka10mMKsikk0-0L6WrTNpIpyM,4802
89
+ machine_dialect/linter/violations.py,sha256=HGDnOT_4fWPQQ7R3qmjJu9w51APXjvgkT8dUlW-XQ74,1558
90
+ machine_dialect/linter/rules/__init__.py,sha256=5dnbBfpo8ICn5r6imBZCkYRoncJCLTB90AMn3Ll_0mA,167
91
+ machine_dialect/linter/rules/base.py,sha256=YhlCupDyOxpR87UdRpg23fvB3AMrgv3dkghFJ5IkA9o,3321
92
+ machine_dialect/linter/rules/statement_termination.py,sha256=B8fQfyu5am7f_xQoCNtzTM7j_21JXx3nmyTCDdisaEo,3678
93
+ machine_dialect/linter/tests/__init__.py,sha256=a6P4b15odzCKBuVGgDJdu9CXHX8Zf5aakNW6Rwqdd_8,47
94
+ machine_dialect/linter/tests/test_linter.py,sha256=9W3l0SM7KQOPN81nHMDUT7si7-l2uUN07mhG6jfdrlM,2844
95
+ machine_dialect/linter/tests/test_rules.py,sha256=PK15wDCijRIIf7IcUYed3jSRtr8A6epxY6Jd84Wr_xQ,4508
96
+ machine_dialect/linter/tests/test_violations.py,sha256=ebh7kwsm_jj9IIoT1Xib48qx1yE385T5FCtRkb_17Og,2479
97
+ machine_dialect/linter/tests/mdrules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ machine_dialect/linter/tests/mdrules/test_md101_statement_termination.py,sha256=qpwuznzhIgXmlNauxaMFhjl7vPqYmHWhyDEpqApCWqw,7218
99
+ machine_dialect/mir/__init__.py,sha256=cPUPgi_872IWa_-dZCUWiJTlFlwSz_61TAnjRM9JFGc,1649
100
+ machine_dialect/mir/basic_block.py,sha256=Olw-sD_m98uSm1C-mCMec1__zWuQY14VH9HNhaciwlU,11657
101
+ machine_dialect/mir/dataflow.py,sha256=gzejNVJF9JuQKOnbBWADivJRRXpSRCKbcH5Azbn2Sp0,14014
102
+ machine_dialect/mir/debug_info.py,sha256=O4Xq9dG0dBNRNNnDhMIQxuUVLuTPNhg2XP9wImNzduw,6086
103
+ machine_dialect/mir/hir_to_mir.py,sha256=WOrAC-ECXUyWTNQO5cNA0XBHVrskrnOqywmIua6Gwco,78679
104
+ machine_dialect/mir/mir_dumper.py,sha256=5EX-gPkCBeo6AQvJl9Ug3w2Lik8Meoc9b0XNhTeL0-U,12241
105
+ machine_dialect/mir/mir_function.py,sha256=Nd1bcgLOAeOeILL3qPTJ4jHWU3sjKp6CwkItAMwx9xw,4843
106
+ machine_dialect/mir/mir_instructions.py,sha256=QHooVVHSRpIEmDgj25FpkdMNEvtw1smywlTdL34bzP8,57269
107
+ machine_dialect/mir/mir_interpreter.py,sha256=4GZ6NCxi5CKQMrQffvOb9JwqocupJqQbhbLfPqZPKW4,19916
108
+ machine_dialect/mir/mir_module.py,sha256=5UIRI8IxsCsvTfdVRRGZWId5m7xym6sKQQrPjIS9VeQ,7144
109
+ machine_dialect/mir/mir_printer.py,sha256=6qgoI_fblp5NAKUZ_Zp8_4uhWtfj_Ndn3WHQaV-LL_0,15540
110
+ machine_dialect/mir/mir_transformer.py,sha256=lMFHJceKDCXAbQZJOn8_7sPVvfi7AB7zFoDeYaW8Veo,13336
111
+ machine_dialect/mir/mir_types.py,sha256=srT8SWLgGcEM9RJdyyrP41pDrDFu7Rdyjf0Mz6b8Ips,10106
112
+ machine_dialect/mir/mir_validation.py,sha256=0sTExyFr85U-COlQ1d_6R2hx8DDywRrlp9J3ju3JnIo,14424
113
+ machine_dialect/mir/mir_values.py,sha256=EOCkkL4ylk3V3eRg9zthnhUkVd3zTQDJ1CYCFTu2IXo,8489
114
+ machine_dialect/mir/optimization_config.py,sha256=S2ISvpJFxW162UJVBpnWLHds6pADTugqkVSPsMTgru8,7467
115
+ machine_dialect/mir/optimization_pass.py,sha256=6x64ddfYNnuecAHai4Hr_xp4ULoOUXDMaLv6-PwegEA,6641
116
+ machine_dialect/mir/optimization_pipeline.py,sha256=ZWgnEhedT5nvXFIaxV7Eh9Vbj7MgFlGtGad5nK8Wr_c,12565
117
+ machine_dialect/mir/optimize_mir.py,sha256=GM-d3jMg8wN4S7sBbUywSXAcr85kMCEVRVYZqvt70jA,2819
118
+ machine_dialect/mir/pass_manager.py,sha256=aorRXEbzl6egU9rmS92kuhQNBcWL9Rff8ursT8IEuSU,12671
119
+ machine_dialect/mir/register_allocation.py,sha256=jyOqZbYxIYxPjj1fmWZbz1uOLGAXmbe3KTeleESTzpU,11063
120
+ machine_dialect/mir/ssa_construction.py,sha256=Pi9RNFeDyn3_4vpobjQ5JaZ03McUiFkFp6ANFRYnO48,13170
121
+ machine_dialect/mir/type_inference.py,sha256=ReZW07PEVfNBp8XpqApKUoACpbsFytj5SIHs8vy2DDo,13863
122
+ machine_dialect/mir/analyses/__init__.py,sha256=t4b93Z08SUKV0Xc3QLxGRY-500jYCIhqF5cCdlf8TvQ,660
123
+ machine_dialect/mir/analyses/alias_analysis.py,sha256=hFFvRxQ5zcyoi0IilWUCHCnOsBr4sVehp8mOFh1RZ80,10915
124
+ machine_dialect/mir/analyses/dominance_analysis.py,sha256=i-iKI3Dc686vj8EDn3KoSNRrTDZFBUa-pxwau65q-po,1258
125
+ machine_dialect/mir/analyses/escape_analysis.py,sha256=Uh7FbNNXz4WFYUbe8-Dp4VBZxJXLm0smvKrh_iVYRcA,10180
126
+ machine_dialect/mir/analyses/loop_analysis.py,sha256=RvRPB8iykQ3tB2jnAcv7KVeAchlkNoog9WWF9RYKzIU,8190
127
+ machine_dialect/mir/analyses/type_analysis.py,sha256=06-DRLe305Nnxb3qhWV7eQ3o_9d1fyumTU4NsXdrfFY,14868
128
+ machine_dialect/mir/analyses/use_def_chains.py,sha256=f0qzK-J1OvRzU2qlfLvCWAXO9OSPAzI9hNvz18O6x2c,7352
129
+ machine_dialect/mir/analyses/tests/test_type_analysis.py,sha256=X2Y0E8YIqfvYFWGdDOvbquamLRAYvVoGD2rfYO7aV54,26252
130
+ machine_dialect/mir/optimizations/__init__.py,sha256=QHopy8fg_f2rdBf2hvs-Sb_57rFORR9i7OARQ0uHwGQ,3971
131
+ machine_dialect/mir/optimizations/algebraic_simplification.py,sha256=TsBahylrvQdThraFJD4DSu6ncQUXTaeBh0uWxSWQaOU,30454
132
+ machine_dialect/mir/optimizations/branch_prediction.py,sha256=ysjaHfgSe6EIYO4iJw8bFlPUkoGNe6t7AIfwcZgaVRk,13542
133
+ machine_dialect/mir/optimizations/constant_propagation.py,sha256=zY3IOUrD8PIKO5YMODz-YaosoaNcym8wVWebJ_v2tQ4,21932
134
+ machine_dialect/mir/optimizations/cse.py,sha256=17qNpwrQuFi768RU3k4S43uHU8rpVq-7pVsHEDjGP8k,13687
135
+ machine_dialect/mir/optimizations/dce.py,sha256=KqSKf4BZuuTrIhwKXtB8wSpMB4s4hJsPFAkYtJcY47Q,9433
136
+ machine_dialect/mir/optimizations/inlining.py,sha256=MH1n4tLJFB6_tqKlIppM2EiLpeo73k7ipBSR1hGPul4,20069
137
+ machine_dialect/mir/optimizations/jump_threading.py,sha256=OkulZU0pg5RP6dHjxccdFKMziM48L_Je3oxfMGBkxlc,16432
138
+ machine_dialect/mir/optimizations/licm.py,sha256=kVuGa8HJH6iGgDFLI0kDQJD5KJIPPgYxQhnWNsPa9eA,15536
139
+ machine_dialect/mir/optimizations/loop_unrolling.py,sha256=SenBegZfJqqg1MtYTpLQlosUQyHDGRS6jh_ZRxHWiEc,12690
140
+ machine_dialect/mir/optimizations/strength_reduction.py,sha256=o3awq1OaeD5ki6NUbvwL-1wuKnNmkUZiHOYA99Ek1og,16946
141
+ machine_dialect/mir/optimizations/tail_call.py,sha256=fFM5ARDWfdnPv8p-trEwHnE08rCFGkOcy_F5prnMHw0,7410
142
+ machine_dialect/mir/optimizations/type_narrowing.py,sha256=53oT6Jp8GMX7KWvWEebkXgW45j7vQLKVvqIXs14GHvY,14220
143
+ machine_dialect/mir/optimizations/type_specialization.py,sha256=VuGApG8OlbCsIMRWZBtY761GNNOy7tNQZF_X6P03gKc,16247
144
+ machine_dialect/mir/optimizations/type_specific.py,sha256=UkwuYwYDtJwPgBRufmWtwbS7qpwkykCKPgqxi0D5xSE,38171
145
+ machine_dialect/mir/optimizations/tests/test_loop_unrolling.py,sha256=bN6G0KK_odbQs72Mmm8zK6FpRsTad5JPIBBeCWdK-2w,17836
146
+ machine_dialect/mir/profiling/__init__.py,sha256=_zNlyFbhXXYoYLzTVR3gyOAh6yeQItbcNNkNn_Jv960,767
147
+ machine_dialect/mir/profiling/profile_collector.py,sha256=mufWPTw-fSDWUW2Jw8pUza9ApVpZ9jv82q7wgzXLXEs,10713
148
+ machine_dialect/mir/profiling/profile_data.py,sha256=4JRirzqLPxh_EEdn7LF4E3xK2GuY2um4Dyjv_CpyDSo,12986
149
+ machine_dialect/mir/profiling/profile_reader.py,sha256=eWuQhrX8xrBWxa2913hlgCwr8O2pIGQw2BYcPLgTNLA,9571
150
+ machine_dialect/mir/profiling/profile_writer.py,sha256=IgnmnKaJsmJLjitxG_cL5JnQuXBVjAR3E-mrafZLvBA,9272
151
+ machine_dialect/mir/reporting/__init__.py,sha256=hvOC-65i67Qhu_OSs18ClBrhDAR2jOdy-HYj5q_3wBc,441
152
+ machine_dialect/mir/reporting/optimization_reporter.py,sha256=KL72TrfFhsbA2KJV1aYEfzg7I-C6tuTq3vUtbtXXJps,10310
153
+ machine_dialect/mir/reporting/report_formatter.py,sha256=fBAiNTvBp7utdn55wwjxE_pMJvF_40g7dE5lDzZjFUM,10573
154
+ machine_dialect/mir/tests/__init__.py,sha256=fLyox-QzMrCh-aWnunlgM27NxJi9H2A6tyvRq1jOzUk,40
155
+ machine_dialect/mir/tests/test_algebraic_associativity.py,sha256=9DRjjguy1KMd94M_n1iWlViWQ2N1SNm8E6PSJoPOO08,9011
156
+ machine_dialect/mir/tests/test_algebraic_complex_patterns.py,sha256=HxgvKGSGj1xEKj-N2bB9bmLC5nViXuRtlcCNcbl0SWs,9412
157
+ machine_dialect/mir/tests/test_algebraic_division.py,sha256=-Y9XnlaWPEVAYjFCT6xc3V7SQzdazChsTqhb8zlejS8,5165
158
+ machine_dialect/mir/tests/test_algebraic_simplification.py,sha256=dSduTgdwTZxYSM5ZhgNwLFU4Hf0qf04OLRoaX1jtIUU,33620
159
+ machine_dialect/mir/tests/test_basic_block.py,sha256=I-INQwvO-89WAjIgZm_auNcxk4yswQnc4R_v3-vWfB0,13098
160
+ machine_dialect/mir/tests/test_branch_prediction.py,sha256=v-BOgMPfEIdEl5RrzRgm6xQgm3zsyXLoyyCsIzbNmQ8,17056
161
+ machine_dialect/mir/tests/test_call_lowering.py,sha256=op54R1WrbnyDEKTo8ApAWGHbGuAMQnWReiSc0kcwcVY,6280
162
+ machine_dialect/mir/tests/test_collection_lowering.py,sha256=S-sTkEYPPg55cp887kPSSBthbh99CfpiRYqEo0c2m04,20648
163
+ machine_dialect/mir/tests/test_cross_block_constant_propagation.py,sha256=YSZ_RrpWnB_CB1Zi-LK7VW6libPNsIDH73cAJSlsDYU,9371
164
+ machine_dialect/mir/tests/test_custom_passes.py,sha256=5TJON0ASc2WwweEqNZcgQVT092YJClN1a8DjsYg-ZM8,6455
165
+ machine_dialect/mir/tests/test_debug_info.py,sha256=c9FNI1donI-QOcBjpZZkpLHiN5oOolic5Pic78ERVmM,10751
166
+ machine_dialect/mir/tests/test_dict_extraction_lowering.py,sha256=CKchcQh-aOQ5_SqYbg7T6R-aLJj6un8TKz1VTS5viLA,7408
167
+ machine_dialect/mir/tests/test_dictionary_lowering.py,sha256=_2OpaLh6XgYSp2rxUr8f0o_YD38yzMs9gMTmIl_pTwI,12301
168
+ machine_dialect/mir/tests/test_double_negation.py,sha256=wSh3bjGsghH9DPiKiA8XMuUWTgRUGWpQI5yoDwN-vWQ,7436
169
+ machine_dialect/mir/tests/test_escape_analysis.py,sha256=YJypQH1DiScumSajYEERbWNQ2siNE-aiUckNlPO2vYU,7269
170
+ machine_dialect/mir/tests/test_hir_to_mir.py,sha256=F8UiT-tf0Z42Jhph5Zx8-NeJx1UZ6Awfz6Y42TZUgKQ,19263
171
+ machine_dialect/mir/tests/test_hir_to_mir_complete.py,sha256=FrRmZGrrwXDGW7gKxIdutksVncP4JSvYBGiGc79w-8A,14594
172
+ machine_dialect/mir/tests/test_hir_to_mir_simple.py,sha256=7DQnh5iOhUdXR4dbRy_C8uV8T03h4btN4HpPx0nST2E,4791
173
+ machine_dialect/mir/tests/test_inlining.py,sha256=seFMonj9Ls_UCNyD-Rbhe28qBaRVBjiy2ybOfIuPylU,15419
174
+ machine_dialect/mir/tests/test_licm.py,sha256=tSLDfzO6QnwNr-znkDeZro7K4s3AA0ltPGPVMooMeTc,17258
175
+ machine_dialect/mir/tests/test_mir_dumper.py,sha256=z2g9uk2RTaQNDFO7K9SdLzxd6_ewelJWP9eN6HVUPzc,10231
176
+ machine_dialect/mir/tests/test_mir_instructions.py,sha256=o4ZA6lhXpOXTT4ESw09aWX1fTNRMJL0xs4yBOW4c4fQ,14363
177
+ machine_dialect/mir/tests/test_mir_module.py,sha256=_y1z7JALFVRq68K7Y9BKoLFZdD4K5J5zVgHwfJbThKA,29659
178
+ machine_dialect/mir/tests/test_mir_printer.py,sha256=iH1ERyoHEJnGMxCVHLNxQCaKD6eiltOTyqEldRzOejE,12620
179
+ machine_dialect/mir/tests/test_mir_types.py,sha256=ZiwZ3gAyX6Rd8SH5HXLDfcOtjURuVMwPkLlATxuy79o,5410
180
+ machine_dialect/mir/tests/test_mir_types_enhanced.py,sha256=_VXRY_bfcc6drAN2mvQC7J5wGpwl3hoz_40S5-bFZZk,5721
181
+ machine_dialect/mir/tests/test_mir_validation.py,sha256=0xK3nEEE3-qmwRlLqjC61B5PMn7id2PPmLcTILD4cQ8,13654
182
+ machine_dialect/mir/tests/test_mir_values.py,sha256=XQWhXM1LQV8QmxEwmBQApzEnYCgz2jtCy0xa8pTYjNk,5433
183
+ machine_dialect/mir/tests/test_one_based_indexing.py,sha256=hY3Vkdzmn76piH4BzBvWnscBCcsZAURYMVaT15TNLas,9555
184
+ machine_dialect/mir/tests/test_optimization_helpers.py,sha256=t6sdRKq4-KKOIc_rI1-FJJLT64W7DIVPWYPQeK2OSgo,2278
185
+ machine_dialect/mir/tests/test_optimization_pipeline.py,sha256=-_0EQrdQrnlqsRcnRUb4tuXDf_iy3LpGYdN6r6J29l8,20055
186
+ machine_dialect/mir/tests/test_optimization_reporter.py,sha256=o5nHiNqc9lr5fmTug3C6FL2vj9DReOBZ0UzS9rXa-QU,10235
187
+ machine_dialect/mir/tests/test_pass_manager.py,sha256=_TLO-TRh48C6QgG1uykb1JYgo53rvlB6gq8aoP5-_Dc,9580
188
+ machine_dialect/mir/tests/test_pass_registration.py,sha256=1DWyCTKey2XBcVHZVOMm4LQaXddUGE-DIu5du2VAvcQ,2931
189
+ machine_dialect/mir/tests/test_profiling.py,sha256=JkyetmzWuP3Q0SleGQodGRKcvriW_pyiEdrDoDTXuCU,13387
190
+ machine_dialect/mir/tests/test_register_allocation.py,sha256=NG9L8aZeJEsxQKqZ0ICvYbLDXOgzb9LEqA6AXjGmgeI,13116
191
+ machine_dialect/mir/tests/test_report_formatters.py,sha256=mIYhF26nnXy0lBWoQ1RiRJvmxOiBEYb9bdHkQfM3vyo,11666
192
+ machine_dialect/mir/tests/test_ssa_construction.py,sha256=FAGl2GHlL_VvjZu-R4-IXMN0btB71hGmPzdGopNirus,15303
193
+ machine_dialect/mir/tests/test_tail_call.py,sha256=WleJ4yja2waddMO31CC0gcUtn3YNs5LjYnPYtEZHAMk,7683
194
+ machine_dialect/mir/tests/test_type_annotated_instructions.py,sha256=yX1y9fwKPJzmtQlijwacPRrlUYwRnfhH2BfHgk5dBGg,7196
195
+ machine_dialect/mir/tests/test_type_narrowing.py,sha256=xn7B7yA35GuGns_f312AGLDC6-zuRHR0lwUZIB_QyFY,10829
196
+ machine_dialect/mir/tests/test_type_specialization.py,sha256=Ychina66pRW1XPLX9tBUoKCpjRrhI6hdspYPzojAIfI,15386
197
+ machine_dialect/mir/tests/test_type_specific_optimization.py,sha256=JmSXGV9h40y_gXZolT9qj55oUQH-9QI452uc2YNAEHc,18721
198
+ machine_dialect/mir/tests/test_type_specific_optimization_advanced.py,sha256=FqwpnYqL8OeZ81tjqVpg2a5j73l2kUGGxI8g4v5hzHw,13686
199
+ machine_dialect/parser/__init__.py,sha256=ZOY7r2PtKtg8O0oP6mfPrWZlLIOMMucaCoPICsSsWhc,250
200
+ machine_dialect/parser/enums.py,sha256=E4NUqGlqUEPuzm0Pm0DW_mmbKVA5PkcVR4u9SvTiBUg,1457
201
+ machine_dialect/parser/parser.py,sha256=z_RajKDKTkIrNLiQspRtVVCp_NO4fwVHBF6OziUsdYs,152846
202
+ machine_dialect/parser/protocols.py,sha256=7c9YTmrwOQqGaV91pn2V_KGroqlrXt8DH6ReJO0vzlc,442
203
+ machine_dialect/parser/symbol_table.py,sha256=GKAPWRf_xU6cumuPQSzgiXVacmaLddl9iveqFGEpNb0,5598
204
+ machine_dialect/parser/token_buffer.py,sha256=IyIKbgB8v0W7LPUp_xl50ABv6i5Ma5nGGM9-r_JumsU,6248
205
+ machine_dialect/parser/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
+ machine_dialect/parser/tests/helper_functions.py,sha256=pj0ycjnKlxU_If6HSS9K01BhWqli-b6Spj5uGeH3toM,7948
207
+ machine_dialect/parser/tests/test_action_statements.py,sha256=MltcjydMLF25jz3ApvtNnezR7LxVtsXgxa8_9ytEL9E,10543
208
+ machine_dialect/parser/tests/test_boolean_literal_expressions.py,sha256=__ZxSDW3H8_DEjqNo1Ss8W0XiwR6HJGtm0FQtJdao6A,5129
209
+ machine_dialect/parser/tests/test_call_statements.py,sha256=YZsvGoheYjhAln3x8zrrv8oH-8UQSpOuBuag9zhKTeo,5936
210
+ machine_dialect/parser/tests/test_call_statements_errors.py,sha256=LeSjp7pFVkwLlxQmzxZLQ942WCgwqD6InYBJDCOvUMU,8612
211
+ machine_dialect/parser/tests/test_collection_mutations.py,sha256=PWEQj1S8JzqdyxApiwx_0ecJS0kXr8ZxSyqhI9rgWlY,9353
212
+ machine_dialect/parser/tests/test_conditional_expressions.py,sha256=6AArLoy_bf21AVU31OywOM1AE-UzmAgyso2P7M8hNdE,14019
213
+ machine_dialect/parser/tests/test_define_integration.py,sha256=NntX-ShrzY4ofDtcsoSWtsYz0dicopORcyxgmEFu7Sw,15054
214
+ machine_dialect/parser/tests/test_define_statements.py,sha256=WMs_SNsZ2AcgMha5AUHVpPcMGi4wAFYQskbmApQZZFo,11832
215
+ machine_dialect/parser/tests/test_dict_extraction.py,sha256=pPXNCvLN7zF_OfNuskrTIfCJyO0fZXt6wXQWb0NxC-s,4896
216
+ machine_dialect/parser/tests/test_empty_literal.py,sha256=9I_dqNJ5T6WwqQHdpi6Nt4YYA_JyIj_LBGOK4Qzauy8,6074
217
+ machine_dialect/parser/tests/test_float_literal_expressions.py,sha256=QkLuXZS677Uw0u_gJlFxguh5ZjnFsmCvL-Fwxr-zbLg,5585
218
+ machine_dialect/parser/tests/test_identifier_expressions.py,sha256=PdLOqgeU9MlDXBfRLczsGTL_MWZTvbAYkwS-0fqoEJU,1982
219
+ machine_dialect/parser/tests/test_if_empty_block.py,sha256=fbIBUC5eHr0a0yRRlPhl2Z7b6lSaAcfmAtL5n33k9I4,2055
220
+ machine_dialect/parser/tests/test_if_statements.py,sha256=eyl2KJNBlQ7QfB8T-jPCqwsfBxWgF3ygsyWHrg9qJvw,9679
221
+ machine_dialect/parser/tests/test_illegal_tokens.py,sha256=TWOUp4Wu8TMPvOg968-C5cSCJKdg_Ar7A7HIWaVjVSE,3592
222
+ machine_dialect/parser/tests/test_infix_expressions.py,sha256=FkN1uCk1dO9JKEUY4MANjsPVJ-QAxGWTUBbqP499VdE,28607
223
+ machine_dialect/parser/tests/test_integer_literal_expressions.py,sha256=U3l91jBJrS-ARNCN1XoAtEb-1v91YoDvc8jma1pVpbs,4522
224
+ machine_dialect/parser/tests/test_interaction_statements.py,sha256=zhJ-tJAoQb_knbnpuJchBGmeHmBh34Q_F0PFc_Zb20A,8513
225
+ machine_dialect/parser/tests/test_list_literals.py,sha256=OfGVAox3EG862Vqg6vEbq1WwGGi67vCf-m29XKDpoCc,9949
226
+ machine_dialect/parser/tests/test_no_none_in_ast.py,sha256=ZNAaBJpB8m3c1MFVYSjKez-ihjocyuA1GjEeZU5W4-E,3692
227
+ machine_dialect/parser/tests/test_panic_mode_recovery.py,sha256=X48MCl_E9-bICkbz9YxV16whP-z-JX29ohseXjJnZ9w,6255
228
+ machine_dialect/parser/tests/test_parse_errors.py,sha256=jAwH95Z6RmaamZ6upf6duqb333778fzc2RzdnSwkac4,4362
229
+ machine_dialect/parser/tests/test_possessive_syntax.py,sha256=fRt6BKPRNZl_72sLILZZMDPcXqDZPQt9ymFp7yRhXi8,7446
230
+ machine_dialect/parser/tests/test_prefix_expressions.py,sha256=Bp1ZnAtS2uLJCsBBLGbhZbnFQ5MuohUe4DKFhPxumDg,16084
231
+ machine_dialect/parser/tests/test_program.py,sha256=vPYqhok3JciEk1VpVeZ1Uy-n-y8alJ4xZPll3vyJzKw,345
232
+ machine_dialect/parser/tests/test_return_statements.py,sha256=X8wVc-VVDFemFbdhf87wfdmOh4Kl48nSSaRsnZHNG6Y,3044
233
+ machine_dialect/parser/tests/test_set_statements.py,sha256=48EcdXdU6lZHnd4Q-ZfgnMOuPDjoLuPGg0-eNAJshF8,5397
234
+ machine_dialect/parser/tests/test_strict_equality.py,sha256=AxX-pTtjqnVzHVdTUosqWZm7lI2Al7_YfgpSoVgdUVs,10640
235
+ machine_dialect/parser/tests/test_symbol_table.py,sha256=yC1o9tSyNQkcqwVxAU271Azl3YTykyPAv5VlUBCE-t0,7774
236
+ machine_dialect/parser/tests/test_url_literal_expressions.py,sha256=FYiaNN-7kUVUivD-5tuoggmb08V_vILyIqhuyovQid4,8247
237
+ machine_dialect/parser/tests/test_utility_statements.py,sha256=Nwb9xB5JLx7TdcO1O1QWfRWKHAEJ8ZDQSqICyxFIPfg,14557
238
+ machine_dialect/repl/__init__.py,sha256=SNUb32kkq1bVvj6_l92dy53Soppk1eksiRWo_pf34jk,66
239
+ machine_dialect/repl/repl.py,sha256=hproSJX9iSvq38-s_72KXX5hLdXGPNUr772Fg2f8DtE,15869
240
+ machine_dialect/repl/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
+ machine_dialect/repl/tests/test_repl.py,sha256=DXv-L_vw4HX6bEtjJDTmmWdU2pXh_YPKLAsxiUzoFeY,23511
242
+ machine_dialect/semantic/__init__.py,sha256=u1EDci5Antu16IBC3t7NXOU3pMToNkPY3-_p5EMYQjg,347
243
+ machine_dialect/semantic/analyzer.py,sha256=DoNRHSVybJO8Is1QAUbi0UQ-cLA6oHQi8zBRvwyx7ic,43304
244
+ machine_dialect/semantic/error_messages.py,sha256=qjqmWvw7mjoRKE6Hw3geD9irRxfVFVSzESK8AmKRDdM,6864
245
+ machine_dialect/semantic/tests/__init__.py,sha256=yH1CIZOfI2jdFq8PiYPy-vZfswwHuDPZUMaqPp9-jYo,46
246
+ machine_dialect/semantic/tests/test_analyzer.py,sha256=qL4Tdz-odnXmr9v8kn3sIC6SIfPK8SswBIHpZv4XnI0,12707
247
+ machine_dialect/semantic/tests/test_error_messages.py,sha256=9fioQdwy63Dl0J63vMLF9qp-dAJg4dFspoPsS7UhEko,4414
248
+ machine_dialect/tests/edge_cases/__init__.py,sha256=ChCNsE3VjRUkqOjCVsFP3bq3PZicPfly9FafhZGG_C0,300
249
+ machine_dialect/tests/edge_cases/test_boundary_access.py,sha256=urQGU9sSKiXX4jKl7tuCoEWyLCf-QKR3y6D-4KLCY18,8343
250
+ machine_dialect/tests/edge_cases/test_empty_collections.py,sha256=hVT0LU997Ubj6tcVbvfYr7YzuhCj8TB4jlvAZRk2big,6180
251
+ machine_dialect/tests/edge_cases/test_invalid_operations.py,sha256=1Qg7CgVSb-LOzUrqGHd3126UesE7Cb3ABn8JTbr9WSk,7559
252
+ machine_dialect/tests/edge_cases/test_named_list_edge_cases.py,sha256=agQENPlemjOOXZWTehKkCYAb-eQlj9NAk-j7KEY5uvY,9418
253
+ machine_dialect/tests/edge_cases/test_nested_structures.py,sha256=ElexzWjox_w3P9tB-dO7863WowWaWYviWkQz2HfonHI,8421
254
+ machine_dialect/tests/edge_cases/test_type_mixing.py,sha256=14o6V42byvxbCld0lkguHLjdT2dP5mrEaKh5fMSbEpU,7716
255
+ machine_dialect/tests/integration/test_array_operations_emulation.py,sha256=iA3F83R8oErS5y44Uyh7Rr6BBH-7Cp8GyLrf3aMIAho,7041
256
+ machine_dialect/tests/integration/test_list_compilation.py,sha256=7Ned1Z6T-gMhbxgLP-4F1tO7_-szoe6dd7cyD33Eho0,13296
257
+ machine_dialect/tests/integration/test_lists_and_dictionaries.py,sha256=-B7LP2LzauAjoe6spPP8WTKWtGNqMbBvdZnlJck6shg,9288
258
+ machine_dialect/type_checking/__init__.py,sha256=8Hn4Tku2OaqCZcR92kRHSL3J9D8M9H0tjvaZ41SWhQc,430
259
+ machine_dialect/type_checking/type_system.py,sha256=_0KwPySFXX19c5GBxxdHJRHqOyygKAdBMEkmw-VX1L0,8496
260
+ machine_dialect/type_checking/tests/__init__.py,sha256=4c3lf1Qiw2c_oC9exXoCsrfsv1pcPrKqgJaBEcep_KU,52
261
+ machine_dialect/type_checking/tests/test_type_system.py,sha256=SB7vJABYYDBKSjYe2sP7lw9kAN-EwkiVDgQAk0cIFrQ,9532
262
+ machine_dialect-0.1.0a1.dist-info/licenses/LICENSE,sha256=4eDxgHEv174pvSoKQ1SHHxU4Rg8fwPU9_ZAYX-jPLBQ,11545
263
+ machine_dialect_vm/__init__.pyi,sha256=CUnbGvsS7OqCEeNi2Cb5Fgb5uhBrMMoWVNFXeQDZNVk,418
264
+ machine_dialect-0.1.0a1.dist-info/METADATA,sha256=kk6160C_eTopZ2A7Mcfpx6hjeJBO_CQ1_yKONftnxMo,4505
265
+ machine_dialect-0.1.0a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
266
+ machine_dialect-0.1.0a1.dist-info/entry_points.txt,sha256=p6bQ7sDSeFKrGD_QeXyNDGylPPb0FlP1t-cf1T9Rjxo,101
267
+ machine_dialect-0.1.0a1.dist-info/top_level.txt,sha256=5BAY-nZJM1P3DswA5yluZTjQDCuScDHt9vEqsYgJvZ8,35
268
+ machine_dialect-0.1.0a1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ machine-dialect = machine_dialect.__main__:main
3
+ md = machine_dialect.__main__:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Lajara AI, LLC
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,2 @@
1
+ machine_dialect
2
+ machine_dialect_vm
@@ -0,0 +1,15 @@
1
+ """Type stubs for machine_dialect_vm module."""
2
+
3
+ from typing import Any
4
+
5
+ __version__: str
6
+
7
+ class RustVM:
8
+ """Rust VM for executing Machine Dialectâ„¢ bytecode."""
9
+
10
+ def __init__(self) -> None: ...
11
+ def set_debug(self, enabled: bool) -> None: ...
12
+ def instruction_count(self) -> int: ...
13
+ def load_bytecode(self, path: str) -> None: ...
14
+ def execute(self) -> Any: ...
15
+ def reset(self) -> None: ...