diff options
author | Andreas Sandberg <Andreas.Sandberg@arm.com> | 2012-09-25 11:49:40 -0500 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@arm.com> | 2012-09-25 11:49:40 -0500 |
commit | 5f32eceeda92f45d253a0835c6643e786a91ba49 (patch) | |
tree | e407bf938291dc1d8ea2cf4feb81c4adb01553d4 /src/sim | |
parent | d060a28a2938aff5446e2b800176208c72b698da (diff) | |
download | gem5-5f32eceeda92f45d253a0835c6643e786a91ba49.tar.xz |
sim: Remove SimObject::setMemoryMode
Remove SimObject::setMemoryMode from the main SimObject class since it
is only valid for the System class. In addition to removing the method
from the C++ sources, this patch also removes getMemoryMode and
changeTiming from SimObject.py and updates the simulation code to call
the (get|set)MemoryMode method on the System object instead.
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/sim_object.cc | 6 | ||||
-rw-r--r-- | src/sim/sim_object.hh | 7 |
2 files changed, 0 insertions, 13 deletions
diff --git a/src/sim/sim_object.cc b/src/sim/sim_object.cc index 571989b02..866ce0ce2 100644 --- a/src/sim/sim_object.cc +++ b/src/sim/sim_object.cc @@ -164,12 +164,6 @@ SimObject::resume() } void -SimObject::setMemoryMode(Enums::MemoryMode new_mode) -{ - panic("setMemoryMode() should only be called on systems"); -} - -void SimObject::switchOut() { panic("Unimplemented!"); diff --git a/src/sim/sim_object.hh b/src/sim/sim_object.hh index 1640be404..4fa2b7f05 100644 --- a/src/sim/sim_object.hh +++ b/src/sim/sim_object.hh @@ -256,13 +256,6 @@ class SimObject : public EventManager, public Serializable virtual void resume(); /** - * Change the memory mode the simulator operates in. - * - * @note Should only be implemented in the System object. - */ - virtual void setMemoryMode(Enums::MemoryMode new_mode); - - /** * Prepare a CPU model to be switched out, invoked on active CPUs * that are about to be replaced. * |