diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-30 17:36:53 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-12-04 23:10:55 +0000 |
commit | 1088f0c4ac3999fc3c363cc51daef4cfb360a2bd (patch) | |
tree | 64b3cc0b13bd6ba6aa375163765d36b385d32663 /src/arch/power | |
parent | 86f18f26fc7223cc8a63a792d2be1267f573f97c (diff) | |
download | gem5-1088f0c4ac3999fc3c363cc51daef4cfb360a2bd.tar.xz |
misc: Rename misc.(hh|cc) to logging.(hh|cc)
These files aren't a collection of miscellaneous stuff, they're the
definition of the Logger interface, and a few utility macros for
calling into that interface (panic, warn, etc.).
Change-Id: I84267ac3f45896a83c0ef027f8f19c5e9a5667d1
Reviewed-on: https://gem5-review.googlesource.com/6226
Reviewed-by: Brandon Potter <Brandon.Potter@amd.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/arch/power')
-rw-r--r-- | src/arch/power/interrupts.hh | 2 | ||||
-rw-r--r-- | src/arch/power/isa.hh | 2 | ||||
-rw-r--r-- | src/arch/power/process.cc | 2 | ||||
-rw-r--r-- | src/arch/power/pseudo_inst.hh | 2 | ||||
-rw-r--r-- | src/arch/power/utility.cc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/arch/power/interrupts.hh b/src/arch/power/interrupts.hh index e41b4aa95..f89959863 100644 --- a/src/arch/power/interrupts.hh +++ b/src/arch/power/interrupts.hh @@ -31,7 +31,7 @@ #ifndef __ARCH_POWER_INTERRUPT_HH__ #define __ARCH_POWER_INTERRUPT_HH__ -#include "base/misc.hh" +#include "base/logging.hh" #include "params/PowerInterrupts.hh" #include "sim/sim_object.hh" diff --git a/src/arch/power/isa.hh b/src/arch/power/isa.hh index edac96d59..9769f8fd1 100644 --- a/src/arch/power/isa.hh +++ b/src/arch/power/isa.hh @@ -35,7 +35,7 @@ #include "arch/power/registers.hh" #include "arch/power/types.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "cpu/reg_class.hh" #include "sim/sim_object.hh" diff --git a/src/arch/power/process.cc b/src/arch/power/process.cc index 4b2efb0a6..4a34decf3 100644 --- a/src/arch/power/process.cc +++ b/src/arch/power/process.cc @@ -36,7 +36,7 @@ #include "arch/power/types.hh" #include "base/loader/elf_object.hh" #include "base/loader/object_file.hh" -#include "base/misc.hh" +#include "base/logging.hh" #include "cpu/thread_context.hh" #include "debug/Stack.hh" #include "mem/page_table.hh" diff --git a/src/arch/power/pseudo_inst.hh b/src/arch/power/pseudo_inst.hh index 295b33320..e1ecda238 100644 --- a/src/arch/power/pseudo_inst.hh +++ b/src/arch/power/pseudo_inst.hh @@ -32,7 +32,7 @@ #define __ARCH_POWER_PSEUDO_INST_HH__ #include "arch/generic/pseudo_inst.hh" -#include "base/misc.hh" +#include "base/logging.hh" class ThreadContext; diff --git a/src/arch/power/utility.cc b/src/arch/power/utility.cc index c8076a697..c8ff99988 100644 --- a/src/arch/power/utility.cc +++ b/src/arch/power/utility.cc @@ -34,7 +34,7 @@ #include "arch/power/utility.hh" -#include "base/misc.hh" +#include "base/logging.hh" namespace PowerISA { |