設(shè)計(jì)需求
設(shè)計(jì)一個(gè)32bit浮點(diǎn)的加法器,out = A + B,假設(shè)AB均為無符號(hào)位,或者換個(gè)說法都為正數(shù)。
clk為系統(tǒng)時(shí)鐘;rst_n為系統(tǒng)復(fù)位,低有效;en信號(hào)控制數(shù)據(jù)輸入;busy指示模塊工作狀態(tài),busy拉高時(shí),輸入無效;aIn和bIn是數(shù)據(jù)輸入,out_vld,指示輸出數(shù)據(jù)有效。
設(shè)計(jì)的信號(hào)列表如下:
module float_adder(
input clk,
input rst_n,
input en,
input [31:0] aIn,
input [31:0] bIn,
output reg busy,
output reg out_vld,
output reg [31:0] out
);
32bit的浮點(diǎn)格式
EE標(biāo)準(zhǔn)754規(guī)定了三種浮點(diǎn)數(shù)格式:單精度、雙精度、擴(kuò)展精度。前兩者正好對(duì)應(yīng)C語言里頭的float、double或者FORTRAN里頭的real、double精度類型。本文設(shè)計(jì)實(shí)現(xiàn)的為單精度。
單精度格式
單精度:N共32位,其中S占1位,E占8位,M占23位。
雙精度格式
雙精度:N共64位,其中S占1位,E占11位,M占52位。
浮點(diǎn)數(shù)的加法過程
運(yùn)算過程:對(duì)階、尾數(shù)求和、規(guī)格化、舍入、溢出判斷
對(duì)階:
和定點(diǎn)數(shù)不相同的是,浮點(diǎn)數(shù)的指數(shù)量級(jí)不一定是一樣的,所以這也就意味著,尾數(shù)直接進(jìn)行加法運(yùn)算時(shí)會(huì)存在問題,也就需要首先對(duì)階數(shù)進(jìn)行處理。該過程有點(diǎn)像科學(xué)計(jì)數(shù)法的加法處理,把科學(xué)計(jì)數(shù)法的指數(shù)化為一致,求出來指數(shù)相差多少,然后移位處理后再進(jìn)行加法減法。所以這里處理也要先求階差。
如果把階碼大的向階碼小的看齊,就要把階碼大的數(shù)的尾數(shù)部分左移,階碼減小。這個(gè)操作有可能在移位過程中把尾數(shù)的高位部分移掉,這樣就引發(fā)了數(shù)據(jù)的錯(cuò)誤,所以,尾數(shù)左移在計(jì)算機(jī)運(yùn)算中不可取。
如果把階碼小的向階碼大的看齊,在移位過程中如果發(fā)生數(shù)據(jù)丟失,也是最右邊的數(shù)據(jù)位發(fā)生丟失,最右邊的數(shù)據(jù)位丟失,只會(huì)影響數(shù)據(jù)的精度,不會(huì)影響數(shù)據(jù)的大小。
尾數(shù)求和 :
這里就是常規(guī)的補(bǔ)碼加法。
規(guī)格化:
右規(guī)(尾數(shù)的絕對(duì)值太大時(shí),右規(guī)) 尾數(shù)右移一位,階碼加1。 當(dāng)尾數(shù)溢出( >1 )時(shí),需要右規(guī) 。是否溢出,可以通過兩位的符號(hào)位得出:即尾數(shù)出現(xiàn)01.xx…xx或10.xx…xx(兩位符號(hào)位不同)
提高浮點(diǎn)數(shù)的表示精度,這里設(shè)計(jì)考慮比較簡單,我只考慮了同號(hào)數(shù)據(jù)相加的情況,所以這里只設(shè)計(jì)了右規(guī)的情況,不考慮符號(hào)位。
舍入判斷:
這里直接用截?cái)嗵幚淼姆绞?,針?duì)數(shù)據(jù)相加上溢的情況,規(guī)定了運(yùn)算后上溢后將數(shù)據(jù)規(guī)定為最大值。
實(shí)現(xiàn)代碼
module float_adder(
input clk,
input rst_n,
input en,
input [31:0] aIn,
input [31:0] bIn,
output reg busy,
output reg out_vld,
output reg [31:0] out
);
//運(yùn)算過程:對(duì)階、尾數(shù)求和、規(guī)格化、舍入、溢出判斷
//分離階數(shù)、尾數(shù)
wire signal_bit = aIn[31];
wire [7:0] pow_a = aIn[30:23];
wire [7:0] pow_b = bIn[30:23];
wire [22:0] val_a = aIn[22:0];
wire [22:0] val_b = bIn[22:0];
//找到輸入指數(shù)階數(shù)較大,和階數(shù)差
//對(duì)階:在計(jì)算機(jī)中,采用小階向大階看齊的方法,實(shí)現(xiàn)對(duì)階。即右移
reg [22:0] pow_max ;
reg [23:0] pow_dif ;
reg [22:0] val_max ;
reg [22:0] val_min ;
reg en_dly0;
always @(posedge clk or negedge rst_n) begin
if(rst_n==0)begin
pow_max <= 'd0;
val_max <= 'd0;
val_min <= 'd0;
pow_dif <= 'd0;
en_dly0 <= 'd0;
end
else if( en == 1 && busy == 0)begin
if(pow_a >= pow_b)begin
pow_max <= pow_a;
val_max <= val_a;
val_min <= val_b;
en_dly0 <= 'd1;
if ( pow_a - pow_b > 'd23) begin
pow_dif <= 'd23;
end
else begin
pow_dif <= pow_a - pow_b;
end
end
else begin
pow_max <= pow_b;
val_max <= val_b;
val_min <= val_a;
en_dly0 <= 'd1;
if ( pow_b - pow_a > 'd23) begin
pow_dif <= 'd23;
end
else begin
pow_dif <= pow_b - pow_a;
end
end
end
else begin
pow_max <= pow_max;
val_max <= val_max;
val_min <= val_min;
pow_dif <= pow_dif;
en_dly0 <= 'd0;
end
end
//移位忙指示信號(hào)
reg shift_busy;
reg [4:0] shift_cnt;
always @(posedge clk or negedge rst_n) begin
if (rst_n==0) begin
shift_busy<='d0;
end
else if(en_dly0 == 1 )begin
shift_busy <='d1;
end
else if(shift_cnt == pow_dif)begin
shift_busy <= 0;
end
end
//移位計(jì)數(shù)
always @(posedge clk or negedge rst_n) begin
if(rst_n == 0)begin
shift_cnt <= 'd0;
end
else if (shift_busy ==1) begin
if (shift_cnt == pow_dif) begin
shift_cnt <= shift_cnt;
end
else begin
shift_cnt <= shift_cnt + 1'b1;
end
end
else begin
shift_cnt <= 'd0;
end
end