diff options
author | Marvin Borner | 2024-01-21 11:55:55 +0100 |
---|---|---|
committer | Marvin Borner | 2024-01-21 11:56:43 +0100 |
commit | faf61ef00caa6ffe4e54c5a98232dafb905b9b26 (patch) | |
tree | 6c9e1c9bb41b17e2db8641a36099789a1882e73a /src/Optimizer.hs | |
parent | af754df7380b664fea6295813ee7dc64642c8444 (diff) |
Targetted dumping and (un)bblc
Diffstat (limited to 'src/Optimizer.hs')
-rw-r--r-- | src/Optimizer.hs | 46 |
1 files changed, 30 insertions, 16 deletions
diff --git a/src/Optimizer.hs b/src/Optimizer.hs index 3517ade..4f464ab 100644 --- a/src/Optimizer.hs +++ b/src/Optimizer.hs @@ -3,11 +3,14 @@ -- For now, my BLoC format is used in combination with BLoCade the BLoC-aid. module Optimizer - ( optimizedReduce + ( optimizeToTarget + , optimizedReduce ) where import Binary import Control.Exception +import qualified Data.BitString as Bit +import qualified Data.ByteString.Lazy.Char8 as Byte import Helper import Reducer import System.IO @@ -38,34 +41,45 @@ toTarget e target = do case maybeBloc of Left err -> return $ Left err Right bloc -> do - blc <- tryIO $ createProcess (proc "blocade" ["-i", "-", "-t", target]) + res <- tryIO $ createProcess (proc "blocade" ["-i", "-", "-t", target]) { std_in = UseHandle bloc , std_out = CreatePipe } - let out = case blc of + let out = case res of Left _ -> Nothing Right (_, o, _, _) -> o case out of Just h -> do + hSetBinaryMode h True content <- hGetContents h return $ case content of "" -> Left $ OptimizerError "blocade returned empty string" _ -> Right content Nothing -> return $ Left $ OptimizerError "can't read from blocade" -optimizeToTarget :: Expression -> String -> IO Expression -optimizeToTarget e target = do - maybeBlc <- toTarget e target - case maybeBlc of - Left err -> do - print err - reduce e -- Fallback to default reducer - Right blc -> reduce $ fromBinary blc - -- TODO: add more targets (including other PL compilation) -optimizedReduce :: EvalConf -> Expression -> IO Expression -optimizedReduce conf e = do +toExpression :: String -> String -> Expression +toExpression "blc" = fromBinary +toExpression "unblc" = fromBinary +toExpression "bblc" = + fromBinary . fromBitString . Bit.bitStringLazy . Byte.pack +toExpression "unbblc" = + fromBinary . fromBitString . Bit.bitStringLazy . Byte.pack +toExpression _ = invalidProgramState + +optimizeToTarget :: EvalConf -> Expression -> IO Expression +optimizeToTarget conf e = do let target = _optimizeTarget conf case target of - "" -> reduce e -- No target, fallback to default reducer - _ -> optimizeToTarget e target + "" -> return e -- No target, fallback to unoptimized expression + _ -> do + maybeRes <- toTarget e target + case maybeRes of + Left err -> do + print err + return e -- Fallback to unoptimized expression + Right res -> return $ toExpression target res + +optimizedReduce :: EvalConf -> Expression -> IO Expression +optimizedReduce conf e = optimizeToTarget conf e >>= reduce + |