/*************************************************************************************** * Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences * Copyright (c) 2020-2021 Peng Cheng Laboratory * * XiangShan is licensed under Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. * * See the Mulan PSL v2 for more details. * * * Acknowledgement * * This implementation is inspired by several key papers: * [1] André Seznec. "[Tage-sc-l branch predictors.](https://inria.hal.science/hal-01086920)" The Journal of * Instruction-Level Parallelism (JILP) 4th JILP Workshop on Computer Architecture Competitions (JWAC): Championship * Branch Prediction (CBP). 2014. * [2] André Seznec. "[Tage-sc-l branch predictors again.](https://inria.hal.science/hal-01354253)" The Journal of * Instruction-Level Parallelism (JILP) 5th JILP Workshop on Computer Architecture Competitions (JWAC): Championship * Branch Prediction (CBP). 2016. ***************************************************************************************/ package xiangshan.frontend import chisel3._ import chisel3.util._ import org.chipsalliance.cde.config.Parameters import scala.{Tuple2 => &} import scala.math.min import utility._ import utility.mbist.MbistPipeline import utility.sram.SRAMConflictBehavior import utility.sram.SRAMTemplate import xiangshan._ trait HasSCParameter extends TageParams {} class SCReq(implicit p: Parameters) extends TageReq abstract class SCBundle(implicit p: Parameters) extends TageBundle with HasSCParameter {} abstract class SCModule(implicit p: Parameters) extends TageModule with HasSCParameter {} class SCMeta(val ntables: Int)(implicit p: Parameters) extends XSBundle with HasSCParameter { val scPreds = Vec(numBr, Bool()) // Suppose ctrbits of all tables are identical val ctrs = Vec(numBr, Vec(ntables, SInt(SCCtrBits.W))) } class SCResp(val ctrBits: Int = 6)(implicit p: Parameters) extends SCBundle { val ctrs = Vec(numBr, Vec(2, SInt(ctrBits.W))) } class SCUpdate(val ctrBits: Int = 6)(implicit p: Parameters) extends SCBundle { val pc = UInt(VAddrBits.W) val ghist = UInt(HistoryLength.W) val mask = Vec(numBr, Bool()) val oldCtrs = Vec(numBr, SInt(ctrBits.W)) val tagePreds = Vec(numBr, Bool()) val takens = Vec(numBr, Bool()) } class SCTableIO(val ctrBits: Int = 6)(implicit p: Parameters) extends SCBundle { val req = Input(Valid(new SCReq)) val resp = Output(new SCResp(ctrBits)) val update = Input(new SCUpdate(ctrBits)) } class SCTable(val nRows: Int, val ctrBits: Int, val histLen: Int)(implicit p: Parameters) extends SCModule with HasFoldedHistory { val io = IO(new SCTableIO(ctrBits)) // val table = Module(new SRAMTemplate(SInt(ctrBits.W), set=nRows, way=2*TageBanks, shouldReset=true, holdRead=true, singlePort=false)) val table = Module(new SRAMTemplate( SInt(ctrBits.W), set = nRows, way = 2 * TageBanks, shouldReset = true, holdRead = true, singlePort = false, conflictBehavior = SRAMConflictBehavior.BufferWriteLossy, withClockGate = true, hasMbist = hasMbist, hasSramCtl = hasSramCtl )) private val mbistPl = MbistPipeline.PlaceMbistPipeline(1, "MbistPipeSc", hasMbist) // def getIdx(hist: UInt, pc: UInt) = { // (compute_folded_ghist(hist, log2Ceil(nRows)) ^ (pc >> instOffsetBits))(log2Ceil(nRows)-1,0) // } val idxFhInfo = (histLen, min(log2Ceil(nRows), histLen)) def getFoldedHistoryInfo = Set(idxFhInfo).filter(_._1 > 0) def getIdx(pc: UInt, allFh: AllFoldedHistories) = if (histLen > 0) { val idx_fh = allFh.getHistWithInfo(idxFhInfo).folded_hist // require(idx_fh.getWidth == log2Ceil(nRows)) ((pc >> instOffsetBits) ^ idx_fh)(log2Ceil(nRows) - 1, 0) } else { (pc >> instOffsetBits)(log2Ceil(nRows) - 1, 0) } def ctrUpdate(ctr: SInt, cond: Bool): SInt = signedSatUpdate(ctr, ctrBits, cond) val s0_idx = getIdx(io.req.bits.pc, io.req.bits.folded_hist) val s1_idx = RegEnable(s0_idx, io.req.valid) val s1_pc = RegEnable(io.req.bits.pc, io.req.fire) val s1_unhashed_idx = s1_pc >> instOffsetBits table.io.r.req.valid := io.req.valid table.io.r.req.bits.setIdx := s0_idx val per_br_ctrs_unshuffled = table.io.r.resp.data.sliding(2, 2).toSeq.map(VecInit(_)) val per_br_ctrs = VecInit((0 until numBr).map(i => Mux1H( UIntToOH(get_phy_br_idx(s1_unhashed_idx, i), numBr), per_br_ctrs_unshuffled ) )) io.resp.ctrs := per_br_ctrs val update_wdata = Wire(Vec(numBr, SInt(ctrBits.W))) // correspond to physical bridx val update_wdata_packed = VecInit(update_wdata.map(Seq.fill(2)(_)).reduce(_ ++ _)) val updateWayMask = Wire(Vec(2 * numBr, Bool())) // correspond to physical bridx val update_unhashed_idx = io.update.pc >> instOffsetBits for (pi <- 0 until numBr) { updateWayMask(2 * pi) := Seq.tabulate(numBr)(li => io.update.mask(li) && get_phy_br_idx(update_unhashed_idx, li) === pi.U && !io.update.tagePreds(li) ).reduce(_ || _) updateWayMask(2 * pi + 1) := Seq.tabulate(numBr)(li => io.update.mask(li) && get_phy_br_idx(update_unhashed_idx, li) === pi.U && io.update.tagePreds(li) ).reduce(_ || _) } val update_folded_hist = WireInit(0.U.asTypeOf(new AllFoldedHistories(foldedGHistInfos))) if (histLen > 0) { update_folded_hist.getHistWithInfo(idxFhInfo).folded_hist := compute_folded_ghist(io.update.ghist, log2Ceil(nRows)) } val update_idx = getIdx(io.update.pc, update_folded_hist) table.io.w.apply( valid = io.update.mask.reduce(_ || _), data = update_wdata_packed, setIdx = update_idx, waymask = updateWayMask.asUInt ) val wrBypassEntries = 16 // let it corresponds to logical brIdx val wrbypasses = Seq.fill(numBr)(Module(new WrBypass(SInt(ctrBits.W), wrBypassEntries, log2Ceil(nRows), numWays = 2))) for (pi <- 0 until numBr) { val br_lidx = get_lgc_br_idx(update_unhashed_idx, pi.U(log2Ceil(numBr).W)) val wrbypass_io = Mux1H(UIntToOH(br_lidx, numBr), wrbypasses.map(_.io)) val ctrPos = Mux1H(UIntToOH(br_lidx, numBr), io.update.tagePreds) val bypass_ctr = wrbypass_io.hit_data(ctrPos) val previous_ctr = Mux1H(UIntToOH(br_lidx, numBr), io.update.oldCtrs) val hit_and_valid = wrbypass_io.hit && bypass_ctr.valid val oldCtr = Mux(hit_and_valid, bypass_ctr.bits, previous_ctr) val taken = Mux1H(UIntToOH(br_lidx, numBr), io.update.takens) update_wdata(pi) := ctrUpdate(oldCtr, taken) } val per_br_update_wdata_packed = update_wdata_packed.sliding(2, 2).map(VecInit(_)).toSeq val per_br_update_way_mask = updateWayMask.sliding(2, 2).map(VecInit(_)).toSeq for (li <- 0 until numBr) { val wrbypass = wrbypasses(li) val br_pidx = get_phy_br_idx(update_unhashed_idx, li) wrbypass.io.wen := io.update.mask(li) wrbypass.io.write_idx := update_idx wrbypass.io.write_data := Mux1H(UIntToOH(br_pidx, numBr), per_br_update_wdata_packed) wrbypass.io.write_way_mask.map(_ := Mux1H(UIntToOH(br_pidx, numBr), per_br_update_way_mask)) } val u = io.update XSDebug( io.req.valid, p"scTableReq: pc=0x${Hexadecimal(io.req.bits.pc)}, " + p"s0_idx=${s0_idx}\n" ) XSDebug( RegNext(io.req.valid), p"scTableResp: s1_idx=${s1_idx}," + p"ctr:${io.resp.ctrs}\n" ) XSDebug( io.update.mask.reduce(_ || _), p"update Table: pc:${Hexadecimal(u.pc)}, " + p"tageTakens:${u.tagePreds}, taken:${u.takens}, oldCtr:${u.oldCtrs}\n" ) } class SCThreshold(val ctrBits: Int = 6)(implicit p: Parameters) extends SCBundle { val ctr = UInt(ctrBits.W) def satPos(ctr: UInt = this.ctr) = ctr === ((1.U << ctrBits) - 1.U) def satNeg(ctr: UInt = this.ctr) = ctr === 0.U def neutralVal = (1 << (ctrBits - 1)).U val thres = UInt(8.W) def initVal = 6.U def minThres = 6.U def maxThres = 31.U def update(cause: Bool): SCThreshold = { val res = Wire(new SCThreshold(this.ctrBits)) val newCtr = satUpdate(this.ctr, this.ctrBits, cause) val newThres = Mux( res.satPos(newCtr) && this.thres <= maxThres, this.thres + 2.U, Mux(res.satNeg(newCtr) && this.thres >= minThres, this.thres - 2.U, this.thres) ) res.thres := newThres res.ctr := Mux(res.satPos(newCtr) || res.satNeg(newCtr), res.neutralVal, newCtr) // XSDebug(true.B, p"scThres Update: cause${cause} newCtr ${newCtr} newThres ${newThres}\n") res } } object SCThreshold { def apply(bits: Int)(implicit p: Parameters) = { val t = Wire(new SCThreshold(ctrBits = bits)) t.ctr := t.neutralVal t.thres := t.initVal t } } trait HasSC extends HasSCParameter with HasPerfEvents { this: Tage => val update_on_mispred, update_on_unconf = WireInit(0.U.asTypeOf(Vec(TageBanks, Bool()))) var sc_fh_info = Set[FoldedHistoryInfo]() if (EnableSC) { val scTables = SCTableInfos.map { case (nRows, ctrBits, histLen) => { val t = Module(new SCTable(nRows / TageBanks, ctrBits, histLen)) val req = t.io.req req.valid := io.s0_fire(3) req.bits.pc := s0_pc_dup(3) req.bits.folded_hist := io.in.bits.folded_hist(3) req.bits.ghist := DontCare if (!EnableSC) { t.io.update := DontCare } t } } sc_fh_info = scTables.map(_.getFoldedHistoryInfo).reduce(_ ++ _).toSet val scThresholds = List.fill(TageBanks)(RegInit(SCThreshold(5))) val useThresholds = VecInit(scThresholds map (_.thres)) def sign(x: SInt) = x(x.getWidth - 1) def pos(x: SInt) = !sign(x) def neg(x: SInt) = sign(x) def aboveThreshold(scSum: SInt, tagePvdr: SInt, threshold: UInt): Bool = { val signedThres = threshold.zext val totalSum = scSum +& tagePvdr (scSum > signedThres - tagePvdr) && pos(totalSum) || (scSum < -signedThres - tagePvdr) && neg(totalSum) } val updateThresholds = VecInit(useThresholds map (t => (t << 3) +& 21.U)) val s1_scResps = VecInit(scTables.map(t => t.io.resp)) val scUpdateMask = WireInit(0.U.asTypeOf(Vec(numBr, Vec(SCNTables, Bool())))) val scUpdateTagePreds = Wire(Vec(TageBanks, Bool())) val scUpdateTakens = Wire(Vec(TageBanks, Bool())) val scUpdateOldCtrs = Wire(Vec(numBr, Vec(SCNTables, SInt(SCCtrBits.W)))) scUpdateTagePreds := DontCare scUpdateTakens := DontCare scUpdateOldCtrs := DontCare val updateSCMeta = updateMeta.scMeta.get val s2_sc_used, s2_conf, s2_unconf, s2_agree, s2_disagree = WireInit(0.U.asTypeOf(Vec(TageBanks, Bool()))) val update_sc_used, update_conf, update_unconf, update_agree, update_disagree = WireInit(0.U.asTypeOf(Vec(TageBanks, Bool()))) val sc_misp_tage_corr, sc_corr_tage_misp = WireInit(0.U.asTypeOf(Vec(TageBanks, Bool()))) // for sc ctrs def getCentered(ctr: SInt): SInt = Cat(ctr, 1.U(1.W)).asSInt // for tage ctrs, (2*(ctr-4)+1)*8 def getPvdrCentered(ctr: UInt): SInt = Cat(ctr ^ (1 << (TageCtrBits - 1)).U, 1.U(1.W), 0.U(3.W)).asSInt val scMeta = resp_meta.scMeta.get scMeta := DontCare for (w <- 0 until TageBanks) { // do summation in s2 val s1_scTableSums = VecInit( (0 to 1) map { i => ParallelSingedExpandingAdd(s1_scResps map (r => getCentered(r.ctrs(w)(i)))) // TODO: rewrite with wallace tree } ) val s2_scTableSums = RegEnable(s1_scTableSums, io.s1_fire(3)) val s2_tagePrvdCtrCentered = getPvdrCentered(RegEnable(s1_providerResps(w).ctr, io.s1_fire(3))) val s2_totalSums = s2_scTableSums.map(_ +& s2_tagePrvdCtrCentered) val s2_sumAboveThresholds = VecInit((0 to 1).map(i => aboveThreshold(s2_scTableSums(i), s2_tagePrvdCtrCentered, useThresholds(w)))) val s2_scPreds = VecInit(s2_totalSums.map(_ >= 0.S)) val s2_scResps = VecInit(RegEnable(s1_scResps, io.s1_fire(3)).map(_.ctrs(w))) val s2_scCtrs = VecInit(s2_scResps.map(_(s2_tageTakens_dup(3)(w).asUInt))) val s2_chooseBit = s2_tageTakens_dup(3)(w) val s2_pred = Mux(s2_provideds(w) && s2_sumAboveThresholds(s2_chooseBit), s2_scPreds(s2_chooseBit), s2_tageTakens_dup(3)(w)) val s3_disagree = RegEnable(s2_disagree, io.s2_fire(3)) io.out.last_stage_spec_info.sc_disagree.map(_ := s3_disagree) scMeta.scPreds(w) := RegEnable(s2_scPreds(s2_chooseBit), io.s2_fire(3)) scMeta.ctrs(w) := RegEnable(s2_scCtrs, io.s2_fire(3)) val pred = s2_scPreds(s2_chooseBit) val debug_pc = Cat(debug_pc_s2, w.U, 0.U(instOffsetBits.W)) when(s2_provideds(w)) { s2_sc_used(w) := true.B s2_unconf(w) := !s2_sumAboveThresholds(s2_chooseBit) s2_conf(w) := s2_sumAboveThresholds(s2_chooseBit) // Use prediction from Statistical Corrector when(s2_sumAboveThresholds(s2_chooseBit)) { s2_agree(w) := s2_tageTakens_dup(3)(w) === pred s2_disagree(w) := s2_tageTakens_dup(3)(w) =/= pred // fit to always-taken condition // io.out.s2.full_pred.br_taken_mask(w) := pred } } XSDebug(s2_provideds(w), p"---------tage_bank_${w} provided so that sc used---------\n") XSDebug( s2_provideds(w) && s2_sumAboveThresholds(s2_chooseBit), p"pc(${Hexadecimal(debug_pc)}) SC(${w.U}) overriden pred to ${pred}\n" ) val s3_pred_dup = io.s2_fire.map(f => RegEnable(s2_pred, f)) val sc_enable_dup = dup(RegNext(io.ctrl.sc_enable)) for ( sc_enable & fp & s3_pred <- sc_enable_dup zip io.out.s3.full_pred zip s3_pred_dup ) { when(sc_enable) { fp.br_taken_mask(w) := s3_pred } } val updateTageMeta = updateMeta val scPred = updateSCMeta.scPreds(w) val tagePred = updateTageMeta.takens(w) val taken = update.br_taken_mask(w) val scOldCtrs = updateSCMeta.ctrs(w) val pvdrCtr = updateTageMeta.providerResps(w).ctr val tableSum = ParallelSingedExpandingAdd(scOldCtrs.map(getCentered)) val totalSumAbs = (tableSum +& getPvdrCentered(pvdrCtr)).abs.asUInt val updateThres = updateThresholds(w) val sumAboveThreshold = aboveThreshold(tableSum, getPvdrCentered(pvdrCtr), updateThres) val thres = useThresholds(w) val newThres = scThresholds(w).update(scPred =/= taken) when(updateValids(w) && updateTageMeta.providers(w).valid) { scUpdateTagePreds(w) := tagePred scUpdateTakens(w) := taken (scUpdateOldCtrs(w) zip scOldCtrs).foreach { case (t, c) => t := c } update_sc_used(w) := true.B update_unconf(w) := !sumAboveThreshold update_conf(w) := sumAboveThreshold update_agree(w) := scPred === tagePred update_disagree(w) := scPred =/= tagePred sc_corr_tage_misp(w) := scPred === taken && tagePred =/= taken && update_conf(w) sc_misp_tage_corr(w) := scPred =/= taken && tagePred === taken && update_conf(w) when(scPred =/= tagePred && totalSumAbs >= thres - 4.U && totalSumAbs <= thres - 2.U) { scThresholds(w) := newThres } when(scPred =/= taken || !sumAboveThreshold) { scUpdateMask(w).foreach(_ := true.B) update_on_mispred(w) := scPred =/= taken update_on_unconf(w) := scPred === taken } } XSDebug( updateValids(w) && updateTageMeta.providers(w).valid && scPred =/= tagePred && totalSumAbs >= thres - 4.U && totalSumAbs <= thres - 2.U, p"scThres $w update: old ${useThresholds(w)} --> new ${newThres.thres}\n" ) XSDebug( updateValids(w) && updateTageMeta.providers(w).valid && (scPred =/= taken || !sumAboveThreshold) && tableSum < 0.S, p"scUpdate: bank(${w}), scPred(${scPred}), tagePred(${tagePred}), " + p"scSum(-${tableSum.abs}), mispred: sc(${scPred =/= taken}), tage(${updateMisPreds(w)})\n" ) XSDebug( updateValids(w) && updateTageMeta.providers(w).valid && (scPred =/= taken || !sumAboveThreshold) && tableSum >= 0.S, p"scUpdate: bank(${w}), scPred(${scPred}), tagePred(${tagePred}), " + p"scSum(+${tableSum.abs}), mispred: sc(${scPred =/= taken}), tage(${updateMisPreds(w)})\n" ) XSDebug( updateValids(w) && updateTageMeta.providers(w).valid && (scPred =/= taken || !sumAboveThreshold), p"bank(${w}), update: sc: ${updateSCMeta}\n" ) } val realWens = scUpdateMask.transpose.map(v => v.reduce(_ | _)) for (b <- 0 until TageBanks) { for (i <- 0 until SCNTables) { val realWen = realWens(i) scTables(i).io.update.mask(b) := RegNext(scUpdateMask(b)(i)) scTables(i).io.update.tagePreds(b) := RegEnable(scUpdateTagePreds(b), realWen) scTables(i).io.update.takens(b) := RegEnable(scUpdateTakens(b), realWen) scTables(i).io.update.oldCtrs(b) := RegEnable(scUpdateOldCtrs(b)(i), realWen) scTables(i).io.update.pc := RegEnable(update_pc, realWen) scTables(i).io.update.ghist := RegEnable(update.ghist, realWen) } } tage_perf("sc_conf", PopCount(s2_conf), PopCount(update_conf)) tage_perf("sc_unconf", PopCount(s2_unconf), PopCount(update_unconf)) tage_perf("sc_agree", PopCount(s2_agree), PopCount(update_agree)) tage_perf("sc_disagree", PopCount(s2_disagree), PopCount(update_disagree)) tage_perf("sc_used", PopCount(s2_sc_used), PopCount(update_sc_used)) XSPerfAccumulate("sc_update_on_mispred", PopCount(update_on_mispred)) XSPerfAccumulate("sc_update_on_unconf", PopCount(update_on_unconf)) XSPerfAccumulate("sc_mispred_but_tage_correct", PopCount(sc_misp_tage_corr)) XSPerfAccumulate("sc_correct_and_tage_wrong", PopCount(sc_corr_tage_misp)) } override def getFoldedHistoryInfo = Some(tage_fh_info ++ sc_fh_info) override val perfEvents = Seq( ("tage_tht_hit ", PopCount(updateMeta.providers.map(_.valid))), ("sc_update_on_mispred ", PopCount(update_on_mispred)), ("sc_update_on_unconf ", PopCount(update_on_unconf)) ) generatePerfEvent() }