-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10f26ff
commit 2d6287f
Showing
1 changed file
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{-| | ||
Copyright : (C) 2013-2016, University of Twente, | ||
2016 , Myrtle Software Ltd | ||
2022 , QBayLogic B.V. | ||
2022-2024, QBayLogic B.V. | ||
License : BSD2 (see the file LICENSE) | ||
Maintainer : QBayLogic B.V. <[email protected]> | ||
-} | ||
|
@@ -70,10 +70,22 @@ module Clash.Promoted.Nat | |
) | ||
where | ||
|
||
#if MIN_VERSION_base(4,16,0) | ||
import Data.Constraint (Dict(..), (:-)(..)) | ||
import Data.Constraint.Nat (euclideanNat) | ||
#endif | ||
import Data.Kind (Type) | ||
#if MIN_VERSION_base(4,16,0) | ||
import Data.Type.Equality ((:~:)(..)) | ||
import Data.Type.Ord (OrderingI(..)) | ||
#endif | ||
import GHC.Show (appPrec) | ||
import GHC.TypeLits (KnownNat, Nat, type (+), type (-), type (*), | ||
type (^), type (<=), natVal) | ||
type (^), type (<=), | ||
#if MIN_VERSION_base(4,16,0) | ||
cmpNat, sameNat, | ||
#endif | ||
natVal) | ||
import GHC.TypeLits.Extra (CLog, FLog, Div, Log, Mod, Min, Max) | ||
import GHC.Natural (naturalFromInteger) | ||
import Language.Haskell.TH (appT, conT, litT, numTyLit, sigE) | ||
|
@@ -82,7 +94,9 @@ import Language.Haskell.TH.Syntax (Lift (..)) | |
import Language.Haskell.TH.Compat | ||
#endif | ||
import Numeric.Natural (Natural) | ||
#if !MIN_VERSION_base(4,16,0) | ||
import Unsafe.Coerce (unsafeCoerce) | ||
#endif | ||
|
||
import Clash.Annotations.Primitive (hasBlackBox) | ||
import Clash.XException (ShowX (..), showsPrecXWith) | ||
|
@@ -184,11 +198,20 @@ instance KnownNat n => ShowX (UNat n) where | |
-- | ||
-- __NB__: Not synthesizable | ||
toUNat :: forall n . SNat n -> UNat n | ||
#if MIN_VERSION_base(4,16,0) | ||
toUNat p@SNat = case cmpNat (SNat @1) p of | ||
LTI -> USucc (toUNat @(n - 1) (predSNat p)) | ||
EQI -> USucc UZero | ||
GTI -> case sameNat p (SNat @0) of | ||
Just Refl -> UZero -- | ||
_ -> error "toUNat: impossible: 1 > n and n /= 0 for (n :: Nat)" | ||
#else | ||
toUNat p@SNat = fromI @n (snatToInteger p) | ||
where | ||
fromI :: forall m . Integer -> UNat m | ||
fromI 0 = unsafeCoerce @(UNat 0) @(UNat m) UZero | ||
fromI n = unsafeCoerce @(UNat ((m-1)+1)) @(UNat m) (USucc (fromI @(m-1) (n - 1))) | ||
#endif | ||
|
||
-- | Convert a unary-encoded natural number to its singleton representation | ||
-- | ||
|
@@ -338,10 +361,20 @@ deriving instance Show (SNatLE a b) | |
|
||
-- | Get an ordering relation between two SNats | ||
compareSNat :: forall a b . SNat a -> SNat b -> SNatLE a b | ||
#if MIN_VERSION_base(4,16,0) | ||
compareSNat a@SNat b@SNat = case cmpNat a b of | ||
LTI -> SNatLE | ||
EQI -> SNatLE | ||
GTI -> case cmpNat (succSNat b) a of | ||
LTI -> SNatGT | ||
EQI -> SNatGT | ||
GTI -> error "compareSNat: impossible: a > b and b + 1 > a" | ||
#else | ||
compareSNat a b = | ||
if snatToInteger a <= snatToInteger b | ||
then unsafeCoerce (SNatLE @0 @0) | ||
else unsafeCoerce (SNatGT @1 @0) | ||
#endif | ||
|
||
-- | Base-2 encoded natural number | ||
-- | ||
|
@@ -404,14 +437,28 @@ showBNat = go [] | |
-- | Convert a singleton natural number to its base-2 representation | ||
-- | ||
-- __NB__: Not synthesizable | ||
toBNat :: SNat n -> BNat n | ||
toBNat :: forall n. SNat n -> BNat n | ||
#if MIN_VERSION_base(4,16,0) | ||
toBNat s@SNat = case cmpNat (SNat @1) s of | ||
LTI -> case euclideanNat @2 @n of | ||
Sub Dict -> case sameNat (SNat @(n `Mod` 2)) (SNat @0) of | ||
Just Refl -> B0 (toBNat (SNat @(n `Div` 2))) | ||
Nothing -> case sameNat (SNat @(n `Mod` 2)) (SNat @1) of | ||
Just Refl -> B1 (toBNat (SNat @(n `Div` 2))) | ||
Nothing -> error "toBNat: impossible: n mod 2 is either 0 or 1" | ||
EQI -> B1 BT | ||
GTI -> case sameNat s (SNat @0) of | ||
Just Refl -> BT | ||
_ -> error "toBNat: impossible: 1 > n and n /= 0 for (n :: Nat)" | ||
#else | ||
toBNat s@SNat = toBNat' (snatToInteger s) | ||
where | ||
toBNat' :: forall m . Integer -> BNat m | ||
toBNat' 0 = unsafeCoerce BT | ||
toBNat' n = case n `divMod` 2 of | ||
(n',1) -> unsafeCoerce (B1 (toBNat' @(Div (m-1) 2) n')) | ||
(n',_) -> unsafeCoerce (B0 (toBNat' @(Div m 2) n')) | ||
#endif | ||
|
||
-- | Convert a base-2 encoded natural number to its singleton representation | ||
-- | ||
|