2004-10-04 03:10:51 +02:00
|
|
|
THE ICARUS VERILOG COMPILATION SYSTEM
|
2004-10-14 00:01:34 +02:00
|
|
|
Copyright 2000-2004 Stephen Williams
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1998-11-23 01:20:22 +01:00
|
|
|
|
1999-10-09 21:24:04 +02:00
|
|
|
1.0 What is ICARUS Verilog?
|
1999-05-09 03:29:38 +02:00
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
Icarus Verilog is intended to compile ALL of the Verilog HDL as
|
|
|
|
|
described in the IEEE-1364 standard. Of course, it's not quite there
|
|
|
|
|
yet. It does currently handle a mix of structural and behavioral
|
|
|
|
|
constructs. For a view of the current state of Icarus Verilog, see its
|
|
|
|
|
home page at <http://www.icarus.com/eda/verilog>.
|
2004-10-04 03:10:51 +02:00
|
|
|
|
2000-06-07 05:53:16 +02:00
|
|
|
Icarus Verilog is not aimed at being a simulator in the traditional
|
|
|
|
|
sense, but a compiler that generates code employed by back-end
|
2008-09-03 03:23:48 +02:00
|
|
|
tools.
|
1999-05-09 03:29:38 +02:00
|
|
|
|
2002-02-04 01:48:30 +01:00
|
|
|
For instructions on how to run Icarus Verilog,
|
|
|
|
|
see the ``iverilog'' man page.
|
2001-05-22 04:07:08 +02:00
|
|
|
|
|
|
|
|
|
2000-06-07 05:53:16 +02:00
|
|
|
2.0 Building/Installing Icarus Verilog From Source
|
1999-10-16 23:22:06 +02:00
|
|
|
|
|
|
|
|
If you are starting from source, the build process is designed to be
|
|
|
|
|
as simple as practical. Someone basically familiar with the target
|
|
|
|
|
system and C/C++ compilation should be able to build the source
|
|
|
|
|
distribution with little effort. Some actual programming skills are
|
|
|
|
|
not required, but helpful in case of problems.
|
|
|
|
|
|
2002-02-04 01:48:30 +01:00
|
|
|
If you are building for Windows, see the mingw.txt file.
|
|
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
2.1 Compile Time Prerequisites
|
|
|
|
|
|
|
|
|
|
You need the following software to compile Icarus Verilog from source
|
|
|
|
|
on a UNIX-like system:
|
|
|
|
|
|
|
|
|
|
- GNU Make
|
2001-06-13 01:32:49 +02:00
|
|
|
The Makefiles use some GNU extensions, so a basic POSIX
|
1999-10-16 23:22:06 +02:00
|
|
|
make will not work. Linux systems typically come with a
|
2002-08-02 03:52:02 +02:00
|
|
|
satisfactory make. BSD based systems (i.e., NetBSD, FreeBSD)
|
2000-09-17 21:06:58 +02:00
|
|
|
typically have GNU make as the gmake program.
|
1999-10-16 23:22:06 +02:00
|
|
|
|
|
|
|
|
- ISO C++ Compiler
|
2000-11-01 07:05:44 +01:00
|
|
|
The ivl and ivlpp programs are written in C++ and make use
|
2000-09-17 21:06:58 +02:00
|
|
|
of templates and some of the standard C++ library. egcs and
|
|
|
|
|
recent gcc compilers with the associated libstdc++ are known
|
2000-11-01 07:05:44 +01:00
|
|
|
to work. MSVC++ 5 and 6 are known to definitely *not* work.
|
1999-10-16 23:22:06 +02:00
|
|
|
|
2001-01-20 20:02:04 +01:00
|
|
|
- bison and flex
|
1999-10-16 23:22:06 +02:00
|
|
|
|
2000-03-12 18:09:40 +01:00
|
|
|
- gperf 2.7
|
|
|
|
|
The lexical analyzer doesn't recognize keywords directly,
|
|
|
|
|
but instead matches symbols and looks them up in a hash
|
|
|
|
|
table in order to get the proper lexical code. The gperf
|
|
|
|
|
program generates the lookup table.
|
|
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
A version problem with this program is the most common cause
|
|
|
|
|
of difficulty. See the Icarus Verilog FAQ.
|
|
|
|
|
|
2003-04-02 04:55:11 +02:00
|
|
|
- readline 4.2
|
|
|
|
|
On Linux systems, this usually means the readline-devel
|
|
|
|
|
rpm. In any case, it is the development headers of readline
|
|
|
|
|
that are needed.
|
|
|
|
|
|
|
|
|
|
- termcap
|
|
|
|
|
The readline library in turn uses termcap.
|
|
|
|
|
|
2003-11-08 20:27:50 +01:00
|
|
|
If you are building from CVS, you will also need software to generate
|
|
|
|
|
the configure scripts.
|
|
|
|
|
|
|
|
|
|
- autoconf 2.53
|
|
|
|
|
This generates configure scripts from configure.in. The 2.53
|
|
|
|
|
or later versions are known to work, autoconf 2.13 is
|
|
|
|
|
reported to *not* work.
|
|
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
2.2 Compilation
|
|
|
|
|
|
|
|
|
|
Unpack the tar-ball and cd into the verilog-######### directory
|
|
|
|
|
(presumably that is how you got to this README) and compile the source
|
|
|
|
|
with the commands:
|
|
|
|
|
|
|
|
|
|
./configure
|
|
|
|
|
make
|
|
|
|
|
|
2003-07-15 05:49:22 +02:00
|
|
|
Normally, this command automatically figures out everything it needs
|
2001-05-22 04:07:08 +02:00
|
|
|
to know. It generally works pretty well. There are a few flags to the
|
|
|
|
|
configure script that modify its behavior:
|
|
|
|
|
|
|
|
|
|
--prefix=<root>
|
|
|
|
|
The default is /usr/local, which causes the tool suite to
|
|
|
|
|
be compiled for install in /usr/local/bin,
|
|
|
|
|
/usr/local/share/ivl, etc.
|
|
|
|
|
|
|
|
|
|
I recommend that if you are configuring for precompiled
|
2002-01-19 20:22:39 +01:00
|
|
|
binaries, use --prefix=/usr. On Solaris systems, it is
|
|
|
|
|
common to use --prefix=/opt. You can configure for a non-root
|
|
|
|
|
install with --prefix=$HOME.
|
2001-05-22 04:07:08 +02:00
|
|
|
|
2008-11-17 16:22:46 +01:00
|
|
|
--enable-suffix
|
|
|
|
|
--enable-suffix=<your-suffix>
|
|
|
|
|
--disable-suffix
|
|
|
|
|
Enable/disable changing the names of install files to use
|
|
|
|
|
a suffix string so that this version or install can co-
|
|
|
|
|
exist with other versions. This renames the installed
|
|
|
|
|
commands (iverilog, iverilog-vpi, vvp) and the installed
|
|
|
|
|
library files and include directory so that installations
|
|
|
|
|
with the same prefix but different suffix are guaranteed
|
|
|
|
|
to not interfere with each other.
|
2003-10-02 21:33:44 +02:00
|
|
|
|
2001-04-26 18:04:39 +02:00
|
|
|
2.3 (Optional) Testing
|
|
|
|
|
|
|
|
|
|
To run a simple test before installation, execute
|
|
|
|
|
|
|
|
|
|
make check
|
|
|
|
|
|
|
|
|
|
The commands printed by this run might help you in running Icarus
|
2002-01-19 20:22:39 +01:00
|
|
|
Verilog on your own Verilog sources before the package is installed
|
2001-04-26 18:04:39 +02:00
|
|
|
by root.
|
|
|
|
|
|
|
|
|
|
2.4 Installation
|
1999-10-16 23:22:06 +02:00
|
|
|
|
|
|
|
|
Now install the files in an appropriate place. (The makefiles by
|
|
|
|
|
default install in /usr/local unless you specify a different prefix
|
2001-05-22 04:07:08 +02:00
|
|
|
with the --prefix=<path> flag to the configure command.) You may need
|
|
|
|
|
to do this as root to gain access to installation directories.
|
1999-10-16 23:22:06 +02:00
|
|
|
|
|
|
|
|
make install
|
|
|
|
|
|
2001-05-22 04:07:08 +02:00
|
|
|
2.5 Uninstallation
|
|
|
|
|
|
|
|
|
|
The generated Makefiles also include the uninstall target. This should
|
|
|
|
|
remove all the files that ``make install'' creates.
|
|
|
|
|
|
2000-06-07 05:53:16 +02:00
|
|
|
3.0 How Icarus Verilog Works
|
1999-05-09 03:29:38 +02:00
|
|
|
|
1999-05-10 02:29:35 +02:00
|
|
|
This tool includes a parser which reads in Verilog (plus extensions)
|
|
|
|
|
and generates an internal netlist. The netlist is passed to various
|
1998-11-23 01:20:22 +01:00
|
|
|
processing steps that transform the design to more optimal/practical
|
1999-09-19 00:24:24 +02:00
|
|
|
forms, then is passed to a code generator for final output. The
|
1998-11-23 01:20:22 +01:00
|
|
|
processing steps and the code generator are selected by command line
|
|
|
|
|
switches.
|
|
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
3.1 Preprocessing
|
1999-07-08 04:06:47 +02:00
|
|
|
|
|
|
|
|
There is a separate program, ivlpp, that does the preprocessing. This
|
|
|
|
|
program implements the `include and `define directives producing
|
1999-09-19 00:24:24 +02:00
|
|
|
output that is equivalent but without the directives. The output is a
|
|
|
|
|
single file with line number directives, so that the actual compiler
|
|
|
|
|
only sees a single input file. See ivlpp/ivlpp.txt for details.
|
1999-07-08 04:06:47 +02:00
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
3.2 Parse
|
1999-05-09 03:29:38 +02:00
|
|
|
|
2002-01-19 20:22:39 +01:00
|
|
|
The Verilog compiler starts by parsing the Verilog source file. The
|
2003-07-15 05:49:22 +02:00
|
|
|
output of the parse is a list of Module objects in "pform". The pform
|
1999-05-09 03:29:38 +02:00
|
|
|
(see pform.h) is mostly a direct reflection of the compilation
|
1999-09-19 00:24:24 +02:00
|
|
|
step. There may be dangling references, and it is not yet clear which
|
1999-05-09 03:29:38 +02:00
|
|
|
module is the root.
|
|
|
|
|
|
2003-07-15 05:49:22 +02:00
|
|
|
One can see a human readable version of the final pform by using the
|
2010-03-05 03:08:45 +01:00
|
|
|
``-P <path>'' flag to the ``ivl'' subcommand. This will cause ivl
|
|
|
|
|
to dump the pform into the file named <path>. (Note that this is not
|
|
|
|
|
normally done, unless debugging the ``ivl'' subcommand.)
|
1999-05-10 02:29:35 +02:00
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
3.3 Elaboration
|
1999-05-09 03:29:38 +02:00
|
|
|
|
|
|
|
|
This phase takes the pform and generates a netlist. The driver selects
|
|
|
|
|
(by user request or lucky guess) the root module to elaborate,
|
|
|
|
|
resolves references and expands the instantiations to form the design
|
1999-09-19 00:24:24 +02:00
|
|
|
netlist. (See netlist.txt.) Final semantic checks are performed during
|
2000-09-17 21:06:58 +02:00
|
|
|
elaboration, and some simple optimizations are performed. The netlist
|
|
|
|
|
includes all the behavioral descriptions, as well as gates and wires.
|
1999-05-09 03:29:38 +02:00
|
|
|
|
|
|
|
|
The elaborate() function performs the elaboration.
|
|
|
|
|
|
1999-05-10 02:29:35 +02:00
|
|
|
One can see a human readable version of the final, elaborated and
|
|
|
|
|
optimized netlist by using the ``-N <path>'' flag to the compiler. If
|
2002-08-02 03:52:02 +02:00
|
|
|
elaboration succeeds, the final netlist (i.e., after optimizations but
|
1999-05-10 02:29:35 +02:00
|
|
|
before code generation) will be dumped into the file named <path>.
|
|
|
|
|
|
2002-08-02 03:52:02 +02:00
|
|
|
Elaboration is actually performed in two steps: scopes and parameters
|
2000-03-08 05:36:53 +01:00
|
|
|
first, followed by the structural and behavioral elaboration.
|
|
|
|
|
|
|
|
|
|
3.3.1 Scope Elaboration
|
|
|
|
|
|
2000-06-07 05:53:16 +02:00
|
|
|
This pass scans through the pform looking for scopes and parameters. A
|
|
|
|
|
tree of NetScope objects is built up and placed in the Design object,
|
|
|
|
|
with the root module represented by the root NetScope object. The
|
2010-12-05 23:35:30 +01:00
|
|
|
elab_scope.cc file contains most of the code for handling this phase.
|
2000-03-08 05:36:53 +01:00
|
|
|
|
|
|
|
|
The tail of the elaborate_scope behavior (after the pform is
|
|
|
|
|
traversed) includes a scan of the NetScope tree to locate defparam
|
|
|
|
|
assignments that were collected during scope elaboration. This is when
|
|
|
|
|
the defparam overrides are applied to the parameters.
|
|
|
|
|
|
|
|
|
|
3.3.2 Netlist Elaboration
|
|
|
|
|
|
|
|
|
|
After the scopes and parameters are generated and the NetScope tree
|
2000-06-07 05:53:16 +02:00
|
|
|
fully formed, the elaboration runs through the pform again, this time
|
2000-03-08 05:36:53 +01:00
|
|
|
generating the structural and behavioral netlist. Parameters are
|
|
|
|
|
elaborated and evaluated by now so all the constants of code
|
|
|
|
|
generation are now known locally, so the netlist can be generated by
|
|
|
|
|
simply passing through the pform.
|
|
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
3.4 Optimization
|
1999-05-09 03:29:38 +02:00
|
|
|
|
|
|
|
|
This is actually a collection of processing steps that perform
|
|
|
|
|
optimizations that do not depend on the target technology. Examples of
|
2002-08-02 03:52:02 +02:00
|
|
|
some useful transformations are
|
1999-05-09 03:29:38 +02:00
|
|
|
|
2002-08-02 03:52:02 +02:00
|
|
|
- eliminate null effect circuitry
|
1999-05-09 03:29:38 +02:00
|
|
|
- combinational reduction
|
2002-01-19 20:22:39 +01:00
|
|
|
- constant propagation
|
1999-05-09 03:29:38 +02:00
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
The actual functions performed are specified on the ivl command line by
|
2002-08-02 03:52:02 +02:00
|
|
|
the -F flags (see below).
|
1999-05-09 03:29:38 +02:00
|
|
|
|
1999-10-16 23:22:06 +02:00
|
|
|
3.5 Code Generation
|
1999-05-09 03:29:38 +02:00
|
|
|
|
|
|
|
|
This step takes the design netlist and uses it to drive the code
|
2002-08-02 03:52:02 +02:00
|
|
|
generator (see target.h). This may require transforming the
|
1999-05-09 03:29:38 +02:00
|
|
|
design to suit the technology.
|
|
|
|
|
|
|
|
|
|
The emit() method of the Design class performs this step. It runs
|
|
|
|
|
through the design elements, calling target functions as need arises
|
|
|
|
|
to generate actual output.
|
|
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
The user selects the target code generator with the -t flag on the
|
1999-05-09 03:29:38 +02:00
|
|
|
command line.
|
|
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
3.6 ATTRIBUTES
|
|
|
|
|
|
2002-08-02 03:52:02 +02:00
|
|
|
NOTE: The $attribute syntax will soon be deprecated in favor of the
|
2002-08-10 18:57:27 +02:00
|
|
|
Verilog-2001 attribute syntax, which is cleaner and standardized.
|
2002-07-26 04:08:02 +02:00
|
|
|
|
2002-01-19 20:22:39 +01:00
|
|
|
The parser accepts, as an extension to Verilog, the $attribute module
|
2000-09-17 21:06:58 +02:00
|
|
|
item. The syntax of the $attribute item is:
|
|
|
|
|
|
|
|
|
|
$attribute (<identifier>, <key>, <value>);
|
|
|
|
|
|
|
|
|
|
The $attribute keyword looks like a system task invocation. The
|
2011-03-11 20:27:54 +01:00
|
|
|
difference here is that the parameters are more restricted than those
|
2000-09-17 21:06:58 +02:00
|
|
|
of a system task. The <identifier> must be an identifier. This will be
|
|
|
|
|
the item to get an attribute. The <key> and <value> are strings, not
|
|
|
|
|
expressions, that give the key and the value of the attribute to be
|
|
|
|
|
attached to the identified object.
|
|
|
|
|
|
|
|
|
|
Attributes are [<key> <value>] pairs and are used to communicate with
|
|
|
|
|
the various processing steps. See the documentation for the processing
|
|
|
|
|
step for a list of the pertinent attributes.
|
|
|
|
|
|
|
|
|
|
Attributes can also be applied to gate types. When this is done, the
|
|
|
|
|
attribute is given to every instantiation of the primitive. The syntax
|
|
|
|
|
for the attribute statement is the same, except that the <identifier>
|
|
|
|
|
names a primitive earlier in the compilation unit and the statement is
|
|
|
|
|
placed in global scope, instead of within a module. The semicolon is
|
|
|
|
|
not part of a type attribute.
|
|
|
|
|
|
|
|
|
|
Note that attributes are also occasionally used for communication
|
|
|
|
|
between processing steps. Processing steps that are aware of others
|
|
|
|
|
may place attributes on netlist objects to communicate information to
|
|
|
|
|
later steps.
|
|
|
|
|
|
2002-05-28 07:20:41 +02:00
|
|
|
Icarus Verilog also accepts the Verilog 2001 syntax for
|
|
|
|
|
attributes. They have the same general meaning as with the $attribute
|
|
|
|
|
syntax, but they are attached to objects by position instead of by
|
|
|
|
|
name. Also, the key is a Verilog identifier instead of a string.
|
|
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
4.0 Running iverilog
|
1999-09-19 00:24:24 +02:00
|
|
|
|
2000-11-01 07:05:44 +01:00
|
|
|
The preferred way to invoke the compiler is with the iverilog(1)
|
1999-09-19 00:24:24 +02:00
|
|
|
command. This program invokes the preprocessor (ivlpp) and the
|
|
|
|
|
compiler (ivl) with the proper command line options to get the job
|
2000-05-13 22:55:15 +02:00
|
|
|
done in a friendly way. See the iverilog(1) man page for usage details.
|
1999-09-19 00:24:24 +02:00
|
|
|
|
2002-05-20 01:37:28 +02:00
|
|
|
|
|
|
|
|
4.1 EXAMPLES
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1999-05-09 03:29:38 +02:00
|
|
|
Example: Compiling "hello.vl"
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1999-05-09 03:29:38 +02:00
|
|
|
------------------------ hello.vl ----------------------------
|
|
|
|
|
module main();
|
2004-10-04 03:10:51 +02:00
|
|
|
|
|
|
|
|
initial
|
1999-05-09 03:29:38 +02:00
|
|
|
begin
|
|
|
|
|
$display("Hi there");
|
|
|
|
|
$finish ;
|
|
|
|
|
end
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1999-05-09 03:29:38 +02:00
|
|
|
endmodule
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1999-05-09 03:29:38 +02:00
|
|
|
--------------------------------------------------------------
|
1998-11-18 05:25:22 +01:00
|
|
|
|
2004-10-04 03:10:51 +02:00
|
|
|
Ensure that "iverilog" is on your search path, and the vpi library
|
1999-09-19 00:24:24 +02:00
|
|
|
is available.
|
1998-11-18 05:25:22 +01:00
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
To compile the program:
|
1998-11-18 05:25:22 +01:00
|
|
|
|
2000-05-13 22:55:15 +02:00
|
|
|
iverilog hello.vl
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1999-05-10 02:29:35 +02:00
|
|
|
(The above presumes that /usr/local/include and /usr/local/lib are
|
1999-09-19 00:24:24 +02:00
|
|
|
part of the compiler search path, which is usually the case for gcc.)
|
1999-05-10 02:29:35 +02:00
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
To run the program:
|
1998-11-18 05:25:22 +01:00
|
|
|
|
2000-05-13 22:55:15 +02:00
|
|
|
./a.out
|
1998-11-18 05:25:22 +01:00
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
You can use the "-o" switch to name the output command to be generated
|
|
|
|
|
by the compiler. See the iverilog(1) man page.
|
1998-11-18 05:25:22 +01:00
|
|
|
|
1999-05-09 03:29:38 +02:00
|
|
|
5.0 Unsupported Constructs
|
1998-11-18 05:25:22 +01:00
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
Icarus Verilog is in development - as such it still only supports a
|
|
|
|
|
(growing) subset of Verilog. Below is a description of some of the
|
2002-01-19 20:22:39 +01:00
|
|
|
currently unsupported Verilog features. This list is not exhaustive,
|
2000-09-17 21:06:58 +02:00
|
|
|
and does not account for errors in the compiler. See the Icarus
|
2001-01-20 20:02:04 +01:00
|
|
|
Verilog web page for the current state of support for Verilog, and in
|
|
|
|
|
particular, browse the bug report database for reported unsupported
|
|
|
|
|
constructs.
|
1999-06-09 05:00:05 +02:00
|
|
|
|
2004-09-05 19:54:22 +02:00
|
|
|
- System functions are supported, but the return value is a little
|
|
|
|
|
tricky. See SYSTEM FUNCTION TABLE FILES in the iverilog man page.
|
1999-09-30 23:28:34 +02:00
|
|
|
|
2000-05-13 22:55:15 +02:00
|
|
|
- Specify blocks are parsed but ignored in general.
|
1999-06-19 23:06:16 +02:00
|
|
|
|
2000-12-05 23:31:38 +01:00
|
|
|
- trireg is not supported. tri0 and tri1 are supported.
|
|
|
|
|
|
2002-09-04 18:19:39 +02:00
|
|
|
- tran primitives, i.e. tran, tranif1, tranif0, rtran, rtranif1
|
|
|
|
|
and rtranif0 are not supported.
|
|
|
|
|
|
2002-08-07 04:07:12 +02:00
|
|
|
- Net delays, of the form "wire #N foo;" do not work. Delays in
|
|
|
|
|
every other context do work properly, including the V2001 form
|
|
|
|
|
"wire #5 foo = bar;"
|
|
|
|
|
|
2002-08-10 18:57:27 +02:00
|
|
|
- Event controls inside non-blocking assignments are not supported.
|
|
|
|
|
i.e.: a <= @(posedge clk) b;
|
|
|
|
|
|
2002-08-24 02:52:49 +02:00
|
|
|
- Macro arguments are not supported. `define macros are supported,
|
|
|
|
|
but they cannot take arguments.
|
|
|
|
|
|
2002-05-24 02:44:54 +02:00
|
|
|
5.1 Nonstandard Constructs or Behaviors
|
2002-05-05 23:11:49 +02:00
|
|
|
|
|
|
|
|
Icarus Verilog includes some features that are not part of the
|
2002-05-24 02:44:54 +02:00
|
|
|
IEEE1364 standard, but have well defined meaning, and also sometimes
|
|
|
|
|
gives nonstandard (but extended) meanings to some features of the
|
2005-09-14 04:51:13 +02:00
|
|
|
language that are defined. See the "extensions.txt" documentation for
|
|
|
|
|
more details.
|
2002-05-05 23:11:49 +02:00
|
|
|
|
2004-08-26 05:51:51 +02:00
|
|
|
$is_signed(<expr>)
|
|
|
|
|
This system function returns 1 if the expression contained is
|
|
|
|
|
signed, or 0 otherwise. This is mostly of use for compiler
|
|
|
|
|
regression tests.
|
|
|
|
|
|
2002-05-05 23:11:49 +02:00
|
|
|
$sizeof(<expr>)
|
2002-05-24 02:44:54 +02:00
|
|
|
$bits(<expr>)
|
|
|
|
|
The $bits system function returns the size in bits of the
|
2002-05-05 23:11:49 +02:00
|
|
|
expression that is its argument. The result of this
|
|
|
|
|
function is undefined if the argument doesn't have a
|
|
|
|
|
self-determined size.
|
|
|
|
|
|
2002-05-24 02:44:54 +02:00
|
|
|
The $sizeof function is deprecated in favor of $bits, which is
|
|
|
|
|
the same thing, but included in the SystemVerilog definition.
|
|
|
|
|
|
2002-12-21 01:55:57 +01:00
|
|
|
$simtime
|
|
|
|
|
The $simtime system function returns as a 64bit value the
|
|
|
|
|
simulation time, unscaled by the time units of local
|
|
|
|
|
scope. This is different from the $time and $stime functions
|
|
|
|
|
which return the scaled times. This function is added for
|
|
|
|
|
regression testing of the compiler and run time, but can be
|
|
|
|
|
used by applications who really want the simulation time.
|
|
|
|
|
|
|
|
|
|
Note that the simulation time can be confusing if there are
|
|
|
|
|
lots of different `timescales within a design. It is not in
|
|
|
|
|
general possible to predict what the simulation precision will
|
|
|
|
|
turn out to be.
|
|
|
|
|
|
2004-06-10 00:14:10 +02:00
|
|
|
$mti_random()
|
|
|
|
|
$mti_dist_uniform
|
|
|
|
|
These functions are similar to the IEEE1364 standard $random
|
|
|
|
|
functions, but they use the Mersenne Twister (MT19937)
|
|
|
|
|
algorithm. This is considered an excellent random number
|
|
|
|
|
generator, but does not generate the same sequence as the
|
|
|
|
|
standardized $random.
|
|
|
|
|
|
2002-05-05 23:11:49 +02:00
|
|
|
Builtin system functions
|
|
|
|
|
|
|
|
|
|
Certain of the system functions have well defined meanings, so
|
|
|
|
|
can theoretically be evaluated at compile time, instead of
|
|
|
|
|
using runtime VPI code. Doing so means that VPI cannot
|
|
|
|
|
override the definitions of functions handled in this
|
2003-01-30 17:23:07 +01:00
|
|
|
manner. On the other hand, this makes them synthesizable, and
|
2002-05-24 02:44:54 +02:00
|
|
|
also allows for more aggressive constant propagation. The
|
2002-05-05 23:11:49 +02:00
|
|
|
functions handled in this manner are:
|
|
|
|
|
|
2002-05-24 02:44:54 +02:00
|
|
|
$bits
|
2002-05-05 23:11:49 +02:00
|
|
|
$signed
|
|
|
|
|
$sizeof
|
|
|
|
|
$unsigned
|
|
|
|
|
|
|
|
|
|
Implementations of these system functions in VPI modules will
|
|
|
|
|
be ignored.
|
|
|
|
|
|
2002-05-28 07:20:41 +02:00
|
|
|
Preprocessing Library Modules
|
|
|
|
|
|
|
|
|
|
Icarus Verilog does preprocess modules that are loaded from
|
2002-08-02 03:52:02 +02:00
|
|
|
libraries via the -y mechanism. However, the only macros
|
2002-05-28 07:20:41 +02:00
|
|
|
defined during compilation of that file are those that it
|
|
|
|
|
defines itself (or includes) or that are defined on the
|
|
|
|
|
command line or command file.
|
|
|
|
|
|
|
|
|
|
Specifically, macros defined in the non-library source files
|
|
|
|
|
are not remembered when the library module is loaded. This is
|
|
|
|
|
intentional. If it were otherwise, then compilation results
|
|
|
|
|
might vary depending on the order that libraries are loaded,
|
|
|
|
|
and that is too unpredictable.
|
|
|
|
|
|
|
|
|
|
It is said that some commercial compilers do allow macro
|
|
|
|
|
definitions to span library modules. That's just plain weird.
|
|
|
|
|
|
2002-05-31 06:26:54 +02:00
|
|
|
Width in %t Time Formats
|
|
|
|
|
|
|
|
|
|
Standard Verilog does not allow width fields in the %t formats
|
|
|
|
|
of display strings. For example, this is illegal:
|
|
|
|
|
|
|
|
|
|
$display("Time is %0t", %time);
|
|
|
|
|
|
|
|
|
|
Standard Verilog instead relies on the $timeformat to
|
|
|
|
|
completely specify the format.
|
|
|
|
|
|
|
|
|
|
Icarus Verilog allows the programmer to specify the field
|
2003-07-15 05:49:22 +02:00
|
|
|
width. The "%t" format in Icarus Verilog works exactly as it
|
2002-05-31 06:26:54 +02:00
|
|
|
does in standard Verilog. However, if the programmer chooses
|
2002-08-02 03:52:02 +02:00
|
|
|
to specify a minimum width (i.e., "%5t"), then for that display
|
2002-05-31 06:26:54 +02:00
|
|
|
Icarus Verilog will override the $timeformat minimum width and
|
|
|
|
|
use the explicit minimum width.
|
2002-05-28 07:20:41 +02:00
|
|
|
|
2002-11-15 23:14:12 +01:00
|
|
|
vpiScope iterator on vpiScope objects.
|
|
|
|
|
|
|
|
|
|
In the VPI, the normal way to iterate over vpiScope objects
|
|
|
|
|
contained within a vpiScope object, is the vpiInternalScope
|
|
|
|
|
iterator. Icarus Verilog adds support for the vpiScope
|
|
|
|
|
iterator of a vpiScope object, that iterates over *everything*
|
|
|
|
|
the is contained in the current scope. This is useful in cases
|
|
|
|
|
where one wants to iterate over all the objects in a scope
|
|
|
|
|
without iterating over all the contained types explicitly.
|
|
|
|
|
|
2003-09-04 22:28:05 +02:00
|
|
|
time 0 race resolution.
|
|
|
|
|
|
|
|
|
|
Combinational logic is routinely modeled using always
|
|
|
|
|
blocks. However, this can lead to race conditions if the
|
|
|
|
|
inputs to the combinational block are initialized in initial
|
|
|
|
|
statements. Icarus Verilog slightly modifies time 0 scheduling
|
|
|
|
|
by arranging for always statements with ANYEDGE sensitivity
|
|
|
|
|
lists to be scheduled before any other threads. This causes
|
|
|
|
|
combinational always blocks to be triggered when the values in
|
2003-09-13 03:01:51 +02:00
|
|
|
the sensitivity list are initialized by initial threads.
|
2002-11-15 23:14:12 +01:00
|
|
|
|
2005-07-07 18:22:49 +02:00
|
|
|
Nets with Types
|
|
|
|
|
|
|
|
|
|
Icarus Verilog support an extension syntax that allows nets
|
|
|
|
|
and regs to be explicitly typed. The currently supported types
|
|
|
|
|
are logic, bool and real. This implies that "logic" and "bool"
|
|
|
|
|
are new keywords. Typical syntax is:
|
|
|
|
|
|
|
|
|
|
wire real foo = 1.0;
|
|
|
|
|
reg logic bar, bat;
|
|
|
|
|
|
|
|
|
|
... and so forth. The syntax can be turned off by using the
|
|
|
|
|
-g2 flag to iverilog, and turned on explicitly with the -g2x
|
|
|
|
|
flag to iverilog.
|
|
|
|
|
|
1999-07-08 04:06:47 +02:00
|
|
|
6.0 CREDITS
|
|
|
|
|
|
2000-09-17 21:06:58 +02:00
|
|
|
Except where otherwise noted, Icarus Verilog, ivl and ivlpp are
|
|
|
|
|
Copyright Stephen Williams. The proper notices are in the head of each
|
2001-01-20 20:02:04 +01:00
|
|
|
file. However, I have early on received aid in the form of fixes,
|
2003-08-03 05:55:11 +02:00
|
|
|
Verilog guidance, and especially testing from many people. Testers in
|
|
|
|
|
particular include a larger community of people interested in a GPL
|
|
|
|
|
Verilog for Linux.
|