xref: /XiangShan/src/main/scala/xiangshan/backend/rename/Rename.scala (revision 38d0d7c5a34a23dfdb58a3cb2737c3cfddb3ec9d)
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.rename
18
19import org.chipsalliance.cde.config.Parameters
20import chisel3._
21import chisel3.util._
22import utility._
23import utils._
24import xiangshan._
25import xiangshan.backend.Bundles.{DecodedInst, DynInst}
26import xiangshan.backend.decode.{FusionDecodeInfo, ImmUnion, Imm_I, Imm_LUI_LOAD, Imm_U}
27import xiangshan.backend.fu.FuType
28import xiangshan.backend.rename.freelist._
29import xiangshan.backend.rob.{RobEnqIO, RobPtr}
30import xiangshan.mem.mdp._
31import xiangshan.ExceptionNO._
32import xiangshan.backend.fu.FuType._
33import xiangshan.mem.{EewLog2, GenUSWholeEmul}
34import xiangshan.mem.GenRealFlowNum
35import xiangshan.backend.trace._
36import xiangshan.backend.decode.isa.bitfield.{OPCODE5Bit, XSInstBitFields}
37import xiangshan.backend.fu.util.CSRConst
38import yunsuan.{VfaluType, VipuType}
39
40class Rename(implicit p: Parameters) extends XSModule with HasCircularQueuePtrHelper with HasPerfEvents {
41
42  // params alias
43  private val numRegSrc = backendParams.numRegSrc
44  private val numVecRegSrc = backendParams.numVecRegSrc
45  private val numVecRatPorts = numVecRegSrc
46
47  println(s"[Rename] numRegSrc: $numRegSrc")
48
49  val io = IO(new Bundle() {
50    val redirect = Flipped(ValidIO(new Redirect))
51    val rabCommits = Input(new RabCommitIO)
52    // from csr
53    val singleStep = Input(Bool())
54    // from decode
55    val in = Vec(RenameWidth, Flipped(DecoupledIO(new DecodedInst)))
56    val fusionInfo = Vec(DecodeWidth - 1, Flipped(new FusionDecodeInfo))
57    // ssit read result
58    val ssit = Flipped(Vec(RenameWidth, Output(new SSITEntry)))
59    // waittable read result
60    val waittable = Flipped(Vec(RenameWidth, Output(Bool())))
61    // to rename table
62    val intReadPorts = Vec(RenameWidth, Vec(2, Input(UInt(PhyRegIdxWidth.W))))
63    val fpReadPorts = Vec(RenameWidth, Vec(3, Input(UInt(PhyRegIdxWidth.W))))
64    val vecReadPorts = Vec(RenameWidth, Vec(numVecRatPorts, Input(UInt(PhyRegIdxWidth.W))))
65    val v0ReadPorts = Vec(RenameWidth, Vec(1, Input(UInt(PhyRegIdxWidth.W))))
66    val vlReadPorts = Vec(RenameWidth, Vec(1, Input(UInt(PhyRegIdxWidth.W))))
67    val intRenamePorts = Vec(RenameWidth, Output(new RatWritePort(log2Ceil(IntLogicRegs))))
68    val fpRenamePorts = Vec(RenameWidth, Output(new RatWritePort(log2Ceil(FpLogicRegs))))
69    val vecRenamePorts = Vec(RenameWidth, Output(new RatWritePort(log2Ceil(VecLogicRegs))))
70    val v0RenamePorts = Vec(RenameWidth, Output(new RatWritePort(log2Ceil(V0LogicRegs))))
71    val vlRenamePorts = Vec(RenameWidth, Output(new RatWritePort(log2Ceil(VlLogicRegs))))
72    // from rename table
73    val int_old_pdest = Vec(RabCommitWidth, Input(UInt(PhyRegIdxWidth.W)))
74    val fp_old_pdest = Vec(RabCommitWidth, Input(UInt(PhyRegIdxWidth.W)))
75    val vec_old_pdest = Vec(RabCommitWidth, Input(UInt(PhyRegIdxWidth.W)))
76    val v0_old_pdest = Vec(RabCommitWidth, Input(UInt(PhyRegIdxWidth.W)))
77    val vl_old_pdest = Vec(RabCommitWidth, Input(UInt(PhyRegIdxWidth.W)))
78    val int_need_free = Vec(RabCommitWidth, Input(Bool()))
79    // to dispatch1
80    val out = Vec(RenameWidth, DecoupledIO(new DynInst))
81    // for snapshots
82    val snpt = Input(new SnapshotPort)
83    val snptLastEnq = Flipped(ValidIO(new RobPtr))
84    val snptIsFull= Input(Bool())
85    // debug arch ports
86    val debug_int_rat = if (backendParams.debugEn) Some(Vec(32, Input(UInt(PhyRegIdxWidth.W)))) else None
87    val debug_fp_rat  = if (backendParams.debugEn) Some(Vec(32, Input(UInt(PhyRegIdxWidth.W)))) else None
88    val debug_vec_rat = if (backendParams.debugEn) Some(Vec(31, Input(UInt(PhyRegIdxWidth.W)))) else None
89    val debug_v0_rat  = if (backendParams.debugEn) Some(Vec(1, Input(UInt(PhyRegIdxWidth.W)))) else None
90    val debug_vl_rat  = if (backendParams.debugEn) Some(Vec(1, Input(UInt(PhyRegIdxWidth.W)))) else None
91    // perf only
92    val stallReason = new Bundle {
93      val in = Flipped(new StallReasonIO(RenameWidth))
94      val out = new StallReasonIO(RenameWidth)
95    }
96  })
97
98  // io alias
99  private val dispatchCanAcc = io.out.head.ready
100
101  val compressUnit = Module(new CompressUnit())
102  // create free list and rat
103  val intFreeList = Module(new MEFreeList(IntPhyRegs))
104  val fpFreeList = Module(new StdFreeList(FpPhyRegs - FpLogicRegs, FpLogicRegs, Reg_F))
105  val vecFreeList = Module(new StdFreeList(VfPhyRegs - VecLogicRegs, VecLogicRegs, Reg_V, 31))
106  val v0FreeList = Module(new StdFreeList(V0PhyRegs - V0LogicRegs, V0LogicRegs, Reg_V0, 1))
107  val vlFreeList = Module(new StdFreeList(VlPhyRegs - VlLogicRegs, VlLogicRegs, Reg_Vl, 1))
108
109
110  intFreeList.io.commit    <> io.rabCommits
111  intFreeList.io.debug_rat.foreach(_ <> io.debug_int_rat.get)
112  fpFreeList.io.commit     <> io.rabCommits
113  fpFreeList.io.debug_rat.foreach(_ <> io.debug_fp_rat.get)
114  vecFreeList.io.commit    <> io.rabCommits
115  vecFreeList.io.debug_rat.foreach(_ <> io.debug_vec_rat.get)
116  v0FreeList.io.commit <> io.rabCommits
117  v0FreeList.io.debug_rat.foreach(_ <> io.debug_v0_rat.get)
118  vlFreeList.io.commit <> io.rabCommits
119  vlFreeList.io.debug_rat.foreach(_ <> io.debug_vl_rat.get)
120
121  // decide if given instruction needs allocating a new physical register (CfCtrl: from decode; RobCommitInfo: from rob)
122  def needDestReg[T <: DecodedInst](reg_t: RegType, x: T): Bool = reg_t match {
123    case Reg_I => x.rfWen
124    case Reg_F => x.fpWen
125    case Reg_V => x.vecWen
126    case Reg_V0 => x.v0Wen
127    case Reg_Vl => x.vlWen
128  }
129  def needDestRegCommit[T <: RabCommitInfo](reg_t: RegType, x: T): Bool = {
130    reg_t match {
131      case Reg_I => x.rfWen
132      case Reg_F => x.fpWen
133      case Reg_V => x.vecWen
134      case Reg_V0 => x.v0Wen
135      case Reg_Vl => x.vlWen
136    }
137  }
138  def needDestRegWalk[T <: RabCommitInfo](reg_t: RegType, x: T): Bool = {
139    reg_t match {
140      case Reg_I => x.rfWen
141      case Reg_F => x.fpWen
142      case Reg_V => x.vecWen
143      case Reg_V0 => x.v0Wen
144      case Reg_Vl => x.vlWen
145    }
146  }
147
148  // connect [redirect + walk] ports for fp & vec & int free list
149  Seq(fpFreeList, vecFreeList, intFreeList, v0FreeList, vlFreeList).foreach { case fl =>
150    fl.io.redirect := io.redirect.valid
151    fl.io.walk := io.rabCommits.isWalk
152  }
153  // only when all free list and dispatch1 has enough space can we do allocation
154  // when isWalk, freelist can definitely allocate
155  intFreeList.io.doAllocate := fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && dispatchCanAcc || io.rabCommits.isWalk
156  fpFreeList.io.doAllocate := intFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && dispatchCanAcc || io.rabCommits.isWalk
157  vecFreeList.io.doAllocate := intFreeList.io.canAllocate && fpFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && dispatchCanAcc || io.rabCommits.isWalk
158  v0FreeList.io.doAllocate := intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && vlFreeList.io.canAllocate && dispatchCanAcc || io.rabCommits.isWalk
159  vlFreeList.io.doAllocate := intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && dispatchCanAcc || io.rabCommits.isWalk
160
161  //           dispatch1 ready ++ float point free list ready ++ int free list ready ++ vec free list ready     ++ not walk
162  val canOut = dispatchCanAcc && fpFreeList.io.canAllocate && intFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !io.rabCommits.isWalk
163
164  compressUnit.io.in.zip(io.in).foreach{ case(sink, source) =>
165    sink.valid := source.valid && !io.singleStep
166    sink.bits := source.bits
167  }
168  val needRobFlags = compressUnit.io.out.needRobFlags
169  val instrSizesVec = compressUnit.io.out.instrSizes
170  val compressMasksVec = compressUnit.io.out.masks
171
172  // speculatively assign the instruction with an robIdx
173  val validCount = PopCount(io.in.zip(needRobFlags).map{ case(in, needRobFlag) => in.valid && in.bits.lastUop && needRobFlag}) // number of instructions waiting to enter rob (from decode)
174  val robIdxHead = RegInit(0.U.asTypeOf(new RobPtr))
175  val lastCycleMisprediction = GatedValidRegNext(io.redirect.valid && !io.redirect.bits.flushItself())
176  val robIdxHeadNext = Mux(io.redirect.valid, io.redirect.bits.robIdx, // redirect: move ptr to given rob index
177         Mux(lastCycleMisprediction, robIdxHead + 1.U, // mis-predict: not flush robIdx itself
178           Mux(canOut, robIdxHead + validCount, // instructions successfully entered next stage: increase robIdx
179                      /* default */  robIdxHead))) // no instructions passed by this cycle: stick to old value
180  robIdxHead := robIdxHeadNext
181
182  /**
183    * Rename: allocate free physical register and update rename table
184    */
185  val uops = Wire(Vec(RenameWidth, new DynInst))
186  uops.foreach( uop => {
187    uop.srcState      := DontCare
188    uop.debugInfo     := DontCare
189    uop.lqIdx         := DontCare
190    uop.sqIdx         := DontCare
191    uop.waitForRobIdx := DontCare
192    uop.singleStep    := DontCare
193    uop.snapshot      := DontCare
194    uop.srcLoadDependency := DontCare
195    uop.numLsElem       :=  DontCare
196    uop.hasException  :=  DontCare
197    uop.useRegCache   := DontCare
198    uop.regCacheIdx   := DontCare
199    uop.traceBlockInPipe := DontCare
200  })
201  private val inst         = Wire(Vec(RenameWidth, new XSInstBitFields))
202  private val isCsr        = Wire(Vec(RenameWidth, Bool()))
203  private val isCsrr       = Wire(Vec(RenameWidth, Bool()))
204  private val isRoCsrr     = Wire(Vec(RenameWidth, Bool()))
205  private val fuType       = uops.map(_.fuType)
206  private val fuOpType     = uops.map(_.fuOpType)
207  private val vtype        = uops.map(_.vpu.vtype)
208  private val sew          = vtype.map(_.vsew)
209  private val lmul         = vtype.map(_.vlmul)
210  private val eew          = uops.map(_.vpu.veew)
211  private val mop          = fuOpType.map(fuOpTypeItem => LSUOpType.getVecLSMop(fuOpTypeItem))
212  private val isVlsType    = fuType.map(fuTypeItem => isVls(fuTypeItem))
213  private val isSegment    = fuType.map(fuTypeItem => isVsegls(fuTypeItem))
214  private val isUnitStride = fuOpType.map(fuOpTypeItem => LSUOpType.isAllUS(fuOpTypeItem))
215  private val nf           = fuOpType.zip(uops.map(_.vpu.nf)).map { case (fuOpTypeItem, nfItem) => Mux(LSUOpType.isWhole(fuOpTypeItem), 0.U, nfItem) }
216  private val mulBits      = 3 // dirty code
217  private val emul         = fuOpType.zipWithIndex.map { case (fuOpTypeItem, index) =>
218    Mux(
219      LSUOpType.isWhole(fuOpTypeItem),
220      GenUSWholeEmul(nf(index)),
221      Mux(
222        LSUOpType.isMasked(fuOpTypeItem),
223        0.U(mulBits.W),
224        EewLog2(eew(index)) - sew(index) + lmul(index)
225      )
226    )
227  }
228  private val isVecUnitType = isVlsType.zip(isUnitStride).map { case (isVlsTypeItme, isUnitStrideItem) =>
229    isVlsTypeItme && isUnitStrideItem
230  }
231  private val isfofFixVlUop   = uops.map{x => x.vpu.isVleff && x.lastUop}
232  private val instType = isSegment.zip(mop).map { case (isSegementItem, mopItem) => Cat(isSegementItem, mopItem) }
233  // There is no way to calculate the 'flow' for 'unit-stride' exactly:
234  //  Whether 'unit-stride' needs to be split can only be known after obtaining the address.
235  // For scalar instructions, this is not handled here, and different assignments are done later according to the situation.
236  private val numLsElem = instType.zipWithIndex.map { case (instTypeItem, index) =>
237    Mux(
238      isVecUnitType(index),
239      VecMemUnitStrideMaxFlowNum.U,
240      GenRealFlowNum(instTypeItem, emul(index), lmul(index), eew(index), sew(index))
241    )
242  }
243  uops.zipWithIndex.map { case(u, i) =>
244    u.numLsElem := Mux(io.in(i).valid & isVlsType(i) && !isfofFixVlUop(i), numLsElem(i), 0.U)
245  }
246
247  val needVecDest    = Wire(Vec(RenameWidth, Bool()))
248  val needFpDest     = Wire(Vec(RenameWidth, Bool()))
249  val needIntDest    = Wire(Vec(RenameWidth, Bool()))
250  val needV0Dest     = Wire(Vec(RenameWidth, Bool()))
251  val needVlDest     = Wire(Vec(RenameWidth, Bool()))
252  private val inHeadValid = io.in.head.valid
253
254  val isMove = Wire(Vec(RenameWidth, Bool()))
255  isMove zip io.in.map(_.bits) foreach {
256    case (move, in) => move := Mux(in.exceptionVec.asUInt.orR, false.B, in.isMove)
257  }
258
259  val walkNeedIntDest = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
260  val walkNeedFpDest = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
261  val walkNeedVecDest = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
262  val walkNeedV0Dest = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
263  val walkNeedVlDest = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
264  val walkIsMove = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
265
266  val intSpecWen = Wire(Vec(RenameWidth, Bool()))
267  val fpSpecWen  = Wire(Vec(RenameWidth, Bool()))
268  val vecSpecWen = Wire(Vec(RenameWidth, Bool()))
269  val v0SpecWen = Wire(Vec(RenameWidth, Bool()))
270  val vlSpecWen = Wire(Vec(RenameWidth, Bool()))
271
272  val walkIntSpecWen = WireDefault(VecInit(Seq.fill(RenameWidth)(false.B)))
273
274  val walkPdest = Wire(Vec(RenameWidth, UInt(PhyRegIdxWidth.W)))
275
276  // uop calculation
277  for (i <- 0 until RenameWidth) {
278    (uops(i): Data).waiveAll :<= (io.in(i).bits: Data).waiveAll
279
280    // read only CSRR instruction support: remove blockBackward and waitForward
281    inst(i) := uops(i).instr.asTypeOf(new XSInstBitFields)
282    isCsr(i) := inst(i).OPCODE5Bit === OPCODE5Bit.SYSTEM && inst(i).FUNCT3(1, 0) =/= 0.U
283    isCsrr(i) := isCsr(i) && inst(i).FUNCT3 === BitPat("b?1?") && inst(i).RS1 === 0.U
284    isRoCsrr(i) := isCsrr(i) && LookupTreeDefault(
285      inst(i).CSRIDX, false.B, CSRConst.roCsrrAddr.map(_.U -> true.B))
286
287    /*
288     * For read-only CSRs, CSRR instructions do not need to wait forward instructions to finish.
289     * For all CSRs, CSRR instructions do not need to block backward instructions for issuing.
290     * Signal "isCsrr" contains not only alias instruction CSRR, but also other csr instructions which
291     *   do not require write to any CSR.
292     */
293    uops(i).waitForward := io.in(i).bits.waitForward && !isRoCsrr(i)
294    uops(i).blockBackward := io.in(i).bits.blockBackward && !isCsrr(i)
295
296    // update cf according to ssit result
297    uops(i).storeSetHit := io.ssit(i).valid
298    uops(i).loadWaitStrict := io.ssit(i).strict && io.ssit(i).valid
299    uops(i).ssid := io.ssit(i).ssid
300
301    // update cf according to waittable result
302    uops(i).loadWaitBit := io.waittable(i)
303
304    uops(i).replayInst := false.B // set by IQ or MemQ
305    // alloc a new phy reg
306    needV0Dest(i) := io.in(i).valid && needDestReg(Reg_V0, io.in(i).bits)
307    needVlDest(i) := io.in(i).valid && needDestReg(Reg_Vl, io.in(i).bits)
308    needVecDest(i) := io.in(i).valid && needDestReg(Reg_V, io.in(i).bits)
309    needFpDest(i) := io.in(i).valid && needDestReg(Reg_F, io.in(i).bits)
310    needIntDest(i) := io.in(i).valid && needDestReg(Reg_I, io.in(i).bits)
311    if (i < RabCommitWidth) {
312      walkNeedIntDest(i) := io.rabCommits.walkValid(i) && needDestRegWalk(Reg_I, io.rabCommits.info(i))
313      walkNeedFpDest(i) := io.rabCommits.walkValid(i) && needDestRegWalk(Reg_F, io.rabCommits.info(i))
314      walkNeedVecDest(i) := io.rabCommits.walkValid(i) && needDestRegWalk(Reg_V, io.rabCommits.info(i))
315      walkNeedV0Dest(i) := io.rabCommits.walkValid(i) && needDestRegWalk(Reg_V0, io.rabCommits.info(i))
316      walkNeedVlDest(i) := io.rabCommits.walkValid(i) && needDestRegWalk(Reg_Vl, io.rabCommits.info(i))
317      walkIsMove(i) := io.rabCommits.info(i).isMove
318    }
319    fpFreeList.io.allocateReq(i) := needFpDest(i)
320    fpFreeList.io.walkReq(i) := walkNeedFpDest(i)
321    vecFreeList.io.allocateReq(i) := needVecDest(i)
322    vecFreeList.io.walkReq(i) := walkNeedVecDest(i)
323    v0FreeList.io.allocateReq(i) := needV0Dest(i)
324    v0FreeList.io.walkReq(i) := walkNeedV0Dest(i)
325    vlFreeList.io.allocateReq(i) := needVlDest(i)
326    vlFreeList.io.walkReq(i) := walkNeedVlDest(i)
327    intFreeList.io.allocateReq(i) := needIntDest(i) && !isMove(i)
328    intFreeList.io.walkReq(i) := walkNeedIntDest(i) && !walkIsMove(i)
329
330    // no valid instruction from decode stage || all resources (dispatch1 + both free lists) ready
331    io.in(i).ready := !io.in(0).valid || canOut
332
333    uops(i).robIdx := robIdxHead + PopCount(io.in.zip(needRobFlags).take(i).map{ case(in, needRobFlag) => in.valid && in.bits.lastUop && needRobFlag})
334    uops(i).instrSize := instrSizesVec(i)
335    val hasExceptionExceptFlushPipe = Cat(selectFrontend(uops(i).exceptionVec) :+ uops(i).exceptionVec(illegalInstr) :+ uops(i).exceptionVec(virtualInstr)).orR || TriggerAction.isDmode(uops(i).trigger)
336    when(isMove(i) || hasExceptionExceptFlushPipe) {
337      uops(i).numUops := 0.U
338      uops(i).numWB := 0.U
339    }
340    if (i > 0) {
341      when(!needRobFlags(i - 1)) {
342        uops(i).firstUop := false.B
343        uops(i).ftqPtr := uops(i - 1).ftqPtr
344        uops(i).ftqOffset := uops(i - 1).ftqOffset
345        uops(i).numUops := instrSizesVec(i) - PopCount(compressMasksVec(i) & Cat(isMove.reverse))
346        uops(i).numWB := instrSizesVec(i) - PopCount(compressMasksVec(i) & Cat(isMove.reverse))
347      }
348    }
349    when(!needRobFlags(i)) {
350      uops(i).lastUop := false.B
351      uops(i).numUops := instrSizesVec(i) - PopCount(compressMasksVec(i) & Cat(isMove.reverse))
352      uops(i).numWB := instrSizesVec(i) - PopCount(compressMasksVec(i) & Cat(isMove.reverse))
353    }
354    uops(i).wfflags := (compressMasksVec(i) & Cat(io.in.map(_.bits.wfflags).reverse)).orR
355    uops(i).dirtyFs := (compressMasksVec(i) & Cat(io.in.map(_.bits.fpWen).reverse)).orR
356    uops(i).dirtyVs := (
357      compressMasksVec(i) & Cat(io.in.map(in =>
358        // vector instructions' uopSplitType cannot be UopSplitType.SCA_SIM
359        in.bits.uopSplitType =/= UopSplitType.SCA_SIM &&
360        !UopSplitType.isAMOCAS(in.bits.uopSplitType) &&
361        // vfmv.f.s, vcpop.m, vfirst.m and vmv.x.s don't change vector state
362        !Seq(
363          (FuType.vfalu, VfaluType.vfmv_f_s), // vfmv.f.s
364          (FuType.vipu, VipuType.vcpop_m),    // vcpop.m
365          (FuType.vipu, VipuType.vfirst_m),   // vfirst.m
366          (FuType.vipu, VipuType.vmv_x_s)     // vmv.x.s
367        ).map(x => FuTypeOrR(in.bits.fuType, x._1) && in.bits.fuOpType === x._2).reduce(_ || _)
368      ).reverse)
369    ).orR
370    // psrc0,psrc1,psrc2 don't require v0ReadPorts because their srcType can distinguish whether they are V0 or not
371    uops(i).psrc(0) := Mux1H(uops(i).srcType(0)(2, 0), Seq(io.intReadPorts(i)(0), io.fpReadPorts(i)(0), io.vecReadPorts(i)(0)))
372    uops(i).psrc(1) := Mux1H(uops(i).srcType(1)(2, 0), Seq(io.intReadPorts(i)(1), io.fpReadPorts(i)(1), io.vecReadPorts(i)(1)))
373    uops(i).psrc(2) := Mux1H(uops(i).srcType(2)(2, 1), Seq(io.fpReadPorts(i)(2), io.vecReadPorts(i)(2)))
374    uops(i).psrc(3) := io.v0ReadPorts(i)(0)
375    uops(i).psrc(4) := io.vlReadPorts(i)(0)
376
377    // int psrc2 should be bypassed from next instruction if it is fused
378    if (i < RenameWidth - 1) {
379      when (io.fusionInfo(i).rs2FromRs2 || io.fusionInfo(i).rs2FromRs1) {
380        uops(i).psrc(1) := Mux(io.fusionInfo(i).rs2FromRs2, io.intReadPorts(i + 1)(1), io.intReadPorts(i + 1)(0))
381      }.elsewhen(io.fusionInfo(i).rs2FromZero) {
382        uops(i).psrc(1) := 0.U
383      }
384    }
385    uops(i).eliminatedMove := isMove(i)
386
387    // update pdest
388    uops(i).pdest := MuxCase(0.U, Seq(
389      needIntDest(i)    ->  intFreeList.io.allocatePhyReg(i),
390      needFpDest(i)     ->  fpFreeList.io.allocatePhyReg(i),
391      needVecDest(i)    ->  vecFreeList.io.allocatePhyReg(i),
392      needV0Dest(i)    ->  v0FreeList.io.allocatePhyReg(i),
393      needVlDest(i)    ->  vlFreeList.io.allocatePhyReg(i),
394    ))
395
396    // Assign performance counters
397    uops(i).debugInfo.renameTime := GTimer()
398
399    io.out(i).valid := io.in(i).valid && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !io.rabCommits.isWalk
400    io.out(i).bits := uops(i)
401    // Todo: move these shit in decode stage
402    // dirty code for fence. The lsrc is passed by imm.
403    when (io.out(i).bits.fuType === FuType.fence.U) {
404      io.out(i).bits.imm := Cat(io.in(i).bits.lsrc(1), io.in(i).bits.lsrc(0))
405    }
406
407    // dirty code for SoftPrefetch (prefetch.r/prefetch.w)
408//    when (io.in(i).bits.isSoftPrefetch) {
409//      io.out(i).bits.fuType := FuType.ldu.U
410//      io.out(i).bits.fuOpType := Mux(io.in(i).bits.lsrc(1) === 1.U, LSUOpType.prefetch_r, LSUOpType.prefetch_w)
411//      io.out(i).bits.selImm := SelImm.IMM_S
412//      io.out(i).bits.imm := Cat(io.in(i).bits.imm(io.in(i).bits.imm.getWidth - 1, 5), 0.U(5.W))
413//    }
414
415    // dirty code for lui+addi(w) fusion
416    if (i < RenameWidth - 1) {
417      val fused_lui32 = io.in(i).bits.selImm === SelImm.IMM_LUI32 && io.in(i).bits.fuType === FuType.alu.U
418      when (fused_lui32) {
419        val lui_imm = io.in(i).bits.imm(19, 0)
420        val add_imm = io.in(i + 1).bits.imm(11, 0)
421        require(io.out(i).bits.imm.getWidth >= lui_imm.getWidth + add_imm.getWidth)
422        io.out(i).bits.imm := Cat(lui_imm, add_imm)
423      }
424    }
425
426    // write speculative rename table
427    // we update rat later inside commit code
428    intSpecWen(i) := needIntDest(i) && intFreeList.io.canAllocate && intFreeList.io.doAllocate && !io.rabCommits.isWalk && !io.redirect.valid
429    fpSpecWen(i)  := needFpDest(i)  && fpFreeList.io.canAllocate  && fpFreeList.io.doAllocate  && !io.rabCommits.isWalk && !io.redirect.valid
430    vecSpecWen(i) := needVecDest(i) && vecFreeList.io.canAllocate && vecFreeList.io.doAllocate && !io.rabCommits.isWalk && !io.redirect.valid
431    v0SpecWen(i) := needV0Dest(i) && v0FreeList.io.canAllocate && v0FreeList.io.doAllocate && !io.rabCommits.isWalk && !io.redirect.valid
432    vlSpecWen(i) := needVlDest(i) && vlFreeList.io.canAllocate && vlFreeList.io.doAllocate && !io.rabCommits.isWalk && !io.redirect.valid
433
434
435    if (i < RabCommitWidth) {
436      walkIntSpecWen(i) := walkNeedIntDest(i) && !io.redirect.valid
437      walkPdest(i) := io.rabCommits.info(i).pdest
438    } else {
439      walkPdest(i) := io.out(i).bits.pdest
440    }
441  }
442
443  /**
444   * trace begin
445   */
446  // note: fusionInst can't robcompress
447  val inVec = io.in.map(_.bits)
448  val isRVCVec = inVec.map(_.preDecodeInfo.isRVC)
449  val isFusionVec = inVec.map(_.commitType).map(ctype => CommitType.isFused(ctype))
450
451  val canRobCompressVec = compressUnit.io.out.canCompressVec
452  val iLastSizeVec = isRVCVec.map(isRVC => Mux(isRVC, Ilastsize.HalfWord, Ilastsize.Word))
453  val halfWordNumVec = isRVCVec.map(isRVC => Mux(isRVC, 1.U, 2.U))
454  val halfWordNumMatrix = (0 until RenameWidth).map(
455    i => compressMasksVec(i).asBools.zipWithIndex.map{ case(mask, j) =>
456      Mux(mask, halfWordNumVec(j), 0.U)
457    }
458  )
459
460  for (i <- 0 until RenameWidth) {
461    // iretire
462    uops(i).traceBlockInPipe.iretire := Mux(canRobCompressVec(i),
463      halfWordNumMatrix(i).reduce(_ +& _),
464      (if(i < RenameWidth -1) Mux(isFusionVec(i), halfWordNumVec(i+1), 0.U) else 0.U) +& halfWordNumVec(i)
465    )
466
467    // ilastsize
468    val tmp = i
469    val lastIsRVC = WireInit(false.B)
470    (tmp until RenameWidth).map { j =>
471      when(compressMasksVec(i)(j)) {
472        lastIsRVC := io.in(j).bits.preDecodeInfo.isRVC
473      }
474    }
475    uops(i).traceBlockInPipe.ilastsize := Mux(canRobCompressVec(i),
476      Mux(lastIsRVC, Ilastsize.HalfWord, Ilastsize.Word),
477      (if(i < RenameWidth -1) Mux(isFusionVec(i), iLastSizeVec(i+1), iLastSizeVec(i)) else iLastSizeVec(i))
478    )
479
480    // itype
481    uops(i).traceBlockInPipe.itype := Itype.jumpTypeGen(inVec(i).preDecodeInfo.brType, inVec(i).ldest.asTypeOf(new OpRegType), inVec(i).lsrc(0).asTypeOf((new OpRegType)))
482  }
483  /**
484   * trace end
485   */
486
487  /**
488    * How to set psrc:
489    * - bypass the pdest to psrc if previous instructions write to the same ldest as lsrc
490    * - default: psrc from RAT
491    * How to set pdest:
492    * - Mux(isMove, psrc, pdest_from_freelist).
493    *
494    * The critical path of rename lies here:
495    * When move elimination is enabled, we need to update the rat with psrc.
496    * However, psrc maybe comes from previous instructions' pdest, which comes from freelist.
497    *
498    * If we expand these logic for pdest(N):
499    * pdest(N) = Mux(isMove(N), psrc(N), freelist_out(N))
500    *          = Mux(isMove(N), Mux(bypass(N, N - 1), pdest(N - 1),
501    *                           Mux(bypass(N, N - 2), pdest(N - 2),
502    *                           ...
503    *                           Mux(bypass(N, 0),     pdest(0),
504    *                                                 rat_out(N))...)),
505    *                           freelist_out(N))
506    */
507  // a simple functional model for now
508  io.out(0).bits.pdest := Mux(isMove(0), uops(0).psrc.head, uops(0).pdest)
509
510  // psrc(n) + pdest(1)
511  val bypassCond: Vec[MixedVec[UInt]] = Wire(Vec(numRegSrc, MixedVec(List.tabulate(RenameWidth-1)(i => UInt((i+1).W)))))
512  require(io.in(0).bits.srcType.size == io.in(0).bits.numSrc)
513  private val pdestLoc = io.in.head.bits.srcType.size // 2 vector src: v0, vl&vtype
514  println(s"[Rename] idx of pdest in bypassCond $pdestLoc")
515  for (i <- 1 until RenameWidth) {
516    val v0Cond = io.in(i).bits.srcType.zipWithIndex.map{ case (s, i) =>
517      if (i == 3) (s === SrcType.vp) || (s === SrcType.v0)
518      else false.B
519    }
520    val vlCond = io.in(i).bits.srcType.zipWithIndex.map{ case (s, i) =>
521      if (i == 4) s === SrcType.vp
522      else false.B
523    }
524    val vecCond = io.in(i).bits.srcType.map(_ === SrcType.vp)
525    val fpCond  = io.in(i).bits.srcType.map(_ === SrcType.fp)
526    val intCond = io.in(i).bits.srcType.map(_ === SrcType.xp)
527    val target = io.in(i).bits.lsrc
528    for ((((((cond1, (condV0, condVl)), cond2), cond3), t), j) <- vecCond.zip(v0Cond.zip(vlCond)).zip(fpCond).zip(intCond).zip(target).zipWithIndex) {
529      val destToSrc = io.in.take(i).zipWithIndex.map { case (in, j) =>
530        val indexMatch = in.bits.ldest === t
531        val writeMatch =  cond3 && needIntDest(j) || cond2 && needFpDest(j) || cond1 && needVecDest(j)
532        val v0vlMatch = condV0 && needV0Dest(j) || condVl && needVlDest(j)
533        indexMatch && writeMatch || v0vlMatch
534      }
535      bypassCond(j)(i - 1) := VecInit(destToSrc).asUInt
536    }
537    io.out(i).bits.psrc(0) := io.out.take(i).map(_.bits.pdest).zip(bypassCond(0)(i-1).asBools).foldLeft(uops(i).psrc(0)) {
538      (z, next) => Mux(next._2, next._1, z)
539    }
540    io.out(i).bits.psrc(1) := io.out.take(i).map(_.bits.pdest).zip(bypassCond(1)(i-1).asBools).foldLeft(uops(i).psrc(1)) {
541      (z, next) => Mux(next._2, next._1, z)
542    }
543    io.out(i).bits.psrc(2) := io.out.take(i).map(_.bits.pdest).zip(bypassCond(2)(i-1).asBools).foldLeft(uops(i).psrc(2)) {
544      (z, next) => Mux(next._2, next._1, z)
545    }
546    io.out(i).bits.psrc(3) := io.out.take(i).map(_.bits.pdest).zip(bypassCond(3)(i-1).asBools).foldLeft(uops(i).psrc(3)) {
547      (z, next) => Mux(next._2, next._1, z)
548    }
549    io.out(i).bits.psrc(4) := io.out.take(i).map(_.bits.pdest).zip(bypassCond(4)(i-1).asBools).foldLeft(uops(i).psrc(4)) {
550      (z, next) => Mux(next._2, next._1, z)
551    }
552    io.out(i).bits.pdest := Mux(isMove(i), io.out(i).bits.psrc(0), uops(i).pdest)
553
554    // Todo: better implementation for fields reuse
555    // For fused-lui-load, load.src(0) is replaced by the imm.
556    val last_is_lui = io.in(i - 1).bits.selImm === SelImm.IMM_U && io.in(i - 1).bits.srcType(0) =/= SrcType.pc
557    val this_is_load = io.in(i).bits.fuType === FuType.ldu.U
558    val lui_to_load = io.in(i - 1).valid && io.in(i - 1).bits.ldest === io.in(i).bits.lsrc(0)
559    val fused_lui_load = last_is_lui && this_is_load && lui_to_load
560    when (fused_lui_load) {
561      // The first LOAD operand (base address) is replaced by LUI-imm and stored in imm
562      val lui_imm = io.in(i - 1).bits.imm(ImmUnion.U.len - 1, 0)
563      val ld_imm = io.in(i).bits.imm(ImmUnion.I.len - 1, 0)
564      require(io.out(i).bits.imm.getWidth >= lui_imm.getWidth + ld_imm.getWidth)
565      io.out(i).bits.srcType(0) := SrcType.imm
566      io.out(i).bits.imm := Cat(lui_imm, ld_imm)
567    }
568
569  }
570
571  val genSnapshot = Cat(io.out.map(out => out.fire && out.bits.snapshot)).orR
572  val lastCycleCreateSnpt = RegInit(false.B)
573  lastCycleCreateSnpt := genSnapshot && !io.snptIsFull
574  val sameSnptDistance = (RobCommitWidth * 4).U
575  // notInSameSnpt: 1.robidxHead - snapLastEnq >= sameSnptDistance 2.no snap
576  val notInSameSnpt = GatedValidRegNext(distanceBetween(robIdxHeadNext, io.snptLastEnq.bits) >= sameSnptDistance || !io.snptLastEnq.valid)
577  val allowSnpt = if (EnableRenameSnapshot) notInSameSnpt && !lastCycleCreateSnpt && io.in.head.bits.firstUop else false.B
578  io.out.zip(io.in).foreach{ case (out, in) => out.bits.snapshot := allowSnpt && (!in.bits.preDecodeInfo.notCFI || FuType.isJump(in.bits.fuType)) && in.fire }
579  io.out.map{ x =>
580    x.bits.hasException := Cat(selectFrontend(x.bits.exceptionVec) :+ x.bits.exceptionVec(illegalInstr) :+ x.bits.exceptionVec(virtualInstr)).orR || TriggerAction.isDmode(x.bits.trigger)
581  }
582  if(backendParams.debugEn){
583    dontTouch(robIdxHeadNext)
584    dontTouch(notInSameSnpt)
585    dontTouch(genSnapshot)
586  }
587  intFreeList.io.snpt := io.snpt
588  fpFreeList.io.snpt := io.snpt
589  vecFreeList.io.snpt := io.snpt
590  v0FreeList.io.snpt := io.snpt
591  vlFreeList.io.snpt := io.snpt
592  intFreeList.io.snpt.snptEnq := genSnapshot
593  fpFreeList.io.snpt.snptEnq := genSnapshot
594  vecFreeList.io.snpt.snptEnq := genSnapshot
595  v0FreeList.io.snpt.snptEnq := genSnapshot
596  vlFreeList.io.snpt.snptEnq := genSnapshot
597
598  /**
599    * Instructions commit: update freelist and rename table
600    */
601  for (i <- 0 until RabCommitWidth) {
602    val commitValid = io.rabCommits.isCommit && io.rabCommits.commitValid(i)
603    val walkValid = io.rabCommits.isWalk && io.rabCommits.walkValid(i)
604
605    // I. RAT Update
606    // When redirect happens (mis-prediction), don't update the rename table
607    io.intRenamePorts(i).wen  := intSpecWen(i)
608    io.intRenamePorts(i).addr := uops(i).ldest(log2Ceil(IntLogicRegs) - 1, 0)
609    io.intRenamePorts(i).data := io.out(i).bits.pdest
610
611    io.fpRenamePorts(i).wen  := fpSpecWen(i)
612    io.fpRenamePorts(i).addr := uops(i).ldest(log2Ceil(FpLogicRegs) - 1, 0)
613    io.fpRenamePorts(i).data := fpFreeList.io.allocatePhyReg(i)
614
615    io.vecRenamePorts(i).wen := vecSpecWen(i)
616    io.vecRenamePorts(i).addr := uops(i).ldest(log2Ceil(VecLogicRegs) - 1, 0)
617    io.vecRenamePorts(i).data := vecFreeList.io.allocatePhyReg(i)
618
619    io.v0RenamePorts(i).wen := v0SpecWen(i)
620    io.v0RenamePorts(i).addr := uops(i).ldest(log2Ceil(V0LogicRegs) - 1, 0)
621    io.v0RenamePorts(i).data := v0FreeList.io.allocatePhyReg(i)
622
623    io.vlRenamePorts(i).wen := vlSpecWen(i)
624    io.vlRenamePorts(i).addr := uops(i).ldest(log2Ceil(VlLogicRegs) - 1, 0)
625    io.vlRenamePorts(i).data := vlFreeList.io.allocatePhyReg(i)
626
627    // II. Free List Update
628    intFreeList.io.freeReq(i) := io.int_need_free(i)
629    intFreeList.io.freePhyReg(i) := RegNext(io.int_old_pdest(i))
630    fpFreeList.io.freeReq(i)  := GatedValidRegNext(commitValid && needDestRegCommit(Reg_F, io.rabCommits.info(i)))
631    fpFreeList.io.freePhyReg(i) := io.fp_old_pdest(i)
632    vecFreeList.io.freeReq(i)  := GatedValidRegNext(commitValid && needDestRegCommit(Reg_V, io.rabCommits.info(i)))
633    vecFreeList.io.freePhyReg(i) := io.vec_old_pdest(i)
634    v0FreeList.io.freeReq(i) := GatedValidRegNext(commitValid && needDestRegCommit(Reg_V0, io.rabCommits.info(i)))
635    v0FreeList.io.freePhyReg(i) := io.v0_old_pdest(i)
636    vlFreeList.io.freeReq(i) := GatedValidRegNext(commitValid && needDestRegCommit(Reg_Vl, io.rabCommits.info(i)))
637    vlFreeList.io.freePhyReg(i) := io.vl_old_pdest(i)
638  }
639
640  /*
641  Debug and performance counters
642   */
643  def printRenameInfo(in: DecoupledIO[DecodedInst], out: DecoupledIO[DynInst]) = {
644    XSInfo(out.fire, p"pc:${Hexadecimal(in.bits.pc)} in(${in.valid},${in.ready}) " +
645      p"lsrc(0):${in.bits.lsrc(0)} -> psrc(0):${out.bits.psrc(0)} " +
646      p"lsrc(1):${in.bits.lsrc(1)} -> psrc(1):${out.bits.psrc(1)} " +
647      p"lsrc(2):${in.bits.lsrc(2)} -> psrc(2):${out.bits.psrc(2)} " +
648      p"ldest:${in.bits.ldest} -> pdest:${out.bits.pdest}\n"
649    )
650  }
651
652  for ((x,y) <- io.in.zip(io.out)) {
653    printRenameInfo(x, y)
654  }
655
656  io.out.map { case x =>
657    when(x.valid && x.bits.rfWen){
658      assert(x.bits.ldest =/= 0.U, "rfWen cannot be 1 when Int regfile ldest is 0")
659    }
660  }
661  val debugRedirect = RegEnable(io.redirect.bits, io.redirect.valid)
662  // bad speculation
663  val recStall = io.redirect.valid || io.rabCommits.isWalk
664  val ctrlRecStall = Mux(io.redirect.valid, io.redirect.bits.debugIsCtrl, io.rabCommits.isWalk && debugRedirect.debugIsCtrl)
665  val mvioRecStall = Mux(io.redirect.valid, io.redirect.bits.debugIsMemVio, io.rabCommits.isWalk && debugRedirect.debugIsMemVio)
666  val otherRecStall = recStall && !(ctrlRecStall || mvioRecStall)
667  XSPerfAccumulate("recovery_stall", recStall)
668  XSPerfAccumulate("control_recovery_stall", ctrlRecStall)
669  XSPerfAccumulate("mem_violation_recovery_stall", mvioRecStall)
670  XSPerfAccumulate("other_recovery_stall", otherRecStall)
671  // freelist stall
672  val notRecStall = !io.out.head.valid && !recStall
673  val intFlStall = notRecStall && inHeadValid && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !intFreeList.io.canAllocate
674  val fpFlStall = notRecStall && inHeadValid && intFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !fpFreeList.io.canAllocate
675  val vecFlStall = notRecStall && inHeadValid && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !vecFreeList.io.canAllocate
676  val v0FlStall = notRecStall && inHeadValid && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && vlFreeList.io.canAllocate && !v0FreeList.io.canAllocate
677  val vlFlStall = notRecStall && inHeadValid && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && !vlFreeList.io.canAllocate
678  val multiFlStall = notRecStall && inHeadValid && (PopCount(Cat(
679    !intFreeList.io.canAllocate,
680    !fpFreeList.io.canAllocate,
681    !vecFreeList.io.canAllocate,
682    !v0FreeList.io.canAllocate,
683    !vlFreeList.io.canAllocate,
684  )) > 1.U)
685  // other stall
686  val otherStall = notRecStall && !intFlStall && !fpFlStall && !vecFlStall && !v0FlStall && !vlFlStall && !multiFlStall
687
688  io.stallReason.in.backReason.valid := io.stallReason.out.backReason.valid || !io.in.head.ready
689  io.stallReason.in.backReason.bits := Mux(io.stallReason.out.backReason.valid, io.stallReason.out.backReason.bits,
690    MuxCase(TopDownCounters.OtherCoreStall.id.U, Seq(
691      ctrlRecStall  -> TopDownCounters.ControlRecoveryStall.id.U,
692      mvioRecStall  -> TopDownCounters.MemVioRecoveryStall.id.U,
693      otherRecStall -> TopDownCounters.OtherRecoveryStall.id.U,
694      intFlStall    -> TopDownCounters.IntFlStall.id.U,
695      fpFlStall     -> TopDownCounters.FpFlStall.id.U,
696      vecFlStall    -> TopDownCounters.VecFlStall.id.U,
697      v0FlStall     -> TopDownCounters.V0FlStall.id.U,
698      vlFlStall     -> TopDownCounters.VlFlStall.id.U,
699      multiFlStall  -> TopDownCounters.MultiFlStall.id.U,
700    )
701  ))
702  io.stallReason.out.reason.zip(io.stallReason.in.reason).zip(io.in.map(_.valid)).foreach { case ((out, in), valid) =>
703    out := Mux(io.stallReason.in.backReason.valid, io.stallReason.in.backReason.bits, in)
704  }
705
706  XSDebug(io.rabCommits.isWalk, p"Walk Recovery Enabled\n")
707  XSDebug(io.rabCommits.isWalk, p"validVec:${Binary(io.rabCommits.walkValid.asUInt)}\n")
708  for (i <- 0 until RabCommitWidth) {
709    val info = io.rabCommits.info(i)
710    XSDebug(io.rabCommits.isWalk && io.rabCommits.walkValid(i), p"[#$i walk info] " +
711      p"ldest:${info.ldest} rfWen:${info.rfWen} fpWen:${info.fpWen} vecWen:${info.vecWen} v0Wen:${info.v0Wen} vlWen:${info.vlWen}")
712  }
713
714  XSDebug(p"inValidVec: ${Binary(Cat(io.in.map(_.valid)))}\n")
715
716  XSPerfAccumulate("in_valid_count", PopCount(io.in.map(_.valid)))
717  XSPerfAccumulate("in_fire_count", PopCount(io.in.map(_.fire)))
718  XSPerfAccumulate("in_valid_not_ready_count", PopCount(io.in.map(x => x.valid && !x.ready)))
719  XSPerfAccumulate("wait_cycle", !io.in.head.valid && dispatchCanAcc)
720
721  // These stall reasons could overlap each other, but we configure the priority as fellows.
722  // walk stall > dispatch stall > int freelist stall > fp freelist stall
723  private val inHeadStall = io.in.head match { case x => x.valid && !x.ready }
724  private val stallForWalk      = inHeadValid &&  io.rabCommits.isWalk
725  private val stallForDispatch  = inHeadValid && !io.rabCommits.isWalk && !dispatchCanAcc
726  private val stallForIntFL     = inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !intFreeList.io.canAllocate
727  private val stallForFpFL      = inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !fpFreeList.io.canAllocate
728  private val stallForVecFL     = inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !vecFreeList.io.canAllocate
729  private val stallForV0FL      = inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && vlFreeList.io.canAllocate && !v0FreeList.io.canAllocate
730  private val stallForVlFL      = inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && !vlFreeList.io.canAllocate
731  XSPerfAccumulate("stall_cycle",          inHeadStall)
732  XSPerfAccumulate("stall_cycle_walk",     stallForWalk)
733  XSPerfAccumulate("stall_cycle_dispatch", stallForDispatch)
734  XSPerfAccumulate("stall_cycle_int",      stallForIntFL)
735  XSPerfAccumulate("stall_cycle_fp",       stallForFpFL)
736  XSPerfAccumulate("stall_cycle_vec",      stallForVecFL)
737  XSPerfAccumulate("stall_cycle_vec",      stallForV0FL)
738  XSPerfAccumulate("stall_cycle_vec",      stallForVlFL)
739
740  XSPerfHistogram("in_valid_range",  PopCount(io.in.map(_.valid)),  true.B, 0, DecodeWidth + 1, 1)
741  XSPerfHistogram("in_fire_range",   PopCount(io.in.map(_.fire)),   true.B, 0, DecodeWidth + 1, 1)
742  XSPerfHistogram("out_valid_range", PopCount(io.out.map(_.valid)), true.B, 0, DecodeWidth + 1, 1)
743  XSPerfHistogram("out_fire_range",  PopCount(io.out.map(_.fire)),  true.B, 0, DecodeWidth + 1, 1)
744
745  XSPerfAccumulate("move_instr_count", PopCount(io.out.map(out => out.fire && out.bits.isMove)))
746  val is_fused_lui_load = io.out.map(o => o.fire && o.bits.fuType === FuType.ldu.U && o.bits.srcType(0) === SrcType.imm)
747  XSPerfAccumulate("fused_lui_load_instr_count", PopCount(is_fused_lui_load))
748
749  val renamePerf = Seq(
750    ("rename_in                  ", PopCount(io.in.map(_.valid & io.in(0).ready ))),
751    ("rename_waitinstr           ", PopCount((0 until RenameWidth).map(i => io.in(i).valid && !io.in(i).ready))),
752    ("rename_stall               ", inHeadStall),
753    ("rename_stall_cycle_walk    ", inHeadValid &&  io.rabCommits.isWalk),
754    ("rename_stall_cycle_dispatch", inHeadValid && !io.rabCommits.isWalk && !dispatchCanAcc),
755    ("rename_stall_cycle_int     ", inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !intFreeList.io.canAllocate),
756    ("rename_stall_cycle_fp      ", inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !fpFreeList.io.canAllocate),
757    ("rename_stall_cycle_vec     ", inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && v0FreeList.io.canAllocate && vlFreeList.io.canAllocate && !vecFreeList.io.canAllocate),
758    ("rename_stall_cycle_v0      ", inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && vlFreeList.io.canAllocate && !v0FreeList.io.canAllocate),
759    ("rename_stall_cycle_vl      ", inHeadValid && !io.rabCommits.isWalk && dispatchCanAcc && intFreeList.io.canAllocate && fpFreeList.io.canAllocate && vecFreeList.io.canAllocate && v0FreeList.io.canAllocate && !vlFreeList.io.canAllocate),
760  )
761  val intFlPerf = intFreeList.getPerfEvents
762  val fpFlPerf = fpFreeList.getPerfEvents
763  val vecFlPerf = vecFreeList.getPerfEvents
764  val v0FlPerf = v0FreeList.getPerfEvents
765  val vlFlPerf = vlFreeList.getPerfEvents
766  val perfEvents = renamePerf ++ intFlPerf ++ fpFlPerf ++ vecFlPerf ++ v0FlPerf ++ vlFlPerf
767  generatePerfEvent()
768}
769