scription here, but BSV indeed defines
such a concrete mapping of rules into
clocked hardware. Clocks and Resets are abstract data types, and rules
and methods are mapped into clock
and reset domains. Strong static type
checking verifies the isolation of these
domains. In summary, BSV has easy-to-use and semantically rigorous facilities
for the robust creation of designs with
multiple clock domains.
Another very important consideration today is power consumption.
At a fine granularity, BSV clocks can
be gated, with gating conditions integrated organically into rule conditions. At the coarser granularity of IP
blocks, BSV has power-management
facilities to switch off or scale power
and clocks to entire modules or subsystems in a disciplined manner.
One intriguing thought is that BSV
could also be compiled into asynchronous logic (which has many potential
advantages relating to circuit timing
and power consumption), but how to
do this, and how to reason about system performance in this regime, are
still open research questions.
Synthesis quality for ASICs.
Technology to compile Rules into efficient
hardware was first developed more
than a decade ago.
8 It has been improved continuously since then and
has been used on hundreds of designs. In some there was an existing
RTL design for apples-to-apples comparisons, and in general, quality has
been comparable (as measured in silicon area and performance), typically
within 5%.
In a few cases, BSV-generated RTL
has significantly better quality (15%–
25%) than hand-coded RTL. This is
surprising at first because in software
you typically pay a performance penalty
for higher abstraction. As illustrated in
Figure 1, however, higher abstraction
in hardware design can yield significant algorithmic advantages (that is,
more efficient architectures).
Synthesis for FPGA-based simulation. The universal applicability and
synthesizability of BSV has opened
the door for many to use FPGAs as
their standard simulation engine,
from the earliest stages of design,
and with a “design-by-refinement”
methodology.
Bluespec Inc., by “eating its own
dog food,” has used BSV to create
highly parameterized communica-
tion, debugging, and IP libraries for
FPGA boards. These form a kind of
operating system for FPGAs, so that
the user has high-level facilities for
communicating with a host and de-
bugging a model or design instead of
the customary painful wrestling with
the raw FPGA board hardware.
conclusion
Historically there has been an almost
total separation between software
and hardware designers, much of it
attributable to the wide cultural (
semantic) gap between the languages
they use to design their respective
systems. Modern systems demand a
reduction or elimination of this specialization. All interesting hardware
systems today must run sophisticated
software, and many complex software
computations must move to hardware to meet performance and power
consumption goals.
21
BSV is an attempt to address this
problem. Rather than trying to force
fit solutions for von Neumann ma-
chines (such as C++ and threads) into
hardware description, BSV has taken
excellent ideas from software that are
naturals for hardware description. It
describes behavior using Rules (from
Term Rewriting Systems), which are
excellent for massive, fine-grain,
heterogeneous, reactive concur-
rency (hardware!). It describes struc-
ture and structural abstraction us-
ing types, overloading, higher-order
functions, parameterization, and
even monads from Haskell. These
ideas have been tested in the field for
well over five years and used in fin-
ished products, one of which might
be in your pocket right now.
Related articles
on queue.acm.org
SoC: Software, hardware, nightmare, Bliss
George Neville-Neil, Telle Whitney
http://queue.acm.org/detail.cfm?id=644265
The Reincarnation of Virtual Machines
Mendel Rosenblum
http://queue.acm.org/detail.cfm?id=1017000
Blurring Lines Between
hardware and Software
Homayoun Shahri
http://queue.acm.org/detail.cfm?id=644267
References
1. adve, s. data races are evil with no exceptions.
Commun. ACM 53, 11 (Nov. 2010), 84.
2. bergeron, J., cerny, e., hunter, a. and Nightingale, a.
Verification Methodology Manual for SystemVerilog.
springer, 2006.
3. burger, d., emer, J., hoe, J. c., chiou, d., sendag, r.
and yi, J. J. the future of architectural simulation.
IEEE Micro (May/June 2010), 8–18.
4. chandy, K. and Misra, J. Parallel Program Design: A
Foundation. addison Wesley, reading, Ma, 1988.
5. coussy, p. and a. Morawiec, eds. High-Level Synthesis:
from Algorithm to Digital Circuit. springer, 2008.
6. dijkstra, e. W. guarded commands, nondeterminacy
and formal derivation of programs. Commun. ACM 18,
8 (aug. 1975), 453–457.
7. edwards, s.a. the challenge of synthesizing hardware
from c-like languages. IEEE Design and Test of
Computers 23, 5 (2006).
8. hoe, J. c. operation-centric hardware description and
synthesis. ph.d. thesis, Mit, 2000.
9. ieee. 2002. ieee standard vhdl language
reference Manual. ieee std 1076-1993.
10. ieee. 2005. ieee standard for system verilog—
unified hardware design, specification and verification
language. ieee std 1800-2005.
11. ieee. 2005. ieee standard systemc language
reference Manual. ieee std 1666-2005.
12. ieee. 2005. ieee standard verilog hardware
description language. ieee std 1364-2005.
13. Klop, J. Term Rewriting Systems, vol. 2. oxford
university press, 1992, 1–116.
14. lamport, l. Specifying Systems: The TLA+ Language
and Tools for Hardware and Software Engineers.
addison-Wesley professional (pearson education),
2002.
15. lee, e. a. 2006. the problem with threads. IEEE
Computer 39, 5, 33–42.
16. Metayer, c., abrial, J.-r. and voisin, l. May 31, 2005.
the event-b language;. http://rodin.cs.ncl.ac.uk/
deliverables.htm.
17. Milner, r., tofte, M., harper, r. and MacQueen, d.
The Definition of Standard ML (revised). Mit press,
cambridge, Ma, 1997.
18. Nikhil, r.s., czeck, K.r. BSV by Example. createspace
2010 ( amazon.com).
19. osci. 2009. osci tlM- 2.0 language reference
Manual; www.systemc.org.
20. peyton Jones, s., ed. Haskell 98 Language and
Libraries: The Revised Report. cambridge university
press, 2003; www.haskell.org.
21. singh. s. computing without processors. Commun.
ACM 54, 8 (aug. 2011) 46–54.
22. Williams, r. 2010. photoshop scalability: Keeping it
simple. Commun. ACM 53, 10 (oct. 2010), 36.
Rishiyur nikhil ( nikhil@bluespec.com) worked on haskell
and functional programming languages and compilers for
parallelism, and dataflow and multithreaded architectures
for about 20 years. since 2000 he has been applying those
ideas to hardware design.