1.
Introduction
Verilog 1995 version
has been in market for a very long time. IEEE extended the features of
Verilog 1995 and released it as Verilog 2001. But this was no good for
verification engineers, so verification engineers had to use languages
like "e", VERA, Testbuider. It was rather painfull to have two languages,
one for design and other for verification. SystemVerilog combines the
Verification capabilties of HVL (Hardware Verification Language) with ease
of Verilog to provide a single platform for both design and verification.
Some of the new
features in SystemVerilog are as listed below.
-
C
type data types like int, typedef, struct, union, enum.
-
Dynamic data types: struct, classes, dynamic queues, dynamic arrays.
-
New
operators and built in methods.
-
Enhanced flow control like, foreach, return, break and continue.
-
Semaphores, mailboxes, event extensions.
-
Classes for object oriented programming.
-
Assertions.
-
Coverage.
-
VPI
extensions.
Now IEEE has accepted
the SystemVerilog and it will be official intergrated into Verilog 2005,
which is suppose to be released in year 2005.

Anyone with background
of C++, or OO programming language will feel at home with SystemVerilog.
But on other hand if you have been thinking C or C++ is not required, then
you may be shocked to know that SystemVerilog is very much like C++.
This document
specifies the Accellera extensions for a higher level of abstraction for
modeling and verification with the Verilog Hardware Description Language.
These additions extend Verilog into the systems space and the verification
space. SystemVerilog is built on top of the work of the IEEE Verilog 2001
committee.
Throughout this
document:
� �Verilog� or
�Verilog-2001� refers to the IEEE Std. 1364-2001 standard for the Verilog
Hardware Description Language
� �SystemVerilog�
refers to the Accellera extensions to the Verilog-2001 standard.
This document numbers
the generations of Verilog as follows:
� �Verilog 1.0�
is the IEEE Std. 1364-1995 Verilog standard, which is also called
Verilog-1995
� �Verilog 2.0�
is the IEEE Std. 1364-2001 Verilog standard, commonly called Verilog-2001;
this generation of Verilog contains the first significant enhancements to
Verilog since its release to the public in 1990
� �SystemVerilog
3.x� is Verilog-2001 plus an extensive set of high-level abstraction
extensions, as defined in this document
� SystemVerilog 3.0,
approved as an Accellera standard in June 2002, includes enhancements
primarily directed at high-level architectural modeling
� SystemVerilog 3.1,
approved as an Accellera standard in May 2003, includes enhancements
primarily directed at advanced verification and C language integration
� SystemVerilog 3.1a,
approved as an Accellera standard in April 2004, includes corrections and
clarifications to the SystemVerilog 3.1 manual, as well as some additional
enhancements to Verilog such as VCD and PLI specifications for
SystemVerilog construct.
SystemVerilog is built
on top of Verilog 2001. SystemVerilog improves the productivity,
readability, and reusability of Verilog based code. The language
enhancements in SystemVerilog provide more concise hardware Descriptions,
while still providing an easy route with existing tools into current
hardware implementation Flows. The enhancements also provide extensive
support for directed and constrained-random testbench development,
coverage driven verification, and assertion based verification.
SystemVerilog adds
extended and new constructs to Verilog-2001, including:
�
Extensions to
data types for better encapsulation and compactness of code and for
tighter specification
�
C data types:
int, typedef, struct, union, enum
�
`��|7V `��|7V ���|7V ���|7V Ȗ�|7V ���|7V @ ���|7V logic (0, 1, X, Z) and bit (0, 1), tagged unions
for safety
�
Dynamic data
types: string, classes, dynamic queues, dynamic arrays, associative arrays
including automatic memory management freeing users from de-allocation
issues
�
Dynamic casting
and bit-stream casting
�
Automatic/static specification on a per variable instance basis
�
Extended
operators for concise description
�
Wild equality
and inequality
�
Built-in
methods to extend the language
�
Operator
overloading
�
streaming
operators
�
set membership
�
Extended
procedural statements
�
Pattern
matching on selection statements for use with tagged unions
�
enhanced loop
statements plus the foreach statement
�
C like jump
statements: return, break, continue
�
Final blocks
that executes at the end of simulation (inverse of initial)
�
extended event
control and sequence events
�
Enhanced
process control
�
Extensions to
always blocks to include synthesis consistent simulation semantics
�
Extensions to
fork�join to model pipelines and for enhanced process control
�
Fine-grain
process control
�
Enhanced tasks
and functions
�
C like void
functions
�
pass by
reference
�
default
arguments
�
pass by name
�
Optional
arguments
�
import/export
functions for DPI (Direct Programming Interface)
�
Classes:
Object-Oriented mechanism that provides abstraction, encapsulation, and
safe pointer capabilities
�
Automated
testbench support with random constraints
�
Interprocess
communication synchronization
�
semaphores
�
Mailboxes
Event extensions,
event variables, and event sequencing
�
Clarification
and extension of the scheduling semantics
�
Cycle-Based
Functionality: Clocking blocks and cycle-based attributes that help reduce
development ease maintainability, and promote reusability:
�
cycle-based
signal drives and samples
|