make sure Comparator logs correctly when prefetching off
This commit is contained in:
parent
676a536706
commit
88dc0b983a
@ -180,10 +180,20 @@ class ComparatorSource(implicit val p: Parameters) extends Module
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
is (UInt("b101")) {
|
is (UInt("b101")) {
|
||||||
|
if (prefetches) {
|
||||||
printf("[acq %d]: GetPrefetch(addr_block = %x)\n", idx, addr_block)
|
printf("[acq %d]: GetPrefetch(addr_block = %x)\n", idx, addr_block)
|
||||||
|
} else {
|
||||||
|
printf("[acq %d]: Get(addr_block = %x, addr_beat = %x, addr_byte = %x, op_size = %x)\n",
|
||||||
|
idx, addr_block, addr_beat, get_addr_byte, get_operand_size)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
is (UInt("b110")) {
|
is (UInt("b110")) {
|
||||||
|
if (prefetches) {
|
||||||
printf("[acq %d]: PutPrefetch(addr_block = %x)\n", idx, addr_block)
|
printf("[acq %d]: PutPrefetch(addr_block = %x)\n", idx, addr_block)
|
||||||
|
} else {
|
||||||
|
printf("[acq %d]: Put(addr_block = %x, addr_beat = %x, data = %x, wmask = %x)\n",
|
||||||
|
idx, addr_block, addr_beat, data, wmask)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
is (UInt("b111")) {
|
is (UInt("b111")) {
|
||||||
printf("[acq %d]: Get(addr_block = %x, addr_beat = %x, addr_byte = %x, op_size = %x)\n",
|
printf("[acq %d]: Get(addr_block = %x, addr_beat = %x, addr_byte = %x, op_size = %x)\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user