/*************************************************************************************** * 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. ***************************************************************************************/ package xiangshan.mem import org.chipsalliance.cde.config.Parameters import chisel3._ import chisel3.util._ import utils._ import utility._ import xiangshan._ import xiangshan.ExceptionNO._ import xiangshan.backend.Bundles.{DynInst, MemExuInput, MemExuOutput} import xiangshan.backend.fu.PMPRespBundle import xiangshan.backend.fu.FuConfig._ import xiangshan.backend.ctrlblock.{DebugLsInfoBundle, LsTopdownInfo} import xiangshan.backend.fu.NewCSR._ import xiangshan.backend.rob.RobPtr import xiangshan.backend.fu._ import xiangshan.backend.fu.util.SdtrigExt import xiangshan.mem.mdp._ import xiangshan.mem.Bundles._ import xiangshan.cache._ import xiangshan.cache.wpu.ReplayCarry import xiangshan.cache.mmu.{TlbCmd, TlbHintReq, TlbReq, TlbRequestIO, TlbResp} class HybridUnit(implicit p: Parameters) extends XSModule with HasLoadHelper with HasPerfEvents with HasDCacheParameters with HasCircularQueuePtrHelper with HasVLSUParameters with SdtrigExt { val io = IO(new Bundle() { // control val redirect = Flipped(ValidIO(new Redirect)) val csrCtrl = Flipped(new CustomCSRCtrlIO) // flow in val lsin = Flipped(Decoupled(new MemExuInput)) // flow out val ldout = DecoupledIO(new MemExuOutput) val stout = DecoupledIO(new MemExuOutput) val ldu_io = new Bundle() { // dcache val dcache = new DCacheLoadIO // data path val sbuffer = new LoadForwardQueryIO val ubuffer = new LoadForwardQueryIO val vec_forward = new LoadForwardQueryIO val lsq = new LoadToLsqIO val tl_d_channel = Input(new DcacheToLduForwardIO) val forward_mshr = Flipped(new LduToMissqueueForwardIO) val tlb_hint = Flipped(new TlbHintReq) val l2_hint = Input(Valid(new L2ToL1Hint)) // fast wakeup val fast_uop = ValidIO(new DynInst) // early wakeup signal generated in load_s1, send to RS in load_s2 // trigger val trigger = Vec(TriggerNum, new LoadUnitTriggerIO) // load to load fast path val l2l_fwd_in = Input(new LoadToLoadIO) val l2l_fwd_out = Output(new LoadToLoadIO) val ld_fast_match = Input(Bool()) val ld_fast_fuOpType = Input(UInt()) val ld_fast_imm = Input(UInt(12.W)) // hardware prefetch to l1 cache req val prefetch_req = Flipped(ValidIO(new L1PrefetchReq)) // iq cancel val ldCancel = Output(new LoadCancelIO()) // use to cancel the uops waked by this load, and cancel load // iq wakeup, use to wakeup consumer uop at load s2 val wakeup = ValidIO(new DynInst) // load ecc error val s3_dly_ld_err = Output(Bool()) // Note that io.s3_dly_ld_err and io.lsq.s3_dly_ld_err is different // schedule error query val stld_nuke_query = Flipped(Vec(StorePipelineWidth, Valid(new StoreNukeQueryBundle))) // queue-based replay val replay = Flipped(Decoupled(new LsPipelineBundle)) val lq_rep_full = Input(Bool()) // misc val s2_ptr_chasing = Output(Bool()) // provide right pc for hw prefetch // Load fast replay path val fast_rep_in = Flipped(Decoupled(new LqWriteBundle)) val fast_rep_out = Decoupled(new LqWriteBundle) // Load RAR rollback val rollback = Valid(new Redirect) // perf val debug_ls = Output(new DebugLsInfoBundle) val lsTopdownInfo = Output(new LsTopdownInfo) } val stu_io = new Bundle() { val dcache = new DCacheStoreIO val prefetch_req = Flipped(DecoupledIO(new StorePrefetchReq)) val issue = Valid(new MemExuInput) val lsq = ValidIO(new LsPipelineBundle) val lsq_replenish = Output(new LsPipelineBundle()) val stld_nuke_query = Valid(new StoreNukeQueryBundle) val st_mask_out = Valid(new StoreMaskBundle) val debug_ls = Output(new DebugLsInfoBundle) } val vec_stu_io = new Bundle() { val in = Flipped(DecoupledIO(new VecPipeBundle())) val isFirstIssue = Input(Bool()) val lsq = ValidIO(new LsPipelineBundle()) val feedbackSlow = ValidIO(new VSFQFeedback) } // speculative for gated control val s0_prefetch_spec = Output(Bool()) val s1_prefetch_spec = Output(Bool()) // prefetch val prefetch_train = ValidIO(new LsPrefetchTrainBundle()) // provide prefetch info to sms val prefetch_train_l1 = ValidIO(new LsPrefetchTrainBundle()) // provide prefetch info to stream & stride val canAcceptLowConfPrefetch = Output(Bool()) val canAcceptHighConfPrefetch = Output(Bool()) val correctMissTrain = Input(Bool()) // data path val tlb = new TlbRequestIO(2) val pmp = Flipped(new PMPRespBundle()) // arrive same to tlb now // rs feedback val feedback_fast = ValidIO(new RSFeedback) // stage 2 val feedback_slow = ValidIO(new RSFeedback) // stage 3 // for store trigger val fromCsrTrigger = Input(new CsrTriggerBundle) }) PerfCCT.updateInstPos(io.lsin.bits.uop.debug_seqNum, PerfCCT.InstPos.AtFU.id.U, io.lsin.valid, clock, reset) val StorePrefetchL1Enabled = EnableStorePrefetchAtCommit || EnableStorePrefetchAtIssue || EnableStorePrefetchSPB val s1_ready, s2_ready, s3_ready, sx_can_go = WireInit(false.B) // Pipeline // -------------------------------------------------------------------------------- // stage 0 // -------------------------------------------------------------------------------- // generate addr, use addr to query DCache and DTLB val s0_valid = Wire(Bool()) val s0_dcache_ready = Wire(Bool()) val s0_kill = Wire(Bool()) val s0_vaddr = Wire(UInt(VAddrBits.W)) val s0_mask = Wire(UInt((VLEN/8).W)) val s0_uop = Wire(new DynInst) val s0_has_rob_entry = Wire(Bool()) val s0_mshrid = Wire(UInt()) val s0_try_l2l = Wire(Bool()) val s0_rep_carry = Wire(new ReplayCarry(nWays)) val s0_isFirstIssue = Wire(Bool()) val s0_fast_rep = Wire(Bool()) val s0_ld_rep = Wire(Bool()) val s0_l2l_fwd = Wire(Bool()) val s0_sched_idx = Wire(UInt()) val s0_can_go = s1_ready val s0_fire = s0_valid && s0_dcache_ready && s0_can_go val s0_out = Wire(new LqWriteBundle) // vector val s0_isvec = WireInit(false.B) val s0_vecActive = WireInit(true.B) // val s0_flowPtr = WireInit(0.U.asTypeOf(new VsFlowPtr)) val s0_isLastElem = WireInit(false.B) // load flow select/gen // src0: super load replayed by LSQ (cache miss replay) (io.ldu_io.replay) // src1: fast load replay (io.ldu_io.fast_rep_in) // src2: load replayed by LSQ (io.ldu_io.replay) // src3: hardware prefetch from prefetchor (high confidence) (io.prefetch) // src4: int read / software prefetch first issue from RS (io.in) // src5: vec read first issue from RS (TODO) // src6: load try pointchaising when no issued or replayed load (io.fastpath) // src7: hardware prefetch from prefetchor (high confidence) (io.prefetch) // priority: high to low val s0_ld_flow = FuType.isLoad(s0_uop.fuType) || FuType.isVLoad(s0_uop.fuType) val s0_rep_stall = io.lsin.valid && isAfter(io.ldu_io.replay.bits.uop.robIdx, io.lsin.bits.uop.robIdx) private val SRC_NUM = 8 private val Seq( super_rep_idx, fast_rep_idx, lsq_rep_idx, high_pf_idx, int_iss_idx, vec_iss_idx, l2l_fwd_idx, low_pf_idx ) = (0 until SRC_NUM).toSeq // load flow source valid val s0_src_valid_vec = WireInit(VecInit(Seq( io.ldu_io.replay.valid && io.ldu_io.replay.bits.forward_tlDchannel, io.ldu_io.fast_rep_in.valid, io.ldu_io.replay.valid && !io.ldu_io.replay.bits.forward_tlDchannel && !s0_rep_stall, io.ldu_io.prefetch_req.valid && io.ldu_io.prefetch_req.bits.confidence > 0.U, io.lsin.valid, // int flow first issue or software prefetch io.vec_stu_io.in.valid, io.ldu_io.l2l_fwd_in.valid && io.ldu_io.ld_fast_match, io.ldu_io.prefetch_req.valid && io.ldu_io.prefetch_req.bits.confidence === 0.U, ))) // load flow source ready val s0_src_ready_vec = Wire(Vec(SRC_NUM, Bool())) s0_src_ready_vec(0) := true.B for(i <- 1 until SRC_NUM){ s0_src_ready_vec(i) := !s0_src_valid_vec.take(i).reduce(_ || _) } // load flow source select (OH) val s0_src_select_vec = WireInit(VecInit((0 until SRC_NUM).map{i => s0_src_valid_vec(i) && s0_src_ready_vec(i)})) val s0_hw_prf_select = s0_src_select_vec(high_pf_idx) || s0_src_select_vec(low_pf_idx) if (backendParams.debugEn){ dontTouch(s0_src_valid_vec) dontTouch(s0_src_ready_vec) dontTouch(s0_src_select_vec) } s0_valid := s0_src_valid_vec.reduce(_ || _) && !s0_kill // which is S0's out is ready and dcache is ready val s0_try_ptr_chasing = s0_src_select_vec(l2l_fwd_idx) val s0_do_try_ptr_chasing = s0_try_ptr_chasing && s0_can_go && io.ldu_io.dcache.req.ready val s0_ptr_chasing_vaddr = io.ldu_io.l2l_fwd_in.data(5, 0) +& io.ldu_io.ld_fast_imm(5, 0) val s0_ptr_chasing_canceled = WireInit(false.B) s0_kill := s0_ptr_chasing_canceled || (s0_out.uop.robIdx.needFlush(io.redirect) && !s0_try_ptr_chasing) // prefetch related ctrl signal val s0_prf = Wire(Bool()) val s0_prf_rd = Wire(Bool()) val s0_prf_wr = Wire(Bool()) val s0_hw_prf = s0_hw_prf_select io.canAcceptLowConfPrefetch := s0_src_ready_vec(low_pf_idx) && io.ldu_io.dcache.req.ready io.canAcceptHighConfPrefetch := s0_src_ready_vec(high_pf_idx) && io.ldu_io.dcache.req.ready if (StorePrefetchL1Enabled) { s0_dcache_ready := Mux(s0_ld_flow, io.ldu_io.dcache.req.ready, io.stu_io.dcache.req.ready) } else { s0_dcache_ready := Mux(s0_ld_flow, io.ldu_io.dcache.req.ready, true.B) } // query DTLB io.tlb.req.valid := s0_valid && s0_dcache_ready io.tlb.req.bits.cmd := Mux(s0_prf, Mux(s0_prf_wr, TlbCmd.write, TlbCmd.read), Mux(s0_ld_flow, TlbCmd.read, TlbCmd.write) ) io.tlb.req.bits.vaddr := Mux(s0_hw_prf_select, io.ldu_io.prefetch_req.bits.paddr, s0_vaddr) io.tlb.req.bits.size := Mux(s0_isvec, io.vec_stu_io.in.bits.alignedType(1, 0), LSUOpType.size(s0_uop.fuOpType)) // may broken if use it in feature io.tlb.req.bits.kill := s0_kill io.tlb.req.bits.memidx.is_ld := s0_ld_flow io.tlb.req.bits.memidx.is_st := !s0_ld_flow io.tlb.req.bits.memidx.idx := s0_uop.lqIdx.value io.tlb.req.bits.debug.robIdx := s0_uop.robIdx io.tlb.req.bits.no_translate := s0_hw_prf_select // hw b.reqetch addr does not need to be translated io.tlb.req.bits.debug.pc := s0_uop.pc io.tlb.req.bits.debug.isFirstIssue := s0_isFirstIssue // query DCache // for load io.ldu_io.dcache.req.valid := s0_valid && s0_dcache_ready && s0_ld_flow io.ldu_io.dcache.req.bits.cmd := Mux(s0_prf_rd, MemoryOpConstants.M_PFR, Mux(s0_prf_wr, MemoryOpConstants.M_PFW, MemoryOpConstants.M_XRD)) io.ldu_io.dcache.req.bits.vaddr := s0_vaddr io.ldu_io.dcache.req.bits.mask := s0_mask io.ldu_io.dcache.req.bits.data := DontCare io.ldu_io.dcache.req.bits.isFirstIssue := s0_isFirstIssue io.ldu_io.dcache.req.bits.instrtype := Mux(s0_prf, DCACHE_PREFETCH_SOURCE.U, LOAD_SOURCE.U) io.ldu_io.dcache.req.bits.debug_robIdx := s0_uop.robIdx.value io.ldu_io.dcache.req.bits.replayCarry := s0_rep_carry io.ldu_io.dcache.req.bits.id := DontCare // TODO: update cache meta io.ldu_io.dcache.pf_source := Mux(s0_hw_prf_select, io.ldu_io.prefetch_req.bits.pf_source.value, L1_HW_PREFETCH_NULL) io.ldu_io.dcache.is128Req := is128Bit(io.vec_stu_io.in.bits.alignedType) && io.vec_stu_io.in.valid && s0_src_select_vec(vec_iss_idx) // for store io.stu_io.dcache.req.valid := s0_valid && s0_dcache_ready && !s0_ld_flow && !s0_prf io.stu_io.dcache.req.bits.cmd := MemoryOpConstants.M_PFW io.stu_io.dcache.req.bits.vaddr := s0_vaddr io.stu_io.dcache.req.bits.instrtype := Mux(s0_prf, DCACHE_PREFETCH_SOURCE.U, STORE_SOURCE.U) // load flow priority mux def fromNullSource() = { s0_vaddr := 0.U s0_mask := 0.U s0_uop := 0.U.asTypeOf(new DynInst) s0_try_l2l := false.B s0_has_rob_entry := false.B s0_rep_carry := 0.U.asTypeOf(s0_rep_carry.cloneType) s0_mshrid := 0.U s0_isFirstIssue := false.B s0_fast_rep := false.B s0_ld_rep := false.B s0_l2l_fwd := false.B s0_prf := false.B s0_prf_rd := false.B s0_prf_wr := false.B s0_sched_idx := 0.U } def fromFastReplaySource(src: LqWriteBundle) = { s0_vaddr := src.vaddr s0_mask := src.mask s0_uop := src.uop s0_try_l2l := false.B s0_has_rob_entry := src.hasROBEntry s0_rep_carry := src.rep_info.rep_carry s0_mshrid := src.rep_info.mshr_id s0_isFirstIssue := false.B s0_fast_rep := true.B s0_ld_rep := src.isLoadReplay s0_l2l_fwd := false.B s0_prf := LSUOpType.isPrefetch(src.uop.fuOpType) s0_prf_rd := src.uop.fuOpType === LSUOpType.prefetch_r s0_prf_wr := src.uop.fuOpType === LSUOpType.prefetch_w s0_sched_idx := src.schedIndex } def fromNormalReplaySource(src: LsPipelineBundle) = { s0_vaddr := src.vaddr s0_mask := genVWmask(src.vaddr, src.uop.fuOpType(1, 0)) s0_uop := src.uop s0_try_l2l := false.B s0_has_rob_entry := true.B s0_rep_carry := src.replayCarry s0_mshrid := src.mshrid s0_isFirstIssue := false.B s0_fast_rep := false.B s0_ld_rep := true.B s0_l2l_fwd := false.B s0_prf := LSUOpType.isPrefetch(src.uop.fuOpType) s0_prf_rd := src.uop.fuOpType === LSUOpType.prefetch_r s0_prf_wr := src.uop.fuOpType === LSUOpType.prefetch_w s0_sched_idx := src.schedIndex } def fromPrefetchSource(src: L1PrefetchReq) = { s0_vaddr := src.getVaddr() s0_mask := 0.U s0_uop := DontCare s0_try_l2l := false.B s0_has_rob_entry := false.B s0_rep_carry := 0.U.asTypeOf(s0_rep_carry.cloneType) s0_mshrid := 0.U s0_isFirstIssue := false.B s0_fast_rep := false.B s0_ld_rep := false.B s0_l2l_fwd := false.B s0_prf := true.B s0_prf_rd := !src.is_store s0_prf_wr := src.is_store s0_sched_idx := 0.U } def fromIntIssueSource(src: MemExuInput) = { s0_vaddr := src.src(0) + SignExt(src.uop.imm(11, 0), VAddrBits) s0_mask := genVWmask(s0_vaddr, src.uop.fuOpType(1,0)) s0_uop := src.uop s0_try_l2l := false.B s0_has_rob_entry := true.B s0_rep_carry := 0.U.asTypeOf(s0_rep_carry.cloneType) s0_mshrid := 0.U s0_isFirstIssue := true.B s0_fast_rep := false.B s0_ld_rep := false.B s0_l2l_fwd := false.B s0_prf := LSUOpType.isPrefetch(src.uop.fuOpType) s0_prf_rd := src.uop.fuOpType === LSUOpType.prefetch_r s0_prf_wr := src.uop.fuOpType === LSUOpType.prefetch_w s0_sched_idx := 0.U } def fromVecIssueSource(src: VecPipeBundle) = { // For now, vector port handles only vector store flows s0_vaddr := src.vaddr s0_mask := src.mask s0_uop := src.uop s0_try_l2l := false.B s0_has_rob_entry := true.B s0_rep_carry := 0.U.asTypeOf(s0_rep_carry.cloneType) s0_mshrid := 0.U // s0_isFirstIssue := src.isFirstIssue s0_fast_rep := false.B s0_ld_rep := false.B s0_l2l_fwd := false.B s0_prf := false.B s0_prf_rd := false.B s0_prf_wr := false.B s0_sched_idx := 0.U s0_isvec := true.B s0_vecActive := io.vec_stu_io.in.bits.vecActive // s0_flowPtr := io.vec_stu_io.in.bits.flowPtr // s0_isLastElem := io.vec_stu_io.in.bits.isLastElem } def fromLoadToLoadSource(src: LoadToLoadIO) = { s0_vaddr := Cat(src.data(XLEN-1, 6), s0_ptr_chasing_vaddr(5,0)) s0_mask := genVWmask(s0_vaddr, io.ldu_io.ld_fast_fuOpType(1, 0)) // When there's no valid instruction from RS and LSQ, we try the load-to-load forwarding. // Assume the pointer chasing is always ld. s0_uop.fuOpType := io.ldu_io.ld_fast_fuOpType s0_try_l2l := true.B // we dont care s0_isFirstIssue and s0_rsIdx and s0_sqIdx in S0 when trying pointchasing // because these signals will be updated in S1 s0_has_rob_entry := false.B s0_mshrid := 0.U s0_rep_carry := 0.U.asTypeOf(s0_rep_carry.cloneType) s0_isFirstIssue := true.B s0_fast_rep := false.B s0_ld_rep := false.B s0_l2l_fwd := true.B s0_prf := false.B s0_prf_rd := false.B s0_prf_wr := false.B s0_sched_idx := 0.U } // set default s0_uop := DontCare when (s0_src_select_vec(super_rep_idx)) { fromNormalReplaySource(io.ldu_io.replay.bits) } .elsewhen (s0_src_select_vec(fast_rep_idx)) { fromFastReplaySource(io.ldu_io.fast_rep_in.bits) } .elsewhen (s0_src_select_vec(lsq_rep_idx)) { fromNormalReplaySource(io.ldu_io.replay.bits) } .elsewhen (s0_hw_prf_select) { fromPrefetchSource(io.ldu_io.prefetch_req.bits) } .elsewhen (s0_src_select_vec(int_iss_idx)) { fromIntIssueSource(io.lsin.bits) } .elsewhen (s0_src_select_vec(vec_iss_idx)) { fromVecIssueSource(io.vec_stu_io.in.bits) } .otherwise { if (EnableLoadToLoadForward) { fromLoadToLoadSource(io.ldu_io.l2l_fwd_in) } else { fromNullSource() } } // address align check val s0_addr_aligned = LookupTree(Mux(s0_isvec, io.vec_stu_io.in.bits.alignedType(1,0), s0_uop.fuOpType(1, 0)), List( "b00".U -> true.B, //b "b01".U -> (s0_vaddr(0) === 0.U), //h "b10".U -> (s0_vaddr(1, 0) === 0.U), //w "b11".U -> (s0_vaddr(2, 0) === 0.U) //d ))// may broken if use it in feature // accept load flow if dcache ready (tlb is always ready) // TODO: prefetch need writeback to loadQueueFlag s0_out := DontCare s0_out.vaddr := s0_vaddr s0_out.mask := s0_mask s0_out.uop := s0_uop s0_out.isFirstIssue := s0_isFirstIssue s0_out.hasROBEntry := s0_has_rob_entry s0_out.isPrefetch := s0_prf s0_out.isHWPrefetch := s0_hw_prf s0_out.isFastReplay := s0_fast_rep s0_out.isLoadReplay := s0_ld_rep s0_out.isFastPath := s0_l2l_fwd s0_out.mshrid := s0_mshrid s0_out.isvec := s0_isvec s0_out.isLastElem := s0_isLastElem s0_out.vecActive := s0_vecActive // s0_out.sflowPtr := s0_flowPtr s0_out.uop.exceptionVec(loadAddrMisaligned) := !s0_addr_aligned && s0_ld_flow s0_out.uop.exceptionVec(storeAddrMisaligned) := !s0_addr_aligned && !s0_ld_flow s0_out.forward_tlDchannel := s0_src_select_vec(super_rep_idx) when(io.tlb.req.valid && s0_isFirstIssue) { s0_out.uop.debugInfo.tlbFirstReqTime := GTimer() }.otherwise{ s0_out.uop.debugInfo.tlbFirstReqTime := s0_uop.debugInfo.tlbFirstReqTime } s0_out.schedIndex := s0_sched_idx // load fast replay io.ldu_io.fast_rep_in.ready := (s0_can_go && io.ldu_io.dcache.req.ready && s0_src_ready_vec(fast_rep_idx)) // load flow source ready // cache missed load has highest priority // always accept cache missed load flow from load replay queue io.ldu_io.replay.ready := (s0_can_go && io.ldu_io.dcache.req.ready && (s0_src_ready_vec(lsq_rep_idx) && !s0_rep_stall || s0_src_select_vec(super_rep_idx))) // accept load flow from rs when: // 1) there is no lsq-replayed load // 2) there is no fast replayed load // 3) there is no high confidence prefetch request io.lsin.ready := (s0_can_go && Mux(FuType.isLoad(io.lsin.bits.uop.fuType), io.ldu_io.dcache.req.ready, (if (StorePrefetchL1Enabled) io.stu_io.dcache.req.ready else true.B)) && s0_src_ready_vec(int_iss_idx)) io.vec_stu_io.in.ready := s0_can_go && io.ldu_io.dcache.req.ready && s0_src_ready_vec(vec_iss_idx) // for hw prefetch load flow feedback, to be added later // io.prefetch_in.ready := s0_hw_prf_select // dcache replacement extra info // TODO: should prefetch load update replacement? io.ldu_io.dcache.replacementUpdated := Mux(s0_src_select_vec(lsq_rep_idx) || s0_src_select_vec(super_rep_idx), io.ldu_io.replay.bits.replacementUpdated, false.B) io.stu_io.prefetch_req.ready := s1_ready && io.stu_io.dcache.req.ready && !io.lsin.valid // load debug XSDebug(io.ldu_io.dcache.req.fire && s0_ld_flow, p"[DCACHE LOAD REQ] pc ${Hexadecimal(s0_uop.pc)}, vaddr ${Hexadecimal(s0_vaddr)}\n" ) XSDebug(s0_valid && s0_ld_flow, p"S0: pc ${Hexadecimal(s0_out.uop.pc)}, lqIdx ${Hexadecimal(s0_out.uop.lqIdx.asUInt)}, " + p"vaddr ${Hexadecimal(s0_out.vaddr)}, mask ${Hexadecimal(s0_out.mask)}\n") // store debug XSDebug(io.stu_io.dcache.req.fire && !s0_ld_flow, p"[DCACHE STORE REQ] pc ${Hexadecimal(s0_uop.pc)}, vaddr ${Hexadecimal(s0_vaddr)}\n" ) XSDebug(s0_valid && !s0_ld_flow, p"S0: pc ${Hexadecimal(s0_out.uop.pc)}, sqIdx ${Hexadecimal(s0_out.uop.sqIdx.asUInt)}, " + p"vaddr ${Hexadecimal(s0_out.vaddr)}, mask ${Hexadecimal(s0_out.mask)}\n") // Pipeline // -------------------------------------------------------------------------------- // stage 1 // -------------------------------------------------------------------------------- // TLB resp (send paddr to dcache) val s1_valid = RegInit(false.B) val s1_in = Wire(new LqWriteBundle) val s1_out = Wire(new LqWriteBundle) val s1_kill = Wire(Bool()) val s1_can_go = s2_ready val s1_fire = s1_valid && !s1_kill && s1_can_go val s1_ld_flow = RegNext(s0_ld_flow) val s1_isvec = RegEnable(s0_out.isvec, false.B, s0_fire) val s1_isLastElem = RegEnable(s0_out.isLastElem, false.B, s0_fire) s1_ready := !s1_valid || s1_kill || s2_ready when (s0_fire) { s1_valid := true.B } .elsewhen (s1_fire) { s1_valid := false.B } .elsewhen (s1_kill) { s1_valid := false.B } s1_in := RegEnable(s0_out, s0_fire) val s1_fast_rep_dly_err = RegNext(io.ldu_io.fast_rep_in.bits.delayedLoadError) val s1_fast_rep_kill = s1_fast_rep_dly_err && s1_in.isFastReplay val s1_l2l_fwd_dly_err = RegNext(io.ldu_io.l2l_fwd_in.dly_ld_err) val s1_l2l_fwd_kill = s1_l2l_fwd_dly_err && s1_in.isFastPath val s1_late_kill = s1_fast_rep_kill || s1_l2l_fwd_kill val s1_vaddr_hi = Wire(UInt()) val s1_vaddr_lo = Wire(UInt()) val s1_vaddr = Wire(UInt()) val s1_paddr_dup_lsu = Wire(UInt()) val s1_paddr_dup_dcache = Wire(UInt()) val s1_ld_exception = ExceptionNO.selectByFu(s1_out.uop.exceptionVec, LduCfg).asUInt.orR // af & pf exception were modified below. val s1_st_exception = ExceptionNO.selectByFu(s1_out.uop.exceptionVec, StaCfg).asUInt.orR // af & pf exception were modified below. val s1_exception = (s1_ld_flow && s1_ld_exception) || (!s1_ld_flow && s1_st_exception) val s1_tlb_miss = io.tlb.resp.bits.miss val s1_prf = s1_in.isPrefetch val s1_hw_prf = s1_in.isHWPrefetch val s1_sw_prf = s1_prf && !s1_hw_prf val s1_tlb_memidx = io.tlb.resp.bits.memidx // mmio cbo decoder val s1_mmio_cbo = (s1_in.uop.fuOpType === LSUOpType.cbo_clean || s1_in.uop.fuOpType === LSUOpType.cbo_flush || s1_in.uop.fuOpType === LSUOpType.cbo_inval) && !s1_ld_flow && !s1_prf val s1_mmio = s1_mmio_cbo s1_vaddr_hi := s1_in.vaddr(VAddrBits - 1, 6) s1_vaddr_lo := s1_in.vaddr(5, 0) s1_vaddr := Cat(s1_vaddr_hi, s1_vaddr_lo) s1_paddr_dup_lsu := io.tlb.resp.bits.paddr(0) s1_paddr_dup_dcache := io.tlb.resp.bits.paddr(1) when (s1_tlb_memidx.is_ld && io.tlb.resp.valid && !s1_tlb_miss && s1_tlb_memidx.idx === s1_in.uop.lqIdx.value && s1_ld_flow) { // printf("Load idx = %d\n", s1_tlb_memidx.idx) s1_out.uop.debugInfo.tlbRespTime := GTimer() } .elsewhen(s1_tlb_memidx.is_st && io.tlb.resp.valid && !s1_tlb_miss && s1_tlb_memidx.idx === s1_out.uop.sqIdx.value && !s1_ld_flow) { // printf("Store idx = %d\n", s1_tlb_memidx.idx) s1_out.uop.debugInfo.tlbRespTime := GTimer() } io.tlb.req_kill := s1_kill io.tlb.resp.ready := true.B io.ldu_io.dcache.s1_paddr_dup_lsu <> s1_paddr_dup_lsu io.ldu_io.dcache.s1_paddr_dup_dcache <> s1_paddr_dup_dcache io.ldu_io.dcache.s1_kill := s1_kill || s1_tlb_miss || s1_exception io.ldu_io.dcache.s1_kill_data_read := s1_kill || s1_tlb_miss // store to load forwarding io.ldu_io.sbuffer.valid := s1_valid && !(s1_exception || s1_tlb_miss || s1_kill || s1_fast_rep_kill || s1_prf || !s1_ld_flow) io.ldu_io.sbuffer.vaddr := s1_vaddr io.ldu_io.sbuffer.paddr := s1_paddr_dup_lsu io.ldu_io.sbuffer.uop := s1_in.uop io.ldu_io.sbuffer.sqIdx := s1_in.uop.sqIdx io.ldu_io.sbuffer.mask := s1_in.mask io.ldu_io.sbuffer.pc := s1_in.uop.pc // FIXME: remove it io.ldu_io.ubuffer.valid := s1_valid && !(s1_exception || s1_tlb_miss || s1_kill || s1_fast_rep_kill || s1_prf || !s1_ld_flow) io.ldu_io.ubuffer.vaddr := s1_vaddr io.ldu_io.ubuffer.paddr := s1_paddr_dup_lsu io.ldu_io.ubuffer.uop := s1_in.uop io.ldu_io.ubuffer.sqIdx := s1_in.uop.sqIdx io.ldu_io.ubuffer.mask := s1_in.mask io.ldu_io.ubuffer.pc := s1_in.uop.pc // FIXME: remove it io.ldu_io.vec_forward.valid := s1_valid && !(s1_exception || s1_tlb_miss || s1_kill || s1_fast_rep_kill || s1_prf || !s1_ld_flow) io.ldu_io.vec_forward.vaddr := s1_vaddr io.ldu_io.vec_forward.paddr := s1_paddr_dup_lsu io.ldu_io.vec_forward.uop := s1_in.uop io.ldu_io.vec_forward.sqIdx := s1_in.uop.sqIdx io.ldu_io.vec_forward.mask := s1_in.mask io.ldu_io.vec_forward.pc := s1_in.uop.pc // FIXME: remove it io.ldu_io.lsq.forward.valid := s1_valid && !(s1_exception || s1_tlb_miss || s1_kill || s1_fast_rep_kill || s1_prf || !s1_ld_flow) io.ldu_io.lsq.forward.vaddr := s1_vaddr io.ldu_io.lsq.forward.paddr := s1_paddr_dup_lsu io.ldu_io.lsq.forward.uop := s1_in.uop io.ldu_io.lsq.forward.sqIdx := s1_in.uop.sqIdx io.ldu_io.lsq.forward.sqIdxMask := 0.U io.ldu_io.lsq.forward.mask := s1_in.mask io.ldu_io.lsq.forward.pc := s1_in.uop.pc // FIXME: remove it // st-ld violation query val s1_nuke = VecInit((0 until StorePipelineWidth).map(w => { io.ldu_io.stld_nuke_query(w).valid && // query valid isAfter(s1_in.uop.robIdx, io.ldu_io.stld_nuke_query(w).bits.robIdx) && // older store // TODO: Fix me when vector instruction (s1_paddr_dup_lsu(PAddrBits-1, 3) === io.ldu_io.stld_nuke_query(w).bits.paddr(PAddrBits-1, 3)) && // paddr match (s1_in.mask & io.ldu_io.stld_nuke_query(w).bits.mask).orR // data mask contain })).asUInt.orR && !s1_tlb_miss && s1_ld_flow s1_out := s1_in s1_out.vaddr := s1_vaddr s1_out.paddr := s1_paddr_dup_lsu s1_out.tlbMiss := s1_tlb_miss s1_out.ptwBack := io.tlb.resp.bits.ptwBack s1_out.rep_info.debug := s1_in.uop.debugInfo s1_out.rep_info.nuke := s1_nuke && !s1_sw_prf s1_out.lateKill := s1_late_kill // store trigger val storeTrigger = Module(new MemTrigger(MemType.STORE)) storeTrigger.io.fromCsrTrigger.tdataVec := io.fromCsrTrigger.tdataVec storeTrigger.io.fromCsrTrigger.tEnableVec := io.fromCsrTrigger.tEnableVec storeTrigger.io.fromCsrTrigger.triggerCanRaiseBpExp := io.fromCsrTrigger.triggerCanRaiseBpExp storeTrigger.io.fromCsrTrigger.debugMode := io.fromCsrTrigger.debugMode storeTrigger.io.fromLoadStore.vaddr := s1_vaddr storeTrigger.io.fromLoadStore.isVectorUnitStride := s1_in.isvec && s1_in.is128bit storeTrigger.io.fromLoadStore.mask := s1_in.mask when (s1_ld_flow) { when (!s1_late_kill) { // current ori test will cause the case of ldest == 0, below will be modifeid in the future. // af & pf exception were modified s1_out.uop.exceptionVec(loadPageFault) := io.tlb.resp.bits.excp(0).pf.ld s1_out.uop.exceptionVec(loadGuestPageFault) := io.tlb.resp.bits.excp(0).gpf.ld s1_out.uop.exceptionVec(loadAccessFault) := io.tlb.resp.bits.excp(0).af.ld } .otherwise { s1_out.uop.exceptionVec(loadAddrMisaligned) := false.B s1_out.uop.exceptionVec(loadAccessFault) := s1_late_kill } } .otherwise { s1_out.uop.exceptionVec(storePageFault) := io.tlb.resp.bits.excp(0).pf.st s1_out.uop.exceptionVec(storeGuestPageFault) := io.tlb.resp.bits.excp(0).gpf.st s1_out.uop.exceptionVec(storeAccessFault) := io.tlb.resp.bits.excp(0).af.st s1_out.uop.trigger := storeTrigger.io.toLoadStore.triggerAction s1_out.uop.exceptionVec(breakPoint) := TriggerAction.isExp(storeTrigger.io.toLoadStore.triggerAction) } // load trigger val loadTrigger = Module(new MemTrigger(MemType.LOAD)) loadTrigger.io.fromCsrTrigger.tdataVec := io.fromCsrTrigger.tdataVec loadTrigger.io.fromCsrTrigger.tEnableVec := io.fromCsrTrigger.tEnableVec loadTrigger.io.fromCsrTrigger.triggerCanRaiseBpExp := io.fromCsrTrigger.triggerCanRaiseBpExp loadTrigger.io.fromCsrTrigger.debugMode := io.fromCsrTrigger.debugMode loadTrigger.io.fromLoadStore.vaddr := s1_vaddr loadTrigger.io.fromLoadStore.isVectorUnitStride := s1_in.isvec && s1_in.is128bit loadTrigger.io.fromLoadStore.mask := s1_in.mask when (s1_ld_flow) { s1_out.uop.exceptionVec(breakPoint) := TriggerAction.isExp(loadTrigger.io.toLoadStore.triggerAction) s1_out.uop.trigger := loadTrigger.io.toLoadStore.triggerAction } // pointer chasing val s1_try_ptr_chasing = RegNext(s0_do_try_ptr_chasing, false.B) val s1_ptr_chasing_vaddr = RegEnable(s0_ptr_chasing_vaddr, s0_do_try_ptr_chasing) val s1_fu_op_type_not_ld = WireInit(false.B) val s1_not_fast_match = WireInit(false.B) val s1_addr_mismatch = WireInit(false.B) val s1_addr_misaligned = WireInit(false.B) val s1_ptr_chasing_canceled = WireInit(false.B) val s1_cancel_ptr_chasing = WireInit(false.B) s1_kill := s1_late_kill || s1_cancel_ptr_chasing || s1_in.uop.robIdx.needFlush(io.redirect) || RegEnable(s0_kill, false.B, io.lsin.valid || io.ldu_io.replay.valid || io.ldu_io.l2l_fwd_in.valid || io.ldu_io.fast_rep_in.valid || io.vec_stu_io.in.valid) if (EnableLoadToLoadForward) { // Sometimes, we need to cancel the load-load forwarding. // These can be put at S0 if timing is bad at S1. // Case 0: CACHE_SET(base + offset) != CACHE_SET(base) (lowest 6-bit addition has an overflow) s1_addr_mismatch := s1_ptr_chasing_vaddr(6) || RegEnable(io.ldu_io.ld_fast_imm(11, 6).orR, s0_do_try_ptr_chasing) // Case 1: the address is misaligned, kill s1 s1_addr_misaligned := LookupTree(s1_in.uop.fuOpType(1, 0), List( "b00".U -> false.B, //b "b01".U -> (s1_vaddr(0) =/= 0.U), //h "b10".U -> (s1_vaddr(1, 0) =/= 0.U), //w "b11".U -> (s1_vaddr(2, 0) =/= 0.U) //d )) // Case 2: this load-load uop is cancelled s1_ptr_chasing_canceled := !io.lsin.valid || FuType.isStore(io.lsin.bits.uop.fuType) when (s1_try_ptr_chasing) { s1_cancel_ptr_chasing := s1_addr_mismatch || s1_addr_misaligned || s1_ptr_chasing_canceled s1_in.uop := io.lsin.bits.uop s1_in.isFirstIssue := io.lsin.bits.isFirstIssue s1_vaddr_lo := s1_ptr_chasing_vaddr(5, 0) s1_paddr_dup_lsu := Cat(io.tlb.resp.bits.paddr(0)(PAddrBits - 1, 6), s1_vaddr_lo) s1_paddr_dup_dcache := Cat(io.tlb.resp.bits.paddr(0)(PAddrBits - 1, 6), s1_vaddr_lo) // recored tlb time when get the data to ensure the correctness of the latency calculation (although it should not record in here, because it does not use tlb) s1_in.uop.debugInfo.tlbFirstReqTime := GTimer() s1_in.uop.debugInfo.tlbRespTime := GTimer() } when (!s1_cancel_ptr_chasing) { s0_ptr_chasing_canceled := s1_try_ptr_chasing && !io.ldu_io.replay.fire && !io.ldu_io.fast_rep_in.fire && !(s0_src_valid_vec(high_pf_idx) && io.canAcceptHighConfPrefetch) when (s1_try_ptr_chasing) { io.lsin.ready := true.B } } } // pre-calcuate sqIdx mask in s0, then send it to lsq in s1 for forwarding val s1_sqIdx_mask = RegNext(UIntToMask(s0_out.uop.sqIdx.value, StoreQueueSize)) // to enable load-load, sqIdxMask must be calculated based on lsin.uop // If the timing here is not OK, load-load forwarding has to be disabled. // Or we calculate sqIdxMask at RS?? io.ldu_io.lsq.forward.sqIdxMask := s1_sqIdx_mask if (EnableLoadToLoadForward) { when (s1_try_ptr_chasing) { io.ldu_io.lsq.forward.sqIdxMask := UIntToMask(io.lsin.bits.uop.sqIdx.value, StoreQueueSize) } } io.ldu_io.forward_mshr.valid := s1_valid && s1_out.forward_tlDchannel && s1_ld_flow io.ldu_io.forward_mshr.mshrid := s1_out.mshrid io.ldu_io.forward_mshr.paddr := s1_out.paddr io.ldu_io.wakeup.valid := s0_fire && s0_ld_flow && (s0_src_select_vec(super_rep_idx) || s0_src_select_vec(fast_rep_idx) || s0_src_select_vec(lsq_rep_idx) || s0_src_select_vec(int_iss_idx)) io.ldu_io.wakeup.bits := s0_uop io.stu_io.dcache.s1_kill := s1_tlb_miss || s1_exception || s1_mmio || s1_in.uop.robIdx.needFlush(io.redirect) io.stu_io.dcache.s1_paddr := s1_paddr_dup_dcache // load debug XSDebug(s1_valid && s1_ld_flow, p"S1: pc ${Hexadecimal(s1_out.uop.pc)}, lId ${Hexadecimal(s1_out.uop.lqIdx.asUInt)}, tlb_miss ${io.tlb.resp.bits.miss}, " + p"paddr ${Hexadecimal(s1_out.paddr)}, mmio ${s1_out.mmio}\n") // store debug XSDebug(s1_valid && !s1_ld_flow, p"S1: pc ${Hexadecimal(s1_out.uop.pc)}, lId ${Hexadecimal(s1_out.uop.sqIdx.asUInt)}, tlb_miss ${io.tlb.resp.bits.miss}, " + p"paddr ${Hexadecimal(s1_out.paddr)}, mmio ${s1_out.mmio}\n") // store out io.stu_io.lsq.valid := s1_valid && !s1_ld_flow && !s1_prf && !s1_isvec io.stu_io.lsq.bits := s1_out io.stu_io.lsq.bits.miss := s1_tlb_miss io.vec_stu_io.lsq.valid := s1_valid && !s1_ld_flow && !s1_prf && s1_isvec io.vec_stu_io.lsq.bits := s1_out io.vec_stu_io.lsq.bits.miss := s1_tlb_miss io.vec_stu_io.lsq.bits.isLastElem := s1_isLastElem io.stu_io.st_mask_out.valid := s1_valid && !s1_ld_flow && !s1_prf io.stu_io.st_mask_out.bits.mask := s1_out.mask io.stu_io.st_mask_out.bits.sqIdx := s1_out.uop.sqIdx io.stu_io.issue.valid := s1_valid && !s1_tlb_miss && !s1_ld_flow && !s1_prf && !s1_isvec io.stu_io.issue.bits := RegEnable(io.lsin.bits, io.lsin.fire) // st-ld violation dectect request io.stu_io.stld_nuke_query.valid := s1_valid && !s1_tlb_miss && !s1_ld_flow && !s1_prf io.stu_io.stld_nuke_query.bits.robIdx := s1_in.uop.robIdx io.stu_io.stld_nuke_query.bits.paddr := s1_paddr_dup_lsu io.stu_io.stld_nuke_query.bits.mask := s1_in.mask // Pipeline // -------------------------------------------------------------------------------- // stage 2 // -------------------------------------------------------------------------------- // s2: DCache resp val s2_valid = RegInit(false.B) val s2_in = Wire(new LqWriteBundle) val s2_out = Wire(new LqWriteBundle) val s2_kill = Wire(Bool()) val s2_can_go = s3_ready val s2_fire = s2_valid && !s2_kill && s2_can_go val s2_isvec = RegEnable(s1_isvec, false.B, s1_fire) val s2_vecActive = RegEnable(s1_out.vecActive, true.B, s1_fire) val s2_paddr = RegEnable(s1_paddr_dup_lsu, s1_fire) s2_kill := s2_in.uop.robIdx.needFlush(io.redirect) s2_ready := !s2_valid || s2_kill || s3_ready when (s1_fire) { s2_valid := true.B } .elsewhen (s2_fire) { s2_valid := false.B } .elsewhen (s2_kill) { s2_valid := false.B } s2_in := RegEnable(s1_out, s1_fire) val s2_pmp = WireInit(io.pmp) val s2_prf = s2_in.isPrefetch val s2_hw_prf = s2_in.isHWPrefetch val s2_ld_flow = RegEnable(s1_ld_flow, s1_fire) // exception that may cause load addr to be invalid / illegal // if such exception happen, that inst and its exception info // will be force writebacked to rob val s2_exception_vec = WireInit(s2_in.uop.exceptionVec) when (s2_ld_flow) { when (!s2_in.lateKill) { s2_exception_vec(loadAccessFault) := s2_vecActive && ( s2_in.uop.exceptionVec(loadAccessFault) || s2_pmp.ld || s2_fwd_frm_d_chan && s2_d_corrupt || s2_fwd_frm_mshr && s2_mshr_corrupt ) // soft prefetch will not trigger any exception (but ecc error interrupt may be triggered) when (s2_prf || s2_in.tlbMiss) { s2_exception_vec := 0.U.asTypeOf(s2_exception_vec.cloneType) } } } .otherwise { s2_exception_vec(storeAccessFault) := s2_in.uop.exceptionVec(storeAccessFault) || s2_pmp.st when (s2_prf || s2_in.tlbMiss) { s2_exception_vec := 0.U.asTypeOf(s2_exception_vec.cloneType) } } val s2_ld_exception = ExceptionNO.selectByFu(s2_exception_vec, LduCfg).asUInt.orR && s2_ld_flow val s2_st_exception = ExceptionNO.selectByFu(s2_exception_vec, StaCfg).asUInt.orR && !s2_ld_flow val s2_exception = s2_ld_exception || s2_st_exception val (s2_fwd_frm_d_chan, s2_fwd_data_frm_d_chan, s2_d_corrupt) = io.ldu_io.tl_d_channel.forward(s1_valid && s1_out.forward_tlDchannel, s1_out.mshrid, s1_out.paddr) val (s2_fwd_data_valid, s2_fwd_frm_mshr, s2_fwd_data_frm_mshr, s2_mshr_corrupt) = io.ldu_io.forward_mshr.forward() val s2_fwd_frm_d_chan_or_mshr = s2_fwd_data_valid && (s2_fwd_frm_d_chan || s2_fwd_frm_mshr) // writeback access fault caused by ecc error / bus error // * ecc data error is slow to generate, so we will not use it until load stage 3 // * in load stage 3, an extra signal io.load_error will be used to val s2_actually_mmio = s2_pmp.mmio val s2_ld_mmio = !s2_prf && s2_actually_mmio && !s2_exception && !s2_in.tlbMiss && s2_ld_flow val s2_st_mmio = !s2_prf && (RegNext(s1_mmio) || s2_pmp.mmio) && !s2_exception && !s2_in.tlbMiss && !s2_ld_flow val s2_st_atomic = !s2_prf && (RegNext(s1_mmio) || s2_pmp.atomic) && !s2_exception && !s2_in.tlbMiss && !s2_ld_flow val s2_full_fwd = Wire(Bool()) val s2_mem_amb = s2_in.uop.storeSetHit && io.ldu_io.lsq.forward.addrInvalid val s2_tlb_miss = s2_in.tlbMiss val s2_fwd_fail = io.ldu_io.lsq.forward.dataInvalid || io.ldu_io.vec_forward.dataInvalid val s2_dcache_miss = io.ldu_io.dcache.resp.bits.miss && !s2_fwd_frm_d_chan_or_mshr && !s2_full_fwd val s2_mq_nack = io.ldu_io.dcache.s2_mq_nack && !s2_fwd_frm_d_chan_or_mshr && !s2_full_fwd val s2_bank_conflict = io.ldu_io.dcache.s2_bank_conflict && !s2_fwd_frm_d_chan_or_mshr && !s2_full_fwd val s2_wpu_pred_fail = io.ldu_io.dcache.s2_wpu_pred_fail && !s2_fwd_frm_d_chan_or_mshr && !s2_full_fwd val s2_rar_nack = io.ldu_io.lsq.ldld_nuke_query.req.valid && !io.ldu_io.lsq.ldld_nuke_query.req.ready val s2_raw_nack = io.ldu_io.lsq.stld_nuke_query.req.valid && !io.ldu_io.lsq.stld_nuke_query.req.ready // st-ld violation query // NeedFastRecovery Valid when // 1. Fast recovery query request Valid. // 2. Load instruction is younger than requestors(store instructions). // 3. Physical address match. // 4. Data contains. val s2_nuke = VecInit((0 until StorePipelineWidth).map(w => { io.ldu_io.stld_nuke_query(w).valid && // query valid isAfter(s2_in.uop.robIdx, io.ldu_io.stld_nuke_query(w).bits.robIdx) && // older store // TODO: Fix me when vector instruction (s2_in.paddr(PAddrBits-1, 3) === io.ldu_io.stld_nuke_query(w).bits.paddr(PAddrBits-1, 3)) && // paddr match (s2_in.mask & io.ldu_io.stld_nuke_query(w).bits.mask).orR // data mask contain })).asUInt.orR && s2_ld_flow || s2_in.rep_info.nuke val s2_cache_handled = io.ldu_io.dcache.resp.bits.handled val s2_cache_tag_error = RegNext(io.csrCtrl.cache_error_enable) && io.ldu_io.dcache.resp.bits.tag_error val s2_troublem = !s2_exception && !s2_ld_mmio && !s2_prf && !s2_in.lateKill && s2_ld_flow io.ldu_io.dcache.resp.ready := true.B io.stu_io.dcache.resp.ready := true.B val s2_dcache_should_resp = !(s2_in.tlbMiss || s2_exception || s2_ld_mmio || s2_prf || s2_in.lateKill) && s2_ld_flow assert(!(s2_valid && (s2_dcache_should_resp && !io.ldu_io.dcache.resp.valid)), "DCache response got lost") // fast replay require val s2_dcache_fast_rep = (s2_mq_nack || !s2_dcache_miss && (s2_bank_conflict || s2_wpu_pred_fail)) val s2_nuke_fast_rep = !s2_mq_nack && !s2_dcache_miss && !s2_bank_conflict && !s2_wpu_pred_fail && !s2_rar_nack && !s2_raw_nack && s2_nuke val s2_fast_rep = !s2_mem_amb && !s2_tlb_miss && !s2_fwd_fail && (s2_dcache_fast_rep || s2_nuke_fast_rep) && s2_troublem // need allocate new entry val s2_can_query = !s2_mem_amb && !s2_tlb_miss && !s2_fwd_fail && !s2_dcache_fast_rep && s2_troublem val s2_data_fwded = s2_dcache_miss && (s2_full_fwd || s2_cache_tag_error) // ld-ld violation require io.ldu_io.lsq.ldld_nuke_query.req.valid := s2_valid && s2_can_query io.ldu_io.lsq.ldld_nuke_query.req.bits.uop := s2_in.uop io.ldu_io.lsq.ldld_nuke_query.req.bits.mask := s2_in.mask io.ldu_io.lsq.ldld_nuke_query.req.bits.paddr := s2_in.paddr io.ldu_io.lsq.ldld_nuke_query.req.bits.data_valid := Mux(s2_full_fwd || s2_fwd_data_valid, true.B, !s2_dcache_miss) // st-ld violation require io.ldu_io.lsq.stld_nuke_query.req.valid := s2_valid && s2_can_query io.ldu_io.lsq.stld_nuke_query.req.bits.uop := s2_in.uop io.ldu_io.lsq.stld_nuke_query.req.bits.mask := s2_in.mask io.ldu_io.lsq.stld_nuke_query.req.bits.paddr := s2_in.paddr io.ldu_io.lsq.stld_nuke_query.req.bits.data_valid := Mux(s2_full_fwd || s2_fwd_data_valid, true.B, !s2_dcache_miss) // merge forward result // lsq has higher priority than sbuffer val s2_fwd_mask = Wire(Vec((VLEN/8), Bool())) val s2_fwd_data = Wire(Vec((VLEN/8), UInt(8.W))) s2_full_fwd := ((~s2_fwd_mask.asUInt).asUInt & s2_in.mask) === 0.U && !io.ldu_io.lsq.forward.dataInvalid && !io.ldu_io.vec_forward.dataInvalid // generate XLEN/8 Muxs for (i <- 0 until VLEN / 8) { s2_fwd_mask(i) := io.ldu_io.lsq.forward.forwardMask(i) || io.ldu_io.sbuffer.forwardMask(i) || io.ldu_io.vec_forward.forwardMask(i) || io.ldu_io.ubuffer.forwardMask(i) s2_fwd_data(i) := Mux(io.ldu_io.lsq.forward.forwardMask(i), io.ldu_io.lsq.forward.forwardData(i), Mux(io.ldu_io.vec_forward.forwardMask(i), io.ldu_io.vec_forward.forwardData(i), Mux(io.ldu_io.ubuffer.forwardMask(i), io.ldu_io.ubuffer.forwardData(i), io.ldu_io.sbuffer.forwardData(i)))) } XSDebug(s2_fire && s2_ld_flow, "[FWD LOAD RESP] pc %x fwd %x(%b) + %x(%b)\n", s2_in.uop.pc, io.ldu_io.lsq.forward.forwardData.asUInt, io.ldu_io.lsq.forward.forwardMask.asUInt, s2_in.forwardData.asUInt, s2_in.forwardMask.asUInt ) // s2_out := s2_in s2_out.data := 0.U // data will be generated in load s3 s2_out.uop.fpWen := s2_in.uop.fpWen && !s2_exception && s2_ld_flow s2_out.mmio := s2_ld_mmio || s2_st_mmio s2_out.atomic := s2_st_atomic s2_out.uop.flushPipe := false.B s2_out.uop.exceptionVec := s2_exception_vec s2_out.forwardMask := s2_fwd_mask s2_out.forwardData := s2_fwd_data s2_out.handledByMSHR := s2_cache_handled s2_out.miss := s2_dcache_miss && s2_troublem s2_out.feedbacked := io.feedback_fast.valid && !io.feedback_fast.bits.hit // Generate replay signal caused by: // * st-ld violation check // * tlb miss // * dcache replay // * forward data invalid // * dcache miss s2_out.rep_info.mem_amb := s2_mem_amb && s2_troublem s2_out.rep_info.tlb_miss := s2_tlb_miss && s2_troublem s2_out.rep_info.fwd_fail := s2_fwd_fail && s2_troublem s2_out.rep_info.dcache_rep := s2_mq_nack && s2_troublem s2_out.rep_info.dcache_miss := s2_dcache_miss && s2_troublem s2_out.rep_info.bank_conflict := s2_bank_conflict && s2_troublem s2_out.rep_info.wpu_fail := s2_wpu_pred_fail && s2_troublem s2_out.rep_info.rar_nack := s2_rar_nack && s2_troublem s2_out.rep_info.raw_nack := s2_raw_nack && s2_troublem s2_out.rep_info.nuke := s2_nuke && s2_troublem s2_out.rep_info.full_fwd := s2_data_fwded s2_out.rep_info.data_inv_sq_idx := Mux(io.ldu_io.vec_forward.dataInvalid, s2_out.uop.sqIdx, io.ldu_io.lsq.forward.dataInvalidSqIdx) s2_out.rep_info.addr_inv_sq_idx := Mux(io.ldu_io.vec_forward.addrInvalid, s2_out.uop.sqIdx, io.ldu_io.lsq.forward.addrInvalidSqIdx) s2_out.rep_info.rep_carry := io.ldu_io.dcache.resp.bits.replayCarry s2_out.rep_info.mshr_id := io.ldu_io.dcache.resp.bits.mshr_id s2_out.rep_info.last_beat := s2_in.paddr(log2Up(refillBytes)) s2_out.rep_info.debug := s2_in.uop.debugInfo s2_out.rep_info.tlb_id := io.ldu_io.tlb_hint.id s2_out.rep_info.tlb_full := io.ldu_io.tlb_hint.full // if forward fail, replay this inst from fetch val debug_fwd_fail_rep = s2_fwd_fail && !s2_troublem && !s2_in.tlbMiss // if ld-ld violation is detected, replay from this inst from fetch val debug_ldld_nuke_rep = false.B // s2_ldld_violation && !s2_ld_mmio && !s2_is_prefetch && !s2_in.tlbMiss // io.out.bits.uop.replayInst := false.B // to be removed val s2_ld_need_fb = !s2_in.isLoadReplay && // already feedbacked io.ldu_io.lq_rep_full && // LoadQueueReplay is full s2_out.rep_info.need_rep && // need replay !s2_exception && // no exception is triggered !s2_hw_prf && // not hardware prefetch !s2_isvec val s2_st_need_fb = !s2_ld_flow && !s2_hw_prf && !s2_isvec io.feedback_fast.valid := s2_valid && (s2_ld_need_fb || s2_st_need_fb) io.feedback_fast.bits.hit := Mux(s2_ld_flow, false.B, !s2_tlb_miss) io.feedback_fast.bits.flushState := s2_in.ptwBack io.feedback_fast.bits.robIdx := s2_in.uop.robIdx io.feedback_fast.bits.sourceType := Mux(s2_ld_flow, RSFeedbackType.lrqFull, RSFeedbackType.tlbMiss) io.feedback_fast.bits.dataInvalidSqIdx := DontCare val s2_vec_feedback = Wire(Valid(new VSFQFeedback)) s2_vec_feedback.valid := s2_valid && !s2_ld_flow && !s2_hw_prf && s2_isvec // s2_vec_feedback.bits.flowPtr := s2_out.sflowPtr s2_vec_feedback.bits.hit := !s2_tlb_miss s2_vec_feedback.bits.sourceType := RSFeedbackType.tlbMiss s2_vec_feedback.bits.paddr := s2_paddr s2_vec_feedback.bits.mmio := s2_st_mmio s2_vec_feedback.bits.atomic := s2_st_mmio s2_vec_feedback.bits.exceptionVec := s2_exception_vec io.stu_io.lsq_replenish := s2_out io.stu_io.lsq_replenish.miss := io.ldu_io.dcache.resp.fire && io.ldu_io.dcache.resp.bits.miss io.ldu_io.ldCancel.ld1Cancel := false.B // fast wakeup io.ldu_io.fast_uop.valid := RegNext( !io.ldu_io.dcache.s1_disable_fast_wakeup && s1_valid && !s1_kill && !io.tlb.resp.bits.miss && !io.ldu_io.lsq.forward.dataInvalidFast ) && (s2_valid && !s2_out.rep_info.need_rep && !s2_ld_mmio && s2_ld_flow) && !s2_isvec io.ldu_io.fast_uop.bits := RegNext(s1_out.uop) // io.ldu_io.s2_ptr_chasing := RegEnable(s1_try_ptr_chasing && !s1_cancel_ptr_chasing, false.B, s1_fire) // prefetch train io.s0_prefetch_spec := s0_fire io.s1_prefetch_spec := s1_fire io.prefetch_train.valid := s2_valid && !s2_actually_mmio && !s2_in.tlbMiss io.prefetch_train.bits.fromLsPipelineBundle(s2_in) io.prefetch_train.bits.miss := Mux(s2_ld_flow, io.ldu_io.dcache.resp.bits.miss, io.stu_io.dcache.resp.bits.miss) // TODO: use trace with bank conflict? io.prefetch_train.bits.meta_prefetch := Mux(s2_ld_flow, io.ldu_io.dcache.resp.bits.meta_prefetch, false.B) io.prefetch_train.bits.meta_access := Mux(s2_ld_flow, io.ldu_io.dcache.resp.bits.meta_access, false.B) io.prefetch_train_l1.valid := s2_valid && !s2_actually_mmio && s2_ld_flow io.prefetch_train_l1.bits.fromLsPipelineBundle(s2_in) io.prefetch_train_l1.bits.miss := io.ldu_io.dcache.resp.bits.miss io.prefetch_train_l1.bits.meta_prefetch := io.ldu_io.dcache.resp.bits.meta_prefetch io.prefetch_train_l1.bits.meta_access := io.ldu_io.dcache.resp.bits.meta_access if (env.FPGAPlatform){ io.ldu_io.dcache.s0_pc := DontCare io.ldu_io.dcache.s1_pc := DontCare io.ldu_io.dcache.s2_pc := DontCare }else{ io.ldu_io.dcache.s0_pc := s0_out.uop.pc io.ldu_io.dcache.s1_pc := s1_out.uop.pc io.ldu_io.dcache.s2_pc := s2_out.uop.pc } io.ldu_io.dcache.s2_kill := s2_pmp.ld || s2_actually_mmio || s2_kill io.stu_io.dcache.s2_kill := s2_pmp.st || s2_actually_mmio || s2_kill io.stu_io.dcache.s2_pc := s2_out.uop.pc val s1_ld_left_fire = s1_valid && !s1_kill && s2_ready && s1_ld_flow val s2_ld_valid_dup = RegInit(0.U(6.W)) s2_ld_valid_dup := 0x0.U(6.W) when (s1_ld_left_fire && !s1_out.isHWPrefetch && s1_ld_flow) { s2_ld_valid_dup := 0x3f.U(6.W) } when (s1_kill || s1_out.isHWPrefetch || !s1_ld_flow) { s2_ld_valid_dup := 0x0.U(6.W) } assert(RegNext((s2_valid === s2_ld_valid_dup(0)) || RegNext(s1_out.isHWPrefetch) || RegNext(!s1_ld_flow))) // Pipeline // -------------------------------------------------------------------------------- // stage 3 // -------------------------------------------------------------------------------- // writeback and update load queue val s3_valid = RegNext(s2_valid && !s2_out.isHWPrefetch && !s2_out.uop.robIdx.needFlush(io.redirect)) val s3_in = RegEnable(s2_out, s2_fire) val s3_out = Wire(Valid(new MemExuOutput)) val s3_dcache_rep = RegEnable(s2_dcache_fast_rep && s2_troublem, false.B, s2_fire) val s3_ld_valid_dup = RegEnable(s2_ld_valid_dup, s2_fire) val s3_fast_rep = Wire(Bool()) val s3_ld_flow = RegNext(s2_ld_flow) val s3_troublem = RegNext(s2_troublem) val s3_kill = s3_in.uop.robIdx.needFlush(io.redirect) val s3_isvec = RegNext(s2_isvec) s3_ready := !s3_valid || s3_kill || sx_can_go // s3 load fast replay io.ldu_io.fast_rep_out.valid := s3_valid && s3_fast_rep && !s3_in.uop.robIdx.needFlush(io.redirect) && s3_ld_flow && !s3_isvec io.ldu_io.fast_rep_out.bits := s3_in io.ldu_io.lsq.ldin.valid := s3_valid && (!s3_fast_rep || !io.ldu_io.fast_rep_out.ready) && !s3_in.feedbacked && !s3_in.lateKill && s3_ld_flow io.ldu_io.lsq.ldin.bits := s3_in io.ldu_io.lsq.ldin.bits.miss := s3_in.miss /* <------- DANGEROUS: Don't change sequence here ! -------> */ io.ldu_io.lsq.ldin.bits.data_wen_dup := s3_ld_valid_dup.asBools io.ldu_io.lsq.ldin.bits.replacementUpdated := io.ldu_io.dcache.resp.bits.replacementUpdated io.ldu_io.lsq.ldin.bits.missDbUpdated := RegNext(s2_fire && s2_in.hasROBEntry && !s2_in.tlbMiss && !s2_in.missDbUpdated) val s3_dly_ld_err = if (EnableAccurateLoadError) { (s3_in.lateKill || io.ldu_io.dcache.resp.bits.error_delayed) && RegNext(io.csrCtrl.cache_error_enable) } else { WireInit(false.B) } io.ldu_io.s3_dly_ld_err := false.B // s3_dly_ld_err && s3_valid io.ldu_io.fast_rep_out.bits.delayedLoadError := s3_dly_ld_err io.ldu_io.lsq.ldin.bits.dcacheRequireReplay := s3_dcache_rep val s3_vp_match_fail = RegNext(io.ldu_io.lsq.forward.matchInvalid || io.ldu_io.sbuffer.matchInvalid || io.ldu_io.ubuffer.matchInvalid) && s3_troublem val s3_ldld_rep_inst = io.ldu_io.lsq.ldld_nuke_query.resp.valid && io.ldu_io.lsq.ldld_nuke_query.resp.bits.rep_frm_fetch && RegNext(io.csrCtrl.ldld_vio_check_enable) val s3_rep_info = WireInit(s3_in.rep_info) s3_rep_info.dcache_miss := s3_in.rep_info.dcache_miss && s3_troublem val s3_rep_frm_fetch = s3_vp_match_fail val s3_flushPipe = s3_ldld_rep_inst val s3_sel_rep_cause = PriorityEncoderOH(s3_rep_info.cause.asUInt) val s3_force_rep = s3_sel_rep_cause(LoadReplayCauses.C_TM) && !s3_in.uop.exceptionVec(loadAddrMisaligned) && s3_troublem val s3_ld_exception = ExceptionNO.selectByFu(s3_in.uop.exceptionVec, LduCfg).asUInt.orR && s3_ld_flow val s3_st_exception = ExceptionNO.selectByFu(s3_in.uop.exceptionVec, StaCfg).asUInt.orR && !s3_ld_flow val s3_exception = s3_ld_exception || s3_st_exception when ((s3_ld_exception || s3_dly_ld_err || s3_rep_frm_fetch) && !s3_force_rep) { io.ldu_io.lsq.ldin.bits.rep_info.cause := 0.U.asTypeOf(s3_rep_info.cause.cloneType) } .otherwise { io.ldu_io.lsq.ldin.bits.rep_info.cause := VecInit(s3_sel_rep_cause.asBools) } // Int flow, if hit, will be writebacked at s3 s3_out.valid := s3_valid && (!s3_ld_flow && !s3_in.feedbacked || !io.ldu_io.lsq.ldin.bits.rep_info.need_rep) && !s3_in.mmio s3_out.bits.uop := s3_in.uop s3_out.bits.uop.exceptionVec(loadAccessFault) := (s3_dly_ld_err || s3_in.uop.exceptionVec(loadAccessFault)) && s3_ld_flow s3_out.bits.uop.replayInst := s3_rep_frm_fetch s3_out.bits.data := s3_in.data s3_out.bits.debug.isMMIO := s3_in.mmio s3_out.bits.debug.isNC := s3_in.nc s3_out.bits.debug.isPerfCnt := false.B s3_out.bits.debug.paddr := s3_in.paddr s3_out.bits.debug.vaddr := s3_in.vaddr when (s3_force_rep) { s3_out.bits.uop.exceptionVec := 0.U.asTypeOf(s3_in.uop.exceptionVec.cloneType) } io.ldu_io.rollback.valid := s3_valid && (s3_rep_frm_fetch || s3_flushPipe) && !s3_exception && s3_ld_flow io.ldu_io.rollback.bits := DontCare io.ldu_io.rollback.bits.isRVC := s3_out.bits.uop.preDecodeInfo.isRVC io.ldu_io.rollback.bits.robIdx := s3_out.bits.uop.robIdx io.ldu_io.rollback.bits.ftqIdx := s3_out.bits.uop.ftqPtr io.ldu_io.rollback.bits.ftqOffset := s3_out.bits.uop.ftqOffset io.ldu_io.rollback.bits.level := Mux(s3_rep_frm_fetch, RedirectLevel.flush, RedirectLevel.flushAfter) io.ldu_io.rollback.bits.cfiUpdate.target := s3_out.bits.uop.pc io.ldu_io.rollback.bits.debug_runahead_checkpoint_id := s3_out.bits.uop.debugInfo.runahead_checkpoint_id /* <------- DANGEROUS: Don't change sequence here ! -------> */ io.ldu_io.lsq.ldin.bits.uop := s3_out.bits.uop val s3_revoke = s3_exception || io.ldu_io.lsq.ldin.bits.rep_info.need_rep io.ldu_io.lsq.ldld_nuke_query.revoke := s3_revoke io.ldu_io.lsq.stld_nuke_query.revoke := s3_revoke // feedback slow s3_fast_rep := RegNext(s2_fast_rep) && !s3_in.feedbacked && !s3_in.lateKill && !s3_rep_frm_fetch && !s3_exception val s3_fb_no_waiting = !s3_in.isLoadReplay && !(s3_fast_rep && io.ldu_io.fast_rep_out.ready) && !s3_in.feedbacked // io.feedback_slow.valid := s3_valid && !s3_in.uop.robIdx.needFlush(io.redirect) && s3_fb_no_waiting && s3_ld_flow io.feedback_slow.bits.hit := !io.ldu_io.lsq.ldin.bits.rep_info.need_rep || io.ldu_io.lsq.ldin.ready io.feedback_slow.bits.flushState := s3_in.ptwBack io.feedback_slow.bits.robIdx := s3_in.uop.robIdx io.feedback_slow.bits.sourceType := RSFeedbackType.lrqFull io.feedback_slow.bits.dataInvalidSqIdx := DontCare io.vec_stu_io.feedbackSlow.valid := RegNext(s2_vec_feedback.valid && !s2_out.uop.robIdx.needFlush(io.redirect)) io.vec_stu_io.feedbackSlow.bits := RegNext(s2_vec_feedback.bits) io.ldu_io.ldCancel.ld2Cancel := s3_valid && s3_ld_flow && ( // is load io.ldu_io.lsq.ldin.bits.rep_info.need_rep || s3_in.mmio // exe fail or is mmio ) // data from dcache hit val s3_ld_raw_data_frm_cache = Wire(new LoadDataFromDcacheBundle) s3_ld_raw_data_frm_cache.respDcacheData := io.ldu_io.dcache.resp.bits.data s3_ld_raw_data_frm_cache.forward_D := s2_fwd_frm_d_chan s3_ld_raw_data_frm_cache.forwardData_D := s2_fwd_data_frm_d_chan s3_ld_raw_data_frm_cache.forward_mshr := s2_fwd_frm_mshr s3_ld_raw_data_frm_cache.forwardData_mshr := s2_fwd_data_frm_mshr s3_ld_raw_data_frm_cache.forward_result_valid := s2_fwd_data_valid s3_ld_raw_data_frm_cache.forwardMask := RegEnable(s2_fwd_mask, s2_valid) s3_ld_raw_data_frm_cache.forwardData := RegEnable(s2_fwd_data, s2_valid) s3_ld_raw_data_frm_cache.uop := RegEnable(s2_out.uop, s2_valid) s3_ld_raw_data_frm_cache.addrOffset := RegEnable(s2_out.paddr(3, 0), s2_valid) val s3_merged_data_frm_tlD = RegEnable(s3_ld_raw_data_frm_cache.mergeTLData(), s2_valid) val s3_merged_data_frm_cache = s3_ld_raw_data_frm_cache.mergeLsqFwdData(s3_merged_data_frm_tlD) val s3_picked_data_frm_cache = LookupTree(s3_ld_raw_data_frm_cache.addrOffset, List( "b0000".U -> s3_merged_data_frm_cache(63, 0), "b0001".U -> s3_merged_data_frm_cache(63, 8), "b0010".U -> s3_merged_data_frm_cache(63, 16), "b0011".U -> s3_merged_data_frm_cache(63, 24), "b0100".U -> s3_merged_data_frm_cache(63, 32), "b0101".U -> s3_merged_data_frm_cache(63, 40), "b0110".U -> s3_merged_data_frm_cache(63, 48), "b0111".U -> s3_merged_data_frm_cache(63, 56), "b1000".U -> s3_merged_data_frm_cache(127, 64), "b1001".U -> s3_merged_data_frm_cache(127, 72), "b1010".U -> s3_merged_data_frm_cache(127, 80), "b1011".U -> s3_merged_data_frm_cache(127, 88), "b1100".U -> s3_merged_data_frm_cache(127, 96), "b1101".U -> s3_merged_data_frm_cache(127, 104), "b1110".U -> s3_merged_data_frm_cache(127, 112), "b1111".U -> s3_merged_data_frm_cache(127, 120) )) val s3_ld_data_frm_cache = rdataHelper(s3_ld_raw_data_frm_cache.uop, s3_picked_data_frm_cache) // FIXME: add 1 cycle delay ? io.ldout.bits := s3_out.bits io.ldout.bits.data := s3_ld_data_frm_cache io.ldout.valid := s3_out.valid && !s3_out.bits.uop.robIdx.needFlush(io.redirect) && s3_ld_flow && !s3_isvec // for uncache io.ldu_io.lsq.uncache.ready := true.B // fast load to load forward if (EnableLoadToLoadForward) { io.ldu_io.l2l_fwd_out.valid := s3_out.valid && !s3_in.lateKill && s3_ld_flow io.ldu_io.l2l_fwd_out.data := s3_ld_data_frm_cache io.ldu_io.l2l_fwd_out.dly_ld_err := s3_dly_ld_err // ecc delayed error } else { io.ldu_io.l2l_fwd_out.valid := false.B io.ldu_io.l2l_fwd_out.data := DontCare io.ldu_io.l2l_fwd_out.dly_ld_err := DontCare } // hybrid unit writeback to rob // delay params val SelectGroupSize = RollbackGroupSize val lgSelectGroupSize = log2Ceil(SelectGroupSize) val TotalSelectCycles = scala.math.ceil(log2Ceil(LoadQueueRAWSize).toFloat / lgSelectGroupSize).toInt + 1 val TotalDelayCycles = TotalSelectCycles - 2 // writeback val sx_valid = Wire(Vec(TotalDelayCycles + 1, Bool())) val sx_ready = Wire(Vec(TotalDelayCycles + 1, Bool())) val sx_in = Wire(Vec(TotalDelayCycles + 1, new MemExuOutput)) sx_can_go := sx_ready.head for (i <- 0 until TotalDelayCycles + 1) { if (i == 0) { sx_valid(i) := s3_valid && !s3_ld_flow && !s3_in.feedbacked && !s3_in.mmio sx_in(i) := s3_out.bits sx_ready(i) := !s3_valid(i) || sx_in(i).uop.robIdx.needFlush(io.redirect) || (if (TotalDelayCycles == 0) io.stout.ready else sx_ready(i+1)) } else { val cur_kill = sx_in(i).uop.robIdx.needFlush(io.redirect) val cur_can_go = (if (i == TotalDelayCycles) io.stout.ready else sx_ready(i+1)) val cur_fire = sx_valid(i) && !cur_kill && cur_can_go val prev_fire = sx_valid(i-1) && !sx_in(i-1).uop.robIdx.needFlush(io.redirect) && sx_ready(i) sx_ready(i) := !sx_valid(i) || cur_kill || (if (i == TotalDelayCycles) io.stout.ready else sx_ready(i+1)) val sx_valid_can_go = prev_fire || cur_fire || cur_kill sx_valid(i) := RegEnable(Mux(prev_fire, true.B, false.B), sx_valid_can_go) sx_in(i) := RegEnable(sx_in(i-1), prev_fire) } } val sx_last_valid = sx_valid.takeRight(1).head val sx_last_ready = sx_ready.takeRight(1).head val sx_last_in = sx_in.takeRight(1).head sx_last_ready := !sx_last_valid || sx_last_in.uop.robIdx.needFlush(io.redirect) || io.stout.ready io.stout.valid := sx_last_valid && !sx_last_in.uop.robIdx.needFlush(io.redirect) && FuType.isStore(sx_last_in.uop.fuType) io.stout.bits := sx_last_in // FIXME: please move this part to LoadQueueReplay io.ldu_io.debug_ls := DontCare io.stu_io.debug_ls := DontCare io.stu_io.debug_ls.s1_isTlbFirstMiss := io.tlb.resp.valid && io.tlb.resp.bits.miss && io.tlb.resp.bits.debug.isFirstIssue && !s1_in.isHWPrefetch && !s1_ld_flow io.stu_io.debug_ls.s1_robIdx := s1_in.uop.robIdx.value // Topdown io.ldu_io.lsTopdownInfo.s1.robIdx := s1_in.uop.robIdx.value io.ldu_io.lsTopdownInfo.s1.vaddr_valid := s1_valid && s1_in.hasROBEntry io.ldu_io.lsTopdownInfo.s1.vaddr_bits := s1_vaddr io.ldu_io.lsTopdownInfo.s2.robIdx := s2_in.uop.robIdx.value io.ldu_io.lsTopdownInfo.s2.paddr_valid := s2_fire && s2_in.hasROBEntry && !s2_in.tlbMiss io.ldu_io.lsTopdownInfo.s2.paddr_bits := s2_in.paddr io.ldu_io.lsTopdownInfo.s2.first_real_miss := io.ldu_io.dcache.resp.bits.real_miss io.ldu_io.lsTopdownInfo.s2.cache_miss_en := s2_fire && s2_in.hasROBEntry && !s2_in.tlbMiss && !s2_in.missDbUpdated // perf cnt XSPerfAccumulate("s0_in_valid", io.lsin.valid) XSPerfAccumulate("s0_in_block", io.lsin.valid && !io.lsin.fire) XSPerfAccumulate("s0_in_fire_first_issue", s0_valid && s0_isFirstIssue) XSPerfAccumulate("s0_lsq_fire_first_issue", io.ldu_io.replay.fire) XSPerfAccumulate("s0_ldu_fire_first_issue", io.lsin.fire && s0_isFirstIssue) XSPerfAccumulate("s0_fast_replay_issue", io.ldu_io.fast_rep_in.fire) XSPerfAccumulate("s0_stall_out", s0_valid && !s0_can_go) XSPerfAccumulate("s0_stall_ld_dcache", s0_valid && !io.ldu_io.dcache.req.ready) XSPerfAccumulate("s0_stall_st_dcache", s0_valid && !io.stu_io.dcache.req.ready) XSPerfAccumulate("s0_addr_spec_success", s0_fire && s0_vaddr(VAddrBits-1, 12) === io.lsin.bits.src(0)(VAddrBits-1, 12)) XSPerfAccumulate("s0_addr_spec_failed", s0_fire && s0_vaddr(VAddrBits-1, 12) =/= io.lsin.bits.src(0)(VAddrBits-1, 12)) XSPerfAccumulate("s0_addr_spec_success_once", s0_fire && s0_vaddr(VAddrBits-1, 12) === io.lsin.bits.src(0)(VAddrBits-1, 12) && s0_isFirstIssue) XSPerfAccumulate("s0_addr_spec_failed_once", s0_fire && s0_vaddr(VAddrBits-1, 12) =/= io.lsin.bits.src(0)(VAddrBits-1, 12) && s0_isFirstIssue) XSPerfAccumulate("s0_forward_tl_d_channel", s0_out.forward_tlDchannel) XSPerfAccumulate("s0_hardware_prefetch_fire", s0_fire && s0_hw_prf_select) XSPerfAccumulate("s0_software_prefetch_fire", s0_fire && s0_prf && s0_src_select_vec(int_iss_idx)) XSPerfAccumulate("s0_hardware_prefetch_blocked", io.ldu_io.prefetch_req.valid && !s0_hw_prf_select) XSPerfAccumulate("s0_hardware_prefetch_total", io.ldu_io.prefetch_req.valid) XSPerfAccumulate("s1_in_valid", s1_valid) XSPerfAccumulate("s1_in_fire", s1_fire) XSPerfAccumulate("s1_in_fire_first_issue", s1_fire && s1_in.isFirstIssue) XSPerfAccumulate("s1_tlb_miss", s1_fire && s1_tlb_miss) XSPerfAccumulate("s1_tlb_miss_first_issue", s1_fire && s1_tlb_miss && s1_in.isFirstIssue) XSPerfAccumulate("s1_stall_out", s1_valid && !s1_can_go) XSPerfAccumulate("s1_late_kill", s1_valid && s1_fast_rep_kill) XSPerfAccumulate("s2_in_valid", s2_valid) XSPerfAccumulate("s2_in_fire", s2_fire) XSPerfAccumulate("s2_in_fire_first_issue", s2_fire && s2_in.isFirstIssue) XSPerfAccumulate("s2_dcache_miss", s2_fire && io.ldu_io.dcache.resp.bits.miss) XSPerfAccumulate("s2_dcache_miss_first_issue", s2_fire && io.ldu_io.dcache.resp.bits.miss && s2_in.isFirstIssue) XSPerfAccumulate("s2_dcache_real_miss_first_issue", s2_fire && io.ldu_io.dcache.resp.bits.miss && s2_in.isFirstIssue) XSPerfAccumulate("s2_full_forward", s2_fire && s2_full_fwd) XSPerfAccumulate("s2_dcache_miss_full_forward", s2_fire && s2_dcache_miss) XSPerfAccumulate("s2_fwd_frm_d_can", s2_valid && s2_fwd_frm_d_chan) XSPerfAccumulate("s2_fwd_frm_d_chan_or_mshr", s2_valid && s2_fwd_frm_d_chan_or_mshr) XSPerfAccumulate("s2_stall_out", s2_fire && !s2_can_go) XSPerfAccumulate("s2_prefetch", s2_fire && s2_prf) XSPerfAccumulate("s2_prefetch_ignored", s2_fire && s2_prf && io.ldu_io.dcache.s2_mq_nack) // ignore prefetch for mshr full / miss req port conflict XSPerfAccumulate("s2_prefetch_miss", s2_fire && s2_prf && io.ldu_io.dcache.resp.bits.miss) // prefetch req miss in l1 XSPerfAccumulate("s2_prefetch_hit", s2_fire && s2_prf && !io.ldu_io.dcache.resp.bits.miss) // prefetch req hit in l1 XSPerfAccumulate("s2_prefetch_accept", s2_fire && s2_prf && io.ldu_io.dcache.resp.bits.miss && !io.ldu_io.dcache.s2_mq_nack) // prefetch a missed line in l1, and l1 accepted it XSPerfAccumulate("s2_forward_req", s2_fire && s2_in.forward_tlDchannel) XSPerfAccumulate("s2_successfully_forward_channel_D", s2_fire && s2_fwd_frm_d_chan && s2_fwd_data_valid) XSPerfAccumulate("s2_successfully_forward_mshr", s2_fire && s2_fwd_frm_mshr && s2_fwd_data_valid) XSPerfAccumulate("load_to_load_forward", s1_try_ptr_chasing && !s1_ptr_chasing_canceled) XSPerfAccumulate("load_to_load_forward_try", s1_try_ptr_chasing) XSPerfAccumulate("load_to_load_forward_fail", s1_cancel_ptr_chasing) XSPerfAccumulate("load_to_load_forward_fail_cancelled", s1_cancel_ptr_chasing && s1_ptr_chasing_canceled) XSPerfAccumulate("load_to_load_forward_fail_wakeup_mismatch", s1_cancel_ptr_chasing && !s1_ptr_chasing_canceled && s1_not_fast_match) XSPerfAccumulate("load_to_load_forward_fail_op_not_ld", s1_cancel_ptr_chasing && !s1_ptr_chasing_canceled && !s1_not_fast_match && s1_fu_op_type_not_ld) XSPerfAccumulate("load_to_load_forward_fail_addr_align", s1_cancel_ptr_chasing && !s1_ptr_chasing_canceled && !s1_not_fast_match && !s1_fu_op_type_not_ld && s1_addr_misaligned) XSPerfAccumulate("load_to_load_forward_fail_set_mismatch", s1_cancel_ptr_chasing && !s1_ptr_chasing_canceled && !s1_not_fast_match && !s1_fu_op_type_not_ld && !s1_addr_misaligned && s1_addr_mismatch) // bug lyq: some signals in perfEvents are no longer suitable for the current MemBlock design // hardware performance counter val perfEvents = Seq( ("load_s0_in_fire ", s0_fire ), ("load_to_load_forward ", s1_fire && s1_try_ptr_chasing && !s1_ptr_chasing_canceled ), ("stall_dcache ", s0_valid && s0_can_go && !io.ldu_io.dcache.req.ready ), ("load_s1_in_fire ", s0_fire ), ("load_s1_tlb_miss ", s1_fire && io.tlb.resp.bits.miss ), ("load_s2_in_fire ", s1_fire ), ("load_s2_dcache_miss ", s2_fire && io.ldu_io.dcache.resp.bits.miss ), ) generatePerfEvent() }