mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-28 18:32:07 +03:00
Update for SBV 5.6
This commit is contained in:
parent
3afdae127a
commit
1ffc086ed4
@ -60,7 +60,7 @@ library
|
|||||||
process >= 1.2,
|
process >= 1.2,
|
||||||
QuickCheck >= 2.7,
|
QuickCheck >= 2.7,
|
||||||
random >= 1.0.1,
|
random >= 1.0.1,
|
||||||
sbv >= 5.5,
|
sbv >= 5.6,
|
||||||
smtLib >= 1.0.7,
|
smtLib >= 1.0.7,
|
||||||
simple-smt >= 0.6.0,
|
simple-smt >= 0.6.0,
|
||||||
syb >= 0.4,
|
syb >= 0.4,
|
||||||
|
@ -19,6 +19,7 @@ import Data.List (transpose, intercalate)
|
|||||||
import qualified Data.Map as Map
|
import qualified Data.Map as Map
|
||||||
import qualified Control.Exception as X
|
import qualified Control.Exception as X
|
||||||
|
|
||||||
|
import Data.SBV (intSizeOf)
|
||||||
import qualified Data.SBV.Dynamic as SBV
|
import qualified Data.SBV.Dynamic as SBV
|
||||||
|
|
||||||
import qualified Cryptol.ModuleSystem as M hiding (getPrimMap)
|
import qualified Cryptol.ModuleSystem as M hiding (getPrimMap)
|
||||||
@ -404,7 +405,7 @@ evalSel sel v =
|
|||||||
|
|
||||||
ListSel n _ -> case v of
|
ListSel n _ -> case v of
|
||||||
VWord s -> VBit (SBV.svTestBit s i)
|
VWord s -> VBit (SBV.svTestBit s i)
|
||||||
where i = SBV.svBitSize s - 1 - n
|
where i = intSizeOf s - 1 - n
|
||||||
_ -> fromSeq v !! n -- 0-based indexing
|
_ -> fromSeq v !! n -- 0-based indexing
|
||||||
|
|
||||||
-- Declarations ----------------------------------------------------------------
|
-- Declarations ----------------------------------------------------------------
|
||||||
|
@ -24,6 +24,7 @@ import Cryptol.Utils.Panic
|
|||||||
import Cryptol.ModuleSystem.Name (asPrim)
|
import Cryptol.ModuleSystem.Name (asPrim)
|
||||||
import Cryptol.Utils.Ident (Ident,mkIdent)
|
import Cryptol.Utils.Ident (Ident,mkIdent)
|
||||||
|
|
||||||
|
import qualified Data.SBV as SBV
|
||||||
import qualified Data.SBV.Dynamic as SBV
|
import qualified Data.SBV.Dynamic as SBV
|
||||||
import qualified Data.Map as Map
|
import qualified Data.Map as Map
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
@ -286,9 +287,9 @@ atV def vs i =
|
|||||||
case foldr weave vs bits of
|
case foldr weave vs bits of
|
||||||
[] -> def
|
[] -> def
|
||||||
y : _ -> y
|
y : _ -> y
|
||||||
VWord x -> foldr f def (zip [0 .. 2 ^ SBV.svBitSize x - 1] vs)
|
VWord x -> foldr f def (zip [0 .. 2 ^ SBV.intSizeOf x - 1] vs)
|
||||||
where
|
where
|
||||||
k = SBV.svKind x
|
k = SBV.kindOf x
|
||||||
f (n, v) y = iteValue (SBV.svEqual x (SBV.svInteger k n)) v y
|
f (n, v) y = iteValue (SBV.svEqual x (SBV.svInteger k n)) v y
|
||||||
_ -> evalPanic "Cryptol.Symbolic.Prims.selectV" ["Invalid index argument"]
|
_ -> evalPanic "Cryptol.Symbolic.Prims.selectV" ["Invalid index argument"]
|
||||||
where
|
where
|
||||||
@ -315,7 +316,7 @@ nthV err v n =
|
|||||||
case v of
|
case v of
|
||||||
VStream xs -> nth err xs (fromInteger n)
|
VStream xs -> nth err xs (fromInteger n)
|
||||||
VSeq _ xs -> nth err xs (fromInteger n)
|
VSeq _ xs -> nth err xs (fromInteger n)
|
||||||
VWord x -> let i = SBV.svBitSize x - 1 - fromInteger n
|
VWord x -> let i = SBV.intSizeOf x - 1 - fromInteger n
|
||||||
in if i < 0 then err else
|
in if i < 0 then err else
|
||||||
VBit (SBV.svTestBit x i)
|
VBit (SBV.svTestBit x i)
|
||||||
_ -> err
|
_ -> err
|
||||||
@ -340,13 +341,13 @@ dropV n xs =
|
|||||||
case xs of
|
case xs of
|
||||||
VSeq b xs' -> VSeq b (genericDrop n xs')
|
VSeq b xs' -> VSeq b (genericDrop n xs')
|
||||||
VStream xs' -> VStream (genericDrop n xs')
|
VStream xs' -> VStream (genericDrop n xs')
|
||||||
VWord w -> VWord $ SBV.svExtract (SBV.svBitSize w - 1 - fromInteger n) 0 w
|
VWord w -> VWord $ SBV.svExtract (SBV.intSizeOf w - 1 - fromInteger n) 0 w
|
||||||
_ -> panic "Cryptol.Symbolic.Prims.dropV" [ "non-droppable value" ]
|
_ -> panic "Cryptol.Symbolic.Prims.dropV" [ "non-droppable value" ]
|
||||||
|
|
||||||
takeV :: Integer -> Value -> Value
|
takeV :: Integer -> Value -> Value
|
||||||
takeV n xs =
|
takeV n xs =
|
||||||
case xs of
|
case xs of
|
||||||
VWord w -> VWord $ SBV.svExtract (SBV.svBitSize w - 1) (SBV.svBitSize w - fromInteger n) w
|
VWord w -> VWord $ SBV.svExtract (SBV.intSizeOf w - 1) (SBV.intSizeOf w - fromInteger n) w
|
||||||
VSeq b xs' -> VSeq b (genericTake n xs')
|
VSeq b xs' -> VSeq b (genericTake n xs')
|
||||||
VStream xs' -> VSeq b (genericTake n xs')
|
VStream xs' -> VSeq b (genericTake n xs')
|
||||||
where b = case xs' of VBit _ : _ -> True
|
where b = case xs' of VBit _ : _ -> True
|
||||||
@ -423,7 +424,7 @@ arithUnary op = loop . toTypeVal
|
|||||||
|
|
||||||
sExp :: SWord -> SWord -> SWord
|
sExp :: SWord -> SWord -> SWord
|
||||||
sExp x y = go (reverse (unpackWord y)) -- bits in little-endian order
|
sExp x y = go (reverse (unpackWord y)) -- bits in little-endian order
|
||||||
where go [] = literalSWord (SBV.svBitSize x) 1
|
where go [] = literalSWord (SBV.intSizeOf x) 1
|
||||||
go (b : bs) = SBV.svIte b (SBV.svTimes x s) s
|
go (b : bs) = SBV.svIte b (SBV.svTimes x s) s
|
||||||
where a = go bs
|
where a = go bs
|
||||||
s = SBV.svTimes a a
|
s = SBV.svTimes a a
|
||||||
@ -432,8 +433,8 @@ sExp x y = go (reverse (unpackWord y)) -- bits in little-endian order
|
|||||||
sLg2 :: SWord -> SWord
|
sLg2 :: SWord -> SWord
|
||||||
sLg2 x = go 0
|
sLg2 x = go 0
|
||||||
where
|
where
|
||||||
lit n = literalSWord (SBV.svBitSize x) n
|
lit n = literalSWord (SBV.intSizeOf x) n
|
||||||
go i | i < SBV.svBitSize x = SBV.svIte (SBV.svLessEq x (lit (2^i))) (lit (toInteger i)) (go (i + 1))
|
go i | i < SBV.intSizeOf x = SBV.svIte (SBV.svLessEq x (lit (2^i))) (lit (toInteger i)) (go (i + 1))
|
||||||
| otherwise = lit (toInteger i)
|
| otherwise = lit (toInteger i)
|
||||||
|
|
||||||
-- Cmp -------------------------------------------------------------------------
|
-- Cmp -------------------------------------------------------------------------
|
||||||
|
@ -29,6 +29,7 @@ module Cryptol.Symbolic.Value
|
|||||||
|
|
||||||
import Data.List (foldl')
|
import Data.List (foldl')
|
||||||
|
|
||||||
|
import Data.SBV (HasKind(..))
|
||||||
import Data.SBV.Dynamic
|
import Data.SBV.Dynamic
|
||||||
|
|
||||||
import Cryptol.Eval.Value (TValue, numTValue, toNumTValue, finTValue, isTBit,
|
import Cryptol.Eval.Value (TValue, numTValue, toNumTValue, finTValue, isTBit,
|
||||||
@ -92,7 +93,7 @@ mergeValue f c v1 v2 =
|
|||||||
[ "mergeValue: incompatible values" ]
|
[ "mergeValue: incompatible values" ]
|
||||||
where
|
where
|
||||||
mergeBit b1 b2 = svSymbolicMerge KBool f c b1 b2
|
mergeBit b1 b2 = svSymbolicMerge KBool f c b1 b2
|
||||||
mergeWord w1 w2 = svSymbolicMerge (svKind w1) f c w1 w2
|
mergeWord w1 w2 = svSymbolicMerge (kindOf w1) f c w1 w2
|
||||||
mergeField (n1, x1) (n2, x2)
|
mergeField (n1, x1) (n2, x2)
|
||||||
| n1 == n2 = (n1, mergeValue f c x1 x2)
|
| n1 == n2 = (n1, mergeValue f c x1 x2)
|
||||||
| otherwise = panic "Cryptol.Symbolic.Value"
|
| otherwise = panic "Cryptol.Symbolic.Value"
|
||||||
@ -104,7 +105,7 @@ mergeValue f c v1 v2 =
|
|||||||
|
|
||||||
instance BitWord SBool SWord where
|
instance BitWord SBool SWord where
|
||||||
packWord bs = fromBitsLE (reverse bs)
|
packWord bs = fromBitsLE (reverse bs)
|
||||||
unpackWord x = [ svTestBit x i | i <- reverse [0 .. svBitSize x - 1] ]
|
unpackWord x = [ svTestBit x i | i <- reverse [0 .. intSizeOf x - 1] ]
|
||||||
|
|
||||||
-- Errors ----------------------------------------------------------------------
|
-- Errors ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user