Spelling fixes
This commit is contained in:
parent
e6a15f233b
commit
b7f0e204cb
|
|
@ -20,7 +20,7 @@
|
||||||
// V3Tristate's Transformations:
|
// V3Tristate's Transformations:
|
||||||
//
|
//
|
||||||
// Modify the design to expand tristate logic into its
|
// Modify the design to expand tristate logic into its
|
||||||
// corresponding two state reprasentation. At the lowest levels,
|
// corresponding two state representation. At the lowest levels,
|
||||||
//
|
//
|
||||||
// In detail:
|
// In detail:
|
||||||
//
|
//
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
// logic that they may go through until they hit the module level. At
|
// logic that they may go through until they hit the module level. At
|
||||||
// the module level, all the output enable signals from what can be
|
// the module level, all the output enable signals from what can be
|
||||||
// many tristate drivers are combined together to produce a single
|
// many tristate drivers are combined together to produce a single
|
||||||
// driver and output enable. If the signal propigates up into higher
|
// driver and output enable. If the signal propagates up into higher
|
||||||
// modules, then new ports are created with for the signal with
|
// modules, then new ports are created with for the signal with
|
||||||
// suffixes __en and __out. The original port is turned from an inout
|
// suffixes __en and __out. The original port is turned from an inout
|
||||||
// to an input and the __out port carries the output driver signal and
|
// to an input and the __out port carries the output driver signal and
|
||||||
|
|
@ -252,7 +252,7 @@ public:
|
||||||
TristateVertex* vertexp = (TristateVertex*)(nodep->user5p());
|
TristateVertex* vertexp = (TristateVertex*)(nodep->user5p());
|
||||||
if (!vertexp) {
|
if (!vertexp) {
|
||||||
// Not v3errorSrc as no reason to stop the world
|
// Not v3errorSrc as no reason to stop the world
|
||||||
nodep->v3error("Unsupported tristate constuct (not in propagation graph): "<<nodep->prettyTypeName());
|
nodep->v3error("Unsupported tristate construct (not in propagation graph): "<<nodep->prettyTypeName());
|
||||||
} else {
|
} else {
|
||||||
// We don't warn if no vertexp->isTristate() as the creation process makes midling nodes that don't have it set
|
// We don't warn if no vertexp->isTristate() as the creation process makes midling nodes that don't have it set
|
||||||
vertexp->processed(true);
|
vertexp->processed(true);
|
||||||
|
|
@ -445,7 +445,7 @@ class TristateVisitor : public TristateBaseVisitor {
|
||||||
} else {
|
} else {
|
||||||
if (oldpullp->direction() != pullp->direction()) {
|
if (oldpullp->direction() != pullp->direction()) {
|
||||||
pullp->v3error("Unsupported: Conflicting pull directions.");
|
pullp->v3error("Unsupported: Conflicting pull directions.");
|
||||||
oldpullp->v3error("... Location of conflicing pull.");
|
oldpullp->v3error("... Location of conflicting pull.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1109,7 +1109,7 @@ class TristateVisitor : public TristateBaseVisitor {
|
||||||
// Simplify
|
// Simplify
|
||||||
if (inOnlyProcessing) { // Not an input that was a converted tristate
|
if (inOnlyProcessing) { // Not an input that was a converted tristate
|
||||||
// The pin is an input, but we need an output
|
// The pin is an input, but we need an output
|
||||||
// The if() above is neded because the Visitor is simple, it will flip ArraySel's and such,
|
// The if() above is needed because the Visitor is simple, it will flip ArraySel's and such,
|
||||||
// but if the pin is an input the earlier reconnectSimple made it a VarRef without any ArraySel, etc
|
// but if the pin is an input the earlier reconnectSimple made it a VarRef without any ArraySel, etc
|
||||||
TristatePinVisitor visitor (outexprp, m_tgraph, true);
|
TristatePinVisitor visitor (outexprp, m_tgraph, true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ compile (
|
||||||
fails=>$Self->{v3},
|
fails=>$Self->{v3},
|
||||||
expect=>
|
expect=>
|
||||||
'%Error: t/t_tri_pull2_bad.v:\d+: Unsupported: Conflicting pull directions.
|
'%Error: t/t_tri_pull2_bad.v:\d+: Unsupported: Conflicting pull directions.
|
||||||
%Error: t/t_tri_pull2_bad.v:\d+: ... Location of conflicing pull.
|
%Error: t/t_tri_pull2_bad.v:\d+: ... Location of conflicting pull.
|
||||||
%Error: Exiting due to',
|
%Error: Exiting due to',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ compile (
|
||||||
fails=>$Self->{v3},
|
fails=>$Self->{v3},
|
||||||
expect=>
|
expect=>
|
||||||
'%Error: t/t_tri_pull_bad.v:\d+: Unsupported: Conflicting pull directions.
|
'%Error: t/t_tri_pull_bad.v:\d+: Unsupported: Conflicting pull directions.
|
||||||
%Error: t/t_tri_pull_bad.v:\d+: ... Location of conflicing pull.
|
%Error: t/t_tri_pull_bad.v:\d+: ... Location of conflicting pull.
|
||||||
%Error: Exiting due to',
|
%Error: Exiting due to',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue