1package xiangshan.backend 2 3import org.chipsalliance.cde.config.Parameters 4import chisel3._ 5import chisel3.util.BitPat.bitPatToUInt 6import chisel3.util._ 7import utils.BundleUtils.makeValid 8import utils.OptionWrapper 9import xiangshan._ 10import xiangshan.backend.datapath.DataConfig._ 11import xiangshan.backend.datapath.DataSource 12import xiangshan.backend.datapath.WbConfig.PregWB 13import xiangshan.backend.decode.{ImmUnion, XDecode} 14import xiangshan.backend.exu.ExeUnitParams 15import xiangshan.backend.fu.FuType 16import xiangshan.backend.fu.fpu.Bundles.Frm 17import xiangshan.backend.fu.vector.Bundles._ 18import xiangshan.backend.issue.{IssueBlockParams, IssueQueueDeqRespBundle, IssueQueueJumpBundle, SchedulerType} 19import xiangshan.backend.issue.EntryBundles._ 20import xiangshan.backend.regfile.{RfReadPortWithConfig, RfWritePortWithConfig} 21import xiangshan.backend.rob.RobPtr 22import xiangshan.frontend._ 23import xiangshan.mem.{LqPtr, SqPtr} 24 25object Bundles { 26 /** 27 * Connect Same Name Port like bundleSource := bundleSinkBudle. 28 * 29 * There is no limit to the number of ports on both sides. 30 * 31 * Don't forget to connect the remaining ports! 32 */ 33 def connectSamePort (bundleSource: Bundle, bundleSink: Bundle):Unit = { 34 bundleSource.elements.foreach { case (name, data) => 35 if (bundleSink.elements.contains(name)) 36 data := bundleSink.elements(name) 37 } 38 } 39 // frontend -> backend 40 class StaticInst(implicit p: Parameters) extends XSBundle { 41 val instr = UInt(32.W) 42 val pc = UInt(VAddrBits.W) 43 val foldpc = UInt(MemPredPCWidth.W) 44 val exceptionVec = ExceptionVec() 45 val trigger = new TriggerCf 46 val preDecodeInfo = new PreDecodeInfo 47 val pred_taken = Bool() 48 val crossPageIPFFix = Bool() 49 val ftqPtr = new FtqPtr 50 val ftqOffset = UInt(log2Up(PredictWidth).W) 51 52 def connectCtrlFlow(source: CtrlFlow): Unit = { 53 this.instr := source.instr 54 this.pc := source.pc 55 this.foldpc := source.foldpc 56 this.exceptionVec := source.exceptionVec 57 this.trigger := source.trigger 58 this.preDecodeInfo := source.pd 59 this.pred_taken := source.pred_taken 60 this.crossPageIPFFix := source.crossPageIPFFix 61 this.ftqPtr := source.ftqPtr 62 this.ftqOffset := source.ftqOffset 63 } 64 } 65 66 // StaticInst --[Decode]--> DecodedInst 67 class DecodedInst(implicit p: Parameters) extends XSBundle { 68 def numSrc = backendParams.numSrc 69 // passed from StaticInst 70 val instr = UInt(32.W) 71 val pc = UInt(VAddrBits.W) 72 val foldpc = UInt(MemPredPCWidth.W) 73 val exceptionVec = ExceptionVec() 74 val trigger = new TriggerCf 75 val preDecodeInfo = new PreDecodeInfo 76 val pred_taken = Bool() 77 val crossPageIPFFix = Bool() 78 val ftqPtr = new FtqPtr 79 val ftqOffset = UInt(log2Up(PredictWidth).W) 80 // decoded 81 val srcType = Vec(numSrc, SrcType()) 82 val lsrc = Vec(numSrc, UInt(6.W)) 83 val ldest = UInt(6.W) 84 val fuType = FuType() 85 val fuOpType = FuOpType() 86 val rfWen = Bool() 87 val fpWen = Bool() 88 val vecWen = Bool() 89 val isXSTrap = Bool() 90 val waitForward = Bool() // no speculate execution 91 val blockBackward = Bool() 92 val flushPipe = Bool() // This inst will flush all the pipe when commit, like exception but can commit 93 val canRobCompress = Bool() 94 val selImm = SelImm() 95 val imm = UInt(ImmUnion.maxLen.W) 96 val fpu = new FPUCtrlSignals 97 val vpu = new VPUCtrlSignals 98 val vlsInstr = Bool() 99 val wfflags = Bool() 100 val isMove = Bool() 101 val uopIdx = UopIdx() 102 val uopSplitType = UopSplitType() 103 val isVset = Bool() 104 val firstUop = Bool() 105 val lastUop = Bool() 106 val numUops = UInt(log2Up(MaxUopSize).W) // rob need this 107 val numWB = UInt(log2Up(MaxUopSize).W) // rob need this 108 val commitType = CommitType() // Todo: remove it 109 110 private def allSignals = srcType.take(3) ++ Seq(fuType, fuOpType, rfWen, fpWen, vecWen, 111 isXSTrap, waitForward, blockBackward, flushPipe, canRobCompress, uopSplitType, selImm) 112 113 def decode(inst: UInt, table: Iterable[(BitPat, List[BitPat])]): DecodedInst = { 114 val decoder: Seq[UInt] = ListLookup( 115 inst, XDecode.decodeDefault.map(bitPatToUInt), 116 table.map{ case (pat, pats) => (pat, pats.map(bitPatToUInt)) }.toArray 117 ) 118 allSignals zip decoder foreach { case (s, d) => s := d } 119 this 120 } 121 122 def isSoftPrefetch: Bool = { 123 fuType === FuType.alu.U && fuOpType === ALUOpType.or && selImm === SelImm.IMM_I && ldest === 0.U 124 } 125 126 def connectStaticInst(source: StaticInst): Unit = { 127 for ((name, data) <- this.elements) { 128 if (source.elements.contains(name)) { 129 data := source.elements(name) 130 } 131 } 132 } 133 } 134 135 // DecodedInst --[Rename]--> DynInst 136 class DynInst(implicit p: Parameters) extends XSBundle { 137 def numSrc = backendParams.numSrc 138 // passed from StaticInst 139 val instr = UInt(32.W) 140 val pc = UInt(VAddrBits.W) 141 val foldpc = UInt(MemPredPCWidth.W) 142 val exceptionVec = ExceptionVec() 143 val trigger = new TriggerCf 144 val preDecodeInfo = new PreDecodeInfo 145 val pred_taken = Bool() 146 val crossPageIPFFix = Bool() 147 val ftqPtr = new FtqPtr 148 val ftqOffset = UInt(log2Up(PredictWidth).W) 149 // passed from DecodedInst 150 val srcType = Vec(numSrc, SrcType()) 151 val lsrc = Vec(numSrc, UInt(6.W)) 152 val ldest = UInt(6.W) 153 val fuType = FuType() 154 val fuOpType = FuOpType() 155 val rfWen = Bool() 156 val fpWen = Bool() 157 val vecWen = Bool() 158 val isXSTrap = Bool() 159 val waitForward = Bool() // no speculate execution 160 val blockBackward = Bool() 161 val flushPipe = Bool() // This inst will flush all the pipe when commit, like exception but can commit 162 val canRobCompress = Bool() 163 val selImm = SelImm() 164 val imm = UInt(32.W) 165 val fpu = new FPUCtrlSignals 166 val vpu = new VPUCtrlSignals 167 val vlsInstr = Bool() 168 val wfflags = Bool() 169 val isMove = Bool() 170 val uopIdx = UopIdx() 171 val isVset = Bool() 172 val firstUop = Bool() 173 val lastUop = Bool() 174 val numUops = UInt(log2Up(MaxUopSize).W) // rob need this 175 val numWB = UInt(log2Up(MaxUopSize).W) // rob need this 176 val commitType = CommitType() 177 // rename 178 val srcState = Vec(numSrc, SrcState()) 179 val srcLoadDependency = Vec(numSrc, Vec(LoadPipelineWidth, UInt(3.W))) 180 val psrc = Vec(numSrc, UInt(PhyRegIdxWidth.W)) 181 val pdest = UInt(PhyRegIdxWidth.W) 182 val robIdx = new RobPtr 183 val instrSize = UInt(log2Ceil(RenameWidth + 1).W) 184 val dirtyFs = Bool() 185 186 val eliminatedMove = Bool() 187 // Take snapshot at this CFI inst 188 val snapshot = Bool() 189 val debugInfo = new PerfDebugInfo 190 val storeSetHit = Bool() // inst has been allocated an store set 191 val waitForRobIdx = new RobPtr // store set predicted previous store robIdx 192 // Load wait is needed 193 // load inst will not be executed until former store (predicted by mdp) addr calcuated 194 val loadWaitBit = Bool() 195 // If (loadWaitBit && loadWaitStrict), strict load wait is needed 196 // load inst will not be executed until ALL former store addr calcuated 197 val loadWaitStrict = Bool() 198 val ssid = UInt(SSIDWidth.W) 199 // Todo 200 val lqIdx = new LqPtr 201 val sqIdx = new SqPtr 202 // debug module 203 val singleStep = Bool() 204 // schedule 205 val replayInst = Bool() 206 207 def isLUI: Bool = this.fuType === FuType.alu.U && (this.selImm === SelImm.IMM_U || this.selImm === SelImm.IMM_LUI32) 208 def isLUI32: Bool = this.selImm === SelImm.IMM_LUI32 209 def isWFI: Bool = this.fuType === FuType.csr.U && fuOpType === CSROpType.wfi 210 211 def isSvinvalBegin(flush: Bool) = FuType.isFence(fuType) && fuOpType === FenceOpType.nofence && !flush 212 def isSvinval(flush: Bool) = FuType.isFence(fuType) && fuOpType === FenceOpType.sfence && !flush 213 def isSvinvalEnd(flush: Bool) = FuType.isFence(fuType) && fuOpType === FenceOpType.nofence && flush 214 215 def srcIsReady: Vec[Bool] = { 216 VecInit(this.srcType.zip(this.srcState).map { 217 case (t, s) => SrcType.isNotReg(t) || SrcState.isReady(s) 218 }) 219 } 220 221 def clearExceptions( 222 exceptionBits: Seq[Int] = Seq(), 223 flushPipe : Boolean = false, 224 replayInst : Boolean = false 225 ): DynInst = { 226 this.exceptionVec.zipWithIndex.filterNot(x => exceptionBits.contains(x._2)).foreach(_._1 := false.B) 227 if (!flushPipe) { this.flushPipe := false.B } 228 if (!replayInst) { this.replayInst := false.B } 229 this 230 } 231 232 def needWriteRf: Bool = (rfWen && ldest =/= 0.U) || fpWen || vecWen 233 } 234 235 trait BundleSource { 236 var wakeupSource = "undefined" 237 var idx = 0 238 } 239 240 /** 241 * 242 * @param pregIdxWidth index width of preg 243 * @param exuIndices exu indices of wakeup bundle 244 */ 245 sealed abstract class IssueQueueWakeUpBaseBundle(pregIdxWidth: Int, val exuIndices: Seq[Int]) extends Bundle { 246 val rfWen = Bool() 247 val fpWen = Bool() 248 val vecWen = Bool() 249 val pdest = UInt(pregIdxWidth.W) 250 251 /** 252 * @param successor Seq[(psrc, srcType)] 253 * @return Seq[if wakeup psrc] 254 */ 255 def wakeUp(successor: Seq[(UInt, UInt)], valid: Bool): Seq[Bool] = { 256 successor.map { case (thatPsrc, srcType) => 257 val pdestMatch = pdest === thatPsrc 258 pdestMatch && ( 259 SrcType.isFp(srcType) && this.fpWen || 260 SrcType.isXp(srcType) && this.rfWen || 261 SrcType.isVp(srcType) && this.vecWen 262 ) && valid 263 } 264 } 265 def wakeUpFromIQ(successor: Seq[(UInt, UInt)]): Seq[Bool] = { 266 successor.map { case (thatPsrc, srcType) => 267 val pdestMatch = pdest === thatPsrc 268 pdestMatch && ( 269 SrcType.isFp(srcType) && this.fpWen || 270 SrcType.isXp(srcType) && this.rfWen || 271 SrcType.isVp(srcType) && this.vecWen 272 ) 273 } 274 } 275 276 def hasOnlyOneSource: Boolean = exuIndices.size == 1 277 278 def hasMultiSources: Boolean = exuIndices.size > 1 279 280 def isWBWakeUp = this.isInstanceOf[IssueQueueWBWakeUpBundle] 281 282 def isIQWakeUp = this.isInstanceOf[IssueQueueIQWakeUpBundle] 283 284 def exuIdx: Int = { 285 require(hasOnlyOneSource) 286 this.exuIndices.head 287 } 288 } 289 290 class IssueQueueWBWakeUpBundle(exuIndices: Seq[Int], backendParams: BackendParams) extends IssueQueueWakeUpBaseBundle(backendParams.pregIdxWidth, exuIndices) { 291 292 } 293 294class IssueQueueIQWakeUpBundle( 295 exuIdx: Int, 296 backendParams: BackendParams, 297 copyWakeupOut: Boolean = false, 298 copyNum: Int = 0 299) extends IssueQueueWakeUpBaseBundle(backendParams.pregIdxWidth, Seq(exuIdx)) { 300 val loadDependency = Vec(backendParams.LduCnt + backendParams.HyuCnt, UInt(3.W)) 301 val is0Lat = Bool() 302 val params = backendParams.allExuParams.filter(_.exuIdx == exuIdx).head 303 val pdestCopy = OptionWrapper(copyWakeupOut, Vec(copyNum, UInt(params.wbPregIdxWidth.W))) 304 val rfWenCopy = OptionWrapper(copyWakeupOut && params.writeIntRf, Vec(copyNum, Bool())) 305 val fpWenCopy = OptionWrapper(copyWakeupOut && params.writeFpRf, Vec(copyNum, Bool())) 306 val vecWenCopy = OptionWrapper(copyWakeupOut && params.writeVecRf, Vec(copyNum, Bool())) 307 val loadDependencyCopy = OptionWrapper(copyWakeupOut && params.isIQWakeUpSink, Vec(copyNum,Vec(backendParams.LdExuCnt, UInt(3.W)))) 308 def fromExuInput(exuInput: ExuInput, l2ExuVecs: Vec[UInt]): Unit = { 309 this.rfWen := exuInput.rfWen.getOrElse(false.B) 310 this.fpWen := exuInput.fpWen.getOrElse(false.B) 311 this.vecWen := exuInput.vecWen.getOrElse(false.B) 312 this.pdest := exuInput.pdest 313 } 314 315 def fromExuInput(exuInput: ExuInput): Unit = { 316 this.rfWen := exuInput.rfWen.getOrElse(false.B) 317 this.fpWen := exuInput.fpWen.getOrElse(false.B) 318 this.vecWen := exuInput.vecWen.getOrElse(false.B) 319 this.pdest := exuInput.pdest 320 } 321 322 def fromDynInst(uop: DynInst): Unit = { 323 this.rfWen := uop.rfWen 324 this.fpWen := uop.fpWen 325 this.vecWen := uop.vecWen 326 this.pdest := uop.pdest 327 } 328 } 329 330 class VPUCtrlSignals(implicit p: Parameters) extends XSBundle { 331 // vtype 332 val vill = Bool() 333 val vma = Bool() // 1: agnostic, 0: undisturbed 334 val vta = Bool() // 1: agnostic, 0: undisturbed 335 val vsew = VSew() 336 val vlmul = VLmul() // 1/8~8 --> -3~3 337 338 val vm = Bool() // 0: need v0.t 339 val vstart = Vl() 340 341 // float rounding mode 342 val frm = Frm() 343 // scalar float instr and vector float reduction 344 val fpu = Fpu() 345 // vector fix int rounding mode 346 val vxrm = Vxrm() 347 // vector uop index, exclude other non-vector uop 348 val vuopIdx = UopIdx() 349 val lastUop = Bool() 350 // maybe used if data dependancy 351 val vmask = UInt(MaskSrcData().dataWidth.W) 352 val vl = Vl() 353 354 // vector load/store 355 val nf = Nf() 356 val veew = VEew() 357 358 val isReverse = Bool() // vrsub, vrdiv 359 val isExt = Bool() 360 val isNarrow = Bool() 361 val isDstMask = Bool() // vvm, vvvm, mmm 362 val isOpMask = Bool() // vmand, vmnand 363 val isMove = Bool() // vmv.s.x, vmv.v.v, vmv.v.x, vmv.v.i 364 365 def vtype: VType = { 366 val res = Wire(VType()) 367 res.illegal := this.vill 368 res.vma := this.vma 369 res.vta := this.vta 370 res.vsew := this.vsew 371 res.vlmul := this.vlmul 372 res 373 } 374 375 def vconfig: VConfig = { 376 val res = Wire(VConfig()) 377 res.vtype := this.vtype 378 res.vl := this.vl 379 res 380 } 381 382 def connectVType(source: VType): Unit = { 383 this.vill := source.illegal 384 this.vma := source.vma 385 this.vta := source.vta 386 this.vsew := source.vsew 387 this.vlmul := source.vlmul 388 } 389 } 390 391 // DynInst --[IssueQueue]--> DataPath 392 class IssueQueueIssueBundle( 393 iqParams: IssueBlockParams, 394 val exuParams: ExeUnitParams, 395 )(implicit 396 p: Parameters 397 ) extends Bundle { 398 private val rfReadDataCfgSet: Seq[Set[DataConfig]] = exuParams.getRfReadDataCfgSet 399 // check which set both have fp and vec and remove fp 400 private val rfReadDataCfgSetFilterFp = rfReadDataCfgSet.map((set: Set[DataConfig]) => 401 if (set.contains(FpData()) && set.contains(VecData())) set.filter(_ != FpData()) 402 else set 403 ) 404 405 val rf: MixedVec[MixedVec[RfReadPortWithConfig]] = Flipped(MixedVec( 406 rfReadDataCfgSetFilterFp.map((set: Set[DataConfig]) => 407 MixedVec(set.map((x: DataConfig) => new RfReadPortWithConfig(x, exuParams.rdPregIdxWidth)).toSeq) 408 ) 409 )) 410 411 val srcType = Vec(exuParams.numRegSrc, SrcType()) // used to select imm or reg data 412 val immType = SelImm() // used to select imm extractor 413 val common = new ExuInput(exuParams) 414 val addrOH = UInt(iqParams.numEntries.W) 415 416 def exuIdx = exuParams.exuIdx 417 def getSource: SchedulerType = exuParams.getWBSource 418 def getIntWbBusyBundle = common.rfWen.toSeq 419 def getVfWbBusyBundle = common.getVfWen.toSeq 420 def getIntRfReadBundle: Seq[RfReadPortWithConfig] = rf.flatten.filter(_.readInt).toSeq 421 def getVfRfReadBundle: Seq[RfReadPortWithConfig] = rf.flatten.filter(_.readVf).toSeq 422 423 def getIntRfReadValidBundle(issueValid: Bool): Seq[ValidIO[RfReadPortWithConfig]] = { 424 getIntRfReadBundle.zip(srcType).map { 425 case (rfRd: RfReadPortWithConfig, t: UInt) => 426 makeValid(issueValid && SrcType.isXp(t), rfRd) 427 } 428 } 429 430 def getVfRfReadValidBundle(issueValid: Bool): Seq[ValidIO[RfReadPortWithConfig]] = { 431 getVfRfReadBundle.zip(srcType).map { 432 case (rfRd: RfReadPortWithConfig, t: UInt) => 433 makeValid(issueValid && SrcType.isVfp(t), rfRd) 434 } 435 } 436 437 def getIntRfWriteValidBundle(issueValid: Bool) = { 438 439 } 440 } 441 442 class OGRespBundle(implicit p:Parameters, params: IssueBlockParams) extends XSBundle { 443 val issueQueueParams = this.params 444 val og0resp = Valid(new EntryDeqRespBundle) 445 val og1resp = Valid(new EntryDeqRespBundle) 446 } 447 448 class fuBusyRespBundle(implicit p: Parameters, params: IssueBlockParams) extends Bundle { 449 val respType = RSFeedbackType() // update credit if needs replay 450 val rfWen = Bool() // TODO: use params to identify IntWB/VfWB 451 val fuType = FuType() 452 } 453 454 class WbFuBusyTableWriteBundle(val params: ExeUnitParams)(implicit p: Parameters) extends XSBundle { 455 private val intCertainLat = params.intLatencyCertain 456 private val vfCertainLat = params.vfLatencyCertain 457 private val intLat = params.intLatencyValMax 458 private val vfLat = params.vfLatencyValMax 459 460 val intWbBusyTable = OptionWrapper(intCertainLat, UInt((intLat + 1).W)) 461 val vfWbBusyTable = OptionWrapper(vfCertainLat, UInt((vfLat + 1).W)) 462 val intDeqRespSet = OptionWrapper(intCertainLat, UInt((intLat + 1).W)) 463 val vfDeqRespSet = OptionWrapper(vfCertainLat, UInt((vfLat + 1).W)) 464 } 465 466 class WbFuBusyTableReadBundle(val params: ExeUnitParams)(implicit p: Parameters) extends XSBundle { 467 private val intCertainLat = params.intLatencyCertain 468 private val vfCertainLat = params.vfLatencyCertain 469 private val intLat = params.intLatencyValMax 470 private val vfLat = params.vfLatencyValMax 471 472 val intWbBusyTable = OptionWrapper(intCertainLat, UInt((intLat + 1).W)) 473 val vfWbBusyTable = OptionWrapper(vfCertainLat, UInt((vfLat + 1).W)) 474 } 475 476 class WbConflictBundle(val params: ExeUnitParams)(implicit p: Parameters) extends XSBundle { 477 private val intCertainLat = params.intLatencyCertain 478 private val vfCertainLat = params.vfLatencyCertain 479 480 val intConflict = OptionWrapper(intCertainLat, Bool()) 481 val vfConflict = OptionWrapper(vfCertainLat, Bool()) 482 } 483 484 // DataPath --[ExuInput]--> Exu 485 class ExuInput(val params: ExeUnitParams, copyWakeupOut:Boolean = false, copyNum:Int = 0)(implicit p: Parameters) extends XSBundle { 486 val fuType = FuType() 487 val fuOpType = FuOpType() 488 val src = Vec(params.numRegSrc, UInt(params.dataBitsMax.W)) 489 val imm = UInt(32.W) 490 val robIdx = new RobPtr 491 val iqIdx = UInt(log2Up(MemIQSizeMax).W)// Only used by store yet 492 val isFirstIssue = Bool() // Only used by store yet 493 val pdestCopy = OptionWrapper(copyWakeupOut, Vec(copyNum, UInt(params.wbPregIdxWidth.W))) 494 val rfWenCopy = OptionWrapper(copyWakeupOut && params.writeIntRf, Vec(copyNum, Bool())) 495 val fpWenCopy = OptionWrapper(copyWakeupOut && params.writeFpRf, Vec(copyNum, Bool())) 496 val vecWenCopy = OptionWrapper(copyWakeupOut && params.writeVecRf, Vec(copyNum, Bool())) 497 val loadDependencyCopy = OptionWrapper(copyWakeupOut && params.isIQWakeUpSink, Vec(copyNum,Vec(LoadPipelineWidth, UInt(3.W)))) 498 val pdest = UInt(params.wbPregIdxWidth.W) 499 val rfWen = if (params.writeIntRf) Some(Bool()) else None 500 val fpWen = if (params.writeFpRf) Some(Bool()) else None 501 val vecWen = if (params.writeVecRf) Some(Bool()) else None 502 val fpu = if (params.writeFflags) Some(new FPUCtrlSignals) else None 503 val vpu = if (params.needVPUCtrl) Some(new VPUCtrlSignals) else None 504 val flushPipe = if (params.flushPipe) Some(Bool()) else None 505 val pc = if (params.needPc) Some(UInt(VAddrData().dataWidth.W)) else None 506 val preDecode = if (params.hasPredecode) Some(new PreDecodeInfo) else None 507 val ftqIdx = if (params.needPc || params.replayInst || params.hasStoreAddrFu) 508 Some(new FtqPtr) else None 509 val ftqOffset = if (params.needPc || params.replayInst || params.hasStoreAddrFu) 510 Some(UInt(log2Up(PredictWidth).W)) else None 511 val predictInfo = if (params.needPdInfo) Some(new Bundle { 512 val target = UInt(VAddrData().dataWidth.W) 513 val taken = Bool() 514 }) else None 515 val loadWaitBit = OptionWrapper(params.hasLoadExu, Bool()) 516 val waitForRobIdx = OptionWrapper(params.hasLoadExu, new RobPtr) // store set predicted previous store robIdx 517 val storeSetHit = OptionWrapper(params.hasLoadExu, Bool()) // inst has been allocated an store set 518 val loadWaitStrict = OptionWrapper(params.hasLoadExu, Bool()) // load inst will not be executed until ALL former store addr calcuated 519 val ssid = OptionWrapper(params.hasLoadExu, UInt(SSIDWidth.W)) 520 val sqIdx = if (params.hasMemAddrFu || params.hasStdFu) Some(new SqPtr) else None 521 val lqIdx = if (params.hasMemAddrFu) Some(new LqPtr) else None 522 val dataSources = Vec(params.numRegSrc, DataSource()) 523 val l1ExuOH = OptionWrapper(params.isIQWakeUpSink, Vec(params.numRegSrc, ExuOH())) 524 val srcTimer = OptionWrapper(params.isIQWakeUpSink, Vec(params.numRegSrc, UInt(3.W))) 525 val loadDependency = OptionWrapper(params.isIQWakeUpSink, Vec(LoadPipelineWidth, UInt(3.W))) 526 527 val perfDebugInfo = new PerfDebugInfo() 528 529 def exuIdx = this.params.exuIdx 530 531 def needCancel(og0CancelOH: UInt, og1CancelOH: UInt) : Bool = { 532 if (params.isIQWakeUpSink) { 533 require( 534 og0CancelOH.getWidth == l1ExuOH.get.head.getWidth, 535 s"cancelVecSize: {og0: ${og0CancelOH.getWidth}, og1: ${og1CancelOH.getWidth}}" 536 ) 537 val l1Cancel: Bool = l1ExuOH.get.zip(srcTimer.get).map { 538 case(exuOH: UInt, srcTimer: UInt) => 539 (exuOH & og0CancelOH).orR && srcTimer === 1.U 540 }.reduce(_ | _) 541 l1Cancel 542 } else { 543 false.B 544 } 545 } 546 547 def getVfWen = { 548 if (params.writeFpRf) this.fpWen 549 else if(params.writeVecRf) this.vecWen 550 else None 551 } 552 553 def fromIssueBundle(source: IssueQueueIssueBundle): Unit = { 554 // src is assigned to rfReadData 555 this.fuType := source.common.fuType 556 this.fuOpType := source.common.fuOpType 557 this.imm := source.common.imm 558 this.robIdx := source.common.robIdx 559 this.pdest := source.common.pdest 560 this.isFirstIssue := source.common.isFirstIssue // Only used by mem debug log 561 this.iqIdx := source.common.iqIdx // Only used by mem feedback 562 this.dataSources := source.common.dataSources 563 this.l1ExuOH .foreach(_ := source.common.l1ExuOH.get) 564 this.rfWen .foreach(_ := source.common.rfWen.get) 565 this.fpWen .foreach(_ := source.common.fpWen.get) 566 this.vecWen .foreach(_ := source.common.vecWen.get) 567 this.fpu .foreach(_ := source.common.fpu.get) 568 this.vpu .foreach(_ := source.common.vpu.get) 569 this.flushPipe .foreach(_ := source.common.flushPipe.get) 570 this.pc .foreach(_ := source.common.pc.get) 571 this.preDecode .foreach(_ := source.common.preDecode.get) 572 this.ftqIdx .foreach(_ := source.common.ftqIdx.get) 573 this.ftqOffset .foreach(_ := source.common.ftqOffset.get) 574 this.predictInfo .foreach(_ := source.common.predictInfo.get) 575 this.loadWaitBit .foreach(_ := source.common.loadWaitBit.get) 576 this.waitForRobIdx .foreach(_ := source.common.waitForRobIdx.get) 577 this.storeSetHit .foreach(_ := source.common.storeSetHit.get) 578 this.loadWaitStrict.foreach(_ := source.common.loadWaitStrict.get) 579 this.ssid .foreach(_ := source.common.ssid.get) 580 this.lqIdx .foreach(_ := source.common.lqIdx.get) 581 this.sqIdx .foreach(_ := source.common.sqIdx.get) 582 this.srcTimer .foreach(_ := source.common.srcTimer.get) 583 this.loadDependency.foreach(_ := source.common.loadDependency.get.map(_ << 1)) 584 } 585 } 586 587 // ExuInput --[FuncUnit]--> ExuOutput 588 class ExuOutput( 589 val params: ExeUnitParams, 590 )(implicit 591 val p: Parameters 592 ) extends Bundle with BundleSource with HasXSParameter { 593 val data = UInt(params.dataBitsMax.W) 594 val pdest = UInt(params.wbPregIdxWidth.W) 595 val robIdx = new RobPtr 596 val intWen = if (params.writeIntRf) Some(Bool()) else None 597 val fpWen = if (params.writeFpRf) Some(Bool()) else None 598 val vecWen = if (params.writeVecRf) Some(Bool()) else None 599 val redirect = if (params.hasRedirect) Some(ValidIO(new Redirect)) else None 600 val fflags = if (params.writeFflags) Some(UInt(5.W)) else None 601 val wflags = if (params.writeFflags) Some(Bool()) else None 602 val vxsat = if (params.writeVxsat) Some(Bool()) else None 603 val exceptionVec = if (params.exceptionOut.nonEmpty) Some(ExceptionVec()) else None 604 val flushPipe = if (params.flushPipe) Some(Bool()) else None 605 val replay = if (params.replayInst) Some(Bool()) else None 606 val lqIdx = if (params.hasLoadFu) Some(new LqPtr()) else None 607 val sqIdx = if (params.hasStoreAddrFu || params.hasStdFu) 608 Some(new SqPtr()) else None 609 val trigger = if (params.trigger) Some(new TriggerCf) else None 610 // uop info 611 val predecodeInfo = if(params.hasPredecode) Some(new PreDecodeInfo) else None 612 // vldu used only 613 val vls = OptionWrapper(params.hasVLoadFu, new Bundle { 614 val vpu = new VPUCtrlSignals 615 val oldVdPsrc = UInt(PhyRegIdxWidth.W) 616 val vdIdx = UInt(3.W) 617 val vdIdxInField = UInt(3.W) 618 val isIndexed = Bool() 619 }) 620 val debug = new DebugBundle 621 val debugInfo = new PerfDebugInfo 622 } 623 624 // ExuOutput + DynInst --> WriteBackBundle 625 class WriteBackBundle(val params: PregWB, backendParams: BackendParams)(implicit p: Parameters) extends Bundle with BundleSource { 626 val rfWen = Bool() 627 val fpWen = Bool() 628 val vecWen = Bool() 629 val pdest = UInt(params.pregIdxWidth(backendParams).W) 630 val data = UInt(params.dataWidth.W) 631 val robIdx = new RobPtr()(p) 632 val flushPipe = Bool() 633 val replayInst = Bool() 634 val redirect = ValidIO(new Redirect) 635 val fflags = UInt(5.W) 636 val vxsat = Bool() 637 val exceptionVec = ExceptionVec() 638 val debug = new DebugBundle 639 val debugInfo = new PerfDebugInfo 640 641 this.wakeupSource = s"WB(${params.toString})" 642 643 def fromExuOutput(source: ExuOutput) = { 644 this.rfWen := source.intWen.getOrElse(false.B) 645 this.fpWen := source.fpWen.getOrElse(false.B) 646 this.vecWen := source.vecWen.getOrElse(false.B) 647 this.pdest := source.pdest 648 this.data := source.data 649 this.robIdx := source.robIdx 650 this.flushPipe := source.flushPipe.getOrElse(false.B) 651 this.replayInst := source.replay.getOrElse(false.B) 652 this.redirect := source.redirect.getOrElse(0.U.asTypeOf(this.redirect)) 653 this.fflags := source.fflags.getOrElse(0.U.asTypeOf(this.fflags)) 654 this.vxsat := source.vxsat.getOrElse(0.U.asTypeOf(this.vxsat)) 655 this.exceptionVec := source.exceptionVec.getOrElse(0.U.asTypeOf(this.exceptionVec)) 656 this.debug := source.debug 657 this.debugInfo := source.debugInfo 658 } 659 660 def asIntRfWriteBundle(fire: Bool): RfWritePortWithConfig = { 661 val rfWrite = Wire(Output(new RfWritePortWithConfig(this.params.dataCfg, backendParams.getPregParams(IntData()).addrWidth))) 662 rfWrite.wen := this.rfWen && fire 663 rfWrite.addr := this.pdest 664 rfWrite.data := this.data 665 rfWrite.intWen := this.rfWen 666 rfWrite.fpWen := false.B 667 rfWrite.vecWen := false.B 668 rfWrite 669 } 670 671 def asVfRfWriteBundle(fire: Bool): RfWritePortWithConfig = { 672 val rfWrite = Wire(Output(new RfWritePortWithConfig(this.params.dataCfg, backendParams.getPregParams(VecData()).addrWidth))) 673 rfWrite.wen := (this.fpWen || this.vecWen) && fire 674 rfWrite.addr := this.pdest 675 rfWrite.data := this.data 676 rfWrite.intWen := false.B 677 rfWrite.fpWen := this.fpWen 678 rfWrite.vecWen := this.vecWen 679 rfWrite 680 } 681 } 682 683 // ExuOutput --> ExuBypassBundle --[DataPath]-->ExuInput 684 // / 685 // [IssueQueue]--> ExuInput -- 686 class ExuBypassBundle( 687 val params: ExeUnitParams, 688 )(implicit 689 val p: Parameters 690 ) extends Bundle { 691 val data = UInt(params.dataBitsMax.W) 692 val pdest = UInt(params.wbPregIdxWidth.W) 693 } 694 695 class ExceptionInfo(implicit p: Parameters) extends Bundle { 696 val pc = UInt(VAddrData().dataWidth.W) 697 val instr = UInt(32.W) 698 val commitType = CommitType() 699 val exceptionVec = ExceptionVec() 700 val singleStep = Bool() 701 val crossPageIPFFix = Bool() 702 val isInterrupt = Bool() 703 val vls = Bool() 704 val trigger = new TriggerCf 705 } 706 707 object UopIdx { 708 def apply()(implicit p: Parameters): UInt = UInt(log2Up(p(XSCoreParamsKey).MaxUopSize + 1).W) 709 } 710 711 object FuLatency { 712 def apply(): UInt = UInt(width.W) 713 714 def width = 4 // 0~15 // Todo: assosiate it with FuConfig 715 } 716 717 object ExuOH { 718 def apply(exuNum: Int): UInt = UInt(exuNum.W) 719 720 def apply()(implicit p: Parameters): UInt = UInt(width.W) 721 722 def width(implicit p: Parameters): Int = p(XSCoreParamsKey).backendParams.numExu 723 } 724 725 object ExuVec { 726 def apply(exuNum: Int): Vec[Bool] = Vec(exuNum, Bool()) 727 728 def apply()(implicit p: Parameters): Vec[Bool] = Vec(width, Bool()) 729 730 def width(implicit p: Parameters): Int = p(XSCoreParamsKey).backendParams.numExu 731 } 732 733 class CancelSignal(implicit p: Parameters) extends XSBundle { 734 val rfWen = Bool() 735 val fpWen = Bool() 736 val vecWen = Bool() 737 val pdest = UInt(PhyRegIdxWidth.W) 738 739 def needCancel(srcType: UInt, psrc: UInt, valid: Bool): Bool = { 740 val pdestMatch = pdest === psrc 741 pdestMatch && ( 742 SrcType.isFp(srcType) && !this.rfWen || 743 SrcType.isXp(srcType) && this.rfWen || 744 SrcType.isVp(srcType) && !this.rfWen 745 ) && valid 746 } 747 } 748 749 class MemExuInput(isVector: Boolean = false)(implicit p: Parameters) extends XSBundle { 750 val uop = new DynInst 751 val src = if (isVector) Vec(5, UInt(VLEN.W)) else Vec(3, UInt(XLEN.W)) 752 val iqIdx = UInt(log2Up(MemIQSizeMax).W) 753 val isFirstIssue = Bool() 754 755 def src_rs1 = src(0) 756 def src_stride = src(1) 757 def src_vs3 = src(2) 758 def src_mask = if (isVector) src(3) else 0.U 759 def src_vl = if (isVector) src(4) else 0.U 760 } 761 762 class MemExuOutput(isVector: Boolean = false)(implicit p: Parameters) extends XSBundle { 763 val uop = new DynInst 764 val data = if (isVector) UInt(VLEN.W) else UInt(XLEN.W) 765 val mask = if (isVector) Some(UInt(VLEN.W)) else None 766 val vdIdx = if (isVector) Some(UInt(3.W)) else None // TODO: parameterize width 767 val vdIdxInField = if (isVector) Some(UInt(3.W)) else None 768 val debug = new DebugBundle 769 770 def isVls = FuType.isVls(uop.fuType) 771 } 772 773 class MemMicroOpRbExt(implicit p: Parameters) extends XSBundle { 774 val uop = new DynInst 775 val flag = UInt(1.W) 776 } 777 778 object LoadShouldCancel { 779 def apply(loadDependency: Option[Seq[UInt]], ldCancel: Seq[LoadCancelIO]): Bool = { 780 val ld1Cancel = loadDependency.map(_.zip(ldCancel.map(_.ld1Cancel)).map { case (dep, cancel) => cancel && dep(1)}.reduce(_ || _)) 781 val ld2Cancel = loadDependency.map(_.zip(ldCancel.map(_.ld2Cancel)).map { case (dep, cancel) => cancel && dep(2)}.reduce(_ || _)) 782 ld1Cancel.map(_ || ld2Cancel.get).getOrElse(false.B) 783 } 784 } 785} 786