xref: /XiangShan/src/main/scala/xiangshan/backend/CtrlBlock.scala (revision 0d32f7132f120ac0b32ab552fe0da4934208dd01)
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 chipsalliance.rocketchip.config.Parameters
20import chisel3._
21import chisel3.util._
22import freechips.rocketchip.diplomacy.{LazyModule, LazyModuleImp}
23import utils._
24import utility._
25import xiangshan._
26import xiangshan.backend.decode.{DecodeStage, FusionDecoder, ImmUnion}
27import xiangshan.backend.dispatch.{Dispatch, Dispatch2Rs, DispatchQueue}
28import xiangshan.backend.fu.PFEvent
29import xiangshan.backend.rename.{Rename, RenameTableWrapper}
30import xiangshan.backend.rob.{DebugLSIO, LsTopdownInfo, Rob, RobCSRIO, RobLsqIO, RobPtr}
31import xiangshan.frontend.{FtqPtr, FtqRead, Ftq_RF_Components}
32import xiangshan.mem.mdp.{LFST, SSIT, WaitTable}
33import xiangshan.ExceptionNO._
34import xiangshan.backend.exu.ExuConfig
35import xiangshan.mem.{LsqEnqCtrl, LsqEnqIO}
36
37class CtrlToFtqIO(implicit p: Parameters) extends XSBundle {
38  def numRedirect = exuParameters.JmpCnt + exuParameters.AluCnt
39  val rob_commits = Vec(CommitWidth, Valid(new RobCommitInfo))
40  val redirect = Valid(new Redirect)
41}
42
43class SnapshotPtr(implicit p: Parameters) extends CircularQueuePtr[SnapshotPtr](
44  p => p(XSCoreParamsKey).RenameSnapshotNum
45)
46
47object SnapshotGenerator extends HasCircularQueuePtrHelper {
48  def apply[T <: Data](enqData: T, enq: Bool, deq: Bool, flush: Bool)(implicit p: Parameters): Vec[T] = {
49    val snapshotGen = Module(new SnapshotGenerator(enqData))
50    snapshotGen.io.enq := enq
51    snapshotGen.io.enqData.head := enqData
52    snapshotGen.io.deq := deq
53    snapshotGen.io.flush := flush
54    snapshotGen.io.snapshots
55  }
56}
57
58class SnapshotGenerator[T <: Data](dataType: T)(implicit p: Parameters) extends XSModule
59  with HasCircularQueuePtrHelper {
60
61  class SnapshotGeneratorIO extends Bundle {
62    val enq = Input(Bool())
63    val enqData = Input(Vec(1, chiselTypeOf(dataType))) // make chisel happy
64    val deq = Input(Bool())
65    val flush = Input(Bool())
66    val snapshots = Output(Vec(RenameSnapshotNum, chiselTypeOf(dataType)))
67    val enqPtr = Output(new SnapshotPtr)
68    val deqPtr = Output(new SnapshotPtr)
69    val valids = Output(Vec(RenameSnapshotNum, Bool()))
70  }
71
72  val io = IO(new SnapshotGeneratorIO)
73
74  val snapshots = Reg(Vec(RenameSnapshotNum, chiselTypeOf(dataType)))
75  val snptEnqPtr = RegInit(0.U.asTypeOf(new SnapshotPtr))
76  val snptDeqPtr = RegInit(0.U.asTypeOf(new SnapshotPtr))
77  val snptValids = RegInit(VecInit.fill(RenameSnapshotNum)(false.B))
78
79  io.snapshots := snapshots
80  io.enqPtr := snptEnqPtr
81  io.deqPtr := snptDeqPtr
82  io.valids := snptValids
83
84  when(!isFull(snptEnqPtr, snptDeqPtr) && io.enq) {
85    snapshots(snptEnqPtr.value) := io.enqData.head
86    snptValids(snptEnqPtr.value) := true.B
87    snptEnqPtr := snptEnqPtr + 1.U
88  }
89  when(io.deq) {
90    snptValids(snptDeqPtr.value) := false.B
91    snptDeqPtr := snptDeqPtr + 1.U
92    XSError(isEmpty(snptEnqPtr, snptDeqPtr), "snapshots should not be empty when dequeue!\n")
93  }
94  when(io.flush) {
95    snptValids := 0.U.asTypeOf(snptValids)
96    snptEnqPtr := 0.U.asTypeOf(new SnapshotPtr)
97    snptDeqPtr := 0.U.asTypeOf(new SnapshotPtr)
98  }
99}
100
101class RedirectGenerator(implicit p: Parameters) extends XSModule
102  with HasCircularQueuePtrHelper {
103
104  class RedirectGeneratorIO(implicit p: Parameters) extends XSBundle {
105    def numRedirect = exuParameters.JmpCnt + exuParameters.AluCnt
106    val hartId = Input(UInt(8.W))
107    val exuMispredict = Vec(numRedirect, Flipped(ValidIO(new ExuOutput)))
108    val loadReplay = Flipped(ValidIO(new Redirect))
109    val flush = Input(Bool())
110    val redirectPcRead = new FtqRead(UInt(VAddrBits.W))
111    val stage2Redirect = ValidIO(new Redirect)
112    val stage3Redirect = ValidIO(new Redirect)
113    val memPredUpdate = Output(new MemPredUpdateReq)
114    val memPredPcRead = new FtqRead(UInt(VAddrBits.W)) // read req send form stage 2
115    val isMisspreRedirect = Output(Bool())
116  }
117  val io = IO(new RedirectGeneratorIO)
118  /*
119        LoadQueue  Jump  ALU0  ALU1  ALU2  ALU3   exception    Stage1
120          |         |      |    |     |     |         |
121          |============= reg & compare =====|         |       ========
122                            |                         |
123                            |                         |
124                            |                         |        Stage2
125                            |                         |
126                    redirect (flush backend)          |
127                    |                                 |
128               === reg ===                            |       ========
129                    |                                 |
130                    |----- mux (exception first) -----|        Stage3
131                            |
132                redirect (send to frontend)
133   */
134  def selectOldestRedirect(xs: Seq[Valid[Redirect]]): Vec[Bool] = {
135    val compareVec = (0 until xs.length).map(i => (0 until i).map(j => isAfter(xs(j).bits.robIdx, xs(i).bits.robIdx)))
136    val resultOnehot = VecInit((0 until xs.length).map(i => Cat((0 until xs.length).map(j =>
137      (if (j < i) !xs(j).valid || compareVec(i)(j)
138      else if (j == i) xs(i).valid
139      else !xs(j).valid || !compareVec(j)(i))
140    )).andR))
141    resultOnehot
142  }
143
144  def getRedirect(exuOut: Valid[ExuOutput]): ValidIO[Redirect] = {
145    val redirect = Wire(Valid(new Redirect))
146    redirect.valid := exuOut.valid && exuOut.bits.redirect.cfiUpdate.isMisPred
147    redirect.bits := exuOut.bits.redirect
148    redirect.bits.debugIsCtrl := true.B
149    redirect.bits.debugIsMemVio := false.B
150    redirect
151  }
152
153  val jumpOut = io.exuMispredict.head
154  val allRedirect = VecInit(io.exuMispredict.map(x => getRedirect(x)) :+ io.loadReplay)
155  val oldestOneHot = selectOldestRedirect(allRedirect)
156  val needFlushVec = VecInit(allRedirect.map(_.bits.robIdx.needFlush(io.stage2Redirect) || io.flush))
157  val oldestValid = VecInit(oldestOneHot.zip(needFlushVec).map{ case (v, f) => v && !f }).asUInt.orR
158  val oldestExuOutput = Mux1H(io.exuMispredict.indices.map(oldestOneHot), io.exuMispredict)
159  val oldestRedirect = Mux1H(oldestOneHot, allRedirect)
160  io.isMisspreRedirect := VecInit(io.exuMispredict.map(x => getRedirect(x).valid)).asUInt.orR
161  io.redirectPcRead.ptr := oldestRedirect.bits.ftqIdx
162  io.redirectPcRead.offset := oldestRedirect.bits.ftqOffset
163
164  val s1_jumpTarget = RegEnable(jumpOut.bits.redirect.cfiUpdate.target, jumpOut.valid)
165  val s1_imm12_reg = RegNext(oldestExuOutput.bits.uop.ctrl.imm(11, 0))
166  val s1_pd = RegNext(oldestExuOutput.bits.uop.cf.pd)
167  val s1_redirect_bits_reg = RegNext(oldestRedirect.bits)
168  val s1_redirect_valid_reg = RegNext(oldestValid)
169  val s1_redirect_onehot = RegNext(oldestOneHot)
170
171  // stage1 -> stage2
172  io.stage2Redirect.valid := s1_redirect_valid_reg && !io.flush
173  io.stage2Redirect.bits := s1_redirect_bits_reg
174
175  val s1_isReplay = s1_redirect_onehot.last
176  val s1_isJump = s1_redirect_onehot.head
177  val real_pc = io.redirectPcRead.data
178  val brTarget = real_pc + SignExt(ImmUnion.B.toImm32(s1_imm12_reg), XLEN)
179  val snpc = real_pc + Mux(s1_pd.isRVC, 2.U, 4.U)
180  val target = Mux(s1_isReplay,
181    real_pc, // replay from itself
182    Mux(s1_redirect_bits_reg.cfiUpdate.taken,
183      Mux(s1_isJump, s1_jumpTarget, brTarget),
184      snpc
185    )
186  )
187
188  val stage2CfiUpdate = io.stage2Redirect.bits.cfiUpdate
189  stage2CfiUpdate.pc := real_pc
190  stage2CfiUpdate.pd := s1_pd
191  // stage2CfiUpdate.predTaken := s1_redirect_bits_reg.cfiUpdate.predTaken
192  stage2CfiUpdate.target := target
193  // stage2CfiUpdate.taken := s1_redirect_bits_reg.cfiUpdate.taken
194  // stage2CfiUpdate.isMisPred := s1_redirect_bits_reg.cfiUpdate.isMisPred
195
196  val s2_target = RegEnable(target, s1_redirect_valid_reg)
197  val s2_pc = RegEnable(real_pc, s1_redirect_valid_reg)
198  val s2_redirect_bits_reg = RegEnable(s1_redirect_bits_reg, s1_redirect_valid_reg)
199  val s2_redirect_valid_reg = RegNext(s1_redirect_valid_reg && !io.flush, init = false.B)
200
201  io.stage3Redirect.valid := s2_redirect_valid_reg
202  io.stage3Redirect.bits := s2_redirect_bits_reg
203
204  // get pc from ftq
205  // valid only if redirect is caused by load violation
206  // store_pc is used to update store set
207  val store_pc = io.memPredPcRead(s1_redirect_bits_reg.stFtqIdx, s1_redirect_bits_reg.stFtqOffset)
208
209  // update load violation predictor if load violation redirect triggered
210  io.memPredUpdate.valid := RegNext(s1_isReplay && s1_redirect_valid_reg, init = false.B)
211  // update wait table
212  io.memPredUpdate.waddr := RegNext(XORFold(real_pc(VAddrBits-1, 1), MemPredPCWidth))
213  io.memPredUpdate.wdata := true.B
214  // update store set
215  io.memPredUpdate.ldpc := RegNext(XORFold(real_pc(VAddrBits-1, 1), MemPredPCWidth))
216  // store pc is ready 1 cycle after s1_isReplay is judged
217  io.memPredUpdate.stpc := XORFold(store_pc(VAddrBits-1, 1), MemPredPCWidth)
218
219  // // recover runahead checkpoint if redirect
220  // if (!env.FPGAPlatform) {
221  //   val runahead_redirect = Module(new DifftestRunaheadRedirectEvent)
222  //   runahead_redirect.io.clock := clock
223  //   runahead_redirect.io.coreid := io.hartId
224  //   runahead_redirect.io.valid := io.stage3Redirect.valid
225  //   runahead_redirect.io.pc :=  s2_pc // for debug only
226  //   runahead_redirect.io.target_pc := s2_target // for debug only
227  //   runahead_redirect.io.checkpoint_id := io.stage3Redirect.bits.debug_runahead_checkpoint_id // make sure it is right
228  // }
229}
230
231class CtrlBlock(dpExuConfigs: Seq[Seq[Seq[ExuConfig]]])(implicit p: Parameters) extends LazyModule
232  with HasWritebackSink with HasWritebackSource {
233  val rob = LazyModule(new Rob)
234
235  override def addWritebackSink(source: Seq[HasWritebackSource], index: Option[Seq[Int]]): HasWritebackSink = {
236    rob.addWritebackSink(Seq(this), Some(Seq(writebackSinks.length)))
237    super.addWritebackSink(source, index)
238  }
239
240  // duplicated dispatch2 here to avoid cross-module timing path loop.
241  val dispatch2 = dpExuConfigs.map(c => LazyModule(new Dispatch2Rs(c)))
242  lazy val module = new CtrlBlockImp(this)
243
244  override lazy val writebackSourceParams: Seq[WritebackSourceParams] = {
245    writebackSinksParams
246  }
247  override lazy val writebackSourceImp: HasWritebackSourceImp = module
248
249  override def generateWritebackIO(
250    thisMod: Option[HasWritebackSource] = None,
251    thisModImp: Option[HasWritebackSourceImp] = None
252  ): Unit = {
253    module.io.writeback.zip(writebackSinksImp(thisMod, thisModImp)).foreach(x => x._1 := x._2)
254  }
255}
256
257class CtrlBlockImp(outer: CtrlBlock)(implicit p: Parameters) extends LazyModuleImp(outer)
258  with HasXSParameter
259  with HasCircularQueuePtrHelper
260  with HasWritebackSourceImp
261  with HasPerfEvents
262{
263  val writebackLengths = outer.writebackSinksParams.map(_.length)
264
265  val io = IO(new Bundle {
266    val hartId = Input(UInt(8.W))
267    val cpu_halt = Output(Bool())
268    val frontend = Flipped(new FrontendToCtrlIO)
269    // to exu blocks
270    val allocPregs = Vec(RenameWidth, Output(new ResetPregStateReq))
271    val dispatch = Vec(3*dpParams.IntDqDeqWidth, DecoupledIO(new MicroOp))
272    val rsReady = Vec(outer.dispatch2.map(_.module.io.out.length).sum, Input(Bool()))
273    val enqLsq = Flipped(new LsqEnqIO)
274    val lqCancelCnt = Input(UInt(log2Up(VirtualLoadQueueSize + 1).W))
275    val sqCancelCnt = Input(UInt(log2Up(StoreQueueSize + 1).W))
276    val lqDeq = Input(UInt(log2Up(CommitWidth + 1).W))
277    val sqDeq = Input(UInt(log2Ceil(EnsbufferWidth + 1).W))
278    val sqCanAccept = Input(Bool())
279    val lqCanAccept = Input(Bool())
280    val ld_pc_read = Vec(exuParameters.LduCnt, Flipped(new FtqRead(UInt(VAddrBits.W))))
281    val st_pc_read = Vec(exuParameters.StuCnt, Flipped(new FtqRead(UInt(VAddrBits.W))))
282    // from int block
283    val exuRedirect = Vec(exuParameters.AluCnt + exuParameters.JmpCnt, Flipped(ValidIO(new ExuOutput)))
284    val stIn = Vec(exuParameters.StuCnt, Flipped(ValidIO(new ExuInput)))
285    val memoryViolation = Flipped(ValidIO(new Redirect))
286    val jumpPc = Output(UInt(VAddrBits.W))
287    val jalr_target = Output(UInt(VAddrBits.W))
288    val robio = new Bundle {
289      // to int block
290      val toCSR = new RobCSRIO
291      val exception = ValidIO(new ExceptionInfo)
292      // to mem block
293      val lsq = new RobLsqIO
294      // debug
295      val debug_ls = Flipped(new DebugLSIO)
296      val lsTopdownInfo = Vec(exuParameters.LduCnt, Input(new LsTopdownInfo))
297    }
298    val csrCtrl = Input(new CustomCSRCtrlIO)
299    val perfInfo = Output(new Bundle{
300      val ctrlInfo = new Bundle {
301        val robFull   = Input(Bool())
302        val intdqFull = Input(Bool())
303        val fpdqFull  = Input(Bool())
304        val lsdqFull  = Input(Bool())
305      }
306    })
307    val writeback = MixedVec(writebackLengths.map(num => Vec(num, Flipped(ValidIO(new ExuOutput)))))
308    // redirect out
309    val redirect = ValidIO(new Redirect)
310    // debug
311    val debug_int_rat = Vec(32, Output(UInt(PhyRegIdxWidth.W)))
312    val debug_fp_rat = Vec(32, Output(UInt(PhyRegIdxWidth.W)))
313    val robDeqPtr = Output(new RobPtr)
314    val robHeadLsIssue = Input(Bool())
315  })
316
317  override def writebackSource: Option[Seq[Seq[Valid[ExuOutput]]]] = {
318    Some(io.writeback.map(writeback => {
319      val exuOutput = WireInit(writeback)
320      val timer = GTimer()
321      for ((wb_next, wb) <- exuOutput.zip(writeback)) {
322        wb_next.valid := RegNext(wb.valid && !wb.bits.uop.robIdx.needFlush(Seq(stage2Redirect, redirectForExu)))
323        wb_next.bits := RegNext(wb.bits)
324        wb_next.bits.uop.debugInfo.writebackTime := timer
325      }
326      exuOutput
327    }))
328  }
329
330  val decode = Module(new DecodeStage)
331  val fusionDecoder = Module(new FusionDecoder)
332  val rat = Module(new RenameTableWrapper)
333  val ssit = Module(new SSIT)
334  val waittable = Module(new WaitTable)
335  val rename = Module(new Rename)
336  val dispatch = Module(new Dispatch)
337  val intDq = Module(new DispatchQueue(dpParams.IntDqSize, RenameWidth, dpParams.IntDqDeqWidth))
338  val fpDq = Module(new DispatchQueue(dpParams.FpDqSize, RenameWidth, dpParams.FpDqDeqWidth))
339  val lsDq = Module(new DispatchQueue(dpParams.LsDqSize, RenameWidth, dpParams.LsDqDeqWidth))
340  val redirectGen = Module(new RedirectGenerator)
341  val rob = outer.rob.module
342
343  // jumpPc (2) + redirects (1) + loadPredUpdate (1) + jalr_target (1) + [ld pc (LduCnt)] + robWriteback (sum(writebackLengths)) + robFlush (1)
344  val PCMEMIDX_LD = 5
345  val PCMEMIDX_ST = PCMEMIDX_LD + exuParameters.LduCnt
346  val PCMEM_READ_PORT_COUNT = if(EnableStorePrefetchSMS) 6 + exuParameters.LduCnt + exuParameters.StuCnt else 6 + exuParameters.LduCnt
347  val pcMem = Module(new SyncDataModuleTemplate(
348    new Ftq_RF_Components, FtqSize,
349    PCMEM_READ_PORT_COUNT, 1, "CtrlPcMem")
350  )
351  pcMem.io.wen.head   := RegNext(io.frontend.fromFtq.pc_mem_wen)
352  pcMem.io.waddr.head := RegNext(io.frontend.fromFtq.pc_mem_waddr)
353  pcMem.io.wdata.head := RegNext(io.frontend.fromFtq.pc_mem_wdata)
354
355  pcMem.io.raddr.last := rob.io.flushOut.bits.ftqIdx.value
356  val flushPC = pcMem.io.rdata.last.getPc(RegNext(rob.io.flushOut.bits.ftqOffset))
357
358  val flushRedirect = Wire(Valid(new Redirect))
359  flushRedirect.valid := RegNext(rob.io.flushOut.valid)
360  flushRedirect.bits := RegEnable(rob.io.flushOut.bits, rob.io.flushOut.valid)
361  flushRedirect.bits.debugIsCtrl := false.B
362  flushRedirect.bits.debugIsMemVio := false.B
363
364  val flushRedirectReg = Wire(Valid(new Redirect))
365  flushRedirectReg.valid := RegNext(flushRedirect.valid, init = false.B)
366  flushRedirectReg.bits := RegEnable(flushRedirect.bits, flushRedirect.valid)
367
368  val stage2Redirect = Mux(flushRedirect.valid, flushRedirect, redirectGen.io.stage2Redirect)
369  // Redirect will be RegNext at ExuBlocks.
370  val redirectForExu = RegNextWithEnable(stage2Redirect)
371
372  val exuRedirect = io.exuRedirect.map(x => {
373    val valid = x.valid && x.bits.redirectValid
374    val killedByOlder = x.bits.uop.robIdx.needFlush(Seq(stage2Redirect, redirectForExu))
375    val delayed = Wire(Valid(new ExuOutput))
376    delayed.valid := RegNext(valid && !killedByOlder, init = false.B)
377    delayed.bits := RegEnable(x.bits, x.valid)
378    delayed
379  })
380  val loadReplay = Wire(Valid(new Redirect))
381  loadReplay.valid := RegNext(io.memoryViolation.valid &&
382    !io.memoryViolation.bits.robIdx.needFlush(Seq(stage2Redirect, redirectForExu)),
383    init = false.B
384  )
385  val memVioBits = WireDefault(io.memoryViolation.bits)
386  memVioBits.debugIsCtrl := false.B
387  memVioBits.debugIsMemVio := true.B
388  loadReplay.bits := RegEnable(memVioBits, io.memoryViolation.valid)
389  pcMem.io.raddr(2) := redirectGen.io.redirectPcRead.ptr.value
390  redirectGen.io.redirectPcRead.data := pcMem.io.rdata(2).getPc(RegNext(redirectGen.io.redirectPcRead.offset))
391  pcMem.io.raddr(3) := redirectGen.io.memPredPcRead.ptr.value
392  redirectGen.io.memPredPcRead.data := pcMem.io.rdata(3).getPc(RegNext(redirectGen.io.memPredPcRead.offset))
393  redirectGen.io.hartId := io.hartId
394  redirectGen.io.exuMispredict <> exuRedirect
395  redirectGen.io.loadReplay <> loadReplay
396  redirectGen.io.flush := flushRedirect.valid
397
398  val frontendFlushValid = DelayN(flushRedirect.valid, 5)
399  val frontendFlushBits = RegEnable(flushRedirect.bits, flushRedirect.valid)
400  // When ROB commits an instruction with a flush, we notify the frontend of the flush without the commit.
401  // Flushes to frontend may be delayed by some cycles and commit before flush causes errors.
402  // Thus, we make all flush reasons to behave the same as exceptions for frontend.
403  for (i <- 0 until CommitWidth) {
404    // why flushOut: instructions with flushPipe are not commited to frontend
405    // If we commit them to frontend, it will cause flush after commit, which is not acceptable by frontend.
406    val is_commit = rob.io.commits.commitValid(i) && rob.io.commits.isCommit && !rob.io.flushOut.valid
407    io.frontend.toFtq.rob_commits(i).valid := RegNext(is_commit)
408    io.frontend.toFtq.rob_commits(i).bits := RegEnable(rob.io.commits.info(i), is_commit)
409  }
410  io.frontend.toFtq.redirect.valid := frontendFlushValid || redirectGen.io.stage2Redirect.valid
411  io.frontend.toFtq.redirect.bits := Mux(frontendFlushValid, frontendFlushBits, redirectGen.io.stage2Redirect.bits)
412  // Be careful here:
413  // T0: flushRedirect.valid, exception.valid
414  // T1: csr.redirect.valid
415  // T2: csr.exception.valid
416  // T3: csr.trapTarget
417  // T4: ctrlBlock.trapTarget
418  // T5: io.frontend.toFtq.stage2Redirect.valid
419  val pc_from_csr = io.robio.toCSR.isXRet || DelayN(rob.io.exception.valid, 4)
420  val rob_flush_pc = RegEnable(Mux(flushRedirect.bits.flushItself(),
421    flushPC, // replay inst
422    flushPC + Mux(flushRedirect.bits.isRVC, 2.U, 4.U) // flush pipe
423  ), flushRedirect.valid)
424  val flushTarget = Mux(pc_from_csr, io.robio.toCSR.trapTarget, rob_flush_pc)
425  when (frontendFlushValid) {
426    io.frontend.toFtq.redirect.bits.level := RedirectLevel.flush
427    io.frontend.toFtq.redirect.bits.cfiUpdate.target := RegNext(flushTarget)
428  }
429
430
431  val pendingRedirect = RegInit(false.B)
432  when (stage2Redirect.valid) {
433    pendingRedirect := true.B
434  }.elsewhen (RegNext(io.frontend.toFtq.redirect.valid)) {
435    pendingRedirect := false.B
436  }
437
438  decode.io.in <> io.frontend.cfVec
439  decode.io.stallReason.in <> io.frontend.stallReason
440  decode.io.csrCtrl := RegNext(io.csrCtrl)
441  decode.io.intRat <> rat.io.intReadPorts
442  decode.io.fpRat <> rat.io.fpReadPorts
443
444  // memory dependency predict
445  // when decode, send fold pc to mdp
446  for (i <- 0 until DecodeWidth) {
447    val mdp_foldpc = Mux(
448      decode.io.out(i).fire,
449      decode.io.in(i).bits.foldpc,
450      rename.io.in(i).bits.cf.foldpc
451    )
452    ssit.io.raddr(i) := mdp_foldpc
453    waittable.io.raddr(i) := mdp_foldpc
454  }
455  // currently, we only update mdp info when isReplay
456  ssit.io.update <> RegNext(redirectGen.io.memPredUpdate)
457  ssit.io.csrCtrl := RegNext(io.csrCtrl)
458  waittable.io.update <> RegNext(redirectGen.io.memPredUpdate)
459  waittable.io.csrCtrl := RegNext(io.csrCtrl)
460
461  // snapshot check
462  val snpt = Module(new SnapshotGenerator(rename.io.out.head.bits.robIdx))
463  snpt.io.enq := rename.io.out.head.bits.snapshot && rename.io.out.head.fire
464  snpt.io.enqData.head := rename.io.out.head.bits.robIdx
465  snpt.io.deq := snpt.io.valids(snpt.io.deqPtr.value) && rob.io.commits.isCommit &&
466    Cat(rob.io.commits.commitValid.zip(rob.io.commits.robIdx).map(x => x._1 && x._2 === snpt.io.snapshots(snpt.io.deqPtr.value))).orR
467  snpt.io.flush := stage2Redirect.valid
468
469  val useSnpt = VecInit.tabulate(RenameSnapshotNum)(idx =>
470    snpt.io.valids(idx) && stage2Redirect.bits.robIdx >= snpt.io.snapshots(idx)).reduceTree(_ || _)
471  val snptSelect = MuxCase(0.U(log2Ceil(RenameSnapshotNum).W),
472    (1 to RenameSnapshotNum).map(i => (snpt.io.enqPtr - i.U).value).map(idx =>
473      (snpt.io.valids(idx) && stage2Redirect.bits.robIdx >= snpt.io.snapshots(idx), idx)
474  ))
475
476  rob.io.snpt.snptEnq := DontCare
477  rob.io.snpt.snptDeq := snpt.io.deq
478  rob.io.snpt.useSnpt := useSnpt
479  rob.io.snpt.snptSelect := snptSelect
480  rat.io.snpt.snptEnq := rename.io.out.head.bits.snapshot && rename.io.out.head.fire
481  rat.io.snpt.snptDeq := snpt.io.deq
482  rat.io.snpt.useSnpt := useSnpt
483  rat.io.snpt.snptSelect := snptSelect
484  rename.io.snpt.snptEnq := DontCare
485  rename.io.snpt.snptDeq := snpt.io.deq
486  rename.io.snpt.useSnpt := useSnpt
487  rename.io.snpt.snptSelect := snptSelect
488
489  // prevent rob from generating snapshot when full here
490  val renameOut = Wire(chiselTypeOf(rename.io.out))
491  renameOut <> rename.io.out
492  when(isFull(snpt.io.enqPtr, snpt.io.deqPtr)) {
493    renameOut.head.bits.snapshot := false.B
494  }
495
496  // LFST lookup and update
497  dispatch.io.lfst := DontCare
498  if (LFSTEnable) {
499    val lfst = Module(new LFST)
500    lfst.io.redirect <> RegNext(io.redirect)
501    lfst.io.storeIssue <> RegNext(io.stIn)
502    lfst.io.csrCtrl <> RegNext(io.csrCtrl)
503    lfst.io.dispatch <> dispatch.io.lfst
504  }
505
506
507  rat.io.redirect := stage2Redirect.valid
508  rat.io.robCommits := rob.io.commits
509  rat.io.intRenamePorts := rename.io.intRenamePorts
510  rat.io.fpRenamePorts := rename.io.fpRenamePorts
511  rat.io.debug_int_rat <> io.debug_int_rat
512  rat.io.debug_fp_rat <> io.debug_fp_rat
513
514  // pipeline between decode and rename
515  for (i <- 0 until RenameWidth) {
516    // fusion decoder
517    val decodeHasException = io.frontend.cfVec(i).bits.exceptionVec(instrPageFault) || io.frontend.cfVec(i).bits.exceptionVec(instrAccessFault)
518    val disableFusion = decode.io.csrCtrl.singlestep || !decode.io.csrCtrl.fusion_enable
519    fusionDecoder.io.in(i).valid := io.frontend.cfVec(i).valid && !(decodeHasException || disableFusion)
520    fusionDecoder.io.in(i).bits := io.frontend.cfVec(i).bits.instr
521    if (i > 0) {
522      fusionDecoder.io.inReady(i - 1) := decode.io.out(i).ready
523    }
524
525    // Pipeline
526    val renamePipe = PipelineNext(decode.io.out(i), rename.io.in(i).ready,
527      stage2Redirect.valid || pendingRedirect)
528    renamePipe.ready := rename.io.in(i).ready
529    rename.io.in(i).valid := renamePipe.valid && !fusionDecoder.io.clear(i)
530    rename.io.in(i).bits := renamePipe.bits
531    rename.io.intReadPorts(i) := rat.io.intReadPorts(i).map(_.data)
532    rename.io.fpReadPorts(i) := rat.io.fpReadPorts(i).map(_.data)
533    rename.io.waittable(i) := RegEnable(waittable.io.rdata(i), decode.io.out(i).fire)
534
535    if (i < RenameWidth - 1) {
536      // fusion decoder sees the raw decode info
537      fusionDecoder.io.dec(i) := renamePipe.bits.ctrl
538      rename.io.fusionInfo(i) := fusionDecoder.io.info(i)
539
540      // update the first RenameWidth - 1 instructions
541      decode.io.fusion(i) := fusionDecoder.io.out(i).valid && rename.io.out(i).fire
542      when (fusionDecoder.io.out(i).valid) {
543        fusionDecoder.io.out(i).bits.update(rename.io.in(i).bits.ctrl)
544        // TODO: remove this dirty code for ftq update
545        val sameFtqPtr = rename.io.in(i).bits.cf.ftqPtr.value === rename.io.in(i + 1).bits.cf.ftqPtr.value
546        val ftqOffset0 = rename.io.in(i).bits.cf.ftqOffset
547        val ftqOffset1 = rename.io.in(i + 1).bits.cf.ftqOffset
548        val ftqOffsetDiff = ftqOffset1 - ftqOffset0
549        val cond1 = sameFtqPtr && ftqOffsetDiff === 1.U
550        val cond2 = sameFtqPtr && ftqOffsetDiff === 2.U
551        val cond3 = !sameFtqPtr && ftqOffset1 === 0.U
552        val cond4 = !sameFtqPtr && ftqOffset1 === 1.U
553        rename.io.in(i).bits.ctrl.commitType := Mux(cond1, 4.U, Mux(cond2, 5.U, Mux(cond3, 6.U, 7.U)))
554        XSError(!cond1 && !cond2 && !cond3 && !cond4, p"new condition $sameFtqPtr $ftqOffset0 $ftqOffset1\n")
555      }
556    }
557  }
558
559  rename.io.redirect := stage2Redirect
560  rename.io.robCommits <> rob.io.commits
561  rename.io.ssit <> ssit.io.rdata
562  rename.io.int_need_free := rat.io.int_need_free
563  rename.io.int_old_pdest := rat.io.int_old_pdest
564  rename.io.fp_old_pdest := rat.io.fp_old_pdest
565  rename.io.debug_int_rat <> rat.io.debug_int_rat
566  rename.io.debug_fp_rat <> rat.io.debug_fp_rat
567  rename.io.stallReason.in <> decode.io.stallReason.out
568
569  // pipeline between rename and dispatch
570  for (i <- 0 until RenameWidth) {
571    PipelineConnect(renameOut(i), dispatch.io.fromRename(i), dispatch.io.recv(i), stage2Redirect.valid)
572  }
573
574  dispatch.io.hartId := io.hartId
575  dispatch.io.redirect := stage2Redirect
576  dispatch.io.enqRob <> rob.io.enq
577  dispatch.io.toIntDq <> intDq.io.enq
578  dispatch.io.toFpDq <> fpDq.io.enq
579  dispatch.io.toLsDq <> lsDq.io.enq
580  dispatch.io.allocPregs <> io.allocPregs
581  dispatch.io.robHead := rob.io.debugRobHead
582  dispatch.io.stallReason <> rename.io.stallReason.out
583  dispatch.io.lqCanAccept := io.lqCanAccept
584  dispatch.io.sqCanAccept := io.sqCanAccept
585  dispatch.io.robHeadNotReady := rob.io.headNotReady
586  dispatch.io.robFull := rob.io.robFull
587  dispatch.io.singleStep := RegNext(io.csrCtrl.singlestep)
588
589  intDq.io.redirect <> redirectForExu
590  fpDq.io.redirect <> redirectForExu
591  lsDq.io.redirect <> redirectForExu
592
593  val dpqOut = intDq.io.deq ++ lsDq.io.deq ++ fpDq.io.deq
594  io.dispatch <> dpqOut
595
596  for (dp2 <- outer.dispatch2.map(_.module.io)) {
597    dp2.redirect := redirectForExu
598    if (dp2.readFpState.isDefined) {
599      dp2.readFpState.get := DontCare
600    }
601    if (dp2.readIntState.isDefined) {
602      dp2.readIntState.get := DontCare
603    }
604    if (dp2.enqLsq.isDefined) {
605      val lsqCtrl = Module(new LsqEnqCtrl)
606      lsqCtrl.io.redirect <> redirectForExu
607      lsqCtrl.io.enq <> dp2.enqLsq.get
608      lsqCtrl.io.lcommit := io.lqDeq
609      lsqCtrl.io.scommit := io.sqDeq
610      lsqCtrl.io.lqCancelCnt := io.lqCancelCnt
611      lsqCtrl.io.sqCancelCnt := io.sqCancelCnt
612      io.enqLsq <> lsqCtrl.io.enqLsq
613      rob.io.debugEnqLsq := io.enqLsq
614    }
615  }
616  for ((dp2In, i) <- outer.dispatch2.flatMap(_.module.io.in).zipWithIndex) {
617    dp2In.valid := dpqOut(i).valid
618    dp2In.bits := dpqOut(i).bits
619    // override ready here to avoid cross-module loop path
620    dpqOut(i).ready := dp2In.ready
621  }
622  for ((dp2Out, i) <- outer.dispatch2.flatMap(_.module.io.out).zipWithIndex) {
623    dp2Out.ready := io.rsReady(i)
624  }
625
626  val pingpong = RegInit(false.B)
627  pingpong := !pingpong
628  pcMem.io.raddr(0) := intDq.io.deqNext(0).cf.ftqPtr.value
629  pcMem.io.raddr(1) := intDq.io.deqNext(2).cf.ftqPtr.value
630  val jumpPcRead0 = pcMem.io.rdata(0).getPc(RegNext(intDq.io.deqNext(0).cf.ftqOffset))
631  val jumpPcRead1 = pcMem.io.rdata(1).getPc(RegNext(intDq.io.deqNext(2).cf.ftqOffset))
632  io.jumpPc := Mux(pingpong && (exuParameters.AluCnt > 2).B, jumpPcRead1, jumpPcRead0)
633  val jalrTargetReadPtr = Mux(pingpong && (exuParameters.AluCnt > 2).B,
634    io.dispatch(2).bits.cf.ftqPtr,
635    io.dispatch(0).bits.cf.ftqPtr)
636  pcMem.io.raddr(4) := (jalrTargetReadPtr + 1.U).value
637  val jalrTargetRead = pcMem.io.rdata(4).startAddr
638  val read_from_newest_entry = RegNext(jalrTargetReadPtr) === RegNext(io.frontend.fromFtq.newest_entry_ptr)
639  io.jalr_target := Mux(read_from_newest_entry, RegNext(io.frontend.fromFtq.newest_entry_target), jalrTargetRead)
640  for(i <- 0 until exuParameters.LduCnt){
641    // load s0 -> get rdata (s1) -> reg next (s2) -> output (s2)
642    pcMem.io.raddr(i + PCMEMIDX_LD) := io.ld_pc_read(i).ptr.value
643    io.ld_pc_read(i).data := pcMem.io.rdata(i + PCMEMIDX_LD).getPc(RegNext(io.ld_pc_read(i).offset))
644  }
645  if(EnableStorePrefetchSMS) {
646    for(i <- 0 until exuParameters.StuCnt){
647      // store s0 -> get rdata (s1) -> reg next (s2) -> output (s2)
648      pcMem.io.raddr(i + PCMEMIDX_ST) := io.st_pc_read(i).ptr.value
649      io.st_pc_read(i).data := pcMem.io.rdata(i + PCMEMIDX_ST).getPc(RegNext(io.st_pc_read(i).offset))
650    }
651  }else {
652    for(i <- 0 until exuParameters.StuCnt){
653      io.st_pc_read(i).data := 0.U
654    }
655  }
656
657  rob.io.hartId := io.hartId
658  io.cpu_halt := DelayN(rob.io.cpu_halt, 5)
659  rob.io.redirect := stage2Redirect
660  outer.rob.generateWritebackIO(Some(outer), Some(this))
661
662  io.redirect := stage2Redirect
663
664  // rob to int block
665  io.robio.toCSR <> rob.io.csr
666  // When wfi is disabled, it will not block ROB commit.
667  rob.io.csr.wfiEvent := io.robio.toCSR.wfiEvent
668  rob.io.wfi_enable := decode.io.csrCtrl.wfi_enable
669  io.robio.toCSR.perfinfo.retiredInstr <> RegNext(rob.io.csr.perfinfo.retiredInstr)
670  io.robio.exception := rob.io.exception
671  io.robio.exception.bits.uop.cf.pc := flushPC
672
673  // rob to mem block
674  io.robio.lsq <> rob.io.lsq
675
676  rob.io.debug_ls := io.robio.debug_ls
677  rob.io.debugHeadLsIssue := io.robHeadLsIssue
678  rob.io.lsTopdownInfo := io.robio.lsTopdownInfo
679  io.robDeqPtr := rob.io.robDeqPtr
680
681  io.perfInfo.ctrlInfo.robFull := RegNext(rob.io.robFull)
682  io.perfInfo.ctrlInfo.intdqFull := RegNext(intDq.io.dqFull)
683  io.perfInfo.ctrlInfo.fpdqFull := RegNext(fpDq.io.dqFull)
684  io.perfInfo.ctrlInfo.lsdqFull := RegNext(lsDq.io.dqFull)
685
686  val pfevent = Module(new PFEvent)
687  pfevent.io.distribute_csr := RegNext(io.csrCtrl.distribute_csr)
688  val csrevents = pfevent.io.hpmevent.slice(8,16)
689
690  val perfinfo = IO(new Bundle(){
691    val perfEventsRs      = Input(Vec(NumRs, new PerfEvent))
692    val perfEventsEu0     = Input(Vec(6, new PerfEvent))
693    val perfEventsEu1     = Input(Vec(6, new PerfEvent))
694  })
695
696  val allPerfEvents = Seq(decode, rename, dispatch, intDq, fpDq, lsDq, rob).flatMap(_.getPerf)
697  val hpmEvents = allPerfEvents ++ perfinfo.perfEventsEu0 ++ perfinfo.perfEventsEu1 ++ perfinfo.perfEventsRs
698  val perfEvents = HPerfMonitor(csrevents, hpmEvents).getPerfEvents
699  generatePerfEvent()
700}
701