3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 09:34:09 +00:00
yosys/passes/techmap
Zachary Snow fe74b0cd95 verilog: significant block scoping improvements
This change set contains a number of bug fixes and improvements related to
scoping and resolution in generate and procedural blocks. While many of the
frontend changes are interdependent, it may be possible bring the techmap
changes in under a separate PR.

Declarations within unnamed generate blocks previously encountered issues
because the data declarations were left un-prefixed, breaking proper scoping.
The LRM outlines behavior for generating names for unnamed generate blocks. The
original goal was to add this implicit labelling, but doing so exposed a number
of issues downstream. Additional testing highlighted other closely related scope
resolution issues, which have been fixed. This change also adds support for
block item declarations within unnamed blocks in SystemVerilog mode.

1. Unlabled generate blocks are now implicitly named according to the LRM in
   `label_genblks`, which is invoked at the beginning of module elaboration
2. The Verilog parser no longer wraps explicitly named generate blocks in a
   synthetic unnamed generate block to avoid creating extra hierarchy levels
   where they should not exist
3. The techmap phase now allows special control identifiers to be used outside
   of the topmost scope, which is necessary because such wires and cells often
   appear in unlabeled generate blocks, which now prefix the declarations within
4. Some techlibs required modifications because they relied on the previous
   invalid scope resolution behavior
5. `expand_genblock` has been simplified, now only expanding the outermost
   scope, completely deferring the inspection and elaboration of nested scopes;
   names are now resolved by looking in the innermost scope and stepping outward
6. Loop variables now always become localparams during unrolling, allowing them
   to be resolved and shadowed like any other identifier
7. Identifiers in synthetic function call scopes are now prefixed and resolved
   in largely the same manner as other blocks
     before: `$func$\func_01$tests/simple/scopes.blk.v:60$5$\blk\x`
      after: `\func_01$func$tests/simple/scopes.v:60$5.blk.x`
8. Support identifiers referencing a local generate scope nested more
   than 1 level deep, i.e. `B.C.x` while within generate scope `A`, or using a
   prefix of a current or parent scope, i.e. `B.C.D.x` while in `A.B`, `A.B.C`,
   or `A.B.C.D`
9. Variables can now be declared within unnamed blocks in SystemVerilog mode

Addresses the following issues: 656, 2423, 2493
2021-01-31 09:42:09 -05:00
..
abc.cc Merge pull request #2549 from pgadfort/support-multiple-libs 2021-01-25 10:36:14 +00:00
abc9.cc Replace opt_rmdff with opt_dff. 2020-08-07 13:21:03 +02:00
abc9_exe.cc Expose abc and data paths as globals 2020-11-06 14:17:15 +01:00
abc9_ops.cc Remove YS_ATTRIBUTE(unused) where present just for log_assert()/log_debug(). 2020-06-19 15:48:58 +00:00
aigmap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
alumacc.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
attrmap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
attrmvcp.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
clkbufmap.cc clkbufmap: improve input pad handling. 2020-07-09 18:48:01 +02:00
deminout.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
dffinit.cc dffinit: Refactor to use FfInitVals. 2020-07-24 11:22:31 +02:00
dfflegalize.cc dfflegalize: Fix decision tree for adffe. 2020-08-27 13:17:42 +02:00
dfflibmap.cc dfflibmap: Refactor to use dfflegalize internally. 2020-07-09 18:51:03 +02:00
dffunmap.cc Add dffunmap pass. 2020-07-31 00:59:51 +02:00
extract.cc Replace "ILANG" with "RTLIL" everywhere. 2020-08-26 17:29:32 +00:00
extract_counter.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
extract_fa.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
extract_reduce.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
extractinv.cc Naming fixes. 2020-07-05 22:21:59 +02:00
filterlib.cc Moved dfflibmap from passes/dfflibmap to passes/techmap 2013-10-16 15:32:26 +02:00
flatten.cc Sign extend port connections where necessary 2020-12-18 20:33:14 -07:00
flowmap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
hilomap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
insbuf.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
iopadmap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
libparse.cc Fix two instances of integer-assignment to string. 2019-05-14 22:01:15 -07:00
libparse.h Updated the liberty parser to accept [A:B] ranges (AST has not been updated). Liberty parser now also accepts key : value pair lines that do not end in ';'. 2019-03-24 22:54:18 +01:00
lut2mux.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
maccmap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
Makefile.inc Remove now-redundant dff2dffe pass. 2020-08-07 13:21:34 +02:00
muxcover.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
nlutmap.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
pmuxtree.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
shregmap.cc shregmap: Refactor to use FfInitVals. 2020-07-24 11:22:31 +02:00
simplemap.cc simplemap: Fix $dffsre mapping. 2020-06-23 23:16:43 +02:00
simplemap.h Replace std::map with dict for simplemap_mappers. 2020-05-14 20:06:53 +00:00
techmap.cc verilog: significant block scoping improvements 2021-01-31 09:42:09 -05:00
tribuf.cc Use C++11 final/override keywords. 2020-06-18 23:34:52 +00:00
zinit.cc zinit: Refactor to use FfInitVals. 2020-07-24 11:22:31 +02:00