diff options
Diffstat (limited to 'src/cpu/exec_context.hh')
-rw-r--r-- | src/cpu/exec_context.hh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cpu/exec_context.hh b/src/cpu/exec_context.hh index 951c9c2b3..dd718b56a 100644 --- a/src/cpu/exec_context.hh +++ b/src/cpu/exec_context.hh @@ -51,6 +51,7 @@ #include "cpu/base.hh" #include "cpu/static_inst_fwd.hh" #include "cpu/translation.hh" +#include "mem/request.hh" /** * The ExecContext is an abstract base class the provides the @@ -182,7 +183,7 @@ class ExecContext { * should never be called). */ virtual Fault readMem(Addr addr, uint8_t *data, unsigned int size, - unsigned int flags) + Request::Flags flags) { panic("ExecContext::readMem() should be overridden\n"); } @@ -195,7 +196,7 @@ class ExecContext { * should never be called). */ virtual Fault initiateMemRead(Addr addr, unsigned int size, - unsigned int flags) + Request::Flags flags) { panic("ExecContext::initiateMemRead() should be overridden\n"); } @@ -205,7 +206,7 @@ class ExecContext { * For timing-mode contexts, initiate a timing memory write operation. */ virtual Fault writeMem(uint8_t *data, unsigned int size, Addr addr, - unsigned int flags, uint64_t *res) = 0; + Request::Flags flags, uint64_t *res) = 0; /** * Sets the number of consecutive store conditional failures. |