1package xiangshan 2 3import chisel3._ 4import chisel3.util._ 5import bus.simplebus._ 6import xiangshan.backend.brq.BrqPtr 7import xiangshan.backend.rename.FreeListPtr 8import xiangshan.frontend.PreDecodeInfo 9import xiangshan.frontend.HasBPUParameter 10 11// Fetch FetchWidth x 32-bit insts from Icache 12class FetchPacket extends XSBundle { 13 val instrs = Vec(PredictWidth, UInt(32.W)) 14 val mask = UInt(PredictWidth.W) 15 // val pc = UInt(VAddrBits.W) 16 val pc = Vec(PredictWidth, UInt(VAddrBits.W)) 17 val pnpc = Vec(PredictWidth, UInt(VAddrBits.W)) 18 val brInfo = Vec(PredictWidth, new BranchInfo) 19 val pd = Vec(PredictWidth, new PreDecodeInfo) 20} 21 22class ValidUndirectioned[T <: Data](gen: T) extends Bundle { 23 val valid = Bool() 24 val bits = gen.cloneType.asInstanceOf[T] 25 override def cloneType = new ValidUndirectioned(gen).asInstanceOf[this.type] 26} 27 28object ValidUndirectioned { 29 def apply[T <: Data](gen: T) = { 30 new ValidUndirectioned[T](gen) 31 } 32} 33 34class TageMeta extends XSBundle { 35 def TageNTables = 6 36 val provider = ValidUndirectioned(UInt(log2Ceil(TageNTables).W)) 37 val altDiffers = Bool() 38 val providerU = UInt(2.W) 39 val providerCtr = UInt(3.W) 40 val allocate = ValidUndirectioned(UInt(log2Ceil(TageNTables).W)) 41} 42 43class BranchPrediction extends XSBundle { 44 val redirect = Bool() 45 val taken = Bool() 46 val jmpIdx = UInt(log2Up(PredictWidth).W) 47 val hasNotTakenBrs = Bool() 48 val target = UInt(VAddrBits.W) 49 val saveHalfRVI = Bool() 50} 51 52class BranchInfo extends XSBundle with HasBPUParameter { 53 val ubtbWriteWay = UInt(log2Up(UBtbWays).W) 54 val ubtbHits = Bool() 55 val btbWriteWay = UInt(log2Up(BtbWays).W) 56 val btbHitJal = Bool() 57 val bimCtr = UInt(2.W) 58 val histPtr = UInt(log2Up(ExtHistoryLength).W) 59 val tageMeta = new TageMeta 60 val rasSp = UInt(log2Up(RasSize).W) 61 val rasTopCtr = UInt(8.W) 62 val fetchIdx = UInt(log2Up(PredictWidth).W) 63 64 val debug_ubtb_cycle = if (BPUDebug) UInt(64.W) else UInt(0.W) 65 val debug_btb_cycle = if (BPUDebug) UInt(64.W) else UInt(0.W) 66 val debug_tage_cycle = if (BPUDebug) UInt(64.W) else UInt(0.W) 67 68 def apply(histPtr: UInt, tageMeta: TageMeta, rasSp: UInt, rasTopCtr: UInt) = { 69 this.histPtr := histPtr 70 this.tageMeta := tageMeta 71 this.rasSp := rasSp 72 this.rasTopCtr := rasTopCtr 73 this.asUInt 74 } 75 def size = 0.U.asTypeOf(this).getWidth 76 def fromUInt(x: UInt) = x.asTypeOf(this) 77} 78 79class Predecode extends XSBundle { 80 val isFetchpcEqualFirstpc = Bool() 81 val mask = UInt((FetchWidth*2).W) 82 val pd = Vec(FetchWidth*2, (new PreDecodeInfo)) 83} 84 85class BranchUpdateInfo extends XSBundle { 86 // from backend 87 val pc = UInt(VAddrBits.W) 88 val pnpc = UInt(VAddrBits.W) 89 val target = UInt(VAddrBits.W) 90 val brTarget = UInt(VAddrBits.W) 91 val taken = Bool() 92 val fetchIdx = UInt(log2Up(FetchWidth*2).W) 93 val isMisPred = Bool() 94 95 // frontend -> backend -> frontend 96 val pd = new PreDecodeInfo 97 val brInfo = new BranchInfo 98} 99 100// Dequeue DecodeWidth insts from Ibuffer 101class CtrlFlow extends XSBundle { 102 val instr = UInt(32.W) 103 val pc = UInt(VAddrBits.W) 104 val exceptionVec = Vec(16, Bool()) 105 val intrVec = Vec(12, Bool()) 106 val brUpdate = new BranchUpdateInfo 107 val crossPageIPFFix = Bool() 108} 109 110// Decode DecodeWidth insts at Decode Stage 111class CtrlSignals extends XSBundle { 112 val src1Type, src2Type, src3Type = SrcType() 113 val lsrc1, lsrc2, lsrc3 = UInt(5.W) 114 val ldest = UInt(5.W) 115 val fuType = FuType() 116 val fuOpType = FuOpType() 117 val rfWen = Bool() 118 val fpWen = Bool() 119 val isXSTrap = Bool() 120 val noSpecExec = Bool() // This inst can not be speculated 121 val isBlocked = Bool() // This inst requires pipeline to be blocked 122 val isRVF = Bool() 123 val imm = UInt(XLEN.W) 124} 125 126class CfCtrl extends XSBundle { 127 val cf = new CtrlFlow 128 val ctrl = new CtrlSignals 129 val brTag = new BrqPtr 130} 131 132trait HasRoqIdx { this: HasXSParameter => 133 val roqIdx = UInt(RoqIdxWidth.W) 134 def needFlush(redirect: Valid[Redirect]): Bool = { 135 redirect.valid && Mux( 136 this.roqIdx.head(1) === redirect.bits.roqIdx.head(1), 137 this.roqIdx.tail(1) > redirect.bits.roqIdx.tail(1), 138 this.roqIdx.tail(1) < redirect.bits.roqIdx.tail(1) 139 ) 140 } 141} 142 143// CfCtrl -> MicroOp at Rename Stage 144class MicroOp extends CfCtrl with HasRoqIdx { 145 val psrc1, psrc2, psrc3, pdest, old_pdest = UInt(PhyRegIdxWidth.W) 146 val src1State, src2State, src3State = SrcState() 147} 148 149class Redirect extends XSBundle with HasRoqIdx { 150 val isException = Bool() 151 val isMisPred = Bool() 152 val isReplay = Bool() 153 val pc = UInt(VAddrBits.W) 154 val target = UInt(VAddrBits.W) 155 val brTag = new BrqPtr 156} 157 158class Dp1ToDp2IO extends XSBundle { 159 val intDqToDp2 = Vec(IntDqDeqWidth, DecoupledIO(new MicroOp)) 160 val fpDqToDp2 = Vec(FpDqDeqWidth, DecoupledIO(new MicroOp)) 161 val lsDqToDp2 = Vec(LsDqDeqWidth, DecoupledIO(new MicroOp)) 162} 163 164class DebugBundle extends XSBundle{ 165 val isMMIO = Bool() 166} 167 168class ExuInput extends XSBundle { 169 val uop = new MicroOp 170 val src1, src2, src3 = UInt(XLEN.W) 171} 172 173class ExuOutput extends XSBundle { 174 val uop = new MicroOp 175 val data = UInt(XLEN.W) 176 val redirectValid = Bool() 177 val redirect = new Redirect 178 val brUpdate = new BranchUpdateInfo 179 val debug = new DebugBundle 180} 181 182class ExuIO extends XSBundle { 183 val in = Flipped(DecoupledIO(new ExuInput)) 184 val redirect = Flipped(ValidIO(new Redirect)) 185 val out = DecoupledIO(new ExuOutput) 186 // for csr 187 val exception = Flipped(ValidIO(new MicroOp)) 188 // for Lsu 189 val dmem = new SimpleBusUC 190 val scommit = Input(UInt(3.W)) 191} 192 193class RoqCommit extends XSBundle { 194 val uop = new MicroOp 195 val isWalk = Bool() 196} 197 198class FrontendToBackendIO extends XSBundle { 199 // to backend end 200 val cfVec = Vec(DecodeWidth, DecoupledIO(new CtrlFlow)) 201 // from backend 202 val redirect = Flipped(ValidIO(new Redirect)) 203 val outOfOrderBrInfo = Flipped(ValidIO(new BranchUpdateInfo)) 204 val inOrderBrInfo = Flipped(ValidIO(new BranchUpdateInfo)) 205} 206