Merge pull request #919 from freechipsproject/imiss-perf-counter
Fix I$ miss perfctr
This commit is contained in:
commit
7937db0c84
@ -285,7 +285,7 @@ class FrontendModule(outer: Frontend) extends LazyModuleImp(outer)
|
|||||||
io.cpu.resp <> fq.io.deq
|
io.cpu.resp <> fq.io.deq
|
||||||
|
|
||||||
// performance events
|
// performance events
|
||||||
io.cpu.perf.acquire := edge.done(icache.io.tl_out(0).a)
|
io.cpu.perf := icache.io.perf
|
||||||
io.cpu.perf.tlbMiss := io.ptw.req.fire()
|
io.cpu.perf.tlbMiss := io.ptw.req.fire()
|
||||||
|
|
||||||
def alignPC(pc: UInt) = ~(~pc | (coreInstBytes - 1))
|
def alignPC(pc: UInt) = ~(~pc | (coreInstBytes - 1))
|
||||||
|
@ -68,6 +68,10 @@ class ICacheResp(outer: ICache) extends Bundle {
|
|||||||
override def cloneType = new ICacheResp(outer).asInstanceOf[this.type]
|
override def cloneType = new ICacheResp(outer).asInstanceOf[this.type]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ICachePerfEvents extends Bundle {
|
||||||
|
val acquire = Bool()
|
||||||
|
}
|
||||||
|
|
||||||
class ICacheBundle(outer: ICache) extends CoreBundle()(outer.p) {
|
class ICacheBundle(outer: ICache) extends CoreBundle()(outer.p) {
|
||||||
val hartid = UInt(INPUT, hartIdLen)
|
val hartid = UInt(INPUT, hartIdLen)
|
||||||
val req = Decoupled(new ICacheReq).flip
|
val req = Decoupled(new ICacheReq).flip
|
||||||
@ -81,6 +85,8 @@ class ICacheBundle(outer: ICache) extends CoreBundle()(outer.p) {
|
|||||||
val invalidate = Bool(INPUT)
|
val invalidate = Bool(INPUT)
|
||||||
val tl_out = outer.masterNode.bundleOut
|
val tl_out = outer.masterNode.bundleOut
|
||||||
val tl_in = outer.slaveNode.map(_.bundleIn)
|
val tl_in = outer.slaveNode.map(_.bundleIn)
|
||||||
|
|
||||||
|
val perf = new ICachePerfEvents().asOutput
|
||||||
}
|
}
|
||||||
|
|
||||||
// get a tile-specific property without breaking deduplication
|
// get a tile-specific property without breaking deduplication
|
||||||
@ -343,4 +349,6 @@ class ICacheModule(outer: ICache) extends LazyModuleImp(outer)
|
|||||||
when (!refill_valid) { invalidated := false.B }
|
when (!refill_valid) { invalidated := false.B }
|
||||||
when (refill_fire) { refill_valid := true.B }
|
when (refill_fire) { refill_valid := true.B }
|
||||||
when (refill_done) { refill_valid := false.B}
|
when (refill_done) { refill_valid := false.B}
|
||||||
|
|
||||||
|
io.perf.acquire := refill_fire
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user