aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Simulator/General.hs
blob: e5307eaaa421174c3392c98b9040b04bcd6ee0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{-|
Module      : Test.VeriFuzz.Simulator.General
Description : Class of the simulator.
Copyright   : (c) Yann Herklotz Grave 2018
License     : GPL-3
Maintainer  : ymherklotz@gmail.com
Stability   : experimental
Portability : POSIX

Class of the simulator and the synthesize tool.
-}

module Test.VeriFuzz.Simulator.General where

import           Data.Text                 (Text)
import           Prelude                   hiding (FilePath)
import           Shelly
import           Test.VeriFuzz.Verilog.AST

-- | Simulator class.
class Simulator a where
  toText :: a -> Text

-- | Simulation type class.
class (Simulator a) => Simulate a where
  runSim :: a       -- ^ Simulator instance
         -> ModDecl -- ^ Module to simulate
         -> [Int]   -- ^ Inputs to simulate
         -> Sh Int  -- ^ Returns the value of the hash at the output of the testbench

-- | Synthesize type class.
class (Simulator a) => Synthesize a where
  runSynth :: a        -- ^ Synthesize tool instance
           -> ModDecl  -- ^ Module to synthesize
           -> FilePath -- ^ Output verilog file for the module
           -> Sh ()    -- ^ does not return any values

timeout :: Text -> [Text] -> Sh Text
timeout = command1 "timeout" ["180"]

timeout_ :: Text -> [Text] -> Sh ()
timeout_ = command1_ "timeout" ["180"]

synthesizers :: [Text]
synthesizers = ["yosys", "xst"]

simulators :: [Text]
simulators = ["yosim", "iverilog"]