Generate an RTLIL representation of bind constructs
authorRupert Swarbrick <rswarbrick@gmail.com>
Mon, 20 Apr 2020 15:06:53 +0000 (16:06 +0100)
committerZachary Snow <zachary.j.snow@gmail.com>
Fri, 13 Aug 2021 23:11:35 +0000 (17:11 -0600)
commitee2b5b7ed186414897a8a570a9e503c438803ad8
tree649b8773ac8f332439b1071086e55512bf356697
parentf7913285067ed30bf5087f265db7e0bd523af2b6
Generate an RTLIL representation of bind constructs

This code now takes the AST nodes of type AST_BIND and generates a
representation in the RTLIL for them.

This is a little tricky, because a binding of the form:

    bind baz foo_t foo_i (.arg (1 + bar));

means "make an instance of foo_t called foo_i, instantiate it inside
baz and connect the port arg to the result of the expression 1+bar".
Of course, 1+bar needs a cell for the addition. Where should that cell
live?

With this patch, the Binding structure that represents the construct
is itself an AST::AstModule module. This lets us put the adder cell
inside it. We'll pull the contents out and plonk them into 'baz' when
we actually do the binding operation as part of the hierarchy pass.

Of course, we don't want RTLIL::Binding to contain an
AST::AstModule (since kernel code shouldn't depend on a frontend), so
we define RTLIL::Binding as an abstract base class and put the
AST-specific code into an AST::Binding subclass. This is analogous to
the AST::AstModule class.
Makefile
frontends/ast/Makefile.inc
frontends/ast/ast.cc
frontends/ast/ast.h
frontends/ast/ast_binding.cc [new file with mode: 0644]
frontends/ast/ast_binding.h [new file with mode: 0644]
frontends/ast/genrtlil.cc
kernel/binding.cc [new file with mode: 0644]
kernel/binding.h [new file with mode: 0644]
kernel/rtlil.cc
kernel/rtlil.h