mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Fix width extension on mis-width ports, bug918.
This commit is contained in:
parent
9542783a7e
commit
5a747bad7d
2
Changes
2
Changes
@ -17,6 +17,8 @@ indicates the contributor was also the author of the fix; Thanks!
|
|||||||
|
|
||||||
**** Fix part-select in constant function, bug916. [Andrew Bardsley]
|
**** Fix part-select in constant function, bug916. [Andrew Bardsley]
|
||||||
|
|
||||||
|
**** Fix width extension on mis-width ports, bug918. [Patrick Maupin]
|
||||||
|
|
||||||
|
|
||||||
* Verilator 3.872 2015-04-05
|
* Verilator 3.872 2015-04-05
|
||||||
|
|
||||||
|
@ -256,10 +256,12 @@ private:
|
|||||||
rhsp = (rhsp->isSigned()
|
rhsp = (rhsp->isSigned()
|
||||||
? (new AstExtendS(fl, rhsp))->castNode()
|
? (new AstExtendS(fl, rhsp))->castNode()
|
||||||
: (new AstExtend (fl, rhsp))->castNode());
|
: (new AstExtend (fl, rhsp))->castNode());
|
||||||
|
rhsp->dtypeFrom(cmpWidthp); // Need proper widthMin, which may differ from AstSel created above
|
||||||
} else if (cmpWidthp->width() < rhsp->width()) {
|
} else if (cmpWidthp->width() < rhsp->width()) {
|
||||||
rhsp = new AstSel (fl, rhsp, 0, cmpWidthp->width());
|
rhsp = new AstSel (fl, rhsp, 0, cmpWidthp->width());
|
||||||
|
rhsp->dtypeFrom(cmpWidthp); // Need proper widthMin, which may differ from AstSel created above
|
||||||
}
|
}
|
||||||
rhsp->dtypeFrom(cmpWidthp); // Need proper widthMin, which may differ from AstSel created above
|
// else don't change dtype, as might be e.g. array of something
|
||||||
return rhsp;
|
return rhsp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -312,9 +314,11 @@ public:
|
|||||||
} else if (pinVarp->isOutput()) {
|
} else if (pinVarp->isOutput()) {
|
||||||
// See also V3Inst
|
// See also V3Inst
|
||||||
AstNode* rhsp = new AstVarRef(pinp->fileline(), newvarp, false);
|
AstNode* rhsp = new AstVarRef(pinp->fileline(), newvarp, false);
|
||||||
|
UINFO(5,"pinRecon width "<<pinVarp->width()<<" >? "<<rhsp->width()<<" >? "<<pinexprp->width()<<endl);
|
||||||
rhsp = extendOrSel (pinp->fileline(), rhsp, pinVarp);
|
rhsp = extendOrSel (pinp->fileline(), rhsp, pinVarp);
|
||||||
assignp = new AstAssignW (pinp->fileline(), pinexprp, rhsp);
|
pinp->exprp(new AstVarRef (newvarp->fileline(), newvarp, true));
|
||||||
pinp->exprp(new AstVarRef (pinexprp->fileline(), newvarp, true));
|
AstNode* rhsSelp = extendOrSel (pinp->fileline(), rhsp, pinexprp);
|
||||||
|
assignp = new AstAssignW (pinp->fileline(), pinexprp, rhsSelp);
|
||||||
} else {
|
} else {
|
||||||
// V3 width should have range/extended to make the widths correct
|
// V3 width should have range/extended to make the widths correct
|
||||||
assignp = new AstAssignW (pinp->fileline(),
|
assignp = new AstAssignW (pinp->fileline(),
|
||||||
|
18
test_regress/t/t_inst_implicit.pl
Executable file
18
test_regress/t/t_inst_implicit.pl
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||||||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||||
|
#
|
||||||
|
# Copyright 2003 by Wilson Snyder. This program is free software; you can
|
||||||
|
# redistribute it and/or modify it under the terms of either the GNU
|
||||||
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
||||||
|
# Version 2.0.
|
||||||
|
|
||||||
|
compile (
|
||||||
|
);
|
||||||
|
|
||||||
|
execute (
|
||||||
|
check_finished=>1,
|
||||||
|
);
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
50
test_regress/t/t_inst_implicit.v
Normal file
50
test_regress/t/t_inst_implicit.v
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
// DESCRIPTION:tor:ilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||||||
|
// without warranty, 2015 by Wilson Snyder.
|
||||||
|
|
||||||
|
module t (/*AUTOARG*/
|
||||||
|
// Inputs
|
||||||
|
clk
|
||||||
|
);
|
||||||
|
input clk;
|
||||||
|
|
||||||
|
wire [31:0] o;
|
||||||
|
wire [31:0] oe;
|
||||||
|
|
||||||
|
Test test (/*AUTOINST*/
|
||||||
|
// Outputs
|
||||||
|
.o (o[31:0]),
|
||||||
|
.oe (oe[31:0]));
|
||||||
|
|
||||||
|
// Test loop
|
||||||
|
always @ (posedge clk) begin
|
||||||
|
if (o !== 32'h00000001) $stop;
|
||||||
|
if (oe !== 32'h00000001) $stop;
|
||||||
|
$write("*-* All Finished *-*\n");
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module subimp(o,oe);
|
||||||
|
output [31:0] o;
|
||||||
|
assign o = 32'h12345679;
|
||||||
|
output [31:0] oe;
|
||||||
|
assign oe = 32'hab345679;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module Test(o,oe);
|
||||||
|
output [31:0] o;
|
||||||
|
output [31:0] oe;
|
||||||
|
wire [31:0] xe;
|
||||||
|
assign xe[31:1] = 0;
|
||||||
|
// verilator lint_off IMPLICIT
|
||||||
|
// verilator lint_off WIDTH
|
||||||
|
subimp subimp(x, // x is implicit and one bit
|
||||||
|
xe[0]); // xe explicit one bit
|
||||||
|
assign o = x;
|
||||||
|
assign oe = xe;
|
||||||
|
// verilator lint_on WIDTH
|
||||||
|
// verilator lint_on IMPLICIT
|
||||||
|
endmodule
|
@ -29,12 +29,8 @@ module t (/*AUTOARG*/
|
|||||||
`endif
|
`endif
|
||||||
if (sgn_wide[2:0] != 3'sh7) $stop;
|
if (sgn_wide[2:0] != 3'sh7) $stop;
|
||||||
if (unsgn_wide[2:0] != 3'h7) $stop;
|
if (unsgn_wide[2:0] != 3'h7) $stop;
|
||||||
if (sgn_wide !== 8'sh7) $stop;
|
|
||||||
// Simulators differ here.
|
// Simulators differ here.
|
||||||
if (sgn_wide !== 8'sbzzzzz111 // z-extension - NC
|
if (sgn_wide !== 8'sbzzzzz111 // z-extension - NC
|
||||||
`ifdef VERILATOR
|
|
||||||
&& sgn_wide !== 8'sb00000111 // 0-extension - verilator as it doesn't have Z
|
|
||||||
`endif
|
|
||||||
&& sgn_wide !== 8'sb11111111) $stop; // sign extension - VCS
|
&& sgn_wide !== 8'sb11111111) $stop; // sign extension - VCS
|
||||||
if (unsgn_wide !== 8'sbzzzzz111
|
if (unsgn_wide !== 8'sbzzzzz111
|
||||||
&& unsgn_wide!== 8'sb00000111) $stop;
|
&& unsgn_wide!== 8'sb00000111) $stop;
|
||||||
|
Loading…
Reference in New Issue
Block a user