yosys/manual/CHAPTER_Auxlibs.tex

36 lines
1.3 KiB
TeX
Raw Normal View History

2013-07-20 13:19:12 +00:00
2015-08-14 08:56:05 +00:00
\chapter{Auxiliary Libraries}
2013-07-20 13:19:12 +00:00
2015-08-14 08:56:05 +00:00
The Yosys source distribution contains some auxiliary libraries that are bundled
2013-07-20 13:19:12 +00:00
with Yosys.
\section{SHA1}
2014-08-01 17:01:10 +00:00
The files in {\tt libs/sha1/} provide a public domain SHA1 implementation written
by Steve Reid, Bruce Guenter, and Volker Grabsch. It is used for generating
unique names when specializing parameterized modules.
2013-07-20 13:19:12 +00:00
\section{BigInt}
The files in {\tt libs/bigint/} provide a library for performing arithmetic with
arbitrary length integers. It is written by Matt McCutchen \citeweblink{bigint}.
The BigInt library is used for evaluating constant expressions, e.g.~using the {\tt
ConstEval} class provided in {\tt kernel/consteval.h}.
\section{SubCircuit}
\label{sec:SubCircuit}
The files in {\tt libs/subcircuit} provide a library for solving the subcircuit
isomorphism problem. It is written by Clifford Wolf and based on the Ullmann
Subgraph Isomorphism Algorithm \cite{UllmannSubgraphIsomorphism}. It is used by
the {\tt extract} pass (see {\tt help extract} or Sec.~\ref{cmd:extract}).
\section{ezSAT}
The files in {\tt libs/ezsat} provide a library for simplifying generating CNF
formulas for SAT solvers. It also contains bindings of MiniSAT. The ezSAT
library is written by Clifford Wolf. It is used by the {\tt sat} pass (see
{\tt help sat} or Sec.~\ref{cmd:sat}).