#ifndef __CPU_POLICY_HH__ #define __CPU_POLICY_HH__ #include "cpu/beta_cpu/bpred_unit.hh" #include "cpu/beta_cpu/inst_queue.hh" #include "cpu/beta_cpu/regfile.hh" #include "cpu/beta_cpu/free_list.hh" #include "cpu/beta_cpu/rename_map.hh" #include "cpu/beta_cpu/rob.hh" #include "cpu/beta_cpu/store_set.hh" #include "cpu/beta_cpu/mem_dep_unit.hh" #include "cpu/beta_cpu/ldstq.hh" #include "cpu/beta_cpu/fetch.hh" #include "cpu/beta_cpu/decode.hh" #include "cpu/beta_cpu/rename.hh" #include "cpu/beta_cpu/iew.hh" #include "cpu/beta_cpu/commit.hh" #include "cpu/beta_cpu/comm.hh" template struct SimpleCPUPolicy { typedef TwobitBPredUnit BPredUnit; typedef PhysRegFile RegFile; typedef SimpleFreeList FreeList; typedef SimpleRenameMap RenameMap; typedef ROB ROB; typedef InstructionQueue IQ; typedef MemDepUnit MemDepUnit; typedef LDSTQ LDSTQ; typedef SimpleFetch Fetch; typedef SimpleDecode Decode; typedef SimpleRename Rename; typedef SimpleIEW IEW; typedef SimpleCommit Commit; /** The struct for communication between fetch and decode. */ typedef SimpleFetchSimpleDecode FetchStruct; /** The struct for communication between decode and rename. */ typedef SimpleDecodeSimpleRename DecodeStruct; /** The struct for communication between rename and IEW. */ typedef SimpleRenameSimpleIEW RenameStruct; /** The struct for communication between IEW and commit. */ typedef SimpleIEWSimpleCommit IEWStruct; /** The struct for communication within the IEW stage. */ typedef IssueStruct IssueStruct; /** The struct for all backwards communication. */ typedef TimeBufStruct TimeStruct; }; #endif //__CPU_POLICY_HH__