Project

General

Profile

Command Line Options » History » Version 2

Sergey Smolov, 12/12/2014 07:00 PM

1 1 Sergey Smolov
h1. Command Line Options
2
3 2 Sergey Smolov
{{toc}}
4
5 1 Sergey Smolov
One way to use the "HDL Retrascope":http://forge.ispras.ru/projects/retrascope is it''s command line options. Here is an output of the tool that it run with "--help" option:
6
7
<pre>
8
usage: [options] files
9
 -e,--engine <arg>   Set a subset of engines
10
 -h,--help           Show this message
11
 -l,--log <arg>      Set a log file
12
 -t,--target <arg>   Set a target entity
13
</pre>
14
15
This output shows four main categories of "HDL Retrascope":http://forge.ispras.ru/projects/retrascope command line options: source files, engines, logging mode and targets.
16
Options can be put into command line in an arbitrary order. 
17
18
h2. Source files
19
20
This option keeps paths to files that contain source code of hardware modules.
21
22
The "HDL Retrascope":http://forge.ispras.ru/projects/retrascope can elaborate hardware descriptions written in synthesizable subsets of VHDL and Verilog. For current version of the tool it is possible to elaborate the source code when it satisfies some limitations. 
23
24
For VHDL - no loop-cycles, no other modules'' instantiations, no wait-constructions, no function calls, no ''Z'' or ''X'' values, code size is less than 1 KLOC.
25
For Verilog - similar to VHDL.
26
27
If these limitations are satisfied there is a high probability that "HDL Retrascope":http://forge.ispras.ru/projects/retrascope will be able to elaborate your design:-) Otherwise an exception will occur.
28
It is possible to run the "HDL Retrascope":http://forge.ispras.ru/projects/retrascope both on several VHDL and Verilog designs. In such case a composite inner representation based on Control FLow Graph model will be constructed.
29
30
To transform Verilog design into Control Flow Graph model you need to run "HDL Retrascope":http://forge.ispras.ru/projects/retrascope with the following parameters:
31
32
<pre>
33
--target cfg /path/to/file/file.v
34
</pre>
35
36
where "cfg" encodes Controlf Flow Graph model as target.
37
38
To transform VHDL design into Control Flow Graph model you need to run "HDL Retrascope":http://forge.ispras.ru/projects/retrascope with the following parameters:
39
40
<pre>
41
--target cfg --toplevel toplevel_name /path/to/file/file.vhd
42
</pre>
43
44
where "toplevel" is an option that is obligatory for all VHDL designs that are being elaborated. The toplevel option value is a string name of the top-level module of the specified VHDL file.
45 2 Sergey Smolov
46
h2. Targets
47
48
h2. Engines
49
50
h2. Logging