diff options
author | Marvin Borner | 2023-07-30 21:20:22 +0200 |
---|---|---|
committer | Marvin Borner | 2023-07-30 21:20:22 +0200 |
commit | 000d0a5b9b0e6b1297c36ef98cc66c21a4ce2ea0 (patch) | |
tree | 41f44e0dc5f145d6821dc33f34dbcd150739a037 /src/Eval.hs | |
parent | f24d3960976eeb9633889721f79c7b2f978d74b5 (diff) |
Fixed length evaluation order
Without this, the BLC length of the unreduced version of huge
expressions will not be shown until reduction is finished. This was
obviously wrong.
Diffstat (limited to 'src/Eval.hs')
-rw-r--r-- | src/Eval.hs | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/src/Eval.hs b/src/Eval.hs index 0478c02..d887a62 100644 --- a/src/Eval.hs +++ b/src/Eval.hs @@ -30,11 +30,13 @@ import System.Mem import Text.Megaparsec hiding ( State , try ) + data EnvState = EnvState { _env :: Environment , _conf :: EvalConf , _cache :: EnvCache } + type M = StrictState.StateT EnvState IO entryFunction :: Identifier @@ -202,7 +204,8 @@ evalCommand inp s@(EnvState env@(Environment envDefs) conf cache) = \case >> monitor t else monitor t in getCurrentTime >>= monitor - Import path namespace -> do -- TODO: Merge with Input (very similar) + Import path namespace -> do + -- TODO: Merge with Input (very similar) full <- fullPath path if full `elem` _evalPaths conf then @@ -211,6 +214,7 @@ evalCommand inp s@(EnvState env@(Environment envDefs) conf cache) = \case >> pure s else if M.member path (_imported cache) then -- load from cache + let (Environment env') = fromJust $ M.lookup path (_imported cache) prefix | null namespace = takeBaseName path ++ "." @@ -260,7 +264,8 @@ evalCommand inp s@(EnvState env@(Environment envDefs) conf cache) = \case _ -> pure s | otherwise -> pure s - ClearState -> do -- TODO: actually free memory :/ + ClearState -> do + -- TODO: actually free memory :/ putStr "Currently allocated: " getAllocationCounter >>= putStr . show . (0 -) putStrLn " Byte" @@ -271,8 +276,8 @@ evalCommand inp s@(EnvState env@(Environment envDefs) conf cache) = \case case res of Left err -> print err Right e' -> do - red <- reduce e' print $ length $ toBinary e' + red <- reduce e' print $ length $ toBinary red pure s Blc e -> do @@ -336,7 +341,8 @@ evalInstruction (ContextualInstruction instr inp) s@(EnvState env conf _) rec = rec s ) Commands cs -> yeet (pure s) cs >>= rec - where -- TODO: sus + where + -- TODO: sus yeet s' [] = s' yeet s' (c : cs') = do s'' <- s' @@ -405,9 +411,11 @@ repl :: EnvState -> InputT M () repl (EnvState env conf cache) = handleInterrupt (return $ Just "") (withInterrupt $ getInputLine "\ESC[36mλ\ESC[0m ") - >>= \case -- TODO: Add non-parser error support for REPL + >>= \case + -- TODO: Add non-parser error support for REPL Nothing -> return () - Just line -> do -- setting imported [] for better debugging + Just line -> do + -- setting imported [] for better debugging s' <- liftIO $ eval [line] (EnvState env conf cache { _imported = M.empty }) lift $ StrictState.put s' |