From 0dd1f7f01a8a744811aede5814111b8681271a6b Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 14 Sep 2010 00:29:38 -0700 Subject: CPU: Trim unnecessary includes from some common files. This reduces the scope of those includes and makes it less likely for there to be a dependency loop. This also moves the hashing functions associated with ExtMachInst objects to be with the ExtMachInst definitions and out of utility.hh. --- src/arch/alpha/isa.cc | 1 + src/arch/arm/types.hh | 10 ++++++++++ src/arch/arm/utility.hh | 10 ---------- src/arch/power/insts/branch.cc | 1 + src/arch/power/types.hh | 12 ++++++++++++ src/arch/power/utility.hh | 14 -------------- src/arch/x86/types.hh | 21 +++++++++++++++++++++ src/arch/x86/utility.hh | 20 -------------------- src/cpu/exetrace.cc | 1 + src/cpu/exetrace.hh | 2 +- src/cpu/simple_thread.cc | 1 + src/cpu/static_inst.hh | 3 +-- src/cpu/thread_context.hh | 6 ++++-- src/sim/syscall_emul.cc | 1 + 14 files changed, 54 insertions(+), 49 deletions(-) diff --git a/src/arch/alpha/isa.cc b/src/arch/alpha/isa.cc index d89026ba7..5fd34a492 100644 --- a/src/arch/alpha/isa.cc +++ b/src/arch/alpha/isa.cc @@ -33,6 +33,7 @@ #include "arch/alpha/isa.hh" #include "base/misc.hh" #include "cpu/thread_context.hh" +#include "sim/serialize.hh" namespace AlphaISA { diff --git a/src/arch/arm/types.hh b/src/arch/arm/types.hh index 78c9790f6..3c3b29494 100644 --- a/src/arch/arm/types.hh +++ b/src/arch/arm/types.hh @@ -44,6 +44,7 @@ #define __ARCH_ARM_TYPES_HH__ #include "base/bitunion.hh" +#include "base/hashmap.hh" #include "base/types.hh" namespace ArmISA @@ -269,4 +270,13 @@ namespace ArmISA } // namespace ArmISA +namespace __hash_namespace { + template<> + struct hash : public hash { + size_t operator()(const ArmISA::ExtMachInst &emi) const { + return hash::operator()((uint32_t)emi); + }; + }; +} + #endif diff --git a/src/arch/arm/utility.hh b/src/arch/arm/utility.hh index 2a30c5de2..7d9365ab6 100644 --- a/src/arch/arm/utility.hh +++ b/src/arch/arm/utility.hh @@ -47,21 +47,11 @@ #include "arch/arm/miscregs.hh" #include "arch/arm/types.hh" -#include "base/hashmap.hh" #include "base/misc.hh" #include "base/trace.hh" #include "base/types.hh" #include "cpu/thread_context.hh" -namespace __hash_namespace { - template<> - struct hash : public hash { - size_t operator()(const ArmISA::ExtMachInst &emi) const { - return hash::operator()((uint32_t)emi); - }; - }; -} - namespace ArmISA { inline bool diff --git a/src/arch/power/insts/branch.cc b/src/arch/power/insts/branch.cc index 3f4346c97..c10f7c996 100644 --- a/src/arch/power/insts/branch.cc +++ b/src/arch/power/insts/branch.cc @@ -30,6 +30,7 @@ #include "arch/power/insts/branch.hh" #include "base/loader/symtab.hh" +#include "cpu/thread_context.hh" using namespace PowerISA; diff --git a/src/arch/power/types.hh b/src/arch/power/types.hh index 7b994adc9..6a8d1e9d3 100644 --- a/src/arch/power/types.hh +++ b/src/arch/power/types.hh @@ -32,6 +32,7 @@ #define __ARCH_POWER_TYPES_HH__ #include "base/bitunion.hh" +#include "base/hashmap.hh" #include "base/types.hh" namespace PowerISA @@ -88,4 +89,15 @@ struct CoreSpecific { } // PowerISA namspace +namespace __hash_namespace { + +template<> +struct hash : public hash { + size_t operator()(const PowerISA::ExtMachInst &emi) const { + return hash::operator()((uint32_t)emi); + }; +}; + +} // __hash_namespace namespace + #endif // __ARCH_POWER_TYPES_HH__ diff --git a/src/arch/power/utility.hh b/src/arch/power/utility.hh index 7245db511..b3eed9de3 100644 --- a/src/arch/power/utility.hh +++ b/src/arch/power/utility.hh @@ -35,23 +35,9 @@ #ifndef __ARCH_POWER_UTILITY_HH__ #define __ARCH_POWER_UTILITY_HH__ -#include "arch/power/miscregs.hh" -#include "arch/power/types.hh" -#include "base/hashmap.hh" #include "base/types.hh" #include "cpu/thread_context.hh" -namespace __hash_namespace { - -template<> -struct hash : public hash { - size_t operator()(const PowerISA::ExtMachInst &emi) const { - return hash::operator()((uint32_t)emi); - }; -}; - -} // __hash_namespace namespace - namespace PowerISA { /** diff --git a/src/arch/x86/types.hh b/src/arch/x86/types.hh index 35799e0c9..2a0da7d65 100644 --- a/src/arch/x86/types.hh +++ b/src/arch/x86/types.hh @@ -44,6 +44,7 @@ #include "base/bitunion.hh" #include "base/cprintf.hh" +#include "base/hashmap.hh" #include "base/types.hh" #include "sim/serialize.hh" @@ -225,6 +226,26 @@ namespace X86ISA }; }; +namespace __hash_namespace { + template<> + struct hash { + size_t operator()(const X86ISA::ExtMachInst &emi) const { + return (((uint64_t)emi.legacy << 56) | + ((uint64_t)emi.rex << 48) | + ((uint64_t)emi.modRM << 40) | + ((uint64_t)emi.sib << 32) | + ((uint64_t)emi.opcode.num << 24) | + ((uint64_t)emi.opcode.prefixA << 16) | + ((uint64_t)emi.opcode.prefixB << 8) | + ((uint64_t)emi.opcode.op)) ^ + emi.immediate ^ emi.displacement ^ + emi.mode ^ + emi.opSize ^ emi.addrSize ^ + emi.stackSize ^ emi.dispSize; + }; + }; +} + // These two functions allow ExtMachInst to be used with SERIALIZE_SCALAR // and UNSERIALIZE_SCALAR. template <> diff --git a/src/arch/x86/utility.hh b/src/arch/x86/utility.hh index db03da7a0..bfa102529 100644 --- a/src/arch/x86/utility.hh +++ b/src/arch/x86/utility.hh @@ -50,26 +50,6 @@ class ThreadContext; -namespace __hash_namespace { - template<> - struct hash { - size_t operator()(const X86ISA::ExtMachInst &emi) const { - return (((uint64_t)emi.legacy << 56) | - ((uint64_t)emi.rex << 48) | - ((uint64_t)emi.modRM << 40) | - ((uint64_t)emi.sib << 32) | - ((uint64_t)emi.opcode.num << 24) | - ((uint64_t)emi.opcode.prefixA << 16) | - ((uint64_t)emi.opcode.prefixB << 8) | - ((uint64_t)emi.opcode.op)) ^ - emi.immediate ^ emi.displacement ^ - emi.mode ^ - emi.opSize ^ emi.addrSize ^ - emi.stackSize ^ emi.dispSize; - }; - }; -} - namespace X86ISA { uint64_t getArgument(ThreadContext *tc, int number, bool fp); diff --git a/src/cpu/exetrace.cc b/src/cpu/exetrace.cc index 051ee57a0..4bab778ba 100644 --- a/src/cpu/exetrace.cc +++ b/src/cpu/exetrace.cc @@ -34,6 +34,7 @@ #include #include "arch/isa_traits.hh" +#include "arch/utility.hh" #include "base/loader/symtab.hh" #include "cpu/base.hh" #include "cpu/exetrace.hh" diff --git a/src/cpu/exetrace.hh b/src/cpu/exetrace.hh index aa0831dfd..1982595eb 100644 --- a/src/cpu/exetrace.hh +++ b/src/cpu/exetrace.hh @@ -35,12 +35,12 @@ #include "base/trace.hh" #include "base/types.hh" #include "cpu/static_inst.hh" +#include "cpu/thread_context.hh" #include "params/ExeTracer.hh" #include "sim/insttracer.hh" class ThreadContext; - namespace Trace { class ExeTracerRecord : public InstRecord diff --git a/src/cpu/simple_thread.cc b/src/cpu/simple_thread.cc index 40f7f3cdb..bd796428a 100644 --- a/src/cpu/simple_thread.cc +++ b/src/cpu/simple_thread.cc @@ -34,6 +34,7 @@ #include #include "arch/isa_traits.hh" +#include "arch/utility.hh" #include "config/the_isa.hh" #include "cpu/base.hh" #include "cpu/simple_thread.hh" diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh index 0ae8653c5..6474bbf9c 100644 --- a/src/cpu/static_inst.hh +++ b/src/cpu/static_inst.hh @@ -35,9 +35,8 @@ #include #include "arch/isa_traits.hh" -#include "arch/utility.hh" +#include "arch/registers.hh" #include "config/the_isa.hh" -#include "base/bitfield.hh" #include "base/hashmap.hh" #include "base/misc.hh" #include "base/refcnt.hh" diff --git a/src/cpu/thread_context.hh b/src/cpu/thread_context.hh index 3d7be5256..753fa2146 100644 --- a/src/cpu/thread_context.hh +++ b/src/cpu/thread_context.hh @@ -31,12 +31,14 @@ #ifndef __CPU_THREAD_CONTEXT_HH__ #define __CPU_THREAD_CONTEXT_HH__ +#include +#include + #include "arch/registers.hh" #include "arch/types.hh" #include "base/types.hh" #include "config/full_system.hh" #include "config/the_isa.hh" -#include "sim/serialize.hh" // @todo: Figure out a more architecture independent way to obtain the ITB and // DTB pointers. @@ -45,8 +47,8 @@ namespace TheISA class TLB; } class BaseCPU; +class Checkpoint; class EndQuiesceEvent; -class Event; class TranslatingPort; class FunctionalPort; class VirtualPort; diff --git a/src/sim/syscall_emul.cc b/src/sim/syscall_emul.cc index 7b12700e0..207c07309 100644 --- a/src/sim/syscall_emul.cc +++ b/src/sim/syscall_emul.cc @@ -36,6 +36,7 @@ #include #include +#include "arch/utility.hh" #include "sim/syscall_emul.hh" #include "base/chunk_generator.hh" #include "base/trace.hh" -- cgit v1.2.3