2014-03-25 13:22:04 +01:00
|
|
|
package rocket
|
|
|
|
|
|
|
|
import Chisel._
|
|
|
|
import Util._
|
|
|
|
import Node._
|
2014-08-08 21:23:02 +02:00
|
|
|
import uncore._
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
case object Entries extends Field[Int]
|
|
|
|
case object NRAS extends Field[Int]
|
|
|
|
case object MatchBits extends Field[Int]
|
|
|
|
case object Pages0 extends Field[Int]
|
|
|
|
case object Pages extends Field[Int]
|
|
|
|
case object OpaqueBits extends Field[Int]
|
|
|
|
case object NBHT extends Field[Int]
|
2014-04-08 00:58:49 +02:00
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
class RAS(nras: Int) {
|
2014-04-08 00:58:49 +02:00
|
|
|
def push(addr: UInt): Unit = {
|
2014-08-08 21:23:02 +02:00
|
|
|
when (count < nras) { count := count + 1 }
|
|
|
|
val nextPos = Mux(Bool(isPow2(nras)) || pos > 0, pos+1, UInt(0))
|
2014-04-08 00:58:49 +02:00
|
|
|
stack(nextPos) := addr
|
|
|
|
pos := nextPos
|
|
|
|
}
|
|
|
|
def peek: UInt = stack(pos)
|
|
|
|
def pop: Unit = when (!isEmpty) {
|
|
|
|
count := count - 1
|
2014-08-08 21:23:02 +02:00
|
|
|
pos := Mux(Bool(isPow2(nras)) || pos > 0, pos-1, UInt(nras-1))
|
2014-04-08 00:58:49 +02:00
|
|
|
}
|
|
|
|
def clear: Unit = count := UInt(0)
|
|
|
|
def isEmpty: Bool = count === UInt(0)
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
private val count = Reg(init=UInt(0,log2Up(nras+1)))
|
|
|
|
private val pos = Reg(init=UInt(0,log2Up(nras)))
|
|
|
|
private val stack = Vec.fill(nras){Reg(UInt())}
|
2014-04-08 00:58:49 +02:00
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
class BHTResp extends Bundle {
|
|
|
|
val index = UInt(width = log2Up(params(NBHT)).max(1))
|
2014-04-08 00:58:49 +02:00
|
|
|
val value = UInt(width = 2)
|
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
class BHT(nbht: Int) {
|
|
|
|
val nbhtbits = log2Up(nbht)
|
2014-04-08 00:58:49 +02:00
|
|
|
def get(addr: UInt): BHTResp = {
|
|
|
|
val res = new BHTResp
|
2014-08-08 21:23:02 +02:00
|
|
|
res.index := addr(nbhtbits+1,2) ^ history
|
2014-04-08 00:58:49 +02:00
|
|
|
res.value := table(res.index)
|
|
|
|
res
|
|
|
|
}
|
|
|
|
def update(d: BHTResp, taken: Bool): Unit = {
|
|
|
|
table(d.index) := Cat(taken, (d.value(1) & d.value(0)) | ((d.value(1) | d.value(0)) & taken))
|
2014-08-08 21:23:02 +02:00
|
|
|
history := Cat(taken, history(nbhtbits-1,1))
|
2014-04-08 00:58:49 +02:00
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
private val table = Mem(UInt(width = 2), nbht)
|
|
|
|
val history = Reg(UInt(width = nbhtbits))
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
class BTBUpdate extends Bundle {
|
2014-04-02 00:01:27 +02:00
|
|
|
val prediction = Valid(new BTBResp)
|
2014-08-08 21:23:02 +02:00
|
|
|
val pc = UInt(width = params(VAddrBits))
|
|
|
|
val target = UInt(width = params(VAddrBits))
|
|
|
|
val returnAddr = UInt(width = params(VAddrBits))
|
2014-04-02 00:01:27 +02:00
|
|
|
val taken = Bool()
|
2014-04-08 00:58:49 +02:00
|
|
|
val isJump = Bool()
|
2014-04-02 00:01:27 +02:00
|
|
|
val isCall = Bool()
|
|
|
|
val isReturn = Bool()
|
|
|
|
val incorrectTarget = Bool()
|
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
class BTBResp extends Bundle {
|
2014-04-02 00:01:27 +02:00
|
|
|
val taken = Bool()
|
2014-08-08 21:23:02 +02:00
|
|
|
val target = UInt(width = params(VAddrBits))
|
|
|
|
val entry = UInt(width = params(OpaqueBits))
|
2014-04-08 00:58:49 +02:00
|
|
|
val bht = new BHTResp
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
|
2014-03-25 13:22:04 +01:00
|
|
|
// fully-associative branch target buffer
|
2014-08-08 21:23:02 +02:00
|
|
|
class BTB extends Module {
|
2014-03-25 13:22:04 +01:00
|
|
|
val io = new Bundle {
|
2014-08-08 21:23:02 +02:00
|
|
|
val req = UInt(INPUT, params(VAddrBits))
|
2014-04-02 00:01:27 +02:00
|
|
|
val resp = Valid(new BTBResp)
|
|
|
|
val update = Valid(new BTBUpdate).flip
|
|
|
|
val invalidate = Bool(INPUT)
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
val idxValid = Reg(init=UInt(0, params(Entries)))
|
|
|
|
val idxs = Mem(UInt(width=params(MatchBits)), params(Entries))
|
|
|
|
val idxPages = Mem(UInt(width=log2Up(params(Pages))), params(Entries))
|
|
|
|
val tgts = Mem(UInt(width=params(MatchBits)), params(Entries))
|
|
|
|
val tgtPages = Mem(UInt(width=log2Up(params(Pages))), params(Entries))
|
|
|
|
val pages = Mem(UInt(width=params(VAddrBits)-params(MatchBits)), params(Pages))
|
|
|
|
val pageValid = Reg(init=UInt(0, params(Pages)))
|
|
|
|
val idxPagesOH = idxPages.map(UIntToOH(_)(params(Pages)-1,0))
|
|
|
|
val tgtPagesOH = tgtPages.map(UIntToOH(_)(params(Pages)-1,0))
|
2014-04-02 00:01:27 +02:00
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
val useRAS = Reg(UInt(width = params(Entries)))
|
|
|
|
val isJump = Reg(UInt(width = params(Entries)))
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
private def page(addr: UInt) = addr >> params(MatchBits)
|
2014-03-25 13:22:04 +01:00
|
|
|
private def pageMatch(addr: UInt) = {
|
|
|
|
val p = page(addr)
|
2014-05-19 04:25:43 +02:00
|
|
|
Vec(pages.map(_ === p)).toBits & pageValid
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
private def tagMatch(addr: UInt, pgMatch: UInt): UInt = {
|
2014-08-08 21:23:02 +02:00
|
|
|
val idx = addr(params(MatchBits)-1,0)
|
2014-03-25 13:22:04 +01:00
|
|
|
val idxMatch = idxs.map(_ === idx).toBits
|
|
|
|
val idxPageMatch = idxPagesOH.map(_ & pgMatch).map(_.orR).toBits
|
2014-05-19 04:25:43 +02:00
|
|
|
idxValid & idxMatch & idxPageMatch
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2014-04-02 00:01:27 +02:00
|
|
|
val update = Pipe(io.update)
|
|
|
|
val update_target = io.req
|
|
|
|
|
|
|
|
val pageHit = pageMatch(io.req)
|
|
|
|
val hits = tagMatch(io.req, pageHit)
|
|
|
|
val updatePageHit = pageMatch(update.bits.pc)
|
|
|
|
val updateHits = tagMatch(update.bits.pc, updatePageHit)
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-04-02 00:01:27 +02:00
|
|
|
private var lfsr = LFSR16(update.valid)
|
2014-03-25 13:22:04 +01:00
|
|
|
def rand(width: Int) = {
|
|
|
|
lfsr = lfsr(lfsr.getWidth-1,1)
|
|
|
|
Random.oneHot(width, lfsr)
|
|
|
|
}
|
|
|
|
|
2014-04-08 00:58:49 +02:00
|
|
|
val updateHit = update.bits.prediction.valid
|
2014-08-08 21:23:02 +02:00
|
|
|
val updateValid = update.bits.incorrectTarget || updateHit && Bool(params(NBHT) > 0)
|
2014-04-08 00:58:49 +02:00
|
|
|
val updateTarget = updateValid && update.bits.incorrectTarget
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-04-02 00:01:27 +02:00
|
|
|
val useUpdatePageHit = updatePageHit.orR
|
2014-04-08 00:58:49 +02:00
|
|
|
val doIdxPageRepl = updateTarget && !useUpdatePageHit
|
|
|
|
val idxPageRepl = UInt()
|
|
|
|
val idxPageUpdateOH = Mux(useUpdatePageHit, updatePageHit, idxPageRepl)
|
|
|
|
val idxPageUpdate = OHToUInt(idxPageUpdateOH)
|
2014-03-25 13:22:04 +01:00
|
|
|
val idxPageReplEn = Mux(doIdxPageRepl, idxPageRepl, UInt(0))
|
|
|
|
|
2014-04-02 00:01:27 +02:00
|
|
|
val samePage = page(update.bits.pc) === page(update_target)
|
|
|
|
val usePageHit = (pageHit & ~idxPageReplEn).orR
|
2014-04-08 00:58:49 +02:00
|
|
|
val doTgtPageRepl = updateTarget && !samePage && !usePageHit
|
2014-08-08 21:23:02 +02:00
|
|
|
val tgtPageRepl = Mux(samePage, idxPageUpdateOH, idxPageUpdateOH(params(Pages)-2,0) << 1 | idxPageUpdateOH(params(Pages)-1))
|
2014-04-08 00:58:49 +02:00
|
|
|
val tgtPageUpdate = OHToUInt(Mux(usePageHit, pageHit, tgtPageRepl))
|
2014-03-25 13:22:04 +01:00
|
|
|
val tgtPageReplEn = Mux(doTgtPageRepl, tgtPageRepl, UInt(0))
|
2014-05-19 04:25:43 +02:00
|
|
|
val doPageRepl = doIdxPageRepl || doTgtPageRepl
|
2014-03-25 13:22:04 +01:00
|
|
|
|
|
|
|
val pageReplEn = idxPageReplEn | tgtPageReplEn
|
2014-08-08 21:23:02 +02:00
|
|
|
idxPageRepl := UIntToOH(Counter(update.valid && doPageRepl, params(Pages))._1)
|
2014-04-08 00:58:49 +02:00
|
|
|
|
|
|
|
when (update.valid && !(updateValid && !updateTarget)) {
|
2014-08-08 21:23:02 +02:00
|
|
|
val nextRepl = Counter(!updateHit && updateValid, params(Entries))._1
|
2014-04-08 00:58:49 +02:00
|
|
|
val waddr = Mux(updateHit, update.bits.prediction.bits.entry, nextRepl)
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-05-20 03:56:30 +02:00
|
|
|
// invalidate entries if we stomp on pages they depend upon
|
2014-08-08 21:23:02 +02:00
|
|
|
idxValid := idxValid & ~Vec.tabulate(params(Entries))(i => (pageReplEn & (idxPagesOH(i) | tgtPagesOH(i))).orR).toBits
|
2014-05-20 03:56:30 +02:00
|
|
|
|
|
|
|
idxValid(waddr) := updateValid
|
2014-05-19 04:25:43 +02:00
|
|
|
when (updateTarget) {
|
|
|
|
assert(io.req === update.bits.target, "BTB request != I$ target")
|
|
|
|
idxs(waddr) := update.bits.pc
|
|
|
|
tgts(waddr) := update_target
|
|
|
|
idxPages(waddr) := idxPageUpdate
|
|
|
|
tgtPages(waddr) := tgtPageUpdate
|
|
|
|
useRAS(waddr) := update.bits.isReturn
|
|
|
|
isJump(waddr) := update.bits.isJump
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
require(params(Pages) % 2 == 0)
|
|
|
|
val idxWritesEven = (idxPageUpdateOH & Fill(params(Pages)/2, UInt(1,2))).orR
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-05-19 04:25:43 +02:00
|
|
|
def writeBank(i: Int, mod: Int, en: Bool, data: UInt) =
|
2014-08-08 21:23:02 +02:00
|
|
|
for (i <- i until params(Pages) by mod)
|
2014-05-19 04:25:43 +02:00
|
|
|
when (en && pageReplEn(i)) { pages(i) := data }
|
|
|
|
|
2014-03-25 13:22:04 +01:00
|
|
|
writeBank(0, 2, Mux(idxWritesEven, doIdxPageRepl, doTgtPageRepl),
|
2014-04-02 00:01:27 +02:00
|
|
|
Mux(idxWritesEven, page(update.bits.pc), page(update_target)))
|
2014-03-25 13:22:04 +01:00
|
|
|
writeBank(1, 2, Mux(idxWritesEven, doTgtPageRepl, doIdxPageRepl),
|
2014-04-02 00:01:27 +02:00
|
|
|
Mux(idxWritesEven, page(update_target), page(update.bits.pc)))
|
2014-05-19 04:25:43 +02:00
|
|
|
|
|
|
|
when (doPageRepl) { pageValid := pageValid | pageReplEn }
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
when (io.invalidate) {
|
2014-05-19 04:25:43 +02:00
|
|
|
idxValid := 0
|
|
|
|
pageValid := 0
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2014-05-26 08:58:25 +02:00
|
|
|
io.resp.valid := hits.orR
|
2014-04-02 00:01:27 +02:00
|
|
|
io.resp.bits.taken := io.resp.valid
|
|
|
|
io.resp.bits.target := Cat(Mux1H(Mux1H(hits, tgtPagesOH), pages), Mux1H(hits, tgts))
|
2014-04-08 00:58:49 +02:00
|
|
|
io.resp.bits.entry := OHToUInt(hits)
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
if (params(NBHT) > 0) {
|
|
|
|
val bht = new BHT(params(NBHT))
|
2014-04-08 00:58:49 +02:00
|
|
|
val res = bht.get(io.req)
|
|
|
|
when (update.valid && updateHit && !update.bits.isJump) { bht.update(update.bits.prediction.bits.bht, update.bits.taken) }
|
|
|
|
when (!res.value(0) && !Mux1H(hits, isJump)) { io.resp.bits.taken := false }
|
|
|
|
io.resp.bits.bht := res
|
|
|
|
}
|
2014-04-02 00:01:27 +02:00
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
if (params(NRAS) > 0) {
|
|
|
|
val ras = new RAS(params(NRAS))
|
2014-04-08 08:47:53 +02:00
|
|
|
val doPeek = Mux1H(hits, useRAS)
|
|
|
|
when (!ras.isEmpty && doPeek) {
|
2014-04-08 00:58:49 +02:00
|
|
|
io.resp.bits.target := ras.peek
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
2014-04-08 00:58:49 +02:00
|
|
|
when (io.update.valid) {
|
|
|
|
when (io.update.bits.isCall) {
|
|
|
|
ras.push(io.update.bits.returnAddr)
|
2014-04-08 08:47:53 +02:00
|
|
|
when (doPeek) {
|
|
|
|
io.resp.bits.target := io.update.bits.returnAddr
|
|
|
|
}
|
2014-04-08 00:58:49 +02:00
|
|
|
}.elsewhen (io.update.bits.isReturn && io.update.bits.prediction.valid) {
|
|
|
|
ras.pop
|
|
|
|
}
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
when (io.invalidate) { ras.clear }
|
|
|
|
}
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|