diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2012-01-30 03:44:25 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2012-01-30 03:44:25 -0500 |
commit | ef9fc010736df313fbc7acaea3a9b0e2fee33955 (patch) | |
tree | 4a08e51a3e93c250f0cc0533a41e4d6eb3db1428 /src/cpu | |
parent | ce336fae6a2c89310038d6fdd80902b771cf7ffa (diff) | |
download | gem5-ef9fc010736df313fbc7acaea3a9b0e2fee33955.tar.xz |
MEM: Clean-up of Functional/Virtual/TranslatingPort remnants
This patch cleans up forward declarations and a member-function
prototype that still referred to the old FunctionalPort, VirtualPort
and TranslatingPort. There is no change in functionality.
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/inorder/thread_context.hh | 2 | ||||
-rwxr-xr-x | src/cpu/o3/thread_context.hh | 2 | ||||
-rw-r--r-- | src/cpu/simple_thread.hh | 3 |
3 files changed, 0 insertions, 7 deletions
diff --git a/src/cpu/inorder/thread_context.hh b/src/cpu/inorder/thread_context.hh index 5b67d7e8b..058f58ffb 100644 --- a/src/cpu/inorder/thread_context.hh +++ b/src/cpu/inorder/thread_context.hh @@ -44,8 +44,6 @@ namespace Kernel { class Statistics; }; -class TranslatingPort; - /** * Derived ThreadContext class for use with the InOrderCPU. It * provides the interface for any external objects to access a diff --git a/src/cpu/o3/thread_context.hh b/src/cpu/o3/thread_context.hh index 6ac745770..0205c63ef 100755 --- a/src/cpu/o3/thread_context.hh +++ b/src/cpu/o3/thread_context.hh @@ -40,8 +40,6 @@ namespace Kernel { class Statistics; }; -class TranslatingPort; - /** * Derived ThreadContext class for use with the O3CPU. It * provides the interface for any external objects to access a diff --git a/src/cpu/simple_thread.hh b/src/cpu/simple_thread.hh index ebc23276a..57e83b4d1 100644 --- a/src/cpu/simple_thread.hh +++ b/src/cpu/simple_thread.hh @@ -58,8 +58,6 @@ class BaseCPU; class FunctionProfile; class ProfileNode; -class FunctionalPort; -class PhysicalPort; namespace TheISA { namespace Kernel { @@ -71,7 +69,6 @@ namespace TheISA { #include "mem/page_table.hh" #include "sim/process.hh" -class TranslatingPort; #endif // FULL_SYSTEM |