summaryrefslogtreecommitdiff
path: root/src/arch/power
diff options
context:
space:
mode:
authorBrandon Potter <brandon.potter@amd.com>2016-11-09 14:27:41 -0600
committerBrandon Potter <brandon.potter@amd.com>2016-11-09 14:27:41 -0600
commit49009f170a631eea259dc031b3ce4593f8783d19 (patch)
tree3a424b1a3aa32e067a7d008dd7f4c85524bd2b44 /src/arch/power
parentea8461885ffffa0933cedeb9143a9b01be4c70f0 (diff)
downloadgem5-49009f170a631eea259dc031b3ce4593f8783d19.tar.xz
syscall_emul: [patch 8/22] refactor process class
Moves aux_vector into its own .hh and .cc files just to get it out of the already crowded Process files. Arguably, it could stay there, but it's probably better just to move it and give it files. The changeset looks ugly around the Process header file, but the goal here is to move methods and members around so that they're not defined randomly throughout the entire header file. I expect this is likely one of the reasons why I several unused variables related to this class. So, the methods are declared first followed by members. I've tried to aggregate them together so that similar entries reside near one another. There are other changes coming to this code so this is by no means the final product.
Diffstat (limited to 'src/arch/power')
-rw-r--r--src/arch/power/process.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/power/process.cc b/src/arch/power/process.cc
index 91e91b672..7359fbf9a 100644
--- a/src/arch/power/process.cc
+++ b/src/arch/power/process.cc
@@ -40,6 +40,7 @@
#include "cpu/thread_context.hh"
#include "debug/Stack.hh"
#include "mem/page_table.hh"
+#include "sim/aux_vector.hh"
#include "sim/process_impl.hh"
#include "sim/syscall_return.hh"
#include "sim/system.hh"