Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not inline the functions library everywhere in the Nockma backend #3004

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 17 additions & 27 deletions src/Juvix/Compiler/Nockma/Translation/FromTree.hs
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,14 @@ data CompilerFunction = CompilerFunction
_compilerFunction :: Sem '[Reader CompilerCtx, Reader FunctionCtx] (Term Natural)
}

-- The Code and Args constructors must be first and second respectively. This is
-- | The Code and Args constructors must be first and second respectively. This is
-- because the stack must have the structure of a Nock function,
-- i.e [code args env]
data AnomaCallablePathId
= WrapperCode
| ArgsTuple
| FunctionsLibrary
| ---
FunctionsLibrary
| RawCode
| TempStack
| StandardLibrary
Expand Down Expand Up @@ -340,8 +341,8 @@ anomaCallableClosureWrapper =
adjustArgs = OpIf # closureArgsIsEmpty # (opAddress "wrapperSubject" emptyPath) # appendAndReplaceArgsTuple
in opCall "closureWrapper" (closurePath RawCode) adjustArgs

mainFunctionWrapper :: Term Natural
mainFunctionWrapper =
mainFunctionWrapper :: Term Natural -> Term Natural
mainFunctionWrapper funslib =
-- 1. The Anoma system expects to receive a function of type `ScryId -> Transaction`
--
-- 2. The ScryId is only used to construct the argument to the Scry operation (i.e the anomaGet builtin in the Juvix frontend),
Expand All @@ -355,6 +356,7 @@ mainFunctionWrapper =
let captureAnomaGetOrder :: Term Natural
captureAnomaGetOrder = replaceSubject $ \case
AnomaGetOrder -> Just (getClosureFieldInSubject ArgsTuple)
FunctionsLibrary -> Just (OpQuote # funslib)
_ -> Nothing
in opCall "mainFunctionWrapper" (closurePath RawCode) captureAnomaGetOrder

Expand Down Expand Up @@ -934,20 +936,21 @@ runCompilerWith opts constrs moduleFuns mainFun = makeAnomaFun
mainClosure :: Term Natural
mainClosure = makeMainFunction (runCompilerFunction compilerCtx mainFun)

compiledFuns :: NonEmpty (Term Natural)
compiledFuns =
mainClosure
:| ( makeLibraryFunction
<$> [(f ^. compilerFunctionName, runCompilerFunction compilerCtx f) | f <- libFuns]
)

funcsLib :: Term Natural
funcsLib = Str.theFunctionsLibrary @ makeList compiledFuns
where
compiledFuns :: [Term Natural]
compiledFuns =
(OpQuote # (666 :: Natural)) -- TODO we have this unused term so that indices match. Remove it and adjust as needed
: ( makeLibraryFunction
<$> [(f ^. compilerFunctionName, runCompilerFunction compilerCtx f) | f <- libFuns]
)

makeLibraryFunction :: (Text, Term Natural) -> Term Natural
makeLibraryFunction (funName, c) =
("def-" <> funName)
@ ( makeClosure $ \p ->
@ makeClosure
( \p ->
let nockNilHere = nockNilTagged ("makeLibraryFunction-" <> show p)
in case p of
WrapperCode -> ("wrapperCode-" <> funName) @ c
Expand All @@ -966,7 +969,7 @@ runCompilerWith opts constrs moduleFuns mainFun = makeAnomaFun
makeMainFunction c = makeClosure $ \p ->
let nockNilHere = nockNilTagged ("makeMainFunction-" <> show p)
in case p of
WrapperCode -> mainFunctionWrapper
WrapperCode -> mainFunctionWrapper funcsLib
ArgsTuple -> argsTuplePlaceholder "mainFunction"
FunctionsLibrary -> functionsLibraryPlaceHolder
RawCode -> c
Expand All @@ -992,23 +995,10 @@ runCompilerWith opts constrs moduleFuns mainFun = makeAnomaFun
}
)

-- Replaces all instances of functionsLibraryPlaceHolder by the actual
-- functions library. Note that the functions library will have
-- functionsLibraryPlaceHolders, but this is not an issue because they
-- are not directly accessible from anoma so they'll never be entrypoints.
substFuncsLib :: Term Natural -> Term Natural
substFuncsLib = \case
TermAtom a
| a ^. atomHint == Just AtomHintFunctionsPlaceholder -> funcsLib
| otherwise -> TermAtom a
TermCell (Cell' l r i) ->
-- note that we do not need to recurse into terms inside the CellInfo because those terms will never be an entry point from anoma
TermCell (Cell' (substFuncsLib l) (substFuncsLib r) i)

makeAnomaFun :: AnomaResult
makeAnomaFun =
AnomaResult
{ _anomaClosure = substFuncsLib (substFuncsLib mainClosure)
{ _anomaClosure = mainClosure
}

functionsLibraryPlaceHolder :: Term Natural
Expand Down
Loading