From 16e99e4677c24147e09ff10d375751a7b114a8d7 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 29 Nov 2007 00:00:02 -0800 Subject: SPARC: Combine the 64 and 32 bit process initialization code. Alignment is done as it was for 32 bit processes. --HG-- extra : convert_revision : 9368ad40dcc7911f8fc7ec1468c6a28aa92d196f --- src/arch/sparc/process.hh | 55 +++++++++++++++++++++-------------------------- 1 file changed, 24 insertions(+), 31 deletions(-) (limited to 'src/arch/sparc/process.hh') diff --git a/src/arch/sparc/process.hh b/src/arch/sparc/process.hh index dd8eae316..a37760139 100644 --- a/src/arch/sparc/process.hh +++ b/src/arch/sparc/process.hh @@ -34,6 +34,7 @@ #include #include +#include "sim/byteswap.hh" #include "sim/process.hh" class ObjectFile; @@ -43,10 +44,18 @@ class SparcLiveProcess : public LiveProcess { protected: + const Addr StackBias; + //The locations of the fill and spill handlers Addr fillStart, spillStart; - SparcLiveProcess(LiveProcessParams * params, ObjectFile *objFile); + SparcLiveProcess(LiveProcessParams * params, + ObjectFile *objFile, Addr _StackBias); + + void startup(); + + template + void argsInit(int pageSize); public: @@ -62,29 +71,32 @@ class SparcLiveProcess : public LiveProcess virtual void flushWindows(ThreadContext *tc) = 0; }; -struct M5_32_auxv_t +template +struct M5_auxv_t { - int32_t a_type; + IntType a_type; union { - int32_t a_val; - int32_t a_ptr; - int32_t a_fcn; + IntType a_val; + IntType a_ptr; + IntType a_fcn; }; - M5_32_auxv_t() + M5_auxv_t() {} - M5_32_auxv_t(int32_t type, int32_t val); + M5_auxv_t(IntType type, IntType val) + { + a_type = SparcISA::htog(type); + a_val = SparcISA::htog(val); + } }; class Sparc32LiveProcess : public SparcLiveProcess { protected: - std::vector auxv; - Sparc32LiveProcess(LiveProcessParams * params, ObjectFile *objFile) : - SparcLiveProcess(params, objFile) + SparcLiveProcess(params, objFile, 0) { // Set up stack. On SPARC Linux, stack goes from the top of memory // downward, less the hole for the kernel address space. @@ -103,31 +115,12 @@ class Sparc32LiveProcess : public SparcLiveProcess void flushWindows(ThreadContext *tc); }; -struct M5_64_auxv_t -{ - int64_t a_type; - union { - int64_t a_val; - int64_t a_ptr; - int64_t a_fcn; - }; - - M5_64_auxv_t() - {} - - M5_64_auxv_t(int64_t type, int64_t val); -}; - class Sparc64LiveProcess : public SparcLiveProcess { protected: - static const Addr StackBias = 2047; - - std::vector auxv; - Sparc64LiveProcess(LiveProcessParams * params, ObjectFile *objFile) : - SparcLiveProcess(params, objFile) + SparcLiveProcess(params, objFile, 2047) { // Set up stack. On SPARC Linux, stack goes from the top of memory // downward, less the hole for the kernel address space. -- cgit v1.2.3