1package xiangshan.frontend 2 3import chisel3._ 4import chisel3.util._ 5import device.RAMHelper 6import xiangshan._ 7import utils._ 8import xiangshan.cache._ 9import chisel3.experimental.chiselName 10 11trait HasIFUConst extends HasXSParameter { 12 val resetVector = 0x80000000L//TODO: set reset vec 13 def align(pc: UInt, bytes: Int): UInt = Cat(pc(VAddrBits-1, log2Ceil(bytes)), 0.U(log2Ceil(bytes).W)) 14 val groupBytes = FetchWidth * 4 * 2 // correspond to cache line size 15 val groupOffsetBits = log2Ceil(groupBytes) 16 val nBanksInPacket = 2 17 val bankBytes = PredictWidth * 2 / nBanksInPacket 18 val nBanksInGroup = groupBytes / bankBytes 19 val bankWidth = PredictWidth / nBanksInPacket 20 val bankOffsetBits = log2Ceil(bankBytes) 21 // (0, nBanksInGroup-1) 22 def bankInGroup(pc: UInt) = pc(groupOffsetBits-1,bankOffsetBits) 23 def isInLastBank(pc: UInt) = bankInGroup(pc) === (nBanksInGroup-1).U 24 // (0, bankBytes/2-1) 25 def offsetInBank(pc: UInt) = pc(bankOffsetBits-1,1) 26 def bankAligned(pc: UInt) = align(pc, bankBytes) 27 def groupAligned(pc: UInt) = align(pc, groupBytes) 28 // each 1 bit in mask stands for 2 Bytes 29 // 8 bits, in which only the first 7 bits could be 0 30 def maskFirstHalf(pc: UInt): UInt = ((~(0.U(bankWidth.W))) >> offsetInBank(pc))(bankWidth-1,0) 31 def maskLastHalf(pc: UInt): UInt = Mux(isInLastBank(pc), 0.U(bankWidth.W), ~0.U(bankWidth.W)) 32 def mask(pc: UInt): UInt = Reverse(Cat(maskFirstHalf(pc), maskLastHalf(pc))) 33 def snpc(pc: UInt): UInt = bankAligned(pc) + Mux(isInLastBank(pc), bankBytes.U, (bankBytes*2).U) 34 35 val enableGhistRepair = true 36 val IFUDebug = true 37} 38 39class GlobalHistory extends XSBundle { 40 val predHist = UInt(HistoryLength.W) 41 // val sawNTBr = Bool() 42 // val takenOnBr = Bool() 43 // val saveHalfRVI = Bool() 44 // def shifted = takenOnBr || sawNTBr 45 // def newPtr(ptr: UInt = nowPtr): UInt = Mux(shifted, ptr - 1.U, ptr) 46 def update(sawNTBr: Bool, takenOnBr: Bool, hist: UInt = predHist): GlobalHistory = { 47 val g = Wire(new GlobalHistory) 48 val shifted = takenOnBr || sawNTBr 49 g.predHist := Mux(shifted, (hist << 1) | takenOnBr.asUInt, hist) 50 g 51 } 52 53 final def === (that: GlobalHistory): Bool = { 54 predHist === that.predHist 55 } 56 57 final def =/= (that: GlobalHistory): Bool = !(this === that) 58 59 implicit val name = "IFU" 60 def debug(where: String) = XSDebug(p"[${where}_GlobalHistory] hist=${Binary(predHist)}\n") 61 // override def toString(): String = "histPtr=%d, sawNTBr=%d, takenOnBr=%d, saveHalfRVI=%d".format(histPtr, sawNTBr, takenOnBr, saveHalfRVI) 62} 63 64 65class IFUIO extends XSBundle 66{ 67 // to ibuffer 68 val fetchPacket = DecoupledIO(new FetchPacket) 69 // from backend 70 val redirect = Flipped(ValidIO(UInt(VAddrBits.W))) 71 val cfiUpdateInfo = Flipped(ValidIO(new CfiUpdateInfo)) 72 // to icache 73 val icacheMemGrant = Flipped(DecoupledIO(new L1plusCacheResp)) 74 val fencei = Input(Bool()) 75 // from icache 76 val icacheMemAcq = DecoupledIO(new L1plusCacheReq) 77 val l1plusFlush = Output(Bool()) 78 // to tlb 79 val sfence = Input(new SfenceBundle) 80 val tlbCsr = Input(new TlbCsrBundle) 81 // from tlb 82 val ptw = new TlbPtwIO 83} 84 85class PrevHalfInstr extends XSBundle { 86 val taken = Bool() 87 val ghInfo = new GlobalHistory() 88 val fetchpc = UInt(VAddrBits.W) // only for debug 89 val idx = UInt(VAddrBits.W) // only for debug 90 val pc = UInt(VAddrBits.W) 91 val npc = UInt(VAddrBits.W) 92 val target = UInt(VAddrBits.W) 93 val instr = UInt(16.W) 94 val ipf = Bool() 95 val newPtr = UInt(log2Up(ExtHistoryLength).W) 96} 97 98@chiselName 99class IFU extends XSModule with HasIFUConst 100{ 101 val io = IO(new IFUIO) 102 val bpu = BPU(EnableBPU) 103 val icache = Module(new ICache) 104 105 val pd = Module(new PreDecode) 106 io.ptw <> TLB( 107 in = Seq(icache.io.tlb), 108 sfence = io.sfence, 109 csr = io.tlbCsr, 110 width = 1, 111 isDtlb = false, 112 shouldBlock = true 113 ) 114 115 val if2_redirect, if3_redirect, if4_redirect = WireInit(false.B) 116 val if1_flush, if2_flush, if3_flush, if4_flush = WireInit(false.B) 117 118 val icacheResp = icache.io.resp.bits 119 120 if4_flush := io.redirect.valid 121 if3_flush := if4_flush || if4_redirect 122 if2_flush := if3_flush || if3_redirect 123 if1_flush := if2_flush || if2_redirect 124 125 //********************** IF1 ****************************// 126 val if1_valid = !reset.asBool && GTimer() > 500.U 127 val if1_npc = WireInit(0.U(VAddrBits.W)) 128 val if2_ready = WireInit(false.B) 129 val if2_allReady = WireInit(if2_ready && icache.io.req.ready) 130 val if1_fire = if1_valid && (if2_allReady || if1_flush) 131 132 133 // val if2_newPtr, if3_newPtr, if4_newPtr = Wire(UInt(log2Up(ExtHistoryLength).W)) 134 135 val if1_gh, if2_gh, if3_gh, if4_gh = Wire(new GlobalHistory) 136 val if2_predicted_gh, if3_predicted_gh, if4_predicted_gh = Wire(new GlobalHistory) 137 val final_gh = RegInit(0.U.asTypeOf(new GlobalHistory)) 138 val final_gh_bypass = WireInit(0.U.asTypeOf(new GlobalHistory)) 139 val flush_final_gh = WireInit(false.B) 140 141 //********************** IF2 ****************************// 142 val if2_valid = RegInit(init = false.B) 143 val if3_ready = WireInit(false.B) 144 val if2_fire = if2_valid && if3_ready 145 val if2_pc = RegEnable(next = if1_npc, init = resetVector.U, enable = if1_fire) 146 val if2_snpc = snpc(if2_pc) 147 val if2_predHist = RegEnable(if1_gh.predHist, enable=if1_fire) 148 if2_ready := if3_ready || !if2_valid 149 when (if1_fire) { if2_valid := true.B } 150 .elsewhen (if2_flush) { if2_valid := false.B } 151 .elsewhen (if2_fire) { if2_valid := false.B } 152 153 val npcGen = new PriorityMuxGenerator[UInt] 154 npcGen.register(true.B, RegNext(if1_npc)) 155 npcGen.register(if2_fire, if2_snpc) 156 val if2_bp = bpu.io.out(0) 157 158 // if taken, bp_redirect should be true 159 // when taken on half RVI, we suppress this redirect signal 160 if2_redirect := if2_valid && if2_bp.taken 161 npcGen.register(if2_redirect, if2_bp.target) 162 163 if2_predicted_gh := if2_gh.update(if2_bp.hasNotTakenBrs, if2_bp.takenOnBr) 164 165 //********************** IF3 ****************************// 166 // if3 should wait for instructions resp to arrive 167 val if3_valid = RegInit(init = false.B) 168 val if4_ready = WireInit(false.B) 169 val if3_allValid = if3_valid && icache.io.resp.valid 170 val if3_fire = if3_allValid && if4_ready 171 val if3_pc = RegEnable(if2_pc, if2_fire) 172 val if3_predHist = RegEnable(if2_predHist, enable=if2_fire) 173 if3_ready := if4_ready && icache.io.resp.valid || !if3_valid 174 when (if3_flush) { 175 if3_valid := false.B 176 }.elsewhen (if2_fire && !if2_flush) { 177 if3_valid := true.B 178 }.elsewhen (if3_fire) { 179 if3_valid := false.B 180 } 181 182 val if3_bp = bpu.io.out(1) 183 if3_predicted_gh := if3_gh.update(if3_bp.hasNotTakenBrs, if3_bp.takenOnBr) 184 185 186 val prevHalfInstrReq = WireInit(0.U.asTypeOf(ValidUndirectioned(new PrevHalfInstr))) 187 // only valid when if4_fire 188 val hasPrevHalfInstrReq = prevHalfInstrReq.valid 189 190 val if3_prevHalfInstr = RegInit(0.U.asTypeOf(ValidUndirectioned(new PrevHalfInstr))) 191 192 // 32-bit instr crosses 2 pages, and the higher 16-bit triggers page fault 193 val crossPageIPF = WireInit(false.B) 194 195 val if3_pendingPrevHalfInstr = if3_prevHalfInstr.valid 196 197 // the previous half of RVI instruction waits until it meets its last half 198 val if3_prevHalfInstrMet = if3_pendingPrevHalfInstr && if3_prevHalfInstr.bits.npc === if3_pc && if3_valid 199 // set to invalid once consumed or redirect from backend 200 val if3_prevHalfConsumed = if3_prevHalfInstrMet && if3_fire 201 val if3_prevHalfFlush = if4_flush 202 when (hasPrevHalfInstrReq && !if3_prevHalfFlush) { 203 if3_prevHalfInstr.valid := true.B 204 }.elsewhen (if3_prevHalfConsumed || if3_prevHalfFlush) { 205 if3_prevHalfInstr.valid := false.B 206 } 207 when (hasPrevHalfInstrReq) { 208 if3_prevHalfInstr.bits := prevHalfInstrReq.bits 209 } 210 // when bp signal a redirect, we distinguish between taken and not taken 211 // if taken and saveHalfRVI is true, we do not redirect to the target 212 213 def if3_nextValidPCNotEquals(pc: UInt) = !if2_valid || if2_valid && if2_pc =/= pc 214 val if3_prevHalfMetRedirect = if3_pendingPrevHalfInstr && if3_prevHalfInstrMet && if3_prevHalfInstr.bits.taken && if3_nextValidPCNotEquals(if3_prevHalfInstr.bits.target) 215 val if3_prevHalfNotMetRedirect = if3_pendingPrevHalfInstr && !if3_prevHalfInstrMet && if3_nextValidPCNotEquals(if3_prevHalfInstr.bits.npc) 216 val if3_predTakenRedirect = !if3_pendingPrevHalfInstr && if3_bp.taken && if3_nextValidPCNotEquals(if3_bp.target) 217 val if3_predNotTakenRedirect = !if3_pendingPrevHalfInstr && !if3_bp.taken && if3_nextValidPCNotEquals(snpc(if3_pc)) 218 // when pendingPrevHalfInstr, if3_GHInfo is set to the info of last prev half instr 219 // val if3_ghInfoNotIdenticalRedirect = !if3_pendingPrevHalfInstr && if3_GHInfo =/= if3_lastGHInfo && enableGhistRepair.B 220 221 if3_redirect := if3_valid && ( 222 // prevHalf is consumed but the next packet is not where it meant to be 223 // we do not handle this condition because of the burden of building a correct GHInfo 224 // prevHalfMetRedirect || 225 // prevHalf does not match if3_pc and the next fetch packet is not snpc 226 if3_prevHalfNotMetRedirect || 227 // pred taken and next fetch packet is not the predicted target 228 if3_predTakenRedirect || 229 // pred not taken and next fetch packet is not snpc 230 if3_predNotTakenRedirect 231 // GHInfo from last pred does not corresponds with this packet 232 // if3_ghInfoNotIdenticalRedirect 233 ) 234 235 val if3_target = WireInit(snpc(if3_pc)) 236 237 /* when (prevHalfMetRedirect) { 238 if1_npc := if3_prevHalfInstr.target 239 }.else */ 240 when (if3_prevHalfNotMetRedirect) { 241 if3_target := if3_prevHalfInstr.bits.npc 242 }.elsewhen (if3_predTakenRedirect) { 243 if3_target := if3_bp.target 244 }.elsewhen (if3_predNotTakenRedirect) { 245 if3_target := snpc(if3_pc) 246 } 247 // }.elsewhen (if3_ghInfoNotIdenticalRedirect) { 248 // if3_target := Mux(if3_bp.taken, if3_bp.target, snpc(if3_pc)) 249 // } 250 npcGen.register(if3_redirect, if3_target) 251 252 // when (if3_redirect) { 253 // if1_npc := if3_target 254 // } 255 256 //********************** IF4 ****************************// 257 val if4_pd = RegEnable(pd.io.out, if3_fire) 258 val if4_ipf = RegEnable(icacheResp.ipf || if3_prevHalfInstrMet && if3_prevHalfInstr.bits.ipf, if3_fire) 259 val if4_acf = RegEnable(icacheResp.acf, if3_fire) 260 val if4_crossPageIPF = RegEnable(crossPageIPF, if3_fire) 261 val if4_valid = RegInit(false.B) 262 val if4_fire = if4_valid && io.fetchPacket.ready 263 val if4_pc = RegEnable(if3_pc, if3_fire) 264 // This is the real mask given from icache 265 val if4_mask = RegEnable(icacheResp.mask, if3_fire) 266 val if4_snpc = snpc(if4_pc) 267 268 269 val if4_predHist = RegEnable(if3_predHist, enable=if3_fire) 270 // wait until prevHalfInstr written into reg 271 if4_ready := (io.fetchPacket.ready && !hasPrevHalfInstrReq || !if4_valid) && GTimer() > 500.U 272 when (if4_flush) { 273 if4_valid := false.B 274 }.elsewhen (if3_fire && !if3_flush) { 275 if4_valid := Mux(if3_pendingPrevHalfInstr, if3_prevHalfInstrMet, true.B) 276 }.elsewhen (if4_fire) { 277 if4_valid := false.B 278 } 279 280 val if4_bp = Wire(new BranchPrediction) 281 if4_bp := bpu.io.out(2) 282 if4_bp.takens := bpu.io.out(2).takens & if4_mask 283 if4_bp.brMask := bpu.io.out(2).brMask & if4_mask 284 if4_bp.jalMask := bpu.io.out(2).jalMask & if4_mask 285 286 if4_predicted_gh := if4_gh.update(if4_bp.hasNotTakenBrs, if4_bp.takenOnBr) 287 288 def cal_jal_tgt(inst: UInt, rvc: Bool): UInt = { 289 Mux(rvc, 290 SignExt(Cat(inst(12), inst(8), inst(10, 9), inst(6), inst(7), inst(2), inst(11), inst(5, 3), 0.U(1.W)), XLEN), 291 SignExt(Cat(inst(31), inst(19, 12), inst(20), inst(30, 21), 0.U(1.W)), XLEN) 292 ) 293 } 294 val if4_instrs = if4_pd.instrs 295 val if4_jals = if4_bp.jalMask 296 val if4_jal_tgts = VecInit((0 until PredictWidth).map(i => if4_pd.pc(i) + cal_jal_tgt(if4_instrs(i), if4_pd.pd(i).isRVC))) 297 298 (0 until PredictWidth).foreach {i => 299 when (if4_jals(i)) { 300 if4_bp.targets(i) := if4_jal_tgts(i) 301 } 302 } 303 304 // we need this to tell BPU the prediction of prev half 305 // because the prediction is with the start of each inst 306 val if4_prevHalfInstr = RegInit(0.U.asTypeOf(ValidUndirectioned(new PrevHalfInstr))) 307 val if4_pendingPrevHalfInstr = if4_prevHalfInstr.valid 308 val if4_prevHalfInstrMet = if4_pendingPrevHalfInstr && if4_prevHalfInstr.bits.npc === if4_pc && if4_valid 309 val if4_prevHalfConsumed = if4_prevHalfInstrMet && if4_fire 310 val if4_prevHalfFlush = if4_flush 311 312 val if4_takenPrevHalf = WireInit(if4_prevHalfInstrMet && if4_prevHalfInstr.bits.taken) 313 when (if3_prevHalfConsumed) { 314 if4_prevHalfInstr.valid := if3_prevHalfInstr.valid 315 }.elsewhen (if4_prevHalfConsumed || if4_prevHalfFlush) { 316 if4_prevHalfInstr.valid := false.B 317 } 318 319 when (if3_prevHalfConsumed) { 320 if4_prevHalfInstr.bits := if3_prevHalfInstr.bits 321 } 322 323 prevHalfInstrReq.valid := if4_fire && if4_bp.saveHalfRVI 324 val idx = if4_bp.lastHalfRVIIdx 325 326 // this is result of the last half RVI 327 prevHalfInstrReq.bits.taken := if4_bp.lastHalfRVITaken 328 prevHalfInstrReq.bits.ghInfo := if4_gh 329 prevHalfInstrReq.bits.newPtr := DontCare 330 prevHalfInstrReq.bits.fetchpc := if4_pc 331 prevHalfInstrReq.bits.idx := idx 332 prevHalfInstrReq.bits.pc := if4_pd.pc(idx) 333 prevHalfInstrReq.bits.npc := if4_pd.pc(idx) + 2.U 334 prevHalfInstrReq.bits.target := if4_bp.lastHalfRVITarget 335 prevHalfInstrReq.bits.instr := if4_pd.instrs(idx)(15, 0) 336 prevHalfInstrReq.bits.ipf := if4_ipf 337 338 def if4_nextValidPCNotEquals(pc: UInt) = if3_valid && if3_pc =/= pc || 339 !if3_valid && (if2_valid && if2_pc =/= pc) || 340 !if3_valid && !if2_valid 341 342 val if4_prevHalfNextNotMet = hasPrevHalfInstrReq && if4_nextValidPCNotEquals(prevHalfInstrReq.bits.pc+2.U) 343 val if4_predTakenRedirect = !hasPrevHalfInstrReq && if4_bp.taken && if4_nextValidPCNotEquals(if4_bp.target) 344 val if4_predNotTakenRedirect = !hasPrevHalfInstrReq && !if4_bp.taken && if4_nextValidPCNotEquals(if4_snpc) 345 // val if4_ghInfoNotIdenticalRedirect = if4_GHInfo =/= if4_lastGHInfo && enableGhistRepair.B 346 347 if4_redirect := if4_valid && ( 348 // when if4 has a lastHalfRVI, but the next fetch packet is not snpc 349 // if4_prevHalfNextNotMet || 350 // when if4 preds taken, but the pc of next fetch packet is not the target 351 if4_predTakenRedirect || 352 // when if4 preds not taken, but the pc of next fetch packet is not snpc 353 if4_predNotTakenRedirect 354 // GHInfo from last pred does not corresponds with this packet 355 // if4_ghInfoNotIdenticalRedirect 356 ) 357 358 val if4_target = WireInit(if4_snpc) 359 360 // when (if4_prevHalfNextNotMet) { 361 // if4_target := prevHalfInstrReq.pc+2.U 362 // }.else 363 when (if4_predTakenRedirect) { 364 if4_target := if4_bp.target 365 }.elsewhen (if4_predNotTakenRedirect) { 366 if4_target := if4_snpc 367 } 368 // }.elsewhen (if4_ghInfoNotIdenticalRedirect) { 369 // if4_target := Mux(if4_bp.taken, if4_bp.target, if4_snpc) 370 // } 371 npcGen.register(if4_redirect, if4_target) 372 373 when (if4_fire) { 374 final_gh := if4_predicted_gh 375 } 376 if4_gh := Mux(flush_final_gh, final_gh_bypass, final_gh) 377 if3_gh := Mux(if4_valid && !if4_flush, if4_predicted_gh, if4_gh) 378 if2_gh := Mux(if3_valid && !if3_flush, if3_predicted_gh, if3_gh) 379 if1_gh := Mux(if2_valid && !if2_flush, if2_predicted_gh, if2_gh) 380 381 382 383 384 val cfiUpdate = io.cfiUpdateInfo 385 when (cfiUpdate.valid && (cfiUpdate.bits.isMisPred || cfiUpdate.bits.isReplay)) { 386 val b = cfiUpdate.bits 387 val oldGh = b.bpuMeta.hist 388 val sawNTBr = b.bpuMeta.sawNotTakenBranch 389 val isBr = b.pd.isBr 390 val taken = Mux(cfiUpdate.bits.isReplay, b.bpuMeta.predTaken, b.taken) 391 val updatedGh = oldGh.update(sawNTBr, isBr && taken) 392 final_gh := updatedGh 393 final_gh_bypass := updatedGh 394 flush_final_gh := true.B 395 } 396 397 npcGen.register(io.redirect.valid, io.redirect.bits) 398 npcGen.register(RegNext(reset.asBool) && !reset.asBool, resetVector.U(VAddrBits.W)) 399 400 if1_npc := npcGen() 401 402 403 icache.io.req.valid := if1_valid && (if2_ready || if1_flush) 404 icache.io.resp.ready := if4_ready 405 icache.io.req.bits.addr := if1_npc 406 icache.io.req.bits.mask := mask(if1_npc) 407 icache.io.flush := Cat(if3_flush, if2_flush) 408 icache.io.mem_grant <> io.icacheMemGrant 409 icache.io.fencei := io.fencei 410 io.icacheMemAcq <> icache.io.mem_acquire 411 io.l1plusFlush := icache.io.l1plusflush 412 413 bpu.io.cfiUpdateInfo <> io.cfiUpdateInfo 414 415 // bpu.io.flush := Cat(if4_flush, if3_flush, if2_flush) 416 bpu.io.flush := VecInit(if2_flush, if3_flush, if4_flush) 417 bpu.io.inFire(0) := if1_fire 418 bpu.io.inFire(1) := if2_fire 419 bpu.io.inFire(2) := if3_fire 420 bpu.io.inFire(3) := if4_fire 421 bpu.io.in.pc := if1_npc 422 bpu.io.in.hist := if1_gh.asUInt 423 // bpu.io.in.histPtr := ptr 424 bpu.io.in.inMask := mask(if1_npc) 425 bpu.io.predecode.mask := if4_pd.mask 426 bpu.io.predecode.lastHalf := if4_pd.lastHalf 427 bpu.io.predecode.pd := if4_pd.pd 428 bpu.io.predecode.hasLastHalfRVI := if4_prevHalfInstrMet 429 bpu.io.realMask := if4_mask 430 bpu.io.prevHalf := if4_prevHalfInstr 431 432 pd.io.in := icacheResp 433 434 pd.io.prev.valid := if3_prevHalfInstrMet 435 pd.io.prev.bits := if3_prevHalfInstr.bits.instr 436 // if a fetch packet triggers page fault, set the pf instruction to nop 437 when (!if3_prevHalfInstrMet && icacheResp.ipf) { 438 val instrs = Wire(Vec(FetchWidth, UInt(32.W))) 439 (0 until FetchWidth).foreach(i => instrs(i) := ZeroExt("b0010011".U, 32)) // nop 440 pd.io.in.data := instrs.asUInt 441 }.elsewhen (if3_prevHalfInstrMet && (if3_prevHalfInstr.bits.ipf || icacheResp.ipf)) { 442 pd.io.prev.bits := ZeroExt("b0010011".U, 16) 443 val instrs = Wire(Vec(FetchWidth, UInt(32.W))) 444 (0 until FetchWidth).foreach(i => instrs(i) := Cat(ZeroExt("b0010011".U, 16), Fill(16, 0.U(1.W)))) 445 pd.io.in.data := instrs.asUInt 446 447 when (icacheResp.ipf && !if3_prevHalfInstr.bits.ipf) { crossPageIPF := true.B } // higher 16 bits page fault 448 } 449 450 val fetchPacketValid = if4_valid && !io.redirect.valid 451 val fetchPacketWire = Wire(new FetchPacket) 452 453 // io.fetchPacket.valid := if4_valid && !io.redirect.valid 454 fetchPacketWire.instrs := if4_pd.instrs 455 fetchPacketWire.mask := if4_pd.mask & (Fill(PredictWidth, !if4_bp.taken) | (Fill(PredictWidth, 1.U(1.W)) >> (~if4_bp.jmpIdx))) 456 fetchPacketWire.pdmask := if4_pd.mask 457 458 fetchPacketWire.pc := if4_pd.pc 459 (0 until PredictWidth).foreach(i => fetchPacketWire.pnpc(i) := if4_pd.pc(i) + Mux(if4_pd.pd(i).isRVC, 2.U, 4.U)) 460 when (if4_bp.taken) { 461 fetchPacketWire.pnpc(if4_bp.jmpIdx) := if4_bp.target 462 } 463 fetchPacketWire.bpuMeta := bpu.io.bpuMeta 464 (0 until PredictWidth).foreach(i => { 465 val meta = fetchPacketWire.bpuMeta(i) 466 meta.hist := final_gh 467 meta.predHist := if4_predHist.asTypeOf(new GlobalHistory) 468 meta.predTaken := if4_bp.takens(i) 469 }) 470 fetchPacketWire.pd := if4_pd.pd 471 fetchPacketWire.ipf := if4_ipf 472 fetchPacketWire.acf := if4_acf 473 fetchPacketWire.crossPageIPFFix := if4_crossPageIPF 474 475 // predTaken Vec 476 fetchPacketWire.predTaken := if4_bp.taken 477 478 io.fetchPacket.bits := fetchPacketWire 479 io.fetchPacket.valid := fetchPacketValid 480 481 // debug info 482 if (IFUDebug) { 483 XSDebug(RegNext(reset.asBool) && !reset.asBool, "Reseting...\n") 484 XSDebug(icache.io.flush(0).asBool, "Flush icache stage2...\n") 485 XSDebug(icache.io.flush(1).asBool, "Flush icache stage3...\n") 486 XSDebug(io.redirect.valid, p"Redirect from backend! target=${Hexadecimal(io.redirect.bits)}\n") 487 488 XSDebug("[IF1] v=%d fire=%d flush=%d pc=%x mask=%b\n", if1_valid, if1_fire, if1_flush, if1_npc, mask(if1_npc)) 489 XSDebug("[IF2] v=%d r=%d fire=%d redirect=%d flush=%d pc=%x snpc=%x\n", if2_valid, if2_ready, if2_fire, if2_redirect, if2_flush, if2_pc, if2_snpc) 490 XSDebug("[IF3] v=%d r=%d fire=%d redirect=%d flush=%d pc=%x crossPageIPF=%d sawNTBrs=%d\n", if3_valid, if3_ready, if3_fire, if3_redirect, if3_flush, if3_pc, crossPageIPF, if3_bp.hasNotTakenBrs) 491 XSDebug("[IF4] v=%d r=%d fire=%d redirect=%d flush=%d pc=%x crossPageIPF=%d sawNTBrs=%d\n", if4_valid, if4_ready, if4_fire, if4_redirect, if4_flush, if4_pc, if4_crossPageIPF, if4_bp.hasNotTakenBrs) 492 XSDebug("[IF1][icacheReq] v=%d r=%d addr=%x\n", icache.io.req.valid, icache.io.req.ready, icache.io.req.bits.addr) 493 XSDebug("[IF1][ghr] hist=%b\n", if1_gh.asUInt) 494 XSDebug("[IF1][ghr] extHist=%b\n\n", if1_gh.asUInt) 495 496 XSDebug("[IF2][bp] taken=%d jmpIdx=%d hasNTBrs=%d target=%x saveHalfRVI=%d\n\n", if2_bp.taken, if2_bp.jmpIdx, if2_bp.hasNotTakenBrs, if2_bp.target, if2_bp.saveHalfRVI) 497 if2_gh.debug("if2") 498 499 XSDebug("[IF3][icacheResp] v=%d r=%d pc=%x mask=%b\n", icache.io.resp.valid, icache.io.resp.ready, icache.io.resp.bits.pc, icache.io.resp.bits.mask) 500 XSDebug("[IF3][bp] taken=%d jmpIdx=%d hasNTBrs=%d target=%x saveHalfRVI=%d\n", if3_bp.taken, if3_bp.jmpIdx, if3_bp.hasNotTakenBrs, if3_bp.target, if3_bp.saveHalfRVI) 501 XSDebug("[IF3][redirect]: v=%d, prevMet=%d, prevNMet=%d, predT=%d, predNT=%d\n", if3_redirect, if3_prevHalfMetRedirect, if3_prevHalfNotMetRedirect, if3_predTakenRedirect, if3_predNotTakenRedirect) 502 // XSDebug("[IF3][prevHalfInstr] v=%d redirect=%d fetchpc=%x idx=%d tgt=%x taken=%d instr=%x\n\n", 503 // prev_half_valid, prev_half_redirect, prev_half_fetchpc, prev_half_idx, prev_half_tgt, prev_half_taken, prev_half_instr) 504 XSDebug("[IF3][if3_prevHalfInstr] v=%d taken=%d fetchpc=%x idx=%d pc=%x npc=%x tgt=%x instr=%x ipf=%d\n\n", 505 if3_prevHalfInstr.valid, if3_prevHalfInstr.bits.taken, if3_prevHalfInstr.bits.fetchpc, if3_prevHalfInstr.bits.idx, if3_prevHalfInstr.bits.pc, if3_prevHalfInstr.bits.npc, if3_prevHalfInstr.bits.target, if3_prevHalfInstr.bits.instr, if3_prevHalfInstr.bits.ipf) 506 if3_gh.debug("if3") 507 508 XSDebug("[IF4][predecode] mask=%b\n", if4_pd.mask) 509 XSDebug("[IF4][snpc]: %x, realMask=%b\n", if4_snpc, if4_mask) 510 XSDebug("[IF4][bp] taken=%d jmpIdx=%d hasNTBrs=%d target=%x saveHalfRVI=%d\n", if4_bp.taken, if4_bp.jmpIdx, if4_bp.hasNotTakenBrs, if4_bp.target, if4_bp.saveHalfRVI) 511 XSDebug("[IF4][redirect]: v=%d, prevNotMet=%d, predT=%d, predNT=%d\n", if4_redirect, if4_prevHalfNextNotMet, if4_predTakenRedirect, if4_predNotTakenRedirect) 512 XSDebug(if4_pd.pd(if4_bp.jmpIdx).isJal && if4_bp.taken, "[IF4] cfi is jal! instr=%x target=%x\n", if4_instrs(if4_bp.jmpIdx), if4_jal_tgts(if4_bp.jmpIdx)) 513 XSDebug("[IF4][ prevHalfInstrReq] v=%d taken=%d fetchpc=%x idx=%d pc=%x npc=%x tgt=%x instr=%x ipf=%d\n", 514 prevHalfInstrReq.valid, prevHalfInstrReq.bits.taken, prevHalfInstrReq.bits.fetchpc, prevHalfInstrReq.bits.idx, prevHalfInstrReq.bits.pc, prevHalfInstrReq.bits.npc, prevHalfInstrReq.bits.target, prevHalfInstrReq.bits.instr, prevHalfInstrReq.bits.ipf) 515 XSDebug("[IF4][if4_prevHalfInstr] v=%d taken=%d fetchpc=%x idx=%d pc=%x npc=%x tgt=%x instr=%x ipf=%d\n", 516 if4_prevHalfInstr.valid, if4_prevHalfInstr.bits.taken, if4_prevHalfInstr.bits.fetchpc, if4_prevHalfInstr.bits.idx, if4_prevHalfInstr.bits.pc, if4_prevHalfInstr.bits.npc, if4_prevHalfInstr.bits.target, if4_prevHalfInstr.bits.instr, if4_prevHalfInstr.bits.ipf) 517 if4_gh.debug("if4") 518 XSDebug(io.fetchPacket.fire(), "[IF4][fetchPacket] v=%d r=%d mask=%b ipf=%d acf=%d crossPageIPF=%d\n", 519 io.fetchPacket.valid, io.fetchPacket.ready, io.fetchPacket.bits.mask, io.fetchPacket.bits.ipf, io.fetchPacket.bits.acf, io.fetchPacket.bits.crossPageIPFFix) 520 for (i <- 0 until PredictWidth) { 521 XSDebug(io.fetchPacket.fire(), "[IF4][fetchPacket] %b %x pc=%x pnpc=%x pd: rvc=%d brType=%b call=%d ret=%d\n", 522 io.fetchPacket.bits.mask(i), 523 io.fetchPacket.bits.instrs(i), 524 io.fetchPacket.bits.pc(i), 525 io.fetchPacket.bits.pnpc(i), 526 io.fetchPacket.bits.pd(i).isRVC, 527 io.fetchPacket.bits.pd(i).brType, 528 io.fetchPacket.bits.pd(i).isCall, 529 io.fetchPacket.bits.pd(i).isRet 530 ) 531 } 532 } 533}