2021-04-04 18:09:13 +00:00
|
|
|
//performs the fsgnj/fsgnjn/fsgnjx RISCV instructions
|
|
|
|
|
2021-07-14 21:56:49 +00:00
|
|
|
module fsgn (
|
2021-07-24 18:59:57 +00:00
|
|
|
input logic XSgnE, YSgnE, // X and Y sign bits
|
|
|
|
input logic [63:0] FSrcXE, // X
|
|
|
|
input logic XExpMaxE, // max possible exponent (all ones)
|
|
|
|
input logic FmtE, // precision 1 = double 0 = single
|
|
|
|
input logic [1:0] SgnOpCodeE, // operation control
|
|
|
|
output logic [63:0] SgnResE, // result
|
|
|
|
output logic SgnNVE // invalid flag
|
|
|
|
);
|
2021-04-04 18:09:13 +00:00
|
|
|
|
2021-07-14 21:56:49 +00:00
|
|
|
logic ResSgn;
|
2021-04-04 18:09:13 +00:00
|
|
|
|
|
|
|
//op code designation:
|
|
|
|
//
|
2021-07-14 21:56:49 +00:00
|
|
|
//00 - fsgnj - directly copy over sign value of FSrcYE
|
|
|
|
//01 - fsgnjn - negate sign value of FSrcYE
|
|
|
|
//10 - fsgnjx - XOR sign values of FSrcXE & FSrcYE
|
2021-04-04 18:09:13 +00:00
|
|
|
//
|
|
|
|
|
2021-07-24 18:59:57 +00:00
|
|
|
// calculate the result's sign
|
2021-07-14 21:56:49 +00:00
|
|
|
assign ResSgn = SgnOpCodeE[1] ? (XSgnE ^ YSgnE) : (YSgnE ^ SgnOpCodeE[0]);
|
2021-07-24 18:59:57 +00:00
|
|
|
|
|
|
|
// format final result based on precision
|
|
|
|
// - uses NaN-blocking format
|
|
|
|
// - if there are any unsused bits the most significant bits are filled with 1s
|
2021-07-22 16:30:46 +00:00
|
|
|
assign SgnResE = FmtE ? {ResSgn, FSrcXE[62:0]} : {FSrcXE[63:32], ResSgn, FSrcXE[30:0]};
|
2021-04-04 18:09:13 +00:00
|
|
|
|
|
|
|
//If the exponent is all ones, then the value is either Inf or NaN,
|
|
|
|
//both of which will produce a QNaN/SNaN value of some sort. This will
|
|
|
|
//set the invalid flag high.
|
|
|
|
|
|
|
|
//the only flag that can occur during this operation is invalid
|
|
|
|
//due to changing sign on already existing NaN
|
2021-07-14 21:56:49 +00:00
|
|
|
assign SgnNVE = XExpMaxE & SgnResE[63];
|
2021-04-04 18:09:13 +00:00
|
|
|
|
|
|
|
endmodule
|