mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Added negative edge triggered flop to save inputs; do absolute value in first cycle for signed division
This commit is contained in:
parent
d4437b842a
commit
d532bde931
@ -1,38 +0,0 @@
|
|||||||
///////////////////////////////////////////
|
|
||||||
// neg.sv
|
|
||||||
//
|
|
||||||
// Written: David_Harris@hmc.edu 28 September 2021
|
|
||||||
// Modified:
|
|
||||||
//
|
|
||||||
// Purpose: 2's complement negator
|
|
||||||
//
|
|
||||||
// A component of the Wally configurable RISC-V project.
|
|
||||||
//
|
|
||||||
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
|
||||||
//
|
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
|
|
||||||
// files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
|
|
||||||
// modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
|
|
||||||
// is furnished to do so, subject to the following conditions:
|
|
||||||
//
|
|
||||||
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
//
|
|
||||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
||||||
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
||||||
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
|
||||||
// OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
///////////////////////////////////////////
|
|
||||||
|
|
||||||
`include "wally-config.vh"
|
|
||||||
|
|
||||||
module abs #(parameter WIDTH = 8) (
|
|
||||||
input logic [WIDTH-1:0] a,
|
|
||||||
output logic [WIDTH-1:0] y);
|
|
||||||
|
|
||||||
logic [WIDTH-1:0] minusa;
|
|
||||||
|
|
||||||
// select -a if sign bit of a is 1
|
|
||||||
neg #(WIDTH) neg(a, minusa);
|
|
||||||
mux2 #(WIDTH) absmux(a, minusa, a[WIDTH-1], y);
|
|
||||||
endmodule
|
|
||||||
|
|
@ -36,7 +36,7 @@ module intdivrestoring (
|
|||||||
output logic [`XLEN-1:0] Q, REM
|
output logic [`XLEN-1:0] Q, REM
|
||||||
);
|
);
|
||||||
|
|
||||||
logic [`XLEN-1:0] W, W2, Win, Wshift, Wprime, Wn, Wnn, Wnext, XQ, XQin, XQshift, XQn, XQnn, XQnext, Dsaved, Din, Dabs, D2, Xabs, X2, Xsaved, Xinit, DAbsB, W1, XQ1;
|
logic [`XLEN-1:0] W, W2, Win, Wshift, Wprime, Wn, Wnn, Wnext, XQ, XQin, XQshift, XQn, XQnn, XQnext, Dsaved, Din, Dabs, D2, Dn, Xn, Xabs, X2, Xsaved, Xinit, DAbsB, W1, XQ1;
|
||||||
logic qi, qib; // curent quotient bit
|
logic qi, qib; // curent quotient bit
|
||||||
localparam STEPBITS = $clog2(`XLEN)-1;
|
localparam STEPBITS = $clog2(`XLEN)-1;
|
||||||
logic [STEPBITS:0] step;
|
logic [STEPBITS:0] step;
|
||||||
@ -45,22 +45,28 @@ module intdivrestoring (
|
|||||||
logic SignedDivideM;
|
logic SignedDivideM;
|
||||||
// *** add pipe stages to everything
|
// *** add pipe stages to everything
|
||||||
|
|
||||||
// Setup for signed division
|
// save inputs on the negative edge of the execute clock.
|
||||||
abs #(`XLEN) absd(D, Dabs);
|
// This is unusual practice, but the inputs are not guaranteed to be stable due to some hazard and forwarding logic.
|
||||||
mux2 #(`XLEN) dabsmux(D, Dabs, SignedDivideE, D2);
|
// Saving the inputs is the most hardware-efficient way to fix the issue.
|
||||||
flopen #(`XLEN) dsavereg(clk, StartDivideE, D2, Dsaved);
|
flopen #(`XLEN) dsavereg(~clk, StartDivideE, D, Dsaved);
|
||||||
mux2 #(`XLEN) dfirstmux(Dsaved, D, StartDivideE, Din);
|
flopen #(`XLEN) xsavereg(~clk, StartDivideE, X, Xsaved);
|
||||||
|
assign SignD = Dsaved[`XLEN-1]; // *** do some of these need pipelining for consecutive divides?
|
||||||
|
assign SignX = Xsaved[`XLEN-1];
|
||||||
|
assign div0 = (Dsaved == 0); // *** eventually replace with just the negedge saved D
|
||||||
|
|
||||||
abs #(`XLEN) absx(X, Xabs);
|
// Setup for signed division
|
||||||
mux2 #(`XLEN) xabsmux(X, Xabs, SignedDivideE & ~div0, X2); // need original X as remainder if doing divide by 0
|
neg #(`XLEN) negd(Dsaved, Dn);
|
||||||
flopen #(`XLEN) xsavereg(clk, StartDivideE, X2, Xsaved);
|
mux2 #(`XLEN) dabsmux(Dsaved, Dn, SignedDivideE & SignD, Din); // take absolute value for signed operations
|
||||||
mux2 #(`XLEN) xfirstmux(Xsaved, X, StartDivideE, Xinit);
|
assign DAbsB = ~Din;
|
||||||
|
// mux2 #(`XLEN) dfirstmux(Dsaved, D, StartDivideE, Din);
|
||||||
|
|
||||||
|
neg #(`XLEN) negx(Xsaved, Xn);
|
||||||
|
mux2 #(`XLEN) xabsmux(Xsaved, Xn, SignedDivideE & SignX, Xinit); // need original X as remainder if doing divide by 0
|
||||||
|
// mux2 #(`XLEN) xfirstmux(Xsaved, X, StartDivideE, Xinit);
|
||||||
|
|
||||||
mux2 #(`XLEN) wmux(W, {`XLEN{1'b0}}, init, Win);
|
mux2 #(`XLEN) wmux(W, {`XLEN{1'b0}}, init, Win);
|
||||||
mux2 #(`XLEN) xmux(XQ, Xinit, init, XQin);
|
mux2 #(`XLEN) xmux(XQ, Xinit, init, XQin);
|
||||||
|
|
||||||
assign DAbsB = ~Din;
|
|
||||||
assign div0 = (Din == 0); // *** eventually replace with just the negedge saved D
|
|
||||||
|
|
||||||
// *** parameterize steps per cycle
|
// *** parameterize steps per cycle
|
||||||
intdivrestoringstep step1(Win, XQin, DAbsB, W1, XQ1);
|
intdivrestoringstep step1(Win, XQin, DAbsB, W1, XQ1);
|
||||||
@ -71,6 +77,8 @@ module intdivrestoring (
|
|||||||
|
|
||||||
// outputs
|
// outputs
|
||||||
// On final setp of signed operations, negate outputs as needed
|
// On final setp of signed operations, negate outputs as needed
|
||||||
|
//flopen #(2) signflops(clk, StartDivideE, {D[`XLEN-1], X[`XLEN-1]}, {SignD, SignX}); // *** shouldn't be necessary when capturing inputs properly
|
||||||
|
|
||||||
assign NegW = SignedDivideM & SignX;
|
assign NegW = SignedDivideM & SignX;
|
||||||
assign NegQ = SignedDivideM & (SignX ^ SignD);
|
assign NegQ = SignedDivideM & (SignX ^ SignD);
|
||||||
neg #(`XLEN) wneg(W, Wn);
|
neg #(`XLEN) wneg(W, Wn);
|
||||||
@ -85,9 +93,9 @@ module intdivrestoring (
|
|||||||
end else if (StartDivideE & ~StallM) begin
|
end else if (StartDivideE & ~StallM) begin
|
||||||
if (div0) done = 1;
|
if (div0) done = 1;
|
||||||
else begin
|
else begin
|
||||||
BusyE = 1; step = 1;
|
BusyE = 1; step = 0;
|
||||||
end
|
end
|
||||||
end else if (BusyE & ~done & ~(startd & SignedDivideE)) begin // pause one cycle at beginning of signed operations for absolute value
|
end else if (BusyE & ~done) begin // pause one cycle at beginning of signed operations for absolute value
|
||||||
step = step + 1;
|
step = step + 1;
|
||||||
if (step[STEPBITS]) begin
|
if (step[STEPBITS]) begin
|
||||||
step = 0;
|
step = 0;
|
||||||
@ -98,14 +106,14 @@ module intdivrestoring (
|
|||||||
done = 0;
|
done = 0;
|
||||||
BusyE = 0;
|
BusyE = 0;
|
||||||
end
|
end
|
||||||
|
assign init = (step == 0);
|
||||||
|
|
||||||
// initialize on the start cycle for unsigned operations, or one cycle later for signed operations (giving time for abs)
|
// initialize on the start cycle for unsigned operations, or one cycle later for signed operations (giving time for abs)
|
||||||
flop #(1) initflop(clk, StartDivideE, startd);
|
// flop #(1) initflop(clk, StartDivideE, startd);
|
||||||
mux2 #(1) initmux(StartDivideE, startd, SignedDivideE, init);
|
// mux2 #(1) initmux(StartDivideE, startd, SignedDivideE, init);
|
||||||
|
|
||||||
// save signs of original inputs
|
// save signs of original inputs
|
||||||
flopenrc #(1) SignedDivideMReg(clk, reset, FlushM, ~StallM, SignedDivideE, SignedDivideM);
|
flopenrc #(1) SignedDivideMReg(clk, reset, FlushM, ~StallM, SignedDivideE, SignedDivideM);
|
||||||
flopen #(2) signflops(clk, StartDivideE, {D[`XLEN-1], X[`XLEN-1]}, {SignD, SignX}); // *** shouldn't be necessary when capturing inputs properly
|
|
||||||
|
|
||||||
endmodule // muldiv
|
endmodule // muldiv
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user