summaryrefslogtreecommitdiff
path: root/src/mem/cache/sector_blk.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/cache/sector_blk.hh')
-rw-r--r--src/mem/cache/sector_blk.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mem/cache/sector_blk.hh b/src/mem/cache/sector_blk.hh
index f8f8cd5e6..66d83a230 100644
--- a/src/mem/cache/sector_blk.hh
+++ b/src/mem/cache/sector_blk.hh
@@ -114,6 +114,13 @@ class SectorSubBlk : public CacheBlk
*/
void insert(const Addr tag, const bool is_secure, const int src_master_ID,
const uint32_t task_ID) override;
+
+ /**
+ * Pretty-print sector offset and other CacheBlk information.
+ *
+ * @return string with basic state information
+ */
+ std::string print() const override;
};
/**