URL
https://opencores.org/ocsvn/ft816float/ft816float/trunk
Subversion Repositories ft816float
[/] [ft816float/] [trunk/] [rtl/] [verilog2/] [fpRound32combo.sv] - Rev 86
Go to most recent revision | Compare with Previous | Blame | View Log
// ============================================================================// __// \\__/ o\ (C) 2006-2022 Robert Finch, Waterloo// \ __ / All rights reserved.// \/_// robfinch<remove>@finitron.ca// ||//// fpRound32combo.sv// - floating point rounding unit// - IEEE 754 representation// - combinational logic only////// BSD 3-Clause License// Redistribution and use in source and binary forms, with or without// modification, are permitted provided that the following conditions are met://// 1. Redistributions of source code must retain the above copyright notice, this// list of conditions and the following disclaimer.//// 2. Redistributions in binary form must reproduce the above copyright notice,// this list of conditions and the following disclaimer in the documentation// and/or other materials provided with the distribution.//// 3. Neither the name of the copyright holder nor the names of its// contributors may be used to endorse or promote products derived from// this software without specific prior written permission.//// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.//// ============================================================================import fp32Pkg::*;module fpRound32combo(rm, i, o);input [2:0] rm; // rounding modeinput FP32N i; // intermediate format inputoutput FP32 o; // rounded output//------------------------------------------------------------// variableswire so;wire [fp32Pkg::EMSB:0] xo;reg [fp32Pkg::FMSB:0] mo;reg [fp32Pkg::EMSB:0] xo1;reg [fp32Pkg::FMSB+3:0] mo1;wire xInf = &i[fp32Pkg::MSB+2:fp32Pkg::FMSB+4];wire so0 = i[fp32Pkg::MSB+3];assign o.sign = so;assign o.exp = xo;assign o.sig = mo;wire l = i[3];wire g = i[2]; // guard bit: always the same bit for all operationswire r = i[1]; // rounding bitwire s = i[0]; // sticky bitreg rnd;//------------------------------------------------------------// Clock #1// - determine round amount (add 1 or 0)//------------------------------------------------------------always_combxo1 <= i[fp32Pkg::MSB+2:fp32Pkg::FMSB+4];always_combmo1 <= i[fp32Pkg::FMSB+3:0];wire tie = g & ~(r|s);// Compute the round bit// Infinities and NaNs are not rounded!always_combcasez ({xInf,rm})4'b0000: rnd <= (g & (r|s)) | (l & tie); // round to nearest ties to even4'b0001: rnd <= 1'd0; // round to zero (truncate)4'b0010: rnd <= g & !so0; // round towards +infinity4'b0011: rnd <= g & so0; // round towards -infinity4'b0100: rnd <= (g & (r|s)) | tie; // round to nearest ties away from zero4'b1???: rnd <= 1'd0; // no rounding if exponent indicates infinite or NaNdefault: rnd <= 0;endcase//------------------------------------------------------------// Clock #2// round the number, check for carry// note: inf. exponent checked above (if the exponent was infinite already, then no rounding occurs as rnd = 0)// note: exponent increments if there is a carry (can only increment to infinity)//------------------------------------------------------------reg [fp32Pkg::MSB:0] rounded2;reg carry2;reg rnd2;reg dn2;wire [fp32Pkg::EMSB:0] xo2;wire [fp32Pkg::MSB:0] rounded1 = {xo1,mo1[fp32Pkg::FMSB+3:3],1'b0} + {rnd,1'b0}; // Add onto LSB, GRS=0always_combrounded2 <= rounded1;always_combcarry2 <= mo1[fp32Pkg::FMSB+3] & !rounded1[fp32Pkg::FMSB+1];always_combrnd2 <= rnd;always_combdn2 <= !(|xo1);assign xo2 = rounded2[fp32Pkg::MSB:fp32Pkg::FMSB+2];//------------------------------------------------------------// Clock #3// - shift mantissa if required.//------------------------------------------------------------assign so = i[fp32Pkg::MSB+3];assign xo = xo2;always_combcasez({rnd2,&xo2,carry2,dn2})4'b0??0: mo <= mo1[fp32Pkg::FMSB+2:2]; // not rounding, not denormalized, => hide MSB4'b0??1: mo <= mo1[fp32Pkg::FMSB+3:3]; // not rounding, denormalized4'b1000: mo <= rounded2[fp32Pkg::FMSB :0]; // exponent didn't change, number was normalized, => hide MSB,4'b1001: mo <= rounded2[fp32Pkg::FMSB+1:1]; // exponent didn't change, but number was denormalized, => retain MSB4'b1010: mo <= rounded2[fp32Pkg::FMSB+1:1]; // exponent incremented (new MSB generated), number was normalized, => hide 'extra (FMSB+2)' MSB4'b1011: mo <= rounded2[fp32Pkg::FMSB+1:1]; // exponent incremented (new MSB generated), number was denormalized, number became normalized, => hide 'extra (FMSB+2)' MSB4'b11??: mo <= 1'd0; // number became infinite, no need to check carry etc., rnd would be zero if input was NaN or infiniteendcaseendmodule
Go to most recent revision | Compare with Previous | Blame | View Log
