Renamed synthsplit to exposenodes.
This was needed to avoid automatically setting the synth flag in the compiler.
This commit is contained in:
parent
a33255f0e0
commit
f84f0535cf
|
|
@ -100,7 +100,7 @@ CTARGETFLAGS = @CTARGETFLAGS@
|
||||||
M = LineInfo.o StringHeap.o
|
M = LineInfo.o StringHeap.o
|
||||||
|
|
||||||
TT = t-dll.o t-dll-api.o t-dll-expr.o t-dll-proc.o t-dll-analog.o
|
TT = t-dll.o t-dll-api.o t-dll-expr.o t-dll-proc.o t-dll-analog.o
|
||||||
FF = cprop.o nodangle.o synth.o synth2.o synthsplit.o syn-rules.o
|
FF = cprop.o exposenodes.o nodangle.o synth.o synth2.o syn-rules.o
|
||||||
|
|
||||||
O = main.o async.o design_dump.o discipline.o dup_expr.o elaborate.o \
|
O = main.o async.o design_dump.o discipline.o dup_expr.o elaborate.o \
|
||||||
elab_expr.o elaborate_analog.o elab_lval.o elab_net.o \
|
elab_expr.o elaborate_analog.o elab_lval.o elab_net.o \
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The synthsplit functor is primarily provided for use by the vlog95
|
* The exposenodes functor is primarily provided for use by the vlog95
|
||||||
* target. To implement some LPM objects, it needs to take a bit or part
|
* target. To implement some LPM objects, it needs to take a bit or part
|
||||||
* of one of the LPM inputs. If that input is not connected to a real
|
* of one of the LPM inputs. If that input is not connected to a real
|
||||||
* net in the design, we need to create a net at that point so that
|
* net in the design, we need to create a net at that point so that
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
* name it generates is unique).
|
* name it generates is unique).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct synthsplit_functor : public functor_t {
|
struct exposenodes_functor : public functor_t {
|
||||||
|
|
||||||
unsigned count;
|
unsigned count;
|
||||||
|
|
||||||
|
|
@ -56,6 +56,12 @@ static bool expose_nexus(Nexus*nex)
|
||||||
NetNet*sig = 0;
|
NetNet*sig = 0;
|
||||||
for (Link*cur = nex->first_nlink() ; cur ; cur = cur->next_nlink()) {
|
for (Link*cur = nex->first_nlink() ; cur ; cur = cur->next_nlink()) {
|
||||||
|
|
||||||
|
// Don't expose nodes that are attached to constants
|
||||||
|
if (dynamic_cast<NetConst*> (cur->get_obj()))
|
||||||
|
return false;
|
||||||
|
if (dynamic_cast<NetLiteral*> (cur->get_obj()))
|
||||||
|
return false;
|
||||||
|
|
||||||
NetNet*cur_sig = dynamic_cast<NetNet*> (cur->get_obj());
|
NetNet*cur_sig = dynamic_cast<NetNet*> (cur->get_obj());
|
||||||
if (cur_sig == 0)
|
if (cur_sig == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -77,7 +83,7 @@ static bool expose_nexus(Nexus*nex)
|
||||||
* The vlog95 target implements a wide mux as a hierarchy of 2:1 muxes,
|
* The vlog95 target implements a wide mux as a hierarchy of 2:1 muxes,
|
||||||
* picking off one bit of the select input at each level of the hierarchy.
|
* picking off one bit of the select input at each level of the hierarchy.
|
||||||
*/
|
*/
|
||||||
void synthsplit_functor::lpm_mux(Design*, NetMux*obj)
|
void exposenodes_functor::lpm_mux(Design*, NetMux*obj)
|
||||||
{
|
{
|
||||||
if (obj->sel_width() == 1)
|
if (obj->sel_width() == 1)
|
||||||
return;
|
return;
|
||||||
|
|
@ -89,7 +95,7 @@ void synthsplit_functor::lpm_mux(Design*, NetMux*obj)
|
||||||
/*
|
/*
|
||||||
* A VP part select is going to select a part from its input.
|
* A VP part select is going to select a part from its input.
|
||||||
*/
|
*/
|
||||||
void synthsplit_functor::lpm_part_select(Design*, NetPartSelect*obj)
|
void exposenodes_functor::lpm_part_select(Design*, NetPartSelect*obj)
|
||||||
{
|
{
|
||||||
if (obj->dir() != NetPartSelect::VP)
|
if (obj->dir() != NetPartSelect::VP)
|
||||||
return;
|
return;
|
||||||
|
|
@ -101,22 +107,22 @@ void synthsplit_functor::lpm_part_select(Design*, NetPartSelect*obj)
|
||||||
/*
|
/*
|
||||||
* A substitute is going to select one or two parts from the wider input signal.
|
* A substitute is going to select one or two parts from the wider input signal.
|
||||||
*/
|
*/
|
||||||
void synthsplit_functor::lpm_substitute(Design*, NetSubstitute*obj)
|
void exposenodes_functor::lpm_substitute(Design*, NetSubstitute*obj)
|
||||||
{
|
{
|
||||||
if (expose_nexus(obj->pin(1).nexus()))
|
if (expose_nexus(obj->pin(1).nexus()))
|
||||||
count += 1;
|
count += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void synthsplit(Design*des)
|
void exposenodes(Design*des)
|
||||||
{
|
{
|
||||||
synthsplit_functor synthsplit;
|
exposenodes_functor exposenodes;
|
||||||
synthsplit.count = 0;
|
exposenodes.count = 0;
|
||||||
if (verbose_flag) {
|
if (verbose_flag) {
|
||||||
cout << " ... Look for intermediate nodes" << endl << flush;
|
cout << " ... Look for intermediate nodes" << endl << flush;
|
||||||
}
|
}
|
||||||
des->functor(&synthsplit);
|
des->functor(&exposenodes);
|
||||||
if (verbose_flag) {
|
if (verbose_flag) {
|
||||||
cout << " ... Exposed " << synthsplit.count
|
cout << " ... Exposed " << exposenodes.count
|
||||||
<< " intermediate signals." << endl << flush;
|
<< " intermediate signals." << endl << flush;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
4
main.cc
4
main.cc
|
|
@ -226,9 +226,9 @@ const bool CASE_SENSITIVE = true;
|
||||||
bool synthesis = false;
|
bool synthesis = false;
|
||||||
|
|
||||||
extern void cprop(Design*des);
|
extern void cprop(Design*des);
|
||||||
|
extern void exposenodes(Design*des);
|
||||||
extern void synth(Design*des);
|
extern void synth(Design*des);
|
||||||
extern void synth2(Design*des);
|
extern void synth2(Design*des);
|
||||||
extern void synthsplit(Design*des);
|
|
||||||
extern void syn_rules(Design*des);
|
extern void syn_rules(Design*des);
|
||||||
extern void nodangle(Design*des);
|
extern void nodangle(Design*des);
|
||||||
|
|
||||||
|
|
@ -238,10 +238,10 @@ static struct net_func_map {
|
||||||
void (*func)(Design*);
|
void (*func)(Design*);
|
||||||
} func_table[] = {
|
} func_table[] = {
|
||||||
{ "cprop", &cprop },
|
{ "cprop", &cprop },
|
||||||
|
{ "exposenodes", &exposenodes },
|
||||||
{ "nodangle", &nodangle },
|
{ "nodangle", &nodangle },
|
||||||
{ "synth", &synth },
|
{ "synth", &synth },
|
||||||
{ "synth2", &synth2 },
|
{ "synth2", &synth2 },
|
||||||
{ "synthsplit", &synthsplit },
|
|
||||||
{ "syn-rules", &syn_rules },
|
{ "syn-rules", &syn_rules },
|
||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
functor:synth2
|
functor:synth2
|
||||||
functor:synth
|
functor:synth
|
||||||
functor:syn-rules
|
functor:syn-rules
|
||||||
functor:synthsplit
|
|
||||||
functor:nodangle
|
functor:nodangle
|
||||||
|
functor:exposenodes
|
||||||
flag:DLL=vlog95.tgt
|
flag:DLL=vlog95.tgt
|
||||||
flag:DISABLE_CONCATZ_GENERATION=true
|
flag:DISABLE_CONCATZ_GENERATION=true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue