1/*************************************************************************************** 2* Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences 3* Copyright (c) 2020-2021 Peng Cheng Laboratory 4* 5* XiangShan is licensed under Mulan PSL v2. 6* You can use this software according to the terms and conditions of the Mulan PSL v2. 7* You may obtain a copy of Mulan PSL v2 at: 8* http://license.coscl.org.cn/MulanPSL2 9* 10* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, 11* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, 12* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. 13* 14* See the Mulan PSL v2 for more details. 15***************************************************************************************/ 16 17package xiangshan.backend 18 19import org.chipsalliance.cde.config.Parameters 20import chisel3._ 21import chisel3.util._ 22import freechips.rocketchip.diplomacy.{LazyModule, LazyModuleImp} 23import utility._ 24import utils._ 25import xiangshan.ExceptionNO._ 26import xiangshan._ 27import xiangshan.backend.Bundles.{DecodedInst, DynInst, ExceptionInfo, ExuOutput, ExuVec, StaticInst, TrapInstInfo} 28import xiangshan.backend.ctrlblock.{DebugLSIO, DebugLsInfoBundle, LsTopdownInfo, MemCtrl, RedirectGenerator} 29import xiangshan.backend.datapath.DataConfig.{FpData, IntData, V0Data, VAddrData, VecData, VlData} 30import xiangshan.backend.decode.{DecodeStage, FusionDecoder} 31import xiangshan.backend.dispatch.{CoreDispatchTopDownIO, Dispatch, DispatchQueue} 32import xiangshan.backend.dispatch.NewDispatch 33import xiangshan.backend.fu.PFEvent 34import xiangshan.backend.fu.vector.Bundles.{VType, Vl} 35import xiangshan.backend.fu.wrapper.CSRToDecode 36import xiangshan.backend.rename.{Rename, RenameTableWrapper, SnapshotGenerator} 37import xiangshan.backend.rob.{Rob, RobCSRIO, RobCoreTopDownIO, RobDebugRollingIO, RobLsqIO, RobPtr} 38import xiangshan.frontend.{FtqPtr, FtqRead, Ftq_RF_Components} 39import xiangshan.mem.{LqPtr, LsqEnqIO, SqPtr} 40import xiangshan.backend.issue.{FpScheduler, IntScheduler, MemScheduler, VfScheduler} 41import xiangshan.backend.trace._ 42 43class CtrlToFtqIO(implicit p: Parameters) extends XSBundle { 44 val rob_commits = Vec(CommitWidth, Valid(new RobCommitInfo)) 45 val redirect = Valid(new Redirect) 46 val ftqIdxAhead = Vec(BackendRedirectNum, Valid(new FtqPtr)) 47 val ftqIdxSelOH = Valid(UInt((BackendRedirectNum).W)) 48} 49 50class CtrlBlock(params: BackendParams)(implicit p: Parameters) extends LazyModule { 51 override def shouldBeInlined: Boolean = false 52 53 val rob = LazyModule(new Rob(params)) 54 55 lazy val module = new CtrlBlockImp(this)(p, params) 56 57 val gpaMem = LazyModule(new GPAMem()) 58} 59 60class CtrlBlockImp( 61 override val wrapper: CtrlBlock 62)(implicit 63 p: Parameters, 64 params: BackendParams 65) extends LazyModuleImp(wrapper) 66 with HasXSParameter 67 with HasCircularQueuePtrHelper 68 with HasPerfEvents 69 with HasCriticalErrors 70{ 71 val pcMemRdIndexes = new NamedIndexes(Seq( 72 "redirect" -> 1, 73 "memPred" -> 1, 74 "robFlush" -> 1, 75 "bjuPc" -> params.BrhCnt, 76 "bjuTarget" -> params.BrhCnt, 77 "load" -> params.LduCnt, 78 "hybrid" -> params.HyuCnt, 79 "store" -> (if(EnableStorePrefetchSMS) params.StaCnt else 0), 80 "trace" -> TraceGroupNum 81 )) 82 83 private val numPcMemReadForExu = params.numPcReadPort 84 private val numPcMemRead = pcMemRdIndexes.maxIdx 85 86 // now pcMem read for exu is moved to PcTargetMem (OG0) 87 println(s"pcMem read num: $numPcMemRead") 88 println(s"pcMem read num for exu: $numPcMemReadForExu") 89 90 val io = IO(new CtrlBlockIO()) 91 92 val dispatch = Module(new NewDispatch) 93 val gpaMem = wrapper.gpaMem.module 94 val decode = Module(new DecodeStage) 95 val fusionDecoder = Module(new FusionDecoder) 96 val rat = Module(new RenameTableWrapper) 97 val rename = Module(new Rename) 98 val redirectGen = Module(new RedirectGenerator) 99 private def hasRen: Boolean = true 100 private val pcMem = Module(new SyncDataModuleTemplate(new Ftq_RF_Components, FtqSize, numPcMemRead, 1, "BackendPC", hasRen = hasRen)) 101 private val rob = wrapper.rob.module 102 private val memCtrl = Module(new MemCtrl(params)) 103 104 private val disableFusion = decode.io.csrCtrl.singlestep || !decode.io.csrCtrl.fusion_enable 105 106 private val s0_robFlushRedirect = rob.io.flushOut 107 private val s1_robFlushRedirect = Wire(Valid(new Redirect)) 108 s1_robFlushRedirect.valid := GatedValidRegNext(s0_robFlushRedirect.valid, false.B) 109 s1_robFlushRedirect.bits := RegEnable(s0_robFlushRedirect.bits, s0_robFlushRedirect.valid) 110 111 pcMem.io.ren.get(pcMemRdIndexes("robFlush").head) := s0_robFlushRedirect.valid 112 pcMem.io.raddr(pcMemRdIndexes("robFlush").head) := s0_robFlushRedirect.bits.ftqIdx.value 113 private val s1_robFlushPc = pcMem.io.rdata(pcMemRdIndexes("robFlush").head).startAddr + (RegEnable(s0_robFlushRedirect.bits.ftqOffset, s0_robFlushRedirect.valid) << instOffsetBits) 114 private val s3_redirectGen = redirectGen.io.stage2Redirect 115 private val s1_s3_redirect = Mux(s1_robFlushRedirect.valid, s1_robFlushRedirect, s3_redirectGen) 116 private val s2_s4_pendingRedirectValid = RegInit(false.B) 117 when (s1_s3_redirect.valid) { 118 s2_s4_pendingRedirectValid := true.B 119 }.elsewhen (GatedValidRegNext(io.frontend.toFtq.redirect.valid)) { 120 s2_s4_pendingRedirectValid := false.B 121 } 122 123 // Redirect will be RegNext at ExuBlocks and IssueBlocks 124 val s2_s4_redirect = RegNextWithEnable(s1_s3_redirect) 125 val s3_s5_redirect = RegNextWithEnable(s2_s4_redirect) 126 127 private val delayedNotFlushedWriteBack = io.fromWB.wbData.map(x => { 128 val valid = x.valid 129 val killedByOlder = x.bits.robIdx.needFlush(Seq(s1_s3_redirect, s2_s4_redirect)) 130 val delayed = Wire(Valid(new ExuOutput(x.bits.params))) 131 delayed.valid := GatedValidRegNext(valid && !killedByOlder) 132 delayed.bits := RegEnable(x.bits, x.valid) 133 delayed.bits.debugInfo.writebackTime := GTimer() 134 delayed 135 }).toSeq 136 private val delayedWriteBack = Wire(chiselTypeOf(io.fromWB.wbData)) 137 delayedWriteBack.zipWithIndex.map{ case (x,i) => 138 x.valid := GatedValidRegNext(io.fromWB.wbData(i).valid) 139 x.bits := delayedNotFlushedWriteBack(i).bits 140 } 141 val delayedNotFlushedWriteBackNeedFlush = Wire(Vec(params.allExuParams.filter(_.needExceptionGen).length, Bool())) 142 delayedNotFlushedWriteBackNeedFlush := delayedNotFlushedWriteBack.filter(_.bits.params.needExceptionGen).map{ x => 143 x.bits.exceptionVec.get.asUInt.orR || x.bits.flushPipe.getOrElse(false.B) || x.bits.replay.getOrElse(false.B) || 144 (if (x.bits.trigger.nonEmpty) TriggerAction.isDmode(x.bits.trigger.get) else false.B) 145 } 146 147 val wbDataNoStd = io.fromWB.wbData.filter(!_.bits.params.hasStdFu) 148 val intScheWbData = io.fromWB.wbData.filter(_.bits.params.schdType.isInstanceOf[IntScheduler]) 149 val fpScheWbData = io.fromWB.wbData.filter(_.bits.params.schdType.isInstanceOf[FpScheduler]) 150 val vfScheWbData = io.fromWB.wbData.filter(_.bits.params.schdType.isInstanceOf[VfScheduler]) 151 val intCanCompress = intScheWbData.filter(_.bits.params.CanCompress) 152 val i2vWbData = intScheWbData.filter(_.bits.params.writeVecRf) 153 val f2vWbData = fpScheWbData.filter(_.bits.params.writeVecRf) 154 val memVloadWbData = io.fromWB.wbData.filter(x => x.bits.params.schdType.isInstanceOf[MemScheduler] && x.bits.params.hasVLoadFu) 155 private val delayedNotFlushedWriteBackNums = wbDataNoStd.map(x => { 156 val valid = x.valid 157 val killedByOlder = x.bits.robIdx.needFlush(Seq(s1_s3_redirect, s2_s4_redirect, s3_s5_redirect)) 158 val delayed = Wire(Valid(UInt(io.fromWB.wbData.size.U.getWidth.W))) 159 delayed.valid := GatedValidRegNext(valid && !killedByOlder) 160 val isIntSche = intCanCompress.contains(x) 161 val isFpSche = fpScheWbData.contains(x) 162 val isVfSche = vfScheWbData.contains(x) 163 val isMemVload = memVloadWbData.contains(x) 164 val isi2v = i2vWbData.contains(x) 165 val isf2v = f2vWbData.contains(x) 166 val canSameRobidxWbData = if(isVfSche) { 167 i2vWbData ++ f2vWbData ++ vfScheWbData 168 } else if(isi2v) { 169 intCanCompress ++ fpScheWbData ++ vfScheWbData 170 } else if (isf2v) { 171 intCanCompress ++ fpScheWbData ++ vfScheWbData 172 } else if (isIntSche) { 173 intCanCompress ++ fpScheWbData 174 } else if (isFpSche) { 175 intCanCompress ++ fpScheWbData 176 } else if (isMemVload) { 177 memVloadWbData 178 } else { 179 Seq(x) 180 } 181 val sameRobidxBools = VecInit(canSameRobidxWbData.map( wb => { 182 val killedByOlderThat = wb.bits.robIdx.needFlush(Seq(s1_s3_redirect, s2_s4_redirect, s3_s5_redirect)) 183 (wb.bits.robIdx === x.bits.robIdx) && wb.valid && x.valid && !killedByOlderThat && !killedByOlder 184 }).toSeq) 185 delayed.bits := RegEnable(PopCount(sameRobidxBools), x.valid) 186 delayed 187 }).toSeq 188 189 private val exuPredecode = VecInit( 190 io.fromWB.wbData.filter(_.bits.redirect.nonEmpty).map(x => x.bits.predecodeInfo.get).toSeq 191 ) 192 193 private val exuRedirects: Seq[ValidIO[Redirect]] = io.fromWB.wbData.filter(_.bits.redirect.nonEmpty).map(x => { 194 val out = Wire(Valid(new Redirect())) 195 out.valid := x.valid && x.bits.redirect.get.valid && x.bits.redirect.get.bits.cfiUpdate.isMisPred && !x.bits.robIdx.needFlush(Seq(s1_s3_redirect, s2_s4_redirect)) 196 out.bits := x.bits.redirect.get.bits 197 out.bits.debugIsCtrl := true.B 198 out.bits.debugIsMemVio := false.B 199 // for fix timing, next cycle assgin 200 out.bits.cfiUpdate.backendIAF := false.B 201 out.bits.cfiUpdate.backendIPF := false.B 202 out.bits.cfiUpdate.backendIGPF := false.B 203 out 204 }).toSeq 205 private val oldestOneHot = Redirect.selectOldestRedirect(exuRedirects) 206 private val oldestExuRedirect = Mux1H(oldestOneHot, exuRedirects) 207 private val oldestExuPredecode = Mux1H(oldestOneHot, exuPredecode) 208 209 private val memViolation = io.fromMem.violation 210 val loadReplay = Wire(ValidIO(new Redirect)) 211 loadReplay.valid := GatedValidRegNext(memViolation.valid) 212 loadReplay.bits := RegEnable(memViolation.bits, memViolation.valid) 213 loadReplay.bits.debugIsCtrl := false.B 214 loadReplay.bits.debugIsMemVio := true.B 215 216 pcMem.io.ren.get(pcMemRdIndexes("redirect").head) := memViolation.valid 217 pcMem.io.raddr(pcMemRdIndexes("redirect").head) := memViolation.bits.ftqIdx.value 218 pcMem.io.ren.get(pcMemRdIndexes("memPred").head) := memViolation.valid 219 pcMem.io.raddr(pcMemRdIndexes("memPred").head) := memViolation.bits.stFtqIdx.value 220 redirectGen.io.memPredPcRead.data := pcMem.io.rdata(pcMemRdIndexes("memPred").head).startAddr + (RegEnable(memViolation.bits.stFtqOffset, memViolation.valid) << instOffsetBits) 221 222 for ((pcMemIdx, i) <- pcMemRdIndexes("bjuPc").zipWithIndex) { 223 val ren = io.toDataPath.pcToDataPathIO.fromDataPathValid(i) 224 val raddr = io.toDataPath.pcToDataPathIO.fromDataPathFtqPtr(i).value 225 val roffset = io.toDataPath.pcToDataPathIO.fromDataPathFtqOffset(i) 226 pcMem.io.ren.get(pcMemIdx) := ren 227 pcMem.io.raddr(pcMemIdx) := raddr 228 io.toDataPath.pcToDataPathIO.toDataPathPC(i) := pcMem.io.rdata(pcMemIdx).startAddr 229 } 230 231 val newestEn = RegNext(io.frontend.fromFtq.newest_entry_en) 232 val newestTarget = RegEnable(io.frontend.fromFtq.newest_entry_target, io.frontend.fromFtq.newest_entry_en) 233 val newestPtr = RegEnable(io.frontend.fromFtq.newest_entry_ptr, io.frontend.fromFtq.newest_entry_en) 234 val newestTargetNext = RegEnable(newestTarget, newestEn) 235 for ((pcMemIdx, i) <- pcMemRdIndexes("bjuTarget").zipWithIndex) { 236 val ren = io.toDataPath.pcToDataPathIO.fromDataPathValid(i) 237 val baseAddr = io.toDataPath.pcToDataPathIO.fromDataPathFtqPtr(i).value 238 val raddr = io.toDataPath.pcToDataPathIO.fromDataPathFtqPtr(i).value + 1.U 239 pcMem.io.ren.get(pcMemIdx) := ren 240 pcMem.io.raddr(pcMemIdx) := raddr 241 val needNewest = RegNext(baseAddr === newestPtr.value) 242 io.toDataPath.pcToDataPathIO.toDataPathTargetPC(i) := Mux(needNewest, newestTargetNext, pcMem.io.rdata(pcMemIdx).startAddr) 243 } 244 245 val baseIdx = params.BrhCnt 246 for ((pcMemIdx, i) <- pcMemRdIndexes("load").zipWithIndex) { 247 // load read pcMem (s0) -> get rdata (s1) -> reg next in Memblock (s2) -> reg next in Memblock (s3) -> consumed by pf (s3) 248 val ren = io.toDataPath.pcToDataPathIO.fromDataPathValid(baseIdx+i) 249 val raddr = io.toDataPath.pcToDataPathIO.fromDataPathFtqPtr(baseIdx+i).value 250 val roffset = io.toDataPath.pcToDataPathIO.fromDataPathFtqOffset(baseIdx+i) 251 pcMem.io.ren.get(pcMemIdx) := ren 252 pcMem.io.raddr(pcMemIdx) := raddr 253 io.toDataPath.pcToDataPathIO.toDataPathPC(baseIdx+i) := pcMem.io.rdata(pcMemIdx).startAddr 254 } 255 256 for ((pcMemIdx, i) <- pcMemRdIndexes("hybrid").zipWithIndex) { 257 // load read pcMem (s0) -> get rdata (s1) -> reg next in Memblock (s2) -> reg next in Memblock (s3) -> consumed by pf (s3) 258 pcMem.io.ren.get(pcMemIdx) := io.memHyPcRead(i).valid 259 pcMem.io.raddr(pcMemIdx) := io.memHyPcRead(i).ptr.value 260 io.memHyPcRead(i).data := pcMem.io.rdata(pcMemIdx).startAddr + (RegEnable(io.memHyPcRead(i).offset, io.memHyPcRead(i).valid) << instOffsetBits) 261 } 262 263 if (EnableStorePrefetchSMS) { 264 for ((pcMemIdx, i) <- pcMemRdIndexes("store").zipWithIndex) { 265 pcMem.io.ren.get(pcMemIdx) := io.memStPcRead(i).valid 266 pcMem.io.raddr(pcMemIdx) := io.memStPcRead(i).ptr.value 267 io.memStPcRead(i).data := pcMem.io.rdata(pcMemIdx).startAddr + (RegEnable(io.memStPcRead(i).offset, io.memStPcRead(i).valid) << instOffsetBits) 268 } 269 } else { 270 io.memStPcRead.foreach(_.data := 0.U) 271 } 272 273 /** 274 * trace begin 275 */ 276 val trace = Module(new Trace) 277 trace.io.in.fromEncoder.stall := io.traceCoreInterface.fromEncoder.stall 278 trace.io.in.fromEncoder.enable := io.traceCoreInterface.fromEncoder.enable 279 trace.io.in.fromRob := rob.io.trace.traceCommitInfo 280 rob.io.trace.blockCommit := trace.io.out.blockRobCommit 281 282 for ((pcMemIdx, i) <- pcMemRdIndexes("trace").zipWithIndex) { 283 val traceValid = trace.toPcMem.blocks(i).valid 284 pcMem.io.ren.get(pcMemIdx) := traceValid 285 pcMem.io.raddr(pcMemIdx) := trace.toPcMem.blocks(i).bits.ftqIdx.get.value 286 trace.io.in.fromPcMem(i) := pcMem.io.rdata(pcMemIdx).getPc(RegEnable(trace.toPcMem.blocks(i).bits.ftqOffset.get, traceValid)) 287 } 288 289 // Trap/Xret only occur in block(0). 290 val tracePriv = Mux(Itype.isTrapOrXret(trace.toEncoder.blocks(0).bits.tracePipe.itype), 291 io.fromCSR.traceCSR.lastPriv, 292 io.fromCSR.traceCSR.currentPriv 293 ) 294 io.traceCoreInterface.toEncoder.trap.cause := io.fromCSR.traceCSR.cause.asUInt 295 io.traceCoreInterface.toEncoder.trap.tval := io.fromCSR.traceCSR.tval.asUInt 296 io.traceCoreInterface.toEncoder.priv := tracePriv 297 (0 until TraceGroupNum).foreach(i => { 298 io.traceCoreInterface.toEncoder.groups(i).valid := trace.io.out.toEncoder.blocks(i).valid 299 io.traceCoreInterface.toEncoder.groups(i).bits.iaddr := trace.io.out.toEncoder.blocks(i).bits.iaddr.getOrElse(0.U) 300 io.traceCoreInterface.toEncoder.groups(i).bits.itype := trace.io.out.toEncoder.blocks(i).bits.tracePipe.itype 301 io.traceCoreInterface.toEncoder.groups(i).bits.iretire := trace.io.out.toEncoder.blocks(i).bits.tracePipe.iretire 302 io.traceCoreInterface.toEncoder.groups(i).bits.ilastsize := trace.io.out.toEncoder.blocks(i).bits.tracePipe.ilastsize 303 }) 304 /** 305 * trace end 306 */ 307 308 309 redirectGen.io.hartId := io.fromTop.hartId 310 redirectGen.io.oldestExuRedirect.valid := GatedValidRegNext(oldestExuRedirect.valid) 311 redirectGen.io.oldestExuRedirect.bits := RegEnable(oldestExuRedirect.bits, oldestExuRedirect.valid) 312 redirectGen.io.instrAddrTransType := RegNext(io.fromCSR.instrAddrTransType) 313 redirectGen.io.oldestExuOutPredecode.valid := GatedValidRegNext(oldestExuPredecode.valid) 314 redirectGen.io.oldestExuOutPredecode := RegEnable(oldestExuPredecode, oldestExuPredecode.valid) 315 redirectGen.io.loadReplay <> loadReplay 316 val loadRedirectOffset = Mux(memViolation.bits.flushItself(), 0.U, Mux(memViolation.bits.isRVC, 2.U, 4.U)) 317 val loadRedirectPcFtqOffset = RegEnable((memViolation.bits.ftqOffset << instOffsetBits).asUInt +& loadRedirectOffset, memViolation.valid) 318 val loadRedirectPcRead = pcMem.io.rdata(pcMemRdIndexes("redirect").head).startAddr + loadRedirectPcFtqOffset 319 320 redirectGen.io.loadReplay.bits.cfiUpdate.pc := loadRedirectPcRead 321 val load_target = loadRedirectPcRead 322 redirectGen.io.loadReplay.bits.cfiUpdate.target := load_target 323 324 redirectGen.io.robFlush := s1_robFlushRedirect 325 326 val s5_flushFromRobValidAhead = DelayN(s1_robFlushRedirect.valid, 4) 327 val s6_flushFromRobValid = GatedValidRegNext(s5_flushFromRobValidAhead) 328 val frontendFlushBits = RegEnable(s1_robFlushRedirect.bits, s1_robFlushRedirect.valid) // ?? 329 // When ROB commits an instruction with a flush, we notify the frontend of the flush without the commit. 330 // Flushes to frontend may be delayed by some cycles and commit before flush causes errors. 331 // Thus, we make all flush reasons to behave the same as exceptions for frontend. 332 for (i <- 0 until CommitWidth) { 333 // why flushOut: instructions with flushPipe are not commited to frontend 334 // If we commit them to frontend, it will cause flush after commit, which is not acceptable by frontend. 335 val s1_isCommit = rob.io.commits.commitValid(i) && rob.io.commits.isCommit && !s0_robFlushRedirect.valid 336 io.frontend.toFtq.rob_commits(i).valid := GatedValidRegNext(s1_isCommit) 337 io.frontend.toFtq.rob_commits(i).bits := RegEnable(rob.io.commits.info(i), s1_isCommit) 338 } 339 io.frontend.toFtq.redirect.valid := s6_flushFromRobValid || s3_redirectGen.valid 340 io.frontend.toFtq.redirect.bits := Mux(s6_flushFromRobValid, frontendFlushBits, s3_redirectGen.bits) 341 io.frontend.toFtq.ftqIdxSelOH.valid := s6_flushFromRobValid || redirectGen.io.stage2Redirect.valid 342 io.frontend.toFtq.ftqIdxSelOH.bits := Cat(s6_flushFromRobValid, redirectGen.io.stage2oldestOH & Fill(NumRedirect + 1, !s6_flushFromRobValid)) 343 344 //jmp/brh, sel oldest first, only use one read port 345 io.frontend.toFtq.ftqIdxAhead(0).valid := RegNext(oldestExuRedirect.valid) && !s1_robFlushRedirect.valid && !s5_flushFromRobValidAhead 346 io.frontend.toFtq.ftqIdxAhead(0).bits := RegEnable(oldestExuRedirect.bits.ftqIdx, oldestExuRedirect.valid) 347 //loadreplay 348 io.frontend.toFtq.ftqIdxAhead(NumRedirect).valid := loadReplay.valid && !s1_robFlushRedirect.valid && !s5_flushFromRobValidAhead 349 io.frontend.toFtq.ftqIdxAhead(NumRedirect).bits := loadReplay.bits.ftqIdx 350 //exception 351 io.frontend.toFtq.ftqIdxAhead.last.valid := s5_flushFromRobValidAhead 352 io.frontend.toFtq.ftqIdxAhead.last.bits := frontendFlushBits.ftqIdx 353 354 // Be careful here: 355 // T0: rob.io.flushOut, s0_robFlushRedirect 356 // T1: s1_robFlushRedirect, rob.io.exception.valid 357 // T2: csr.redirect.valid 358 // T3: csr.exception.valid 359 // T4: csr.trapTarget 360 // T5: ctrlBlock.trapTarget 361 // T6: io.frontend.toFtq.stage2Redirect.valid 362 val s2_robFlushPc = RegEnable(Mux(s1_robFlushRedirect.bits.flushItself(), 363 s1_robFlushPc, // replay inst 364 s1_robFlushPc + Mux(s1_robFlushRedirect.bits.isRVC, 2.U, 4.U) // flush pipe 365 ), s1_robFlushRedirect.valid) 366 private val s5_csrIsTrap = DelayN(rob.io.exception.valid, 4) 367 private val s5_trapTargetFromCsr = io.robio.csr.trapTarget 368 369 val flushTarget = Mux(s5_csrIsTrap, s5_trapTargetFromCsr.pc, s2_robFlushPc) 370 val s5_trapTargetIAF = Mux(s5_csrIsTrap, s5_trapTargetFromCsr.raiseIAF, false.B) 371 val s5_trapTargetIPF = Mux(s5_csrIsTrap, s5_trapTargetFromCsr.raiseIPF, false.B) 372 val s5_trapTargetIGPF = Mux(s5_csrIsTrap, s5_trapTargetFromCsr.raiseIGPF, false.B) 373 when (s6_flushFromRobValid) { 374 io.frontend.toFtq.redirect.bits.level := RedirectLevel.flush 375 io.frontend.toFtq.redirect.bits.cfiUpdate.target := RegEnable(flushTarget, s5_flushFromRobValidAhead) 376 io.frontend.toFtq.redirect.bits.cfiUpdate.backendIAF := RegEnable(s5_trapTargetIAF, s5_flushFromRobValidAhead) 377 io.frontend.toFtq.redirect.bits.cfiUpdate.backendIPF := RegEnable(s5_trapTargetIPF, s5_flushFromRobValidAhead) 378 io.frontend.toFtq.redirect.bits.cfiUpdate.backendIGPF := RegEnable(s5_trapTargetIGPF, s5_flushFromRobValidAhead) 379 } 380 381 for (i <- 0 until DecodeWidth) { 382 gpaMem.io.fromIFU := io.frontend.fromIfu 383 gpaMem.io.exceptionReadAddr.valid := rob.io.readGPAMemAddr.valid 384 gpaMem.io.exceptionReadAddr.bits.ftqPtr := rob.io.readGPAMemAddr.bits.ftqPtr 385 gpaMem.io.exceptionReadAddr.bits.ftqOffset := rob.io.readGPAMemAddr.bits.ftqOffset 386 } 387 388 // vtype commit 389 decode.io.fromCSR := io.fromCSR.toDecode 390 decode.io.fromRob.isResumeVType := rob.io.toDecode.isResumeVType 391 decode.io.fromRob.walkToArchVType := rob.io.toDecode.walkToArchVType 392 decode.io.fromRob.commitVType := rob.io.toDecode.commitVType 393 decode.io.fromRob.walkVType := rob.io.toDecode.walkVType 394 395 decode.io.redirect := s1_s3_redirect.valid || s2_s4_pendingRedirectValid 396 397 // add decode Buf for in.ready better timing 398 val decodeBufBits = Reg(Vec(DecodeWidth, new StaticInst)) 399 val decodeBufValid = RegInit(VecInit(Seq.fill(DecodeWidth)(false.B))) 400 val decodeFromFrontend = io.frontend.cfVec 401 val decodeBufNotAccept = VecInit(decodeBufValid.zip(decode.io.in).map(x => x._1 && !x._2.ready)) 402 val decodeBufAcceptNum = PriorityMuxDefault(decodeBufNotAccept.zip(Seq.tabulate(DecodeWidth)(i => i.U)), DecodeWidth.U) 403 val decodeFromFrontendNotAccept = VecInit(decodeFromFrontend.zip(decode.io.in).map(x => decodeBufValid(0) || x._1.valid && !x._2.ready)) 404 val decodeFromFrontendAcceptNum = PriorityMuxDefault(decodeFromFrontendNotAccept.zip(Seq.tabulate(DecodeWidth)(i => i.U)), DecodeWidth.U) 405 if (backendParams.debugEn) { 406 dontTouch(decodeBufNotAccept) 407 dontTouch(decodeBufAcceptNum) 408 dontTouch(decodeFromFrontendNotAccept) 409 dontTouch(decodeFromFrontendAcceptNum) 410 } 411 val a = decodeBufNotAccept.drop(2) 412 for (i <- 0 until DecodeWidth) { 413 // decodeBufValid update 414 when(decode.io.redirect || decodeBufValid(0) && decodeBufValid(i) && decode.io.in(i).ready && !VecInit(decodeBufNotAccept.drop(i)).asUInt.orR) { 415 decodeBufValid(i) := false.B 416 }.elsewhen(decodeBufValid(i) && VecInit(decodeBufNotAccept.drop(i)).asUInt.orR) { 417 decodeBufValid(i) := Mux(decodeBufAcceptNum > DecodeWidth.U - 1.U - i.U, false.B, decodeBufValid(i.U + decodeBufAcceptNum)) 418 }.elsewhen(!decodeBufValid(0) && VecInit(decodeFromFrontendNotAccept.drop(i)).asUInt.orR) { 419 decodeBufValid(i) := Mux(decodeFromFrontendAcceptNum > DecodeWidth.U - 1.U - i.U, false.B, decodeFromFrontend(i.U + decodeFromFrontendAcceptNum).valid) 420 } 421 // decodeBufBits update 422 when(decodeBufValid(i) && VecInit(decodeBufNotAccept.drop(i)).asUInt.orR) { 423 decodeBufBits(i) := decodeBufBits(i.U + decodeBufAcceptNum) 424 }.elsewhen(!decodeBufValid(0) && VecInit(decodeFromFrontendNotAccept.drop(i)).asUInt.orR) { 425 decodeBufBits(i).connectCtrlFlow(decodeFromFrontend(i.U + decodeFromFrontendAcceptNum).bits) 426 } 427 } 428 val decodeConnectFromFrontend = Wire(Vec(DecodeWidth, new StaticInst)) 429 decodeConnectFromFrontend.zip(decodeFromFrontend).map(x => x._1.connectCtrlFlow(x._2.bits)) 430 decode.io.in.zipWithIndex.foreach { case (decodeIn, i) => 431 decodeIn.valid := Mux(decodeBufValid(0), decodeBufValid(i), decodeFromFrontend(i).valid) 432 decodeFromFrontend(i).ready := decodeFromFrontend(0).valid && !decodeBufValid(0) && decodeFromFrontend(i).valid && !decode.io.redirect 433 decodeIn.bits := Mux(decodeBufValid(i), decodeBufBits(i), decodeConnectFromFrontend(i)) 434 } 435 io.frontend.canAccept := !decodeBufValid(0) || !decodeFromFrontend(0).valid 436 decode.io.csrCtrl := RegNext(io.csrCtrl) 437 decode.io.intRat <> rat.io.intReadPorts 438 decode.io.fpRat <> rat.io.fpReadPorts 439 decode.io.vecRat <> rat.io.vecReadPorts 440 decode.io.v0Rat <> rat.io.v0ReadPorts 441 decode.io.vlRat <> rat.io.vlReadPorts 442 decode.io.fusion := 0.U.asTypeOf(decode.io.fusion) // Todo 443 decode.io.stallReason.in <> io.frontend.stallReason 444 445 // snapshot check 446 class CFIRobIdx extends Bundle { 447 val robIdx = Vec(RenameWidth, new RobPtr) 448 val isCFI = Vec(RenameWidth, Bool()) 449 } 450 val genSnapshot = Cat(rename.io.out.map(out => out.fire && out.bits.snapshot)).orR 451 val snpt = Module(new SnapshotGenerator(0.U.asTypeOf(new CFIRobIdx))) 452 snpt.io.enq := genSnapshot 453 snpt.io.enqData.robIdx := rename.io.out.map(_.bits.robIdx) 454 snpt.io.enqData.isCFI := rename.io.out.map(_.bits.snapshot) 455 snpt.io.deq := snpt.io.valids(snpt.io.deqPtr.value) && rob.io.commits.isCommit && 456 Cat(rob.io.commits.commitValid.zip(rob.io.commits.robIdx).map(x => x._1 && x._2 === snpt.io.snapshots(snpt.io.deqPtr.value).robIdx.head)).orR 457 snpt.io.redirect := s1_s3_redirect.valid 458 val flushVec = VecInit(snpt.io.snapshots.map { snapshot => 459 val notCFIMask = snapshot.isCFI.map(~_) 460 val shouldFlush = snapshot.robIdx.map(robIdx => robIdx >= s1_s3_redirect.bits.robIdx || robIdx.value === s1_s3_redirect.bits.robIdx.value) 461 val shouldFlushMask = (1 to RenameWidth).map(shouldFlush take _ reduce (_ || _)) 462 s1_s3_redirect.valid && Cat(shouldFlushMask.zip(notCFIMask).map(x => x._1 | x._2)).andR 463 }) 464 val flushVecNext = flushVec zip snpt.io.valids map (x => GatedValidRegNext(x._1 && x._2, false.B)) 465 snpt.io.flushVec := flushVecNext 466 467 val useSnpt = VecInit.tabulate(RenameSnapshotNum)(idx => 468 snpt.io.valids(idx) && (s1_s3_redirect.bits.robIdx > snpt.io.snapshots(idx).robIdx.head || 469 !s1_s3_redirect.bits.flushItself() && s1_s3_redirect.bits.robIdx === snpt.io.snapshots(idx).robIdx.head) 470 ).reduceTree(_ || _) 471 val snptSelect = MuxCase( 472 0.U(log2Ceil(RenameSnapshotNum).W), 473 (1 to RenameSnapshotNum).map(i => (snpt.io.enqPtr - i.U).value).map(idx => 474 (snpt.io.valids(idx) && (s1_s3_redirect.bits.robIdx > snpt.io.snapshots(idx).robIdx.head || 475 !s1_s3_redirect.bits.flushItself() && s1_s3_redirect.bits.robIdx === snpt.io.snapshots(idx).robIdx.head), idx) 476 ) 477 ) 478 479 rob.io.snpt.snptEnq := DontCare 480 rob.io.snpt.snptDeq := snpt.io.deq 481 rob.io.snpt.useSnpt := useSnpt 482 rob.io.snpt.snptSelect := snptSelect 483 rob.io.snpt.flushVec := flushVecNext 484 rat.io.snpt.snptEnq := genSnapshot 485 rat.io.snpt.snptDeq := snpt.io.deq 486 rat.io.snpt.useSnpt := useSnpt 487 rat.io.snpt.snptSelect := snptSelect 488 rat.io.snpt.flushVec := flushVec 489 490 val decodeHasException = decode.io.out.map(x => x.bits.exceptionVec(instrPageFault) || x.bits.exceptionVec(instrAccessFault)) 491 // fusion decoder 492 for (i <- 0 until DecodeWidth) { 493 fusionDecoder.io.in(i).valid := decode.io.out(i).valid && !(decodeHasException(i) || disableFusion) 494 fusionDecoder.io.in(i).bits := decode.io.out(i).bits.instr 495 if (i > 0) { 496 fusionDecoder.io.inReady(i - 1) := decode.io.out(i).ready 497 } 498 } 499 500 private val decodePipeRename = Wire(Vec(RenameWidth, DecoupledIO(new DecodedInst))) 501 for (i <- 0 until RenameWidth) { 502 PipelineConnect(decode.io.out(i), decodePipeRename(i), rename.io.in(i).ready, 503 s1_s3_redirect.valid || s2_s4_pendingRedirectValid, moduleName = Some("decodePipeRenameModule")) 504 505 decodePipeRename(i).ready := rename.io.in(i).ready 506 rename.io.in(i).valid := decodePipeRename(i).valid && !fusionDecoder.io.clear(i) 507 rename.io.in(i).bits := decodePipeRename(i).bits 508 dispatch.io.renameIn(i).valid := decodePipeRename(i).valid && !fusionDecoder.io.clear(i) && !decodePipeRename(i).bits.isMove 509 dispatch.io.renameIn(i).bits := decodePipeRename(i).bits 510 } 511 512 for (i <- 0 until RenameWidth - 1) { 513 fusionDecoder.io.dec(i) := decodePipeRename(i).bits 514 rename.io.fusionInfo(i) := fusionDecoder.io.info(i) 515 516 // update the first RenameWidth - 1 instructions 517 decode.io.fusion(i) := fusionDecoder.io.out(i).valid && rename.io.out(i).fire 518 when (fusionDecoder.io.out(i).valid) { 519 fusionDecoder.io.out(i).bits.update(rename.io.in(i).bits) 520 fusionDecoder.io.out(i).bits.update(dispatch.io.renameIn(i).bits) 521 // TODO: remove this dirty code for ftq update 522 val sameFtqPtr = rename.io.in(i).bits.ftqPtr.value === rename.io.in(i + 1).bits.ftqPtr.value 523 val ftqOffset0 = rename.io.in(i).bits.ftqOffset 524 val ftqOffset1 = rename.io.in(i + 1).bits.ftqOffset 525 val ftqOffsetDiff = ftqOffset1 - ftqOffset0 526 val cond1 = sameFtqPtr && ftqOffsetDiff === 1.U 527 val cond2 = sameFtqPtr && ftqOffsetDiff === 2.U 528 val cond3 = !sameFtqPtr && ftqOffset1 === 0.U 529 val cond4 = !sameFtqPtr && ftqOffset1 === 1.U 530 rename.io.in(i).bits.commitType := Mux(cond1, 4.U, Mux(cond2, 5.U, Mux(cond3, 6.U, 7.U))) 531 XSError(!cond1 && !cond2 && !cond3 && !cond4, p"new condition $sameFtqPtr $ftqOffset0 $ftqOffset1\n") 532 } 533 534 } 535 536 // memory dependency predict 537 // when decode, send fold pc to mdp 538 private val mdpFlodPcVecVld = Wire(Vec(DecodeWidth, Bool())) 539 private val mdpFlodPcVec = Wire(Vec(DecodeWidth, UInt(MemPredPCWidth.W))) 540 for (i <- 0 until DecodeWidth) { 541 mdpFlodPcVecVld(i) := decode.io.out(i).fire || GatedValidRegNext(decode.io.out(i).fire) 542 mdpFlodPcVec(i) := Mux( 543 decode.io.out(i).fire, 544 decode.io.in(i).bits.foldpc, 545 rename.io.in(i).bits.foldpc 546 ) 547 } 548 549 // currently, we only update mdp info when isReplay 550 memCtrl.io.redirect := s1_s3_redirect 551 memCtrl.io.csrCtrl := io.csrCtrl // RegNext in memCtrl 552 memCtrl.io.stIn := io.fromMem.stIn // RegNext in memCtrl 553 memCtrl.io.memPredUpdate := redirectGen.io.memPredUpdate // RegNext in memCtrl 554 memCtrl.io.mdpFoldPcVecVld := mdpFlodPcVecVld 555 memCtrl.io.mdpFlodPcVec := mdpFlodPcVec 556 memCtrl.io.dispatchLFSTio <> dispatch.io.lfst 557 558 rat.io.redirect := s1_s3_redirect.valid 559 rat.io.rabCommits := rob.io.rabCommits 560 rat.io.diffCommits.foreach(_ := rob.io.diffCommits.get) 561 rat.io.intRenamePorts := rename.io.intRenamePorts 562 rat.io.fpRenamePorts := rename.io.fpRenamePorts 563 rat.io.vecRenamePorts := rename.io.vecRenamePorts 564 rat.io.v0RenamePorts := rename.io.v0RenamePorts 565 rat.io.vlRenamePorts := rename.io.vlRenamePorts 566 567 rename.io.redirect := s1_s3_redirect 568 rename.io.rabCommits := rob.io.rabCommits 569 rename.io.singleStep := GatedValidRegNext(io.csrCtrl.singlestep) 570 rename.io.waittable := (memCtrl.io.waitTable2Rename zip decode.io.out).map{ case(waittable2rename, decodeOut) => 571 RegEnable(waittable2rename, decodeOut.fire) 572 } 573 rename.io.ssit := memCtrl.io.ssit2Rename 574 // disble mdp 575 dispatch.io.lfst.resp := 0.U.asTypeOf(dispatch.io.lfst.resp) 576 rename.io.waittable := 0.U.asTypeOf(rename.io.waittable) 577 rename.io.ssit := 0.U.asTypeOf(rename.io.ssit) 578 rename.io.intReadPorts := VecInit(rat.io.intReadPorts.map(x => VecInit(x.map(_.data)))) 579 rename.io.fpReadPorts := VecInit(rat.io.fpReadPorts.map(x => VecInit(x.map(_.data)))) 580 rename.io.vecReadPorts := VecInit(rat.io.vecReadPorts.map(x => VecInit(x.map(_.data)))) 581 rename.io.v0ReadPorts := VecInit(rat.io.v0ReadPorts.map(x => VecInit(x.data))) 582 rename.io.vlReadPorts := VecInit(rat.io.vlReadPorts.map(x => VecInit(x.data))) 583 rename.io.int_need_free := rat.io.int_need_free 584 rename.io.int_old_pdest := rat.io.int_old_pdest 585 rename.io.fp_old_pdest := rat.io.fp_old_pdest 586 rename.io.vec_old_pdest := rat.io.vec_old_pdest 587 rename.io.v0_old_pdest := rat.io.v0_old_pdest 588 rename.io.vl_old_pdest := rat.io.vl_old_pdest 589 rename.io.debug_int_rat.foreach(_ := rat.io.debug_int_rat.get) 590 rename.io.debug_fp_rat.foreach(_ := rat.io.debug_fp_rat.get) 591 rename.io.debug_vec_rat.foreach(_ := rat.io.debug_vec_rat.get) 592 rename.io.debug_v0_rat.foreach(_ := rat.io.debug_v0_rat.get) 593 rename.io.debug_vl_rat.foreach(_ := rat.io.debug_vl_rat.get) 594 rename.io.stallReason.in <> decode.io.stallReason.out 595 rename.io.snpt.snptEnq := DontCare 596 rename.io.snpt.snptDeq := snpt.io.deq 597 rename.io.snpt.useSnpt := useSnpt 598 rename.io.snpt.snptSelect := snptSelect 599 rename.io.snptIsFull := snpt.io.valids.asUInt.andR 600 rename.io.snpt.flushVec := flushVecNext 601 rename.io.snptLastEnq.valid := !isEmpty(snpt.io.enqPtr, snpt.io.deqPtr) 602 rename.io.snptLastEnq.bits := snpt.io.snapshots((snpt.io.enqPtr - 1.U).value).robIdx.head 603 604 val renameOut = Wire(chiselTypeOf(rename.io.out)) 605 renameOut <> rename.io.out 606 // pass all snapshot in the first element for correctness of blockBackward 607 renameOut.tail.foreach(_.bits.snapshot := false.B) 608 renameOut.head.bits.snapshot := Mux(isFull(snpt.io.enqPtr, snpt.io.deqPtr), 609 false.B, 610 Cat(rename.io.out.map(out => out.valid && out.bits.snapshot)).orR 611 ) 612 613 // pipeline between rename and dispatch 614 PipeGroupConnect(renameOut, dispatch.io.fromRename, s1_s3_redirect.valid, dispatch.io.toRenameAllFire, "renamePipeDispatch") 615 616 dispatch.io.redirect := s1_s3_redirect 617 val enqRob = Wire(chiselTypeOf(rob.io.enq)) 618 enqRob.canAccept := rob.io.enq.canAccept 619 enqRob.canAcceptForDispatch := rob.io.enq.canAcceptForDispatch 620 enqRob.isEmpty := rob.io.enq.isEmpty 621 enqRob.resp := rob.io.enq.resp 622 enqRob.needAlloc := RegNext(dispatch.io.enqRob.needAlloc) 623 enqRob.req.zip(dispatch.io.enqRob.req).map { case (sink, source) => 624 sink.valid := RegNext(source.valid && !rob.io.redirect.valid) 625 sink.bits := RegEnable(source.bits, source.valid) 626 } 627 dispatch.io.enqRob.canAccept := enqRob.canAcceptForDispatch && !enqRob.req.map(x => x.valid && x.bits.blockBackward && enqRob.canAccept).reduce(_ || _) 628 dispatch.io.enqRob.canAcceptForDispatch := enqRob.canAcceptForDispatch 629 dispatch.io.enqRob.isEmpty := enqRob.isEmpty && !enqRob.req.map(_.valid).reduce(_ || _) 630 dispatch.io.enqRob.resp := enqRob.resp 631 rob.io.enq.needAlloc := enqRob.needAlloc 632 rob.io.enq.req := enqRob.req 633 dispatch.io.robHead := rob.io.debugRobHead 634 dispatch.io.stallReason <> rename.io.stallReason.out 635 dispatch.io.lqCanAccept := io.lqCanAccept 636 dispatch.io.sqCanAccept := io.sqCanAccept 637 dispatch.io.fromMem.lcommit := io.fromMemToDispatch.lcommit 638 dispatch.io.fromMem.scommit := io.fromMemToDispatch.scommit 639 dispatch.io.fromMem.lqDeqPtr := io.fromMemToDispatch.lqDeqPtr 640 dispatch.io.fromMem.sqDeqPtr := io.fromMemToDispatch.sqDeqPtr 641 dispatch.io.fromMem.lqCancelCnt := io.fromMemToDispatch.lqCancelCnt 642 dispatch.io.fromMem.sqCancelCnt := io.fromMemToDispatch.sqCancelCnt 643 io.toMem.lsqEnqIO <> dispatch.io.toMem.lsqEnqIO 644 dispatch.io.wakeUpAll.wakeUpInt := io.toDispatch.wakeUpInt 645 dispatch.io.wakeUpAll.wakeUpFp := io.toDispatch.wakeUpFp 646 dispatch.io.wakeUpAll.wakeUpVec := io.toDispatch.wakeUpVec 647 dispatch.io.wakeUpAll.wakeUpMem := io.toDispatch.wakeUpMem 648 dispatch.io.IQValidNumVec := io.toDispatch.IQValidNumVec 649 dispatch.io.ldCancel := io.toDispatch.ldCancel 650 dispatch.io.og0Cancel := io.toDispatch.og0Cancel 651 dispatch.io.wbPregsInt := io.toDispatch.wbPregsInt 652 dispatch.io.wbPregsFp := io.toDispatch.wbPregsFp 653 dispatch.io.wbPregsVec := io.toDispatch.wbPregsVec 654 dispatch.io.wbPregsV0 := io.toDispatch.wbPregsV0 655 dispatch.io.wbPregsVl := io.toDispatch.wbPregsVl 656 dispatch.io.robHeadNotReady := rob.io.headNotReady 657 dispatch.io.robFull := rob.io.robFull 658 dispatch.io.singleStep := GatedValidRegNext(io.csrCtrl.singlestep) 659 660 val toIssueBlockUops = Seq(io.toIssueBlock.intUops, io.toIssueBlock.fpUops, io.toIssueBlock.vfUops, io.toIssueBlock.memUops).flatten 661 toIssueBlockUops.zip(dispatch.io.toIssueQueues).map(x => x._1 <> x._2) 662 io.toIssueBlock.flush <> s2_s4_redirect 663 664 pcMem.io.wen.head := GatedValidRegNext(io.frontend.fromFtq.pc_mem_wen) 665 pcMem.io.waddr.head := RegEnable(io.frontend.fromFtq.pc_mem_waddr, io.frontend.fromFtq.pc_mem_wen) 666 pcMem.io.wdata.head := RegEnable(io.frontend.fromFtq.pc_mem_wdata, io.frontend.fromFtq.pc_mem_wen) 667 668 io.toDataPath.flush := s2_s4_redirect 669 io.toExuBlock.flush := s2_s4_redirect 670 671 672 rob.io.hartId := io.fromTop.hartId 673 rob.io.redirect := s1_s3_redirect 674 rob.io.writeback := delayedNotFlushedWriteBack 675 rob.io.exuWriteback := delayedWriteBack 676 rob.io.writebackNums := VecInit(delayedNotFlushedWriteBackNums) 677 rob.io.writebackNeedFlush := delayedNotFlushedWriteBackNeedFlush 678 rob.io.readGPAMemData := gpaMem.io.exceptionReadData 679 rob.io.fromVecExcpMod.busy := io.fromVecExcpMod.busy 680 681 io.redirect := s1_s3_redirect 682 683 // rob to int block 684 io.robio.csr <> rob.io.csr 685 // When wfi is disabled, it will not block ROB commit. 686 rob.io.csr.wfiEvent := io.robio.csr.wfiEvent 687 rob.io.wfi_enable := decode.io.csrCtrl.wfi_enable 688 689 io.toTop.cpuHalt := DelayN(rob.io.cpu_halt, 5) 690 691 io.robio.csr.perfinfo.retiredInstr <> RegNext(rob.io.csr.perfinfo.retiredInstr) 692 io.robio.exception := rob.io.exception 693 io.robio.exception.bits.pc := s1_robFlushPc 694 695 // rob to mem block 696 io.robio.lsq <> rob.io.lsq 697 698 io.diff_int_rat.foreach(_ := rat.io.diff_int_rat.get) 699 io.diff_fp_rat .foreach(_ := rat.io.diff_fp_rat.get) 700 io.diff_vec_rat.foreach(_ := rat.io.diff_vec_rat.get) 701 io.diff_v0_rat .foreach(_ := rat.io.diff_v0_rat.get) 702 io.diff_vl_rat .foreach(_ := rat.io.diff_vl_rat.get) 703 704 rob.io.debug_ls := io.robio.debug_ls 705 rob.io.debugHeadLsIssue := io.robio.robHeadLsIssue 706 rob.io.lsTopdownInfo := io.robio.lsTopdownInfo 707 rob.io.csr.criticalErrorState := io.robio.csr.criticalErrorState 708 rob.io.debugEnqLsq := io.debugEnqLsq 709 710 io.robio.robDeqPtr := rob.io.robDeqPtr 711 712 io.robio.storeDebugInfo <> rob.io.storeDebugInfo 713 714 // rob to backend 715 io.robio.commitVType := rob.io.toDecode.commitVType 716 // exu block to decode 717 decode.io.vsetvlVType := io.toDecode.vsetvlVType 718 // backend to decode 719 decode.io.vstart := io.toDecode.vstart 720 // backend to rob 721 rob.io.vstartIsZero := io.toDecode.vstart === 0.U 722 723 io.toCSR.trapInstInfo := decode.io.toCSR.trapInstInfo 724 725 io.toVecExcpMod.logicPhyRegMap := rob.io.toVecExcpMod.logicPhyRegMap 726 io.toVecExcpMod.excpInfo := rob.io.toVecExcpMod.excpInfo 727 // T : rat receive rabCommit 728 // T+1: rat return oldPdest 729 io.toVecExcpMod.ratOldPest match { 730 case fromRat => 731 (0 until RabCommitWidth).foreach { idx => 732 fromRat.v0OldVdPdest(idx).valid := RegNext( 733 rat.io.rabCommits.isCommit && 734 rat.io.rabCommits.isWalk && 735 rat.io.rabCommits.commitValid(idx) && 736 rat.io.rabCommits.info(idx).v0Wen 737 ) 738 fromRat.v0OldVdPdest(idx).bits := rat.io.v0_old_pdest(idx) 739 fromRat.vecOldVdPdest(idx).valid := RegNext( 740 rat.io.rabCommits.isCommit && 741 rat.io.rabCommits.isWalk && 742 rat.io.rabCommits.commitValid(idx) && 743 rat.io.rabCommits.info(idx).vecWen 744 ) 745 fromRat.vecOldVdPdest(idx).bits := rat.io.vec_old_pdest(idx) 746 } 747 } 748 749 io.debugTopDown.fromRob := rob.io.debugTopDown.toCore 750 dispatch.io.debugTopDown.fromRob := rob.io.debugTopDown.toDispatch 751 dispatch.io.debugTopDown.fromCore := io.debugTopDown.fromCore 752 io.debugRolling := rob.io.debugRolling 753 754 io.perfInfo.ctrlInfo.robFull := GatedValidRegNext(rob.io.robFull) 755 io.perfInfo.ctrlInfo.intdqFull := false.B 756 io.perfInfo.ctrlInfo.fpdqFull := false.B 757 io.perfInfo.ctrlInfo.lsdqFull := false.B 758 759 val perfEvents = Seq(decode, rename, dispatch, rob).flatMap(_.getPerfEvents) 760 generatePerfEvent() 761 762 val criticalErrors = rob.getCriticalErrors 763 generateCriticalErrors() 764} 765 766class CtrlBlockIO()(implicit p: Parameters, params: BackendParams) extends XSBundle { 767 val fromTop = new Bundle { 768 val hartId = Input(UInt(8.W)) 769 } 770 val toTop = new Bundle { 771 val cpuHalt = Output(Bool()) 772 } 773 val frontend = Flipped(new FrontendToCtrlIO()) 774 val fromCSR = new Bundle{ 775 val toDecode = Input(new CSRToDecode) 776 val traceCSR = Input(new TraceCSR) 777 val instrAddrTransType = Input(new AddrTransType) 778 } 779 val toIssueBlock = new Bundle { 780 val flush = ValidIO(new Redirect) 781 val intUopsNum = backendParams.intSchdParams.get.issueBlockParams.map(_.numEnq).sum 782 val fpUopsNum = backendParams.fpSchdParams.get.issueBlockParams.map(_.numEnq).sum 783 val vfUopsNum = backendParams.vfSchdParams.get.issueBlockParams.map(_.numEnq).sum 784 val memUopsNum = backendParams.memSchdParams.get.issueBlockParams.filter(x => x.StdCnt == 0).map(_.numEnq).sum 785 val intUops = Vec(intUopsNum, DecoupledIO(new DynInst)) 786 val fpUops = Vec(fpUopsNum, DecoupledIO(new DynInst)) 787 val vfUops = Vec(vfUopsNum, DecoupledIO(new DynInst)) 788 val memUops = Vec(memUopsNum, DecoupledIO(new DynInst)) 789 } 790 val fromMemToDispatch = new Bundle { 791 val lcommit = Input(UInt(log2Up(CommitWidth + 1).W)) 792 val scommit = Input(UInt(log2Ceil(EnsbufferWidth + 1).W)) // connected to `memBlock.io.sqDeq` instead of ROB 793 val lqDeqPtr = Input(new LqPtr) 794 val sqDeqPtr = Input(new SqPtr) 795 // from lsq 796 val lqCancelCnt = Input(UInt(log2Up(VirtualLoadQueueSize + 1).W)) 797 val sqCancelCnt = Input(UInt(log2Up(StoreQueueSize + 1).W)) 798 } 799 //toMem 800 val toMem = new Bundle { 801 val lsqEnqIO = Flipped(new LsqEnqIO) 802 } 803 val toDispatch = new Bundle { 804 val wakeUpInt = Flipped(backendParams.intSchdParams.get.genIQWakeUpOutValidBundle) 805 val wakeUpFp = Flipped(backendParams.fpSchdParams.get.genIQWakeUpOutValidBundle) 806 val wakeUpVec = Flipped(backendParams.vfSchdParams.get.genIQWakeUpOutValidBundle) 807 val wakeUpMem = Flipped(backendParams.memSchdParams.get.genIQWakeUpOutValidBundle) 808 val allIssueParams = backendParams.allIssueParams.filter(_.StdCnt == 0) 809 val allExuParams = allIssueParams.map(_.exuBlockParams).flatten 810 val exuNum = allExuParams.size 811 val maxIQSize = allIssueParams.map(_.numEntries).max 812 val IQValidNumVec = Vec(exuNum, Input(UInt(maxIQSize.U.getWidth.W))) 813 val og0Cancel = Input(ExuVec()) 814 val ldCancel = Vec(backendParams.LdExuCnt, Flipped(new LoadCancelIO)) 815 val wbPregsInt = Vec(backendParams.numPregWb(IntData()), Flipped(ValidIO(UInt(PhyRegIdxWidth.W)))) 816 val wbPregsFp = Vec(backendParams.numPregWb(FpData()), Flipped(ValidIO(UInt(PhyRegIdxWidth.W)))) 817 val wbPregsVec = Vec(backendParams.numPregWb(VecData()), Flipped(ValidIO(UInt(PhyRegIdxWidth.W)))) 818 val wbPregsV0 = Vec(backendParams.numPregWb(V0Data()), Flipped(ValidIO(UInt(PhyRegIdxWidth.W)))) 819 val wbPregsVl = Vec(backendParams.numPregWb(VlData()), Flipped(ValidIO(UInt(PhyRegIdxWidth.W)))) 820 } 821 val toDataPath = new Bundle { 822 val flush = ValidIO(new Redirect) 823 val pcToDataPathIO = new PcToDataPathIO(params) 824 } 825 val toExuBlock = new Bundle { 826 val flush = ValidIO(new Redirect) 827 } 828 val toCSR = new Bundle { 829 val trapInstInfo = Output(ValidIO(new TrapInstInfo)) 830 } 831 val fromWB = new Bundle { 832 val wbData = Flipped(MixedVec(params.genWrite2CtrlBundles)) 833 } 834 val redirect = ValidIO(new Redirect) 835 val fromMem = new Bundle { 836 val stIn = Vec(params.StaExuCnt, Flipped(ValidIO(new DynInst))) // use storeSetHit, ssid, robIdx 837 val violation = Flipped(ValidIO(new Redirect)) 838 } 839 val memStPcRead = Vec(params.StaCnt, Flipped(new FtqRead(UInt(VAddrBits.W)))) 840 val memHyPcRead = Vec(params.HyuCnt, Flipped(new FtqRead(UInt(VAddrBits.W)))) 841 842 val csrCtrl = Input(new CustomCSRCtrlIO) 843 val robio = new Bundle { 844 val csr = new RobCSRIO 845 val exception = ValidIO(new ExceptionInfo) 846 val lsq = new RobLsqIO 847 val lsTopdownInfo = Vec(params.LduCnt + params.HyuCnt, Input(new LsTopdownInfo)) 848 val debug_ls = Input(new DebugLSIO()) 849 val robHeadLsIssue = Input(Bool()) 850 val robDeqPtr = Output(new RobPtr) 851 val commitVType = new Bundle { 852 val vtype = Output(ValidIO(VType())) 853 val hasVsetvl = Output(Bool()) 854 } 855 856 // store event difftest information 857 val storeDebugInfo = Vec(EnsbufferWidth, new Bundle { 858 val robidx = Input(new RobPtr) 859 val pc = Output(UInt(VAddrBits.W)) 860 }) 861 } 862 863 val toDecode = new Bundle { 864 val vsetvlVType = Input(VType()) 865 val vstart = Input(Vl()) 866 } 867 868 val fromVecExcpMod = Input(new Bundle { 869 val busy = Bool() 870 }) 871 872 val toVecExcpMod = Output(new Bundle { 873 val logicPhyRegMap = Vec(RabCommitWidth, ValidIO(new RegWriteFromRab)) 874 val excpInfo = ValidIO(new VecExcpInfo) 875 val ratOldPest = new RatToVecExcpMod 876 }) 877 878 val traceCoreInterface = new TraceCoreInterface 879 880 val perfInfo = Output(new Bundle{ 881 val ctrlInfo = new Bundle { 882 val robFull = Bool() 883 val intdqFull = Bool() 884 val fpdqFull = Bool() 885 val lsdqFull = Bool() 886 } 887 }) 888 val diff_int_rat = if (params.basicDebugEn) Some(Vec(32, Output(UInt(PhyRegIdxWidth.W)))) else None 889 val diff_fp_rat = if (params.basicDebugEn) Some(Vec(32, Output(UInt(PhyRegIdxWidth.W)))) else None 890 val diff_vec_rat = if (params.basicDebugEn) Some(Vec(31, Output(UInt(PhyRegIdxWidth.W)))) else None 891 val diff_v0_rat = if (params.basicDebugEn) Some(Vec(1, Output(UInt(PhyRegIdxWidth.W)))) else None 892 val diff_vl_rat = if (params.basicDebugEn) Some(Vec(1, Output(UInt(PhyRegIdxWidth.W)))) else None 893 894 val sqCanAccept = Input(Bool()) 895 val lqCanAccept = Input(Bool()) 896 897 val debugTopDown = new Bundle { 898 val fromRob = new RobCoreTopDownIO 899 val fromCore = new CoreDispatchTopDownIO 900 } 901 val debugRolling = new RobDebugRollingIO 902 val debugEnqLsq = Input(new LsqEnqIO) 903} 904 905class NamedIndexes(namedCnt: Seq[(String, Int)]) { 906 require(namedCnt.map(_._1).distinct.size == namedCnt.size, "namedCnt should not have the same name") 907 908 val maxIdx = namedCnt.map(_._2).sum 909 val nameRangeMap: Map[String, (Int, Int)] = namedCnt.indices.map { i => 910 val begin = namedCnt.slice(0, i).map(_._2).sum 911 val end = begin + namedCnt(i)._2 912 (namedCnt(i)._1, (begin, end)) 913 }.toMap 914 915 def apply(name: String): Seq[Int] = { 916 require(nameRangeMap.contains(name)) 917 nameRangeMap(name)._1 until nameRangeMap(name)._2 918 } 919} 920