kirin-toolchain 0.13.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- kirin/__init__.py +7 -0
- kirin/analysis/__init__.py +24 -0
- kirin/analysis/callgraph.py +61 -0
- kirin/analysis/cfg.py +112 -0
- kirin/analysis/const/__init__.py +20 -0
- kirin/analysis/const/_visitor.py +2 -0
- kirin/analysis/const/_visitor.pyi +8 -0
- kirin/analysis/const/lattice.py +219 -0
- kirin/analysis/const/prop.py +116 -0
- kirin/analysis/forward.py +100 -0
- kirin/analysis/typeinfer/__init__.py +5 -0
- kirin/analysis/typeinfer/analysis.py +90 -0
- kirin/analysis/typeinfer/solve.py +141 -0
- kirin/decl/__init__.py +108 -0
- kirin/decl/base.py +65 -0
- kirin/decl/camel2snake.py +2 -0
- kirin/decl/emit/__init__.py +0 -0
- kirin/decl/emit/_create_fn.py +29 -0
- kirin/decl/emit/_set_new_attribute.py +22 -0
- kirin/decl/emit/dialect.py +8 -0
- kirin/decl/emit/init.py +277 -0
- kirin/decl/emit/name.py +10 -0
- kirin/decl/emit/property.py +182 -0
- kirin/decl/emit/repr.py +31 -0
- kirin/decl/emit/traits.py +13 -0
- kirin/decl/emit/typecheck.py +77 -0
- kirin/decl/emit/verify.py +51 -0
- kirin/decl/info.py +346 -0
- kirin/decl/scan_fields.py +157 -0
- kirin/decl/verify.py +69 -0
- kirin/dialects/__init__.py +14 -0
- kirin/dialects/_pprint_helper.py +53 -0
- kirin/dialects/cf/__init__.py +20 -0
- kirin/dialects/cf/constprop.py +51 -0
- kirin/dialects/cf/dialect.py +3 -0
- kirin/dialects/cf/emit.py +58 -0
- kirin/dialects/cf/interp.py +24 -0
- kirin/dialects/cf/stmts.py +68 -0
- kirin/dialects/cf/typeinfer.py +27 -0
- kirin/dialects/eltype.py +23 -0
- kirin/dialects/func/__init__.py +20 -0
- kirin/dialects/func/attrs.py +39 -0
- kirin/dialects/func/constprop.py +138 -0
- kirin/dialects/func/dialect.py +3 -0
- kirin/dialects/func/emit.py +80 -0
- kirin/dialects/func/interp.py +68 -0
- kirin/dialects/func/stmts.py +233 -0
- kirin/dialects/func/typeinfer.py +124 -0
- kirin/dialects/ilist/__init__.py +33 -0
- kirin/dialects/ilist/_dialect.py +3 -0
- kirin/dialects/ilist/_wrapper.py +51 -0
- kirin/dialects/ilist/interp.py +85 -0
- kirin/dialects/ilist/lowering.py +25 -0
- kirin/dialects/ilist/passes.py +32 -0
- kirin/dialects/ilist/rewrite/__init__.py +3 -0
- kirin/dialects/ilist/rewrite/const.py +45 -0
- kirin/dialects/ilist/rewrite/list.py +38 -0
- kirin/dialects/ilist/rewrite/unroll.py +131 -0
- kirin/dialects/ilist/runtime.py +63 -0
- kirin/dialects/ilist/stmts.py +102 -0
- kirin/dialects/ilist/typeinfer.py +120 -0
- kirin/dialects/lowering/__init__.py +7 -0
- kirin/dialects/lowering/call.py +48 -0
- kirin/dialects/lowering/cf.py +206 -0
- kirin/dialects/lowering/func.py +134 -0
- kirin/dialects/math/__init__.py +41 -0
- kirin/dialects/math/_gen.py +176 -0
- kirin/dialects/math/dialect.py +3 -0
- kirin/dialects/math/interp.py +190 -0
- kirin/dialects/math/stmts.py +369 -0
- kirin/dialects/module.py +139 -0
- kirin/dialects/py/__init__.py +40 -0
- kirin/dialects/py/assertion.py +91 -0
- kirin/dialects/py/assign.py +103 -0
- kirin/dialects/py/attr.py +59 -0
- kirin/dialects/py/base.py +34 -0
- kirin/dialects/py/binop/__init__.py +23 -0
- kirin/dialects/py/binop/_dialect.py +3 -0
- kirin/dialects/py/binop/interp.py +60 -0
- kirin/dialects/py/binop/julia.py +33 -0
- kirin/dialects/py/binop/lowering.py +22 -0
- kirin/dialects/py/binop/stmts.py +79 -0
- kirin/dialects/py/binop/typeinfer.py +108 -0
- kirin/dialects/py/boolop.py +84 -0
- kirin/dialects/py/builtin.py +78 -0
- kirin/dialects/py/cmp/__init__.py +16 -0
- kirin/dialects/py/cmp/_dialect.py +3 -0
- kirin/dialects/py/cmp/interp.py +48 -0
- kirin/dialects/py/cmp/julia.py +33 -0
- kirin/dialects/py/cmp/lowering.py +45 -0
- kirin/dialects/py/cmp/stmts.py +62 -0
- kirin/dialects/py/constant.py +79 -0
- kirin/dialects/py/indexing.py +251 -0
- kirin/dialects/py/iterable.py +90 -0
- kirin/dialects/py/len.py +57 -0
- kirin/dialects/py/list/__init__.py +15 -0
- kirin/dialects/py/list/_dialect.py +3 -0
- kirin/dialects/py/list/interp.py +21 -0
- kirin/dialects/py/list/lowering.py +25 -0
- kirin/dialects/py/list/stmts.py +22 -0
- kirin/dialects/py/list/typeinfer.py +54 -0
- kirin/dialects/py/range.py +76 -0
- kirin/dialects/py/slice.py +120 -0
- kirin/dialects/py/tuple.py +109 -0
- kirin/dialects/py/unary/__init__.py +24 -0
- kirin/dialects/py/unary/_dialect.py +3 -0
- kirin/dialects/py/unary/constprop.py +20 -0
- kirin/dialects/py/unary/interp.py +24 -0
- kirin/dialects/py/unary/julia.py +21 -0
- kirin/dialects/py/unary/lowering.py +22 -0
- kirin/dialects/py/unary/stmts.py +33 -0
- kirin/dialects/py/unary/typeinfer.py +23 -0
- kirin/dialects/py/unpack.py +90 -0
- kirin/dialects/scf/__init__.py +23 -0
- kirin/dialects/scf/_dialect.py +3 -0
- kirin/dialects/scf/absint.py +64 -0
- kirin/dialects/scf/constprop.py +140 -0
- kirin/dialects/scf/interp.py +35 -0
- kirin/dialects/scf/lowering.py +123 -0
- kirin/dialects/scf/stmts.py +250 -0
- kirin/dialects/scf/trim.py +36 -0
- kirin/dialects/scf/typeinfer.py +58 -0
- kirin/dialects/scf/unroll.py +92 -0
- kirin/emit/__init__.py +3 -0
- kirin/emit/abc.py +89 -0
- kirin/emit/abc.pyi +38 -0
- kirin/emit/exceptions.py +5 -0
- kirin/emit/julia.py +63 -0
- kirin/emit/str.py +51 -0
- kirin/exceptions.py +59 -0
- kirin/graph.py +34 -0
- kirin/idtable.py +57 -0
- kirin/interp/__init__.py +39 -0
- kirin/interp/abstract.py +253 -0
- kirin/interp/base.py +438 -0
- kirin/interp/concrete.py +62 -0
- kirin/interp/exceptions.py +26 -0
- kirin/interp/frame.py +151 -0
- kirin/interp/impl.py +197 -0
- kirin/interp/result.py +93 -0
- kirin/interp/state.py +71 -0
- kirin/interp/table.py +40 -0
- kirin/interp/value.py +73 -0
- kirin/ir/__init__.py +46 -0
- kirin/ir/attrs/__init__.py +20 -0
- kirin/ir/attrs/_types.py +8 -0
- kirin/ir/attrs/_types.pyi +13 -0
- kirin/ir/attrs/abc.py +46 -0
- kirin/ir/attrs/py.py +45 -0
- kirin/ir/attrs/types.py +522 -0
- kirin/ir/dialect.py +125 -0
- kirin/ir/group.py +249 -0
- kirin/ir/method.py +118 -0
- kirin/ir/nodes/__init__.py +7 -0
- kirin/ir/nodes/base.py +149 -0
- kirin/ir/nodes/block.py +458 -0
- kirin/ir/nodes/region.py +337 -0
- kirin/ir/nodes/stmt.py +713 -0
- kirin/ir/nodes/view.py +142 -0
- kirin/ir/ssa.py +204 -0
- kirin/ir/traits/__init__.py +36 -0
- kirin/ir/traits/abc.py +42 -0
- kirin/ir/traits/basic.py +78 -0
- kirin/ir/traits/callable.py +51 -0
- kirin/ir/traits/lowering/__init__.py +2 -0
- kirin/ir/traits/lowering/call.py +37 -0
- kirin/ir/traits/lowering/context.py +120 -0
- kirin/ir/traits/region/__init__.py +2 -0
- kirin/ir/traits/region/ssacfg.py +22 -0
- kirin/ir/traits/symbol.py +57 -0
- kirin/ir/use.py +17 -0
- kirin/lattice/__init__.py +13 -0
- kirin/lattice/abc.py +128 -0
- kirin/lattice/empty.py +25 -0
- kirin/lattice/mixin.py +51 -0
- kirin/lowering/__init__.py +7 -0
- kirin/lowering/binding.py +65 -0
- kirin/lowering/core.py +72 -0
- kirin/lowering/dialect.py +35 -0
- kirin/lowering/dialect.pyi +183 -0
- kirin/lowering/frame.py +171 -0
- kirin/lowering/result.py +68 -0
- kirin/lowering/state.py +441 -0
- kirin/lowering/stream.py +53 -0
- kirin/passes/__init__.py +3 -0
- kirin/passes/abc.py +44 -0
- kirin/passes/aggressive/__init__.py +1 -0
- kirin/passes/aggressive/fold.py +43 -0
- kirin/passes/fold.py +45 -0
- kirin/passes/inline.py +25 -0
- kirin/passes/typeinfer.py +25 -0
- kirin/prelude.py +197 -0
- kirin/print/__init__.py +15 -0
- kirin/print/printable.py +141 -0
- kirin/print/printer.py +415 -0
- kirin/py.typed +0 -0
- kirin/registry.py +105 -0
- kirin/registry.pyi +52 -0
- kirin/rewrite/__init__.py +14 -0
- kirin/rewrite/abc.py +43 -0
- kirin/rewrite/aggressive/__init__.py +1 -0
- kirin/rewrite/aggressive/fold.py +43 -0
- kirin/rewrite/alias.py +16 -0
- kirin/rewrite/apply_type.py +47 -0
- kirin/rewrite/call2invoke.py +34 -0
- kirin/rewrite/chain.py +39 -0
- kirin/rewrite/compactify.py +288 -0
- kirin/rewrite/cse.py +48 -0
- kirin/rewrite/dce.py +19 -0
- kirin/rewrite/fixpoint.py +34 -0
- kirin/rewrite/fold.py +57 -0
- kirin/rewrite/getfield.py +21 -0
- kirin/rewrite/getitem.py +37 -0
- kirin/rewrite/inline.py +143 -0
- kirin/rewrite/result.py +15 -0
- kirin/rewrite/walk.py +83 -0
- kirin/rewrite/wrap_const.py +55 -0
- kirin/source.py +21 -0
- kirin/symbol_table.py +27 -0
- kirin/types.py +34 -0
- kirin/worklist.py +30 -0
- kirin_toolchain-0.13.0.dist-info/METADATA +42 -0
- kirin_toolchain-0.13.0.dist-info/RECORD +225 -0
- kirin_toolchain-0.13.0.dist-info/WHEEL +4 -0
- kirin_toolchain-0.13.0.dist-info/licenses/LICENSE +234 -0
@@ -0,0 +1,225 @@
|
|
1
|
+
kirin/__init__.py,sha256=YbHZ4oH7mdl2n4bshns4vxNTW0B13-k3koHVlw87pjE,187
|
2
|
+
kirin/exceptions.py,sha256=PF24CUm08GkPMIOoOo5ThgJ7cTUjYquR3htz0wH_P10,1382
|
3
|
+
kirin/graph.py,sha256=sxuV-N37pcoO-nbNdjiV-8z4LHCFmeugxZHVVFlhwB8,958
|
4
|
+
kirin/idtable.py,sha256=llztmKa4vwDBeBmZnHVMuoG65Hb_Or9bOwmMku06UXA,1808
|
5
|
+
kirin/prelude.py,sha256=ZoEMpLPP63oEfTWiQ7g3cNCwW8ZXshyohlFR0QawPGQ,4929
|
6
|
+
kirin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
kirin/registry.py,sha256=5jDr8nD_xYvElyDaq6qcOfrwKKjBWjJ5ejLD2Q2aQ_M,3385
|
8
|
+
kirin/registry.pyi,sha256=0aVkxLpeM2lwWs3lstEbgbnFa266D05eJzHUTPswSCE,1807
|
9
|
+
kirin/source.py,sha256=0nXheyO76zHvvzV99B01OEtxdekC6cvALuqz1RoNhQA,689
|
10
|
+
kirin/symbol_table.py,sha256=S-G6niA3xxLloKiEhsTXvepEsjxprF-Dj0MFVUy_kII,865
|
11
|
+
kirin/types.py,sha256=W_ObYslptVO6jTYAkpsDTGGF4SxOXEsRtwyYHlTRivc,979
|
12
|
+
kirin/worklist.py,sha256=EvjcW2VkZiGFWpj4vFNJBYdBt99oynfGVO6ovzQOiLs,765
|
13
|
+
kirin/analysis/__init__.py,sha256=AHsiZtAalXdwE2qawTGR0WatHdpN8YqeKYLgmebkFdo,1018
|
14
|
+
kirin/analysis/callgraph.py,sha256=A1MjXJ70cj1PWbrni7tsT6bLZEcqMj3UanQQlp_XB00,2150
|
15
|
+
kirin/analysis/cfg.py,sha256=qDgDffFC1JIZfVKRkgKXf4G-etdLXb2fPUvrI1gSbQA,3736
|
16
|
+
kirin/analysis/forward.py,sha256=i2S_I4poSTkn4R2RIVZ17a2OXwXGHeJ3SQjMECSXXmM,3437
|
17
|
+
kirin/analysis/const/__init__.py,sha256=0k98Bog8pnItJjnd_1YaIcgOEB7DY9uEe1KJh8oqK08,606
|
18
|
+
kirin/analysis/const/_visitor.py,sha256=Z2sD_JknL2HQ8Hker11hkC7d8kFf5GTwdQ7Qnq9csl4,29
|
19
|
+
kirin/analysis/const/_visitor.pyi,sha256=JN1pzDS0LDtgsNQaN8VyaVR6jlmZZaQVK3XNpz6liHE,427
|
20
|
+
kirin/analysis/const/lattice.py,sha256=iuo0Pdgm8YiK1rLSEDCFHra3JWX-IN445rzBRTxHSiY,6202
|
21
|
+
kirin/analysis/const/prop.py,sha256=G8T4lSnG0t-LsE8HrNChQneYtpZKToTE9uBBJUtsFrs,4220
|
22
|
+
kirin/analysis/typeinfer/__init__.py,sha256=gvLxjK4hOfPSxEgKUkFexoDbRR5UeIkmeQ0l3LKDsGo,148
|
23
|
+
kirin/analysis/typeinfer/analysis.py,sha256=1_Vq0o0ri-xN6mWvn6YDOCA66WtPlS5v2LKZwsH-lnU,3401
|
24
|
+
kirin/analysis/typeinfer/solve.py,sha256=PtMiuddxGzODJlPaBjb3JPbterZH29tEO2wOJgUG1gY,4231
|
25
|
+
kirin/decl/__init__.py,sha256=lWINZ4XKAzu5dbypWQ5I-jIWaxdneQhYVV1FGe2R5x4,3182
|
26
|
+
kirin/decl/base.py,sha256=yFkZ1oHajB99N61nL0p-iG3o5aOvcblwYJrXF2oAYDY,2001
|
27
|
+
kirin/decl/camel2snake.py,sha256=qQ5KIOqkyyu6DSh1MA9e4AgVylIlkPqC7gpS-jJ73Yg,121
|
28
|
+
kirin/decl/info.py,sha256=sS19Sh1WMGHVkkRqIrSf9WO_oDydfWoASQqLQPeEh0I,10268
|
29
|
+
kirin/decl/scan_fields.py,sha256=iqumHPFBpn8XApqbAnxJ3Nn2eP5iBYmcvmBgOu5hEI8,6231
|
30
|
+
kirin/decl/verify.py,sha256=6HEsfBawYTDR0d8438IOT96ymBbtBs-8gn8w8s_f12k,2252
|
31
|
+
kirin/decl/emit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
+
kirin/decl/emit/_create_fn.py,sha256=SCxPwwIHDfidPjgf7T1NNGr_a1okGpCnYo4EeZ1UwiM,978
|
33
|
+
kirin/decl/emit/_set_new_attribute.py,sha256=pcij5ijabdvxoI15_7z4nBif1KF4_Lvs63LJD1ObPfY,643
|
34
|
+
kirin/decl/emit/dialect.py,sha256=gdJtfY1lqm3jilDVeTB9UzLd-LTKKOnW62SyVrYhGyM,171
|
35
|
+
kirin/decl/emit/init.py,sha256=E6Xt5zoPCw8ZVtXu23MrJVyvx4zMvXC-HKehYH1TLWI,9668
|
36
|
+
kirin/decl/emit/name.py,sha256=guFn5eheEP50qPLvWoN7g3yyIgqbSdP7Ril9PoyG5d4,273
|
37
|
+
kirin/decl/emit/property.py,sha256=xD5a77KP060-GGT-IcVWfyd1a2kozoHp8muwWQoYLlY,6823
|
38
|
+
kirin/decl/emit/repr.py,sha256=kub7L2y-diBF9nGyaHi832ylaNTa_3PkLKTUcYmUIrc,877
|
39
|
+
kirin/decl/emit/traits.py,sha256=B_A30LLJtfoI05XBCZkvqrI8423qy0MKHqC5swmJZXg,384
|
40
|
+
kirin/decl/emit/typecheck.py,sha256=dSO9g9uGFp-Y73XZq3KMCDcSGCyHkvm6_7iw2aY8kuI,2573
|
41
|
+
kirin/decl/emit/verify.py,sha256=C-wG45QPfyQACJT6fnuhwo0awbBrg93RVUdTsthdmrI,1747
|
42
|
+
kirin/dialects/__init__.py,sha256=P84SWM1VSdFnjTqPI04p7Oy-BglTKPzszEgui6yIQG4,416
|
43
|
+
kirin/dialects/_pprint_helper.py,sha256=gzBVmdmWmQ5zZ333yNTqCFOovJEdbpIf_e_JUuPBdS4,1631
|
44
|
+
kirin/dialects/eltype.py,sha256=hHF5w03pt0AsAEQ71xBiowkb-BAZYO_v6GAfoQ1JQLk,767
|
45
|
+
kirin/dialects/module.py,sha256=6NUHywUUDRi0lwuqlKo9KiwcdgExQRslf5hL0_OJbjI,4531
|
46
|
+
kirin/dialects/cf/__init__.py,sha256=uUuKb_bC_jptbjnf-dZVvEvWWLDpKs1Gfv5257HU8QI,595
|
47
|
+
kirin/dialects/cf/constprop.py,sha256=9-BG0ZjiNDv_lpYTmSMOD27H2twBrJgtSyhqBWKRoqE,1785
|
48
|
+
kirin/dialects/cf/dialect.py,sha256=OoZ8Z06sp2HiLqvIYFi9qVt80WauRRj4VJOXQMdS3tU,49
|
49
|
+
kirin/dialects/cf/emit.py,sha256=CP1VVqp7zqW1Gvf7xBRYXVcGwOTm4AS_6oOnJOHIBLI,2086
|
50
|
+
kirin/dialects/cf/interp.py,sha256=KeLEUrBZNGBNgYFiZiZfqVHItJSbk6uZHwq7agJCjVk,827
|
51
|
+
kirin/dialects/cf/stmts.py,sha256=Du-2akAob6W76t6N97QQZYJWu1JHNHiloG_LI57K5-k,1950
|
52
|
+
kirin/dialects/cf/typeinfer.py,sha256=wT_Y1pu0Y2Ypa7CsWCXqa4d5egh2z5POCIiZQdI1VcE,941
|
53
|
+
kirin/dialects/func/__init__.py,sha256=_P8Mz6u5Ps4f8A-BbP_LKTJYiyX2dQ8fNLrlXVRdsQc,559
|
54
|
+
kirin/dialects/func/attrs.py,sha256=9NG8RWNvHqLnksLWgLc7ve6uUMtGqwlf6pQG9s-UqSI,1227
|
55
|
+
kirin/dialects/func/constprop.py,sha256=DuhJsQeBjSFIsUvruLH5eBrn1RP-1aQgVKU62KOmOyk,4606
|
56
|
+
kirin/dialects/func/dialect.py,sha256=c9k9sdf2yLpe4UDoY5NMa5b4RfG-UuNSXt5FiAUY-YM,56
|
57
|
+
kirin/dialects/func/emit.py,sha256=B5Ss7KvdtxAzqFKl62roq2-SQ8wB3degF6oa1MjgKJU,2846
|
58
|
+
kirin/dialects/func/interp.py,sha256=o8XBYKPHW012N6rSqAQ8HtMiodKT6uYMhNiX3K66Jk8,2028
|
59
|
+
kirin/dialects/func/stmts.py,sha256=Kqjlwjb7o0qA3pCZC4_Zf8Ro4g2VNU6DARUxurwGq_c,7252
|
60
|
+
kirin/dialects/func/typeinfer.py,sha256=Z-3miJu5TNjvvGkw9osfYsm4j3DjN_06vBtBrc1mckI,4137
|
61
|
+
kirin/dialects/ilist/__init__.py,sha256=94vCDYOu91mu3n4tnCGGW4UXCStgH4PSHoayP-cGdRM,693
|
62
|
+
kirin/dialects/ilist/_dialect.py,sha256=BPZs2F3qVmafLQQtpxBOg7t1FcBLqEtwptpne9JjxNM,55
|
63
|
+
kirin/dialects/ilist/_wrapper.py,sha256=ICm9Ja_YWQVOR7z_WWIA7FS6i0_w-NqUmhDi68sC5Co,1168
|
64
|
+
kirin/dialects/ilist/interp.py,sha256=bDBODAako-1fs8HuIab9Ob7CWOsolPJIxreo7Ih6wC4,2989
|
65
|
+
kirin/dialects/ilist/lowering.py,sha256=PLtFI1lCh-1AXb982R5c-yWAiVS29DZAZ98BCXBcBJ4,641
|
66
|
+
kirin/dialects/ilist/passes.py,sha256=NVLl7MipdasaqbJKKaBDiXRLJTmsTrNNFh2pbLlA_7o,1145
|
67
|
+
kirin/dialects/ilist/runtime.py,sha256=VyxW7-ew0PhruEopJ31IsVabWJ15UCwmNomCCB6ZXZI,1573
|
68
|
+
kirin/dialects/ilist/stmts.py,sha256=Iul5olXHGT9yqDuh_PTL8k7oiROGnAzn_efxzoKG-vs,3190
|
69
|
+
kirin/dialects/ilist/typeinfer.py,sha256=3ScNrQNbP86u-WvAZaLmKhQpo0meqcQS3Zk_8WMFNgU,4498
|
70
|
+
kirin/dialects/ilist/rewrite/__init__.py,sha256=Z4enlsAl1pKQL5DztlH9hvzral1TLG36cGVlbXztf50,134
|
71
|
+
kirin/dialects/ilist/rewrite/const.py,sha256=C3kbrY_3MaoyuBsVo0xDMeGEJRk9F44Zdx40qLQXLCc,1628
|
72
|
+
kirin/dialects/ilist/rewrite/list.py,sha256=JA-hKjln1HD9XlcZsNsFETRoN2Nf1DUx8YYa4W7lJUw,1501
|
73
|
+
kirin/dialects/ilist/rewrite/unroll.py,sha256=hjyfCR_hk7EwnlL7Va3YYGibrsANNiMj9Vsy6LTCAkA,4788
|
74
|
+
kirin/dialects/lowering/__init__.py,sha256=645fY7RnCbEa4r8OHY0Cqa_4ZnCNQAJK1XCBxrFKOaQ,284
|
75
|
+
kirin/dialects/lowering/call.py,sha256=XzaGTYfKUleWUgp0j1fsyQTVd_r_DP-xcZDDdrJtz74,1568
|
76
|
+
kirin/dialects/lowering/cf.py,sha256=GPUHUoN42oJRb6aKS2HpQB8TYUiihErEcKj78UrNs_E,7226
|
77
|
+
kirin/dialects/lowering/func.py,sha256=xa73l9S5LYPlVZ_PxDLVkWqniI4tF4Dae9pcjab6sKs,4749
|
78
|
+
kirin/dialects/math/__init__.py,sha256=jY2NKQVoZwFCOMl7-5Sedoqe9IegHzLxivNY3JYioYY,970
|
79
|
+
kirin/dialects/math/_gen.py,sha256=ObdKR-Y37VJP87X3Mx7PuwC06WJ5bapmfTSjFHschzQ,5188
|
80
|
+
kirin/dialects/math/dialect.py,sha256=KZU9ZkIDHt8c8d8rK9eMQz0LheHqtu90iP6NGY_816M,51
|
81
|
+
kirin/dialects/math/interp.py,sha256=87wWtGv5epNk3iPLLdEsmtnV3a21WdBM9AI7SISq1ag,6407
|
82
|
+
kirin/dialects/math/stmts.py,sha256=hteRLWaiJGw3InUi7mHByTyIOk_lzM_drMHB5gPM4Uc,11002
|
83
|
+
kirin/dialects/py/__init__.py,sha256=ShctzRc1cDHcnl7JXiz4_p_8TH2EGzYrDfreohE1cvQ,1143
|
84
|
+
kirin/dialects/py/assertion.py,sha256=trKTy56s9CCVJu1zkvaqdQszMLv46iuw827Ij4O7zfg,2667
|
85
|
+
kirin/dialects/py/assign.py,sha256=Pvl2RHwOnsSNJ2MyPaBl7Su_eACFpBNQYvdkK_RhSrI,3592
|
86
|
+
kirin/dialects/py/attr.py,sha256=Nn6iS6kxz1NUXxAdoWufHNDHYYpQOlarCYvPC8rw3Zw,1782
|
87
|
+
kirin/dialects/py/base.py,sha256=PL6HmgZ1My0UaKysCBnkwG7pXkauhIEGZntyXUPTZD4,1037
|
88
|
+
kirin/dialects/py/boolop.py,sha256=ITnxQpQdU-ygAbmG1Pg2aXsQGyOsJ2NH8X7dppsHg0w,2440
|
89
|
+
kirin/dialects/py/builtin.py,sha256=BhWONf7WnicVoNFJQI2Ymq1B_CuMrGcY6keARa1iCgw,2182
|
90
|
+
kirin/dialects/py/constant.py,sha256=4Z9FxUgV-BWYUy_QtME4sATMhN_TiiIp4u3FKwfhbqQ,2463
|
91
|
+
kirin/dialects/py/indexing.py,sha256=RlBr9UpJVF-WT3rm_UOW12jVPAw4oTpUEdDvRHKBR94,8150
|
92
|
+
kirin/dialects/py/iterable.py,sha256=9h7AnCSplSpXgTSXe23J3wNOXsqhQ6m6vvVBcL8FCMA,2680
|
93
|
+
kirin/dialects/py/len.py,sha256=lcxyFnwdxoP-ZZCxKQpIUsrAo4wakDGLi0QCku7-VeY,1526
|
94
|
+
kirin/dialects/py/range.py,sha256=TjBEzXtQWfpe9Pol2eeT974LYRk9KE0mSbs-vFyPI5o,2484
|
95
|
+
kirin/dialects/py/slice.py,sha256=y9NLk0X1ReaFCO43qU6db8MxssuryzJWKp6XwE1QI_E,3958
|
96
|
+
kirin/dialects/py/tuple.py,sha256=Hyo8H6MRFNI0WfgB6rG7mnuy1KFb-s3gIN-fz83NOK8,3374
|
97
|
+
kirin/dialects/py/unpack.py,sha256=oWQ9p5deumq2_oCyJhAZnRZ5Oh4pa3W_INhRFq_FKtU,3038
|
98
|
+
kirin/dialects/py/binop/__init__.py,sha256=s7bzdUaj8QNmj86MhoAzrz312wnGlDFuFSjAxN_T3YU,811
|
99
|
+
kirin/dialects/py/binop/_dialect.py,sha256=hi6fMY8ojV3bLPMThENgXy7r00xgUDy-h7grUhX-QWg,55
|
100
|
+
kirin/dialects/py/binop/interp.py,sha256=EsEdxJ5QM8KVwpaXZGS9dl7eRpMNVw4IavyK7vfK4P4,2220
|
101
|
+
kirin/dialects/py/binop/julia.py,sha256=R5DlV5uuu6JbKacNqE1oBA6_4gdgy1JiHhFVYBgViQg,1330
|
102
|
+
kirin/dialects/py/binop/lowering.py,sha256=q71F2172wdi5wcetncaZIRRq8lQhxmwLWTJckgBwjME,632
|
103
|
+
kirin/dialects/py/binop/stmts.py,sha256=ODrBjtzMB9rIN4ChN-QXH9e1qYmnTw7LLdFTrSOhXPk,1262
|
104
|
+
kirin/dialects/py/binop/typeinfer.py,sha256=Gg2PaJmcTSO76iWWGqX24nux_MfCxydFwBafloAHyd0,3443
|
105
|
+
kirin/dialects/py/cmp/__init__.py,sha256=VBZznF4bR0EJRmA-xD2Zu0o5wnkv3OBffESAbHZeXhk,614
|
106
|
+
kirin/dialects/py/cmp/_dialect.py,sha256=uroWo1K4S4uF2nQizF5RZWgycOcuuXTdHHPi8OJKLH4,53
|
107
|
+
kirin/dialects/py/cmp/interp.py,sha256=-Lyo97a03l6aHqNyWhs_kKxYxn6ffbcwifrYM844jNc,1668
|
108
|
+
kirin/dialects/py/cmp/julia.py,sha256=5oQ2q0aW3hA9zbdrdk49g2kLrjtTGo9CzAovW7WgF8M,1328
|
109
|
+
kirin/dialects/py/cmp/lowering.py,sha256=cHTbcvl4cDLr5izH8nA81zmNLV7tj4sT93o5cV46ws0,1512
|
110
|
+
kirin/dialects/py/cmp/stmts.py,sha256=kbrFPUyWJexl6BD2klhNXYXNyncQndojklCnSMufVms,955
|
111
|
+
kirin/dialects/py/list/__init__.py,sha256=dWcbFjGH0Vz5nrQ8ybx1mTW4EQtlBD1rx7hEEJrRs_s,569
|
112
|
+
kirin/dialects/py/list/_dialect.py,sha256=X3RxCo79jNuKZ29WDBTxl8kosqiLVqDiT7zF4Ea9Bcc,54
|
113
|
+
kirin/dialects/py/list/interp.py,sha256=65wXdV3Pwhq7lQ4K1CJaich_KTsiFzNKAMEN8lGsCEY,674
|
114
|
+
kirin/dialects/py/list/lowering.py,sha256=G2zXbWMJF2nkr6bahsksDX8GXq0NHe7U_pgoWUNIAWs,629
|
115
|
+
kirin/dialects/py/list/stmts.py,sha256=IqhiAQK_6_ZP_-LkJAp9fWuUK-dQqZOuIoV365ueONs,572
|
116
|
+
kirin/dialects/py/list/typeinfer.py,sha256=c7q1sNZGvsrM90rsDtNY8AxJqhLHpZ97pxMNBYE1nnk,1830
|
117
|
+
kirin/dialects/py/unary/__init__.py,sha256=lhXSWCvQeL8N4dhIph6GWHNSJlC0m-m5BU027JCUfMU,792
|
118
|
+
kirin/dialects/py/unary/_dialect.py,sha256=hwuf7wxti-TUC5CGLyh0osdB40DQB6Nix40v08f7R_s,55
|
119
|
+
kirin/dialects/py/unary/constprop.py,sha256=TTIC5EKEKjiEQfuL6tuHfbyR6fPZs8GFXD5BZgAxFu4,559
|
120
|
+
kirin/dialects/py/unary/interp.py,sha256=vNQSsAVfjYV1FmRbIdYhEFVoMlE2oc1KJLqEBZiMVuI,691
|
121
|
+
kirin/dialects/py/unary/julia.py,sha256=_OPLjqPgCFO6jX9GQ1fHnNjFVJdEUOpgsmJv59seV3E,790
|
122
|
+
kirin/dialects/py/unary/lowering.py,sha256=_eMkmkims4goNu9QBi7FGDrTBCqE8LPfiEDHRPRAgqA,605
|
123
|
+
kirin/dialects/py/unary/stmts.py,sha256=nS4KdJKIwAHSsWXTNKfA0PqAOIqrDKVCoCRt97nk004,598
|
124
|
+
kirin/dialects/py/unary/typeinfer.py,sha256=MvbHLr9yXbRiIS_3sJnLtC-7wQOdy5NWoJ8guG12VQk,585
|
125
|
+
kirin/dialects/scf/__init__.py,sha256=OqM27uQIbklUlqEGEqUb1-w1q-3bsKIeJgKY5n7O010,796
|
126
|
+
kirin/dialects/scf/_dialect.py,sha256=89mlhEgvkQXYr5ZYmMF-sENlrMZNx0AbFX3YWlhDrec,50
|
127
|
+
kirin/dialects/scf/absint.py,sha256=HQYD3RuwxxKSFFZHGg5xQhfeqPFC8x3-_6ursUms5s8,2308
|
128
|
+
kirin/dialects/scf/constprop.py,sha256=UnJm3hoIlcqqSq_03JyzqI0fddu-R_3MREPs2c_Oc_E,4901
|
129
|
+
kirin/dialects/scf/interp.py,sha256=e9c5zomf-ZwdUrIvUgQT70Us_3Bmiex0NcVMGY7AcQM,1237
|
130
|
+
kirin/dialects/scf/lowering.py,sha256=DadL7bFH19Fr98kb_9dpXyOZzsPjhfNvUwiazXaslR4,4852
|
131
|
+
kirin/dialects/scf/stmts.py,sha256=9W7d3LpBd8z8CKm9nCe_fnr79z-Z_kJ1TdQIggIN_9w,9300
|
132
|
+
kirin/dialects/scf/trim.py,sha256=kCmAX1Jxij-7FHiZ8rEmFuwiYMPfXQCWHJ22macQtPo,1106
|
133
|
+
kirin/dialects/scf/typeinfer.py,sha256=uoIv4vfVp2J09TZmTwPGw3J4-kvangmPMT8pjEYrlto,1937
|
134
|
+
kirin/dialects/scf/unroll.py,sha256=9sTyKt91HvCsBuRDubjc1WP5OJX1x0HHq9y3zJOKPd8,3354
|
135
|
+
kirin/emit/__init__.py,sha256=d1DpdpyHcuCX37eBuekS831VnEYAsUIa3KMrDHktUWM,173
|
136
|
+
kirin/emit/abc.py,sha256=t3RA_hkV_BZRQ795ETsXbca2_TaiUusulxtrdjS79rM,3071
|
137
|
+
kirin/emit/abc.pyi,sha256=2Z-4_xqYD4jN1XCtlBHn594Dyb5CP_rgW3inw8Tlwxk,1887
|
138
|
+
kirin/emit/exceptions.py,sha256=2aXcwyD4yZlhGAcfBMo0ZI0VjfRtW6zHiXqg46IrATs,88
|
139
|
+
kirin/emit/julia.py,sha256=fBUaHI1mox3Ac9IP7oN39pLhzTNvEJtHakYXUEvguNo,1710
|
140
|
+
kirin/emit/str.py,sha256=oS9O9URFkMMX8uK7HN4pOsTm15xj2gh0eYp54XbYzjE,1587
|
141
|
+
kirin/interp/__init__.py,sha256=G5L1lPT-get2kK-CNtFuHbA-6HG0WA9xqMU-vzSa2tE,1620
|
142
|
+
kirin/interp/abstract.py,sha256=aaHH7Jfcly_YjcO3dNtXrjgJtvloxekMXILK-9Nuq3Y,9292
|
143
|
+
kirin/interp/base.py,sha256=QmZsskXTV6LKoBD4lqCNBKxDaGgyhUXEM0XCWFNzlCg,15702
|
144
|
+
kirin/interp/concrete.py,sha256=0H8IrYf0TvRlrcUwlTZlTpQQY8STj5pczacgArCuRO8,2214
|
145
|
+
kirin/interp/exceptions.py,sha256=rtKon8Y6vJ1iDdcy2_XTyyqBCMwlorpy42Uykj7mxNM,618
|
146
|
+
kirin/interp/frame.py,sha256=ErsyQkdjiH6-6z7Sut65I5Ecn86XvdXCr4aeIfYpd78,4581
|
147
|
+
kirin/interp/impl.py,sha256=mkdvOt05vH2HGcjBDVyjbV_uJxhWb7DUBSHTdG14LVA,5625
|
148
|
+
kirin/interp/result.py,sha256=STbLFoRSMm9Jd09Z7xhhHdaPW5Ns_tu6Ni00P52fs38,2993
|
149
|
+
kirin/interp/state.py,sha256=Mfdg8Uqw0GYJit8lGM2HO4Y2Jc3NU9-8_8dqqQbQ5u8,1972
|
150
|
+
kirin/interp/table.py,sha256=Bh3q4PZdVOHqjfeYvSzZ0YXfmYNe4A8X3JzFpeEZMnI,1427
|
151
|
+
kirin/interp/value.py,sha256=ZB3Jcr4bhHuV76oFUSLzjiPPAIz-5lKKhQ77SthCuYU,2000
|
152
|
+
kirin/ir/__init__.py,sha256=jYjdhvWuoAL_gCVeaVgkDHVbNGiE-YMebrOJXULLapg,1540
|
153
|
+
kirin/ir/dialect.py,sha256=k6hVz4_nt6Jcp7F6UORvvA481SdXaw2wRIy5iSSGBQE,4239
|
154
|
+
kirin/ir/group.py,sha256=SRiljwn3dHULgkd8v0ZkFV2die6gII3ZBBZCuFURDqI,8027
|
155
|
+
kirin/ir/method.py,sha256=p5xhfLL2ynKgDsLeNf8jMPlPz62eNrNwL2lNHbtQ_WQ,4065
|
156
|
+
kirin/ir/ssa.py,sha256=SsPiOBop0Q6o6q5nBxontFoEl_CSKKwy1CQt_HtHI3U,6323
|
157
|
+
kirin/ir/use.py,sha256=JQGn13sAkgXU6MZqeDTFzhzpqC8hgOwAkKDPcTO8SrY,387
|
158
|
+
kirin/ir/attrs/__init__.py,sha256=BeuU8VN6U72CSfFQDKQMoP8ukpMt1mSnTju19f0gCVQ,667
|
159
|
+
kirin/ir/attrs/_types.py,sha256=RjqjqoeuBhT1qXAhujKeOc2faMOdHqAes6NPDwHSFHc,117
|
160
|
+
kirin/ir/attrs/_types.pyi,sha256=-4ByaK24939L8aDhYAApPch1gQd2CdhGDY3u4uowX5w,564
|
161
|
+
kirin/ir/attrs/abc.py,sha256=4h6tejZFYpA5VDB-o4OA6OxAtw5qaox8-OJTGn_kx40,1293
|
162
|
+
kirin/ir/attrs/py.py,sha256=rkV89CDxFEmGrO3-PPTATyvr8Ez9IdG1rciUORy_6qc,1245
|
163
|
+
kirin/ir/attrs/types.py,sha256=Obk2UhBuoe4DM4dmiRV0gUZIdgL71HMLr3AwfsmESwE,16316
|
164
|
+
kirin/ir/nodes/__init__.py,sha256=_7-a17ZQinL_2SoLBUYiuy5le7bsLFFIgrCnzpulsw4,273
|
165
|
+
kirin/ir/nodes/base.py,sha256=XVEUKwE0vg-974AUkRf95kbyEUNl-l0ZLTW8pCgmpWw,4625
|
166
|
+
kirin/ir/nodes/block.py,sha256=NkjWF43zBmygZy81P9uDN00TbNzl49beI4-MVKNOxWw,14601
|
167
|
+
kirin/ir/nodes/region.py,sha256=NcDlWw4OuO3kYWS8foxAaXIotW7UtQOTrkikM4X179s,11572
|
168
|
+
kirin/ir/nodes/stmt.py,sha256=d0q5aMaxSFX4lU-P-SrjrnskSW8UDlqT7JlIL5cCOSw,23561
|
169
|
+
kirin/ir/nodes/view.py,sha256=R757RfcpTbKUxZ2y85veyzJd3yDdu5s5EbPb1AUEGmg,4080
|
170
|
+
kirin/ir/traits/__init__.py,sha256=JyrpUekFy7JyzxNt5K47VrrGplPaDLytFePNFXNSxGQ,1211
|
171
|
+
kirin/ir/traits/abc.py,sha256=xNU8ZkLDQaOq2_QGv6lUpIRy62KhZKxHirhPKJupcos,1146
|
172
|
+
kirin/ir/traits/basic.py,sha256=QG1Aj2ErjZ7T_CfdxnNkWRa8rMV2CTbLRuyu4TuMtro,1715
|
173
|
+
kirin/ir/traits/callable.py,sha256=hcq6_WIHKH706iIlzZmLbyPL2TUsX-7mb-CA9438en4,1592
|
174
|
+
kirin/ir/traits/symbol.py,sha256=bsaKdhHNxxAUTbnwM309e_sBRTkHaOCxQwgZ2kxl-gU,1869
|
175
|
+
kirin/ir/traits/lowering/__init__.py,sha256=zT0GSOAKYTpkWVEKchCPARBWPR-ktZNEev7DcLhPmfQ,35
|
176
|
+
kirin/ir/traits/lowering/call.py,sha256=pJlVcthjXpJ_HjF34vVL-NPGJTpu6u27yxy6dihoJfg,1280
|
177
|
+
kirin/ir/traits/lowering/context.py,sha256=Iop-JOCEStspqvumy7fp1FhCTKJOGRo3GH7zkmbfHD8,4641
|
178
|
+
kirin/ir/traits/region/__init__.py,sha256=6ifgdQqgVZxCOyxJZtUSLeRnz2maIvw2PDvoj3yikKg,30
|
179
|
+
kirin/ir/traits/region/ssacfg.py,sha256=bx0oU34A0YC7qhdU0gV3K_1d-duPdwXNMzj9M3IAuXU,472
|
180
|
+
kirin/lattice/__init__.py,sha256=6vKU9vz6mnchasjLmEGD_dJyTxb1-9OToN1ewlzU-nI,409
|
181
|
+
kirin/lattice/abc.py,sha256=WVS7-yUhC0wRvcj6PQab4K2vdKkfrLwJ9Fn5lXcI5Uo,3651
|
182
|
+
kirin/lattice/empty.py,sha256=jVZJ2hlNeX5Ms_LGY5IJjhflDxYwCw38WEFTsIQkNgo,580
|
183
|
+
kirin/lattice/mixin.py,sha256=5kZIAUqXYsFBLpEKOyTDFAvnhmzIIlbyxzWclVgu5s0,1682
|
184
|
+
kirin/lowering/__init__.py,sha256=C2XWgY2TtMrTToTC5kQ716v788ACV_47TkbDmLn2TRE,391
|
185
|
+
kirin/lowering/binding.py,sha256=kGUO3u2AADAFfWrxbFiWVIF0iTdToNukUg33etlU0o0,1957
|
186
|
+
kirin/lowering/core.py,sha256=AZFlxguZraVTTiwzKgJcwylv-1L0f0osxetVHDbnevI,2193
|
187
|
+
kirin/lowering/dialect.py,sha256=lCgY6T_XO4BXAZsZFWmqtBxkGbsIJn_AkQY94jN61yU,1039
|
188
|
+
kirin/lowering/dialect.pyi,sha256=oH2cs2AcfEbUpNVWE8IqNdzZ-FArF_xnNXY8W06DRDM,10912
|
189
|
+
kirin/lowering/frame.py,sha256=rcKgJK5Z4oEW9nGz54Sqb8lMU7J83ZjsQsqfUXxbPPc,5936
|
190
|
+
kirin/lowering/result.py,sha256=wkzajjWguiy4N57oOaymIZy28hJKDd0vDV2VE7jFHqs,1881
|
191
|
+
kirin/lowering/state.py,sha256=B1jsgc1e1_TwocyVqyfTZc1JKoKik8uTDBffXT3uaqw,17343
|
192
|
+
kirin/lowering/stream.py,sha256=K4zaTe1OGQdhUHxMOkPg5Ensljxr-_rqASWFBc7MEZo,1257
|
193
|
+
kirin/passes/__init__.py,sha256=LkjYFxSlmEnZ7Q8xgmJxYcjoDWjk8mo-dpohHhlEZ94,143
|
194
|
+
kirin/passes/abc.py,sha256=z03SLTo06vPstE618B5WhpdbBs_iYhkVdGYVFPM6AyY,1414
|
195
|
+
kirin/passes/fold.py,sha256=8WWtZ3Al-ykBkDnCbarACw7jqwJVtZROg7-7XRLitjo,1186
|
196
|
+
kirin/passes/inline.py,sha256=MJYqbl-gTU6CgU_kd-rNdRCqGSj6OG5ZsOh24x0EVIY,728
|
197
|
+
kirin/passes/typeinfer.py,sha256=s8jm2KRXG6hT54nrxItrwypiygcDg-OM8H6kExC1WDY,816
|
198
|
+
kirin/passes/aggressive/__init__.py,sha256=FLA0VmTjdwCte-E_76-2RXRKGJL5BqMo09oQ2JovaKY,31
|
199
|
+
kirin/passes/aggressive/fold.py,sha256=GJ7UH_p4jxPKBluiMqnEroer6abfuDEqNF2w9bTW2pI,1192
|
200
|
+
kirin/print/__init__.py,sha256=GDJcJRoFFT_Bb26boiQirC3G7OVKeLRMOfBkDX1wJhQ,644
|
201
|
+
kirin/print/printable.py,sha256=MWonsgKhygQNMk-7F_KeSz3VHgGYgdmCTJ7LoFNlXzI,4796
|
202
|
+
kirin/print/printer.py,sha256=h2lUyOltrr0vyfYKapNJgxi21WWIap2z-fs4w_7PBpI,13070
|
203
|
+
kirin/rewrite/__init__.py,sha256=eXlDFaLR3u8xwPdLt0MIpj_W-KUEZ2mx8KEGdIVinRc,688
|
204
|
+
kirin/rewrite/abc.py,sha256=PV5FQ2PKwgEB8dIUwEXFopEGWJWzW-Cx-95R0T0TnBM,1545
|
205
|
+
kirin/rewrite/alias.py,sha256=x2yCsNIxR1Frm6FAV-e09ARBnHdCIa7ZEZbR04PQR8I,445
|
206
|
+
kirin/rewrite/apply_type.py,sha256=tHhJpYyeQ1PaGf3Iy3pHZIQLzhlD8Tb8ZQpFIyQ0bkA,1728
|
207
|
+
kirin/rewrite/call2invoke.py,sha256=QB0lcVF-9qfZrnUuPzJSvNqeBnRbXKW4CjE85ZGV54E,1130
|
208
|
+
kirin/rewrite/chain.py,sha256=XbX0l79K_FS99Ni7caCFsnfvqF2xKn5rkmGH64EkbvE,1206
|
209
|
+
kirin/rewrite/compactify.py,sha256=7vWKQP2qZ0opHmZgOxPgqsaFT6zh9UAYqRPUapXYzQA,9876
|
210
|
+
kirin/rewrite/cse.py,sha256=sL3GPYFLC3eu3rbstbl0h6WCl-oypS-eK7qP4-7g1LQ,1515
|
211
|
+
kirin/rewrite/dce.py,sha256=J3jcgPUAcMoxqFfpH0Sjr42yM6fqHowmddMD4h4aL8Q,501
|
212
|
+
kirin/rewrite/fixpoint.py,sha256=EyvgtiJy2myMuZB8KZBEVtRy5cALBqI76IzC5xmVrSw,1019
|
213
|
+
kirin/rewrite/fold.py,sha256=KL-Oq-S0UbvbDDbBBlTZcyR7h_hEO1HFUrvVF6A3aCM,2082
|
214
|
+
kirin/rewrite/getfield.py,sha256=o6co0t8XaRR-TaKDOacNowitT7c7Y0r-TV5jQWvwWr4,612
|
215
|
+
kirin/rewrite/getitem.py,sha256=nqbt9SReRWyKcSe8Izzimsdu8y4UDiDFywo96x-18-E,1246
|
216
|
+
kirin/rewrite/inline.py,sha256=dmf64a4HQ_FMSXIkbwLr-fWVX4HShl0zehE3RbA-F-c,4922
|
217
|
+
kirin/rewrite/result.py,sha256=2K-Z4V001-1dXkhZTamPvjxzyQ1gc3Dl_5rcygeQ1nc,593
|
218
|
+
kirin/rewrite/walk.py,sha256=OAzrwirtN_LZyksqVNX1JE8YQU00X6K4rfArhcUVVzk,2984
|
219
|
+
kirin/rewrite/wrap_const.py,sha256=khamusO1e9wld9A3aGsupPD2sjujb1v9yfu3CGhg5mw,1879
|
220
|
+
kirin/rewrite/aggressive/__init__.py,sha256=FLA0VmTjdwCte-E_76-2RXRKGJL5BqMo09oQ2JovaKY,31
|
221
|
+
kirin/rewrite/aggressive/fold.py,sha256=xvf228dvaaUbjSLPQiJ0dfGv9RyipVDWCAUmnHO5_jA,1376
|
222
|
+
kirin_toolchain-0.13.0.dist-info/METADATA,sha256=m1gxMaUsIw0JXGlB52ZHAYSGgPLHUvXiEJP4VJWjD6E,1272
|
223
|
+
kirin_toolchain-0.13.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
224
|
+
kirin_toolchain-0.13.0.dist-info/licenses/LICENSE,sha256=xg1qJZWeEKV49MyYnIk_HoBu3hItnCOsJSuZSsuqscE,13154
|
225
|
+
kirin_toolchain-0.13.0.dist-info/RECORD,,
|
@@ -0,0 +1,234 @@
|
|
1
|
+
==============================================================================
|
2
|
+
The Kirin Project is under the Apache License v2.0 with LLVM Exceptions:
|
3
|
+
==============================================================================
|
4
|
+
|
5
|
+
Apache License
|
6
|
+
Version 2.0, January 2004
|
7
|
+
http://www.apache.org/licenses/
|
8
|
+
|
9
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
10
|
+
|
11
|
+
1. Definitions.
|
12
|
+
|
13
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
14
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
15
|
+
|
16
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
17
|
+
the copyright owner that is granting the License.
|
18
|
+
|
19
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
20
|
+
other entities that control, are controlled by, or are under common
|
21
|
+
control with that entity. For the purposes of this definition,
|
22
|
+
"control" means (i) the power, direct or indirect, to cause the
|
23
|
+
direction or management of such entity, whether by contract or
|
24
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
25
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
26
|
+
|
27
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
28
|
+
exercising permissions granted by this License.
|
29
|
+
|
30
|
+
"Source" form shall mean the preferred form for making modifications,
|
31
|
+
including but not limited to software source code, documentation
|
32
|
+
source, and configuration files.
|
33
|
+
|
34
|
+
"Object" form shall mean any form resulting from mechanical
|
35
|
+
transformation or translation of a Source form, including but
|
36
|
+
not limited to compiled object code, generated documentation,
|
37
|
+
and conversions to other media types.
|
38
|
+
|
39
|
+
"Work" shall mean the work of authorship, whether in Source or
|
40
|
+
Object form, made available under the License, as indicated by a
|
41
|
+
copyright notice that is included in or attached to the work
|
42
|
+
(an example is provided in the Appendix below).
|
43
|
+
|
44
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
45
|
+
form, that is based on (or derived from) the Work and for which the
|
46
|
+
editorial revisions, annotations, elaborations, or other modifications
|
47
|
+
represent, as a whole, an original work of authorship. For the purposes
|
48
|
+
of this License, Derivative Works shall not include works that remain
|
49
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
50
|
+
the Work and Derivative Works thereof.
|
51
|
+
|
52
|
+
"Contribution" shall mean any work of authorship, including
|
53
|
+
the original version of the Work and any modifications or additions
|
54
|
+
to that Work or Derivative Works thereof, that is intentionally
|
55
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
56
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
57
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
58
|
+
means any form of electronic, verbal, or written communication sent
|
59
|
+
to the Licensor or its representatives, including but not limited to
|
60
|
+
communication on electronic mailing lists, source code control systems,
|
61
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
62
|
+
Licensor for the purpose of discussing and improving the Work, but
|
63
|
+
excluding communication that is conspicuously marked or otherwise
|
64
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
65
|
+
|
66
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
67
|
+
on behalf of whom a Contribution has been received by Licensor and
|
68
|
+
subsequently incorporated within the Work.
|
69
|
+
|
70
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
71
|
+
this License, each Contributor hereby grants to You a perpetual,
|
72
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
73
|
+
copyright license to reproduce, prepare Derivative Works of,
|
74
|
+
publicly display, publicly perform, sublicense, and distribute the
|
75
|
+
Work and such Derivative Works in Source or Object form.
|
76
|
+
|
77
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
78
|
+
this License, each Contributor hereby grants to You a perpetual,
|
79
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
80
|
+
(except as stated in this section) patent license to make, have made,
|
81
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
82
|
+
where such license applies only to those patent claims licensable
|
83
|
+
by such Contributor that are necessarily infringed by their
|
84
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
85
|
+
with the Work to which such Contribution(s) was submitted. If You
|
86
|
+
institute patent litigation against any entity (including a
|
87
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
88
|
+
or a Contribution incorporated within the Work constitutes direct
|
89
|
+
or contributory patent infringement, then any patent licenses
|
90
|
+
granted to You under this License for that Work shall terminate
|
91
|
+
as of the date such litigation is filed.
|
92
|
+
|
93
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
94
|
+
Work or Derivative Works thereof in any medium, with or without
|
95
|
+
modifications, and in Source or Object form, provided that You
|
96
|
+
meet the following conditions:
|
97
|
+
|
98
|
+
(a) You must give any other recipients of the Work or
|
99
|
+
Derivative Works a copy of this License; and
|
100
|
+
|
101
|
+
(b) You must cause any modified files to carry prominent notices
|
102
|
+
stating that You changed the files; and
|
103
|
+
|
104
|
+
(c) You must retain, in the Source form of any Derivative Works
|
105
|
+
that You distribute, all copyright, patent, trademark, and
|
106
|
+
attribution notices from the Source form of the Work,
|
107
|
+
excluding those notices that do not pertain to any part of
|
108
|
+
the Derivative Works; and
|
109
|
+
|
110
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
111
|
+
distribution, then any Derivative Works that You distribute must
|
112
|
+
include a readable copy of the attribution notices contained
|
113
|
+
within such NOTICE file, excluding those notices that do not
|
114
|
+
pertain to any part of the Derivative Works, in at least one
|
115
|
+
of the following places: within a NOTICE text file distributed
|
116
|
+
as part of the Derivative Works; within the Source form or
|
117
|
+
documentation, if provided along with the Derivative Works; or,
|
118
|
+
within a display generated by the Derivative Works, if and
|
119
|
+
wherever such third-party notices normally appear. The contents
|
120
|
+
of the NOTICE file are for informational purposes only and
|
121
|
+
do not modify the License. You may add Your own attribution
|
122
|
+
notices within Derivative Works that You distribute, alongside
|
123
|
+
or as an addendum to the NOTICE text from the Work, provided
|
124
|
+
that such additional attribution notices cannot be construed
|
125
|
+
as modifying the License.
|
126
|
+
|
127
|
+
You may add Your own copyright statement to Your modifications and
|
128
|
+
may provide additional or different license terms and conditions
|
129
|
+
for use, reproduction, or distribution of Your modifications, or
|
130
|
+
for any such Derivative Works as a whole, provided Your use,
|
131
|
+
reproduction, and distribution of the Work otherwise complies with
|
132
|
+
the conditions stated in this License.
|
133
|
+
|
134
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
135
|
+
any Contribution intentionally submitted for inclusion in the Work
|
136
|
+
by You to the Licensor shall be under the terms and conditions of
|
137
|
+
this License, without any additional terms or conditions.
|
138
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
139
|
+
the terms of any separate license agreement you may have executed
|
140
|
+
with Licensor regarding such Contributions.
|
141
|
+
|
142
|
+
6. Trademarks. This License does not grant permission to use the trade
|
143
|
+
names, trademarks, service marks, or product names of the Licensor,
|
144
|
+
except as required for reasonable and customary use in describing the
|
145
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
146
|
+
|
147
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
148
|
+
agreed to in writing, Licensor provides the Work (and each
|
149
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
150
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
151
|
+
implied, including, without limitation, any warranties or conditions
|
152
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
153
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
154
|
+
appropriateness of using or redistributing the Work and assume any
|
155
|
+
risks associated with Your exercise of permissions under this License.
|
156
|
+
|
157
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
158
|
+
whether in tort (including negligence), contract, or otherwise,
|
159
|
+
unless required by applicable law (such as deliberate and grossly
|
160
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
161
|
+
liable to You for damages, including any direct, indirect, special,
|
162
|
+
incidental, or consequential damages of any character arising as a
|
163
|
+
result of this License or out of the use or inability to use the
|
164
|
+
Work (including but not limited to damages for loss of goodwill,
|
165
|
+
work stoppage, computer failure or malfunction, or any and all
|
166
|
+
other commercial damages or losses), even if such Contributor
|
167
|
+
has been advised of the possibility of such damages.
|
168
|
+
|
169
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
170
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
171
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
172
|
+
or other liability obligations and/or rights consistent with this
|
173
|
+
License. However, in accepting such obligations, You may act only
|
174
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
175
|
+
of any other Contributor, and only if You agree to indemnify,
|
176
|
+
defend, and hold each Contributor harmless for any liability
|
177
|
+
incurred by, or claims asserted against, such Contributor by reason
|
178
|
+
of your accepting any such warranty or additional liability.
|
179
|
+
|
180
|
+
END OF TERMS AND CONDITIONS
|
181
|
+
|
182
|
+
APPENDIX: How to apply the Apache License to your work.
|
183
|
+
|
184
|
+
To apply the Apache License to your work, attach the following
|
185
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
186
|
+
replaced with your own identifying information. (Don't include
|
187
|
+
the brackets!) The text should be enclosed in the appropriate
|
188
|
+
comment syntax for the file format. We also recommend that a
|
189
|
+
file or class name and description of purpose be included on the
|
190
|
+
same "printed page" as the copyright notice for easier
|
191
|
+
identification within third-party archives.
|
192
|
+
|
193
|
+
Copyright [yyyy] [name of copyright owner]
|
194
|
+
|
195
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
196
|
+
you may not use this file except in compliance with the License.
|
197
|
+
You may obtain a copy of the License at
|
198
|
+
|
199
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
200
|
+
|
201
|
+
Unless required by applicable law or agreed to in writing, software
|
202
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
203
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
204
|
+
See the License for the specific language governing permissions and
|
205
|
+
limitations under the License.
|
206
|
+
|
207
|
+
|
208
|
+
---- LLVM Exceptions to the Apache 2.0 License ----
|
209
|
+
|
210
|
+
As an exception, if, as a result of your compiling your source code, portions
|
211
|
+
of this Software are embedded into an Object form of such source code, you
|
212
|
+
may redistribute such embedded portions in such Object form without complying
|
213
|
+
with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
|
214
|
+
|
215
|
+
In addition, if you combine or link compiled forms of this Software with
|
216
|
+
software that is licensed under the GPLv2 ("Combined Software") and if a
|
217
|
+
court of competent jurisdiction determines that the patent provision (Section
|
218
|
+
3), the indemnity provision (Section 9) or other Section of the License
|
219
|
+
conflicts with the conditions of the GPLv2, you may retroactively and
|
220
|
+
prospectively choose to deem waived or otherwise exclude such Section(s) of
|
221
|
+
the License, but only in their entirety and only with respect to the Combined
|
222
|
+
Software.
|
223
|
+
|
224
|
+
==============================================================================
|
225
|
+
Software from third parties included in the Kirin Project:
|
226
|
+
==============================================================================
|
227
|
+
The Kirin Project contains third party software which is under different license
|
228
|
+
terms. All such code will be identified clearly using at least one of two
|
229
|
+
mechanisms:
|
230
|
+
1) It will be in a separate directory tree with its own `LICENSE.txt` or
|
231
|
+
`LICENSE` file at the top containing the specific license and restrictions
|
232
|
+
which apply to that software, or
|
233
|
+
2) It will contain specific license and restriction terms at the top of every
|
234
|
+
file.
|