xref: /XiangShan/src/main/scala/xiangshan/frontend/FrontendBundle.scala (revision 3642c22fc8628b1dc65216f57e0595adc20a7a2a)
109c6f1ddSLingrui98/***************************************************************************************
2e3da8badSTang Haojin* Copyright (c) 2024 Beijing Institute of Open Source Chip (BOSC)
3e3da8badSTang Haojin* Copyright (c) 2020-2024 Institute of Computing Technology, Chinese Academy of Sciences
409c6f1ddSLingrui98* Copyright (c) 2020-2021 Peng Cheng Laboratory
509c6f1ddSLingrui98*
609c6f1ddSLingrui98* XiangShan is licensed under Mulan PSL v2.
709c6f1ddSLingrui98* You can use this software according to the terms and conditions of the Mulan PSL v2.
809c6f1ddSLingrui98* You may obtain a copy of Mulan PSL v2 at:
909c6f1ddSLingrui98*          http://license.coscl.org.cn/MulanPSL2
1009c6f1ddSLingrui98*
1109c6f1ddSLingrui98* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
1209c6f1ddSLingrui98* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
1309c6f1ddSLingrui98* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
1409c6f1ddSLingrui98*
1509c6f1ddSLingrui98* See the Mulan PSL v2 for more details.
1609c6f1ddSLingrui98***************************************************************************************/
1709c6f1ddSLingrui98package xiangshan.frontend
1809c6f1ddSLingrui98
1909c6f1ddSLingrui98import chisel3._
2009c6f1ddSLingrui98import chisel3.util._
21cf7d6b7aSMuziimport org.chipsalliance.cde.config.Parameters
22cf7d6b7aSMuziimport utility._
23cf7d6b7aSMuziimport xiangshan._
24cf7d6b7aSMuziimport xiangshan.backend.fu.PMPRespBundle
25cf7d6b7aSMuziimport xiangshan.cache.mmu.TlbResp
26cf7d6b7aSMuziimport xiangshan.frontend.icache._
27d2b20d1aSTang Haojin
28d2b20d1aSTang Haojinclass FrontendTopDownBundle(implicit p: Parameters) extends XSBundle {
29d2b20d1aSTang Haojin  val reasons    = Vec(TopDownCounters.NumStallReasons.id, Bool())
30d2b20d1aSTang Haojin  val stallWidth = UInt(log2Ceil(PredictWidth).W)
31d2b20d1aSTang Haojin}
3209c6f1ddSLingrui98
33b37e4b45SLingrui98class FetchRequestBundle(implicit p: Parameters) extends XSBundle with HasICacheParameters {
34c5c5edaeSJenius
35c5c5edaeSJenius  // fast path: Timing critical
3609c6f1ddSLingrui98  val startAddr     = UInt(VAddrBits.W)
3734a88126SJinYue  val nextlineStart = UInt(VAddrBits.W)
38c5c5edaeSJenius  val nextStartAddr = UInt(VAddrBits.W)
39c5c5edaeSJenius  // slow path
4009c6f1ddSLingrui98  val ftqIdx    = new FtqPtr
4109c6f1ddSLingrui98  val ftqOffset = ValidUndirectioned(UInt(log2Ceil(PredictWidth).W))
4209c6f1ddSLingrui98
43d2b20d1aSTang Haojin  val topdown_info = new FrontendTopDownBundle
44d2b20d1aSTang Haojin
456ce52296SJinYue  def crossCacheline = startAddr(blockOffBits - 1) === 1.U
466ce52296SJinYue
4709c6f1ddSLingrui98  def fromFtqPcBundle(b: Ftq_RF_Components) = {
4809c6f1ddSLingrui98    this.startAddr     := b.startAddr
49b37e4b45SLingrui98    this.nextlineStart := b.nextLineAddr
509402431eSmy-mayfly    // when (b.fallThruError) {
519402431eSmy-mayfly    //   val nextBlockHigherTemp = Mux(startAddr(log2Ceil(PredictWidth)+instOffsetBits), b.nextLineAddr, b.startAddr)
529402431eSmy-mayfly    //   val nextBlockHigher = nextBlockHigherTemp(VAddrBits-1, log2Ceil(PredictWidth)+instOffsetBits+1)
539402431eSmy-mayfly    //   this.nextStartAddr :=
549402431eSmy-mayfly    //     Cat(nextBlockHigher,
559402431eSmy-mayfly    //       startAddr(log2Ceil(PredictWidth)+instOffsetBits) ^ 1.U(1.W),
569402431eSmy-mayfly    //       startAddr(log2Ceil(PredictWidth)+instOffsetBits-1, instOffsetBits),
579402431eSmy-mayfly    //       0.U(instOffsetBits.W)
589402431eSmy-mayfly    //     )
599402431eSmy-mayfly    // }
6009c6f1ddSLingrui98    this
6109c6f1ddSLingrui98  }
62cf7d6b7aSMuzi  override def toPrintable: Printable =
63b37e4b45SLingrui98    p"[start] ${Hexadecimal(startAddr)} [next] ${Hexadecimal(nextlineStart)}" +
64b37e4b45SLingrui98      p"[tgt] ${Hexadecimal(nextStartAddr)} [ftqIdx] $ftqIdx [jmp] v:${ftqOffset.valid}" +
6509c6f1ddSLingrui98      p" offset: ${ftqOffset.bits}\n"
6609c6f1ddSLingrui98}
6709c6f1ddSLingrui98
68f22cf846SJeniusclass FtqICacheInfo(implicit p: Parameters) extends XSBundle with HasICacheParameters {
69c5c5edaeSJenius  val startAddr      = UInt(VAddrBits.W)
70c5c5edaeSJenius  val nextlineStart  = UInt(VAddrBits.W)
71b92f8445Sssszwic  val ftqIdx         = new FtqPtr
72c5c5edaeSJenius  def crossCacheline = startAddr(blockOffBits - 1) === 1.U
73b004fa13SJenius  def fromFtqPcBundle(b: Ftq_RF_Components) = {
74b004fa13SJenius    this.startAddr     := b.startAddr
75b004fa13SJenius    this.nextlineStart := b.nextLineAddr
76b004fa13SJenius    this
77b004fa13SJenius  }
78f22cf846SJenius}
79f22cf846SJenius
8050780602SJeniusclass IFUICacheIO(implicit p: Parameters) extends XSBundle with HasICacheParameters {
8150780602SJenius  val icacheReady       = Output(Bool())
824690c88aSxu_zh  val resp              = ValidIO(new ICacheMainPipeResp)
83d2b20d1aSTang Haojin  val topdownIcacheMiss = Output(Bool())
84d2b20d1aSTang Haojin  val topdownItlbMiss   = Output(Bool())
8550780602SJenius}
8650780602SJenius
87f22cf846SJeniusclass FtqToICacheRequestBundle(implicit p: Parameters) extends XSBundle with HasICacheParameters {
88f56177cbSJenius  val pcMemRead        = Vec(5, new FtqICacheInfo)
89dc270d3bSJenius  val readValid        = Vec(5, Bool())
90fbdb359dSMuzi  val backendException = Bool()
91c5c5edaeSJenius}
92c5c5edaeSJenius
9309c6f1ddSLingrui98class PredecodeWritebackBundle(implicit p: Parameters) extends XSBundle {
9409c6f1ddSLingrui98  val pc         = Vec(PredictWidth, UInt(VAddrBits.W))
9509c6f1ddSLingrui98  val pd         = Vec(PredictWidth, new PreDecodeInfo) // TODO: redefine Predecode
9609c6f1ddSLingrui98  val ftqIdx     = new FtqPtr
9709c6f1ddSLingrui98  val ftqOffset  = UInt(log2Ceil(PredictWidth).W)
9809c6f1ddSLingrui98  val misOffset  = ValidUndirectioned(UInt(log2Ceil(PredictWidth).W))
9909c6f1ddSLingrui98  val cfiOffset  = ValidUndirectioned(UInt(log2Ceil(PredictWidth).W))
10009c6f1ddSLingrui98  val target     = UInt(VAddrBits.W)
10109c6f1ddSLingrui98  val jalTarget  = UInt(VAddrBits.W)
10209c6f1ddSLingrui98  val instrRange = Vec(PredictWidth, Bool())
10309c6f1ddSLingrui98}
10409c6f1ddSLingrui98
1051d1e6d4dSJeniusclass mmioCommitRead(implicit p: Parameters) extends XSBundle {
1061d1e6d4dSJenius  val mmioFtqPtr     = Output(new FtqPtr)
1071d1e6d4dSJenius  val mmioLastCommit = Input(Bool())
1081d1e6d4dSJenius}
1091d1e6d4dSJenius
1106b46af8dSMuziobject ExceptionType {
11188895b11Sxu_zh  def width: Int  = 2
112*3642c22fSMuzi  def none:  UInt = "b00".U(width.W)
113*3642c22fSMuzi  def pf:    UInt = "b01".U(width.W) // instruction page fault
114*3642c22fSMuzi  def gpf:   UInt = "b10".U(width.W) // instruction guest page fault
115*3642c22fSMuzi  def af:    UInt = "b11".U(width.W) // instruction access fault
11688895b11Sxu_zh
117fbdb359dSMuzi  def hasException(e: UInt):             Bool = e =/= none
118dd02bc3fSxu_zh  def hasException(e: Vec[UInt]):        Bool = e.map(_ =/= none).reduce(_ || _)
119dd02bc3fSxu_zh  def hasException(e: IndexedSeq[UInt]): Bool = hasException(VecInit(e))
120fbdb359dSMuzi
121c1b28b66STang Haojin  def fromOH(has_pf: Bool, has_gpf: Bool, has_af: Bool): UInt = {
122c1b28b66STang Haojin    assert(
123c1b28b66STang Haojin      PopCount(VecInit(has_pf, has_gpf, has_af)) <= 1.U,
124c1b28b66STang Haojin      "ExceptionType.fromOH receives input that is not one-hot: pf=%d, gpf=%d, af=%d",
125cf7d6b7aSMuzi      has_pf,
126cf7d6b7aSMuzi      has_gpf,
127cf7d6b7aSMuzi      has_af
128c1b28b66STang Haojin    )
129c1b28b66STang Haojin    // input is at-most-one-hot encoded, so we don't worry about priority here.
130cf7d6b7aSMuzi    MuxCase(
131cf7d6b7aSMuzi      none,
132cf7d6b7aSMuzi      Seq(
133c1b28b66STang Haojin        has_pf  -> pf,
134c1b28b66STang Haojin        has_gpf -> gpf,
135c1b28b66STang Haojin        has_af  -> af
136cf7d6b7aSMuzi      )
137cf7d6b7aSMuzi    )
138c1b28b66STang Haojin  }
139c1b28b66STang Haojin
14088895b11Sxu_zh  // raise pf/gpf/af according to itlb response
14188895b11Sxu_zh  def fromTlbResp(resp: TlbResp, useDup: Int = 0): UInt = {
14288895b11Sxu_zh    require(useDup >= 0 && useDup < resp.excp.length)
143c1b28b66STang Haojin    // itlb is guaranteed to respond at most one exception
144c1b28b66STang Haojin    fromOH(
145c1b28b66STang Haojin      resp.excp(useDup).pf.instr,
146c1b28b66STang Haojin      resp.excp(useDup).gpf.instr,
147c1b28b66STang Haojin      resp.excp(useDup).af.instr
14888895b11Sxu_zh    )
14988895b11Sxu_zh  }
15088895b11Sxu_zh
15188895b11Sxu_zh  // raise af if pmp check failed
152cf7d6b7aSMuzi  def fromPMPResp(resp: PMPRespBundle): UInt =
15388895b11Sxu_zh    Mux(resp.instr, af, none)
15488895b11Sxu_zh
15588895b11Sxu_zh  // raise af if meta/data array ecc check failed or l2 cache respond with tilelink corrupt
156f80535c3Sxu_zh  /* FIXME: RISC-V Machine ISA v1.13 (draft) introduced a "hardware error" exception, described as:
157f80535c3Sxu_zh   * > A Hardware Error exception is a synchronous exception triggered when corrupted or
158f80535c3Sxu_zh   * > uncorrectable data is accessed explicitly or implicitly by an instruction. In this context,
159f80535c3Sxu_zh   * > "data" encompasses all types of information used within a RISC-V hart. Upon a hardware
160f80535c3Sxu_zh   * > error exception, the xepc register is set to the address of the instruction that attempted to
161f80535c3Sxu_zh   * > access corrupted data, while the xtval register is set either to 0 or to the virtual address
162f80535c3Sxu_zh   * > of an instruction fetch, load, or store that attempted to access corrupted data. The priority
163f80535c3Sxu_zh   * > of Hardware Error exception is implementation-defined, but any given occurrence is
164f80535c3Sxu_zh   * > generally expected to be recognized at the point in the overall priority order at which the
165f80535c3Sxu_zh   * > hardware error is discovered.
166f80535c3Sxu_zh   * Maybe it's better to raise hardware error instead of access fault when ECC check failed.
167f80535c3Sxu_zh   * But it's draft and XiangShan backend does not implement this exception code yet, so we still raise af here.
168f80535c3Sxu_zh   */
169cf7d6b7aSMuzi  def fromECC(enable: Bool, corrupt: Bool): UInt =
170f80535c3Sxu_zh    Mux(enable && corrupt, af, none)
17188895b11Sxu_zh
17288895b11Sxu_zh  /**Generates exception mux tree
17388895b11Sxu_zh   *
17488895b11Sxu_zh   * Exceptions that are further to the left in the parameter list have higher priority
17588895b11Sxu_zh   * @example
17688895b11Sxu_zh   * {{{
17788895b11Sxu_zh   *   val itlb_exception = ExceptionType.fromTlbResp(io.itlb.resp.bits)
17888895b11Sxu_zh   *   // so as pmp_exception, meta_corrupt
17988895b11Sxu_zh   *   // ExceptionType.merge(itlb_exception, pmp_exception, meta_corrupt) is equivalent to:
18088895b11Sxu_zh   *   Mux(
18188895b11Sxu_zh   *     itlb_exception =/= none,
18288895b11Sxu_zh   *     itlb_exception,
18388895b11Sxu_zh   *     Mux(pmp_exception =/= none, pmp_exception, meta_corrupt)
18488895b11Sxu_zh   *   )
18588895b11Sxu_zh   * }}}
18688895b11Sxu_zh   */
18788895b11Sxu_zh  def merge(exceptions: UInt*): UInt = {
18888895b11Sxu_zh//    // recursively generate mux tree
18988895b11Sxu_zh//    if (exceptions.length == 1) {
19088895b11Sxu_zh//      require(exceptions.head.getWidth == width)
19188895b11Sxu_zh//      exceptions.head
19288895b11Sxu_zh//    } else {
19388895b11Sxu_zh//      Mux(exceptions.head =/= none, exceptions.head, merge(exceptions.tail: _*))
19488895b11Sxu_zh//    }
19588895b11Sxu_zh    // use MuxCase with default
19688895b11Sxu_zh    exceptions.foreach(e => require(e.getWidth == width))
19788895b11Sxu_zh    val mapping = exceptions.init.map(e => (e =/= none) -> e)
19888895b11Sxu_zh    val default = exceptions.last
19988895b11Sxu_zh    MuxCase(default, mapping)
20088895b11Sxu_zh  }
20188895b11Sxu_zh
20288895b11Sxu_zh  /**Generates exception mux tree for multi-port exception vectors
20388895b11Sxu_zh   *
20488895b11Sxu_zh   * Exceptions that are further to the left in the parameter list have higher priority
20588895b11Sxu_zh   * @example
20688895b11Sxu_zh   * {{{
20788895b11Sxu_zh   *   val itlb_exception = VecInit((0 until PortNumber).map(i => ExceptionType.fromTlbResp(io.itlb(i).resp.bits)))
20888895b11Sxu_zh   *   // so as pmp_exception, meta_corrupt
20988895b11Sxu_zh   *   // ExceptionType.merge(itlb_exception, pmp_exception, meta_corrupt) is equivalent to:
21088895b11Sxu_zh   *   VecInit((0 until PortNumber).map(i => Mux(
21188895b11Sxu_zh   *     itlb_exception(i) =/= none,
21288895b11Sxu_zh   *     itlb_exception(i),
21388895b11Sxu_zh   *     Mux(pmp_exception(i) =/= none, pmp_exception(i), meta_corrupt(i))
21488895b11Sxu_zh   *   ))
21588895b11Sxu_zh   * }}}
21688895b11Sxu_zh   */
21788895b11Sxu_zh  def merge(exceptionVecs: Vec[UInt]*): Vec[UInt] = {
21888895b11Sxu_zh//    // recursively generate mux tree
21988895b11Sxu_zh//    if (exceptionVecs.length == 1) {
22088895b11Sxu_zh//      exceptionVecs.head.foreach(e => require(e.getWidth == width))
22188895b11Sxu_zh//      exceptionVecs.head
22288895b11Sxu_zh//    } else {
22388895b11Sxu_zh//      require(exceptionVecs.head.length == exceptionVecs.last.length)
22488895b11Sxu_zh//      VecInit((exceptionVecs.head zip merge(exceptionVecs.tail: _*)).map{ case (high, low) =>
22588895b11Sxu_zh//        Mux(high =/= none, high, low)
22688895b11Sxu_zh//      })
22788895b11Sxu_zh//    }
22888895b11Sxu_zh    // merge port-by-port
22988895b11Sxu_zh    val length = exceptionVecs.head.length
23088895b11Sxu_zh    exceptionVecs.tail.foreach(vec => require(vec.length == length))
231cf7d6b7aSMuzi    VecInit((0 until length).map(i => merge(exceptionVecs.map(_(i)): _*)))
23288895b11Sxu_zh  }
2336b46af8dSMuzi}
2346b46af8dSMuzi
23509c6f1ddSLingrui98class FetchToIBuffer(implicit p: Parameters) extends XSBundle {
23609c6f1ddSLingrui98  val instrs           = Vec(PredictWidth, UInt(32.W))
23709c6f1ddSLingrui98  val valid            = UInt(PredictWidth.W)
2382a3050c2SJay  val enqEnable        = UInt(PredictWidth.W)
23909c6f1ddSLingrui98  val pd               = Vec(PredictWidth, new PreDecodeInfo)
24009c6f1ddSLingrui98  val foldpc           = Vec(PredictWidth, UInt(MemPredPCWidth.W))
24109c6f1ddSLingrui98  val ftqOffset        = Vec(PredictWidth, ValidUndirectioned(UInt(log2Ceil(PredictWidth).W)))
242fbdb359dSMuzi  val backendException = Vec(PredictWidth, Bool())
2436b46af8dSMuzi  val exceptionType    = Vec(PredictWidth, UInt(ExceptionType.width.W))
24409c6f1ddSLingrui98  val crossPageIPFFix  = Vec(PredictWidth, Bool())
24592c61038SXuan Hu  val illegalInstr     = Vec(PredictWidth, Bool())
2467e0f64b0SGuanghui Cheng  val triggered        = Vec(PredictWidth, TriggerAction())
247948e8159SEaston Man  val isLastInFtqEntry = Vec(PredictWidth, Bool())
248948e8159SEaston Man
249948e8159SEaston Man  val pc           = Vec(PredictWidth, UInt(VAddrBits.W))
250948e8159SEaston Man  val ftqPtr       = new FtqPtr
251d2b20d1aSTang Haojin  val topdown_info = new FrontendTopDownBundle
25209c6f1ddSLingrui98}
25309c6f1ddSLingrui98
254c2ad24ebSLingrui98// class BitWiseUInt(val width: Int, val init: UInt) extends Module {
255c2ad24ebSLingrui98//   val io = IO(new Bundle {
256c2ad24ebSLingrui98//     val set
257c2ad24ebSLingrui98//   })
258c2ad24ebSLingrui98// }
25909c6f1ddSLingrui98// Move from BPU
260c2ad24ebSLingrui98abstract class GlobalHistory(implicit p: Parameters) extends XSBundle with HasBPUConst {
261c2ad24ebSLingrui98  def update(br_valids: Vec[Bool], real_taken_mask: Vec[Bool]): GlobalHistory
262c2ad24ebSLingrui98}
263c2ad24ebSLingrui98
264c2ad24ebSLingrui98class ShiftingGlobalHistory(implicit p: Parameters) extends GlobalHistory {
26509c6f1ddSLingrui98  val predHist = UInt(HistoryLength.W)
26609c6f1ddSLingrui98
267c2ad24ebSLingrui98  def update(shift: UInt, taken: Bool, hist: UInt = this.predHist): ShiftingGlobalHistory = {
268c2ad24ebSLingrui98    val g = Wire(new ShiftingGlobalHistory)
26909c6f1ddSLingrui98    g.predHist := (hist << shift) | taken
27009c6f1ddSLingrui98    g
27109c6f1ddSLingrui98  }
27209c6f1ddSLingrui98
273c2ad24ebSLingrui98  def update(br_valids: Vec[Bool], real_taken_mask: Vec[Bool]): ShiftingGlobalHistory = {
274eeb5ff92SLingrui98    require(br_valids.length == numBr)
275eeb5ff92SLingrui98    require(real_taken_mask.length == numBr)
276eeb5ff92SLingrui98    val last_valid_idx = PriorityMux(
277eeb5ff92SLingrui98      br_valids.reverse :+ true.B,
278eeb5ff92SLingrui98      (numBr to 0 by -1).map(_.U(log2Ceil(numBr + 1).W))
279eeb5ff92SLingrui98    )
280eeb5ff92SLingrui98    val first_taken_idx = PriorityEncoder(false.B +: real_taken_mask)
281cf7d6b7aSMuzi    val smaller         = Mux(last_valid_idx < first_taken_idx, last_valid_idx, first_taken_idx)
282eeb5ff92SLingrui98    val shift           = smaller
283eeb5ff92SLingrui98    val taken           = real_taken_mask.reduce(_ || _)
284eeb5ff92SLingrui98    update(shift, taken, this.predHist)
285eeb5ff92SLingrui98  }
286eeb5ff92SLingrui98
287c2ad24ebSLingrui98  // static read
288935edac4STang Haojin  def read(n: Int): Bool = predHist.asBools(n)
289c2ad24ebSLingrui98
290cf7d6b7aSMuzi  final def ===(that: ShiftingGlobalHistory): Bool =
29109c6f1ddSLingrui98    predHist === that.predHist
29209c6f1ddSLingrui98
293c2ad24ebSLingrui98  final def =/=(that: ShiftingGlobalHistory): Bool = !(this === that)
294c2ad24ebSLingrui98}
29509c6f1ddSLingrui98
296c2ad24ebSLingrui98// circular global history pointer
297cf7d6b7aSMuziclass CGHPtr(implicit p: Parameters) extends CircularQueuePtr[CGHPtr](p => p(XSCoreParamsKey).HistoryLength) {}
298c7fabd05SSteve Gou
299c7fabd05SSteve Gouobject CGHPtr {
300c7fabd05SSteve Gou  def apply(f: Bool, v: UInt)(implicit p: Parameters): CGHPtr = {
301c7fabd05SSteve Gou    val ptr = Wire(new CGHPtr)
302c7fabd05SSteve Gou    ptr.flag  := f
303c7fabd05SSteve Gou    ptr.value := v
304c7fabd05SSteve Gou    ptr
305c7fabd05SSteve Gou  }
306cf7d6b7aSMuzi  def inverse(ptr: CGHPtr)(implicit p: Parameters): CGHPtr =
307c7fabd05SSteve Gou    apply(!ptr.flag, ptr.value)
308c7fabd05SSteve Gou}
309c7fabd05SSteve Gou
310c2ad24ebSLingrui98class CircularGlobalHistory(implicit p: Parameters) extends GlobalHistory {
311c2ad24ebSLingrui98  val buffer = Vec(HistoryLength, Bool())
312c2ad24ebSLingrui98  type HistPtr = UInt
313cf7d6b7aSMuzi  def update(br_valids: Vec[Bool], real_taken_mask: Vec[Bool]): CircularGlobalHistory =
314c2ad24ebSLingrui98    this
315c2ad24ebSLingrui98}
316c2ad24ebSLingrui98
317dd6c0695SLingrui98class FoldedHistory(val len: Int, val compLen: Int, val max_update_num: Int)(implicit p: Parameters)
318c2ad24ebSLingrui98    extends XSBundle with HasBPUConst {
319dd6c0695SLingrui98  require(compLen >= 1)
320c2ad24ebSLingrui98  require(len > 0)
321c2ad24ebSLingrui98  // require(folded_len <= len)
322dd6c0695SLingrui98  require(compLen >= max_update_num)
323dd6c0695SLingrui98  val folded_hist = UInt(compLen.W)
324dd6c0695SLingrui98
32567402d75SLingrui98  def need_oldest_bits           = len > compLen
326dd6c0695SLingrui98  def info                       = (len, compLen)
327c2ad24ebSLingrui98  def oldest_bit_to_get_from_ghr = (0 until max_update_num).map(len - _ - 1)
328c2ad24ebSLingrui98  def oldest_bit_pos_in_folded   = oldest_bit_to_get_from_ghr map (_ % compLen)
329c2ad24ebSLingrui98  def oldest_bit_wrap_around     = oldest_bit_to_get_from_ghr map (_ / compLen > 0)
330c2ad24ebSLingrui98  def oldest_bit_start           = oldest_bit_pos_in_folded.head
331c2ad24ebSLingrui98
332cf7d6b7aSMuzi  def get_oldest_bits_from_ghr(ghr: Vec[Bool], histPtr: CGHPtr) =
333c2ad24ebSLingrui98    // TODO: wrap inc for histPtr value
334dd6c0695SLingrui98    oldest_bit_to_get_from_ghr.map(i => ghr((histPtr + (i + 1).U).value))
335c2ad24ebSLingrui98
336ab890bfeSLingrui98  def circular_shift_left(src: UInt, shamt: Int) = {
337c2ad24ebSLingrui98    val srcLen      = src.getWidth
338c2ad24ebSLingrui98    val src_doubled = Cat(src, src)
339ab890bfeSLingrui98    val shifted     = src_doubled(srcLen * 2 - 1 - shamt, srcLen - shamt)
340ab890bfeSLingrui98    shifted
341c2ad24ebSLingrui98  }
342c2ad24ebSLingrui98
34367402d75SLingrui98  // slow path, read bits from ghr
344ab890bfeSLingrui98  def update(ghr: Vec[Bool], histPtr: CGHPtr, num: Int, taken: Bool): FoldedHistory = {
34567402d75SLingrui98    val oldest_bits = VecInit(get_oldest_bits_from_ghr(ghr, histPtr))
34667402d75SLingrui98    update(oldest_bits, num, taken)
34767402d75SLingrui98  }
34867402d75SLingrui98
34967402d75SLingrui98  // fast path, use pre-read oldest bits
35067402d75SLingrui98  def update(ob: Vec[Bool], num: Int, taken: Bool): FoldedHistory = {
351c2ad24ebSLingrui98    // do xors for several bitsets at specified bits
352c2ad24ebSLingrui98    def bitsets_xor(len: Int, bitsets: Seq[Seq[Tuple2[Int, Bool]]]) = {
353c2ad24ebSLingrui98      val res = Wire(Vec(len, Bool()))
354c2ad24ebSLingrui98      // println(f"num bitsets: ${bitsets.length}")
355c2ad24ebSLingrui98      // println(f"bitsets $bitsets")
356c2ad24ebSLingrui98      val resArr = Array.fill(len)(List[Bool]())
357c2ad24ebSLingrui98      for (bs <- bitsets) {
358c2ad24ebSLingrui98        for ((n, b) <- bs) {
359c2ad24ebSLingrui98          resArr(n) = b :: resArr(n)
360c2ad24ebSLingrui98        }
361c2ad24ebSLingrui98      }
362c2ad24ebSLingrui98      // println(f"${resArr.mkString}")
363c2ad24ebSLingrui98      // println(f"histLen: ${this.len}, foldedLen: $folded_len")
364c2ad24ebSLingrui98      for (i <- 0 until len) {
365c2ad24ebSLingrui98        // println(f"bit[$i], ${resArr(i).mkString}")
366c2ad24ebSLingrui98        if (resArr(i).length == 0) {
367dd6c0695SLingrui98          println(f"[error] bits $i is not assigned in folded hist update logic! histlen:${this.len}, compLen:$compLen")
368c2ad24ebSLingrui98        }
369c2ad24ebSLingrui98        res(i) := resArr(i).foldLeft(false.B)(_ ^ _)
370c2ad24ebSLingrui98      }
371c2ad24ebSLingrui98      res.asUInt
372c2ad24ebSLingrui98    }
373c2ad24ebSLingrui98
37467402d75SLingrui98    val new_folded_hist = if (need_oldest_bits) {
37567402d75SLingrui98      val oldest_bits = ob
37667402d75SLingrui98      require(oldest_bits.length == max_update_num)
377c2ad24ebSLingrui98      // mask off bits that do not update
378c2ad24ebSLingrui98      val oldest_bits_masked = oldest_bits.zipWithIndex.map {
379ab890bfeSLingrui98        case (ob, i) => ob && (i < num).B
380c2ad24ebSLingrui98      }
381c2ad24ebSLingrui98      // if a bit does not wrap around, it should not be xored when it exits
382cf7d6b7aSMuzi      val oldest_bits_set = (0 until max_update_num).filter(oldest_bit_wrap_around).map(i =>
383cf7d6b7aSMuzi        (oldest_bit_pos_in_folded(i), oldest_bits_masked(i))
384cf7d6b7aSMuzi      )
385c2ad24ebSLingrui98
386c2ad24ebSLingrui98      // println(f"old bits pos ${oldest_bits_set.map(_._1)}")
387c2ad24ebSLingrui98
388c2ad24ebSLingrui98      // only the last bit could be 1, as we have at most one taken branch at a time
389ab890bfeSLingrui98      val newest_bits_masked = VecInit((0 until max_update_num).map(i => taken && ((i + 1) == num).B)).asUInt
390c2ad24ebSLingrui98      // if a bit does not wrap around, newest bits should not be xored onto it either
391e992912cSLingrui98      val newest_bits_set = (0 until max_update_num).map(i => (compLen - 1 - i, newest_bits_masked(i)))
392c2ad24ebSLingrui98
393c2ad24ebSLingrui98      // println(f"new bits set ${newest_bits_set.map(_._1)}")
394c2ad24ebSLingrui98      //
395c2ad24ebSLingrui98      val original_bits_masked = VecInit(folded_hist.asBools.zipWithIndex.map {
396ab890bfeSLingrui98        case (fb, i) => fb && !(num >= (len - i)).B
397c2ad24ebSLingrui98      })
398c2ad24ebSLingrui98      val original_bits_set = (0 until compLen).map(i => (i, original_bits_masked(i)))
399c2ad24ebSLingrui98
400c2ad24ebSLingrui98      // do xor then shift
401c2ad24ebSLingrui98      val xored = bitsets_xor(compLen, Seq(original_bits_set, oldest_bits_set, newest_bits_set))
402ab890bfeSLingrui98      circular_shift_left(xored, num)
40367402d75SLingrui98    } else {
40467402d75SLingrui98      // histLen too short to wrap around
40567402d75SLingrui98      ((folded_hist << num) | taken)(compLen - 1, 0)
406c2ad24ebSLingrui98    }
40767402d75SLingrui98
408c2ad24ebSLingrui98    val fh = WireInit(this)
409c2ad24ebSLingrui98    fh.folded_hist := new_folded_hist
410c2ad24ebSLingrui98    fh
411c2ad24ebSLingrui98  }
41209c6f1ddSLingrui98}
41309c6f1ddSLingrui98
41467402d75SLingrui98class AheadFoldedHistoryOldestBits(val len: Int, val max_update_num: Int)(implicit p: Parameters) extends XSBundle {
41567402d75SLingrui98  val bits = Vec(max_update_num * 2, Bool())
41667402d75SLingrui98  // def info = (len, compLen)
41767402d75SLingrui98  def getRealOb(brNumOH: UInt): Vec[Bool] = {
41867402d75SLingrui98    val ob = Wire(Vec(max_update_num, Bool()))
41967402d75SLingrui98    for (i <- 0 until max_update_num) {
42067402d75SLingrui98      ob(i) := Mux1H(brNumOH, bits.drop(i).take(numBr + 1))
42167402d75SLingrui98    }
42267402d75SLingrui98    ob
42367402d75SLingrui98  }
42467402d75SLingrui98}
42567402d75SLingrui98
426cf7d6b7aSMuziclass AllAheadFoldedHistoryOldestBits(val gen: Seq[Tuple2[Int, Int]])(implicit p: Parameters) extends XSBundle
427cf7d6b7aSMuzi    with HasBPUConst {
428cf7d6b7aSMuzi  val afhob = MixedVec(gen.filter(t => t._1 > t._2).map(_._1)
42967402d75SLingrui98    .toSet.toList.map(l => new AheadFoldedHistoryOldestBits(l, numBr))) // remove duplicates
43067402d75SLingrui98  require(gen.toSet.toList.equals(gen))
43167402d75SLingrui98  def getObWithInfo(info: Tuple2[Int, Int]) = {
43267402d75SLingrui98    val selected = afhob.filter(_.len == info._1)
43367402d75SLingrui98    require(selected.length == 1)
43467402d75SLingrui98    selected(0)
43567402d75SLingrui98  }
43667402d75SLingrui98  def read(ghv: Vec[Bool], ptr: CGHPtr) = {
43767402d75SLingrui98    val hisLens      = afhob.map(_.len)
43867402d75SLingrui98    val bitsToRead   = hisLens.flatMap(l => (0 until numBr * 2).map(i => l - i - 1)).toSet // remove duplicates
43967402d75SLingrui98    val bitsWithInfo = bitsToRead.map(pos => (pos, ghv((ptr + (pos + 1).U).value)))
44067402d75SLingrui98    for (ob <- afhob) {
44167402d75SLingrui98      for (i <- 0 until numBr * 2) {
44267402d75SLingrui98        val pos       = ob.len - i - 1
44367402d75SLingrui98        val bit_found = bitsWithInfo.filter(_._1 == pos).toList
44467402d75SLingrui98        require(bit_found.length == 1)
44567402d75SLingrui98        ob.bits(i) := bit_found(0)._2
44667402d75SLingrui98      }
44767402d75SLingrui98    }
44867402d75SLingrui98  }
44967402d75SLingrui98}
45067402d75SLingrui98
45167402d75SLingrui98class AllFoldedHistories(val gen: Seq[Tuple2[Int, Int]])(implicit p: Parameters) extends XSBundle with HasBPUConst {
45267402d75SLingrui98  val hist = MixedVec(gen.map { case (l, cl) => new FoldedHistory(l, cl, numBr) })
45367402d75SLingrui98  // println(gen.mkString)
45467402d75SLingrui98  require(gen.toSet.toList.equals(gen))
45567402d75SLingrui98  def getHistWithInfo(info: Tuple2[Int, Int]) = {
45667402d75SLingrui98    val selected = hist.filter(_.info.equals(info))
45767402d75SLingrui98    require(selected.length == 1)
45867402d75SLingrui98    selected(0)
45967402d75SLingrui98  }
46067402d75SLingrui98  def autoConnectFrom(that: AllFoldedHistories) = {
46167402d75SLingrui98    require(this.hist.length <= that.hist.length)
46267402d75SLingrui98    for (h <- this.hist) {
46367402d75SLingrui98      h := that.getHistWithInfo(h.info)
46467402d75SLingrui98    }
46567402d75SLingrui98  }
46667402d75SLingrui98  def update(ghv: Vec[Bool], ptr: CGHPtr, shift: Int, taken: Bool): AllFoldedHistories = {
46767402d75SLingrui98    val res = WireInit(this)
46867402d75SLingrui98    for (i <- 0 until this.hist.length) {
46967402d75SLingrui98      res.hist(i) := this.hist(i).update(ghv, ptr, shift, taken)
47067402d75SLingrui98    }
47167402d75SLingrui98    res
47267402d75SLingrui98  }
47367402d75SLingrui98  def update(afhob: AllAheadFoldedHistoryOldestBits, lastBrNumOH: UInt, shift: Int, taken: Bool): AllFoldedHistories = {
47467402d75SLingrui98    val res = WireInit(this)
47567402d75SLingrui98    for (i <- 0 until this.hist.length) {
47667402d75SLingrui98      val fh = this.hist(i)
47767402d75SLingrui98      if (fh.need_oldest_bits) {
47867402d75SLingrui98        val info          = fh.info
47967402d75SLingrui98        val selectedAfhob = afhob.getObWithInfo(info)
48067402d75SLingrui98        val ob            = selectedAfhob.getRealOb(lastBrNumOH)
48167402d75SLingrui98        res.hist(i) := this.hist(i).update(ob, shift, taken)
48267402d75SLingrui98      } else {
48367402d75SLingrui98        val dumb = Wire(Vec(numBr, Bool())) // not needed
48467402d75SLingrui98        dumb        := DontCare
48567402d75SLingrui98        res.hist(i) := this.hist(i).update(dumb, shift, taken)
48667402d75SLingrui98      }
48767402d75SLingrui98    }
48867402d75SLingrui98    res
48967402d75SLingrui98  }
49067402d75SLingrui98
491cf7d6b7aSMuzi  def display(cond: Bool) =
49267402d75SLingrui98    for (h <- hist) {
49367402d75SLingrui98      XSDebug(cond, p"hist len ${h.len}, folded len ${h.compLen}, value ${Binary(h.folded_hist)}\n")
49467402d75SLingrui98    }
49567402d75SLingrui98}
49667402d75SLingrui98
49709c6f1ddSLingrui98class TableAddr(val idxBits: Int, val banks: Int)(implicit p: Parameters) extends XSBundle {
49809c6f1ddSLingrui98  def tagBits = VAddrBits - idxBits - instOffsetBits
49909c6f1ddSLingrui98
50009c6f1ddSLingrui98  val tag    = UInt(tagBits.W)
50109c6f1ddSLingrui98  val idx    = UInt(idxBits.W)
50209c6f1ddSLingrui98  val offset = UInt(instOffsetBits.W)
50309c6f1ddSLingrui98
50409c6f1ddSLingrui98  def fromUInt(x:   UInt) = x.asTypeOf(UInt(VAddrBits.W)).asTypeOf(this)
50509c6f1ddSLingrui98  def getTag(x:     UInt) = fromUInt(x).tag
50609c6f1ddSLingrui98  def getIdx(x:     UInt) = fromUInt(x).idx
50709c6f1ddSLingrui98  def getBank(x:    UInt) = if (banks > 1) getIdx(x)(log2Up(banks) - 1, 0) else 0.U
50809c6f1ddSLingrui98  def getBankIdx(x: UInt) = if (banks > 1) getIdx(x)(idxBits - 1, log2Up(banks)) else getIdx(x)
50909c6f1ddSLingrui98}
510eeb5ff92SLingrui98
511b37e4b45SLingrui98trait BasicPrediction extends HasXSParameter {
512b37e4b45SLingrui98  def cfiIndex: ValidUndirectioned[UInt]
513b37e4b45SLingrui98  def target(pc: UInt): UInt
514b37e4b45SLingrui98  def lastBrPosOH:    Vec[Bool]
515b37e4b45SLingrui98  def brTaken:        Bool
516b37e4b45SLingrui98  def shouldShiftVec: Vec[Bool]
517b37e4b45SLingrui98  def fallThruError:  Bool
518b37e4b45SLingrui98}
519935edac4STang Haojin
520b166c0eaSEaston Man// selectByTaken selects some data according to takenMask
5212bf6e0ecSEaston Man// allTargets should be in a Vec, like [taken0, taken1, ..., not taken, not hit]
522b166c0eaSEaston Manobject selectByTaken {
523b166c0eaSEaston Man  def apply[T <: Data](takenMask: Vec[Bool], hit: Bool, allTargets: Vec[T]): T = {
524b166c0eaSEaston Man    val selVecOH =
525cf7d6b7aSMuzi      takenMask.zipWithIndex.map { case (t, i) =>
526cf7d6b7aSMuzi        !takenMask.take(i).fold(false.B)(_ || _) && t && hit
527cf7d6b7aSMuzi      } :+
528b166c0eaSEaston Man        (!takenMask.asUInt.orR && hit) :+ !hit
529b166c0eaSEaston Man    Mux1H(selVecOH, allTargets)
530b166c0eaSEaston Man  }
531b166c0eaSEaston Man}
532b166c0eaSEaston Man
533cf7d6b7aSMuziclass FullBranchPrediction(val isNotS3: Boolean)(implicit p: Parameters) extends XSBundle with HasBPUConst
534cf7d6b7aSMuzi    with BasicPrediction {
535eeb5ff92SLingrui98  val br_taken_mask = Vec(numBr, Bool())
53609c6f1ddSLingrui98
537eeb5ff92SLingrui98  val slot_valids = Vec(totalSlot, Bool())
53809c6f1ddSLingrui98
539eeb5ff92SLingrui98  val targets         = Vec(totalSlot, UInt(VAddrBits.W))
540b30c10d6SLingrui98  val jalr_target     = UInt(VAddrBits.W) // special path for indirect predictors
541a229ab6cSLingrui98  val offsets         = Vec(totalSlot, UInt(log2Ceil(PredictWidth).W))
542a229ab6cSLingrui98  val fallThroughAddr = UInt(VAddrBits.W)
543b37e4b45SLingrui98  val fallThroughErr  = Bool()
544fd3aa057SYuandongliang  val multiHit        = Bool()
54509c6f1ddSLingrui98
54609c6f1ddSLingrui98  val is_jal               = Bool()
54709c6f1ddSLingrui98  val is_jalr              = Bool()
54809c6f1ddSLingrui98  val is_call              = Bool()
54909c6f1ddSLingrui98  val is_ret               = Bool()
550f4ebc4b2SLingrui98  val last_may_be_rvi_call = Bool()
551eeb5ff92SLingrui98  val is_br_sharing        = Bool()
55209c6f1ddSLingrui98
55309c6f1ddSLingrui98  // val call_is_rvc = Bool()
55409c6f1ddSLingrui98  val hit = Bool()
55509c6f1ddSLingrui98
556209a4cafSSteve Gou  val predCycle = if (!env.FPGAPlatform) Some(UInt(64.W)) else None
557209a4cafSSteve Gou
558eeb5ff92SLingrui98  def br_slot_valids  = slot_valids.init
559eeb5ff92SLingrui98  def tail_slot_valid = slot_valids.last
560eeb5ff92SLingrui98
561cf7d6b7aSMuzi  def br_valids =
562b37e4b45SLingrui98    VecInit(br_slot_valids :+ (tail_slot_valid && is_br_sharing))
563eeb5ff92SLingrui98
564cf7d6b7aSMuzi  def taken_mask_on_slot =
565eeb5ff92SLingrui98    VecInit(
566eeb5ff92SLingrui98      (br_slot_valids zip br_taken_mask.init).map { case (t, v) => t && v } :+ (
567b30c10d6SLingrui98        tail_slot_valid && (
568b30c10d6SLingrui98          is_br_sharing && br_taken_mask.last || !is_br_sharing
569b30c10d6SLingrui98        )
570eeb5ff92SLingrui98      )
571eeb5ff92SLingrui98    )
572eeb5ff92SLingrui98
573cf7d6b7aSMuzi  def real_slot_taken_mask(): Vec[Bool] =
574b37e4b45SLingrui98    VecInit(taken_mask_on_slot.map(_ && hit))
575b37e4b45SLingrui98
576b37e4b45SLingrui98  // len numBr
577cf7d6b7aSMuzi  def real_br_taken_mask(): Vec[Bool] =
578b37e4b45SLingrui98    VecInit(
579b37e4b45SLingrui98      taken_mask_on_slot.map(_ && hit).init :+
580b37e4b45SLingrui98        (br_taken_mask.last && tail_slot_valid && is_br_sharing && hit)
581b37e4b45SLingrui98    )
582b37e4b45SLingrui98
583b37e4b45SLingrui98  // the vec indicating if ghr should shift on each branch
584b37e4b45SLingrui98  def shouldShiftVec =
585b37e4b45SLingrui98    VecInit(br_valids.zipWithIndex.map { case (v, i) =>
586cf7d6b7aSMuzi      v && hit && !real_br_taken_mask().take(i).reduceOption(_ || _).getOrElse(false.B)
587cf7d6b7aSMuzi    })
588b37e4b45SLingrui98
589b37e4b45SLingrui98  def lastBrPosOH =
590b37e4b45SLingrui98    VecInit((!hit || !br_valids.reduce(_ || _)) +: // not hit or no brs in entry
591b37e4b45SLingrui98      (0 until numBr).map(i =>
592b37e4b45SLingrui98        br_valids(i) &&
593e3da8badSTang Haojin          !real_br_taken_mask().take(i).reduceOption(_ || _).getOrElse(false.B) && // no brs taken in front it
594cf7d6b7aSMuzi          (real_br_taken_mask()(i) || !br_valids.drop(i + 1).reduceOption(_ || _).getOrElse(
595cf7d6b7aSMuzi            false.B
596cf7d6b7aSMuzi          )) && // no brs behind it
597b37e4b45SLingrui98          hit
598cf7d6b7aSMuzi      ))
599b37e4b45SLingrui98
60086d9c530SLingrui98  def brTaken = (br_valids zip br_taken_mask).map { case (a, b) => a && b && hit }.reduce(_ || _)
601b37e4b45SLingrui98
602cf7d6b7aSMuzi  def target(pc: UInt): UInt =
603c6a44c35Smy-mayfly    if (isNotS3) {
604b166c0eaSEaston Man      selectByTaken(taken_mask_on_slot, hit, allTarget(pc))
605c6a44c35Smy-mayfly    } else {
606c6a44c35Smy-mayfly      selectByTaken(taken_mask_on_slot, hit && !fallThroughErr, allTarget(pc))
607c6a44c35Smy-mayfly    }
608b166c0eaSEaston Man
6092bf6e0ecSEaston Man  // allTarget return a Vec of all possible target of a BP stage
6102bf6e0ecSEaston Man  // in the following order: [taken_target0, taken_target1, ..., fallThroughAddr, not hit (plus fetch width)]
611b166c0eaSEaston Man  //
612b166c0eaSEaston Man  // This exposes internal targets for timing optimization,
613b166c0eaSEaston Man  // since usually targets are generated quicker than taken
614cf7d6b7aSMuzi  def allTarget(pc: UInt): Vec[UInt] =
615b166c0eaSEaston Man    VecInit(targets :+ fallThroughAddr :+ (pc + (FetchWidth * 4).U))
616b37e4b45SLingrui98
617b37e4b45SLingrui98  def fallThruError: Bool = hit && fallThroughErr
618fd3aa057SYuandongliang  def ftbMultiHit:   Bool = hit && multiHit
619b37e4b45SLingrui98
620b37e4b45SLingrui98  def hit_taken_on_jmp =
621b37e4b45SLingrui98    !real_slot_taken_mask().init.reduce(_ || _) &&
622b37e4b45SLingrui98      real_slot_taken_mask().last && !is_br_sharing
623b37e4b45SLingrui98  def hit_taken_on_call = hit_taken_on_jmp && is_call
624b37e4b45SLingrui98  def hit_taken_on_ret  = hit_taken_on_jmp && is_ret
625b37e4b45SLingrui98  def hit_taken_on_jalr = hit_taken_on_jmp && is_jalr
626b37e4b45SLingrui98
627b37e4b45SLingrui98  def cfiIndex = {
628b37e4b45SLingrui98    val cfiIndex = Wire(ValidUndirectioned(UInt(log2Ceil(PredictWidth).W)))
629b37e4b45SLingrui98    cfiIndex.valid := real_slot_taken_mask().asUInt.orR
630b37e4b45SLingrui98    // when no takens, set cfiIndex to PredictWidth-1
631b37e4b45SLingrui98    cfiIndex.bits :=
632b37e4b45SLingrui98      ParallelPriorityMux(real_slot_taken_mask(), offsets) |
633b37e4b45SLingrui98        Fill(log2Ceil(PredictWidth), (!real_slot_taken_mask().asUInt.orR).asUInt)
634b37e4b45SLingrui98    cfiIndex
635b37e4b45SLingrui98  }
636b37e4b45SLingrui98
637eeb5ff92SLingrui98  def taken = br_taken_mask.reduce(_ || _) || slot_valids.last // || (is_jal || is_jalr)
63809c6f1ddSLingrui98
63947c003a9SEaston Man  def fromFtbEntry(
64047c003a9SEaston Man      entry:            FTBEntry,
64147c003a9SEaston Man      pc:               UInt,
64247c003a9SEaston Man      last_stage_pc:    Option[Tuple2[UInt, Bool]] = None,
64347c003a9SEaston Man      last_stage_entry: Option[Tuple2[FTBEntry, Bool]] = None
64447c003a9SEaston Man  ) = {
645eeb5ff92SLingrui98    slot_valids          := entry.brSlots.map(_.valid) :+ entry.tailSlot.valid
64647c003a9SEaston Man    targets              := entry.getTargetVec(pc, last_stage_pc) // Use previous stage pc for better timing
647b30c10d6SLingrui98    jalr_target          := targets.last
648a229ab6cSLingrui98    offsets              := entry.getOffsetVec
649eeb5ff92SLingrui98    is_jal               := entry.tailSlot.valid && entry.isJal
650eeb5ff92SLingrui98    is_jalr              := entry.tailSlot.valid && entry.isJalr
651eeb5ff92SLingrui98    is_call              := entry.tailSlot.valid && entry.isCall
652eeb5ff92SLingrui98    is_ret               := entry.tailSlot.valid && entry.isRet
653f4ebc4b2SLingrui98    last_may_be_rvi_call := entry.last_may_be_rvi_call
654eeb5ff92SLingrui98    is_br_sharing        := entry.tailSlot.valid && entry.tailSlot.sharing
655209a4cafSSteve Gou    predCycle.map(_ := GTimer())
656a229ab6cSLingrui98
657a60a2901SLingrui98    val startLower        = Cat(0.U(1.W), pc(instOffsetBits + log2Ceil(PredictWidth) - 1, instOffsetBits))
658b37e4b45SLingrui98    val endLowerwithCarry = Cat(entry.carry, entry.pftAddr)
659cf7d6b7aSMuzi    fallThroughErr  := startLower >= endLowerwithCarry || endLowerwithCarry > (startLower + PredictWidth.U)
66047c003a9SEaston Man    fallThroughAddr := Mux(fallThroughErr, pc + (FetchWidth * 4).U, entry.getFallThrough(pc, last_stage_entry))
661a229ab6cSLingrui98  }
66209c6f1ddSLingrui98
663cf7d6b7aSMuzi  def display(cond: Bool): Unit =
664eeb5ff92SLingrui98    XSDebug(cond, p"[taken_mask] ${Binary(br_taken_mask.asUInt)} [hit] $hit\n")
66509c6f1ddSLingrui98}
66609c6f1ddSLingrui98
667803124a6SLingrui98class SpeculativeInfo(implicit p: Parameters) extends XSBundle
668803124a6SLingrui98    with HasBPUConst with BPUUtils {
669803124a6SLingrui98  val histPtr = new CGHPtr
670c89b4642SGuokai Chen  val ssp     = UInt(log2Up(RasSize).W)
671deb3a97eSGao-Zeyu  val sctr    = UInt(RasCtrSize.W)
672c89b4642SGuokai Chen  val TOSW    = new RASPtr
673c89b4642SGuokai Chen  val TOSR    = new RASPtr
674c89b4642SGuokai Chen  val NOS     = new RASPtr
675c89b4642SGuokai Chen  val topAddr = UInt(VAddrBits.W)
676803124a6SLingrui98}
677803124a6SLingrui98
678c6a44c35Smy-mayfly//
679c6a44c35Smy-mayflyclass BranchPredictionBundle(val isNotS3: Boolean)(implicit p: Parameters) extends XSBundle
680b37e4b45SLingrui98    with HasBPUConst with BPUUtils {
681adc0b8dfSGuokai Chen  val pc          = Vec(numDup, UInt(VAddrBits.W))
682adc0b8dfSGuokai Chen  val valid       = Vec(numDup, Bool())
683adc0b8dfSGuokai Chen  val hasRedirect = Vec(numDup, Bool())
68409c6f1ddSLingrui98  val ftq_idx     = new FtqPtr
685c6a44c35Smy-mayfly  val full_pred   = Vec(numDup, new FullBranchPrediction(isNotS3))
686b37e4b45SLingrui98
687adc0b8dfSGuokai Chen  def target(pc:     UInt)      = VecInit(full_pred.map(_.target(pc)))
688b166c0eaSEaston Man  def targets(pc:    Vec[UInt]) = VecInit(pc.zipWithIndex.map { case (pc, idx) => full_pred(idx).target(pc) })
689b166c0eaSEaston Man  def allTargets(pc: Vec[UInt]) = VecInit(pc.zipWithIndex.map { case (pc, idx) => full_pred(idx).allTarget(pc) })
690adc0b8dfSGuokai Chen  def cfiIndex       = VecInit(full_pred.map(_.cfiIndex))
691adc0b8dfSGuokai Chen  def lastBrPosOH    = VecInit(full_pred.map(_.lastBrPosOH))
692adc0b8dfSGuokai Chen  def brTaken        = VecInit(full_pred.map(_.brTaken))
693adc0b8dfSGuokai Chen  def shouldShiftVec = VecInit(full_pred.map(_.shouldShiftVec))
694adc0b8dfSGuokai Chen  def fallThruError  = VecInit(full_pred.map(_.fallThruError))
695fd3aa057SYuandongliang  def ftbMultiHit    = VecInit(full_pred.map(_.ftbMultiHit))
696eeb5ff92SLingrui98
697adc0b8dfSGuokai Chen  def taken = VecInit(cfiIndex.map(_.valid))
698adc0b8dfSGuokai Chen
699adc0b8dfSGuokai Chen  def getTarget     = targets(pc)
700b166c0eaSEaston Man  def getAllTargets = allTargets(pc)
70109c6f1ddSLingrui98
70209c6f1ddSLingrui98  def display(cond: Bool): Unit = {
703adc0b8dfSGuokai Chen    XSDebug(cond, p"[pc] ${Hexadecimal(pc(0))}\n")
704adc0b8dfSGuokai Chen    full_pred(0).display(cond)
70509c6f1ddSLingrui98  }
70609c6f1ddSLingrui98}
70709c6f1ddSLingrui98
70809c6f1ddSLingrui98class BranchPredictionResp(implicit p: Parameters) extends XSBundle with HasBPUConst {
709c6a44c35Smy-mayfly  val s1 = new BranchPredictionBundle(isNotS3 = true)
710c6a44c35Smy-mayfly  val s2 = new BranchPredictionBundle(isNotS3 = true)
711c6a44c35Smy-mayfly  val s3 = new BranchPredictionBundle(isNotS3 = false)
71209c6f1ddSLingrui98
713c4a59f19SYuandongliang  val s1_uftbHit         = Bool()
714c4a59f19SYuandongliang  val s1_uftbHasIndirect = Bool()
715c4a59f19SYuandongliang  val s1_ftbCloseReq     = Bool()
716c4a59f19SYuandongliang
717c2d1ec7dSLingrui98  val last_stage_meta      = UInt(MaxMetaLength.W)
7183711cf36S小造xu_zh  val last_stage_spec_info = new Ftq_Redirect_SRAMEntry
719c2d1ec7dSLingrui98  val last_stage_ftb_entry = new FTBEntry
720c2d1ec7dSLingrui98
721d2b20d1aSTang Haojin  val topdown_info = new FrontendTopDownBundle
722d2b20d1aSTang Haojin
723b37e4b45SLingrui98  def selectedResp = {
724b37e4b45SLingrui98    val res =
72509c6f1ddSLingrui98      PriorityMux(Seq(
726cf7d6b7aSMuzi        (s3.valid(3) && s3.hasRedirect(3)) -> s3,
727cf7d6b7aSMuzi        (s2.valid(3) && s2.hasRedirect(3)) -> s2,
728cf7d6b7aSMuzi        s1.valid(3)                        -> s1
72909c6f1ddSLingrui98      ))
730b37e4b45SLingrui98    res
731b37e4b45SLingrui98  }
732adc0b8dfSGuokai Chen  def selectedRespIdxForFtq =
73309c6f1ddSLingrui98    PriorityMux(Seq(
734cf7d6b7aSMuzi      (s3.valid(3) && s3.hasRedirect(3)) -> BP_S3,
735cf7d6b7aSMuzi      (s2.valid(3) && s2.hasRedirect(3)) -> BP_S2,
736cf7d6b7aSMuzi      s1.valid(3)                        -> BP_S1
73709c6f1ddSLingrui98    ))
738cb4f77ceSLingrui98  def lastStage = s3
73909c6f1ddSLingrui98}
74009c6f1ddSLingrui98
741c2d1ec7dSLingrui98class BpuToFtqBundle(implicit p: Parameters) extends BranchPredictionResp {}
74209c6f1ddSLingrui98
743803124a6SLingrui98class BranchPredictionUpdate(implicit p: Parameters) extends XSBundle with HasBPUConst {
744803124a6SLingrui98  val pc        = UInt(VAddrBits.W)
745803124a6SLingrui98  val spec_info = new SpeculativeInfo
746803124a6SLingrui98  val ftb_entry = new FTBEntry()
747803124a6SLingrui98
748803124a6SLingrui98  val cfi_idx           = ValidUndirectioned(UInt(log2Ceil(PredictWidth).W))
749803124a6SLingrui98  val br_taken_mask     = Vec(numBr, Bool())
750cc2d1573SEaston Man  val br_committed      = Vec(numBr, Bool()) // High only when br valid && br committed
751803124a6SLingrui98  val jmp_taken         = Bool()
75209c6f1ddSLingrui98  val mispred_mask      = Vec(numBr + 1, Bool())
753edc18578SLingrui98  val pred_hit          = Bool()
75409c6f1ddSLingrui98  val false_hit         = Bool()
75509c6f1ddSLingrui98  val new_br_insert_pos = Vec(numBr, Bool())
75609c6f1ddSLingrui98  val old_entry         = Bool()
75709c6f1ddSLingrui98  val meta              = UInt(MaxMetaLength.W)
758abdbe4b7SLingrui98  val full_target       = UInt(VAddrBits.W)
759edc18578SLingrui98  val from_stage        = UInt(2.W)
76086d9c530SLingrui98  val ghist             = UInt(HistoryLength.W)
76109c6f1ddSLingrui98
762803124a6SLingrui98  def is_jal  = ftb_entry.tailSlot.valid && ftb_entry.isJal
763803124a6SLingrui98  def is_jalr = ftb_entry.tailSlot.valid && ftb_entry.isJalr
764803124a6SLingrui98  def is_call = ftb_entry.tailSlot.valid && ftb_entry.isCall
765803124a6SLingrui98  def is_ret  = ftb_entry.tailSlot.valid && ftb_entry.isRet
766803124a6SLingrui98
767c89b4642SGuokai Chen  def is_call_taken = is_call && jmp_taken && cfi_idx.valid && cfi_idx.bits === ftb_entry.tailSlot.offset
768c89b4642SGuokai Chen  def is_ret_taken  = is_ret && jmp_taken && cfi_idx.valid && cfi_idx.bits === ftb_entry.tailSlot.offset
769c89b4642SGuokai Chen
770803124a6SLingrui98  def display(cond: Bool) = {
77109c6f1ddSLingrui98    XSDebug(cond, p"-----------BranchPredictionUpdate-----------\n")
77209c6f1ddSLingrui98    XSDebug(cond, p"[mispred_mask] ${Binary(mispred_mask.asUInt)} [false_hit] $false_hit\n")
77309c6f1ddSLingrui98    XSDebug(cond, p"[new_br_insert_pos] ${Binary(new_br_insert_pos.asUInt)}\n")
77409c6f1ddSLingrui98    XSDebug(cond, p"--------------------------------------------\n")
77509c6f1ddSLingrui98  }
77609c6f1ddSLingrui98}
77709c6f1ddSLingrui98
77809c6f1ddSLingrui98class BranchPredictionRedirect(implicit p: Parameters) extends Redirect with HasBPUConst {
77909c6f1ddSLingrui98  // override def toPrintable: Printable = {
78009c6f1ddSLingrui98  //   p"-----------BranchPredictionRedirect----------- " +
78109c6f1ddSLingrui98  //     p"-----------cfiUpdate----------- " +
78209c6f1ddSLingrui98  //     p"[pc] ${Hexadecimal(cfiUpdate.pc)} " +
78309c6f1ddSLingrui98  //     p"[predTaken] ${cfiUpdate.predTaken}, [taken] ${cfiUpdate.taken}, [isMisPred] ${cfiUpdate.isMisPred} " +
78409c6f1ddSLingrui98  //     p"[target] ${Hexadecimal(cfiUpdate.target)} " +
78509c6f1ddSLingrui98  //     p"------------------------------- " +
7869aca92b9SYinan Xu  //     p"[robPtr] f=${robIdx.flag} v=${robIdx.value} " +
78709c6f1ddSLingrui98  //     p"[ftqPtr] f=${ftqIdx.flag} v=${ftqIdx.value} " +
78809c6f1ddSLingrui98  //     p"[ftqOffset] ${ftqOffset} " +
78909c6f1ddSLingrui98  //     p"[level] ${level}, [interrupt] ${interrupt} " +
79009c6f1ddSLingrui98  //     p"[stFtqIdx] f=${stFtqIdx.flag} v=${stFtqIdx.value} " +
79109c6f1ddSLingrui98  //     p"[stFtqOffset] ${stFtqOffset} " +
79209c6f1ddSLingrui98  //     p"\n"
79309c6f1ddSLingrui98
79409c6f1ddSLingrui98  // }
79509c6f1ddSLingrui98
796d2b20d1aSTang Haojin  // TODO: backend should pass topdown signals here
797d2b20d1aSTang Haojin  // must not change its parent since BPU has used asTypeOf(this type) from its parent class
798d2b20d1aSTang Haojin  require(isInstanceOf[Redirect])
799d2b20d1aSTang Haojin  val BTBMissBubble         = Bool()
800d2b20d1aSTang Haojin  def ControlRedirectBubble = debugIsCtrl
801d2b20d1aSTang Haojin  // if mispred br not in ftb, count as BTB miss
802d2b20d1aSTang Haojin  def ControlBTBMissBubble = ControlRedirectBubble && !cfiUpdate.br_hit && !cfiUpdate.jr_hit
803d2b20d1aSTang Haojin  def TAGEMissBubble       = ControlRedirectBubble && cfiUpdate.br_hit && !cfiUpdate.sc_hit
804d2b20d1aSTang Haojin  def SCMissBubble         = ControlRedirectBubble && cfiUpdate.br_hit && cfiUpdate.sc_hit
805d2b20d1aSTang Haojin  def ITTAGEMissBubble     = ControlRedirectBubble && cfiUpdate.jr_hit && !cfiUpdate.pd.isRet
806d2b20d1aSTang Haojin  def RASMissBubble        = ControlRedirectBubble && cfiUpdate.jr_hit && cfiUpdate.pd.isRet
807d2b20d1aSTang Haojin  def MemVioRedirectBubble = debugIsMemVio
808d2b20d1aSTang Haojin  def OtherRedirectBubble  = !debugIsCtrl && !debugIsMemVio
809d2b20d1aSTang Haojin
810cf7d6b7aSMuzi  def connectRedirect(source: Redirect): Unit =
811d2b20d1aSTang Haojin    for ((name, data) <- this.elements) {
812d2b20d1aSTang Haojin      if (source.elements.contains(name)) {
813d2b20d1aSTang Haojin        data := source.elements(name)
814d2b20d1aSTang Haojin      }
815d2b20d1aSTang Haojin    }
816d2b20d1aSTang Haojin
81709c6f1ddSLingrui98  def display(cond: Bool): Unit = {
81809c6f1ddSLingrui98    XSDebug(cond, p"-----------BranchPredictionRedirect----------- \n")
81909c6f1ddSLingrui98    XSDebug(cond, p"-----------cfiUpdate----------- \n")
82009c6f1ddSLingrui98    XSDebug(cond, p"[pc] ${Hexadecimal(cfiUpdate.pc)}\n")
821c2ad24ebSLingrui98    // XSDebug(cond, p"[hist] ${Binary(cfiUpdate.hist.predHist)}\n")
82209c6f1ddSLingrui98    XSDebug(cond, p"[br_hit] ${cfiUpdate.br_hit} [isMisPred] ${cfiUpdate.isMisPred}\n")
823cf7d6b7aSMuzi    XSDebug(
824cf7d6b7aSMuzi      cond,
825cf7d6b7aSMuzi      p"[pred_taken] ${cfiUpdate.predTaken} [taken] ${cfiUpdate.taken} [isMisPred] ${cfiUpdate.isMisPred}\n"
826cf7d6b7aSMuzi    )
82709c6f1ddSLingrui98    XSDebug(cond, p"[target] ${Hexadecimal(cfiUpdate.target)} \n")
82809c6f1ddSLingrui98    XSDebug(cond, p"[shift] ${cfiUpdate.shift}\n")
82909c6f1ddSLingrui98    XSDebug(cond, p"------------------------------- \n")
8309aca92b9SYinan Xu    XSDebug(cond, p"[robPtr] f=${robIdx.flag} v=${robIdx.value}\n")
83109c6f1ddSLingrui98    XSDebug(cond, p"[ftqPtr] f=${ftqIdx.flag} v=${ftqIdx.value} \n")
83209c6f1ddSLingrui98    XSDebug(cond, p"[ftqOffset] ${ftqOffset} \n")
83309c6f1ddSLingrui98    XSDebug(cond, p"[stFtqIdx] f=${stFtqIdx.flag} v=${stFtqIdx.value}\n")
83409c6f1ddSLingrui98    XSDebug(cond, p"[stFtqOffset] ${stFtqOffset}\n")
83509c6f1ddSLingrui98    XSDebug(cond, p"---------------------------------------------- \n")
83609c6f1ddSLingrui98  }
83709c6f1ddSLingrui98}
838