1
0

Don't double-count release traffic in perfctrs

This commit is contained in:
Andrew Waterman
2017-03-09 16:49:02 -08:00
parent 63f8ce36f6
commit b24c43badb
3 changed files with 5 additions and 5 deletions

View File

@ -155,7 +155,7 @@ class FrontendModule(outer: Frontend) extends LazyModuleImp(outer)
io.cpu.resp.bits.btb.bits := s2_btb_resp_bits
// performance events
io.cpu.acquire := icache.io.mem(0).a.fire()
io.cpu.acquire := edge.last(icache.io.mem(0).a)
}
/** Mix-ins for constructing tiles that have an ICache-based pipeline frontend */