@harmoniclabs/pebble 0.1.0-dev5 → 0.1.0-dev6
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.
- package/dist/IR/IRHash.d.ts +3 -3
- package/dist/IR/IRHash.js +47 -52
- package/dist/IR/IRNodes/IRApp.d.ts +12 -8
- package/dist/IR/IRNodes/IRApp.js +34 -20
- package/dist/IR/IRNodes/IRCase.d.ts +11 -7
- package/dist/IR/IRNodes/IRCase.js +33 -32
- package/dist/IR/IRNodes/IRConst.d.ts +7 -5
- package/dist/IR/IRNodes/IRConst.js +23 -13
- package/dist/IR/IRNodes/IRConstr.d.ts +11 -7
- package/dist/IR/IRNodes/IRConstr.js +34 -37
- package/dist/IR/IRNodes/IRDelayed.d.ts +12 -9
- package/dist/IR/IRNodes/IRDelayed.js +22 -18
- package/dist/IR/IRNodes/IRError.d.ts +9 -6
- package/dist/IR/IRNodes/IRError.js +12 -5
- package/dist/IR/IRNodes/IRForced.d.ts +9 -6
- package/dist/IR/IRNodes/IRForced.js +22 -18
- package/dist/IR/IRNodes/IRFunc.d.ts +14 -10
- package/dist/IR/IRNodes/IRFunc.js +35 -38
- package/dist/IR/IRNodes/IRHoisted.d.ts +16 -9
- package/dist/IR/IRNodes/IRHoisted.js +36 -18
- package/dist/IR/IRNodes/IRLetted.d.ts +14 -34
- package/dist/IR/IRNodes/IRLetted.js +65 -297
- package/dist/IR/IRNodes/IRNative/IRNativeTag.d.ts +0 -2
- package/dist/IR/IRNodes/IRNative/IRNativeTag.js +0 -4
- package/dist/IR/IRNodes/IRNative/index.d.ts +9 -8
- package/dist/IR/IRNodes/IRNative/index.js +55 -18
- package/dist/IR/IRNodes/IRNative/isForcedNative.d.ts +2 -0
- package/dist/IR/IRNodes/IRNative/isForcedNative.js +1 -1
- package/dist/IR/IRNodes/IRRecursive.d.ts +18 -10
- package/dist/IR/IRNodes/IRRecursive.js +36 -44
- package/dist/IR/IRNodes/IRSelfCall.d.ts +10 -24
- package/dist/IR/IRNodes/IRSelfCall.js +25 -87
- package/dist/IR/IRNodes/IRVar.d.ts +11 -19
- package/dist/IR/IRNodes/IRVar.js +26 -54
- package/dist/IR/IRNodes/utils/dependsByDbns.d.ts +1 -1
- package/dist/IR/IRNodes/utils/dependsByDbns.js +5 -11
- package/dist/IR/IRNodes/utils/hashVarSym.d.ts +1 -0
- package/dist/IR/IRNodes/utils/hashVarSym.js +37 -0
- package/dist/IR/IRNodes/utils/makeArrayLikeProxy.d.ts +2 -1
- package/dist/IR/IRTerm.d.ts +7 -0
- package/dist/IR/toUPLC/_internal/_modifyChildFromTo.js +3 -0
- package/dist/IR/toUPLC/_internal/findAll.js +2 -73
- package/dist/IR/toUPLC/_internal/getDebruijnInTerm.js +7 -34
- package/dist/IR/toUPLC/_internal/iterTree.js +3 -17
- package/dist/IR/toUPLC/common_hoisted.d.ts +2 -0
- package/dist/IR/toUPLC/common_hoisted.js +4 -0
- package/dist/IR/toUPLC/compileIRToUPLC.d.ts +1 -1
- package/dist/IR/toUPLC/compileIRToUPLC.js +91 -14
- package/dist/IR/toUPLC/ctx/ToUplcCtx.d.ts +16 -0
- package/dist/IR/toUPLC/ctx/ToUplcCtx.js +75 -0
- package/dist/IR/toUPLC/subRoutines/_comptimeDropN.d.ts +8 -0
- package/dist/IR/toUPLC/subRoutines/_comptimeDropN.js +95 -0
- package/dist/IR/toUPLC/subRoutines/handleHoistedAndReturnRoot/index.js +7 -54
- package/dist/IR/toUPLC/subRoutines/handleLetted/groupByScope.d.ts +6 -13
- package/dist/IR/toUPLC/subRoutines/handleLetted/groupByScope.js +67 -71
- package/dist/IR/toUPLC/subRoutines/handleLetted/index.js +44 -170
- package/dist/IR/toUPLC/subRoutines/handleRecursiveTerms.js +7 -3
- package/dist/IR/toUPLC/subRoutines/hoistForcedNatives.js +3 -2
- package/dist/IR/toUPLC/subRoutines/inlineSingleUseAndReturnRoot/InlineSingleUseCtx.d.ts +22 -0
- package/dist/IR/toUPLC/subRoutines/inlineSingleUseAndReturnRoot/InlineSingleUseCtx.js +59 -0
- package/dist/IR/toUPLC/subRoutines/inlineSingleUseAndReturnRoot/inlineSingleUseAndReturnRoot.d.ts +0 -0
- package/dist/IR/toUPLC/subRoutines/inlineSingleUseAndReturnRoot/inlineSingleUseAndReturnRoot.js +217 -0
- package/dist/IR/toUPLC/subRoutines/markRecursiveHoistsAsForced.js +12 -49
- package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/expandFuncsAndReturnRoot.d.ts +1 -1
- package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/expandFuncsAndReturnRoot.js +11 -14
- package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/{index.d.ts → performUplcOptimizationsAndReturnRoot.d.ts} +0 -2
- package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/performUplcOptimizationsAndReturnRoot.js +151 -0
- package/dist/IR/toUPLC/subRoutines/removeUnusuedVarsAndReturnRoot/RemoveUnusedVarsCtx.d.ts +11 -0
- package/dist/IR/toUPLC/subRoutines/removeUnusuedVarsAndReturnRoot/RemoveUnusedVarsCtx.js +46 -0
- package/dist/IR/toUPLC/subRoutines/removeUnusuedVarsAndReturnRoot/removeUnusuedVarsAndReturnRoot.d.ts +2 -0
- package/dist/IR/toUPLC/subRoutines/removeUnusuedVarsAndReturnRoot/removeUnusuedVarsAndReturnRoot.js +80 -0
- package/dist/IR/toUPLC/subRoutines/replaceHoistedWithLetted.js +18 -11
- package/dist/IR/toUPLC/subRoutines/replaceNatives/nativeToIR.d.ts +43 -0
- package/dist/IR/toUPLC/subRoutines/replaceNatives/nativeToIR.js +255 -478
- package/dist/IR/toUPLC/subRoutines/rewriteNativesAppliedToConstantsAndReturnRoot.d.ts +2 -0
- package/dist/IR/toUPLC/subRoutines/rewriteNativesAppliedToConstantsAndReturnRoot.js +85 -0
- package/dist/IR/toUPLC/subRoutines/sanifyTree.js +1 -0
- package/dist/IR/toUPLC/utils/getApplicationTerms.d.ts +6 -0
- package/dist/IR/toUPLC/utils/getApplicationTerms.js +37 -0
- package/dist/IR/tree_utils/_ir_lazyChooseList.d.ts +2 -2
- package/dist/IR/tree_utils/_ir_lazyChooseList.js +4 -2
- package/dist/IR/tree_utils/_ir_lazyIfThenElse.d.ts +1 -1
- package/dist/IR/tree_utils/_ir_lazyIfThenElse.js +4 -2
- package/dist/IR/tree_utils/_ir_let.d.ts +2 -1
- package/dist/IR/tree_utils/_ir_let.js +6 -2
- package/dist/IR/utils/isClosedIRTerm.d.ts +1 -0
- package/dist/IR/utils/isClosedIRTerm.js +39 -25
- package/dist/IR/utils/positiveIntAsBytes.d.ts +1 -0
- package/dist/IR/utils/positiveIntAsBytes.js +4 -0
- package/dist/IR/utils/showIR.d.ts +10 -21
- package/dist/IR/utils/showIR.js +66 -64
- package/dist/ast/nodes/common/Identifier.d.ts +1 -0
- package/dist/ast/nodes/common/Identifier.js +3 -0
- package/dist/ast/nodes/expr/CaseExpr.d.ts +5 -5
- package/dist/ast/nodes/expr/ElemAccessExpr.d.ts +2 -2
- package/dist/ast/nodes/expr/ParentesizedExpr.d.ts +1 -1
- package/dist/ast/nodes/expr/PebbleExpr.d.ts +2 -1
- package/dist/ast/nodes/expr/PropAccessExpr.d.ts +3 -3
- package/dist/ast/nodes/expr/TernaryExpr.d.ts +3 -3
- package/dist/ast/nodes/expr/TypeConversionExpr.d.ts +2 -1
- package/dist/ast/nodes/expr/TypeConversionExpr.js +2 -0
- package/dist/ast/nodes/expr/binary/BinaryExpr.d.ts +42 -42
- package/dist/ast/nodes/expr/functions/CallExpr.d.ts +1 -1
- package/dist/ast/nodes/expr/functions/FuncExpr.d.ts +2 -1
- package/dist/ast/nodes/expr/functions/FuncExpr.js +6 -0
- package/dist/ast/nodes/expr/litteral/LitContextExpr.d.ts +6 -0
- package/dist/ast/nodes/expr/litteral/LitContextExpr.js +6 -0
- package/dist/ast/nodes/expr/litteral/LitFailExpr.d.ts +6 -0
- package/dist/ast/nodes/expr/litteral/LitFailExpr.js +6 -0
- package/dist/ast/nodes/expr/litteral/LitteralExpr.d.ts +3 -1
- package/dist/ast/nodes/expr/litteral/LitteralExpr.js +5 -1
- package/dist/ast/nodes/statements/AssertStmt.d.ts +2 -2
- package/dist/ast/nodes/statements/AssignmentStmt.d.ts +1 -1
- package/dist/ast/nodes/statements/BlockStmt.d.ts +1 -1
- package/dist/ast/nodes/statements/FailStmt.d.ts +1 -1
- package/dist/ast/nodes/statements/ForOfStmt.d.ts +4 -2
- package/dist/ast/nodes/statements/ForOfStmt.js +6 -0
- package/dist/ast/nodes/statements/ForStmt.d.ts +6 -4
- package/dist/ast/nodes/statements/ForStmt.js +6 -0
- package/dist/ast/nodes/statements/IfStmt.d.ts +8 -5
- package/dist/ast/nodes/statements/IfStmt.js +13 -0
- package/dist/ast/nodes/statements/MatchStmt.d.ts +13 -4
- package/dist/ast/nodes/statements/MatchStmt.js +22 -1
- package/dist/ast/nodes/statements/PebbleStmt.d.ts +2 -1
- package/dist/ast/nodes/statements/PebbleStmt.js +3 -1
- package/dist/ast/nodes/statements/ReturnStmt.d.ts +1 -1
- package/dist/ast/nodes/statements/WhileStmt.d.ts +4 -2
- package/dist/ast/nodes/statements/WhileStmt.js +6 -0
- package/dist/ast/nodes/statements/declarations/ContractDecl.d.ts +17 -0
- package/dist/ast/nodes/statements/declarations/ContractDecl.js +22 -0
- package/dist/ast/nodes/statements/declarations/VarDecl/ArrayLikeDeconstr.d.ts +1 -1
- package/dist/ast/nodes/statements/declarations/VarDecl/HasInit.d.ts +1 -1
- package/dist/ast/nodes/statements/declarations/VarDecl/NamedDeconstructVarDecl.d.ts +1 -1
- package/dist/ast/nodes/statements/declarations/VarDecl/SimpleVarDecl.d.ts +2 -1
- package/dist/ast/nodes/statements/declarations/VarDecl/SimpleVarDecl.js +6 -0
- package/dist/ast/nodes/statements/declarations/VarDecl/SingleDeconstructVarDecl.d.ts +1 -1
- package/dist/compiler/AstCompiler/AstCompiler.d.ts +6 -2
- package/dist/compiler/AstCompiler/AstCompiler.js +91 -24
- package/dist/compiler/AstCompiler/internal/_deriveContractBody/_deriveContractBody.d.ts +10 -0
- package/dist/compiler/AstCompiler/internal/_deriveContractBody/_deriveContractBody.js +777 -0
- package/dist/compiler/AstCompiler/internal/exprs/_compileBinaryExpr.js +1 -1
- package/dist/compiler/AstCompiler/internal/exprs/_compileExpr.js +1 -1
- package/dist/compiler/AstCompiler/internal/exprs/_compileLitteralExpr.js +8 -2
- package/dist/compiler/AstCompiler/internal/exprs/_compilePropAccessExpr.js +1 -1
- package/dist/compiler/AstCompiler/internal/exprs/_compileTypeConversionExpr.js +3 -1
- package/dist/compiler/AstCompiler/internal/exprs/_compileUnaryPrefixExpr.js +1 -1
- package/dist/compiler/AstCompiler/internal/statements/_compileAssignmentStmt.js +2 -2
- package/dist/compiler/AstCompiler/internal/statements/_compileMatchStmt.d.ts +2 -2
- package/dist/compiler/AstCompiler/internal/statements/_compileMatchStmt.js +48 -24
- package/dist/compiler/AstCompiler/internal/statements/_compileStatement.js +4 -1
- package/dist/compiler/AstCompiler/internal/statements/_compileVarStmt.js +2 -2
- package/dist/compiler/AstCompiler/internal/types/_compileDataEncodedConcreteType.js +1 -1
- package/dist/compiler/AstCompiler/internal/types/_compileSopEncodedConcreteType.js +4 -1
- package/dist/compiler/AstCompiler/scope/AstScope.js +4 -3
- package/dist/compiler/AstCompiler/utils/getPropAccessReturnType.js +6 -4
- package/dist/compiler/Compiler.js +3 -1
- package/dist/compiler/TirCompiler/compileTirProgram.js +3 -1
- package/dist/compiler/TirCompiler/expressify/ExpressifyCtx.d.ts +13 -3
- package/dist/compiler/TirCompiler/expressify/ExpressifyCtx.js +41 -37
- package/dist/compiler/TirCompiler/expressify/determineReassignedVariablesAndReturn.js +11 -2
- package/dist/compiler/TirCompiler/expressify/expressify.d.ts +2 -1
- package/dist/compiler/TirCompiler/expressify/expressify.js +82 -36
- package/dist/compiler/TirCompiler/expressify/expressifyForStmt.d.ts +2 -1
- package/dist/compiler/TirCompiler/expressify/expressifyForStmt.js +57 -8
- package/dist/compiler/TirCompiler/expressify/expressifyIfBranch.js +1 -1
- package/dist/compiler/TirCompiler/expressify/expressifyVarAssignmentStmt.js +1 -1
- package/dist/compiler/TirCompiler/expressify/expressifyVarDecl.js +1 -0
- package/dist/compiler/TirCompiler/expressify/expressifyVars.js +131 -9
- package/dist/compiler/TirCompiler/internal/_compileHoistedDeps.js +3 -1
- package/dist/compiler/io/IOutputStream.d.ts +1 -0
- package/dist/compiler/io/IOutputStream.js +18 -3
- package/dist/compiler/path/getAbsolutePath.js +4 -6
- package/dist/compiler/tir/expressions/ITirExpr.d.ts +2 -0
- package/dist/compiler/tir/expressions/TirAssertAndContinueExpr.d.ts +4 -2
- package/dist/compiler/tir/expressions/TirAssertAndContinueExpr.js +16 -2
- package/dist/compiler/tir/expressions/TirCallExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirCallExpr.js +16 -1
- package/dist/compiler/tir/expressions/TirCaseExpr.d.ts +6 -1
- package/dist/compiler/tir/expressions/TirCaseExpr.js +103 -60
- package/dist/compiler/tir/expressions/TirElemAccessExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirElemAccessExpr.js +9 -1
- package/dist/compiler/tir/expressions/TirFailExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirFailExpr.js +9 -1
- package/dist/compiler/tir/expressions/TirFromDataExpr.d.ts +3 -2
- package/dist/compiler/tir/expressions/TirFromDataExpr.js +85 -56
- package/dist/compiler/tir/expressions/TirFuncExpr.d.ts +4 -10
- package/dist/compiler/tir/expressions/TirFuncExpr.js +30 -13
- package/dist/compiler/tir/expressions/TirHoistedExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirHoistedExpr.js +8 -0
- package/dist/compiler/tir/expressions/TirInlineClosedIR.d.ts +4 -1
- package/dist/compiler/tir/expressions/TirInlineClosedIR.js +8 -0
- package/dist/compiler/tir/expressions/TirLettedExpr.d.ts +5 -2
- package/dist/compiler/tir/expressions/TirLettedExpr.js +19 -4
- package/dist/compiler/tir/expressions/TirNativeFunc.d.ts +8 -5
- package/dist/compiler/tir/expressions/TirNativeFunc.js +50 -22
- package/dist/compiler/tir/expressions/TirParentesizedExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirParentesizedExpr.js +6 -0
- package/dist/compiler/tir/expressions/TirPropAccessExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirPropAccessExpr.js +9 -0
- package/dist/compiler/tir/expressions/TirTernaryExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirTernaryExpr.js +16 -5
- package/dist/compiler/tir/expressions/TirToDataExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirToDataExpr.js +56 -25
- package/dist/compiler/tir/expressions/TirTraceIfFalseExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirTraceIfFalseExpr.js +21 -4
- package/dist/compiler/tir/expressions/TirTypeConversionExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/TirTypeConversionExpr.js +9 -1
- package/dist/compiler/tir/expressions/TirVariableAccessExpr.d.ts +7 -3
- package/dist/compiler/tir/expressions/TirVariableAccessExpr.js +17 -7
- package/dist/compiler/tir/expressions/ToIRTermCtx.d.ts +16 -20
- package/dist/compiler/tir/expressions/ToIRTermCtx.js +67 -50
- package/dist/compiler/tir/expressions/binary/TirBinaryExpr.d.ts +40 -0
- package/dist/compiler/tir/expressions/binary/TirBinaryExpr.js +174 -3
- package/dist/compiler/tir/expressions/litteral/TirLitArrExpr.d.ts +4 -2
- package/dist/compiler/tir/expressions/litteral/TirLitArrExpr.js +8 -2
- package/dist/compiler/tir/expressions/litteral/TirLitFailExpr.d.ts +17 -0
- package/dist/compiler/tir/expressions/litteral/TirLitFailExpr.js +21 -0
- package/dist/compiler/tir/expressions/litteral/TirLitFalseExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitFalseExpr.js +4 -0
- package/dist/compiler/tir/expressions/litteral/TirLitHexBytesExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitHexBytesExpr.js +5 -0
- package/dist/compiler/tir/expressions/litteral/TirLitIntExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitIntExpr.js +4 -0
- package/dist/compiler/tir/expressions/litteral/TirLitNamedObjExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/litteral/TirLitNamedObjExpr.js +5 -0
- package/dist/compiler/tir/expressions/litteral/TirLitObjExpr.d.ts +3 -1
- package/dist/compiler/tir/expressions/litteral/TirLitObjExpr.js +5 -0
- package/dist/compiler/tir/expressions/litteral/TirLitStrExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitStrExpr.js +4 -0
- package/dist/compiler/tir/expressions/litteral/TirLitThisExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitThisExpr.js +7 -3
- package/dist/compiler/tir/expressions/litteral/TirLitTrueExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitTrueExpr.js +4 -0
- package/dist/compiler/tir/expressions/litteral/TirLitUndefExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitUndefExpr.js +4 -0
- package/dist/compiler/tir/expressions/litteral/TirLitVoidExpr.d.ts +4 -1
- package/dist/compiler/tir/expressions/litteral/TirLitVoidExpr.js +4 -0
- package/dist/compiler/tir/expressions/litteral/TirLitteralExpr.d.ts +2 -1
- package/dist/compiler/tir/expressions/litteral/TirLitteralExpr.js +3 -1
- package/dist/compiler/tir/expressions/unary/TirUnaryExclamation.d.ts +4 -2
- package/dist/compiler/tir/expressions/unary/TirUnaryExclamation.js +8 -3
- package/dist/compiler/tir/expressions/unary/TirUnaryMinus.d.ts +4 -2
- package/dist/compiler/tir/expressions/unary/TirUnaryMinus.js +8 -2
- package/dist/compiler/tir/expressions/unary/TirUnaryPlus.d.ts +3 -1
- package/dist/compiler/tir/expressions/unary/TirUnaryPlus.js +6 -0
- package/dist/compiler/tir/expressions/unary/TirUnaryTilde.d.ts +4 -2
- package/dist/compiler/tir/expressions/unary/TirUnaryTilde.js +8 -2
- package/dist/compiler/tir/program/TypedProgram.d.ts +1 -0
- package/dist/compiler/tir/program/TypedProgram.js +9 -0
- package/dist/compiler/tir/program/stdScope/stdScope.js +126 -126
- package/dist/compiler/tir/statements/TirAssertStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirAssertStmt.js +10 -0
- package/dist/compiler/tir/statements/TirAssignmentStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirAssignmentStmt.js +8 -0
- package/dist/compiler/tir/statements/TirBlockStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirBlockStmt.js +16 -0
- package/dist/compiler/tir/statements/TirBreakStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirBreakStmt.js +8 -0
- package/dist/compiler/tir/statements/TirContinueStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirContinueStmt.js +8 -0
- package/dist/compiler/tir/statements/TirFailStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirFailStmt.js +8 -0
- package/dist/compiler/tir/statements/TirForOfStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirForOfStmt.js +14 -0
- package/dist/compiler/tir/statements/TirForStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirForStmt.js +21 -0
- package/dist/compiler/tir/statements/TirIfStmt.d.ts +3 -0
- package/dist/compiler/tir/statements/TirIfStmt.js +19 -0
- package/dist/compiler/tir/statements/TirMatchStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirMatchStmt.js +30 -0
- package/dist/compiler/tir/statements/TirReturnStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirReturnStmt.js +8 -0
- package/dist/compiler/tir/statements/TirStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirVarDecl/TirArrayLikeDeconstr.d.ts +2 -0
- package/dist/compiler/tir/statements/TirVarDecl/TirArrayLikeDeconstr.js +30 -0
- package/dist/compiler/tir/statements/TirVarDecl/TirNamedDeconstructVarDecl.d.ts +3 -1
- package/dist/compiler/tir/statements/TirVarDecl/TirNamedDeconstructVarDecl.js +28 -0
- package/dist/compiler/tir/statements/TirVarDecl/TirSimpleVarDecl.d.ts +3 -0
- package/dist/compiler/tir/statements/TirVarDecl/TirSimpleVarDecl.js +13 -0
- package/dist/compiler/tir/statements/TirVarDecl/TirSingleDeconstructVarDecl.d.ts +3 -1
- package/dist/compiler/tir/statements/TirVarDecl/TirSingleDeconstructVarDecl.js +28 -0
- package/dist/compiler/tir/statements/TirWhileStmt.d.ts +2 -0
- package/dist/compiler/tir/statements/TirWhileStmt.js +14 -0
- package/dist/compiler/tir/types/utils/canAssignTo.js +1 -1
- package/dist/diagnostics/DiagnosticEmitter.js +1 -1
- package/dist/diagnostics/diagnosticMessages.generated.d.ts +10 -1
- package/dist/diagnostics/diagnosticMessages.generated.js +20 -2
- package/dist/parser/Parser.d.ts +8 -3
- package/dist/parser/Parser.js +162 -30
- package/dist/tokenizer/Token.d.ts +81 -72
- package/dist/tokenizer/Token.js +82 -72
- package/dist/tokenizer/utils/tokenFromKeyword.js +32 -10
- package/dist/tokenizer/utils/tokenIsAlsoIdentifier.js +10 -0
- package/dist/utils/BitUtils/index.js +1 -1
- package/dist/utils/UPLCFlatUtils/index.js +1 -1
- package/package.json +2 -1
- package/dist/IR/IRNodes/utils/isClosedAtDbn.d.ts +0 -2
- package/dist/IR/IRNodes/utils/isClosedAtDbn.js +0 -22
- package/dist/IR/toUPLC/_internal/_irToUplc.d.ts +0 -9
- package/dist/IR/toUPLC/_internal/_irToUplc.js +0 -156
- package/dist/IR/toUPLC/subRoutines/handleLetted/incrementUnboundDbns.d.ts +0 -9
- package/dist/IR/toUPLC/subRoutines/handleLetted/incrementUnboundDbns.js +0 -73
- package/dist/IR/toUPLC/subRoutines/inlineSingleUseApplications.d.ts +0 -1
- package/dist/IR/toUPLC/subRoutines/inlineSingleUseApplications.js +0 -12
- package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/index.js +0 -227
- package/dist/IR/tree_utils/_ir_apps.d.ts +0 -3
- package/dist/IR/tree_utils/_ir_apps.js +0 -8
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { IRVar } from "../../IRNodes/IRVar.js";
|
|
2
|
-
import { iterTree } from "../_internal/iterTree.js";
|
|
3
|
-
function hasAtLeastNVarsAtDbn(term, baseDbn = 0) {
|
|
4
|
-
let n = 0;
|
|
5
|
-
iterTree(term, (node, dbn) => {
|
|
6
|
-
if (node instanceof IRVar && node.dbn === baseDbn + dbn)
|
|
7
|
-
n++;
|
|
8
|
-
}, undefined, // shouldSkipNode
|
|
9
|
-
() => n > 1 // shouldExit
|
|
10
|
-
);
|
|
11
|
-
return n > 1;
|
|
12
|
-
}
|
|
@@ -1,227 +0,0 @@
|
|
|
1
|
-
import { IRConstr, IRNative } from "../../../IRNodes/index.js";
|
|
2
|
-
import { IRApp } from "../../../IRNodes/IRApp.js";
|
|
3
|
-
import { IRCase } from "../../../IRNodes/IRCase.js";
|
|
4
|
-
import { IRDelayed } from "../../../IRNodes/IRDelayed.js";
|
|
5
|
-
import { IRForced } from "../../../IRNodes/IRForced.js";
|
|
6
|
-
import { IRFunc } from "../../../IRNodes/IRFunc.js";
|
|
7
|
-
import { IRHoisted } from "../../../IRNodes/IRHoisted.js";
|
|
8
|
-
import { IRLetted } from "../../../IRNodes/IRLetted.js";
|
|
9
|
-
import { IRRecursive } from "../../../IRNodes/IRRecursive.js";
|
|
10
|
-
import { IRSelfCall } from "../../../IRNodes/IRSelfCall.js";
|
|
11
|
-
import { IRVar } from "../../../IRNodes/IRVar.js";
|
|
12
|
-
import { dependsByDbns } from "../../../IRNodes/utils/dependsByDbns.js";
|
|
13
|
-
import { mapArrayLike } from "../../../IRNodes/utils/mapArrayLike.js";
|
|
14
|
-
import { _modifyChildFromTo } from "../../_internal/_modifyChildFromTo.js";
|
|
15
|
-
import { isDebugUplcOptimizations } from "../../CompilerOptions.js";
|
|
16
|
-
import { expandFuncsAndReturnRoot, getExpandedIRFunc } from "./expandFuncsAndReturnRoot.js";
|
|
17
|
-
export function performUplcOptimizationsAndReturnRoot(root, options) {
|
|
18
|
-
const opts = options.uplcOptimizations;
|
|
19
|
-
if (isDebugUplcOptimizations(opts))
|
|
20
|
-
return root;
|
|
21
|
-
const { groupApplications, inlineSingleUse, simplifyWrappedPartialFuncApps, removeForceDelay } = opts;
|
|
22
|
-
root = expandFuncsAndReturnRoot(root);
|
|
23
|
-
const stack = [[root, 0]];
|
|
24
|
-
while (stack.length > 0) {
|
|
25
|
-
let [t, dbn] = stack.pop();
|
|
26
|
-
if (t instanceof IRApp) {
|
|
27
|
-
if (isIdLike(t.fn)) {
|
|
28
|
-
if (t.parent)
|
|
29
|
-
_modifyChildFromTo(t.parent, t, t.arg);
|
|
30
|
-
else
|
|
31
|
-
root = t.arg;
|
|
32
|
-
stack.push([t.arg, dbn]);
|
|
33
|
-
continue;
|
|
34
|
-
}
|
|
35
|
-
if (!groupApplications) {
|
|
36
|
-
stack.push([t.fn, dbn], [t.arg, dbn]);
|
|
37
|
-
continue;
|
|
38
|
-
}
|
|
39
|
-
let args;
|
|
40
|
-
let body;
|
|
41
|
-
/*
|
|
42
|
-
// can't figure how to make it work
|
|
43
|
-
[ args, body ] = groupIndipendentLets( t, dbn );
|
|
44
|
-
|
|
45
|
-
if( args.length >= 2 )
|
|
46
|
-
{
|
|
47
|
-
let newNode = body;
|
|
48
|
-
for( let i = args.length - 1; i >= 0; i-- )
|
|
49
|
-
{
|
|
50
|
-
// apply as normal apps, not case/constr
|
|
51
|
-
// so we can further group if the body is directly applications
|
|
52
|
-
newNode = new IRApp( newNode, args[i] );
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
// overwrite original
|
|
56
|
-
if( t.parent ) _modifyChildFromTo( t.parent, t, newNode );
|
|
57
|
-
else root = newNode;
|
|
58
|
-
|
|
59
|
-
// reanalyze this new node to group using case/constr
|
|
60
|
-
stack.push([ newNode, dbn ]);
|
|
61
|
-
continue;
|
|
62
|
-
}
|
|
63
|
-
//*/
|
|
64
|
-
[args, body] = getMultiAppArgsAndBody(t);
|
|
65
|
-
if (args.length <= 2) {
|
|
66
|
-
stack.push([t.fn, dbn], [t.arg, dbn]);
|
|
67
|
-
continue;
|
|
68
|
-
}
|
|
69
|
-
const newNode = new IRCase(new IRConstr(0, args), [body]);
|
|
70
|
-
stack.push([body, dbn]);
|
|
71
|
-
if (t.parent)
|
|
72
|
-
_modifyChildFromTo(t.parent, t, newNode);
|
|
73
|
-
else
|
|
74
|
-
root = newNode;
|
|
75
|
-
continue;
|
|
76
|
-
}
|
|
77
|
-
if (t instanceof IRCase) {
|
|
78
|
-
stack.push([t.constrTerm, dbn], ...mapArrayLike(t.continuations, (c) => [c, dbn]));
|
|
79
|
-
continue;
|
|
80
|
-
}
|
|
81
|
-
if (t instanceof IRConstr) {
|
|
82
|
-
// stack.push( ...t.fields );
|
|
83
|
-
stack.push(...mapArrayLike(t.fields, (f) => [f, dbn]));
|
|
84
|
-
continue;
|
|
85
|
-
}
|
|
86
|
-
if (t instanceof IRDelayed) {
|
|
87
|
-
stack.push([t.delayed, dbn]);
|
|
88
|
-
continue;
|
|
89
|
-
}
|
|
90
|
-
if (t instanceof IRForced) {
|
|
91
|
-
stack.push([t.forced, dbn]);
|
|
92
|
-
continue;
|
|
93
|
-
}
|
|
94
|
-
if (t instanceof IRFunc) {
|
|
95
|
-
stack.push([t.body, dbn + t.arity]);
|
|
96
|
-
continue;
|
|
97
|
-
}
|
|
98
|
-
if (t instanceof IRRecursive ||
|
|
99
|
-
t instanceof IRHoisted ||
|
|
100
|
-
t instanceof IRLetted ||
|
|
101
|
-
t instanceof IRSelfCall) {
|
|
102
|
-
throw new Error("Unexpected term while performing uplc optimizations");
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
return root;
|
|
106
|
-
}
|
|
107
|
-
function isAppLike(term) {
|
|
108
|
-
return (term instanceof IRApp ||
|
|
109
|
-
isCaseConstrApp(term));
|
|
110
|
-
}
|
|
111
|
-
/** @experimental still can't figure how to make it work */
|
|
112
|
-
export function groupIndipendentLets(term, dbn) {
|
|
113
|
-
let args = [];
|
|
114
|
-
let body = term;
|
|
115
|
-
//*
|
|
116
|
-
const lettedDbns = [];
|
|
117
|
-
while (term instanceof IRApp &&
|
|
118
|
-
term.fn instanceof IRFunc &&
|
|
119
|
-
term.fn.arity === 1) {
|
|
120
|
-
// letted terms
|
|
121
|
-
// [(lam a [(lam b [(lam c ... ))) c] b] a] :: []
|
|
122
|
-
// [(lam b [(lam c ... ))) c] b] :: [a]
|
|
123
|
-
// [(lam c ... ) c] :: [a, b]
|
|
124
|
-
// ... :: [a, b, c]
|
|
125
|
-
// finally expand:
|
|
126
|
-
// (lam a (lam b (lam c ... ))) :: [a, b, c]
|
|
127
|
-
// console.log({
|
|
128
|
-
// arg: prettyIRInline( term.arg ),
|
|
129
|
-
// lettedDbns,
|
|
130
|
-
// depends: dependsByDbns( term.arg, lettedDbns ),
|
|
131
|
-
// currArgsLen: args.length
|
|
132
|
-
// });
|
|
133
|
-
if (!dependsByDbns(term.arg, lettedDbns)) {
|
|
134
|
-
args.push(term.arg);
|
|
135
|
-
term = term.fn.body;
|
|
136
|
-
// push current dbn
|
|
137
|
-
// and increment later
|
|
138
|
-
lettedDbns.push(dbn++);
|
|
139
|
-
body = term;
|
|
140
|
-
continue;
|
|
141
|
-
}
|
|
142
|
-
else {
|
|
143
|
-
term = term.fn.body;
|
|
144
|
-
break;
|
|
145
|
-
}
|
|
146
|
-
continue;
|
|
147
|
-
}
|
|
148
|
-
return [
|
|
149
|
-
args,
|
|
150
|
-
getExpandedIRFunc(body, args.length)
|
|
151
|
-
];
|
|
152
|
-
//*/
|
|
153
|
-
}
|
|
154
|
-
function getMultiAppArgsAndBody(term) {
|
|
155
|
-
let args = [];
|
|
156
|
-
let body = term;
|
|
157
|
-
// else we look for consecutive applications or cases
|
|
158
|
-
while (term instanceof IRApp) {
|
|
159
|
-
/*
|
|
160
|
-
consecutive applications look like:
|
|
161
|
-
[
|
|
162
|
-
[
|
|
163
|
-
[
|
|
164
|
-
(lam a (lam b (lam c ... )))
|
|
165
|
-
a]
|
|
166
|
-
b]
|
|
167
|
-
c]
|
|
168
|
-
but the equivalent IRCase looks like:
|
|
169
|
-
(case
|
|
170
|
-
(constr 0 a b c)
|
|
171
|
-
(lam a (lam b (lam c ... )))
|
|
172
|
-
)
|
|
173
|
-
so we need to reverse the order of the args
|
|
174
|
-
since we start from the outermost application
|
|
175
|
-
(in order, we encounter from the top: c => b => a)
|
|
176
|
-
*/
|
|
177
|
-
args.unshift(term.arg);
|
|
178
|
-
term = term.fn;
|
|
179
|
-
// arity++;
|
|
180
|
-
body = term;
|
|
181
|
-
}
|
|
182
|
-
;
|
|
183
|
-
return [args, body];
|
|
184
|
-
// if( args.length === 0 ) return [ args, body ];
|
|
185
|
-
// const [ nextArgs, nextBody ] = getMultiAppArgsAndBody( body, dbn );
|
|
186
|
-
// return [ args.concat( nextArgs ), nextBody ];
|
|
187
|
-
}
|
|
188
|
-
function isCaseConstrApp(term) {
|
|
189
|
-
return (term instanceof IRCase &&
|
|
190
|
-
term.continuations.length === 1 &&
|
|
191
|
-
term.constrTerm instanceof IRCase);
|
|
192
|
-
}
|
|
193
|
-
function isIdLike(term) {
|
|
194
|
-
return (term instanceof IRFunc &&
|
|
195
|
-
term.arity === 1 &&
|
|
196
|
-
term.body instanceof IRVar &&
|
|
197
|
-
Number(term.body.dbn) === 0);
|
|
198
|
-
}
|
|
199
|
-
function getArityOfTerm(term) {
|
|
200
|
-
let arity = 0;
|
|
201
|
-
while (term instanceof IRApp ||
|
|
202
|
-
term instanceof IRFunc ||
|
|
203
|
-
term instanceof IRNative ||
|
|
204
|
-
term instanceof IRVar ||
|
|
205
|
-
term instanceof IRForced ||
|
|
206
|
-
term instanceof IRDelayed) {
|
|
207
|
-
if (term instanceof IRForced) {
|
|
208
|
-
term = term.forced;
|
|
209
|
-
continue;
|
|
210
|
-
}
|
|
211
|
-
if (term instanceof IRDelayed) {
|
|
212
|
-
term = term.delayed;
|
|
213
|
-
continue;
|
|
214
|
-
}
|
|
215
|
-
if (term instanceof IRApp) {
|
|
216
|
-
arity--;
|
|
217
|
-
term = term.fn;
|
|
218
|
-
continue;
|
|
219
|
-
}
|
|
220
|
-
if (term instanceof IRFunc) {
|
|
221
|
-
arity += term.arity;
|
|
222
|
-
term = term.body;
|
|
223
|
-
continue;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
return arity;
|
|
227
|
-
}
|