Commit f59ed11e by Zachary Snow

add support for specifying compile-time defines

parent 5351dee8
...@@ -44,12 +44,13 @@ path/to/file.sv` will output the converted file to `stdout`. ...@@ -44,12 +44,13 @@ path/to/file.sv` will output the converted file to `stdout`.
sv2v [OPTIONS] [FILES] sv2v [OPTIONS] [FILES]
Common flags: Common flags:
-e --exclude=CONV conversion to exclude (always, interface, logic); can -e --exclude=CONV conversion to exclude (always, interface, logic);
be specified multiple times can be specified multiple times
-i --incdir=DIR add directory to include search path -i --incdir=DIR add directory to include search path
-? --help Display help message -d --define=NAME[=VALUE] define value for compilation
-V --version Print version information -? --help Display help message
--numeric-version Print just the version number -V --version Print version information
--numeric-version Print just the version number
``` ```
......
...@@ -19,6 +19,7 @@ data Job = Job ...@@ -19,6 +19,7 @@ data Job = Job
{ exclude :: [Exclude] { exclude :: [Exclude]
, files :: [FilePath] , files :: [FilePath]
, incdir :: [FilePath] , incdir :: [FilePath]
, define :: [String]
} deriving (Show, Typeable, Data) } deriving (Show, Typeable, Data)
defaultJob :: Job defaultJob :: Job
...@@ -29,6 +30,7 @@ defaultJob = Job ...@@ -29,6 +30,7 @@ defaultJob = Job
++ "; can be specified multiple times") ++ "; can be specified multiple times")
, files = def &= args &= typ "FILES" , files = def &= args &= typ "FILES"
, incdir = def &= typDir &= help "add directory to include search path" , incdir = def &= typDir &= help "add directory to include search path"
, define = def &= typ "NAME[=VALUE]" &= help "define value for compilation"
} }
&= program "sv2v" &= program "sv2v"
&= summary "sv2v v0.0.1, (C) Zachary Snow 2019, Tom Hawkins, 2011-2015" &= summary "sv2v v0.0.1, (C) Zachary Snow 2019, Tom Hawkins, 2011-2015"
......
...@@ -7,16 +7,24 @@ ...@@ -7,16 +7,24 @@
import System.IO import System.IO
import System.Exit import System.Exit
import Job (readJob, files, exclude, incdir) import Data.List (elemIndex)
import Job (readJob, files, exclude, incdir, define)
import Convert (convert) import Convert (convert)
import Language.SystemVerilog.Parser import Language.SystemVerilog.Parser
splitDefine :: String -> (String, String)
splitDefine str =
case elemIndex '=' str of
Nothing -> (str, "")
Just idx -> (take idx str, drop (idx + 1) str)
main :: IO () main :: IO ()
main = do main = do
job <- readJob job <- readJob
-- parse the input file -- parse the input file
let includePaths = incdir job let includePaths = incdir job
asts <- mapM (parseFile includePaths []) (files job) let defines = map splitDefine $ define job
asts <- mapM (parseFile includePaths defines) (files job)
let ast = concat asts let ast = concat asts
-- convert the file -- convert the file
let ast' = convert (exclude job) ast let ast' = convert (exclude job) ast
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment