aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Yosys.hs
blob: fd5bb5b9110ce5c6dbe9f228e35cea7298511e8a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{-|
Module      : VeriFuzz.Yosys
Description : Yosys simulator implementation.
Copyright   : (c) 2018-2019, Yann Herklotz Grave
License     : BSD-3
Maintainer  : ymherklotz [at] gmail [dot] com
Stability   : experimental
Portability : POSIX

Yosys simulator implementation.
-}

{-# LANGUAGE QuasiQuotes #-}

module VeriFuzz.Yosys where

import           Prelude                     hiding (FilePath)
import           Shelly
import           Text.Shakespeare.Text       (st)
import           VeriFuzz.AST
import           VeriFuzz.CodeGen
import           VeriFuzz.General
import           VeriFuzz.Internal.Simulator
import           VeriFuzz.Mutate

newtype Yosys = Yosys { yosysPath :: FilePath }

instance Simulator Yosys where
  toText _ = "yosys"

instance Synthesize Yosys where
  runSynth = runSynthYosys

defaultYosys :: Yosys
defaultYosys = Yosys "yosys"

writeSimFile
    :: Yosys    -- ^ Simulator instance
    -> ModDecl  -- ^ Current module
    -> FilePath -- ^ Output sim file
    -> Sh ()
writeSimFile _ m file = do
    writefile "rtl.v" $ genSource m
    writefile file yosysSimConfig

runSynthYosys :: Yosys -> ModDecl -> FilePath -> Sh ()
runSynthYosys sim m outf = do
    dir <- pwd
    writefile inpf $ genSource m
    echoP "Yosys: synthesis"
    _ <- logger dir "yosys"
        $ timeout
              (yosysPath sim)
              ["-b", "verilog -noattr", "-o", out, "-S", inp]
    echoP "Yosys: synthesis done"
  where
    inpf = "rtl.v"
    inp  = toTextIgnore inpf
    out  = toTextIgnore outf
  -- ids = T.intercalate "," $ allVars m ^.. traverse . getIdentifier

runMaybeSynth :: (Synthesize a) => Maybe a -> ModDecl -> Sh ()
runMaybeSynth (Just sim) m =
    runSynth sim m $ fromText [st|syn_#{toText sim}.v|]
runMaybeSynth Nothing m = writefile "syn_rtl.v" $ genSource m

runEquivYosys
    :: (Synthesize a, Synthesize b) => Yosys -> a -> Maybe b -> ModDecl -> Sh ()
runEquivYosys yosys sim1 sim2 m = do
    writefile "top.v" . genSource . initMod $ makeTop 2 m
    writefile checkFile $ yosysSatConfig sim1 sim2 m
    runSynth sim1 m $ fromText [st|syn_#{toText sim1}.v|]
    runMaybeSynth sim2 m
    echoP "Yosys: equivalence check"
    run_ (yosysPath yosys) [toTextIgnore checkFile]
    echoP "Yosys: equivalence done"
  where
    checkFile =
        fromText [st|test.#{toText sim1}.#{maybe "rtl" toText sim2}.ys|]

runEquiv
    :: (Synthesize a, Synthesize b) => Yosys -> a -> Maybe b -> ModDecl -> Sh ()
runEquiv _ sim1 sim2 m = do
    root <- rootPath
    dir  <- pwd
    echoP "SymbiYosys: setup"
    writefile "top.v" . genSource . initMod $ makeTopAssert m
    writefile "test.sby" $ sbyConfig root sim1 sim2 m
    runSynth sim1 m $ fromText [st|syn_#{toText sim1}.v|]
    runMaybeSynth sim2 m
    echoP "SymbiYosys: run"
    _ <- logger dir "symbiyosys" $ run "sby" ["test.sby"]
    echoP "SymbiYosys: done"