cpu,mem: missing override specifier

Change-Id: I731d3ef021596450ac307461f215760a148bb28a
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18348
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Andrea Mondelli
2019-04-23 13:36:19 -04:00
parent e52e6cc08c
commit 57667bad9f
3 changed files with 14 additions and 10 deletions

View File

@@ -213,26 +213,30 @@ class SimpleThread : public ThreadState, public ThreadContext
System *getSystemPtr() override { return system; }
TheISA::Kernel::Statistics *
getKernelStats()
getKernelStats() override
{
return ThreadState::getKernelStats();
}
PortProxy &getPhysProxy() { return ThreadState::getPhysProxy(); }
PortProxy &getPhysProxy() override { return ThreadState::getPhysProxy(); }
FSTranslatingPortProxy &
getVirtProxy()
getVirtProxy() override
{
return ThreadState::getVirtProxy();
}
void initMemProxies(ThreadContext *tc) { ThreadState::initMemProxies(tc); }
void initMemProxies(ThreadContext *tc) override
{
ThreadState::initMemProxies(tc);
}
SETranslatingPortProxy &
getMemProxy()
getMemProxy() override
{
return ThreadState::getMemProxy();
}
Process *getProcessPtr() { return ThreadState::getProcessPtr(); }
Process *getProcessPtr() override { return ThreadState::getProcessPtr(); }
void setProcessPtr(Process *p) override { ThreadState::setProcessPtr(p); }
Status status() const override { return _status; }

View File

@@ -352,7 +352,7 @@ class MSHR : public QueueEntry, public Printable
assert(inService); return postDowngrade;
}
bool sendPacket(BaseCache &cache);
bool sendPacket(BaseCache &cache) override;
bool allocOnFill() const {
return targets.allocOnFill;
@@ -523,7 +523,7 @@ class MSHR : public QueueEntry, public Printable
*/
void print(std::ostream &os,
int verbosity = 0,
const std::string &prefix = "") const;
const std::string &prefix = "") const override;
/**
* A no-args wrapper of print(std::ostream...) meant to be
* invoked from DPRINTFs avoiding string overheads in fast mode

View File

@@ -92,7 +92,7 @@ class WriteQueueEntry : public QueueEntry, public Printable
/** WriteQueueEntry list iterator. */
typedef List::iterator Iterator;
bool sendPacket(BaseCache &cache);
bool sendPacket(BaseCache &cache) override;
private:
@@ -171,7 +171,7 @@ class WriteQueueEntry : public QueueEntry, public Printable
*/
void print(std::ostream &os,
int verbosity = 0,
const std::string &prefix = "") const;
const std::string &prefix = "") const override;
/**
* A no-args wrapper of print(std::ostream...) meant to be
* invoked from DPRINTFs avoiding string overheads in fast mode