1
0

add config option to trade mul/div area for speed

This commit is contained in:
Andrew Waterman 2013-01-06 03:47:17 -08:00
parent ce9f4881d2
commit 78868f6075
2 changed files with 4 additions and 2 deletions

View File

@ -159,7 +159,8 @@ class Datapath(implicit conf: RocketConfiguration) extends Component
alu.io.in1 := ex_rs1.toUFix
// multiplier and divider
val div = new MulDiv(mulUnroll = 4, earlyOut = true)
val div = new MulDiv(mulUnroll = if (conf.fastMulDiv) 8 else 1,
earlyOut = conf.fastMulDiv)
div.io.req.valid := io.ctrl.div_mul_val
div.io.req.bits.dw := ex_reg_ctrl_fn_dw
div.io.req.bits.fn := ex_reg_ctrl_fn_alu

View File

@ -10,7 +10,8 @@ case class RocketConfiguration(ntiles: Int, co: CoherencePolicyWithUncached,
icache: ICacheConfig, dcache: DCacheConfig,
fpu: Boolean, vec: Boolean,
fastLoadWord: Boolean = true,
fastLoadByte: Boolean = false)
fastLoadByte: Boolean = false,
fastMulDiv: Boolean = true)
{
val dcacheReqTagBits = 9 // enforce compliance with require()
val xprlen = 64