Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement ensureSpine for BitVector n as pack (copy #2702) #2828

Merged
merged 3 commits into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGED: `BitVector n` now has an implementation for `ensureSpine` which ensures the constructor is present.
1 change: 1 addition & 0 deletions changelog/2024-04-08T17_33_38+02_00_move_xToBV
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGED: `xToBV` is now located in `Clash.Sized.Internal.BitVector` to avoid circular dependencies.
3 changes: 3 additions & 0 deletions clash-cores/clash-cores.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ library
Clash.Cores.LatticeSemi.ECP5.IO
Clash.Cores.LatticeSemi.ECP5.Blackboxes.IO

other-modules:
Data.Text.Extra

ghc-options:
-fexpose-all-unfoldings
-fno-worker-wrapper
Expand Down
14 changes: 14 additions & 0 deletions clash-cores/src/Data/Text/Extra.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module Data.Text.Extra
( showt
, showtl
) where

import Prelude
import qualified Data.Text as TS
import qualified Data.Text.Lazy as TL

showt :: (Show a) => a -> TS.Text
showt = TS.pack . show

showtl :: (Show a) => a -> TL.Text
showtl = TL.pack . show
1 change: 1 addition & 0 deletions clash-ghc/clash-ghc.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ library
Clash.GHC.GHC2Core
Clash.GHC.LoadInterfaceFiles
Clash.GHC.Util
Data.Text.Extra
Paths_clash_ghc
if impl(ghc >= 8.8.0)
Other-Modules: Clash.GHCi.Util
Expand Down
5 changes: 3 additions & 2 deletions clash-ghc/src-ghc/Clash/GHC/Evaluator/Primitive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import Data.Proxy (Proxy)
import Data.Reflection (reifyNat)
import Data.Text (Text)
import qualified Data.Text as Text
import Data.Text.Extra (showt)
import GHC.Exts (IsList(..))
import GHC.Float
import GHC.Int
Expand Down Expand Up @@ -202,7 +203,7 @@ ghcPrimUnwind tcm p tys vs v [e] m0
, "Clash.Sized.Vector.replace_int"
, "GHC.Classes.&&"
, "GHC.Classes.||"
, "Clash.Class.BitPack.Internal.xToBV"
, showt 'BitVector.xToBV
, "Clash.Sized.Vector.imap_go"
]
= if isUndefinedPrimVal v then
Expand Down Expand Up @@ -2444,7 +2445,7 @@ ghcPrimStep tcm isSubj pInfo tys args mach = case primName pInfo of
val = unpack (toBV i :: BitVector 64)
in reduce (mkDoubleCLit tcm val resTy)

"Clash.Class.BitPack.Internal.xToBV"
"Clash.Sized.Internal.BitVector.xToBV"
| isSubj
, Just (nTy, kn) <- extractKnownNat tcm tys
-- The second argument to `xToBV` is always going to be suspended.
Expand Down
14 changes: 14 additions & 0 deletions clash-ghc/src-ghc/Data/Text/Extra.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module Data.Text.Extra
( showt
, showtl
) where

import Prelude
import qualified Data.Text as TS
import qualified Data.Text.Lazy as TL

showt :: (Show a) => a -> TS.Text
showt = TS.pack . show

showtl :: (Show a) => a -> TL.Text
showtl = TL.pack . show
2 changes: 1 addition & 1 deletion clash-lib/prims/common/Clash_Class_BitPack.primitives.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
template: ~ARG[0]
workInfo: Never
- BlackBox:
name: Clash.Class.BitPack.Internal.xToBV
name: Clash.Sized.Internal.BitVector.xToBV
kind: Expression
type: 'xToBV :: KnownNat n => BitVector n -> BitVector n'
template: ~ARG[1]
Expand Down
8 changes: 5 additions & 3 deletions clash-lib/src/Clash/Normalize/Transformations/Inline.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright : (C) 2012-2016, University of Twente,
2016-2017, Myrtle Software Ltd,
2017-2022, Google Inc.,
2021-2022, QBayLogic B.V.
2021-2024, QBayLogic B.V.
License : BSD2 (see the file LICENSE)
Maintainer : QBayLogic B.V. <[email protected]>

Expand All @@ -14,6 +14,7 @@
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
Expand Down Expand Up @@ -48,7 +49,7 @@ import GHC.Stack (HasCallStack)
import GHC.BasicTypes.Extra (isNoInline)

import qualified Clash.Explicit.SimIO as SimIO
import qualified Clash.Sized.Internal.BitVector as BV (Bit(Bit), BitVector(BV))
import qualified Clash.Sized.Internal.BitVector as BV (Bit(Bit), BitVector(BV), xToBV)

import Clash.Annotations.Primitive (extractPrim)
import Clash.Core.DataCon (DataCon(..))
Expand Down Expand Up @@ -438,7 +439,8 @@ collapseRHSNoops _ (Letrec binds body) = do
isNoopApp x (Prim PrimInfo{primWorkInfo=WorkIdentity i []},args) = do
arg <- getTermArg (lefts args) i
isNoopApp x (collectArgs arg)
isNoopApp x (Prim PrimInfo{primName="Clash.Class.BitPack.Internal.xToBV"},args) = do
isNoopApp x (Prim PrimInfo{primName},args)
| primName == Text.showt 'BV.xToBV = do
-- We don't make 'xToBV' something of 'WorkIdentity 1 []' because we don't
-- want 'getIdentity' to replace "naked" occurances of 'xToBV' by
-- 'unsafeCoerce#'. We don't want that since 'xToBV' has a special evaluator
Expand Down
15 changes: 2 additions & 13 deletions clash-prelude/src/Clash/Class/BitPack/Internal.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-|
Copyright : (C) 2013-2016, University of Twente,
2016-2017, Myrtle Software Ltd,
2021-2023 QBayLogic B.V.,
2021-2024 QBayLogic B.V.,
2022, Google Inc.
License : BSD2 (see the file LICENSE)
Maintainer : QBayLogic B.V. <[email protected]>
Expand All @@ -26,7 +26,6 @@ module Clash.Class.BitPack.Internal where

import Prelude hiding (map)

import Control.Exception (catch, evaluate)
import Data.Binary.IEEE754 (doubleToWord, floatToWord, wordToDouble,
wordToFloat)

Expand All @@ -44,16 +43,14 @@ import GHC.Generics
import GHC.TypeLits (KnownNat, Nat, type (+), type (-))
import GHC.TypeLits.Extra (CLog, Max)
import Numeric.Half (Half (..))
import System.IO.Unsafe (unsafeDupablePerformIO)

import Clash.Annotations.Primitive (hasBlackBox)
import Clash.Class.BitPack.Internal.TH (deriveBitPackTuples)
import Clash.Class.Resize (zeroExtend, resize)
import Clash.Promoted.Nat (SNat(..), snatToNum)
import Clash.Sized.Internal.BitVector
(pack#, split#, checkUnpackUndef, undefined#, unpack#, unsafeToNatural, isLike#,
BitVector, Bit, (++#))
import Clash.XException
BitVector, Bit, (++#), xToBV)

{- $setup
>>> :m -Prelude
Expand Down Expand Up @@ -164,14 +161,6 @@ packXWith
packXWith f = xToBV . f
{-# INLINE packXWith #-}

xToBV :: KnownNat n => BitVector n -> BitVector n
xToBV x =
unsafeDupablePerformIO (catch (evaluate x)
(\(XException _) -> return undefined#))
-- See: https://github.com/clash-lang/clash-compiler/pull/2511
{-# CLASH_OPAQUE xToBV #-}
{-# ANN xToBV hasBlackBox #-}

-- | Pack both arguments to a 'BitVector' and use
-- 'Clash.Sized.Internal.BitVector.isLike#' to compare them. This is a more
-- lentiant comparison than '(==)', behaving more like (but not necessarily
Expand Down
16 changes: 14 additions & 2 deletions clash-prelude/src/Clash/Sized/Internal/BitVector.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright : (C) 2013-2016, University of Twente,
2019 , Gergő Érdi
2016-2019, Myrtle Software Ltd,
2021-2022, QBayLogic B.V.
2021-2024, QBayLogic B.V.
2023 , Nadia Chambers
License : BSD2 (see the file LICENSE)
Maintainer : QBayLogic B.V. <[email protected]>
Expand Down Expand Up @@ -131,10 +131,12 @@ module Clash.Sized.Internal.BitVector
, undefError
, checkUnpackUndef
, bitPattern
, xToBV
)
where

import Control.DeepSeq (NFData (..))
import Control.Exception (catch, evaluate)
import Control.Lens (Index, Ixed (..), IxValue)
import Data.Bits (Bits (..), FiniteBits (..))
import Data.Data (Data)
Expand Down Expand Up @@ -183,6 +185,7 @@ import Language.Haskell.TH (Quote)
#else
import Language.Haskell.TH (TypeQ)
#endif
import System.IO.Unsafe (unsafeDupablePerformIO)
import Test.QuickCheck.Arbitrary (Arbitrary (..), CoArbitrary (..),
arbitraryBoundedIntegral,
coarbitraryIntegral, shrinkIntegral)
Expand All @@ -195,7 +198,7 @@ import Clash.Promoted.Nat
(SNat (..), SNatLE (..), compareSNat, snatToInteger, snatToNum, natToNum)
import Clash.Sized.Internal (formatRange)
import Clash.XException
(ShowX (..), NFDataX (..), errorX, isX, showsPrecXWith, rwhnfX)
(ShowX (..), NFDataX (..), errorX, isX, showsPrecXWith, rwhnfX, XException(..))

import Clash.Sized.Internal.Mod

Expand Down Expand Up @@ -507,6 +510,7 @@ instance KnownNat n => NFDataX (BitVector n) where
deepErrorX _ = undefined#
rnfX = rwhnfX
hasUndefined bv = isLeft (isX bv) || unsafeMask bv /= 0
ensureSpine = xToBV -- Converts `XException` to 'undefined#'

-- | Create a binary literal
--
Expand Down Expand Up @@ -1604,3 +1608,11 @@ bitPattern s = [p| ((\_x -> $preprocess) -> $tuple) |]
| otherwise = error $
"Invalid bit pattern: " ++ show c ++
", expecting one of '0', '1', '.', '_', or a lowercase alphabetic character"

xToBV :: KnownNat n => BitVector n -> BitVector n
xToBV x =
unsafeDupablePerformIO (catch (evaluate x)
(\(XException _) -> return undefined#))
-- See: https://github.com/clash-lang/clash-compiler/pull/2511
{-# CLASH_OPAQUE xToBV #-}
{-# ANN xToBV hasBlackBox #-}
Loading