Fix up #defines to use full path; fix up code for g++ 3.4
authorKevin Lim <ktlim@umich.edu>
Fri, 11 Feb 2005 22:54:33 +0000 (17:54 -0500)
committerKevin Lim <ktlim@umich.edu>
Fri, 11 Feb 2005 22:54:33 +0000 (17:54 -0500)
SConscript:
    Remove efence option from automatically being used.

--HG--
extra : convert_revision : 466bb8077aa341db0b409720e2a73535b1fa6b69

21 files changed:
SConscript
cpu/beta_cpu/alpha_dyn_inst.hh
cpu/beta_cpu/alpha_full_cpu.hh
cpu/beta_cpu/alpha_impl.hh
cpu/beta_cpu/comm.hh
cpu/beta_cpu/commit.cc
cpu/beta_cpu/commit.hh
cpu/beta_cpu/cpu_policy.hh
cpu/beta_cpu/decode.cc
cpu/beta_cpu/decode.hh
cpu/beta_cpu/decode_impl.hh
cpu/beta_cpu/fetch.cc
cpu/beta_cpu/fetch.hh
cpu/beta_cpu/full_cpu.hh
cpu/beta_cpu/iew.cc
cpu/beta_cpu/iew.hh
cpu/beta_cpu/regfile.hh
cpu/beta_cpu/rename.cc
cpu/beta_cpu/rename.hh
cpu/beta_cpu/rename_map.hh
cpu/beta_cpu/rob.hh

index 6d7ed172fb9c7a48786b30c6318f4eeb13844df3..54f16fce6ed153b9519609e2234d5a5e2729d9c8 100644 (file)
@@ -432,7 +432,7 @@ env.Append(CPPPATH='.')
 
 # Debug binary
 debug = env.Copy(OBJSUFFIX='.do')
-debug.Append(CCFLAGS=Split('-g -gstabs+ -O0 -lefence'))
+debug.Append(CCFLAGS=Split('-g -gstabs+ -O0'))
 debug.Append(CPPDEFINES='DEBUG')
 debug.Program(target = 'm5.debug', source = make_objs(sources, debug))
 
index c964762db2df4bc6d587c0f1a6194c8a5115bf07..584e027d792b9d07de563fa00181663c371614a6 100644 (file)
@@ -1,7 +1,7 @@
 //Todo:
 
-#ifndef __ALPHA_DYN_INST_HH__
-#define __ALPHA_DYN_INST_HH__
+#ifndef __CPU_BETA_CPU_ALPHA_DYN_INST_HH__
+#define __CPU_BETA_CPU_ALPHA_DYN_INST_HH__
 
 #include "cpu/base_dyn_inst.hh"
 #include "cpu/beta_cpu/alpha_full_cpu.hh"
@@ -76,5 +76,5 @@ class AlphaDynInst : public BaseDynInst<Impl>
 
 };
 
-#endif // __ALPHA_DYN_INST_HH__
+#endif // __CPU_BETA_CPU_ALPHA_DYN_INST_HH__
 
index e01eba3bf03624aacf140df650b3956b31cda745..92eebc82ae013b995e6b51f72ded5c66284fba73 100644 (file)
@@ -3,16 +3,12 @@
 // Read and write are horribly hacked up between not being sure where to
 // copy their code from, and Ron's memory changes.
 
-#ifndef __ALPHA_FULL_CPU_HH__
-#define __ALPHA_FULL_CPU_HH__
+#ifndef __CPU_BETA_CPU_ALPHA_FULL_CPU_HH__
+#define __CPU_BETA_CPU_ALPHA_FULL_CPU_HH__
 
 // To include: comm, full cpu, ITB/DTB if full sys,
-//#include "cpu/beta_cpu/comm.hh"
-//#include "cpu/beta_cpu/alpha_impl.hh"
 #include "cpu/beta_cpu/full_cpu.hh"
 
-using namespace std;
-
 template <class Impl>
 class AlphaFullCPU : public FullBetaCPU<Impl>
 {
@@ -250,4 +246,4 @@ class AlphaFullCPU : public FullBetaCPU<Impl>
 
 };
 
-#endif // __ALPHA_FULL_CPU_HH__
+#endif // __CPU_BETA_CPU_ALPHA_FULL_CPU_HH__
index fc86dacd7d5acc6f57cacc34bd2034a9a03bde75..81a1aba9bf4d81e05f1da5481a323740141c27f0 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __ALPHA_IMPL_HH__
-#define __ALPHA_IMPL_HH__
+#ifndef __CPU_BETA_CPU_ALPHA_IMPL_HH__
+#define __CPU_BETA_CPU_ALPHA_IMPL_HH__
 
 #include "arch/alpha/isa_traits.hh"
 
@@ -51,4 +51,4 @@ struct AlphaSimpleImpl
     };
 };
 
-#endif // __ALPHA_IMPL_HH__
+#endif // __CPU_BETA_CPU_ALPHA_IMPL_HH__
index e327a83b95f25b1fc887f4f43700c55372816716..c0afe3d1b7f213c87591354f4b8b0c2f021e9cdf 100644 (file)
@@ -1,13 +1,11 @@
-#ifndef __COMM_HH__
-#define __COMM_HH__
+#ifndef __CPU_BETA_CPU_COMM_HH__
+#define __CPU_BETA_CPU_COMM_HH__
 
 #include <stdint.h>
 #include <vector>
 #include "arch/alpha/isa_traits.hh"
 #include "cpu/inst_seq.hh"
 
-using namespace std;
-
 // Find better place to put this typedef.
 // The impl might be the best place for this.
 typedef short int PhysRegIndex;
@@ -18,7 +16,7 @@ struct SimpleFetchSimpleDecode {
 
     int size;
 
-    DynInstPtr insts[Impl::MaxWidth + 1];
+    DynInstPtr insts[Impl::MaxWidth];
 };
 
 template<class Impl>
@@ -27,7 +25,7 @@ struct SimpleDecodeSimpleRename {
 
     int size;
 
-    DynInstPtr insts[Impl::MaxWidth + 1];
+    DynInstPtr insts[Impl::MaxWidth];
 };
 
 template<class Impl>
@@ -36,7 +34,7 @@ struct SimpleRenameSimpleIEW {
 
     int size;
 
-    DynInstPtr insts[Impl::MaxWidth + 1];
+    DynInstPtr insts[Impl::MaxWidth];
 };
 
 template<class Impl>
@@ -45,7 +43,7 @@ struct SimpleIEWSimpleCommit {
 
     int size;
 
-    DynInstPtr insts[Impl::MaxWidth + 1];
+    DynInstPtr insts[Impl::MaxWidth];
 
     bool squash;
     bool branchMispredict;
@@ -62,7 +60,7 @@ struct IssueStruct {
 
     int size;
 
-    DynInstPtr insts[Impl::MaxWidth + 1];
+    DynInstPtr insts[Impl::MaxWidth];
 };
 
 struct TimeBufStruct {
@@ -142,4 +140,4 @@ struct TimeBufStruct {
     commitComm commitInfo;
 };
 
-#endif //__COMM_HH__
+#endif //__CPU_BETA_CPU_COMM_HH__
index 2efb38976f6d86326e754f26d1ca99183e1c9353..9e8fa2781f90370cae21d3270c06ac00248bad85 100644 (file)
@@ -1,6 +1,6 @@
 
 #include "cpu/beta_cpu/alpha_dyn_inst.hh"
-#include "cpu/beta_cpu/commit_impl.hh"
 #include "cpu/beta_cpu/alpha_impl.hh"
+#include "cpu/beta_cpu/commit_impl.hh"
 
-template SimpleCommit<AlphaSimpleImpl>;
+template class SimpleCommit<AlphaSimpleImpl>;
index f1a1851439b3db1379c99810ffd6c14958eaa396..731307bf7e44212f3642852946c216f19bc71c5a 100644 (file)
 // Probably not a big deal if the IPR stuff isn't cycle accurate.  Can just
 // have the original function handle writing to the IPR register.
 
-#ifndef __SIMPLE_COMMIT_HH__
-#define __SIMPLE_COMMIT_HH__
+#ifndef __CPU_BETA_CPU_SIMPLE_COMMIT_HH__
+#define __CPU_BETA_CPU_SIMPLE_COMMIT_HH__
 
-//#include "arch/alpha/isa_traits.hh"
+#include "base/statistics.hh"
 #include "base/timebuf.hh"
-//#include "cpu/beta_cpu/comm.hh"
-//#include "cpu/beta_cpu/rename_map.hh"
-//#include "cpu/beta_cpu/rob.hh"
 #include "mem/memory_interface.hh"
 
 template<class Impl>
@@ -157,4 +154,4 @@ class SimpleCommit
     Stats::Distribution<> n_committed_dist;
 };
 
-#endif // __SIMPLE_COMMIT_HH__
+#endif // __CPU_BETA_CPU_SIMPLE_COMMIT_HH__
index 1479eb191592c2c18b4580889fdeee2d226f7778..6606aba2932d6a7a0f5d59d426820a05432f20d0 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __CPU_POLICY_HH__
-#define __CPU_POLICY_HH__
+#ifndef __CPU_BETA_CPU_CPU_POLICY_HH__
+#define __CPU_BETA_CPU_CPU_POLICY_HH__
 
 #include "cpu/beta_cpu/bpred_unit.hh"
 #include "cpu/beta_cpu/inst_queue.hh"
@@ -57,4 +57,4 @@ struct SimpleCPUPolicy
 
 };
 
-#endif //__CPU_POLICY_HH__
+#endif //__CPU_BETA_CPU_CPU_POLICY_HH__
index ffabcf18ab40eda09fe2eac1ff9b2affcdbc65b5..177293bcabc238a7e9223475d0beeaa9f215d9e8 100644 (file)
@@ -1,6 +1,6 @@
 
 #include "cpu/beta_cpu/alpha_dyn_inst.hh"
-#include "cpu/beta_cpu/decode_impl.hh"
 #include "cpu/beta_cpu/alpha_impl.hh"
+#include "cpu/beta_cpu/decode_impl.hh"
 
-template SimpleDecode<AlphaSimpleImpl>;
+template class SimpleDecode<AlphaSimpleImpl>;
index 64e87290e7c09dfe86c10458919ba8e789264794..dd18cf176e61e200fec2742f8bd066ac91e99ed1 100644 (file)
@@ -5,11 +5,12 @@
 // Fix up squashing too, as it's too
 // dependent upon the iew stage continually telling it to squash.
 
-#ifndef __SIMPLE_DECODE_HH__
-#define __SIMPLE_DECODE_HH__
+#ifndef __CPU_BETA_CPU_SIMPLE_DECODE_HH__
+#define __CPU_BETA_CPU_SIMPLE_DECODE_HH__
 
 #include <queue>
 
+#include "base/statistics.hh"
 #include "base/timebuf.hh"
 
 template<class Impl>
@@ -141,4 +142,4 @@ class SimpleDecode
     Stats::Scalar<> decodeSquashedInsts;
 };
 
-#endif // __SIMPLE_DECODE_HH__
+#endif // __CPU_BETA_CPU_SIMPLE_DECODE_HH__
index dd51f564d8f3e17378e0545e21e3cc05ec48a958..9d88f94acfb1db31d97ebb2e1afe5c4dc0e0da28 100644 (file)
@@ -1,6 +1,3 @@
-#ifndef __SIMPLE_DECODE_CC__
-#define __SIMPLE_DECODE_CC__
-
 #include "cpu/beta_cpu/decode.hh"
 
 template<class Impl>
@@ -392,5 +389,3 @@ SimpleDecode<Impl>::decode()
 
      numInst = 0;
 }
-
-#endif // __SIMPLE_DECODE_CC__
index 4d08754b654227669df56a9ba47574f9dc6ee75f..877262750d9a484afeb8bb90a9e0e25eb645eb94 100644 (file)
@@ -1,7 +1,6 @@
 
 #include "cpu/beta_cpu/alpha_dyn_inst.hh"
-#include "cpu/beta_cpu/alpha_full_cpu.hh"
-#include "cpu/beta_cpu/fetch_impl.hh"
 #include "cpu/beta_cpu/alpha_impl.hh"
+#include "cpu/beta_cpu/fetch_impl.hh"
 
-template SimpleFetch<AlphaSimpleImpl>;
+template class SimpleFetch<AlphaSimpleImpl>;
index 4cfc2f1679dc8e8f0ab9e9875b767bdce7b14b16..7a3893708f27758a7595b02ead958eb7d15f64d7 100644 (file)
@@ -4,17 +4,17 @@
 // Figure out where to advance time buffer.  Add a way to get a
 // stage's current status.
 
-#ifndef __SIMPLE_FETCH_HH__
-#define __SIMPLE_FETCH_HH__
+#ifndef __CPU_BETA_CPU_SIMPLE_FETCH_HH__
+#define __CPU_BETA_CPU_SIMPLE_FETCH_HH__
 
 //Will want to include: time buffer, structs, MemInterface, Event,
 //whatever class bzero uses, MemReqPtr
 
+#include "base/statistics.hh"
 #include "base/timebuf.hh"
-#include "sim/eventq.hh"
 #include "cpu/pc_event.hh"
 #include "mem/mem_interface.hh"
-#include "base/statistics.hh"
+#include "sim/eventq.hh"
 
 /**
  * SimpleFetch class to fetch a single instruction each cycle.  SimpleFetch
@@ -207,4 +207,4 @@ class SimpleFetch
     Stats::Distribution<> fetch_nisn_dist;
 };
 
-#endif //__SIMPLE_FETCH_HH__
+#endif //__CPU_BETA_CPU_SIMPLE_FETCH_HH__
index bde7e5bbf797f340d426a48a095569f2b438183c..19eb972d92b7a291a5a2918239e0c8214c362a25 100644 (file)
@@ -20,8 +20,6 @@
 #include "cpu/beta_cpu/cpu_policy.hh"
 #include "sim/process.hh"
 
-using namespace std;
-
 class FunctionalMemory;
 class Process;
 
index 8abb2f19609bb4da3f178f90a73d1807ce5b7dba..a90d644341c12e12fbd3a35f46eee23d36c403e2 100644 (file)
@@ -1,8 +1,7 @@
 
 #include "cpu/beta_cpu/alpha_dyn_inst.hh"
-#include "cpu/beta_cpu/inst_queue.hh"
-#include "cpu/beta_cpu/iew_impl.hh"
 #include "cpu/beta_cpu/alpha_impl.hh"
+#include "cpu/beta_cpu/iew_impl.hh"
+#include "cpu/beta_cpu/inst_queue.hh"
 
-template SimpleIEW<AlphaSimpleImpl,
-                   AlphaSimpleImpl::CPUPol::IQ>;
+template class SimpleIEW<AlphaSimpleImpl, AlphaSimpleImpl::CPUPol::IQ>;
index 90bd39e7ffdbfcaf6da5d3f1ec330454d98ec152..e3e7c6db53a343da9aafd85de63a136ba01018da 100644 (file)
@@ -2,14 +2,14 @@
 //Need to handle delaying writes to the writeback bus if it's full at the
 //given time.  Load store queue.
 
-#ifndef __SIMPLE_IEW_HH__
-#define __SIMPLE_IEW_HH__
+#ifndef __CPU_BETA_CPU_SIMPLE_IEW_HH__
+#define __CPU_BETA_CPU_SIMPLE_IEW_HH__
 
 #include <queue>
 
+#include "base/statistics.hh"
 #include "base/timebuf.hh"
 #include "cpu/beta_cpu/comm.hh"
-#include "base/statistics.hh"
 
 //Can IEW even stall?  Space should be available/allocated already...maybe
 //if there's not enough write ports on the ROB or waiting for CDB
@@ -187,4 +187,4 @@ class SimpleIEW
     Stats::Scalar<> predictedTakenIncorrect;
 };
 
-#endif
+#endif // __CPU_BETA_CPU_IEW_HH__
index f6fb917bade2375e9297318f42ab1f0347297231..a81ed63bcbc7fbdb262273f26a8cbfddd2f7d487 100644 (file)
@@ -3,8 +3,6 @@
 
 // @todo: Destructor
 
-using namespace std;
-
 #include "arch/alpha/isa_traits.hh"
 #include "cpu/beta_cpu/comm.hh"
 
index bcce7ef492a07afe7c9681929870f58fe4f4c69b..1feec4342a425843dc07f4362f5eb7984458ec62 100644 (file)
@@ -1,6 +1,6 @@
 
 #include "cpu/beta_cpu/alpha_dyn_inst.hh"
-#include "cpu/beta_cpu/rename_impl.hh"
 #include "cpu/beta_cpu/alpha_impl.hh"
+#include "cpu/beta_cpu/rename_impl.hh"
 
-template SimpleRename<AlphaSimpleImpl>;
+template class SimpleRename<AlphaSimpleImpl>;
index 3e6b873aef363102f1861ed8ef4733e0cf0cd007..3e9899718b7ef1b34fd8bcdcd4fc18df6bd98299 100644 (file)
@@ -3,11 +3,12 @@
 // May want to have different statuses to differentiate the different stall
 // conditions.
 
-#ifndef __SIMPLE_RENAME_HH__
-#define __SIMPLE_RENAME_HH__
+#ifndef __CPU_BETA_CPU_SIMPLE_RENAME_HH__
+#define __CPU_BETA_CPU_SIMPLE_RENAME_HH__
 
 #include <list>
 
+#include "base/statistics.hh"
 #include "base/timebuf.hh"
 
 // Will need rename maps for both the int reg file and fp reg file.
@@ -202,4 +203,4 @@ class SimpleRename
     Stats::Scalar<> renameValidUndoneMaps;
 };
 
-#endif // __SIMPLE_RENAME_HH__
+#endif // __CPU_BETA_CPU_SIMPLE_RENAME_HH__
index e68fa05a8372b93d963a77fbb760f6c2959f2a3f..44a7eefb1b9f92b9d13c7c02eee52ac99cf69d66 100644 (file)
@@ -2,17 +2,15 @@
 // Have it so that there's a more meaningful name given to the variable
 // that marks the beginning of the FP registers.
 
-#ifndef __RENAME_MAP_HH__
-#define __RENAME_MAP_HH__
+#ifndef __CPU_BETA_CPU_RENAME_MAP_HH__
+#define __CPU_BETA_CPU_RENAME_MAP_HH__
 
 #include <iostream>
-#include <vector>
 #include <utility>
+#include <vector>
 
 #include "cpu/beta_cpu/free_list.hh"
 
-using namespace std;
-
 class SimpleRenameMap
 {
   public:
@@ -21,7 +19,7 @@ class SimpleRenameMap
      * previous mapping of a logical register to a physical register.
      * Used to roll back the rename map to a previous state.
      */
-    typedef pair<RegIndex, PhysRegIndex> UnmapInfo;
+    typedef std::pair<RegIndex, PhysRegIndex> UnmapInfo;
 
     /**
      * Pair of a physical register and a physical register.  Used to
@@ -29,7 +27,7 @@ class SimpleRenameMap
      * renamed to, and the previous physical register that the same
      * logical register was previously mapped to.
      */
-    typedef pair<PhysRegIndex, PhysRegIndex> RenameInfo;
+    typedef std::pair<PhysRegIndex, PhysRegIndex> RenameInfo;
 
   public:
     //Constructor
@@ -128,17 +126,17 @@ class SimpleRenameMap
     /** Scoreboard of physical integer registers, saying whether or not they
      *  are ready.
      */
-    vector<bool> intScoreboard;
+    std::vector<bool> intScoreboard;
 
     /** Scoreboard of physical floating registers, saying whether or not they
      *  are ready.
      */
-    vector<bool> floatScoreboard;
+    std::vector<bool> floatScoreboard;
 
     /** Scoreboard of miscellaneous registers, saying whether or not they
      *  are ready.
      */
-    vector<bool> miscScoreboard;
+    std::vector<bool> miscScoreboard;
 };
 
-#endif //__RENAME_MAP_HH__
+#endif //__CPU_BETA_CPU_RENAME_MAP_HH__
index c921c0619568fc83a7c42d40a863bdb55dae89ea..da6b5232a5e5f1717be231affeb17f71939baf51 100644 (file)
@@ -4,15 +4,13 @@
 // all instructions after the instruction, and all instructions after *and*
 // including that instruction.
 
-#ifndef __ROB_HH__
-#define __ROB_HH__
+#ifndef __CPU_BETA_CPU_ROB_HH__
+#define __CPU_BETA_CPU_ROB_HH__
 
-#include<utility>
-#include<vector>
+#include <utility>
+#include <vector>
 
-#include "arch/alpha/isa_traits.hh"
-
-using namespace std;
+//#include "arch/alpha/isa_traits.hh"
 
 /**
  * ROB class.  Uses the instruction list that exists within the CPU to
@@ -28,7 +26,7 @@ class ROB
     typedef typename Impl::FullCPU FullCPU;
     typedef typename Impl::DynInstPtr DynInstPtr;
 
-    typedef pair<RegIndex, PhysRegIndex> UnmapInfo_t;
+    typedef std::pair<RegIndex, PhysRegIndex> UnmapInfo_t;
     typedef typename list<DynInstPtr>::iterator InstIt_t;
 
   public:
@@ -135,4 +133,4 @@ class ROB
     bool doneSquashing;
 };
 
-#endif //__ROB_HH__
+#endif //__CPU_BETA_CPU_ROB_HH__