diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-06-01 21:59:27 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-06-01 21:59:27 -0400 |
commit | 62fa781fee9ae93432e81902d73a35a83dbde642 (patch) | |
tree | 9cf01f352ac2bf102f1a64325c51be3132a77418 /cpu | |
parent | 8031cd93b53cd3fe17a5a5f21e8e8bd833398e97 (diff) | |
download | gem5-62fa781fee9ae93432e81902d73a35a83dbde642.tar.xz |
Rename sim/universe.{cc,hh} to root.{cc,hh} (since the
object defined there was renamed Root long ago).
SConscript:
arch/alpha/alpha_linux_process.cc:
arch/alpha/alpha_tru64_process.cc:
base/misc.cc:
base/pollevent.cc:
base/pollevent.hh:
base/stats/events.cc:
base/trace.hh:
cpu/beta_cpu/fetch_impl.hh:
cpu/beta_cpu/full_cpu.cc:
cpu/beta_cpu/inst_queue_impl.hh:
cpu/pc_event.cc:
cpu/static_inst.cc:
dev/etherbus.cc:
dev/etherdump.cc:
dev/etherlink.cc:
dev/ide_disk.cc:
dev/pcidev.cc:
sim/builder.cc:
sim/eventq.cc:
sim/main.cc:
sim/root.cc:
sim/stat_control.cc:
Rename sim/universe.{cc,hh} to root.{cc,hh}.
--HG--
rename : sim/universe.cc => sim/root.cc
extra : convert_revision : b8699e81e285253d66da75412e7bb2c251c0389a
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/beta_cpu/fetch_impl.hh | 2 | ||||
-rw-r--r-- | cpu/beta_cpu/full_cpu.cc | 2 | ||||
-rw-r--r-- | cpu/beta_cpu/inst_queue_impl.hh | 2 | ||||
-rw-r--r-- | cpu/pc_event.cc | 2 | ||||
-rw-r--r-- | cpu/static_inst.cc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/cpu/beta_cpu/fetch_impl.hh b/cpu/beta_cpu/fetch_impl.hh index fd23354a1..b49064565 100644 --- a/cpu/beta_cpu/fetch_impl.hh +++ b/cpu/beta_cpu/fetch_impl.hh @@ -37,7 +37,7 @@ #include "mem/mem_req.hh" #include "cpu/beta_cpu/fetch.hh" -#include "sim/universe.hh" +#include "sim/root.hh" template<class Impl> SimpleFetch<Impl>::CacheCompletionEvent diff --git a/cpu/beta_cpu/full_cpu.cc b/cpu/beta_cpu/full_cpu.cc index 515bec926..8eedc3769 100644 --- a/cpu/beta_cpu/full_cpu.cc +++ b/cpu/beta_cpu/full_cpu.cc @@ -31,7 +31,7 @@ #else #include "sim/process.hh" #endif -#include "sim/universe.hh" +#include "sim/root.hh" #include "cpu/beta_cpu/alpha_dyn_inst.hh" #include "cpu/beta_cpu/alpha_impl.hh" diff --git a/cpu/beta_cpu/inst_queue_impl.hh b/cpu/beta_cpu/inst_queue_impl.hh index f1a006b6e..51504347a 100644 --- a/cpu/beta_cpu/inst_queue_impl.hh +++ b/cpu/beta_cpu/inst_queue_impl.hh @@ -36,7 +36,7 @@ #include <vector> -#include "sim/universe.hh" +#include "sim/root.hh" #include "cpu/beta_cpu/inst_queue.hh" diff --git a/cpu/pc_event.cc b/cpu/pc_event.cc index 2c6bb2443..f30e2a332 100644 --- a/cpu/pc_event.cc +++ b/cpu/pc_event.cc @@ -36,7 +36,7 @@ #include "cpu/exec_context.hh" #include "cpu/pc_event.hh" #include "sim/debug.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/cpu/static_inst.cc b/cpu/static_inst.cc index d522dbf5a..4a2c81d5e 100644 --- a/cpu/static_inst.cc +++ b/cpu/static_inst.cc @@ -28,7 +28,7 @@ #include <iostream> #include "cpu/static_inst.hh" -#include "sim/universe.hh" +#include "sim/root.hh" template <class ISA> StaticInstPtr<ISA> StaticInst<ISA>::nullStaticInstPtr; |