var2 :: t ((v t Upd)->(Main (v c s))) -> (Main (v c s)) | type, toCode t
con2 :: t ((v t Expr) ->(Main (v c s))) -> (Main (v c s)) | type t
class sds v where
- sds :: ((v t Upd)->In t (Main (v c s))) -> (Main (v c s)) | type, toCode t
+ sds :: ((v t Upd)->In t (Main (v c s))) -> (Main (v c s)) | type, toByteCode, toCode t
con :: ((v t Expr) ->In t (Main (v c s))) -> (Main (v c s)) | type t
class seq v where
(>>=.) infixr 0 :: (v t p) ((v t Expr) -> (v u q)) -> (v u Stmt) | type t & type u
retrn :: ([BC] -> ByteCode a p)
retrn = BC o tuple
+fmp :: ([BC] -> [BC]) (ByteCode a p) -> ByteCode a p
+fmp f b = BC \s->let (bc, s`) = runBC b s in (f bc, s`)
instance toByteCode Bool where
toByteCode True = [toChar 1]
toByteCode False = [toChar 0]
-instance toByteCode Int where toByteCode n = map toChar [n/(2<<7),n rem 265]
+instance toByteCode Int where toByteCode n = map toChar [n/256,n rem 256]
instance toByteCode Long where toByteCode (L n) = toByteCode n
instance toByteCode Char where toByteCode c = [c]
instance toByteCode String where toByteCode s = undef
instance noOp ByteCode where noOp = mempty
-
withLabel :: (Int -> (ByteCode b q)) -> ByteCode b q
withLabel f = BC \s->let [fresh:fs] = s.freshl
in runBC (f fresh) {s & freshl=fs}
instance sds ByteCode where
sds f = {main = withSDS \sds->
- let (v In body) = f $ retrn [BCSdsStore sds]
- in unMain body <++> retrn [BCSdsStore sds]
+ let (v In body) = f $ retrn [BCSdsFetch sds]
+ in retrn [BCPush $ toByteCode v,BCSdsStore sds] <++> unMain body
}
con f = undef
instance assign ByteCode where
- (=.) v e = e <++> abort (printToString $ fst $ runBC v zero)
+ (=.) v e = e <++> fmp makeStore v
+
+makeStore [] = []
+makeStore [x:xs] = case x of
+ BCSdsFetch i = [BCSdsStore i:xs]
+ y = [y:xs]
instance seq ByteCode where
(>>=.) _ _ = abort "undef on >>=."
# (bc, st) = runBC x zero
= join "\n" $ map printToString bc
-toReadableByteVal :: BC -> String
-toReadableByteVal a = printToString a
-
-
//Start :: String
//Start = toReadableByteCode bc
// where
// bc = (lit 36 +. lit 42) +. lit 44
Start :: String
-Start = toReadableByteCode $ unMain bc
+//Start = toReadableByteCode $ unMain bc
+Start = toRealByteCode $ unMain bc
where
bc :: Main (ByteCode Int Expr)
- bc = sds \x=46 In
- sds \y=46 In
- {main = y =. x +. y}
+ bc = sds \x=41 In
+ sds \y=1 In
+ {main = x =. x +. y}
//to16bit :: Int -> String
//to16bit i = toString (toChar (i/265)) +++ toString (toChar (i rem 265))