From eb3b6935d3a4afc65be3ef16584be78572d4a39c Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Tue, 21 Apr 2009 08:17:10 -0700 Subject: [PATCH] request: add PREFETCH flag. --- src/mem/request.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mem/request.hh b/src/mem/request.hh index 5fa682f2b..aa8d56bc8 100644 --- a/src/mem/request.hh +++ b/src/mem/request.hh @@ -95,6 +95,8 @@ class Request : public FastAlloc static const FlagsType NO_HALF_WORD_ALIGN_FAULT = 0x00400000; /** This request is to a memory mapped register. */ static const FlagsType MMAPED_IPR = 0x00800000; + /** The request is a prefetch. */ + static const FlagsType PREFETCH = 0x01000000; /** These flags are *not* cleared when a Request object is reused (assigned a new address). */ @@ -431,6 +433,7 @@ class Request : public FastAlloc /** Accessor Function to Check Cacheability. */ bool isUncacheable() const { return flags.isSet(UNCACHEABLE); } bool isInstFetch() const { return flags.isSet(INST_FETCH); } + bool isPrefetch() const { return flags.isSet(PREFETCH); } bool isLLSC() const { return flags.isSet(LLSC); } bool isLocked() const { return flags.isSet(LOCKED); } bool isSwap() const { return flags.isSet(MEM_SWAP|MEM_SWAP_COND); } -- 2.30.2